package toffee
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
CSS layout engine for OCaml (Flexbox, Grid, Block)
Install
dune-project
Dependency
Authors
Maintainers
Sources
mosaic-0.1.0.tbz
sha256=9e4e90d17f9b2af1b07071fe425bc2c519c849c4f1d1ab73cde512be2d874849
sha512=06e9c4a741590942e81a27738d0b5c0413fafec8cf3b7dae047ad69f155e7b718aa4223818dc161b7d028efffcfd3365905e264d6fd31d453910ddfa91dcf9b9
doc/src/toffee.style/style.ml.html
Source file style.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450type calc_resolver = Compact_length.calc_resolver module Compact_length = Compact_length module Length_percentage = Length_percentage module Length_percentage_auto = Length_percentage_auto module Dimension = Dimension module Display = Display module Position = Position module Overflow = Overflow module Box_sizing = Box_sizing module Box_generation_mode = Box_generation_mode module Text_align = Text_align module Flex_direction = Flex_direction module Flex_wrap = Flex_wrap module Align_items = Alignment.Align_items module Align_self = Alignment.Align_self module Align_content = Alignment.Align_content module Justify_items = Alignment.Justify_items module Justify_self = Alignment.Justify_self module Justify_content = Alignment.Justify_content module Grid = struct include Grid module Auto_flow = Grid_auto_flow module Placement = Grid_placement module Track_sizing_function = Track_sizing_function module Repetition_count = Repetition_count module Repetition = Grid_repetition module Template_component = Grid_template_component module Template_area = Grid_template_area end module Grid_auto_flow = Grid_auto_flow module Grid_placement = Grid_placement module Grid_repetition = Grid_repetition module Grid_template_area = Grid_template_area module Grid_template_component = Grid_template_component module Repetition_count = Repetition_count module Track_sizing_function = Track_sizing_function (* Type aliases for convenience *) type length_percentage = Length_percentage.t type length_percentage_auto = Length_percentage_auto.t type dimension = Dimension.t type display = Display.t type position = Position.t type overflow = Overflow.t type box_sizing = Box_sizing.t type box_generation_mode = Box_generation_mode.t type text_align = Text_align.t type flex_direction = Flex_direction.t type flex_wrap = Flex_wrap.t type align_items = Align_items.t type align_content = Align_content.t type justify_items = Justify_items.t type align_self = Align_self.t type justify_self = Justify_self.t type justify_content = Justify_content.t type grid_auto_flow = Grid.Auto_flow.t type grid_placement = Grid.Placement.t type track_sizing_function = Grid.Track_sizing_function.t type repetition_count = Grid.Repetition_count.t type grid_repetition = Grid.Repetition.t type grid_template_component = Grid.Template_component.t type grid_template_area = Grid.Template_area.t module Rect_dim = struct let all_px v = Geometry.Rect.all (Length_percentage.length v) let all_px_auto v = Geometry.Rect.all (Length_percentage_auto.length v) let xy_px ~x ~y = Geometry.Rect.make ~left:(Length_percentage.length x) ~right:(Length_percentage.length x) ~top:(Length_percentage.length y) ~bottom:(Length_percentage.length y) let xy_px_auto ~x ~y = Geometry.Rect.make ~left:(Length_percentage_auto.length x) ~right:(Length_percentage_auto.length x) ~top:(Length_percentage_auto.length y) ~bottom:(Length_percentage_auto.length y) let horizontal_px v = Geometry.Rect.make ~left:(Length_percentage.length v) ~right:(Length_percentage.length v) ~top:Length_percentage.zero ~bottom:Length_percentage.zero let horizontal_px_auto v = Geometry.Rect.make ~left:(Length_percentage_auto.length v) ~right:(Length_percentage_auto.length v) ~top:Length_percentage_auto.zero ~bottom:Length_percentage_auto.zero let vertical_px v = Geometry.Rect.make ~left:Length_percentage.zero ~right:Length_percentage.zero ~top:(Length_percentage.length v) ~bottom:(Length_percentage.length v) let vertical_px_auto v = Geometry.Rect.make ~left:Length_percentage_auto.zero ~right:Length_percentage_auto.zero ~top:(Length_percentage_auto.length v) ~bottom:(Length_percentage_auto.length v) end module Size_dim = struct let px ~w ~h = Geometry.Size.{ width = Dimension.length w; height = Dimension.length h } let pct ~w ~h = Geometry.Size.{ width = Dimension.pct w; height = Dimension.pct h } end (* Main Style type *) type t = { (* Display properties *) display : display; item_is_table : bool; item_is_replaced : bool; box_sizing : box_sizing; (* Block layout properties *) text_align : Text_align.t; (* Overflow properties *) overflow : overflow Geometry.point; scrollbar_width : float; (* Position properties *) position : position; inset : length_percentage_auto Geometry.rect; (* Size properties *) size : dimension Geometry.size; min_size : dimension Geometry.size; max_size : dimension Geometry.size; aspect_ratio : float option; (* Spacing properties *) margin : length_percentage_auto Geometry.rect; padding : length_percentage Geometry.rect; border : length_percentage Geometry.rect; (* Alignment properties *) align_items : align_items option; align_self : align_self option; justify_items : justify_items option; justify_self : justify_self option; align_content : align_content option; justify_content : justify_content option; (* Gap properties *) gap : length_percentage Geometry.size; (* Flexbox properties *) flex_direction : flex_direction; flex_wrap : flex_wrap; flex_grow : float; flex_shrink : float; flex_basis : dimension; (* Grid container properties *) grid_template_rows : grid_template_component list; grid_template_columns : grid_template_component list; grid_auto_rows : track_sizing_function list; grid_auto_columns : track_sizing_function list; grid_auto_flow : grid_auto_flow; grid_template_areas : grid_template_area list; grid_template_column_names : string list list; grid_template_row_names : string list list; (* Grid item properties *) grid_row : grid_placement Geometry.line; grid_column : grid_placement Geometry.line; } (* Default style values *) let default = { (* Display properties *) display = Display.default; item_is_table = false; item_is_replaced = false; box_sizing = Box_sizing.default; (* Block layout properties *) text_align = Text_align.Auto; (* Overflow properties *) overflow = { x = Overflow.default; y = Overflow.default }; scrollbar_width = 0.0; (* Position properties *) position = Position.default; inset = Geometry.Rect.make ~left:Length_percentage_auto.auto ~right:Length_percentage_auto.auto ~top:Length_percentage_auto.auto ~bottom:Length_percentage_auto.auto; (* Size properties *) size = { width = Dimension.auto; height = Dimension.auto }; min_size = { width = Dimension.auto; height = Dimension.auto }; max_size = { width = Dimension.auto; height = Dimension.auto }; aspect_ratio = None; (* Spacing properties *) margin = Geometry.Rect.make ~left:Length_percentage_auto.zero ~right:Length_percentage_auto.zero ~top:Length_percentage_auto.zero ~bottom:Length_percentage_auto.zero; padding = Geometry.Rect.make ~left:Length_percentage.zero ~right:Length_percentage.zero ~top:Length_percentage.zero ~bottom:Length_percentage.zero; border = Geometry.Rect.make ~left:Length_percentage.zero ~right:Length_percentage.zero ~top:Length_percentage.zero ~bottom:Length_percentage.zero; (* Alignment properties *) align_items = None; align_self = None; justify_items = None; justify_self = None; align_content = None; justify_content = None; (* Gap properties *) gap = { width = Length_percentage.zero; height = Length_percentage.zero }; (* Flexbox properties *) flex_direction = Flex_direction.default; flex_wrap = Flex_wrap.default; flex_grow = 0.0; flex_shrink = 1.0; flex_basis = Dimension.auto; (* Grid container properties *) grid_template_rows = []; grid_template_columns = []; grid_auto_rows = []; grid_auto_columns = []; grid_auto_flow = Grid_auto_flow.default; grid_template_areas = []; grid_template_column_names = []; grid_template_row_names = []; (* Grid item properties *) grid_row = { start = Grid_placement.auto; end_ = Grid_placement.auto }; grid_column = { start = Grid_placement.auto; end_ = Grid_placement.auto }; } (* Accessors *) let display t = t.display let item_is_table t = t.item_is_table let item_is_replaced t = t.item_is_replaced let box_generation_mode t = match t.display with | Display.None -> Box_generation_mode.None | _ -> Box_generation_mode.Normal let set_box_generation_mode mode t = match mode with | Box_generation_mode.None -> { t with display = Display.None } | Box_generation_mode.Normal -> t (* Keep current display mode *) let is_compressible_replaced t = t.item_is_replaced let text_align t = t.text_align let box_sizing t = t.box_sizing let overflow t = t.overflow let scrollbar_width t = t.scrollbar_width let position t = t.position let inset t = t.inset let size t = t.size let min_size t = t.min_size let max_size t = t.max_size let aspect_ratio t = t.aspect_ratio let margin t = t.margin let padding t = t.padding let border t = t.border let gap t = t.gap let align_items t = t.align_items let align_self t = t.align_self let align_content t = t.align_content let justify_items t = t.justify_items let justify_self t = t.justify_self let justify_content t = t.justify_content let flex_direction t = t.flex_direction let flex_wrap t = t.flex_wrap let flex_grow t = t.flex_grow let flex_shrink t = t.flex_shrink let flex_basis t = t.flex_basis let grid_template_rows t = t.grid_template_rows let grid_template_columns t = t.grid_template_columns let grid_auto_rows t = t.grid_auto_rows let grid_auto_columns t = t.grid_auto_columns let grid_auto_flow t = t.grid_auto_flow let grid_template_areas t = t.grid_template_areas let grid_template_column_names t = t.grid_template_column_names let grid_template_row_names t = t.grid_template_row_names let grid_row t = t.grid_row let grid_column t = t.grid_column (* Functional updates *) let set_display display t = { t with display } let set_position position t = { t with position } let set_overflow overflow t = { t with overflow } let set_scrollbar_width scrollbar_width t = { t with scrollbar_width } let set_text_align text_align t = { t with text_align } let set_inset inset t = { t with inset } let set_size size t = { t with size } let set_width width t = { t with size = { t.size with width } } let set_height height t = { t with size = { t.size with height } } let set_min_size min_size t = { t with min_size } let set_min_width width t = { t with min_size = { t.min_size with width } } let set_min_height height t = { t with min_size = { t.min_size with height } } let set_max_size max_size t = { t with max_size } let set_max_width width t = { t with max_size = { t.max_size with width } } let set_max_height height t = { t with max_size = { t.max_size with height } } let set_aspect_ratio aspect_ratio t = { t with aspect_ratio } let set_margin margin t = { t with margin } let set_margin_left left t = { t with margin = { t.margin with left } } let set_margin_right right t = { t with margin = { t.margin with right } } let set_margin_top top t = { t with margin = { t.margin with top } } let set_margin_bottom bottom t = { t with margin = { t.margin with bottom } } let set_margin_x v t = { t with margin = { t.margin with left = v; right = v } } let set_margin_y v t = { t with margin = { t.margin with top = v; bottom = v } } let set_padding padding t = { t with padding } let set_padding_left left t = { t with padding = { t.padding with left } } let set_padding_right right t = { t with padding = { t.padding with right } } let set_padding_top top t = { t with padding = { t.padding with top } } let set_padding_bottom bottom t = { t with padding = { t.padding with bottom } } let set_padding_x v t = { t with padding = { t.padding with left = v; right = v } } let set_padding_y v t = { t with padding = { t.padding with top = v; bottom = v } } let set_border border t = { t with border } let set_gap gap t = { t with gap } let set_align_items align_items t = { t with align_items } let set_align_self align_self t = { t with align_self } let set_align_content align_content t = { t with align_content } let set_justify_items justify_items t = { t with justify_items } let set_justify_self justify_self t = { t with justify_self } let set_justify_content justify_content t = { t with justify_content } let set_flex_direction flex_direction t = { t with flex_direction } let set_flex_wrap flex_wrap t = { t with flex_wrap } let set_flex_grow flex_grow t = { t with flex_grow } let set_flex_shrink flex_shrink t = { t with flex_shrink } let set_flex_basis flex_basis t = { t with flex_basis } let set_grid_template_rows grid_template_rows t = { t with grid_template_rows } let set_grid_template_columns grid_template_columns t = { t with grid_template_columns } let set_grid_auto_rows grid_auto_rows t = { t with grid_auto_rows } let set_grid_auto_columns grid_auto_columns t = { t with grid_auto_columns } let set_grid_auto_flow grid_auto_flow t = { t with grid_auto_flow } let set_grid_template_areas grid_template_areas t = { t with grid_template_areas } let set_grid_template_column_names grid_template_column_names t = { t with grid_template_column_names } let set_grid_template_row_names grid_template_row_names t = { t with grid_template_row_names } let set_grid_row grid_row t = { t with grid_row } let set_grid_column grid_column t = { t with grid_column } (* Smart constructor *) let make ?display ?(box_sizing = default.box_sizing) ?(position = default.position) ?(overflow = default.overflow) ?(scrollbar_width = default.scrollbar_width) ?(text_align = default.text_align) ?(inset = default.inset) ?(size = default.size) ?(min_size = default.min_size) ?(max_size = default.max_size) ?aspect_ratio ?(margin = default.margin) ?(padding = default.padding) ?(border = default.border) ?(gap = default.gap) ?align_items ?align_self ?align_content ?justify_items ?justify_self ?justify_content ?(flex_direction = default.flex_direction) ?(flex_wrap = default.flex_wrap) ?(flex_grow = default.flex_grow) ?(flex_shrink = default.flex_shrink) ?(flex_basis = default.flex_basis) ?(grid_template_rows = default.grid_template_rows) ?(grid_template_columns = default.grid_template_columns) ?(grid_auto_rows = default.grid_auto_rows) ?(grid_auto_columns = default.grid_auto_columns) ?(grid_auto_flow = default.grid_auto_flow) ?(grid_template_areas = default.grid_template_areas) ?(grid_template_column_names = default.grid_template_column_names) ?(grid_template_row_names = default.grid_template_row_names) ?(grid_row = default.grid_row) ?(grid_column = default.grid_column) () = (* Infer display mode from properties if not explicitly set *) let display = match display with | Some d -> d | None -> (* Default to Flex to match Taffy's behavior when flexbox feature is enabled *) Display.Flex in { display; item_is_table = false; item_is_replaced = false; box_sizing; text_align; overflow; scrollbar_width; position; inset; size; min_size; max_size; aspect_ratio; margin; padding; border; gap; align_items; align_self; align_content; justify_items; justify_self; justify_content; flex_direction; flex_wrap; flex_grow; flex_shrink; flex_basis; grid_template_rows; grid_template_columns; grid_auto_rows; grid_auto_columns; grid_auto_flow; grid_template_areas; grid_template_column_names; grid_template_row_names; grid_row; grid_column; } (* Common style patterns *) let flex_row = { default with display = Display.Flex; flex_direction = Flex_direction.Row } let flex_column = { default with display = Display.Flex; flex_direction = Flex_direction.Column; } let absolute = { default with position = Position.Absolute } let flex_1 = { default with display = Display.Flex; flex_grow = 1.0; flex_shrink = 1.0; flex_basis = Dimension.length 0.0; }
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>