@airtable/blocks 1.18.1 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (747) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/dist/cjs/color_utils.js +21 -23
  3. package/dist/cjs/colors.js +4 -60
  4. package/dist/cjs/error_utils.js +15 -25
  5. package/dist/cjs/event_tracker.js +5 -11
  6. package/dist/cjs/global_config.js +107 -188
  7. package/dist/cjs/index.js +16 -40
  8. package/dist/cjs/injected/airtable_interface.js +1 -6
  9. package/dist/cjs/models/abstract_model.js +50 -81
  10. package/dist/cjs/models/abstract_model_with_async_data.js +102 -177
  11. package/dist/cjs/models/base.js +211 -374
  12. package/dist/cjs/models/create_aggregators.js +53 -47
  13. package/dist/cjs/models/cursor.js +125 -201
  14. package/dist/cjs/models/field.js +256 -303
  15. package/dist/cjs/models/grouped_record_query_result.js +210 -286
  16. package/dist/cjs/models/linked_records_query_result.js +276 -454
  17. package/dist/cjs/models/models.js +36 -50
  18. package/dist/cjs/models/mutation_constants.js +5 -9
  19. package/dist/cjs/models/mutations.js +125 -338
  20. package/dist/cjs/models/object_pool.js +37 -94
  21. package/dist/cjs/models/record.js +132 -226
  22. package/dist/cjs/models/record_coloring.js +14 -19
  23. package/dist/cjs/models/record_query_result.js +323 -282
  24. package/dist/cjs/models/record_store.js +355 -688
  25. package/dist/cjs/models/session.js +99 -158
  26. package/dist/cjs/models/table.js +361 -549
  27. package/dist/cjs/models/table_or_view_query_result.js +410 -765
  28. package/dist/cjs/models/view.js +161 -204
  29. package/dist/cjs/models/view_data_store.js +177 -282
  30. package/dist/cjs/models/view_metadata_query_result.js +96 -127
  31. package/dist/cjs/perform_record_action.js +69 -103
  32. package/dist/cjs/private_utils.js +133 -223
  33. package/dist/cjs/sdk.js +97 -142
  34. package/dist/cjs/settings_button.js +30 -57
  35. package/dist/cjs/stats/block_stats.js +3 -15
  36. package/dist/cjs/testing/abstract_mock_airtable_interface.js +53 -97
  37. package/dist/cjs/types/airtable_interface.js +36 -8
  38. package/dist/cjs/types/field.js +66 -12
  39. package/dist/cjs/types/mutations.js +99 -6
  40. package/dist/cjs/types/permission_levels.js +2 -4
  41. package/dist/cjs/types/undo_redo.js +2 -3
  42. package/dist/cjs/types/view.js +16 -11
  43. package/dist/cjs/ui/base_provider.js +14 -9
  44. package/dist/cjs/ui/baymax_utils.js +107 -1102
  45. package/dist/cjs/ui/block_wrapper.js +30 -68
  46. package/dist/cjs/ui/box.js +52 -56
  47. package/dist/cjs/ui/button.js +60 -77
  48. package/dist/cjs/ui/cell_renderer.js +78 -139
  49. package/dist/cjs/ui/choice_token.js +45 -47
  50. package/dist/cjs/ui/collaborator_token.js +33 -54
  51. package/dist/cjs/ui/color_palette.js +58 -106
  52. package/dist/cjs/ui/color_palette_synced.js +41 -52
  53. package/dist/cjs/ui/confirmation_dialog.js +53 -69
  54. package/dist/cjs/ui/control_sizes.js +21 -46
  55. package/dist/cjs/ui/create_detect_element_resize.js +16 -50
  56. package/dist/cjs/ui/css_helpers.js +3 -10
  57. package/dist/cjs/ui/dialog.js +44 -71
  58. package/dist/cjs/ui/dialog_close_button.js +52 -72
  59. package/dist/cjs/ui/expand_record.js +4 -11
  60. package/dist/cjs/ui/expand_record_list.js +6 -11
  61. package/dist/cjs/ui/expand_record_picker_async.js +18 -35
  62. package/dist/cjs/ui/field_icon.js +25 -28
  63. package/dist/cjs/ui/field_picker.js +47 -81
  64. package/dist/cjs/ui/field_picker_synced.js +33 -44
  65. package/dist/cjs/ui/form_field.js +45 -64
  66. package/dist/cjs/ui/geometry/geometry.js +6 -10
  67. package/dist/cjs/ui/geometry/point.js +5 -13
  68. package/dist/cjs/ui/geometry/rect.js +7 -29
  69. package/dist/cjs/ui/geometry/size.js +5 -13
  70. package/dist/cjs/ui/global_alert.js +35 -61
  71. package/dist/cjs/ui/global_config_synced_component_helpers.js +4 -13
  72. package/dist/cjs/ui/heading.js +63 -92
  73. package/dist/cjs/ui/icon.js +44 -66
  74. package/dist/cjs/ui/icon_config.js +13 -24
  75. package/dist/cjs/ui/initialize_block.js +23 -36
  76. package/dist/cjs/ui/input.js +74 -87
  77. package/dist/cjs/ui/input_synced.js +34 -43
  78. package/dist/cjs/ui/key_codes.js +4 -9
  79. package/dist/cjs/ui/label.js +45 -50
  80. package/dist/cjs/ui/link.js +74 -89
  81. package/dist/cjs/ui/loader.js +26 -42
  82. package/dist/cjs/ui/modal.js +63 -89
  83. package/dist/cjs/ui/model_picker_select.js +29 -47
  84. package/dist/cjs/ui/popover.js +98 -180
  85. package/dist/cjs/ui/progress_bar.js +45 -51
  86. package/dist/cjs/ui/record_card.js +143 -278
  87. package/dist/cjs/ui/record_card_list.js +117 -165
  88. package/dist/cjs/ui/remote_utils.js +5 -13
  89. package/dist/cjs/ui/sdk_context.js +7 -9
  90. package/dist/cjs/ui/select.js +84 -118
  91. package/dist/cjs/ui/select_and_select_buttons_helpers.js +29 -45
  92. package/dist/cjs/ui/select_buttons.js +54 -90
  93. package/dist/cjs/ui/select_buttons_synced.js +32 -41
  94. package/dist/cjs/ui/select_synced.js +32 -42
  95. package/dist/cjs/ui/switch.js +66 -84
  96. package/dist/cjs/ui/switch_synced.js +32 -38
  97. package/dist/cjs/ui/synced.js +16 -43
  98. package/dist/cjs/ui/system/all_styles_set.js +89 -22
  99. package/dist/cjs/ui/system/appearance/appearance_set.js +15 -26
  100. package/dist/cjs/ui/system/appearance/background_color.js +6 -12
  101. package/dist/cjs/ui/system/appearance/border.js +6 -12
  102. package/dist/cjs/ui/system/appearance/border_radius.js +6 -12
  103. package/dist/cjs/ui/system/appearance/box_shadow.js +6 -12
  104. package/dist/cjs/ui/system/appearance/opacity.js +5 -11
  105. package/dist/cjs/ui/system/dimensions/dimensions_set.js +15 -27
  106. package/dist/cjs/ui/system/dimensions/height.js +5 -11
  107. package/dist/cjs/ui/system/dimensions/max_height.js +5 -11
  108. package/dist/cjs/ui/system/dimensions/max_width.js +5 -11
  109. package/dist/cjs/ui/system/dimensions/min_height.js +5 -11
  110. package/dist/cjs/ui/system/dimensions/min_width.js +5 -11
  111. package/dist/cjs/ui/system/dimensions/width.js +5 -11
  112. package/dist/cjs/ui/system/display.js +8 -9
  113. package/dist/cjs/ui/system/flex_container/align_content.js +6 -12
  114. package/dist/cjs/ui/system/flex_container/align_items.js +6 -12
  115. package/dist/cjs/ui/system/flex_container/flex_container_set.js +15 -27
  116. package/dist/cjs/ui/system/flex_container/flex_direction.js +5 -11
  117. package/dist/cjs/ui/system/flex_container/flex_wrap.js +5 -11
  118. package/dist/cjs/ui/system/flex_container/justify_content.js +5 -11
  119. package/dist/cjs/ui/system/flex_container/justify_items.js +5 -11
  120. package/dist/cjs/ui/system/flex_item/align_self.js +6 -12
  121. package/dist/cjs/ui/system/flex_item/flex.js +5 -11
  122. package/dist/cjs/ui/system/flex_item/flex_basis.js +5 -11
  123. package/dist/cjs/ui/system/flex_item/flex_grow.js +5 -11
  124. package/dist/cjs/ui/system/flex_item/flex_item_set.js +15 -28
  125. package/dist/cjs/ui/system/flex_item/flex_shrink.js +5 -11
  126. package/dist/cjs/ui/system/flex_item/justify_self.js +5 -11
  127. package/dist/cjs/ui/system/flex_item/order.js +5 -11
  128. package/dist/cjs/ui/system/index.js +310 -362
  129. package/dist/cjs/ui/system/overflow.js +8 -9
  130. package/dist/cjs/ui/system/position/bottom.js +6 -13
  131. package/dist/cjs/ui/system/position/left.js +5 -12
  132. package/dist/cjs/ui/system/position/position.js +5 -11
  133. package/dist/cjs/ui/system/position/position_set.js +15 -27
  134. package/dist/cjs/ui/system/position/right.js +5 -12
  135. package/dist/cjs/ui/system/position/top.js +5 -12
  136. package/dist/cjs/ui/system/position/z_index.js +5 -11
  137. package/dist/cjs/ui/system/spacing/margin.js +5 -12
  138. package/dist/cjs/ui/system/spacing/padding.js +5 -12
  139. package/dist/cjs/ui/system/spacing/spacing_set.js +15 -23
  140. package/dist/cjs/ui/system/typography/font_family.js +5 -11
  141. package/dist/cjs/ui/system/typography/font_size.js +5 -11
  142. package/dist/cjs/ui/system/typography/font_style.js +5 -11
  143. package/dist/cjs/ui/system/typography/font_weight.js +5 -11
  144. package/dist/cjs/ui/system/typography/letter_spacing.js +5 -11
  145. package/dist/cjs/ui/system/typography/line_height.js +5 -11
  146. package/dist/cjs/ui/system/typography/text_align.js +5 -11
  147. package/dist/cjs/ui/system/typography/text_color.js +5 -11
  148. package/dist/cjs/ui/system/typography/text_decoration.js +5 -11
  149. package/dist/cjs/ui/system/typography/text_transform.js +5 -11
  150. package/dist/cjs/ui/system/typography/typography_set.js +15 -31
  151. package/dist/cjs/ui/system/utils/create_responsive_prop_type.js +2 -4
  152. package/dist/cjs/ui/system/utils/create_style_prop_types.js +5 -13
  153. package/dist/cjs/ui/system/utils/ensure_numbers_are_within_scale.js +4 -14
  154. package/dist/cjs/ui/system/utils/get_style_props_for_responsive_prop.js +30 -70
  155. package/dist/cjs/ui/table_picker.js +26 -43
  156. package/dist/cjs/ui/table_picker_synced.js +33 -42
  157. package/dist/cjs/ui/text.js +59 -71
  158. package/dist/cjs/ui/text_button.js +80 -97
  159. package/dist/cjs/ui/theme/default_theme/button_variants.js +1 -5
  160. package/dist/cjs/ui/theme/default_theme/control_sizes.js +29 -42
  161. package/dist/cjs/ui/theme/default_theme/heading_styles.js +4 -5
  162. package/dist/cjs/ui/theme/default_theme/index.js +15 -32
  163. package/dist/cjs/ui/theme/default_theme/input_variants.js +1 -5
  164. package/dist/cjs/ui/theme/default_theme/link_variants.js +1 -5
  165. package/dist/cjs/ui/theme/default_theme/select_buttons_variants.js +1 -5
  166. package/dist/cjs/ui/theme/default_theme/select_variants.js +10 -21
  167. package/dist/cjs/ui/theme/default_theme/switch_variants.js +8 -20
  168. package/dist/cjs/ui/theme/default_theme/text_button_variants.js +1 -5
  169. package/dist/cjs/ui/theme/default_theme/text_styles.js +1 -2
  170. package/dist/cjs/ui/theme/default_theme/tokens.js +33 -35
  171. package/dist/cjs/ui/theme/theme_context.js +3 -6
  172. package/dist/cjs/ui/theme/use_theme.js +1 -7
  173. package/dist/cjs/ui/tooltip.js +38 -79
  174. package/dist/cjs/ui/types/aria_props.js +3 -7
  175. package/dist/cjs/ui/types/data_attributes_prop.js +8 -6
  176. package/dist/cjs/ui/types/tooltip_anchor_props.js +4 -5
  177. package/dist/cjs/ui/ui.js +97 -130
  178. package/dist/cjs/ui/unstable_standalone_ui.js +18 -42
  179. package/dist/cjs/ui/use_array_identity.js +0 -4
  180. package/dist/cjs/ui/use_base.js +4 -13
  181. package/dist/cjs/ui/use_color_scheme.js +60 -0
  182. package/dist/cjs/ui/use_cursor.js +3 -12
  183. package/dist/cjs/ui/use_form_field.js +4 -6
  184. package/dist/cjs/ui/use_global_config.js +3 -10
  185. package/dist/cjs/ui/use_loadable.js +59 -132
  186. package/dist/cjs/ui/use_record_action_data.js +6 -12
  187. package/dist/cjs/ui/use_records.js +27 -28
  188. package/dist/cjs/ui/use_session.js +6 -15
  189. package/dist/cjs/ui/use_settings_button.js +4 -11
  190. package/dist/cjs/ui/use_styled_system.js +12 -21
  191. package/dist/cjs/ui/use_synced.js +0 -7
  192. package/dist/cjs/ui/use_text_color_for_background_color.js +1 -5
  193. package/dist/cjs/ui/use_view_metadata.js +5 -8
  194. package/dist/cjs/ui/use_viewport.js +1 -7
  195. package/dist/cjs/ui/use_watchable.js +36 -74
  196. package/dist/cjs/ui/view_picker.js +44 -78
  197. package/dist/cjs/ui/view_picker_synced.js +33 -44
  198. package/dist/cjs/ui/viewport_constraint.js +37 -64
  199. package/dist/cjs/ui/with_hooks.js +17 -22
  200. package/dist/cjs/ui/with_styled_system.js +33 -60
  201. package/dist/cjs/undo_redo.js +12 -32
  202. package/dist/cjs/unstable_private_utils.js +6 -8
  203. package/dist/cjs/unstable_testing_utils.js +44 -57
  204. package/dist/cjs/viewport.js +127 -189
  205. package/dist/cjs/warning.js +5 -6
  206. package/dist/cjs/watchable.js +66 -148
  207. package/dist/types/src/colors.d.ts +1 -1
  208. package/dist/types/src/colors.d.ts.map +1 -1
  209. package/dist/types/src/global_config.d.ts +1 -1
  210. package/dist/types/src/global_config.d.ts.map +1 -1
  211. package/dist/types/src/models/base.d.ts +1 -1
  212. package/dist/types/src/models/base.d.ts.map +1 -1
  213. package/dist/types/src/models/cursor.d.ts +1 -1
  214. package/dist/types/src/models/cursor.d.ts.map +1 -1
  215. package/dist/types/src/models/field.d.ts +1 -1
  216. package/dist/types/src/models/field.d.ts.map +1 -1
  217. package/dist/types/src/models/linked_records_query_result.d.ts.map +1 -1
  218. package/dist/types/src/models/models.d.ts.map +1 -1
  219. package/dist/types/src/models/record.d.ts +1 -1
  220. package/dist/types/src/models/record.d.ts.map +1 -1
  221. package/dist/types/src/models/record_coloring.d.ts +2 -2
  222. package/dist/types/src/models/record_coloring.d.ts.map +1 -1
  223. package/dist/types/src/models/record_query_result.d.ts +3 -3
  224. package/dist/types/src/models/record_query_result.d.ts.map +1 -1
  225. package/dist/types/src/models/session.d.ts +1 -1
  226. package/dist/types/src/models/session.d.ts.map +1 -1
  227. package/dist/types/src/models/table.d.ts +1 -1
  228. package/dist/types/src/models/table.d.ts.map +1 -1
  229. package/dist/types/src/models/view.d.ts +1 -1
  230. package/dist/types/src/models/view.d.ts.map +1 -1
  231. package/dist/types/src/models/view_metadata_query_result.d.ts +2 -2
  232. package/dist/types/src/models/view_metadata_query_result.d.ts.map +1 -1
  233. package/dist/types/src/perform_record_action.d.ts +1 -1
  234. package/dist/types/src/perform_record_action.d.ts.map +1 -1
  235. package/dist/types/src/private_utils.d.ts +8 -8
  236. package/dist/types/src/private_utils.d.ts.map +1 -1
  237. package/dist/types/src/sdk.d.ts +1 -1
  238. package/dist/types/src/sdk.d.ts.map +1 -1
  239. package/dist/types/src/settings_button.d.ts +1 -1
  240. package/dist/types/src/settings_button.d.ts.map +1 -1
  241. package/dist/types/src/types/aggregators.d.ts +1 -1
  242. package/dist/types/src/types/aggregators.d.ts.map +1 -1
  243. package/dist/types/src/types/airtable_interface.d.ts +6 -6
  244. package/dist/types/src/types/airtable_interface.d.ts.map +1 -1
  245. package/dist/types/src/types/attachment.d.ts +1 -1
  246. package/dist/types/src/types/attachment.d.ts.map +1 -1
  247. package/dist/types/src/types/base.d.ts +1 -1
  248. package/dist/types/src/types/base.d.ts.map +1 -1
  249. package/dist/types/src/types/block.d.ts +1 -1
  250. package/dist/types/src/types/block.d.ts.map +1 -1
  251. package/dist/types/src/types/collaborator.d.ts +1 -1
  252. package/dist/types/src/types/collaborator.d.ts.map +1 -1
  253. package/dist/types/src/types/field.d.ts +5 -5
  254. package/dist/types/src/types/field.d.ts.map +1 -1
  255. package/dist/types/src/types/global_config.d.ts +6 -6
  256. package/dist/types/src/types/global_config.d.ts.map +1 -1
  257. package/dist/types/src/types/mutations.d.ts +4 -4
  258. package/dist/types/src/types/mutations.d.ts.map +1 -1
  259. package/dist/types/src/types/permission_levels.d.ts +1 -1
  260. package/dist/types/src/types/permission_levels.d.ts.map +1 -1
  261. package/dist/types/src/types/record.d.ts +2 -2
  262. package/dist/types/src/types/record.d.ts.map +1 -1
  263. package/dist/types/src/types/record_action_data.d.ts +1 -1
  264. package/dist/types/src/types/record_action_data.d.ts.map +1 -1
  265. package/dist/types/src/types/table.d.ts +3 -3
  266. package/dist/types/src/types/table.d.ts.map +1 -1
  267. package/dist/types/src/types/undo_redo.d.ts +1 -1
  268. package/dist/types/src/types/undo_redo.d.ts.map +1 -1
  269. package/dist/types/src/types/view.d.ts +4 -4
  270. package/dist/types/src/types/view.d.ts.map +1 -1
  271. package/dist/types/src/ui/base_provider.d.ts +1 -1
  272. package/dist/types/src/ui/base_provider.d.ts.map +1 -1
  273. package/dist/types/src/ui/block_wrapper.d.ts +2 -2
  274. package/dist/types/src/ui/button.d.ts +2 -2
  275. package/dist/types/src/ui/button.d.ts.map +1 -1
  276. package/dist/types/src/ui/cell_renderer.d.ts +2 -2
  277. package/dist/types/src/ui/choice_token.d.ts +4 -4
  278. package/dist/types/src/ui/choice_token.d.ts.map +1 -1
  279. package/dist/types/src/ui/collaborator_token.d.ts +6 -6
  280. package/dist/types/src/ui/collaborator_token.d.ts.map +1 -1
  281. package/dist/types/src/ui/color_palette.d.ts +3 -3
  282. package/dist/types/src/ui/color_palette.d.ts.map +1 -1
  283. package/dist/types/src/ui/color_palette_synced.d.ts +2 -2
  284. package/dist/types/src/ui/confirmation_dialog.d.ts +1 -1
  285. package/dist/types/src/ui/control_sizes.d.ts +2 -2
  286. package/dist/types/src/ui/control_sizes.d.ts.map +1 -1
  287. package/dist/types/src/ui/dialog.d.ts +2 -2
  288. package/dist/types/src/ui/dialog.d.ts.map +1 -1
  289. package/dist/types/src/ui/dialog_close_button.d.ts +1 -1
  290. package/dist/types/src/ui/field_icon.d.ts +3 -3
  291. package/dist/types/src/ui/field_icon.d.ts.map +1 -1
  292. package/dist/types/src/ui/field_picker.d.ts +2 -2
  293. package/dist/types/src/ui/field_picker.d.ts.map +1 -1
  294. package/dist/types/src/ui/form_field.d.ts +1 -1
  295. package/dist/types/src/ui/form_field.d.ts.map +1 -1
  296. package/dist/types/src/ui/global_alert.d.ts +1 -1
  297. package/dist/types/src/ui/global_alert.d.ts.map +1 -1
  298. package/dist/types/src/ui/global_config_synced_component_helpers.d.ts +1 -1
  299. package/dist/types/src/ui/global_config_synced_component_helpers.d.ts.map +1 -1
  300. package/dist/types/src/ui/heading.d.ts +4 -4
  301. package/dist/types/src/ui/heading.d.ts.map +1 -1
  302. package/dist/types/src/ui/icon.d.ts +2 -2
  303. package/dist/types/src/ui/icon.d.ts.map +1 -1
  304. package/dist/types/src/ui/icon_config.d.ts +39 -39
  305. package/dist/types/src/ui/icon_config.d.ts.map +1 -1
  306. package/dist/types/src/ui/initialize_block.d.ts +3 -3
  307. package/dist/types/src/ui/initialize_block.d.ts.map +1 -1
  308. package/dist/types/src/ui/input.d.ts +16 -16
  309. package/dist/types/src/ui/input.d.ts.map +1 -1
  310. package/dist/types/src/ui/label.d.ts +1 -1
  311. package/dist/types/src/ui/label.d.ts.map +1 -1
  312. package/dist/types/src/ui/link.d.ts +2 -2
  313. package/dist/types/src/ui/link.d.ts.map +1 -1
  314. package/dist/types/src/ui/loader.d.ts +2 -2
  315. package/dist/types/src/ui/loader.d.ts.map +1 -1
  316. package/dist/types/src/ui/model_picker_select.d.ts +1 -1
  317. package/dist/types/src/ui/model_picker_select.d.ts.map +1 -1
  318. package/dist/types/src/ui/popover.d.ts +5 -5
  319. package/dist/types/src/ui/popover.d.ts.map +1 -1
  320. package/dist/types/src/ui/progress_bar.d.ts +2 -2
  321. package/dist/types/src/ui/progress_bar.d.ts.map +1 -1
  322. package/dist/types/src/ui/record_card.d.ts +3 -3
  323. package/dist/types/src/ui/record_card.d.ts.map +1 -1
  324. package/dist/types/src/ui/record_card_list.d.ts +3 -3
  325. package/dist/types/src/ui/record_card_list.d.ts.map +1 -1
  326. package/dist/types/src/ui/select.d.ts +4 -4
  327. package/dist/types/src/ui/select_and_select_buttons_helpers.d.ts +4 -4
  328. package/dist/types/src/ui/select_and_select_buttons_helpers.d.ts.map +1 -1
  329. package/dist/types/src/ui/select_buttons.d.ts +5 -5
  330. package/dist/types/src/ui/select_buttons.d.ts.map +1 -1
  331. package/dist/types/src/ui/switch.d.ts +2 -2
  332. package/dist/types/src/ui/switch.d.ts.map +1 -1
  333. package/dist/types/src/ui/synced.d.ts +3 -3
  334. package/dist/types/src/ui/system/all_styles_set.d.ts +0 -1
  335. package/dist/types/src/ui/system/all_styles_set.d.ts.map +1 -1
  336. package/dist/types/src/ui/system/appearance/appearance_set.d.ts +0 -1
  337. package/dist/types/src/ui/system/appearance/appearance_set.d.ts.map +1 -1
  338. package/dist/types/src/ui/system/appearance/background_color.d.ts +0 -1
  339. package/dist/types/src/ui/system/appearance/background_color.d.ts.map +1 -1
  340. package/dist/types/src/ui/system/appearance/border.d.ts +0 -1
  341. package/dist/types/src/ui/system/appearance/border.d.ts.map +1 -1
  342. package/dist/types/src/ui/system/appearance/border_radius.d.ts +0 -1
  343. package/dist/types/src/ui/system/appearance/border_radius.d.ts.map +1 -1
  344. package/dist/types/src/ui/system/appearance/box_shadow.d.ts +0 -1
  345. package/dist/types/src/ui/system/appearance/box_shadow.d.ts.map +1 -1
  346. package/dist/types/src/ui/system/appearance/opacity.d.ts +0 -1
  347. package/dist/types/src/ui/system/appearance/opacity.d.ts.map +1 -1
  348. package/dist/types/src/ui/system/dimensions/dimensions_set.d.ts +0 -1
  349. package/dist/types/src/ui/system/dimensions/dimensions_set.d.ts.map +1 -1
  350. package/dist/types/src/ui/system/dimensions/height.d.ts +0 -1
  351. package/dist/types/src/ui/system/dimensions/height.d.ts.map +1 -1
  352. package/dist/types/src/ui/system/dimensions/max_height.d.ts +0 -1
  353. package/dist/types/src/ui/system/dimensions/max_height.d.ts.map +1 -1
  354. package/dist/types/src/ui/system/dimensions/max_width.d.ts +0 -1
  355. package/dist/types/src/ui/system/dimensions/max_width.d.ts.map +1 -1
  356. package/dist/types/src/ui/system/dimensions/min_height.d.ts +0 -1
  357. package/dist/types/src/ui/system/dimensions/min_height.d.ts.map +1 -1
  358. package/dist/types/src/ui/system/dimensions/min_width.d.ts +0 -1
  359. package/dist/types/src/ui/system/dimensions/min_width.d.ts.map +1 -1
  360. package/dist/types/src/ui/system/dimensions/width.d.ts +0 -1
  361. package/dist/types/src/ui/system/dimensions/width.d.ts.map +1 -1
  362. package/dist/types/src/ui/system/display.d.ts +0 -1
  363. package/dist/types/src/ui/system/display.d.ts.map +1 -1
  364. package/dist/types/src/ui/system/flex_container/align_content.d.ts +0 -1
  365. package/dist/types/src/ui/system/flex_container/align_content.d.ts.map +1 -1
  366. package/dist/types/src/ui/system/flex_container/align_items.d.ts +0 -1
  367. package/dist/types/src/ui/system/flex_container/align_items.d.ts.map +1 -1
  368. package/dist/types/src/ui/system/flex_container/flex_container_set.d.ts +0 -1
  369. package/dist/types/src/ui/system/flex_container/flex_container_set.d.ts.map +1 -1
  370. package/dist/types/src/ui/system/flex_container/flex_direction.d.ts +0 -1
  371. package/dist/types/src/ui/system/flex_container/flex_direction.d.ts.map +1 -1
  372. package/dist/types/src/ui/system/flex_container/flex_wrap.d.ts +0 -1
  373. package/dist/types/src/ui/system/flex_container/flex_wrap.d.ts.map +1 -1
  374. package/dist/types/src/ui/system/flex_container/justify_content.d.ts +0 -1
  375. package/dist/types/src/ui/system/flex_container/justify_content.d.ts.map +1 -1
  376. package/dist/types/src/ui/system/flex_container/justify_items.d.ts +0 -1
  377. package/dist/types/src/ui/system/flex_container/justify_items.d.ts.map +1 -1
  378. package/dist/types/src/ui/system/flex_item/align_self.d.ts +0 -1
  379. package/dist/types/src/ui/system/flex_item/align_self.d.ts.map +1 -1
  380. package/dist/types/src/ui/system/flex_item/flex.d.ts +0 -1
  381. package/dist/types/src/ui/system/flex_item/flex.d.ts.map +1 -1
  382. package/dist/types/src/ui/system/flex_item/flex_basis.d.ts +0 -1
  383. package/dist/types/src/ui/system/flex_item/flex_basis.d.ts.map +1 -1
  384. package/dist/types/src/ui/system/flex_item/flex_grow.d.ts +0 -1
  385. package/dist/types/src/ui/system/flex_item/flex_grow.d.ts.map +1 -1
  386. package/dist/types/src/ui/system/flex_item/flex_item_set.d.ts +0 -1
  387. package/dist/types/src/ui/system/flex_item/flex_item_set.d.ts.map +1 -1
  388. package/dist/types/src/ui/system/flex_item/flex_shrink.d.ts +0 -1
  389. package/dist/types/src/ui/system/flex_item/flex_shrink.d.ts.map +1 -1
  390. package/dist/types/src/ui/system/flex_item/justify_self.d.ts +0 -1
  391. package/dist/types/src/ui/system/flex_item/justify_self.d.ts.map +1 -1
  392. package/dist/types/src/ui/system/flex_item/order.d.ts +0 -1
  393. package/dist/types/src/ui/system/flex_item/order.d.ts.map +1 -1
  394. package/dist/types/src/ui/system/overflow.d.ts +0 -1
  395. package/dist/types/src/ui/system/overflow.d.ts.map +1 -1
  396. package/dist/types/src/ui/system/position/bottom.d.ts +0 -1
  397. package/dist/types/src/ui/system/position/bottom.d.ts.map +1 -1
  398. package/dist/types/src/ui/system/position/left.d.ts +0 -1
  399. package/dist/types/src/ui/system/position/left.d.ts.map +1 -1
  400. package/dist/types/src/ui/system/position/position.d.ts +0 -1
  401. package/dist/types/src/ui/system/position/position.d.ts.map +1 -1
  402. package/dist/types/src/ui/system/position/position_set.d.ts +0 -1
  403. package/dist/types/src/ui/system/position/position_set.d.ts.map +1 -1
  404. package/dist/types/src/ui/system/position/right.d.ts +0 -1
  405. package/dist/types/src/ui/system/position/right.d.ts.map +1 -1
  406. package/dist/types/src/ui/system/position/top.d.ts +0 -1
  407. package/dist/types/src/ui/system/position/top.d.ts.map +1 -1
  408. package/dist/types/src/ui/system/position/z_index.d.ts +0 -1
  409. package/dist/types/src/ui/system/position/z_index.d.ts.map +1 -1
  410. package/dist/types/src/ui/system/spacing/margin.d.ts +0 -1
  411. package/dist/types/src/ui/system/spacing/margin.d.ts.map +1 -1
  412. package/dist/types/src/ui/system/spacing/padding.d.ts +0 -1
  413. package/dist/types/src/ui/system/spacing/padding.d.ts.map +1 -1
  414. package/dist/types/src/ui/system/spacing/spacing_set.d.ts +0 -1
  415. package/dist/types/src/ui/system/spacing/spacing_set.d.ts.map +1 -1
  416. package/dist/types/src/ui/system/typography/font_family.d.ts +0 -1
  417. package/dist/types/src/ui/system/typography/font_family.d.ts.map +1 -1
  418. package/dist/types/src/ui/system/typography/font_size.d.ts +0 -1
  419. package/dist/types/src/ui/system/typography/font_size.d.ts.map +1 -1
  420. package/dist/types/src/ui/system/typography/font_style.d.ts +0 -1
  421. package/dist/types/src/ui/system/typography/font_style.d.ts.map +1 -1
  422. package/dist/types/src/ui/system/typography/font_weight.d.ts +0 -1
  423. package/dist/types/src/ui/system/typography/font_weight.d.ts.map +1 -1
  424. package/dist/types/src/ui/system/typography/letter_spacing.d.ts +0 -1
  425. package/dist/types/src/ui/system/typography/letter_spacing.d.ts.map +1 -1
  426. package/dist/types/src/ui/system/typography/line_height.d.ts +0 -1
  427. package/dist/types/src/ui/system/typography/line_height.d.ts.map +1 -1
  428. package/dist/types/src/ui/system/typography/text_align.d.ts +0 -1
  429. package/dist/types/src/ui/system/typography/text_align.d.ts.map +1 -1
  430. package/dist/types/src/ui/system/typography/text_color.d.ts +0 -1
  431. package/dist/types/src/ui/system/typography/text_color.d.ts.map +1 -1
  432. package/dist/types/src/ui/system/typography/text_decoration.d.ts +0 -1
  433. package/dist/types/src/ui/system/typography/text_decoration.d.ts.map +1 -1
  434. package/dist/types/src/ui/system/typography/text_transform.d.ts +0 -1
  435. package/dist/types/src/ui/system/typography/text_transform.d.ts.map +1 -1
  436. package/dist/types/src/ui/system/typography/typography_set.d.ts +0 -1
  437. package/dist/types/src/ui/system/typography/typography_set.d.ts.map +1 -1
  438. package/dist/types/src/ui/system/utils/create_style_prop_types.d.ts +1 -1
  439. package/dist/types/src/ui/system/utils/create_style_prop_types.d.ts.map +1 -1
  440. package/dist/types/src/ui/system/utils/csstype.d.ts +578 -578
  441. package/dist/types/src/ui/system/utils/csstype.d.ts.map +1 -1
  442. package/dist/types/src/ui/system/utils/types.d.ts +4 -4
  443. package/dist/types/src/ui/system/utils/types.d.ts.map +1 -1
  444. package/dist/types/src/ui/table_picker.d.ts +1 -1
  445. package/dist/types/src/ui/table_picker.d.ts.map +1 -1
  446. package/dist/types/src/ui/text.d.ts +4 -4
  447. package/dist/types/src/ui/text.d.ts.map +1 -1
  448. package/dist/types/src/ui/text_button.d.ts +2 -2
  449. package/dist/types/src/ui/text_button.d.ts.map +1 -1
  450. package/dist/types/src/ui/theme/default_theme/heading_styles.d.ts +2 -2
  451. package/dist/types/src/ui/theme/default_theme/heading_styles.d.ts.map +1 -1
  452. package/dist/types/src/ui/theme/default_theme/index.d.ts +1 -1
  453. package/dist/types/src/ui/theme/theme_context.d.ts +1 -3
  454. package/dist/types/src/ui/theme/theme_context.d.ts.map +1 -1
  455. package/dist/types/src/ui/theme/use_theme.d.ts +1 -1
  456. package/dist/types/src/ui/tooltip.d.ts +3 -3
  457. package/dist/types/src/ui/types/data_attributes_prop.d.ts.map +1 -1
  458. package/dist/types/src/ui/types/tooltip_anchor_props.d.ts +0 -1
  459. package/dist/types/src/ui/types/tooltip_anchor_props.d.ts.map +1 -1
  460. package/dist/types/src/ui/ui.d.ts +1 -0
  461. package/dist/types/src/ui/ui.d.ts.map +1 -1
  462. package/dist/types/src/ui/use_base.d.ts.map +1 -1
  463. package/dist/types/src/ui/use_color_scheme.d.ts +28 -0
  464. package/dist/types/src/ui/use_color_scheme.d.ts.map +1 -0
  465. package/dist/types/src/ui/use_cursor.d.ts.map +1 -1
  466. package/dist/types/src/ui/use_form_field.d.ts +0 -2
  467. package/dist/types/src/ui/use_form_field.d.ts.map +1 -1
  468. package/dist/types/src/ui/use_records.d.ts +2 -2
  469. package/dist/types/src/ui/use_records.d.ts.map +1 -1
  470. package/dist/types/src/ui/use_session.d.ts.map +1 -1
  471. package/dist/types/src/ui/view_picker.d.ts +3 -3
  472. package/dist/types/src/ui/view_picker.d.ts.map +1 -1
  473. package/dist/types/src/ui/viewport_constraint.d.ts +3 -3
  474. package/dist/types/src/ui/viewport_constraint.d.ts.map +1 -1
  475. package/dist/types/src/viewport.d.ts +2 -2
  476. package/dist/types/src/viewport.d.ts.map +1 -1
  477. package/dist/types/src/warning.d.ts +1 -1
  478. package/dist/types/src/warning.d.ts.map +1 -1
  479. package/package.json +40 -34
  480. package/dist/types/stories/all_controls.stories.d.ts +0 -2
  481. package/dist/types/stories/all_controls.stories.d.ts.map +0 -1
  482. package/dist/types/stories/box.appearance.stories.d.ts +0 -2
  483. package/dist/types/stories/box.appearance.stories.d.ts.map +0 -1
  484. package/dist/types/stories/box.dimensions.stories.d.ts +0 -2
  485. package/dist/types/stories/box.dimensions.stories.d.ts.map +0 -1
  486. package/dist/types/stories/box.flex_container.stories.d.ts +0 -2
  487. package/dist/types/stories/box.flex_container.stories.d.ts.map +0 -1
  488. package/dist/types/stories/box.flex_item.stories.d.ts +0 -2
  489. package/dist/types/stories/box.flex_item.stories.d.ts.map +0 -1
  490. package/dist/types/stories/box.position.stories.d.ts +0 -2
  491. package/dist/types/stories/box.position.stories.d.ts.map +0 -1
  492. package/dist/types/stories/box.spacing.stories.d.ts +0 -2
  493. package/dist/types/stories/box.spacing.stories.d.ts.map +0 -1
  494. package/dist/types/stories/box.stories.d.ts +0 -2
  495. package/dist/types/stories/box.stories.d.ts.map +0 -1
  496. package/dist/types/stories/box.typography.stories.d.ts +0 -2
  497. package/dist/types/stories/box.typography.stories.d.ts.map +0 -1
  498. package/dist/types/stories/button.stories.d.ts +0 -2
  499. package/dist/types/stories/button.stories.d.ts.map +0 -1
  500. package/dist/types/stories/cell_renderer.stories.d.ts +0 -2
  501. package/dist/types/stories/cell_renderer.stories.d.ts.map +0 -1
  502. package/dist/types/stories/choice_token.stories.d.ts +0 -2
  503. package/dist/types/stories/choice_token.stories.d.ts.map +0 -1
  504. package/dist/types/stories/collaborator_token.stories.d.ts +0 -2
  505. package/dist/types/stories/collaborator_token.stories.d.ts.map +0 -1
  506. package/dist/types/stories/color_palette.stories.d.ts +0 -2
  507. package/dist/types/stories/color_palette.stories.d.ts.map +0 -1
  508. package/dist/types/stories/confirmation_dialog.stories.d.ts +0 -2
  509. package/dist/types/stories/confirmation_dialog.stories.d.ts.map +0 -1
  510. package/dist/types/stories/dialog.stories.d.ts +0 -2
  511. package/dist/types/stories/dialog.stories.d.ts.map +0 -1
  512. package/dist/types/stories/field_icon.stories.d.ts +0 -2
  513. package/dist/types/stories/field_icon.stories.d.ts.map +0 -1
  514. package/dist/types/stories/form_field.stories.d.ts +0 -2
  515. package/dist/types/stories/form_field.stories.d.ts.map +0 -1
  516. package/dist/types/stories/heading.size.stories.d.ts +0 -2
  517. package/dist/types/stories/heading.size.stories.d.ts.map +0 -1
  518. package/dist/types/stories/heading.stories.d.ts +0 -2
  519. package/dist/types/stories/heading.stories.d.ts.map +0 -1
  520. package/dist/types/stories/helpers/attachments.d.ts +0 -4
  521. package/dist/types/stories/helpers/attachments.d.ts.map +0 -1
  522. package/dist/types/stories/helpers/categorize_style_props.d.ts +0 -14
  523. package/dist/types/stories/helpers/categorize_style_props.d.ts.map +0 -1
  524. package/dist/types/stories/helpers/choice_options.d.ts +0 -7
  525. package/dist/types/stories/helpers/choice_options.d.ts.map +0 -1
  526. package/dist/types/stories/helpers/code_block.d.ts +0 -5
  527. package/dist/types/stories/helpers/code_block.d.ts.map +0 -1
  528. package/dist/types/stories/helpers/code_utils.d.ts +0 -32
  529. package/dist/types/stories/helpers/code_utils.d.ts.map +0 -1
  530. package/dist/types/stories/helpers/collaborator_options.d.ts +0 -7
  531. package/dist/types/stories/helpers/collaborator_options.d.ts.map +0 -1
  532. package/dist/types/stories/helpers/example.d.ts +0 -39
  533. package/dist/types/stories/helpers/example.d.ts.map +0 -1
  534. package/dist/types/stories/helpers/example_code_panel.d.ts +0 -10
  535. package/dist/types/stories/helpers/example_code_panel.d.ts.map +0 -1
  536. package/dist/types/stories/helpers/fake_cell_renderer.d.ts +0 -7
  537. package/dist/types/stories/helpers/fake_cell_renderer.d.ts.map +0 -1
  538. package/dist/types/stories/helpers/fake_foreign_record.d.ts +0 -5
  539. package/dist/types/stories/helpers/fake_foreign_record.d.ts.map +0 -1
  540. package/dist/types/stories/helpers/fake_record_card.d.ts +0 -13
  541. package/dist/types/stories/helpers/fake_record_card.d.ts.map +0 -1
  542. package/dist/types/stories/helpers/field_type.d.ts +0 -6
  543. package/dist/types/stories/helpers/field_type.d.ts.map +0 -1
  544. package/dist/types/stories/helpers/raf_throttle.d.ts +0 -5
  545. package/dist/types/stories/helpers/raf_throttle.d.ts.map +0 -1
  546. package/dist/types/stories/helpers/style_prop_list.d.ts +0 -9
  547. package/dist/types/stories/helpers/style_prop_list.d.ts.map +0 -1
  548. package/dist/types/stories/helpers/sync_source_options.d.ts +0 -7
  549. package/dist/types/stories/helpers/sync_source_options.d.ts.map +0 -1
  550. package/dist/types/stories/helpers/use_resizable_panel.d.ts +0 -27
  551. package/dist/types/stories/helpers/use_resizable_panel.d.ts.map +0 -1
  552. package/dist/types/stories/icon.stories.d.ts +0 -2
  553. package/dist/types/stories/icon.stories.d.ts.map +0 -1
  554. package/dist/types/stories/icon_example.d.ts +0 -3
  555. package/dist/types/stories/icon_example.d.ts.map +0 -1
  556. package/dist/types/stories/input.stories.d.ts +0 -2
  557. package/dist/types/stories/input.stories.d.ts.map +0 -1
  558. package/dist/types/stories/label.stories.d.ts +0 -2
  559. package/dist/types/stories/label.stories.d.ts.map +0 -1
  560. package/dist/types/stories/link.stories.d.ts +0 -2
  561. package/dist/types/stories/link.stories.d.ts.map +0 -1
  562. package/dist/types/stories/loader.stories.d.ts +0 -2
  563. package/dist/types/stories/loader.stories.d.ts.map +0 -1
  564. package/dist/types/stories/model_pickers.stories.d.ts +0 -2
  565. package/dist/types/stories/model_pickers.stories.d.ts.map +0 -1
  566. package/dist/types/stories/progress_bar.stories.d.ts +0 -2
  567. package/dist/types/stories/progress_bar.stories.d.ts.map +0 -1
  568. package/dist/types/stories/record_card.stories.d.ts +0 -2
  569. package/dist/types/stories/record_card.stories.d.ts.map +0 -1
  570. package/dist/types/stories/record_card_list.stories.d.ts +0 -2
  571. package/dist/types/stories/record_card_list.stories.d.ts.map +0 -1
  572. package/dist/types/stories/select.stories.d.ts +0 -2
  573. package/dist/types/stories/select.stories.d.ts.map +0 -1
  574. package/dist/types/stories/select_buttons.stories.d.ts +0 -2
  575. package/dist/types/stories/select_buttons.stories.d.ts.map +0 -1
  576. package/dist/types/stories/switch.stories.d.ts +0 -2
  577. package/dist/types/stories/switch.stories.d.ts.map +0 -1
  578. package/dist/types/stories/text.size.stories.d.ts +0 -2
  579. package/dist/types/stories/text.size.stories.d.ts.map +0 -1
  580. package/dist/types/stories/text.stories.d.ts +0 -2
  581. package/dist/types/stories/text.stories.d.ts.map +0 -1
  582. package/dist/types/stories/text_button.stories.d.ts +0 -2
  583. package/dist/types/stories/text_button.stories.d.ts.map +0 -1
  584. package/dist/types/stories/tooltip.stories.d.ts +0 -2
  585. package/dist/types/stories/tooltip.stories.d.ts.map +0 -1
  586. package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts +0 -124
  587. package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts.map +0 -1
  588. package/dist/types/test/airtable_interface_mocks/linked_records.d.ts +0 -4
  589. package/dist/types/test/airtable_interface_mocks/linked_records.d.ts.map +0 -1
  590. package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts +0 -61
  591. package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts.map +0 -1
  592. package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts +0 -4
  593. package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts.map +0 -1
  594. package/dist/types/test/error_utils.test.d.ts +0 -2
  595. package/dist/types/test/error_utils.test.d.ts.map +0 -1
  596. package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts +0 -2
  597. package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts.map +0 -1
  598. package/dist/types/test/index.test.d.ts +0 -2
  599. package/dist/types/test/index.test.d.ts.map +0 -1
  600. package/dist/types/test/models/base.test.d.ts +0 -2
  601. package/dist/types/test/models/base.test.d.ts.map +0 -1
  602. package/dist/types/test/models/cursor.test.d.ts +0 -2
  603. package/dist/types/test/models/cursor.test.d.ts.map +0 -1
  604. package/dist/types/test/models/field.test.d.ts +0 -2
  605. package/dist/types/test/models/field.test.d.ts.map +0 -1
  606. package/dist/types/test/models/linked_records_query_result.test.d.ts +0 -2
  607. package/dist/types/test/models/linked_records_query_result.test.d.ts.map +0 -1
  608. package/dist/types/test/models/mutations.test.d.ts +0 -2
  609. package/dist/types/test/models/mutations.test.d.ts.map +0 -1
  610. package/dist/types/test/models/object_pool.test.d.ts +0 -2
  611. package/dist/types/test/models/object_pool.test.d.ts.map +0 -1
  612. package/dist/types/test/models/record.test.d.ts +0 -2
  613. package/dist/types/test/models/record.test.d.ts.map +0 -1
  614. package/dist/types/test/models/session.test.d.ts +0 -2
  615. package/dist/types/test/models/session.test.d.ts.map +0 -1
  616. package/dist/types/test/models/table.test.d.ts +0 -2
  617. package/dist/types/test/models/table.test.d.ts.map +0 -1
  618. package/dist/types/test/models/table_mutations.test.d.ts +0 -2
  619. package/dist/types/test/models/table_mutations.test.d.ts.map +0 -1
  620. package/dist/types/test/models/table_or_view_query_result.test.d.ts +0 -2
  621. package/dist/types/test/models/table_or_view_query_result.test.d.ts.map +0 -1
  622. package/dist/types/test/models/view.test.d.ts +0 -2
  623. package/dist/types/test/models/view.test.d.ts.map +0 -1
  624. package/dist/types/test/models/view_metadata_query_result.test.d.ts +0 -2
  625. package/dist/types/test/models/view_metadata_query_result.test.d.ts.map +0 -1
  626. package/dist/types/test/private_utils.test.d.ts +0 -2
  627. package/dist/types/test/private_utils.test.d.ts.map +0 -1
  628. package/dist/types/test/sdk.test.d.ts +0 -2
  629. package/dist/types/test/sdk.test.d.ts.map +0 -1
  630. package/dist/types/test/setup_enzyme.d.ts +0 -2
  631. package/dist/types/test/setup_enzyme.d.ts.map +0 -1
  632. package/dist/types/test/test_helpers.d.ts +0 -11
  633. package/dist/types/test/test_helpers.d.ts.map +0 -1
  634. package/dist/types/test/ui/base_provider.test.d.ts +0 -2
  635. package/dist/types/test/ui/base_provider.test.d.ts.map +0 -1
  636. package/dist/types/test/ui/block_wrapper.test.d.ts +0 -2
  637. package/dist/types/test/ui/block_wrapper.test.d.ts.map +0 -1
  638. package/dist/types/test/ui/box.test.d.ts +0 -2
  639. package/dist/types/test/ui/box.test.d.ts.map +0 -1
  640. package/dist/types/test/ui/button.test.d.ts +0 -2
  641. package/dist/types/test/ui/button.test.d.ts.map +0 -1
  642. package/dist/types/test/ui/cell_renderer.test.d.ts +0 -2
  643. package/dist/types/test/ui/cell_renderer.test.d.ts.map +0 -1
  644. package/dist/types/test/ui/choice_token.test.d.ts +0 -2
  645. package/dist/types/test/ui/choice_token.test.d.ts.map +0 -1
  646. package/dist/types/test/ui/collaborator_token.test.d.ts +0 -2
  647. package/dist/types/test/ui/collaborator_token.test.d.ts.map +0 -1
  648. package/dist/types/test/ui/color_palette.test.d.ts +0 -2
  649. package/dist/types/test/ui/color_palette.test.d.ts.map +0 -1
  650. package/dist/types/test/ui/color_palette_synced.test.d.ts +0 -2
  651. package/dist/types/test/ui/color_palette_synced.test.d.ts.map +0 -1
  652. package/dist/types/test/ui/confirmation_dialog.test.d.ts +0 -2
  653. package/dist/types/test/ui/confirmation_dialog.test.d.ts.map +0 -1
  654. package/dist/types/test/ui/dialog.test.d.ts +0 -2
  655. package/dist/types/test/ui/dialog.test.d.ts.map +0 -1
  656. package/dist/types/test/ui/expand_record.test.d.ts +0 -2
  657. package/dist/types/test/ui/expand_record.test.d.ts.map +0 -1
  658. package/dist/types/test/ui/expand_record_list.test.d.ts +0 -2
  659. package/dist/types/test/ui/expand_record_list.test.d.ts.map +0 -1
  660. package/dist/types/test/ui/expand_record_picker_async.test.d.ts +0 -2
  661. package/dist/types/test/ui/expand_record_picker_async.test.d.ts.map +0 -1
  662. package/dist/types/test/ui/field_icon.test.d.ts +0 -2
  663. package/dist/types/test/ui/field_icon.test.d.ts.map +0 -1
  664. package/dist/types/test/ui/field_picker.test.d.ts +0 -2
  665. package/dist/types/test/ui/field_picker.test.d.ts.map +0 -1
  666. package/dist/types/test/ui/field_picker_synced.test.d.ts +0 -2
  667. package/dist/types/test/ui/field_picker_synced.test.d.ts.map +0 -1
  668. package/dist/types/test/ui/form_field.test.d.ts +0 -2
  669. package/dist/types/test/ui/form_field.test.d.ts.map +0 -1
  670. package/dist/types/test/ui/global_alert.test.d.ts +0 -2
  671. package/dist/types/test/ui/global_alert.test.d.ts.map +0 -1
  672. package/dist/types/test/ui/heading.test.d.ts +0 -2
  673. package/dist/types/test/ui/heading.test.d.ts.map +0 -1
  674. package/dist/types/test/ui/icon.test.d.ts +0 -2
  675. package/dist/types/test/ui/icon.test.d.ts.map +0 -1
  676. package/dist/types/test/ui/initialize_block.test.d.ts +0 -2
  677. package/dist/types/test/ui/initialize_block.test.d.ts.map +0 -1
  678. package/dist/types/test/ui/input.test.d.ts +0 -2
  679. package/dist/types/test/ui/input.test.d.ts.map +0 -1
  680. package/dist/types/test/ui/input_synced.test.d.ts +0 -2
  681. package/dist/types/test/ui/input_synced.test.d.ts.map +0 -1
  682. package/dist/types/test/ui/label.test.d.ts +0 -2
  683. package/dist/types/test/ui/label.test.d.ts.map +0 -1
  684. package/dist/types/test/ui/link.test.d.ts +0 -2
  685. package/dist/types/test/ui/link.test.d.ts.map +0 -1
  686. package/dist/types/test/ui/loader.test.d.ts +0 -2
  687. package/dist/types/test/ui/loader.test.d.ts.map +0 -1
  688. package/dist/types/test/ui/modal.test.d.ts +0 -2
  689. package/dist/types/test/ui/modal.test.d.ts.map +0 -1
  690. package/dist/types/test/ui/popover.test.d.ts +0 -2
  691. package/dist/types/test/ui/popover.test.d.ts.map +0 -1
  692. package/dist/types/test/ui/progress_bar.test.d.ts +0 -2
  693. package/dist/types/test/ui/progress_bar.test.d.ts.map +0 -1
  694. package/dist/types/test/ui/record_card.test.d.ts +0 -2
  695. package/dist/types/test/ui/record_card.test.d.ts.map +0 -1
  696. package/dist/types/test/ui/record_card_list.test.d.ts +0 -2
  697. package/dist/types/test/ui/record_card_list.test.d.ts.map +0 -1
  698. package/dist/types/test/ui/remote_utils.test.d.ts +0 -2
  699. package/dist/types/test/ui/remote_utils.test.d.ts.map +0 -1
  700. package/dist/types/test/ui/select.test.d.ts +0 -2
  701. package/dist/types/test/ui/select.test.d.ts.map +0 -1
  702. package/dist/types/test/ui/select_buttons.test.d.ts +0 -2
  703. package/dist/types/test/ui/select_buttons.test.d.ts.map +0 -1
  704. package/dist/types/test/ui/select_buttons_synced.test.d.ts +0 -2
  705. package/dist/types/test/ui/select_buttons_synced.test.d.ts.map +0 -1
  706. package/dist/types/test/ui/select_synced.test.d.ts +0 -2
  707. package/dist/types/test/ui/select_synced.test.d.ts.map +0 -1
  708. package/dist/types/test/ui/switch.test.d.ts +0 -2
  709. package/dist/types/test/ui/switch.test.d.ts.map +0 -1
  710. package/dist/types/test/ui/switch_synced.test.d.ts +0 -2
  711. package/dist/types/test/ui/switch_synced.test.d.ts.map +0 -1
  712. package/dist/types/test/ui/synced.test.d.ts +0 -2
  713. package/dist/types/test/ui/synced.test.d.ts.map +0 -1
  714. package/dist/types/test/ui/table_picker.test.d.ts +0 -2
  715. package/dist/types/test/ui/table_picker.test.d.ts.map +0 -1
  716. package/dist/types/test/ui/table_picker_synced.test.d.ts +0 -2
  717. package/dist/types/test/ui/table_picker_synced.test.d.ts.map +0 -1
  718. package/dist/types/test/ui/text.test.d.ts +0 -2
  719. package/dist/types/test/ui/text.test.d.ts.map +0 -1
  720. package/dist/types/test/ui/text_button.test.d.ts +0 -2
  721. package/dist/types/test/ui/text_button.test.d.ts.map +0 -1
  722. package/dist/types/test/ui/tooltip.test.d.ts +0 -2
  723. package/dist/types/test/ui/tooltip.test.d.ts.map +0 -1
  724. package/dist/types/test/ui/ui.test.d.ts +0 -2
  725. package/dist/types/test/ui/ui.test.d.ts.map +0 -1
  726. package/dist/types/test/ui/unstable_standalone_ui.test.d.ts +0 -1
  727. package/dist/types/test/ui/unstable_standalone_ui.test.d.ts.map +0 -1
  728. package/dist/types/test/ui/use_array_identity.test.d.ts +0 -2
  729. package/dist/types/test/ui/use_array_identity.test.d.ts.map +0 -1
  730. package/dist/types/test/ui/use_loadable.test.d.ts +0 -2
  731. package/dist/types/test/ui/use_loadable.test.d.ts.map +0 -1
  732. package/dist/types/test/ui/use_record_action_data.test.d.ts +0 -2
  733. package/dist/types/test/ui/use_record_action_data.test.d.ts.map +0 -1
  734. package/dist/types/test/ui/use_records.test.d.ts +0 -2
  735. package/dist/types/test/ui/use_records.test.d.ts.map +0 -1
  736. package/dist/types/test/ui/use_view_metadata.test.d.ts +0 -2
  737. package/dist/types/test/ui/use_view_metadata.test.d.ts.map +0 -1
  738. package/dist/types/test/ui/use_watchable.test.d.ts +0 -2
  739. package/dist/types/test/ui/use_watchable.test.d.ts.map +0 -1
  740. package/dist/types/test/ui/view_picker.test.d.ts +0 -2
  741. package/dist/types/test/ui/view_picker.test.d.ts.map +0 -1
  742. package/dist/types/test/ui/view_picker_synced.test.d.ts +0 -2
  743. package/dist/types/test/ui/view_picker_synced.test.d.ts.map +0 -1
  744. package/dist/types/test/ui/viewport_constraint.test.d.ts +0 -2
  745. package/dist/types/test/ui/viewport_constraint.test.d.ts.map +0 -1
  746. package/dist/types/test/unstable_private_utils.test.d.ts +0 -1
  747. package/dist/types/test/unstable_private_utils.test.d.ts.map +0 -1
@@ -381,7 +381,7 @@ export interface StandardShorthandProperties<TLength = string | 0> {
381
381
  textEmphasis?: TextEmphasisProperty;
382
382
  transition?: TransitionProperty;
383
383
  }
384
- export declare type StandardProperties<TLength = string | 0> = StandardLonghandProperties<TLength> & StandardShorthandProperties<TLength>;
384
+ export type StandardProperties<TLength = string | 0> = StandardLonghandProperties<TLength> & StandardShorthandProperties<TLength>;
385
385
  export interface VendorLonghandProperties<TLength = string | 0> {
386
386
  msTransitionProperty?: TransitionPropertyProperty;
387
387
  MozAnimationDelay?: GlobalsString;
@@ -635,7 +635,7 @@ export interface VendorShorthandProperties<TLength = string | 0> {
635
635
  WebkitTextStroke?: WebkitTextStrokeProperty<TLength>;
636
636
  WebkitTransition?: TransitionProperty;
637
637
  }
638
- export declare type VendorProperties<TLength = string | 0> = VendorLonghandProperties<TLength> & VendorShorthandProperties<TLength>;
638
+ export type VendorProperties<TLength = string | 0> = VendorLonghandProperties<TLength> & VendorShorthandProperties<TLength>;
639
639
  export interface ObsoleteProperties<TLength = string | 0> {
640
640
  MozBoxAlign?: BoxAlignProperty;
641
641
  boxAlign?: BoxAlignProperty;
@@ -796,7 +796,7 @@ export interface SvgProperties<TLength = string | 0> {
796
796
  wordSpacing?: WordSpacingProperty<TLength>;
797
797
  writingMode?: WritingModeProperty;
798
798
  }
799
- export declare type Properties<TLength = string | 0> = StandardProperties<TLength> & VendorProperties<TLength> & ObsoleteProperties<TLength> & SvgProperties<TLength>;
799
+ export type Properties<TLength = string | 0> = StandardProperties<TLength> & VendorProperties<TLength> & ObsoleteProperties<TLength> & SvgProperties<TLength>;
800
800
  export interface StandardLonghandPropertiesHyphen<TLength = string | 0> {
801
801
  ['margin-bottom']?: MarginBottomProperty<TLength>;
802
802
  ['align-content']?: AlignContentProperty;
@@ -1179,7 +1179,7 @@ export interface StandardShorthandPropertiesHyphen<TLength = string | 0> {
1179
1179
  ['text-emphasis']?: TextEmphasisProperty;
1180
1180
  transition?: TransitionProperty;
1181
1181
  }
1182
- export declare type StandardPropertiesHyphen<TLength = string | 0> = StandardLonghandPropertiesHyphen<TLength> & StandardShorthandPropertiesHyphen<TLength>;
1182
+ export type StandardPropertiesHyphen<TLength = string | 0> = StandardLonghandPropertiesHyphen<TLength> & StandardShorthandPropertiesHyphen<TLength>;
1183
1183
  export interface VendorLonghandPropertiesHyphen<TLength = string | 0> {
1184
1184
  ['-ms-transition-property']?: TransitionPropertyProperty;
1185
1185
  ['-moz-animation-delay']?: GlobalsString;
@@ -1433,7 +1433,7 @@ export interface VendorShorthandPropertiesHyphen<TLength = string | 0> {
1433
1433
  ['-webkit-text-stroke']?: WebkitTextStrokeProperty<TLength>;
1434
1434
  ['-webkit-transition']?: TransitionProperty;
1435
1435
  }
1436
- export declare type VendorPropertiesHyphen<TLength = string | 0> = VendorLonghandPropertiesHyphen<TLength> & VendorShorthandPropertiesHyphen<TLength>;
1436
+ export type VendorPropertiesHyphen<TLength = string | 0> = VendorLonghandPropertiesHyphen<TLength> & VendorShorthandPropertiesHyphen<TLength>;
1437
1437
  export interface ObsoletePropertiesHyphen<TLength = string | 0> {
1438
1438
  ['-moz-box-align']?: BoxAlignProperty;
1439
1439
  ['box-align']?: BoxAlignProperty;
@@ -1594,7 +1594,7 @@ export interface SvgPropertiesHyphen<TLength = string | 0> {
1594
1594
  ['word-spacing']?: WordSpacingProperty<TLength>;
1595
1595
  ['writing-mode']?: WritingModeProperty;
1596
1596
  }
1597
- export declare type PropertiesHyphen<TLength = string | 0> = StandardPropertiesHyphen<TLength> & VendorPropertiesHyphen<TLength> & ObsoletePropertiesHyphen<TLength> & SvgPropertiesHyphen<TLength>;
1597
+ export type PropertiesHyphen<TLength = string | 0> = StandardPropertiesHyphen<TLength> & VendorPropertiesHyphen<TLength> & ObsoletePropertiesHyphen<TLength> & SvgPropertiesHyphen<TLength>;
1598
1598
  export interface StandardLonghandPropertiesFallback<TLength = string | 0> {
1599
1599
  marginInlineStart?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
1600
1600
  borderStartStartRadius?: BorderStartStartRadiusProperty<TLength> | Array<BorderStartStartRadiusProperty<TLength>>;
@@ -1977,7 +1977,7 @@ export interface StandardShorthandPropertiesFallback<TLength = string | 0> {
1977
1977
  textEmphasis?: TextEmphasisProperty | Array<TextEmphasisProperty>;
1978
1978
  transition?: TransitionProperty | Array<TransitionProperty>;
1979
1979
  }
1980
- export declare type StandardPropertiesFallback<TLength = string | 0> = StandardLonghandPropertiesFallback<TLength> & StandardShorthandPropertiesFallback<TLength>;
1980
+ export type StandardPropertiesFallback<TLength = string | 0> = StandardLonghandPropertiesFallback<TLength> & StandardShorthandPropertiesFallback<TLength>;
1981
1981
  export interface VendorLonghandPropertiesFallback<TLength = string | 0> {
1982
1982
  WebkitAnimationIterationCount?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
1983
1983
  msScrollbarDarkshadowColor?: MsScrollbarDarkshadowColorProperty | Array<MsScrollbarDarkshadowColorProperty>;
@@ -2231,7 +2231,7 @@ export interface VendorShorthandPropertiesFallback<TLength = string | 0> {
2231
2231
  WebkitTextStroke?: WebkitTextStrokeProperty<TLength> | Array<WebkitTextStrokeProperty<TLength>>;
2232
2232
  WebkitTransition?: TransitionProperty | Array<TransitionProperty>;
2233
2233
  }
2234
- export declare type VendorPropertiesFallback<TLength = string | 0> = VendorLonghandPropertiesFallback<TLength> & VendorShorthandPropertiesFallback<TLength>;
2234
+ export type VendorPropertiesFallback<TLength = string | 0> = VendorLonghandPropertiesFallback<TLength> & VendorShorthandPropertiesFallback<TLength>;
2235
2235
  export interface ObsoletePropertiesFallback<TLength = string | 0> {
2236
2236
  MozBorderRadiusBottomright?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
2237
2237
  scrollSnapCoordinate?: ScrollSnapCoordinateProperty<TLength> | Array<ScrollSnapCoordinateProperty<TLength>>;
@@ -2392,7 +2392,7 @@ export interface SvgPropertiesFallback<TLength = string | 0> {
2392
2392
  wordSpacing?: WordSpacingProperty<TLength> | Array<WordSpacingProperty<TLength>>;
2393
2393
  writingMode?: WritingModeProperty | Array<WritingModeProperty>;
2394
2394
  }
2395
- export declare type PropertiesFallback<TLength = string | 0> = StandardPropertiesFallback<TLength> & VendorPropertiesFallback<TLength> & ObsoletePropertiesFallback<TLength> & SvgPropertiesFallback<TLength>;
2395
+ export type PropertiesFallback<TLength = string | 0> = StandardPropertiesFallback<TLength> & VendorPropertiesFallback<TLength> & ObsoletePropertiesFallback<TLength> & SvgPropertiesFallback<TLength>;
2396
2396
  export interface StandardLonghandPropertiesHyphenFallback<TLength = string | 0> {
2397
2397
  ['inset-block-start']?: InsetBlockStartProperty<TLength> | Array<InsetBlockStartProperty<TLength>>;
2398
2398
  ['grid-auto-columns']?: GridAutoColumnsProperty<TLength> | Array<GridAutoColumnsProperty<TLength>>;
@@ -2775,7 +2775,7 @@ export interface StandardShorthandPropertiesHyphenFallback<TLength = string | 0>
2775
2775
  ['text-emphasis']?: TextEmphasisProperty | Array<TextEmphasisProperty>;
2776
2776
  transition?: TransitionProperty | Array<TransitionProperty>;
2777
2777
  }
2778
- export declare type StandardPropertiesHyphenFallback<TLength = string | 0> = StandardLonghandPropertiesHyphenFallback<TLength> & StandardShorthandPropertiesHyphenFallback<TLength>;
2778
+ export type StandardPropertiesHyphenFallback<TLength = string | 0> = StandardLonghandPropertiesHyphenFallback<TLength> & StandardShorthandPropertiesHyphenFallback<TLength>;
2779
2779
  export interface VendorLonghandPropertiesHyphenFallback<TLength = string | 0> {
2780
2780
  ['-ms-transform-origin']?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
2781
2781
  ['-ms-scrollbar-darkshadow-color']?: MsScrollbarDarkshadowColorProperty | Array<MsScrollbarDarkshadowColorProperty>;
@@ -3029,7 +3029,7 @@ export interface VendorShorthandPropertiesHyphenFallback<TLength = string | 0> {
3029
3029
  ['-moz-column-rule']?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
3030
3030
  ['-webkit-transition']?: TransitionProperty | Array<TransitionProperty>;
3031
3031
  }
3032
- export declare type VendorPropertiesHyphenFallback<TLength = string | 0> = VendorLonghandPropertiesHyphenFallback<TLength> & VendorShorthandPropertiesHyphenFallback<TLength>;
3032
+ export type VendorPropertiesHyphenFallback<TLength = string | 0> = VendorLonghandPropertiesHyphenFallback<TLength> & VendorShorthandPropertiesHyphenFallback<TLength>;
3033
3033
  export interface ObsoletePropertiesHyphenFallback<TLength = string | 0> {
3034
3034
  ['-moz-border-radius-bottomleft']?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
3035
3035
  ['scroll-snap-coordinate']?: ScrollSnapCoordinateProperty<TLength> | Array<ScrollSnapCoordinateProperty<TLength>>;
@@ -3190,7 +3190,7 @@ export interface SvgPropertiesHyphenFallback<TLength = string | 0> {
3190
3190
  ['word-spacing']?: WordSpacingProperty<TLength> | Array<WordSpacingProperty<TLength>>;
3191
3191
  ['writing-mode']?: WritingModeProperty | Array<WritingModeProperty>;
3192
3192
  }
3193
- export declare type PropertiesHyphenFallback<TLength = string | 0> = StandardPropertiesHyphenFallback<TLength> & VendorPropertiesHyphenFallback<TLength> & ObsoletePropertiesHyphenFallback<TLength> & SvgPropertiesHyphenFallback<TLength>;
3193
+ export type PropertiesHyphenFallback<TLength = string | 0> = StandardPropertiesHyphenFallback<TLength> & VendorPropertiesHyphenFallback<TLength> & ObsoletePropertiesHyphenFallback<TLength> & SvgPropertiesHyphenFallback<TLength>;
3194
3194
  export interface CounterStyle {
3195
3195
  additiveSymbols?: string;
3196
3196
  fallback?: string;
@@ -3407,571 +3407,571 @@ export interface ViewportHyphenFallback<TLength = string | 0> {
3407
3407
  width?: ViewportWidthProperty<TLength> | Array<ViewportWidthProperty<TLength>>;
3408
3408
  zoom?: ViewportZoomProperty | Array<ViewportZoomProperty>;
3409
3409
  }
3410
- export declare type AtRules = '@charset' | '@counter-style' | '@document' | '@font-face' | '@font-feature-values' | '@import' | '@keyframes' | '@media' | '@namespace' | '@page' | '@supports' | '@viewport';
3411
- export declare type AdvancedPseudos = ':-moz-any()' | ':-moz-dir' | ':-webkit-any()' | '::cue' | '::part' | '::slotted' | ':dir' | ':has' | ':host' | ':host-context' | ':is' | ':lang' | ':matches()' | ':not' | ':nth-child' | ':nth-last-child' | ':nth-last-of-type' | ':nth-of-type' | ':where';
3412
- export declare type SimplePseudos = ':-moz-any-link' | ':-moz-focusring' | ':-moz-full-screen' | ':-moz-placeholder' | ':-moz-read-only' | ':-moz-read-write' | ':-ms-fullscreen' | ':-ms-input-placeholder' | ':-webkit-any-link' | ':-webkit-full-screen' | '::-moz-placeholder' | '::-moz-progress-bar' | '::-moz-range-progress' | '::-moz-range-thumb' | '::-moz-range-track' | '::-moz-selection' | '::-ms-backdrop' | '::-ms-browse' | '::-ms-check' | '::-ms-clear' | '::-ms-fill' | '::-ms-fill-lower' | '::-ms-fill-upper' | '::-ms-input-placeholder' | '::-ms-reveal' | '::-ms-thumb' | '::-ms-ticks-after' | '::-ms-ticks-before' | '::-ms-tooltip' | '::-ms-track' | '::-ms-value' | '::-webkit-backdrop' | '::-webkit-input-placeholder' | '::-webkit-progress-bar' | '::-webkit-progress-inner-value' | '::-webkit-progress-value' | '::-webkit-slider-runnable-track' | '::-webkit-slider-thumb' | '::after' | '::backdrop' | '::before' | '::cue' | '::first-letter' | '::first-line' | '::grammar-error' | '::marker' | '::placeholder' | '::selection' | '::spelling-error' | ':active' | ':after' | ':any-link' | ':before' | ':blank' | ':checked' | ':default' | ':defined' | ':disabled' | ':empty' | ':enabled' | ':first' | ':first-child' | ':first-letter' | ':first-line' | ':first-of-type' | ':focus' | ':focus-visible' | ':focus-within' | ':fullscreen' | ':hover' | ':in-range' | ':indeterminate' | ':invalid' | ':last-child' | ':last-of-type' | ':left' | ':link' | ':only-child' | ':only-of-type' | ':optional' | ':out-of-range' | ':placeholder-shown' | ':read-only' | ':read-write' | ':required' | ':right' | ':root' | ':scope' | ':target' | ':valid' | ':visited';
3413
- export declare type Pseudos = AdvancedPseudos | SimplePseudos;
3414
- export declare type HtmlAttributes = '[-webkit-dropzone]' | '[-webkit-slot]' | '[abbr]' | '[accept-charset]' | '[accept]' | '[accesskey]' | '[action]' | '[align]' | '[alink]' | '[allow]' | '[allowfullscreen]' | '[allowpaymentrequest]' | '[alt]' | '[archive]' | '[async]' | '[autobuffer]' | '[autocapitalize]' | '[autocomplete]' | '[autofocus]' | '[autoplay]' | '[axis]' | '[background]' | '[behavior]' | '[bgcolor]' | '[border]' | '[bottommargin]' | '[buffered]' | '[cellpadding]' | '[cellspacing]' | '[char]' | '[charoff]' | '[charset]' | '[checked]' | '[cite]' | '[class]' | '[classid]' | '[clear]' | '[code]' | '[codebase]' | '[codetype]' | '[color]' | '[cols]' | '[colspan]' | '[command]' | '[compact]' | '[content]' | '[contenteditable]' | '[contextmenu]' | '[controls]' | '[coords]' | '[crossorigin]' | '[data]' | '[datafld]' | '[datasrc]' | '[datetime]' | '[declare]' | '[decoding]' | '[default]' | '[defer]' | '[dir]' | '[direction]' | '[disabled]' | '[download]' | '[draggable]' | '[dropzone]' | '[enctype]' | '[exportparts]' | '[face]' | '[for]' | '[form]' | '[formaction]' | '[formenctype]' | '[formmethod]' | '[formnovalidate]' | '[formtarget]' | '[frame]' | '[frameborder]' | '[headers]' | '[height]' | '[hidden]' | '[high]' | '[href]' | '[hreflang]' | '[hspace]' | '[http-equiv]' | '[icon]' | '[id]' | '[inputmode]' | '[integrity]' | '[intrinsicsize]' | '[is]' | '[ismap]' | '[itemid]' | '[itemprop]' | '[itemref]' | '[itemscope]' | '[itemtype]' | '[kind]' | '[label]' | '[lang]' | '[language]' | '[leftmargin]' | '[link]' | '[longdesc]' | '[loop]' | '[low]' | '[manifest]' | '[marginheight]' | '[marginwidth]' | '[max]' | '[maxlength]' | '[mayscript]' | '[media]' | '[method]' | '[methods]' | '[min]' | '[minlength]' | '[moz-opaque]' | '[mozallowfullscreen]' | '[mozbrowser]' | '[mozcurrentsampleoffset]' | '[msallowfullscreen]' | '[multiple]' | '[muted]' | '[name]' | '[nohref]' | '[nomodule]' | '[noresize]' | '[noshade]' | '[novalidate]' | '[nowrap]' | '[object]' | '[onafterprint]' | '[onbeforeprint]' | '[onbeforeunload]' | '[onblur]' | '[onerror]' | '[onfocus]' | '[onhashchange]' | '[onlanguagechange]' | '[onload]' | '[onmessage]' | '[onoffline]' | '[ononline]' | '[onpopstate]' | '[onredo]' | '[onresize]' | '[onstorage]' | '[onundo]' | '[onunload]' | '[open]' | '[optimum]' | '[part]' | '[ping]' | '[placeholder]' | '[played]' | '[poster]' | '[prefetch]' | '[preload]' | '[profile]' | '[prompt]' | '[radiogroup]' | '[readonly]' | '[referrerPolicy]' | '[referrerpolicy]' | '[rel]' | '[required]' | '[rev]' | '[reversed]' | '[rightmargin]' | '[rows]' | '[rowspan]' | '[rules]' | '[sandbox-allow-modals]' | '[sandbox-allow-popups-to-escape-sandbox]' | '[sandbox-allow-popups]' | '[sandbox-allow-presentation]' | '[sandbox-allow-storage-access-by-user-activation]' | '[sandbox-allow-top-navigation-by-user-activation]' | '[sandbox]' | '[scope]' | '[scoped]' | '[scrollamount]' | '[scrolldelay]' | '[scrolling]' | '[selected]' | '[shape]' | '[size]' | '[sizes]' | '[slot]' | '[span]' | '[spellcheck]' | '[src]' | '[srcdoc]' | '[srclang]' | '[srcset]' | '[standby]' | '[start]' | '[style]' | '[summary]' | '[tabindex]' | '[target]' | '[text]' | '[title]' | '[topmargin]' | '[translate]' | '[truespeed]' | '[type]' | '[typemustmatch]' | '[usemap]' | '[valign]' | '[value]' | '[valuetype]' | '[version]' | '[vlink]' | '[volume]' | '[vspace]' | '[webkitallowfullscreen]' | '[width]' | '[wrap]' | '[xmlns]';
3415
- export declare type SvgAttributes = '[accent-height]' | '[alignment-baseline]' | '[allowReorder]' | '[alphabetic]' | '[animation]' | '[arabic-form]' | '[ascent]' | '[attributeName]' | '[attributeType]' | '[azimuth]' | '[baseFrequency]' | '[baseProfile]' | '[baseline-shift]' | '[bbox]' | '[begin]' | '[bias]' | '[by]' | '[calcMode]' | '[cap-height]' | '[class]' | '[clip-path]' | '[clip-rule]' | '[clipPathUnits]' | '[clip]' | '[color-interpolation-filters]' | '[color-interpolation]' | '[color-profile]' | '[color-rendering]' | '[color]' | '[contentScriptType]' | '[contentStyleType]' | '[cursor]' | '[cx]' | '[cy]' | '[d]' | '[descent]' | '[diffuseConstant]' | '[direction]' | '[display]' | '[divisor]' | '[document]' | '[dominant-baseline]' | '[download]' | '[dur]' | '[dx]' | '[dy]' | '[edgeMode]' | '[elevation]' | '[enable-background]' | '[externalResourcesRequired]' | '[fill-opacity]' | '[fill-rule]' | '[fill]' | '[filterRes]' | '[filterUnits]' | '[filter]' | '[flood-color]' | '[flood-opacity]' | '[font-family]' | '[font-size-adjust]' | '[font-size]' | '[font-stretch]' | '[font-style]' | '[font-variant]' | '[font-weight]' | '[format]' | '[fr]' | '[from]' | '[fx]' | '[fy]' | '[g1]' | '[g2]' | '[global]' | '[glyph-name]' | '[glyph-orientation-horizontal]' | '[glyph-orientation-vertical]' | '[glyphRef]' | '[gradientTransform]' | '[gradientUnits]' | '[graphical]' | '[hanging]' | '[hatchContentUnits]' | '[hatchUnits]' | '[height]' | '[horiz-adv-x]' | '[horiz-origin-x]' | '[horiz-origin-y]' | '[href]' | '[hreflang]' | '[id]' | '[ideographic]' | '[image-rendering]' | '[in2]' | '[in]' | '[k1]' | '[k2]' | '[k3]' | '[k4]' | '[k]' | '[kernelMatrix]' | '[kernelUnitLength]' | '[kerning]' | '[keyPoints]' | '[lang]' | '[lengthAdjust]' | '[letter-spacing]' | '[lighterForError]' | '[lighting-color]' | '[limitingConeAngle]' | '[local]' | '[marker-end]' | '[marker-mid]' | '[marker-start]' | '[markerHeight]' | '[markerUnits]' | '[markerWidth]' | '[maskContentUnits]' | '[maskUnits]' | '[mask]' | '[mathematical]' | '[media]' | '[method]' | '[mode]' | '[name]' | '[numOctaves]' | '[offset]' | '[opacity]' | '[operator]' | '[order]' | '[orient]' | '[orientation]' | '[origin]' | '[overflow]' | '[overline-position]' | '[overline-thickness]' | '[paint-order]' | '[panose-1]' | '[path]' | '[patternContentUnits]' | '[patternTransform]' | '[patternUnits]' | '[ping]' | '[pitch]' | '[pointer-events]' | '[pointsAtX]' | '[pointsAtY]' | '[pointsAtZ]' | '[points]' | '[preserveAlpha]' | '[preserveAspectRatio]' | '[primitiveUnits]' | '[r]' | '[radius]' | '[refX]' | '[refY]' | '[referrerPolicy]' | '[rel]' | '[rendering-intent]' | '[repeatCount]' | '[requiredExtensions]' | '[requiredFeatures]' | '[rotate]' | '[rx]' | '[ry]' | '[scale]' | '[seed]' | '[shape-rendering]' | '[side]' | '[slope]' | '[solid-color]' | '[solid-opacity]' | '[spacing]' | '[specularConstant]' | '[specularExponent]' | '[spreadMethod]' | '[startOffset]' | '[stdDeviation]' | '[stemh]' | '[stemv]' | '[stitchTiles]' | '[stop-color]' | '[stop-opacity]' | '[strikethrough-position]' | '[strikethrough-thickness]' | '[string]' | '[stroke-dasharray]' | '[stroke-dashoffset]' | '[stroke-linecap]' | '[stroke-linejoin]' | '[stroke-miterlimit]' | '[stroke-opacity]' | '[stroke-width]' | '[stroke]' | '[style]' | '[surfaceScale]' | '[systemLanguage]' | '[tabindex]' | '[targetX]' | '[targetY]' | '[target]' | '[text-anchor]' | '[text-decoration]' | '[text-overflow]' | '[text-rendering]' | '[textLength]' | '[title]' | '[to]' | '[transform]' | '[type]' | '[u1]' | '[u2]' | '[underline-position]' | '[underline-thickness]' | '[unicode-bidi]' | '[unicode-range]' | '[unicode]' | '[units-per-em]' | '[v-alphabetic]' | '[v-hanging]' | '[v-ideographic]' | '[v-mathematical]' | '[values]' | '[vector-effect]' | '[version]' | '[vert-adv-y]' | '[vert-origin-x]' | '[vert-origin-y]' | '[viewBox]' | '[viewTarget]' | '[visibility]' | '[white-space]' | '[width]' | '[widths]' | '[word-spacing]' | '[writing-mode]' | '[x-height]' | '[x1]' | '[x2]' | '[xChannelSelector]' | '[x]' | '[y1]' | '[y2]' | '[yChannelSelector]' | '[y]' | '[z]' | '[zoomAndPan]';
3416
- export declare type Globals = '-moz-initial' | 'inherit' | 'initial' | 'revert' | 'unset';
3417
- declare type GlobalsString = Globals | string;
3418
- export declare type GlobalsNumber = Globals | number;
3419
- export declare type AlignContentProperty = Globals | ContentDistribution | ContentPosition | 'baseline' | 'normal' | string;
3420
- export declare type AlignItemsProperty = Globals | SelfPosition | 'baseline' | 'normal' | 'stretch' | string;
3421
- export declare type AlignSelfProperty = Globals | SelfPosition | 'auto' | 'baseline' | 'normal' | 'stretch' | string;
3422
- export declare type AnimationProperty = Globals | SingleAnimation | string;
3423
- export declare type AnimationDirectionProperty = Globals | SingleAnimationDirection | string;
3424
- export declare type AnimationFillModeProperty = Globals | SingleAnimationFillMode | string;
3425
- export declare type AnimationIterationCountProperty = Globals | 'infinite' | string | number;
3426
- export declare type AnimationNameProperty = Globals | 'none' | string;
3427
- export declare type AnimationPlayStateProperty = Globals | 'paused' | 'running' | string;
3428
- export declare type AnimationTimingFunctionProperty = Globals | TimingFunction | string;
3429
- export declare type AppearanceProperty = Globals | Compat | 'button' | 'none' | 'textfield';
3430
- export declare type BackdropFilterProperty = Globals | 'none' | string;
3431
- export declare type BackfaceVisibilityProperty = Globals | 'hidden' | 'visible';
3432
- export declare type BackgroundProperty<TLength> = Globals | FinalBgLayer<TLength> | string;
3433
- export declare type BackgroundAttachmentProperty = Globals | Attachment | string;
3434
- export declare type BackgroundBlendModeProperty = Globals | BlendMode | string;
3435
- export declare type BackgroundClipProperty = Globals | Box | string;
3436
- export declare type BackgroundColorProperty = Globals | Color;
3437
- export declare type BackgroundImageProperty = Globals | 'none' | string;
3438
- export declare type BackgroundOriginProperty = Globals | Box | string;
3439
- export declare type BackgroundPositionProperty<TLength> = Globals | BgPosition<TLength> | string;
3440
- export declare type BackgroundPositionXProperty<TLength> = Globals | TLength | 'center' | 'left' | 'right' | 'x-end' | 'x-start' | string;
3441
- export declare type BackgroundPositionYProperty<TLength> = Globals | TLength | 'bottom' | 'center' | 'top' | 'y-end' | 'y-start' | string;
3442
- export declare type BackgroundRepeatProperty = Globals | RepeatStyle | string;
3443
- export declare type BackgroundSizeProperty<TLength> = Globals | BgSize<TLength> | string;
3444
- export declare type BlockOverflowProperty = Globals | 'clip' | 'ellipsis' | string;
3445
- export declare type BlockSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'auto' | 'available' | 'fit-content' | 'max-content' | 'min-content' | string;
3446
- export declare type BorderProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3447
- export declare type BorderBlockProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3448
- export declare type BorderBlockColorProperty = Globals | Color | string;
3449
- export declare type BorderBlockEndProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3450
- export declare type BorderBlockEndColorProperty = Globals | Color;
3451
- export declare type BorderBlockEndStyleProperty = Globals | LineStyle;
3452
- export declare type BorderBlockEndWidthProperty<TLength> = Globals | LineWidth<TLength>;
3453
- export declare type BorderBlockStartProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3454
- export declare type BorderBlockStartColorProperty = Globals | Color;
3455
- export declare type BorderBlockStartStyleProperty = Globals | LineStyle;
3456
- export declare type BorderBlockStartWidthProperty<TLength> = Globals | LineWidth<TLength>;
3457
- export declare type BorderBlockStyleProperty = Globals | LineStyle;
3458
- export declare type BorderBlockWidthProperty<TLength> = Globals | LineWidth<TLength>;
3459
- export declare type BorderBottomProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3460
- export declare type BorderBottomColorProperty = Globals | Color;
3461
- export declare type BorderBottomLeftRadiusProperty<TLength> = Globals | TLength | string;
3462
- export declare type BorderBottomRightRadiusProperty<TLength> = Globals | TLength | string;
3463
- export declare type BorderBottomStyleProperty = Globals | LineStyle;
3464
- export declare type BorderBottomWidthProperty<TLength> = Globals | LineWidth<TLength>;
3465
- export declare type BorderCollapseProperty = Globals | 'collapse' | 'separate';
3466
- export declare type BorderColorProperty = Globals | Color | string;
3467
- export declare type BorderEndEndRadiusProperty<TLength> = Globals | TLength | string;
3468
- export declare type BorderEndStartRadiusProperty<TLength> = Globals | TLength | string;
3469
- export declare type BorderImageProperty = Globals | 'none' | 'repeat' | 'round' | 'space' | 'stretch' | string | number;
3470
- export declare type BorderImageOutsetProperty<TLength> = Globals | TLength | string | number;
3471
- export declare type BorderImageRepeatProperty = Globals | 'repeat' | 'round' | 'space' | 'stretch' | string;
3472
- export declare type BorderImageSliceProperty = Globals | string | number;
3473
- export declare type BorderImageSourceProperty = Globals | 'none' | string;
3474
- export declare type BorderImageWidthProperty<TLength> = Globals | TLength | 'auto' | string | number;
3475
- export declare type BorderInlineProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3476
- export declare type BorderInlineColorProperty = Globals | Color | string;
3477
- export declare type BorderInlineEndProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3478
- export declare type BorderInlineEndColorProperty = Globals | Color;
3479
- export declare type BorderInlineEndStyleProperty = Globals | LineStyle;
3480
- export declare type BorderInlineEndWidthProperty<TLength> = Globals | LineWidth<TLength>;
3481
- export declare type BorderInlineStartProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3482
- export declare type BorderInlineStartColorProperty = Globals | Color;
3483
- export declare type BorderInlineStartStyleProperty = Globals | LineStyle;
3484
- export declare type BorderInlineStartWidthProperty<TLength> = Globals | LineWidth<TLength>;
3485
- export declare type BorderInlineStyleProperty = Globals | LineStyle;
3486
- export declare type BorderInlineWidthProperty<TLength> = Globals | LineWidth<TLength>;
3487
- export declare type BorderLeftProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3488
- export declare type BorderLeftColorProperty = Globals | Color;
3489
- export declare type BorderLeftStyleProperty = Globals | LineStyle;
3490
- export declare type BorderLeftWidthProperty<TLength> = Globals | LineWidth<TLength>;
3491
- export declare type BorderRadiusProperty<TLength> = Globals | TLength | string;
3492
- export declare type BorderRightProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3493
- export declare type BorderRightColorProperty = Globals | Color;
3494
- export declare type BorderRightStyleProperty = Globals | LineStyle;
3495
- export declare type BorderRightWidthProperty<TLength> = Globals | LineWidth<TLength>;
3496
- export declare type BorderSpacingProperty<TLength> = Globals | TLength | string;
3497
- export declare type BorderStartEndRadiusProperty<TLength> = Globals | TLength | string;
3498
- export declare type BorderStartStartRadiusProperty<TLength> = Globals | TLength | string;
3499
- export declare type BorderStyleProperty = Globals | LineStyle | string;
3500
- export declare type BorderTopProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3501
- export declare type BorderTopColorProperty = Globals | Color;
3502
- export declare type BorderTopLeftRadiusProperty<TLength> = Globals | TLength | string;
3503
- export declare type BorderTopRightRadiusProperty<TLength> = Globals | TLength | string;
3504
- export declare type BorderTopStyleProperty = Globals | LineStyle;
3505
- export declare type BorderTopWidthProperty<TLength> = Globals | LineWidth<TLength>;
3506
- export declare type BorderWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
3507
- export declare type BottomProperty<TLength> = Globals | TLength | 'auto' | string;
3508
- export declare type BoxAlignProperty = Globals | 'baseline' | 'center' | 'end' | 'start' | 'stretch';
3509
- export declare type BoxDecorationBreakProperty = Globals | 'clone' | 'slice';
3510
- export declare type BoxDirectionProperty = Globals | 'inherit' | 'normal' | 'reverse';
3511
- export declare type BoxLinesProperty = Globals | 'multiple' | 'single';
3512
- export declare type BoxOrientProperty = Globals | 'block-axis' | 'horizontal' | 'inherit' | 'inline-axis' | 'vertical';
3513
- export declare type BoxPackProperty = Globals | 'center' | 'end' | 'justify' | 'start';
3514
- export declare type BoxShadowProperty = Globals | 'none' | string;
3515
- export declare type BoxSizingProperty = Globals | 'border-box' | 'content-box';
3516
- export declare type BreakAfterProperty = Globals | 'all' | 'always' | 'auto' | 'avoid' | 'avoid-column' | 'avoid-page' | 'avoid-region' | 'column' | 'left' | 'page' | 'recto' | 'region' | 'right' | 'verso';
3517
- export declare type BreakBeforeProperty = Globals | 'all' | 'always' | 'auto' | 'avoid' | 'avoid-column' | 'avoid-page' | 'avoid-region' | 'column' | 'left' | 'page' | 'recto' | 'region' | 'right' | 'verso';
3518
- export declare type BreakInsideProperty = Globals | 'auto' | 'avoid' | 'avoid-column' | 'avoid-page' | 'avoid-region';
3519
- export declare type CaptionSideProperty = Globals | 'block-end' | 'block-start' | 'bottom' | 'inline-end' | 'inline-start' | 'top';
3520
- export declare type CaretColorProperty = Globals | Color | 'auto';
3521
- export declare type ClearProperty = Globals | 'both' | 'inline-end' | 'inline-start' | 'left' | 'none' | 'right';
3522
- export declare type ClipProperty = Globals | 'auto' | string;
3523
- export declare type ClipPathProperty = Globals | GeometryBox | 'none' | string;
3524
- export declare type ColorProperty = Globals | Color;
3525
- export declare type ColorAdjustProperty = Globals | 'economy' | 'exact';
3526
- export declare type ColumnCountProperty = Globals | 'auto' | number;
3527
- export declare type ColumnFillProperty = Globals | 'auto' | 'balance' | 'balance-all';
3528
- export declare type ColumnGapProperty<TLength> = Globals | TLength | 'normal' | string;
3529
- export declare type ColumnRuleProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3530
- export declare type ColumnRuleColorProperty = Globals | Color;
3531
- export declare type ColumnRuleStyleProperty = Globals | LineStyle | string;
3532
- export declare type ColumnRuleWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
3533
- export declare type ColumnSpanProperty = Globals | 'all' | 'none';
3534
- export declare type ColumnWidthProperty<TLength> = Globals | TLength | 'auto';
3535
- export declare type ColumnsProperty<TLength> = Globals | TLength | 'auto' | string | number;
3536
- export declare type ContainProperty = Globals | 'content' | 'layout' | 'none' | 'paint' | 'size' | 'strict' | 'style' | string;
3537
- export declare type ContentProperty = Globals | ContentList | 'none' | 'normal' | string;
3538
- export declare type CounterIncrementProperty = Globals | 'none' | string;
3539
- export declare type CounterResetProperty = Globals | 'none' | string;
3540
- export declare type CounterSetProperty = Globals | 'none' | string;
3541
- export declare type CursorProperty = Globals | '-moz-grab' | '-webkit-grab' | 'alias' | 'all-scroll' | 'auto' | 'cell' | 'col-resize' | 'context-menu' | 'copy' | 'crosshair' | 'default' | 'e-resize' | 'ew-resize' | 'grab' | 'grabbing' | 'help' | 'move' | 'n-resize' | 'ne-resize' | 'nesw-resize' | 'no-drop' | 'none' | 'not-allowed' | 'ns-resize' | 'nw-resize' | 'nwse-resize' | 'pointer' | 'progress' | 'row-resize' | 's-resize' | 'se-resize' | 'sw-resize' | 'text' | 'vertical-text' | 'w-resize' | 'wait' | 'zoom-in' | 'zoom-out' | string;
3542
- export declare type DirectionProperty = Globals | 'ltr' | 'rtl';
3543
- export declare type DisplayProperty = Globals | DisplayOutside | DisplayInside | DisplayInternal | DisplayLegacy | 'contents' | 'list-item' | 'none';
3544
- export declare type EmptyCellsProperty = Globals | 'hide' | 'show';
3545
- export declare type FilterProperty = Globals | 'none' | string;
3546
- export declare type FlexProperty<TLength> = Globals | TLength | 'auto' | 'available' | 'content' | 'fit-content' | 'max-content' | 'min-content' | 'none' | string | number;
3547
- export declare type FlexBasisProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | '-webkit-auto' | 'auto' | 'available' | 'content' | 'fit-content' | 'max-content' | 'min-content' | string;
3548
- export declare type FlexDirectionProperty = Globals | 'column' | 'column-reverse' | 'row' | 'row-reverse';
3549
- export declare type FlexFlowProperty = Globals | 'column' | 'column-reverse' | 'nowrap' | 'row' | 'row-reverse' | 'wrap' | 'wrap-reverse' | string;
3550
- export declare type FlexWrapProperty = Globals | 'nowrap' | 'wrap' | 'wrap-reverse';
3551
- export declare type FloatProperty = Globals | 'inline-end' | 'inline-start' | 'left' | 'none' | 'right';
3552
- export declare type FontProperty = Globals | 'caption' | 'icon' | 'menu' | 'message-box' | 'small-caption' | 'status-bar' | string;
3553
- export declare type FontFamilyProperty = Globals | GenericFamily | string;
3554
- export declare type FontFeatureSettingsProperty = Globals | 'normal' | string;
3555
- export declare type FontKerningProperty = Globals | 'auto' | 'none' | 'normal';
3556
- export declare type FontLanguageOverrideProperty = Globals | 'normal' | string;
3557
- export declare type FontOpticalSizingProperty = Globals | 'auto' | 'none';
3558
- export declare type FontSizeProperty<TLength> = Globals | AbsoluteSize | TLength | 'larger' | 'smaller' | string;
3559
- export declare type FontSizeAdjustProperty = Globals | 'none' | number;
3560
- export declare type FontStretchProperty = Globals | FontStretchAbsolute;
3561
- export declare type FontStyleProperty = Globals | 'italic' | 'normal' | 'oblique' | string;
3562
- export declare type FontSynthesisProperty = Globals | 'none' | 'style' | 'weight' | string;
3563
- export declare type FontVariantProperty = Globals | EastAsianVariantValues | 'all-petite-caps' | 'all-small-caps' | 'common-ligatures' | 'contextual' | 'diagonal-fractions' | 'discretionary-ligatures' | 'full-width' | 'historical-forms' | 'historical-ligatures' | 'lining-nums' | 'no-common-ligatures' | 'no-contextual' | 'no-discretionary-ligatures' | 'no-historical-ligatures' | 'none' | 'normal' | 'oldstyle-nums' | 'ordinal' | 'petite-caps' | 'proportional-nums' | 'proportional-width' | 'ruby' | 'slashed-zero' | 'small-caps' | 'stacked-fractions' | 'tabular-nums' | 'titling-caps' | 'unicase' | string;
3564
- export declare type FontVariantAlternatesProperty = Globals | 'historical-forms' | 'normal' | string;
3565
- export declare type FontVariantCapsProperty = Globals | 'all-petite-caps' | 'all-small-caps' | 'normal' | 'petite-caps' | 'small-caps' | 'titling-caps' | 'unicase';
3566
- export declare type FontVariantEastAsianProperty = Globals | EastAsianVariantValues | 'full-width' | 'normal' | 'proportional-width' | 'ruby' | string;
3567
- export declare type FontVariantLigaturesProperty = Globals | 'common-ligatures' | 'contextual' | 'discretionary-ligatures' | 'historical-ligatures' | 'no-common-ligatures' | 'no-contextual' | 'no-discretionary-ligatures' | 'no-historical-ligatures' | 'none' | 'normal' | string;
3568
- export declare type FontVariantNumericProperty = Globals | 'diagonal-fractions' | 'lining-nums' | 'normal' | 'oldstyle-nums' | 'ordinal' | 'proportional-nums' | 'slashed-zero' | 'stacked-fractions' | 'tabular-nums' | string;
3569
- export declare type FontVariantPositionProperty = Globals | 'normal' | 'sub' | 'super';
3570
- export declare type FontVariationSettingsProperty = Globals | 'normal' | string;
3571
- export declare type FontWeightProperty = Globals | FontWeightAbsolute | 'bolder' | 'lighter';
3572
- export declare type GapProperty<TLength> = Globals | TLength | 'normal' | string;
3573
- export declare type GridProperty = Globals | 'none' | string;
3574
- export declare type GridAreaProperty = Globals | GridLine | string;
3575
- export declare type GridAutoColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | string;
3576
- export declare type GridAutoFlowProperty = Globals | 'column' | 'dense' | 'row' | string;
3577
- export declare type GridAutoRowsProperty<TLength> = Globals | TrackBreadth<TLength> | string;
3578
- export declare type GridColumnProperty = Globals | GridLine | string;
3579
- export declare type GridColumnEndProperty = Globals | GridLine;
3580
- export declare type GridColumnGapProperty<TLength> = Globals | TLength | string;
3581
- export declare type GridColumnStartProperty = Globals | GridLine;
3582
- export declare type GridGapProperty<TLength> = Globals | TLength | string;
3583
- export declare type GridRowProperty = Globals | GridLine | string;
3584
- export declare type GridRowEndProperty = Globals | GridLine;
3585
- export declare type GridRowGapProperty<TLength> = Globals | TLength | string;
3586
- export declare type GridRowStartProperty = Globals | GridLine;
3587
- export declare type GridTemplateProperty = Globals | 'none' | string;
3588
- export declare type GridTemplateAreasProperty = Globals | 'none' | string;
3589
- export declare type GridTemplateColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | 'none' | string;
3590
- export declare type GridTemplateRowsProperty<TLength> = Globals | TrackBreadth<TLength> | 'none' | string;
3591
- export declare type HangingPunctuationProperty = Globals | 'allow-end' | 'first' | 'force-end' | 'last' | 'none' | string;
3592
- export declare type HeightProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | 'auto' | 'available' | 'fit-content' | 'max-content' | 'min-content' | string;
3593
- export declare type HyphensProperty = Globals | 'auto' | 'manual' | 'none';
3594
- export declare type ImageOrientationProperty = Globals | 'flip' | 'from-image' | string;
3595
- export declare type ImageRenderingProperty = Globals | '-moz-crisp-edges' | '-o-crisp-edges' | '-webkit-optimize-contrast' | 'auto' | 'crisp-edges' | 'pixelated';
3596
- export declare type ImageResolutionProperty = Globals | 'from-image' | string;
3597
- export declare type ImeModeProperty = Globals | 'active' | 'auto' | 'disabled' | 'inactive' | 'normal';
3598
- export declare type InitialLetterProperty = Globals | 'normal' | string | number;
3599
- export declare type InlineSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'auto' | 'available' | 'fit-content' | 'max-content' | 'min-content' | string;
3600
- export declare type InsetProperty<TLength> = Globals | TLength | 'auto' | string;
3601
- export declare type InsetBlockProperty<TLength> = Globals | TLength | 'auto' | string;
3602
- export declare type InsetBlockEndProperty<TLength> = Globals | TLength | 'auto' | string;
3603
- export declare type InsetBlockStartProperty<TLength> = Globals | TLength | 'auto' | string;
3604
- export declare type InsetInlineProperty<TLength> = Globals | TLength | 'auto' | string;
3605
- export declare type InsetInlineEndProperty<TLength> = Globals | TLength | 'auto' | string;
3606
- export declare type InsetInlineStartProperty<TLength> = Globals | TLength | 'auto' | string;
3607
- export declare type IsolationProperty = Globals | 'auto' | 'isolate';
3608
- export declare type JustifyContentProperty = Globals | ContentDistribution | ContentPosition | 'left' | 'normal' | 'right' | string;
3609
- export declare type JustifyItemsProperty = Globals | SelfPosition | 'baseline' | 'left' | 'legacy' | 'normal' | 'right' | 'stretch' | string;
3610
- export declare type JustifySelfProperty = Globals | SelfPosition | 'auto' | 'baseline' | 'left' | 'normal' | 'right' | 'stretch' | string;
3611
- export declare type LeftProperty<TLength> = Globals | TLength | 'auto' | string;
3612
- export declare type LetterSpacingProperty<TLength> = Globals | TLength | 'normal';
3613
- export declare type LineBreakProperty = Globals | 'auto' | 'loose' | 'normal' | 'strict';
3614
- export declare type LineClampProperty = Globals | 'none' | number;
3615
- export declare type LineHeightProperty<TLength> = Globals | TLength | 'normal' | string | number;
3616
- export declare type LineHeightStepProperty<TLength> = Globals | TLength;
3617
- export declare type ListStyleProperty = Globals | 'inside' | 'none' | 'outside' | string;
3618
- export declare type ListStyleImageProperty = Globals | 'none' | string;
3619
- export declare type ListStylePositionProperty = Globals | 'inside' | 'outside';
3620
- export declare type ListStyleTypeProperty = Globals | 'none' | string;
3621
- export declare type MarginProperty<TLength> = Globals | TLength | 'auto' | string;
3622
- export declare type MarginBlockProperty<TLength> = Globals | TLength | 'auto' | string;
3623
- export declare type MarginBlockEndProperty<TLength> = Globals | TLength | 'auto' | string;
3624
- export declare type MarginBlockStartProperty<TLength> = Globals | TLength | 'auto' | string;
3625
- export declare type MarginBottomProperty<TLength> = Globals | TLength | 'auto' | string;
3626
- export declare type MarginInlineProperty<TLength> = Globals | TLength | 'auto' | string;
3627
- export declare type MarginInlineEndProperty<TLength> = Globals | TLength | 'auto' | string;
3628
- export declare type MarginInlineStartProperty<TLength> = Globals | TLength | 'auto' | string;
3629
- export declare type MarginLeftProperty<TLength> = Globals | TLength | 'auto' | string;
3630
- export declare type MarginRightProperty<TLength> = Globals | TLength | 'auto' | string;
3631
- export declare type MarginTopProperty<TLength> = Globals | TLength | 'auto' | string;
3632
- export declare type MaskProperty<TLength> = Globals | MaskLayer<TLength> | string;
3633
- export declare type MaskBorderProperty = Globals | 'alpha' | 'luminance' | 'none' | 'repeat' | 'round' | 'space' | 'stretch' | string | number;
3634
- export declare type MaskBorderModeProperty = Globals | 'alpha' | 'luminance';
3635
- export declare type MaskBorderOutsetProperty<TLength> = Globals | TLength | string | number;
3636
- export declare type MaskBorderRepeatProperty = Globals | 'repeat' | 'round' | 'space' | 'stretch' | string;
3637
- export declare type MaskBorderSliceProperty = Globals | string | number;
3638
- export declare type MaskBorderSourceProperty = Globals | 'none' | string;
3639
- export declare type MaskBorderWidthProperty<TLength> = Globals | TLength | 'auto' | string | number;
3640
- export declare type MaskClipProperty = Globals | GeometryBox | 'no-clip' | string;
3641
- export declare type MaskCompositeProperty = Globals | CompositingOperator | string;
3642
- export declare type MaskImageProperty = Globals | 'none' | string;
3643
- export declare type MaskModeProperty = Globals | MaskingMode | string;
3644
- export declare type MaskOriginProperty = Globals | GeometryBox | string;
3645
- export declare type MaskPositionProperty<TLength> = Globals | Position<TLength> | string;
3646
- export declare type MaskRepeatProperty = Globals | RepeatStyle | string;
3647
- export declare type MaskSizeProperty<TLength> = Globals | BgSize<TLength> | string;
3648
- export declare type MaskTypeProperty = Globals | 'alpha' | 'luminance';
3649
- export declare type MaxBlockSizeProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | 'none' | string;
3650
- export declare type MaxHeightProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fit-content' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'none' | string;
3651
- export declare type MaxInlineSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | 'none' | string;
3652
- export declare type MaxLinesProperty = Globals | 'none' | number;
3653
- export declare type MaxWidthProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fit-content' | '-webkit-max-content' | '-webkit-min-content' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'none' | string;
3654
- export declare type MinBlockSizeProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'auto' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | string;
3655
- export declare type MinHeightProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fit-content' | 'auto' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | string;
3656
- export declare type MinInlineSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | '-webkit-max-content' | '-webkit-min-content' | 'auto' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | string;
3657
- export declare type MinWidthProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | '-webkit-fit-content' | '-webkit-max-content' | '-webkit-min-content' | 'auto' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'min-intrinsic' | string;
3658
- export declare type MixBlendModeProperty = Globals | BlendMode;
3659
- export declare type OffsetProperty<TLength> = Globals | Position<TLength> | GeometryBox | 'auto' | 'none' | string;
3660
- export declare type OffsetDistanceProperty<TLength> = Globals | TLength | string;
3661
- export declare type OffsetPathProperty = Globals | GeometryBox | 'none' | string;
3662
- export declare type OffsetRotateProperty = Globals | 'auto' | 'reverse' | string;
3663
- export declare type ObjectFitProperty = Globals | 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
3664
- export declare type ObjectPositionProperty<TLength> = Globals | Position<TLength>;
3665
- export declare type OffsetAnchorProperty<TLength> = Globals | Position<TLength> | 'auto';
3666
- export declare type OffsetPositionProperty<TLength> = Globals | Position<TLength> | 'auto';
3667
- export declare type OutlineProperty<TLength> = Globals | Color | LineStyle | LineWidth<TLength> | 'auto' | 'invert' | string;
3668
- export declare type OutlineColorProperty = Globals | Color | 'invert';
3669
- export declare type OutlineOffsetProperty<TLength> = Globals | TLength;
3670
- export declare type OutlineStyleProperty = Globals | LineStyle | 'auto' | string;
3671
- export declare type OutlineWidthProperty<TLength> = Globals | LineWidth<TLength>;
3672
- export declare type OverflowProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible' | string;
3673
- export declare type OverflowAnchorProperty = Globals | 'auto' | 'none';
3674
- export declare type OverflowBlockProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3675
- export declare type OverflowClipBoxProperty = Globals | 'content-box' | 'padding-box';
3676
- export declare type OverflowInlineProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3677
- export declare type OverflowWrapProperty = Globals | 'anywhere' | 'break-word' | 'normal';
3678
- export declare type OverflowXProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3679
- export declare type OverflowYProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3680
- export declare type OverscrollBehaviorProperty = Globals | 'auto' | 'contain' | 'none' | string;
3681
- export declare type OverscrollBehaviorXProperty = Globals | 'auto' | 'contain' | 'none';
3682
- export declare type OverscrollBehaviorYProperty = Globals | 'auto' | 'contain' | 'none';
3683
- export declare type PaddingProperty<TLength> = Globals | TLength | string;
3684
- export declare type PaddingBlockProperty<TLength> = Globals | TLength | string;
3685
- export declare type PaddingBlockEndProperty<TLength> = Globals | TLength | string;
3686
- export declare type PaddingBlockStartProperty<TLength> = Globals | TLength | string;
3687
- export declare type PaddingBottomProperty<TLength> = Globals | TLength | string;
3688
- export declare type PaddingInlineProperty<TLength> = Globals | TLength | string;
3689
- export declare type PaddingInlineEndProperty<TLength> = Globals | TLength | string;
3690
- export declare type PaddingInlineStartProperty<TLength> = Globals | TLength | string;
3691
- export declare type PaddingLeftProperty<TLength> = Globals | TLength | string;
3692
- export declare type PaddingRightProperty<TLength> = Globals | TLength | string;
3693
- export declare type PaddingTopProperty<TLength> = Globals | TLength | string;
3694
- export declare type PageBreakAfterProperty = Globals | 'always' | 'auto' | 'avoid' | 'left' | 'recto' | 'right' | 'verso';
3695
- export declare type PageBreakBeforeProperty = Globals | 'always' | 'auto' | 'avoid' | 'left' | 'recto' | 'right' | 'verso';
3696
- export declare type PageBreakInsideProperty = Globals | 'auto' | 'avoid';
3697
- export declare type PaintOrderProperty = Globals | 'fill' | 'markers' | 'normal' | 'stroke' | string;
3698
- export declare type PerspectiveProperty<TLength> = Globals | TLength | 'none';
3699
- export declare type PerspectiveOriginProperty<TLength> = Globals | Position<TLength>;
3700
- export declare type PlaceContentProperty = Globals | ContentDistribution | ContentPosition | 'baseline' | 'normal' | string;
3701
- export declare type PlaceItemsProperty = Globals | SelfPosition | 'baseline' | 'normal' | 'stretch' | string;
3702
- export declare type PlaceSelfProperty = Globals | SelfPosition | 'auto' | 'baseline' | 'normal' | 'stretch' | string;
3703
- export declare type PointerEventsProperty = Globals | 'all' | 'auto' | 'fill' | 'inherit' | 'none' | 'painted' | 'stroke' | 'visible' | 'visibleFill' | 'visiblePainted' | 'visibleStroke';
3704
- export declare type PositionProperty = Globals | '-webkit-sticky' | 'absolute' | 'fixed' | 'relative' | 'static' | 'sticky';
3705
- export declare type QuotesProperty = Globals | 'none' | string;
3706
- export declare type ResizeProperty = Globals | 'block' | 'both' | 'horizontal' | 'inline' | 'none' | 'vertical';
3707
- export declare type RightProperty<TLength> = Globals | TLength | 'auto' | string;
3708
- export declare type RotateProperty = Globals | 'none' | string;
3709
- export declare type RowGapProperty<TLength> = Globals | TLength | 'normal' | string;
3710
- export declare type RubyAlignProperty = Globals | 'center' | 'space-around' | 'space-between' | 'start';
3711
- export declare type RubyMergeProperty = Globals | 'auto' | 'collapse' | 'separate';
3712
- export declare type RubyPositionProperty = Globals | 'over' | 'under';
3713
- export declare type ScaleProperty = Globals | 'none' | string | number;
3714
- export declare type ScrollBehaviorProperty = Globals | 'auto' | 'smooth';
3715
- export declare type ScrollMarginProperty<TLength> = Globals | TLength | string;
3716
- export declare type ScrollMarginBlockProperty<TLength> = Globals | TLength | string;
3717
- export declare type ScrollMarginBlockEndProperty<TLength> = Globals | TLength;
3718
- export declare type ScrollMarginBlockStartProperty<TLength> = Globals | TLength;
3719
- export declare type ScrollMarginBottomProperty<TLength> = Globals | TLength;
3720
- export declare type ScrollMarginInlineProperty<TLength> = Globals | TLength | string;
3721
- export declare type ScrollMarginInlineEndProperty<TLength> = Globals | TLength;
3722
- export declare type ScrollMarginInlineStartProperty<TLength> = Globals | TLength;
3723
- export declare type ScrollMarginLeftProperty<TLength> = Globals | TLength;
3724
- export declare type ScrollMarginRightProperty<TLength> = Globals | TLength;
3725
- export declare type ScrollMarginTopProperty<TLength> = Globals | TLength;
3726
- export declare type ScrollPaddingProperty<TLength> = Globals | TLength | 'auto' | string;
3727
- export declare type ScrollPaddingBlockProperty<TLength> = Globals | TLength | 'auto' | string;
3728
- export declare type ScrollPaddingBlockEndProperty<TLength> = Globals | TLength | 'auto' | string;
3729
- export declare type ScrollPaddingBlockStartProperty<TLength> = Globals | TLength | 'auto' | string;
3730
- export declare type ScrollPaddingBottomProperty<TLength> = Globals | TLength | 'auto' | string;
3731
- export declare type ScrollPaddingInlineProperty<TLength> = Globals | TLength | 'auto' | string;
3732
- export declare type ScrollPaddingInlineEndProperty<TLength> = Globals | TLength | 'auto' | string;
3733
- export declare type ScrollPaddingInlineStartProperty<TLength> = Globals | TLength | 'auto' | string;
3734
- export declare type ScrollPaddingLeftProperty<TLength> = Globals | TLength | 'auto' | string;
3735
- export declare type ScrollPaddingRightProperty<TLength> = Globals | TLength | 'auto' | string;
3736
- export declare type ScrollPaddingTopProperty<TLength> = Globals | TLength | 'auto' | string;
3737
- export declare type ScrollSnapAlignProperty = Globals | 'center' | 'end' | 'none' | 'start' | string;
3738
- export declare type ScrollSnapCoordinateProperty<TLength> = Globals | Position<TLength> | 'none' | string;
3739
- export declare type ScrollSnapDestinationProperty<TLength> = Globals | Position<TLength>;
3740
- export declare type ScrollSnapPointsXProperty = Globals | 'none' | string;
3741
- export declare type ScrollSnapPointsYProperty = Globals | 'none' | string;
3742
- export declare type ScrollSnapStopProperty = Globals | 'always' | 'normal';
3743
- export declare type ScrollSnapTypeProperty = Globals | 'block' | 'both' | 'inline' | 'none' | 'x' | 'y' | string;
3744
- export declare type ScrollSnapTypeXProperty = Globals | 'mandatory' | 'none' | 'proximity';
3745
- export declare type ScrollSnapTypeYProperty = Globals | 'mandatory' | 'none' | 'proximity';
3746
- export declare type ScrollbarColorProperty = Globals | Color | 'auto' | 'dark' | 'light';
3747
- export declare type ScrollbarWidthProperty = Globals | 'auto' | 'none' | 'thin';
3748
- export declare type ShapeMarginProperty<TLength> = Globals | TLength | string;
3749
- export declare type ShapeOutsideProperty = Globals | Box | 'margin-box' | 'none' | string;
3750
- export declare type TabSizeProperty<TLength> = Globals | TLength | number;
3751
- export declare type TableLayoutProperty = Globals | 'auto' | 'fixed';
3752
- export declare type TextAlignProperty = Globals | 'center' | 'end' | 'justify' | 'left' | 'match-parent' | 'right' | 'start';
3753
- export declare type TextAlignLastProperty = Globals | 'auto' | 'center' | 'end' | 'justify' | 'left' | 'right' | 'start';
3754
- export declare type TextCombineUprightProperty = Globals | 'all' | 'digits' | 'none' | string;
3755
- export declare type TextDecorationProperty = Globals | Color | 'blink' | 'dashed' | 'dotted' | 'double' | 'line-through' | 'none' | 'overline' | 'solid' | 'underline' | 'wavy' | string;
3756
- export declare type TextDecorationColorProperty = Globals | Color;
3757
- export declare type TextDecorationLineProperty = Globals | 'blink' | 'line-through' | 'none' | 'overline' | 'underline' | string;
3758
- export declare type TextDecorationSkipProperty = Globals | 'box-decoration' | 'edges' | 'leading-spaces' | 'none' | 'objects' | 'spaces' | 'trailing-spaces' | string;
3759
- export declare type TextDecorationSkipInkProperty = Globals | 'auto' | 'none';
3760
- export declare type TextDecorationStyleProperty = Globals | 'dashed' | 'dotted' | 'double' | 'solid' | 'wavy';
3761
- export declare type TextEmphasisProperty = Globals | Color | 'circle' | 'dot' | 'double-circle' | 'filled' | 'none' | 'open' | 'sesame' | 'triangle' | string;
3762
- export declare type TextEmphasisColorProperty = Globals | Color;
3763
- export declare type TextEmphasisStyleProperty = Globals | 'circle' | 'dot' | 'double-circle' | 'filled' | 'none' | 'open' | 'sesame' | 'triangle' | string;
3764
- export declare type TextIndentProperty<TLength> = Globals | TLength | string;
3765
- export declare type TextJustifyProperty = Globals | 'auto' | 'inter-character' | 'inter-word' | 'none';
3766
- export declare type TextOrientationProperty = Globals | 'mixed' | 'sideways' | 'upright';
3767
- export declare type TextOverflowProperty = Globals | 'clip' | 'ellipsis' | string;
3768
- export declare type TextRenderingProperty = Globals | 'auto' | 'geometricPrecision' | 'optimizeLegibility' | 'optimizeSpeed';
3769
- export declare type TextShadowProperty = Globals | 'none' | string;
3770
- export declare type TextSizeAdjustProperty = Globals | 'auto' | 'none' | string;
3771
- export declare type TextTransformProperty = Globals | 'capitalize' | 'full-size-kana' | 'full-width' | 'lowercase' | 'none' | 'uppercase';
3772
- export declare type TextUnderlinePositionProperty = Globals | 'auto' | 'left' | 'right' | 'under' | string;
3773
- export declare type TopProperty<TLength> = Globals | TLength | 'auto' | string;
3774
- export declare type TouchActionProperty = Globals | '-ms-manipulation' | '-ms-none' | '-ms-pinch-zoom' | 'auto' | 'manipulation' | 'none' | 'pan-down' | 'pan-left' | 'pan-right' | 'pan-up' | 'pan-x' | 'pan-y' | 'pinch-zoom' | string;
3775
- export declare type TransformProperty = Globals | 'none' | string;
3776
- export declare type TransformBoxProperty = Globals | 'border-box' | 'fill-box' | 'view-box';
3777
- export declare type TransformOriginProperty<TLength> = Globals | TLength | 'bottom' | 'center' | 'left' | 'right' | 'top' | string;
3778
- export declare type TransformStyleProperty = Globals | 'flat' | 'preserve-3d';
3779
- export declare type TransitionProperty = Globals | SingleTransition | string;
3780
- export declare type TransitionPropertyProperty = Globals | 'all' | 'none' | string;
3781
- export declare type TransitionTimingFunctionProperty = Globals | TimingFunction | string;
3782
- export declare type TranslateProperty<TLength> = Globals | TLength | 'none' | string;
3783
- export declare type UnicodeBidiProperty = Globals | '-moz-isolate' | '-moz-isolate-override' | '-moz-plaintext' | '-webkit-isolate' | 'bidi-override' | 'embed' | 'isolate' | 'isolate-override' | 'normal' | 'plaintext';
3784
- export declare type UserSelectProperty = Globals | '-moz-none' | 'all' | 'auto' | 'contain' | 'element' | 'none' | 'text';
3785
- export declare type VerticalAlignProperty<TLength> = Globals | TLength | 'baseline' | 'bottom' | 'middle' | 'sub' | 'super' | 'text-bottom' | 'text-top' | 'top' | string;
3786
- export declare type VisibilityProperty = Globals | 'collapse' | 'hidden' | 'visible';
3787
- export declare type WhiteSpaceProperty = Globals | '-moz-pre-wrap' | 'normal' | 'nowrap' | 'pre' | 'pre-line' | 'pre-wrap';
3788
- export declare type WidthProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | '-webkit-fit-content' | '-webkit-max-content' | 'auto' | 'available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'min-intrinsic' | string;
3789
- export declare type WillChangeProperty = Globals | AnimateableFeature | 'auto' | string;
3790
- export declare type WordBreakProperty = Globals | 'break-all' | 'break-word' | 'keep-all' | 'normal';
3791
- export declare type WordSpacingProperty<TLength> = Globals | TLength | 'normal' | string;
3792
- export declare type WordWrapProperty = Globals | 'break-word' | 'normal';
3793
- export declare type WritingModeProperty = Globals | 'horizontal-tb' | 'sideways-lr' | 'sideways-rl' | 'vertical-lr' | 'vertical-rl';
3794
- export declare type ZIndexProperty = Globals | 'auto' | number;
3795
- export declare type ZoomProperty = Globals | 'normal' | 'reset' | string | number;
3796
- export declare type MozAppearanceProperty = Globals | '-moz-mac-unified-toolbar' | '-moz-win-borderless-glass' | '-moz-win-browsertabbar-toolbox' | '-moz-win-communications-toolbox' | '-moz-win-communicationstext' | '-moz-win-exclude-glass' | '-moz-win-glass' | '-moz-win-media-toolbox' | '-moz-win-mediatext' | '-moz-window-button-box' | '-moz-window-button-box-maximized' | '-moz-window-button-close' | '-moz-window-button-maximize' | '-moz-window-button-minimize' | '-moz-window-button-restore' | '-moz-window-frame-bottom' | '-moz-window-frame-left' | '-moz-window-frame-right' | '-moz-window-titlebar' | '-moz-window-titlebar-maximized' | 'button' | 'button-arrow-down' | 'button-arrow-next' | 'button-arrow-previous' | 'button-arrow-up' | 'button-bevel' | 'button-focus' | 'caret' | 'checkbox' | 'checkbox-container' | 'checkbox-label' | 'checkmenuitem' | 'dualbutton' | 'groupbox' | 'listbox' | 'listitem' | 'menuarrow' | 'menubar' | 'menucheckbox' | 'menuimage' | 'menuitem' | 'menuitemtext' | 'menulist' | 'menulist-button' | 'menulist-text' | 'menulist-textfield' | 'menupopup' | 'menuradio' | 'menuseparator' | 'meterbar' | 'meterchunk' | 'none' | 'progressbar' | 'progressbar-vertical' | 'progresschunk' | 'progresschunk-vertical' | 'radio' | 'radio-container' | 'radio-label' | 'radiomenuitem' | 'range' | 'range-thumb' | 'resizer' | 'resizerpanel' | 'scale-horizontal' | 'scale-vertical' | 'scalethumb-horizontal' | 'scalethumb-vertical' | 'scalethumbend' | 'scalethumbstart' | 'scalethumbtick' | 'scrollbarbutton-down' | 'scrollbarbutton-left' | 'scrollbarbutton-right' | 'scrollbarbutton-up' | 'scrollbarthumb-horizontal' | 'scrollbarthumb-vertical' | 'scrollbartrack-horizontal' | 'scrollbartrack-vertical' | 'searchfield' | 'separator' | 'sheet' | 'spinner' | 'spinner-downbutton' | 'spinner-textfield' | 'spinner-upbutton' | 'splitter' | 'statusbar' | 'statusbarpanel' | 'tab' | 'tab-scroll-arrow-back' | 'tab-scroll-arrow-forward' | 'tabpanel' | 'tabpanels' | 'textfield' | 'textfield-multiline' | 'toolbar' | 'toolbarbutton' | 'toolbarbutton-dropdown' | 'toolbargripper' | 'toolbox' | 'tooltip' | 'treeheader' | 'treeheadercell' | 'treeheadersortarrow' | 'treeitem' | 'treeline' | 'treetwisty' | 'treetwistyopen' | 'treeview';
3797
- export declare type MozBindingProperty = Globals | 'none' | string;
3798
- export declare type MozBorderBottomColorsProperty = Globals | Color | 'none' | string;
3799
- export declare type MozBorderLeftColorsProperty = Globals | Color | 'none' | string;
3800
- export declare type MozBorderRightColorsProperty = Globals | Color | 'none' | string;
3801
- export declare type MozBorderTopColorsProperty = Globals | Color | 'none' | string;
3802
- export declare type MozContextPropertiesProperty = Globals | 'fill' | 'fill-opacity' | 'none' | 'stroke' | 'stroke-opacity' | string;
3803
- export declare type MozFloatEdgeProperty = Globals | 'border-box' | 'content-box' | 'margin-box' | 'padding-box';
3804
- export declare type MozImageRegionProperty = Globals | 'auto' | string;
3805
- export declare type MozOrientProperty = Globals | 'block' | 'horizontal' | 'inline' | 'vertical';
3806
- export declare type MozOutlineRadiusProperty<TLength> = Globals | TLength | string;
3807
- export declare type MozOutlineRadiusBottomleftProperty<TLength> = Globals | TLength | string;
3808
- export declare type MozOutlineRadiusBottomrightProperty<TLength> = Globals | TLength | string;
3809
- export declare type MozOutlineRadiusTopleftProperty<TLength> = Globals | TLength | string;
3810
- export declare type MozOutlineRadiusToprightProperty<TLength> = Globals | TLength | string;
3811
- export declare type MozStackSizingProperty = Globals | 'ignore' | 'stretch-to-fit';
3812
- export declare type MozTextBlinkProperty = Globals | 'blink' | 'none';
3813
- export declare type MozUserFocusProperty = Globals | 'ignore' | 'none' | 'normal' | 'select-after' | 'select-all' | 'select-before' | 'select-menu' | 'select-same';
3814
- export declare type MozUserInputProperty = Globals | 'auto' | 'disabled' | 'enabled' | 'none';
3815
- export declare type MozUserModifyProperty = Globals | 'read-only' | 'read-write' | 'write-only';
3816
- export declare type MozWindowDraggingProperty = Globals | 'drag' | 'no-drag';
3817
- export declare type MozWindowShadowProperty = Globals | 'default' | 'menu' | 'none' | 'sheet' | 'tooltip';
3818
- export declare type MsAcceleratorProperty = Globals | 'false' | 'true';
3819
- export declare type MsBlockProgressionProperty = Globals | 'bt' | 'lr' | 'rl' | 'tb';
3820
- export declare type MsContentZoomChainingProperty = Globals | 'chained' | 'none';
3821
- export declare type MsContentZoomSnapProperty = Globals | 'mandatory' | 'none' | 'proximity' | string;
3822
- export declare type MsContentZoomSnapTypeProperty = Globals | 'mandatory' | 'none' | 'proximity';
3823
- export declare type MsContentZoomingProperty = Globals | 'none' | 'zoom';
3824
- export declare type MsFlowFromProperty = Globals | 'none' | string;
3825
- export declare type MsFlowIntoProperty = Globals | 'none' | string;
3826
- export declare type MsHighContrastAdjustProperty = Globals | 'auto' | 'none';
3827
- export declare type MsHyphenateLimitCharsProperty = Globals | 'auto' | string | number;
3828
- export declare type MsHyphenateLimitLinesProperty = Globals | 'no-limit' | number;
3829
- export declare type MsHyphenateLimitZoneProperty<TLength> = Globals | TLength | string;
3830
- export declare type MsImeAlignProperty = Globals | 'after' | 'auto';
3831
- export declare type MsOverflowStyleProperty = Globals | '-ms-autohiding-scrollbar' | 'auto' | 'none' | 'scrollbar';
3832
- export declare type MsScrollChainingProperty = Globals | 'chained' | 'none';
3833
- export declare type MsScrollLimitXMaxProperty<TLength> = Globals | TLength | 'auto';
3834
- export declare type MsScrollLimitXMinProperty<TLength> = Globals | TLength;
3835
- export declare type MsScrollLimitYMaxProperty<TLength> = Globals | TLength | 'auto';
3836
- export declare type MsScrollLimitYMinProperty<TLength> = Globals | TLength;
3837
- export declare type MsScrollRailsProperty = Globals | 'none' | 'railed';
3838
- export declare type MsScrollSnapTypeProperty = Globals | 'mandatory' | 'none' | 'proximity';
3839
- export declare type MsScrollTranslationProperty = Globals | 'none' | 'vertical-to-horizontal';
3840
- export declare type MsScrollbar3dlightColorProperty = Globals | Color;
3841
- export declare type MsScrollbarArrowColorProperty = Globals | Color;
3842
- export declare type MsScrollbarBaseColorProperty = Globals | Color;
3843
- export declare type MsScrollbarDarkshadowColorProperty = Globals | Color;
3844
- export declare type MsScrollbarFaceColorProperty = Globals | Color;
3845
- export declare type MsScrollbarHighlightColorProperty = Globals | Color;
3846
- export declare type MsScrollbarShadowColorProperty = Globals | Color;
3847
- export declare type MsScrollbarTrackColorProperty = Globals | Color;
3848
- export declare type MsTextAutospaceProperty = Globals | 'ideograph-alpha' | 'ideograph-numeric' | 'ideograph-parenthesis' | 'ideograph-space' | 'none';
3849
- export declare type MsTouchSelectProperty = Globals | 'grippers' | 'none';
3850
- export declare type MsUserSelectProperty = Globals | 'element' | 'none' | 'text';
3851
- export declare type MsWrapFlowProperty = Globals | 'auto' | 'both' | 'clear' | 'end' | 'maximum' | 'start';
3852
- export declare type MsWrapMarginProperty<TLength> = Globals | TLength;
3853
- export declare type MsWrapThroughProperty = Globals | 'none' | 'wrap';
3854
- export declare type WebkitAppearanceProperty = Globals | 'button' | 'button-bevel' | 'caret' | 'checkbox' | 'default-button' | 'inner-spin-button' | 'listbox' | 'listitem' | 'media-controls-background' | 'media-controls-fullscreen-background' | 'media-current-time-display' | 'media-enter-fullscreen-button' | 'media-exit-fullscreen-button' | 'media-fullscreen-button' | 'media-mute-button' | 'media-overlay-play-button' | 'media-play-button' | 'media-seek-back-button' | 'media-seek-forward-button' | 'media-slider' | 'media-sliderthumb' | 'media-time-remaining-display' | 'media-toggle-closed-captions-button' | 'media-volume-slider' | 'media-volume-slider-container' | 'media-volume-sliderthumb' | 'menulist' | 'menulist-button' | 'menulist-text' | 'menulist-textfield' | 'meter' | 'none' | 'progress-bar' | 'progress-bar-value' | 'push-button' | 'radio' | 'searchfield' | 'searchfield-cancel-button' | 'searchfield-decoration' | 'searchfield-results-button' | 'searchfield-results-decoration' | 'slider-horizontal' | 'slider-vertical' | 'sliderthumb-horizontal' | 'sliderthumb-vertical' | 'square-button' | 'textarea' | 'textfield';
3855
- export declare type WebkitBorderBeforeProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3856
- export declare type WebkitBorderBeforeColorProperty = Globals | Color;
3857
- export declare type WebkitBorderBeforeStyleProperty = Globals | LineStyle | string;
3858
- export declare type WebkitBorderBeforeWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
3859
- export declare type WebkitBoxReflectProperty<TLength> = Globals | TLength | 'above' | 'below' | 'left' | 'right' | string;
3860
- export declare type WebkitLineClampProperty = Globals | 'none' | number;
3861
- export declare type WebkitMaskProperty<TLength> = Globals | Position<TLength> | RepeatStyle | Box | 'border' | 'content' | 'none' | 'padding' | 'text' | string;
3862
- export declare type WebkitMaskAttachmentProperty = Globals | Attachment | string;
3863
- export declare type WebkitMaskClipProperty = Globals | Box | 'border' | 'content' | 'padding' | 'text' | string;
3864
- export declare type WebkitMaskCompositeProperty = Globals | CompositeStyle | string;
3865
- export declare type WebkitMaskImageProperty = Globals | 'none' | string;
3866
- export declare type WebkitMaskOriginProperty = Globals | Box | 'border' | 'content' | 'padding' | string;
3867
- export declare type WebkitMaskPositionProperty<TLength> = Globals | Position<TLength> | string;
3868
- export declare type WebkitMaskPositionXProperty<TLength> = Globals | TLength | 'center' | 'left' | 'right' | string;
3869
- export declare type WebkitMaskPositionYProperty<TLength> = Globals | TLength | 'bottom' | 'center' | 'top' | string;
3870
- export declare type WebkitMaskRepeatProperty = Globals | RepeatStyle | string;
3871
- export declare type WebkitMaskRepeatXProperty = Globals | 'no-repeat' | 'repeat' | 'round' | 'space';
3872
- export declare type WebkitMaskRepeatYProperty = Globals | 'no-repeat' | 'repeat' | 'round' | 'space';
3873
- export declare type WebkitMaskSizeProperty<TLength> = Globals | BgSize<TLength> | string;
3874
- export declare type WebkitOverflowScrollingProperty = Globals | 'auto' | 'touch';
3875
- export declare type WebkitTapHighlightColorProperty = Globals | Color;
3876
- export declare type WebkitTextFillColorProperty = Globals | Color;
3877
- export declare type WebkitTextStrokeProperty<TLength> = Globals | Color | TLength | string;
3878
- export declare type WebkitTextStrokeColorProperty = Globals | Color;
3879
- export declare type WebkitTextStrokeWidthProperty<TLength> = Globals | TLength;
3880
- export declare type WebkitTouchCalloutProperty = Globals | 'default' | 'none';
3881
- export declare type WebkitUserModifyProperty = Globals | 'read-only' | 'read-write' | 'read-write-plaintext-only';
3882
- export declare type AlignmentBaselineProperty = Globals | 'after-edge' | 'alphabetic' | 'auto' | 'baseline' | 'before-edge' | 'central' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'text-after-edge' | 'text-before-edge';
3883
- export declare type BaselineShiftProperty<TLength> = Globals | TLength | 'baseline' | 'sub' | 'super' | string;
3884
- export declare type ClipRuleProperty = Globals | 'evenodd' | 'nonzero';
3885
- export declare type ColorInterpolationProperty = Globals | 'auto' | 'linearRGB' | 'sRGB';
3886
- export declare type ColorRenderingProperty = Globals | 'auto' | 'optimizeQuality' | 'optimizeSpeed';
3887
- export declare type DominantBaselineProperty = Globals | 'alphabetic' | 'auto' | 'central' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'no-change' | 'reset-size' | 'text-after-edge' | 'text-before-edge' | 'use-script';
3888
- export declare type FillProperty = Globals | Paint;
3889
- export declare type FillRuleProperty = Globals | 'evenodd' | 'nonzero';
3890
- export declare type FloodColorProperty = Globals | Color | 'currentColor';
3891
- export declare type GlyphOrientationVerticalProperty = Globals | 'auto' | string | number;
3892
- export declare type LightingColorProperty = Globals | Color | 'currentColor';
3893
- export declare type MarkerProperty = Globals | 'none' | string;
3894
- export declare type MarkerEndProperty = Globals | 'none' | string;
3895
- export declare type MarkerMidProperty = Globals | 'none' | string;
3896
- export declare type MarkerStartProperty = Globals | 'none' | string;
3897
- export declare type ShapeRenderingProperty = Globals | 'auto' | 'crispEdges' | 'geometricPrecision' | 'optimizeSpeed';
3898
- export declare type StopColorProperty = Globals | Color | 'currentColor';
3899
- export declare type StrokeProperty = Globals | Paint;
3900
- export declare type StrokeDasharrayProperty<TLength> = Globals | Dasharray<TLength> | 'none';
3901
- export declare type StrokeDashoffsetProperty<TLength> = Globals | TLength | string;
3902
- export declare type StrokeLinecapProperty = Globals | 'butt' | 'round' | 'square';
3903
- export declare type StrokeLinejoinProperty = Globals | 'bevel' | 'miter' | 'round';
3904
- export declare type StrokeWidthProperty<TLength> = Globals | TLength | string;
3905
- export declare type TextAnchorProperty = Globals | 'end' | 'middle' | 'start';
3906
- export declare type VectorEffectProperty = Globals | 'non-scaling-stroke' | 'none';
3907
- declare type CounterStyleRangeProperty = 'auto' | 'infinite' | string | number;
3908
- declare type CounterStyleSpeakAsProperty = 'auto' | 'bullets' | 'numbers' | 'spell-out' | 'words' | string;
3909
- declare type CounterStyleSystemProperty = 'additive' | 'alphabetic' | 'cyclic' | 'fixed' | 'numeric' | 'symbolic' | string;
3910
- declare type FontFaceFontFeatureSettingsProperty = 'normal' | string;
3911
- declare type FontFaceFontDisplayProperty = 'auto' | 'block' | 'fallback' | 'optional' | 'swap';
3912
- declare type FontFaceFontStretchProperty = FontStretchAbsolute | string;
3913
- declare type FontFaceFontStyleProperty = 'italic' | 'normal' | 'oblique' | string;
3914
- declare type FontFaceFontVariantProperty = EastAsianVariantValues | 'all-petite-caps' | 'all-small-caps' | 'common-ligatures' | 'contextual' | 'diagonal-fractions' | 'discretionary-ligatures' | 'full-width' | 'historical-forms' | 'historical-ligatures' | 'lining-nums' | 'no-common-ligatures' | 'no-contextual' | 'no-discretionary-ligatures' | 'no-historical-ligatures' | 'none' | 'normal' | 'oldstyle-nums' | 'ordinal' | 'petite-caps' | 'proportional-nums' | 'proportional-width' | 'ruby' | 'slashed-zero' | 'small-caps' | 'stacked-fractions' | 'tabular-nums' | 'titling-caps' | 'unicase' | string;
3915
- declare type FontFaceFontVariationSettingsProperty = 'normal' | string;
3916
- declare type FontFaceFontWeightProperty = FontWeightAbsolute | string;
3917
- declare type PageBleedProperty<TLength> = TLength | 'auto';
3918
- declare type PageMarksProperty = 'crop' | 'cross' | 'none' | string;
3919
- declare type ViewportHeightProperty<TLength> = ViewportLength<TLength> | string;
3920
- declare type ViewportMaxHeightProperty<TLength> = ViewportLength<TLength>;
3921
- declare type ViewportMaxWidthProperty<TLength> = ViewportLength<TLength>;
3922
- declare type ViewportMaxZoomProperty = 'auto' | string | number;
3923
- declare type ViewportMinHeightProperty<TLength> = ViewportLength<TLength>;
3924
- declare type ViewportMinWidthProperty<TLength> = ViewportLength<TLength>;
3925
- declare type ViewportMinZoomProperty = 'auto' | string | number;
3926
- declare type ViewportOrientationProperty = 'auto' | 'landscape' | 'portrait';
3927
- declare type ViewportUserZoomProperty = '-ms-zoom' | 'fixed' | 'zoom';
3928
- declare type ViewportWidthProperty<TLength> = ViewportLength<TLength> | string;
3929
- declare type ViewportZoomProperty = 'auto' | string | number;
3930
- declare type AbsoluteSize = 'large' | 'medium' | 'small' | 'x-large' | 'x-small' | 'xx-large' | 'xx-small';
3931
- declare type AnimateableFeature = 'contents' | 'scroll-position' | string;
3932
- declare type Attachment = 'fixed' | 'local' | 'scroll';
3933
- declare type BgPosition<TLength> = TLength | 'bottom' | 'center' | 'left' | 'right' | 'top' | string;
3934
- declare type BgSize<TLength> = TLength | 'auto' | 'contain' | 'cover' | string;
3935
- declare type BlendMode = 'color' | 'color-burn' | 'color-dodge' | 'darken' | 'difference' | 'exclusion' | 'hard-light' | 'hue' | 'lighten' | 'luminosity' | 'multiply' | 'normal' | 'overlay' | 'saturation' | 'screen' | 'soft-light';
3936
- declare type Box = 'border-box' | 'content-box' | 'padding-box';
3937
- declare type Color = NamedColor | DeprecatedSystemColor | 'currentcolor' | string;
3938
- declare type Compat = 'button-bevel' | 'checkbox' | 'listbox' | 'menulist' | 'menulist-button' | 'meter' | 'progress-bar' | 'push-button' | 'radio' | 'searchfield' | 'slider-horizontal' | 'square-button' | 'textarea';
3939
- declare type CompositeStyle = 'clear' | 'copy' | 'destination-atop' | 'destination-in' | 'destination-out' | 'destination-over' | 'source-atop' | 'source-in' | 'source-out' | 'source-over' | 'xor';
3940
- declare type CompositingOperator = 'add' | 'exclude' | 'intersect' | 'subtract';
3941
- declare type ContentDistribution = 'space-around' | 'space-between' | 'space-evenly' | 'stretch';
3942
- declare type ContentList = Quote | 'contents' | string;
3943
- declare type ContentPosition = 'center' | 'end' | 'flex-end' | 'flex-start' | 'start';
3944
- declare type CubicBezierTimingFunction = 'ease' | 'ease-in' | 'ease-in-out' | 'ease-out' | string;
3945
- declare type Dasharray<TLength> = TLength | string | number;
3946
- declare type DeprecatedSystemColor = 'ActiveBorder' | 'ActiveCaption' | 'AppWorkspace' | 'Background' | 'ButtonFace' | 'ButtonHighlight' | 'ButtonShadow' | 'ButtonText' | 'CaptionText' | 'GrayText' | 'Highlight' | 'HighlightText' | 'InactiveBorder' | 'InactiveCaption' | 'InactiveCaptionText' | 'InfoBackground' | 'InfoText' | 'Menu' | 'MenuText' | 'Scrollbar' | 'ThreeDDarkShadow' | 'ThreeDFace' | 'ThreeDHighlight' | 'ThreeDLightShadow' | 'ThreeDShadow' | 'Window' | 'WindowFrame' | 'WindowText';
3947
- declare type DisplayInside = '-ms-flexbox' | '-ms-grid' | '-webkit-flex' | 'flex' | 'flow' | 'flow-root' | 'grid' | 'ruby' | 'table';
3948
- declare type DisplayInternal = 'ruby-base' | 'ruby-base-container' | 'ruby-text' | 'ruby-text-container' | 'table-caption' | 'table-cell' | 'table-column' | 'table-column-group' | 'table-footer-group' | 'table-header-group' | 'table-row' | 'table-row-group';
3949
- declare type DisplayLegacy = '-ms-inline-flexbox' | '-ms-inline-grid' | '-webkit-inline-flex' | 'inline-block' | 'inline-flex' | 'inline-grid' | 'inline-list-item' | 'inline-table';
3950
- declare type DisplayOutside = 'block' | 'inline' | 'run-in';
3951
- declare type EastAsianVariantValues = 'jis04' | 'jis78' | 'jis83' | 'jis90' | 'simplified' | 'traditional';
3952
- declare type FinalBgLayer<TLength> = Color | BgPosition<TLength> | RepeatStyle | Attachment | Box | 'none' | string;
3953
- declare type FontStretchAbsolute = 'condensed' | 'expanded' | 'extra-condensed' | 'extra-expanded' | 'normal' | 'semi-condensed' | 'semi-expanded' | 'ultra-condensed' | 'ultra-expanded' | string;
3954
- declare type FontWeightAbsolute = 'bold' | 'normal' | number;
3955
- declare type GenericFamily = 'cursive' | 'fantasy' | 'monospace' | 'sans-serif' | 'serif';
3956
- declare type GeometryBox = Box | 'fill-box' | 'margin-box' | 'stroke-box' | 'view-box';
3957
- declare type GridLine = 'auto' | string | number;
3958
- declare type LineStyle = 'dashed' | 'dotted' | 'double' | 'groove' | 'hidden' | 'inset' | 'none' | 'outset' | 'ridge' | 'solid';
3959
- declare type LineWidth<TLength> = TLength | 'medium' | 'thick' | 'thin';
3960
- declare type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | 'no-clip' | 'none' | string;
3961
- declare type MaskingMode = 'alpha' | 'luminance' | 'match-source';
3962
- declare type NamedColor = 'aliceblue' | 'antiquewhite' | 'aqua' | 'aquamarine' | 'azure' | 'beige' | 'bisque' | 'black' | 'blanchedalmond' | 'blue' | 'blueviolet' | 'brown' | 'burlywood' | 'cadetblue' | 'chartreuse' | 'chocolate' | 'coral' | 'cornflowerblue' | 'cornsilk' | 'crimson' | 'cyan' | 'darkblue' | 'darkcyan' | 'darkgoldenrod' | 'darkgray' | 'darkgreen' | 'darkgrey' | 'darkkhaki' | 'darkmagenta' | 'darkolivegreen' | 'darkorange' | 'darkorchid' | 'darkred' | 'darksalmon' | 'darkseagreen' | 'darkslateblue' | 'darkslategray' | 'darkslategrey' | 'darkturquoise' | 'darkviolet' | 'deeppink' | 'deepskyblue' | 'dimgray' | 'dimgrey' | 'dodgerblue' | 'firebrick' | 'floralwhite' | 'forestgreen' | 'fuchsia' | 'gainsboro' | 'ghostwhite' | 'gold' | 'goldenrod' | 'gray' | 'green' | 'greenyellow' | 'grey' | 'honeydew' | 'hotpink' | 'indianred' | 'indigo' | 'ivory' | 'khaki' | 'lavender' | 'lavenderblush' | 'lawngreen' | 'lemonchiffon' | 'lightblue' | 'lightcoral' | 'lightcyan' | 'lightgoldenrodyellow' | 'lightgray' | 'lightgreen' | 'lightgrey' | 'lightpink' | 'lightsalmon' | 'lightseagreen' | 'lightskyblue' | 'lightslategray' | 'lightslategrey' | 'lightsteelblue' | 'lightyellow' | 'lime' | 'limegreen' | 'linen' | 'magenta' | 'maroon' | 'mediumaquamarine' | 'mediumblue' | 'mediumorchid' | 'mediumpurple' | 'mediumseagreen' | 'mediumslateblue' | 'mediumspringgreen' | 'mediumturquoise' | 'mediumvioletred' | 'midnightblue' | 'mintcream' | 'mistyrose' | 'moccasin' | 'navajowhite' | 'navy' | 'oldlace' | 'olive' | 'olivedrab' | 'orange' | 'orangered' | 'orchid' | 'palegoldenrod' | 'palegreen' | 'paleturquoise' | 'palevioletred' | 'papayawhip' | 'peachpuff' | 'peru' | 'pink' | 'plum' | 'powderblue' | 'purple' | 'rebeccapurple' | 'red' | 'rosybrown' | 'royalblue' | 'saddlebrown' | 'salmon' | 'sandybrown' | 'seagreen' | 'seashell' | 'sienna' | 'silver' | 'skyblue' | 'slateblue' | 'slategray' | 'slategrey' | 'snow' | 'springgreen' | 'steelblue' | 'tan' | 'teal' | 'thistle' | 'tomato' | 'transparent' | 'turquoise' | 'violet' | 'wheat' | 'white' | 'whitesmoke' | 'yellow' | 'yellowgreen';
3963
- declare type Paint = Color | 'child' | 'context-fill' | 'context-stroke' | 'none' | string;
3964
- declare type Position<TLength> = TLength | 'bottom' | 'center' | 'left' | 'right' | 'top' | string;
3965
- declare type Quote = 'close-quote' | 'no-close-quote' | 'no-open-quote' | 'open-quote';
3966
- declare type RepeatStyle = 'no-repeat' | 'repeat' | 'repeat-x' | 'repeat-y' | 'round' | 'space' | string;
3967
- declare type SelfPosition = 'center' | 'end' | 'flex-end' | 'flex-start' | 'self-end' | 'self-start' | 'start';
3968
- declare type SingleAnimation = TimingFunction | SingleAnimationDirection | SingleAnimationFillMode | 'infinite' | 'none' | 'paused' | 'running' | string | number;
3969
- declare type SingleAnimationDirection = 'alternate' | 'alternate-reverse' | 'normal' | 'reverse';
3970
- declare type SingleAnimationFillMode = 'backwards' | 'both' | 'forwards' | 'none';
3971
- declare type SingleTransition = TimingFunction | 'all' | 'none' | string;
3972
- declare type StepTimingFunction = 'step-end' | 'step-start' | string;
3973
- declare type TimingFunction = CubicBezierTimingFunction | StepTimingFunction | 'linear';
3974
- declare type TrackBreadth<TLength> = TLength | 'auto' | 'max-content' | 'min-content' | string;
3975
- declare type ViewportLength<TLength> = TLength | 'auto' | string;
3410
+ export type AtRules = '@charset' | '@counter-style' | '@document' | '@font-face' | '@font-feature-values' | '@import' | '@keyframes' | '@media' | '@namespace' | '@page' | '@supports' | '@viewport';
3411
+ export type AdvancedPseudos = ':-moz-any()' | ':-moz-dir' | ':-webkit-any()' | '::cue' | '::part' | '::slotted' | ':dir' | ':has' | ':host' | ':host-context' | ':is' | ':lang' | ':matches()' | ':not' | ':nth-child' | ':nth-last-child' | ':nth-last-of-type' | ':nth-of-type' | ':where';
3412
+ export type SimplePseudos = ':-moz-any-link' | ':-moz-focusring' | ':-moz-full-screen' | ':-moz-placeholder' | ':-moz-read-only' | ':-moz-read-write' | ':-ms-fullscreen' | ':-ms-input-placeholder' | ':-webkit-any-link' | ':-webkit-full-screen' | '::-moz-placeholder' | '::-moz-progress-bar' | '::-moz-range-progress' | '::-moz-range-thumb' | '::-moz-range-track' | '::-moz-selection' | '::-ms-backdrop' | '::-ms-browse' | '::-ms-check' | '::-ms-clear' | '::-ms-fill' | '::-ms-fill-lower' | '::-ms-fill-upper' | '::-ms-input-placeholder' | '::-ms-reveal' | '::-ms-thumb' | '::-ms-ticks-after' | '::-ms-ticks-before' | '::-ms-tooltip' | '::-ms-track' | '::-ms-value' | '::-webkit-backdrop' | '::-webkit-input-placeholder' | '::-webkit-progress-bar' | '::-webkit-progress-inner-value' | '::-webkit-progress-value' | '::-webkit-slider-runnable-track' | '::-webkit-slider-thumb' | '::after' | '::backdrop' | '::before' | '::cue' | '::first-letter' | '::first-line' | '::grammar-error' | '::marker' | '::placeholder' | '::selection' | '::spelling-error' | ':active' | ':after' | ':any-link' | ':before' | ':blank' | ':checked' | ':default' | ':defined' | ':disabled' | ':empty' | ':enabled' | ':first' | ':first-child' | ':first-letter' | ':first-line' | ':first-of-type' | ':focus' | ':focus-visible' | ':focus-within' | ':fullscreen' | ':hover' | ':in-range' | ':indeterminate' | ':invalid' | ':last-child' | ':last-of-type' | ':left' | ':link' | ':only-child' | ':only-of-type' | ':optional' | ':out-of-range' | ':placeholder-shown' | ':read-only' | ':read-write' | ':required' | ':right' | ':root' | ':scope' | ':target' | ':valid' | ':visited';
3413
+ export type Pseudos = AdvancedPseudos | SimplePseudos;
3414
+ export type HtmlAttributes = '[-webkit-dropzone]' | '[-webkit-slot]' | '[abbr]' | '[accept-charset]' | '[accept]' | '[accesskey]' | '[action]' | '[align]' | '[alink]' | '[allow]' | '[allowfullscreen]' | '[allowpaymentrequest]' | '[alt]' | '[archive]' | '[async]' | '[autobuffer]' | '[autocapitalize]' | '[autocomplete]' | '[autofocus]' | '[autoplay]' | '[axis]' | '[background]' | '[behavior]' | '[bgcolor]' | '[border]' | '[bottommargin]' | '[buffered]' | '[cellpadding]' | '[cellspacing]' | '[char]' | '[charoff]' | '[charset]' | '[checked]' | '[cite]' | '[class]' | '[classid]' | '[clear]' | '[code]' | '[codebase]' | '[codetype]' | '[color]' | '[cols]' | '[colspan]' | '[command]' | '[compact]' | '[content]' | '[contenteditable]' | '[contextmenu]' | '[controls]' | '[coords]' | '[crossorigin]' | '[data]' | '[datafld]' | '[datasrc]' | '[datetime]' | '[declare]' | '[decoding]' | '[default]' | '[defer]' | '[dir]' | '[direction]' | '[disabled]' | '[download]' | '[draggable]' | '[dropzone]' | '[enctype]' | '[exportparts]' | '[face]' | '[for]' | '[form]' | '[formaction]' | '[formenctype]' | '[formmethod]' | '[formnovalidate]' | '[formtarget]' | '[frame]' | '[frameborder]' | '[headers]' | '[height]' | '[hidden]' | '[high]' | '[href]' | '[hreflang]' | '[hspace]' | '[http-equiv]' | '[icon]' | '[id]' | '[inputmode]' | '[integrity]' | '[intrinsicsize]' | '[is]' | '[ismap]' | '[itemid]' | '[itemprop]' | '[itemref]' | '[itemscope]' | '[itemtype]' | '[kind]' | '[label]' | '[lang]' | '[language]' | '[leftmargin]' | '[link]' | '[longdesc]' | '[loop]' | '[low]' | '[manifest]' | '[marginheight]' | '[marginwidth]' | '[max]' | '[maxlength]' | '[mayscript]' | '[media]' | '[method]' | '[methods]' | '[min]' | '[minlength]' | '[moz-opaque]' | '[mozallowfullscreen]' | '[mozbrowser]' | '[mozcurrentsampleoffset]' | '[msallowfullscreen]' | '[multiple]' | '[muted]' | '[name]' | '[nohref]' | '[nomodule]' | '[noresize]' | '[noshade]' | '[novalidate]' | '[nowrap]' | '[object]' | '[onafterprint]' | '[onbeforeprint]' | '[onbeforeunload]' | '[onblur]' | '[onerror]' | '[onfocus]' | '[onhashchange]' | '[onlanguagechange]' | '[onload]' | '[onmessage]' | '[onoffline]' | '[ononline]' | '[onpopstate]' | '[onredo]' | '[onresize]' | '[onstorage]' | '[onundo]' | '[onunload]' | '[open]' | '[optimum]' | '[part]' | '[ping]' | '[placeholder]' | '[played]' | '[poster]' | '[prefetch]' | '[preload]' | '[profile]' | '[prompt]' | '[radiogroup]' | '[readonly]' | '[referrerPolicy]' | '[referrerpolicy]' | '[rel]' | '[required]' | '[rev]' | '[reversed]' | '[rightmargin]' | '[rows]' | '[rowspan]' | '[rules]' | '[sandbox-allow-modals]' | '[sandbox-allow-popups-to-escape-sandbox]' | '[sandbox-allow-popups]' | '[sandbox-allow-presentation]' | '[sandbox-allow-storage-access-by-user-activation]' | '[sandbox-allow-top-navigation-by-user-activation]' | '[sandbox]' | '[scope]' | '[scoped]' | '[scrollamount]' | '[scrolldelay]' | '[scrolling]' | '[selected]' | '[shape]' | '[size]' | '[sizes]' | '[slot]' | '[span]' | '[spellcheck]' | '[src]' | '[srcdoc]' | '[srclang]' | '[srcset]' | '[standby]' | '[start]' | '[style]' | '[summary]' | '[tabindex]' | '[target]' | '[text]' | '[title]' | '[topmargin]' | '[translate]' | '[truespeed]' | '[type]' | '[typemustmatch]' | '[usemap]' | '[valign]' | '[value]' | '[valuetype]' | '[version]' | '[vlink]' | '[volume]' | '[vspace]' | '[webkitallowfullscreen]' | '[width]' | '[wrap]' | '[xmlns]';
3415
+ export type SvgAttributes = '[accent-height]' | '[alignment-baseline]' | '[allowReorder]' | '[alphabetic]' | '[animation]' | '[arabic-form]' | '[ascent]' | '[attributeName]' | '[attributeType]' | '[azimuth]' | '[baseFrequency]' | '[baseProfile]' | '[baseline-shift]' | '[bbox]' | '[begin]' | '[bias]' | '[by]' | '[calcMode]' | '[cap-height]' | '[class]' | '[clip-path]' | '[clip-rule]' | '[clipPathUnits]' | '[clip]' | '[color-interpolation-filters]' | '[color-interpolation]' | '[color-profile]' | '[color-rendering]' | '[color]' | '[contentScriptType]' | '[contentStyleType]' | '[cursor]' | '[cx]' | '[cy]' | '[d]' | '[descent]' | '[diffuseConstant]' | '[direction]' | '[display]' | '[divisor]' | '[document]' | '[dominant-baseline]' | '[download]' | '[dur]' | '[dx]' | '[dy]' | '[edgeMode]' | '[elevation]' | '[enable-background]' | '[externalResourcesRequired]' | '[fill-opacity]' | '[fill-rule]' | '[fill]' | '[filterRes]' | '[filterUnits]' | '[filter]' | '[flood-color]' | '[flood-opacity]' | '[font-family]' | '[font-size-adjust]' | '[font-size]' | '[font-stretch]' | '[font-style]' | '[font-variant]' | '[font-weight]' | '[format]' | '[fr]' | '[from]' | '[fx]' | '[fy]' | '[g1]' | '[g2]' | '[global]' | '[glyph-name]' | '[glyph-orientation-horizontal]' | '[glyph-orientation-vertical]' | '[glyphRef]' | '[gradientTransform]' | '[gradientUnits]' | '[graphical]' | '[hanging]' | '[hatchContentUnits]' | '[hatchUnits]' | '[height]' | '[horiz-adv-x]' | '[horiz-origin-x]' | '[horiz-origin-y]' | '[href]' | '[hreflang]' | '[id]' | '[ideographic]' | '[image-rendering]' | '[in2]' | '[in]' | '[k1]' | '[k2]' | '[k3]' | '[k4]' | '[k]' | '[kernelMatrix]' | '[kernelUnitLength]' | '[kerning]' | '[keyPoints]' | '[lang]' | '[lengthAdjust]' | '[letter-spacing]' | '[lighterForError]' | '[lighting-color]' | '[limitingConeAngle]' | '[local]' | '[marker-end]' | '[marker-mid]' | '[marker-start]' | '[markerHeight]' | '[markerUnits]' | '[markerWidth]' | '[maskContentUnits]' | '[maskUnits]' | '[mask]' | '[mathematical]' | '[media]' | '[method]' | '[mode]' | '[name]' | '[numOctaves]' | '[offset]' | '[opacity]' | '[operator]' | '[order]' | '[orient]' | '[orientation]' | '[origin]' | '[overflow]' | '[overline-position]' | '[overline-thickness]' | '[paint-order]' | '[panose-1]' | '[path]' | '[patternContentUnits]' | '[patternTransform]' | '[patternUnits]' | '[ping]' | '[pitch]' | '[pointer-events]' | '[pointsAtX]' | '[pointsAtY]' | '[pointsAtZ]' | '[points]' | '[preserveAlpha]' | '[preserveAspectRatio]' | '[primitiveUnits]' | '[r]' | '[radius]' | '[refX]' | '[refY]' | '[referrerPolicy]' | '[rel]' | '[rendering-intent]' | '[repeatCount]' | '[requiredExtensions]' | '[requiredFeatures]' | '[rotate]' | '[rx]' | '[ry]' | '[scale]' | '[seed]' | '[shape-rendering]' | '[side]' | '[slope]' | '[solid-color]' | '[solid-opacity]' | '[spacing]' | '[specularConstant]' | '[specularExponent]' | '[spreadMethod]' | '[startOffset]' | '[stdDeviation]' | '[stemh]' | '[stemv]' | '[stitchTiles]' | '[stop-color]' | '[stop-opacity]' | '[strikethrough-position]' | '[strikethrough-thickness]' | '[string]' | '[stroke-dasharray]' | '[stroke-dashoffset]' | '[stroke-linecap]' | '[stroke-linejoin]' | '[stroke-miterlimit]' | '[stroke-opacity]' | '[stroke-width]' | '[stroke]' | '[style]' | '[surfaceScale]' | '[systemLanguage]' | '[tabindex]' | '[targetX]' | '[targetY]' | '[target]' | '[text-anchor]' | '[text-decoration]' | '[text-overflow]' | '[text-rendering]' | '[textLength]' | '[title]' | '[to]' | '[transform]' | '[type]' | '[u1]' | '[u2]' | '[underline-position]' | '[underline-thickness]' | '[unicode-bidi]' | '[unicode-range]' | '[unicode]' | '[units-per-em]' | '[v-alphabetic]' | '[v-hanging]' | '[v-ideographic]' | '[v-mathematical]' | '[values]' | '[vector-effect]' | '[version]' | '[vert-adv-y]' | '[vert-origin-x]' | '[vert-origin-y]' | '[viewBox]' | '[viewTarget]' | '[visibility]' | '[white-space]' | '[width]' | '[widths]' | '[word-spacing]' | '[writing-mode]' | '[x-height]' | '[x1]' | '[x2]' | '[xChannelSelector]' | '[x]' | '[y1]' | '[y2]' | '[yChannelSelector]' | '[y]' | '[z]' | '[zoomAndPan]';
3416
+ export type Globals = '-moz-initial' | 'inherit' | 'initial' | 'revert' | 'unset';
3417
+ type GlobalsString = Globals | string;
3418
+ export type GlobalsNumber = Globals | number;
3419
+ export type AlignContentProperty = Globals | ContentDistribution | ContentPosition | 'baseline' | 'normal' | string;
3420
+ export type AlignItemsProperty = Globals | SelfPosition | 'baseline' | 'normal' | 'stretch' | string;
3421
+ export type AlignSelfProperty = Globals | SelfPosition | 'auto' | 'baseline' | 'normal' | 'stretch' | string;
3422
+ export type AnimationProperty = Globals | SingleAnimation | string;
3423
+ export type AnimationDirectionProperty = Globals | SingleAnimationDirection | string;
3424
+ export type AnimationFillModeProperty = Globals | SingleAnimationFillMode | string;
3425
+ export type AnimationIterationCountProperty = Globals | 'infinite' | string | number;
3426
+ export type AnimationNameProperty = Globals | 'none' | string;
3427
+ export type AnimationPlayStateProperty = Globals | 'paused' | 'running' | string;
3428
+ export type AnimationTimingFunctionProperty = Globals | TimingFunction | string;
3429
+ export type AppearanceProperty = Globals | Compat | 'button' | 'none' | 'textfield';
3430
+ export type BackdropFilterProperty = Globals | 'none' | string;
3431
+ export type BackfaceVisibilityProperty = Globals | 'hidden' | 'visible';
3432
+ export type BackgroundProperty<TLength> = Globals | FinalBgLayer<TLength> | string;
3433
+ export type BackgroundAttachmentProperty = Globals | Attachment | string;
3434
+ export type BackgroundBlendModeProperty = Globals | BlendMode | string;
3435
+ export type BackgroundClipProperty = Globals | Box | string;
3436
+ export type BackgroundColorProperty = Globals | Color;
3437
+ export type BackgroundImageProperty = Globals | 'none' | string;
3438
+ export type BackgroundOriginProperty = Globals | Box | string;
3439
+ export type BackgroundPositionProperty<TLength> = Globals | BgPosition<TLength> | string;
3440
+ export type BackgroundPositionXProperty<TLength> = Globals | TLength | 'center' | 'left' | 'right' | 'x-end' | 'x-start' | string;
3441
+ export type BackgroundPositionYProperty<TLength> = Globals | TLength | 'bottom' | 'center' | 'top' | 'y-end' | 'y-start' | string;
3442
+ export type BackgroundRepeatProperty = Globals | RepeatStyle | string;
3443
+ export type BackgroundSizeProperty<TLength> = Globals | BgSize<TLength> | string;
3444
+ export type BlockOverflowProperty = Globals | 'clip' | 'ellipsis' | string;
3445
+ export type BlockSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'auto' | 'available' | 'fit-content' | 'max-content' | 'min-content' | string;
3446
+ export type BorderProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3447
+ export type BorderBlockProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3448
+ export type BorderBlockColorProperty = Globals | Color | string;
3449
+ export type BorderBlockEndProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3450
+ export type BorderBlockEndColorProperty = Globals | Color;
3451
+ export type BorderBlockEndStyleProperty = Globals | LineStyle;
3452
+ export type BorderBlockEndWidthProperty<TLength> = Globals | LineWidth<TLength>;
3453
+ export type BorderBlockStartProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3454
+ export type BorderBlockStartColorProperty = Globals | Color;
3455
+ export type BorderBlockStartStyleProperty = Globals | LineStyle;
3456
+ export type BorderBlockStartWidthProperty<TLength> = Globals | LineWidth<TLength>;
3457
+ export type BorderBlockStyleProperty = Globals | LineStyle;
3458
+ export type BorderBlockWidthProperty<TLength> = Globals | LineWidth<TLength>;
3459
+ export type BorderBottomProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3460
+ export type BorderBottomColorProperty = Globals | Color;
3461
+ export type BorderBottomLeftRadiusProperty<TLength> = Globals | TLength | string;
3462
+ export type BorderBottomRightRadiusProperty<TLength> = Globals | TLength | string;
3463
+ export type BorderBottomStyleProperty = Globals | LineStyle;
3464
+ export type BorderBottomWidthProperty<TLength> = Globals | LineWidth<TLength>;
3465
+ export type BorderCollapseProperty = Globals | 'collapse' | 'separate';
3466
+ export type BorderColorProperty = Globals | Color | string;
3467
+ export type BorderEndEndRadiusProperty<TLength> = Globals | TLength | string;
3468
+ export type BorderEndStartRadiusProperty<TLength> = Globals | TLength | string;
3469
+ export type BorderImageProperty = Globals | 'none' | 'repeat' | 'round' | 'space' | 'stretch' | string | number;
3470
+ export type BorderImageOutsetProperty<TLength> = Globals | TLength | string | number;
3471
+ export type BorderImageRepeatProperty = Globals | 'repeat' | 'round' | 'space' | 'stretch' | string;
3472
+ export type BorderImageSliceProperty = Globals | string | number;
3473
+ export type BorderImageSourceProperty = Globals | 'none' | string;
3474
+ export type BorderImageWidthProperty<TLength> = Globals | TLength | 'auto' | string | number;
3475
+ export type BorderInlineProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3476
+ export type BorderInlineColorProperty = Globals | Color | string;
3477
+ export type BorderInlineEndProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3478
+ export type BorderInlineEndColorProperty = Globals | Color;
3479
+ export type BorderInlineEndStyleProperty = Globals | LineStyle;
3480
+ export type BorderInlineEndWidthProperty<TLength> = Globals | LineWidth<TLength>;
3481
+ export type BorderInlineStartProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3482
+ export type BorderInlineStartColorProperty = Globals | Color;
3483
+ export type BorderInlineStartStyleProperty = Globals | LineStyle;
3484
+ export type BorderInlineStartWidthProperty<TLength> = Globals | LineWidth<TLength>;
3485
+ export type BorderInlineStyleProperty = Globals | LineStyle;
3486
+ export type BorderInlineWidthProperty<TLength> = Globals | LineWidth<TLength>;
3487
+ export type BorderLeftProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3488
+ export type BorderLeftColorProperty = Globals | Color;
3489
+ export type BorderLeftStyleProperty = Globals | LineStyle;
3490
+ export type BorderLeftWidthProperty<TLength> = Globals | LineWidth<TLength>;
3491
+ export type BorderRadiusProperty<TLength> = Globals | TLength | string;
3492
+ export type BorderRightProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3493
+ export type BorderRightColorProperty = Globals | Color;
3494
+ export type BorderRightStyleProperty = Globals | LineStyle;
3495
+ export type BorderRightWidthProperty<TLength> = Globals | LineWidth<TLength>;
3496
+ export type BorderSpacingProperty<TLength> = Globals | TLength | string;
3497
+ export type BorderStartEndRadiusProperty<TLength> = Globals | TLength | string;
3498
+ export type BorderStartStartRadiusProperty<TLength> = Globals | TLength | string;
3499
+ export type BorderStyleProperty = Globals | LineStyle | string;
3500
+ export type BorderTopProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3501
+ export type BorderTopColorProperty = Globals | Color;
3502
+ export type BorderTopLeftRadiusProperty<TLength> = Globals | TLength | string;
3503
+ export type BorderTopRightRadiusProperty<TLength> = Globals | TLength | string;
3504
+ export type BorderTopStyleProperty = Globals | LineStyle;
3505
+ export type BorderTopWidthProperty<TLength> = Globals | LineWidth<TLength>;
3506
+ export type BorderWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
3507
+ export type BottomProperty<TLength> = Globals | TLength | 'auto' | string;
3508
+ export type BoxAlignProperty = Globals | 'baseline' | 'center' | 'end' | 'start' | 'stretch';
3509
+ export type BoxDecorationBreakProperty = Globals | 'clone' | 'slice';
3510
+ export type BoxDirectionProperty = Globals | 'inherit' | 'normal' | 'reverse';
3511
+ export type BoxLinesProperty = Globals | 'multiple' | 'single';
3512
+ export type BoxOrientProperty = Globals | 'block-axis' | 'horizontal' | 'inherit' | 'inline-axis' | 'vertical';
3513
+ export type BoxPackProperty = Globals | 'center' | 'end' | 'justify' | 'start';
3514
+ export type BoxShadowProperty = Globals | 'none' | string;
3515
+ export type BoxSizingProperty = Globals | 'border-box' | 'content-box';
3516
+ export type BreakAfterProperty = Globals | 'all' | 'always' | 'auto' | 'avoid' | 'avoid-column' | 'avoid-page' | 'avoid-region' | 'column' | 'left' | 'page' | 'recto' | 'region' | 'right' | 'verso';
3517
+ export type BreakBeforeProperty = Globals | 'all' | 'always' | 'auto' | 'avoid' | 'avoid-column' | 'avoid-page' | 'avoid-region' | 'column' | 'left' | 'page' | 'recto' | 'region' | 'right' | 'verso';
3518
+ export type BreakInsideProperty = Globals | 'auto' | 'avoid' | 'avoid-column' | 'avoid-page' | 'avoid-region';
3519
+ export type CaptionSideProperty = Globals | 'block-end' | 'block-start' | 'bottom' | 'inline-end' | 'inline-start' | 'top';
3520
+ export type CaretColorProperty = Globals | Color | 'auto';
3521
+ export type ClearProperty = Globals | 'both' | 'inline-end' | 'inline-start' | 'left' | 'none' | 'right';
3522
+ export type ClipProperty = Globals | 'auto' | string;
3523
+ export type ClipPathProperty = Globals | GeometryBox | 'none' | string;
3524
+ export type ColorProperty = Globals | Color;
3525
+ export type ColorAdjustProperty = Globals | 'economy' | 'exact';
3526
+ export type ColumnCountProperty = Globals | 'auto' | number;
3527
+ export type ColumnFillProperty = Globals | 'auto' | 'balance' | 'balance-all';
3528
+ export type ColumnGapProperty<TLength> = Globals | TLength | 'normal' | string;
3529
+ export type ColumnRuleProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3530
+ export type ColumnRuleColorProperty = Globals | Color;
3531
+ export type ColumnRuleStyleProperty = Globals | LineStyle | string;
3532
+ export type ColumnRuleWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
3533
+ export type ColumnSpanProperty = Globals | 'all' | 'none';
3534
+ export type ColumnWidthProperty<TLength> = Globals | TLength | 'auto';
3535
+ export type ColumnsProperty<TLength> = Globals | TLength | 'auto' | string | number;
3536
+ export type ContainProperty = Globals | 'content' | 'layout' | 'none' | 'paint' | 'size' | 'strict' | 'style' | string;
3537
+ export type ContentProperty = Globals | ContentList | 'none' | 'normal' | string;
3538
+ export type CounterIncrementProperty = Globals | 'none' | string;
3539
+ export type CounterResetProperty = Globals | 'none' | string;
3540
+ export type CounterSetProperty = Globals | 'none' | string;
3541
+ export type CursorProperty = Globals | '-moz-grab' | '-webkit-grab' | 'alias' | 'all-scroll' | 'auto' | 'cell' | 'col-resize' | 'context-menu' | 'copy' | 'crosshair' | 'default' | 'e-resize' | 'ew-resize' | 'grab' | 'grabbing' | 'help' | 'move' | 'n-resize' | 'ne-resize' | 'nesw-resize' | 'no-drop' | 'none' | 'not-allowed' | 'ns-resize' | 'nw-resize' | 'nwse-resize' | 'pointer' | 'progress' | 'row-resize' | 's-resize' | 'se-resize' | 'sw-resize' | 'text' | 'vertical-text' | 'w-resize' | 'wait' | 'zoom-in' | 'zoom-out' | string;
3542
+ export type DirectionProperty = Globals | 'ltr' | 'rtl';
3543
+ export type DisplayProperty = Globals | DisplayOutside | DisplayInside | DisplayInternal | DisplayLegacy | 'contents' | 'list-item' | 'none';
3544
+ export type EmptyCellsProperty = Globals | 'hide' | 'show';
3545
+ export type FilterProperty = Globals | 'none' | string;
3546
+ export type FlexProperty<TLength> = Globals | TLength | 'auto' | 'available' | 'content' | 'fit-content' | 'max-content' | 'min-content' | 'none' | string | number;
3547
+ export type FlexBasisProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | '-webkit-auto' | 'auto' | 'available' | 'content' | 'fit-content' | 'max-content' | 'min-content' | string;
3548
+ export type FlexDirectionProperty = Globals | 'column' | 'column-reverse' | 'row' | 'row-reverse';
3549
+ export type FlexFlowProperty = Globals | 'column' | 'column-reverse' | 'nowrap' | 'row' | 'row-reverse' | 'wrap' | 'wrap-reverse' | string;
3550
+ export type FlexWrapProperty = Globals | 'nowrap' | 'wrap' | 'wrap-reverse';
3551
+ export type FloatProperty = Globals | 'inline-end' | 'inline-start' | 'left' | 'none' | 'right';
3552
+ export type FontProperty = Globals | 'caption' | 'icon' | 'menu' | 'message-box' | 'small-caption' | 'status-bar' | string;
3553
+ export type FontFamilyProperty = Globals | GenericFamily | string;
3554
+ export type FontFeatureSettingsProperty = Globals | 'normal' | string;
3555
+ export type FontKerningProperty = Globals | 'auto' | 'none' | 'normal';
3556
+ export type FontLanguageOverrideProperty = Globals | 'normal' | string;
3557
+ export type FontOpticalSizingProperty = Globals | 'auto' | 'none';
3558
+ export type FontSizeProperty<TLength> = Globals | AbsoluteSize | TLength | 'larger' | 'smaller' | string;
3559
+ export type FontSizeAdjustProperty = Globals | 'none' | number;
3560
+ export type FontStretchProperty = Globals | FontStretchAbsolute;
3561
+ export type FontStyleProperty = Globals | 'italic' | 'normal' | 'oblique' | string;
3562
+ export type FontSynthesisProperty = Globals | 'none' | 'style' | 'weight' | string;
3563
+ export type FontVariantProperty = Globals | EastAsianVariantValues | 'all-petite-caps' | 'all-small-caps' | 'common-ligatures' | 'contextual' | 'diagonal-fractions' | 'discretionary-ligatures' | 'full-width' | 'historical-forms' | 'historical-ligatures' | 'lining-nums' | 'no-common-ligatures' | 'no-contextual' | 'no-discretionary-ligatures' | 'no-historical-ligatures' | 'none' | 'normal' | 'oldstyle-nums' | 'ordinal' | 'petite-caps' | 'proportional-nums' | 'proportional-width' | 'ruby' | 'slashed-zero' | 'small-caps' | 'stacked-fractions' | 'tabular-nums' | 'titling-caps' | 'unicase' | string;
3564
+ export type FontVariantAlternatesProperty = Globals | 'historical-forms' | 'normal' | string;
3565
+ export type FontVariantCapsProperty = Globals | 'all-petite-caps' | 'all-small-caps' | 'normal' | 'petite-caps' | 'small-caps' | 'titling-caps' | 'unicase';
3566
+ export type FontVariantEastAsianProperty = Globals | EastAsianVariantValues | 'full-width' | 'normal' | 'proportional-width' | 'ruby' | string;
3567
+ export type FontVariantLigaturesProperty = Globals | 'common-ligatures' | 'contextual' | 'discretionary-ligatures' | 'historical-ligatures' | 'no-common-ligatures' | 'no-contextual' | 'no-discretionary-ligatures' | 'no-historical-ligatures' | 'none' | 'normal' | string;
3568
+ export type FontVariantNumericProperty = Globals | 'diagonal-fractions' | 'lining-nums' | 'normal' | 'oldstyle-nums' | 'ordinal' | 'proportional-nums' | 'slashed-zero' | 'stacked-fractions' | 'tabular-nums' | string;
3569
+ export type FontVariantPositionProperty = Globals | 'normal' | 'sub' | 'super';
3570
+ export type FontVariationSettingsProperty = Globals | 'normal' | string;
3571
+ export type FontWeightProperty = Globals | FontWeightAbsolute | 'bolder' | 'lighter';
3572
+ export type GapProperty<TLength> = Globals | TLength | 'normal' | string;
3573
+ export type GridProperty = Globals | 'none' | string;
3574
+ export type GridAreaProperty = Globals | GridLine | string;
3575
+ export type GridAutoColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | string;
3576
+ export type GridAutoFlowProperty = Globals | 'column' | 'dense' | 'row' | string;
3577
+ export type GridAutoRowsProperty<TLength> = Globals | TrackBreadth<TLength> | string;
3578
+ export type GridColumnProperty = Globals | GridLine | string;
3579
+ export type GridColumnEndProperty = Globals | GridLine;
3580
+ export type GridColumnGapProperty<TLength> = Globals | TLength | string;
3581
+ export type GridColumnStartProperty = Globals | GridLine;
3582
+ export type GridGapProperty<TLength> = Globals | TLength | string;
3583
+ export type GridRowProperty = Globals | GridLine | string;
3584
+ export type GridRowEndProperty = Globals | GridLine;
3585
+ export type GridRowGapProperty<TLength> = Globals | TLength | string;
3586
+ export type GridRowStartProperty = Globals | GridLine;
3587
+ export type GridTemplateProperty = Globals | 'none' | string;
3588
+ export type GridTemplateAreasProperty = Globals | 'none' | string;
3589
+ export type GridTemplateColumnsProperty<TLength> = Globals | TrackBreadth<TLength> | 'none' | string;
3590
+ export type GridTemplateRowsProperty<TLength> = Globals | TrackBreadth<TLength> | 'none' | string;
3591
+ export type HangingPunctuationProperty = Globals | 'allow-end' | 'first' | 'force-end' | 'last' | 'none' | string;
3592
+ export type HeightProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | 'auto' | 'available' | 'fit-content' | 'max-content' | 'min-content' | string;
3593
+ export type HyphensProperty = Globals | 'auto' | 'manual' | 'none';
3594
+ export type ImageOrientationProperty = Globals | 'flip' | 'from-image' | string;
3595
+ export type ImageRenderingProperty = Globals | '-moz-crisp-edges' | '-o-crisp-edges' | '-webkit-optimize-contrast' | 'auto' | 'crisp-edges' | 'pixelated';
3596
+ export type ImageResolutionProperty = Globals | 'from-image' | string;
3597
+ export type ImeModeProperty = Globals | 'active' | 'auto' | 'disabled' | 'inactive' | 'normal';
3598
+ export type InitialLetterProperty = Globals | 'normal' | string | number;
3599
+ export type InlineSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'auto' | 'available' | 'fit-content' | 'max-content' | 'min-content' | string;
3600
+ export type InsetProperty<TLength> = Globals | TLength | 'auto' | string;
3601
+ export type InsetBlockProperty<TLength> = Globals | TLength | 'auto' | string;
3602
+ export type InsetBlockEndProperty<TLength> = Globals | TLength | 'auto' | string;
3603
+ export type InsetBlockStartProperty<TLength> = Globals | TLength | 'auto' | string;
3604
+ export type InsetInlineProperty<TLength> = Globals | TLength | 'auto' | string;
3605
+ export type InsetInlineEndProperty<TLength> = Globals | TLength | 'auto' | string;
3606
+ export type InsetInlineStartProperty<TLength> = Globals | TLength | 'auto' | string;
3607
+ export type IsolationProperty = Globals | 'auto' | 'isolate';
3608
+ export type JustifyContentProperty = Globals | ContentDistribution | ContentPosition | 'left' | 'normal' | 'right' | string;
3609
+ export type JustifyItemsProperty = Globals | SelfPosition | 'baseline' | 'left' | 'legacy' | 'normal' | 'right' | 'stretch' | string;
3610
+ export type JustifySelfProperty = Globals | SelfPosition | 'auto' | 'baseline' | 'left' | 'normal' | 'right' | 'stretch' | string;
3611
+ export type LeftProperty<TLength> = Globals | TLength | 'auto' | string;
3612
+ export type LetterSpacingProperty<TLength> = Globals | TLength | 'normal';
3613
+ export type LineBreakProperty = Globals | 'auto' | 'loose' | 'normal' | 'strict';
3614
+ export type LineClampProperty = Globals | 'none' | number;
3615
+ export type LineHeightProperty<TLength> = Globals | TLength | 'normal' | string | number;
3616
+ export type LineHeightStepProperty<TLength> = Globals | TLength;
3617
+ export type ListStyleProperty = Globals | 'inside' | 'none' | 'outside' | string;
3618
+ export type ListStyleImageProperty = Globals | 'none' | string;
3619
+ export type ListStylePositionProperty = Globals | 'inside' | 'outside';
3620
+ export type ListStyleTypeProperty = Globals | 'none' | string;
3621
+ export type MarginProperty<TLength> = Globals | TLength | 'auto' | string;
3622
+ export type MarginBlockProperty<TLength> = Globals | TLength | 'auto' | string;
3623
+ export type MarginBlockEndProperty<TLength> = Globals | TLength | 'auto' | string;
3624
+ export type MarginBlockStartProperty<TLength> = Globals | TLength | 'auto' | string;
3625
+ export type MarginBottomProperty<TLength> = Globals | TLength | 'auto' | string;
3626
+ export type MarginInlineProperty<TLength> = Globals | TLength | 'auto' | string;
3627
+ export type MarginInlineEndProperty<TLength> = Globals | TLength | 'auto' | string;
3628
+ export type MarginInlineStartProperty<TLength> = Globals | TLength | 'auto' | string;
3629
+ export type MarginLeftProperty<TLength> = Globals | TLength | 'auto' | string;
3630
+ export type MarginRightProperty<TLength> = Globals | TLength | 'auto' | string;
3631
+ export type MarginTopProperty<TLength> = Globals | TLength | 'auto' | string;
3632
+ export type MaskProperty<TLength> = Globals | MaskLayer<TLength> | string;
3633
+ export type MaskBorderProperty = Globals | 'alpha' | 'luminance' | 'none' | 'repeat' | 'round' | 'space' | 'stretch' | string | number;
3634
+ export type MaskBorderModeProperty = Globals | 'alpha' | 'luminance';
3635
+ export type MaskBorderOutsetProperty<TLength> = Globals | TLength | string | number;
3636
+ export type MaskBorderRepeatProperty = Globals | 'repeat' | 'round' | 'space' | 'stretch' | string;
3637
+ export type MaskBorderSliceProperty = Globals | string | number;
3638
+ export type MaskBorderSourceProperty = Globals | 'none' | string;
3639
+ export type MaskBorderWidthProperty<TLength> = Globals | TLength | 'auto' | string | number;
3640
+ export type MaskClipProperty = Globals | GeometryBox | 'no-clip' | string;
3641
+ export type MaskCompositeProperty = Globals | CompositingOperator | string;
3642
+ export type MaskImageProperty = Globals | 'none' | string;
3643
+ export type MaskModeProperty = Globals | MaskingMode | string;
3644
+ export type MaskOriginProperty = Globals | GeometryBox | string;
3645
+ export type MaskPositionProperty<TLength> = Globals | Position<TLength> | string;
3646
+ export type MaskRepeatProperty = Globals | RepeatStyle | string;
3647
+ export type MaskSizeProperty<TLength> = Globals | BgSize<TLength> | string;
3648
+ export type MaskTypeProperty = Globals | 'alpha' | 'luminance';
3649
+ export type MaxBlockSizeProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | 'none' | string;
3650
+ export type MaxHeightProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fit-content' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'none' | string;
3651
+ export type MaxInlineSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | 'none' | string;
3652
+ export type MaxLinesProperty = Globals | 'none' | number;
3653
+ export type MaxWidthProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fit-content' | '-webkit-max-content' | '-webkit-min-content' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'none' | string;
3654
+ export type MinBlockSizeProperty<TLength> = Globals | TLength | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | 'auto' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | string;
3655
+ export type MinHeightProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fit-content' | 'auto' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | string;
3656
+ export type MinInlineSizeProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | '-webkit-max-content' | '-webkit-min-content' | 'auto' | 'fill-available' | 'fit-content' | 'max-content' | 'min-content' | string;
3657
+ export type MinWidthProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | '-webkit-fit-content' | '-webkit-max-content' | '-webkit-min-content' | 'auto' | 'fill-available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'min-intrinsic' | string;
3658
+ export type MixBlendModeProperty = Globals | BlendMode;
3659
+ export type OffsetProperty<TLength> = Globals | Position<TLength> | GeometryBox | 'auto' | 'none' | string;
3660
+ export type OffsetDistanceProperty<TLength> = Globals | TLength | string;
3661
+ export type OffsetPathProperty = Globals | GeometryBox | 'none' | string;
3662
+ export type OffsetRotateProperty = Globals | 'auto' | 'reverse' | string;
3663
+ export type ObjectFitProperty = Globals | 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
3664
+ export type ObjectPositionProperty<TLength> = Globals | Position<TLength>;
3665
+ export type OffsetAnchorProperty<TLength> = Globals | Position<TLength> | 'auto';
3666
+ export type OffsetPositionProperty<TLength> = Globals | Position<TLength> | 'auto';
3667
+ export type OutlineProperty<TLength> = Globals | Color | LineStyle | LineWidth<TLength> | 'auto' | 'invert' | string;
3668
+ export type OutlineColorProperty = Globals | Color | 'invert';
3669
+ export type OutlineOffsetProperty<TLength> = Globals | TLength;
3670
+ export type OutlineStyleProperty = Globals | LineStyle | 'auto' | string;
3671
+ export type OutlineWidthProperty<TLength> = Globals | LineWidth<TLength>;
3672
+ export type OverflowProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible' | string;
3673
+ export type OverflowAnchorProperty = Globals | 'auto' | 'none';
3674
+ export type OverflowBlockProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3675
+ export type OverflowClipBoxProperty = Globals | 'content-box' | 'padding-box';
3676
+ export type OverflowInlineProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3677
+ export type OverflowWrapProperty = Globals | 'anywhere' | 'break-word' | 'normal';
3678
+ export type OverflowXProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3679
+ export type OverflowYProperty = Globals | 'auto' | 'clip' | 'hidden' | 'scroll' | 'visible';
3680
+ export type OverscrollBehaviorProperty = Globals | 'auto' | 'contain' | 'none' | string;
3681
+ export type OverscrollBehaviorXProperty = Globals | 'auto' | 'contain' | 'none';
3682
+ export type OverscrollBehaviorYProperty = Globals | 'auto' | 'contain' | 'none';
3683
+ export type PaddingProperty<TLength> = Globals | TLength | string;
3684
+ export type PaddingBlockProperty<TLength> = Globals | TLength | string;
3685
+ export type PaddingBlockEndProperty<TLength> = Globals | TLength | string;
3686
+ export type PaddingBlockStartProperty<TLength> = Globals | TLength | string;
3687
+ export type PaddingBottomProperty<TLength> = Globals | TLength | string;
3688
+ export type PaddingInlineProperty<TLength> = Globals | TLength | string;
3689
+ export type PaddingInlineEndProperty<TLength> = Globals | TLength | string;
3690
+ export type PaddingInlineStartProperty<TLength> = Globals | TLength | string;
3691
+ export type PaddingLeftProperty<TLength> = Globals | TLength | string;
3692
+ export type PaddingRightProperty<TLength> = Globals | TLength | string;
3693
+ export type PaddingTopProperty<TLength> = Globals | TLength | string;
3694
+ export type PageBreakAfterProperty = Globals | 'always' | 'auto' | 'avoid' | 'left' | 'recto' | 'right' | 'verso';
3695
+ export type PageBreakBeforeProperty = Globals | 'always' | 'auto' | 'avoid' | 'left' | 'recto' | 'right' | 'verso';
3696
+ export type PageBreakInsideProperty = Globals | 'auto' | 'avoid';
3697
+ export type PaintOrderProperty = Globals | 'fill' | 'markers' | 'normal' | 'stroke' | string;
3698
+ export type PerspectiveProperty<TLength> = Globals | TLength | 'none';
3699
+ export type PerspectiveOriginProperty<TLength> = Globals | Position<TLength>;
3700
+ export type PlaceContentProperty = Globals | ContentDistribution | ContentPosition | 'baseline' | 'normal' | string;
3701
+ export type PlaceItemsProperty = Globals | SelfPosition | 'baseline' | 'normal' | 'stretch' | string;
3702
+ export type PlaceSelfProperty = Globals | SelfPosition | 'auto' | 'baseline' | 'normal' | 'stretch' | string;
3703
+ export type PointerEventsProperty = Globals | 'all' | 'auto' | 'fill' | 'inherit' | 'none' | 'painted' | 'stroke' | 'visible' | 'visibleFill' | 'visiblePainted' | 'visibleStroke';
3704
+ export type PositionProperty = Globals | '-webkit-sticky' | 'absolute' | 'fixed' | 'relative' | 'static' | 'sticky';
3705
+ export type QuotesProperty = Globals | 'none' | string;
3706
+ export type ResizeProperty = Globals | 'block' | 'both' | 'horizontal' | 'inline' | 'none' | 'vertical';
3707
+ export type RightProperty<TLength> = Globals | TLength | 'auto' | string;
3708
+ export type RotateProperty = Globals | 'none' | string;
3709
+ export type RowGapProperty<TLength> = Globals | TLength | 'normal' | string;
3710
+ export type RubyAlignProperty = Globals | 'center' | 'space-around' | 'space-between' | 'start';
3711
+ export type RubyMergeProperty = Globals | 'auto' | 'collapse' | 'separate';
3712
+ export type RubyPositionProperty = Globals | 'over' | 'under';
3713
+ export type ScaleProperty = Globals | 'none' | string | number;
3714
+ export type ScrollBehaviorProperty = Globals | 'auto' | 'smooth';
3715
+ export type ScrollMarginProperty<TLength> = Globals | TLength | string;
3716
+ export type ScrollMarginBlockProperty<TLength> = Globals | TLength | string;
3717
+ export type ScrollMarginBlockEndProperty<TLength> = Globals | TLength;
3718
+ export type ScrollMarginBlockStartProperty<TLength> = Globals | TLength;
3719
+ export type ScrollMarginBottomProperty<TLength> = Globals | TLength;
3720
+ export type ScrollMarginInlineProperty<TLength> = Globals | TLength | string;
3721
+ export type ScrollMarginInlineEndProperty<TLength> = Globals | TLength;
3722
+ export type ScrollMarginInlineStartProperty<TLength> = Globals | TLength;
3723
+ export type ScrollMarginLeftProperty<TLength> = Globals | TLength;
3724
+ export type ScrollMarginRightProperty<TLength> = Globals | TLength;
3725
+ export type ScrollMarginTopProperty<TLength> = Globals | TLength;
3726
+ export type ScrollPaddingProperty<TLength> = Globals | TLength | 'auto' | string;
3727
+ export type ScrollPaddingBlockProperty<TLength> = Globals | TLength | 'auto' | string;
3728
+ export type ScrollPaddingBlockEndProperty<TLength> = Globals | TLength | 'auto' | string;
3729
+ export type ScrollPaddingBlockStartProperty<TLength> = Globals | TLength | 'auto' | string;
3730
+ export type ScrollPaddingBottomProperty<TLength> = Globals | TLength | 'auto' | string;
3731
+ export type ScrollPaddingInlineProperty<TLength> = Globals | TLength | 'auto' | string;
3732
+ export type ScrollPaddingInlineEndProperty<TLength> = Globals | TLength | 'auto' | string;
3733
+ export type ScrollPaddingInlineStartProperty<TLength> = Globals | TLength | 'auto' | string;
3734
+ export type ScrollPaddingLeftProperty<TLength> = Globals | TLength | 'auto' | string;
3735
+ export type ScrollPaddingRightProperty<TLength> = Globals | TLength | 'auto' | string;
3736
+ export type ScrollPaddingTopProperty<TLength> = Globals | TLength | 'auto' | string;
3737
+ export type ScrollSnapAlignProperty = Globals | 'center' | 'end' | 'none' | 'start' | string;
3738
+ export type ScrollSnapCoordinateProperty<TLength> = Globals | Position<TLength> | 'none' | string;
3739
+ export type ScrollSnapDestinationProperty<TLength> = Globals | Position<TLength>;
3740
+ export type ScrollSnapPointsXProperty = Globals | 'none' | string;
3741
+ export type ScrollSnapPointsYProperty = Globals | 'none' | string;
3742
+ export type ScrollSnapStopProperty = Globals | 'always' | 'normal';
3743
+ export type ScrollSnapTypeProperty = Globals | 'block' | 'both' | 'inline' | 'none' | 'x' | 'y' | string;
3744
+ export type ScrollSnapTypeXProperty = Globals | 'mandatory' | 'none' | 'proximity';
3745
+ export type ScrollSnapTypeYProperty = Globals | 'mandatory' | 'none' | 'proximity';
3746
+ export type ScrollbarColorProperty = Globals | Color | 'auto' | 'dark' | 'light';
3747
+ export type ScrollbarWidthProperty = Globals | 'auto' | 'none' | 'thin';
3748
+ export type ShapeMarginProperty<TLength> = Globals | TLength | string;
3749
+ export type ShapeOutsideProperty = Globals | Box | 'margin-box' | 'none' | string;
3750
+ export type TabSizeProperty<TLength> = Globals | TLength | number;
3751
+ export type TableLayoutProperty = Globals | 'auto' | 'fixed';
3752
+ export type TextAlignProperty = Globals | 'center' | 'end' | 'justify' | 'left' | 'match-parent' | 'right' | 'start';
3753
+ export type TextAlignLastProperty = Globals | 'auto' | 'center' | 'end' | 'justify' | 'left' | 'right' | 'start';
3754
+ export type TextCombineUprightProperty = Globals | 'all' | 'digits' | 'none' | string;
3755
+ export type TextDecorationProperty = Globals | Color | 'blink' | 'dashed' | 'dotted' | 'double' | 'line-through' | 'none' | 'overline' | 'solid' | 'underline' | 'wavy' | string;
3756
+ export type TextDecorationColorProperty = Globals | Color;
3757
+ export type TextDecorationLineProperty = Globals | 'blink' | 'line-through' | 'none' | 'overline' | 'underline' | string;
3758
+ export type TextDecorationSkipProperty = Globals | 'box-decoration' | 'edges' | 'leading-spaces' | 'none' | 'objects' | 'spaces' | 'trailing-spaces' | string;
3759
+ export type TextDecorationSkipInkProperty = Globals | 'auto' | 'none';
3760
+ export type TextDecorationStyleProperty = Globals | 'dashed' | 'dotted' | 'double' | 'solid' | 'wavy';
3761
+ export type TextEmphasisProperty = Globals | Color | 'circle' | 'dot' | 'double-circle' | 'filled' | 'none' | 'open' | 'sesame' | 'triangle' | string;
3762
+ export type TextEmphasisColorProperty = Globals | Color;
3763
+ export type TextEmphasisStyleProperty = Globals | 'circle' | 'dot' | 'double-circle' | 'filled' | 'none' | 'open' | 'sesame' | 'triangle' | string;
3764
+ export type TextIndentProperty<TLength> = Globals | TLength | string;
3765
+ export type TextJustifyProperty = Globals | 'auto' | 'inter-character' | 'inter-word' | 'none';
3766
+ export type TextOrientationProperty = Globals | 'mixed' | 'sideways' | 'upright';
3767
+ export type TextOverflowProperty = Globals | 'clip' | 'ellipsis' | string;
3768
+ export type TextRenderingProperty = Globals | 'auto' | 'geometricPrecision' | 'optimizeLegibility' | 'optimizeSpeed';
3769
+ export type TextShadowProperty = Globals | 'none' | string;
3770
+ export type TextSizeAdjustProperty = Globals | 'auto' | 'none' | string;
3771
+ export type TextTransformProperty = Globals | 'capitalize' | 'full-size-kana' | 'full-width' | 'lowercase' | 'none' | 'uppercase';
3772
+ export type TextUnderlinePositionProperty = Globals | 'auto' | 'left' | 'right' | 'under' | string;
3773
+ export type TopProperty<TLength> = Globals | TLength | 'auto' | string;
3774
+ export type TouchActionProperty = Globals | '-ms-manipulation' | '-ms-none' | '-ms-pinch-zoom' | 'auto' | 'manipulation' | 'none' | 'pan-down' | 'pan-left' | 'pan-right' | 'pan-up' | 'pan-x' | 'pan-y' | 'pinch-zoom' | string;
3775
+ export type TransformProperty = Globals | 'none' | string;
3776
+ export type TransformBoxProperty = Globals | 'border-box' | 'fill-box' | 'view-box';
3777
+ export type TransformOriginProperty<TLength> = Globals | TLength | 'bottom' | 'center' | 'left' | 'right' | 'top' | string;
3778
+ export type TransformStyleProperty = Globals | 'flat' | 'preserve-3d';
3779
+ export type TransitionProperty = Globals | SingleTransition | string;
3780
+ export type TransitionPropertyProperty = Globals | 'all' | 'none' | string;
3781
+ export type TransitionTimingFunctionProperty = Globals | TimingFunction | string;
3782
+ export type TranslateProperty<TLength> = Globals | TLength | 'none' | string;
3783
+ export type UnicodeBidiProperty = Globals | '-moz-isolate' | '-moz-isolate-override' | '-moz-plaintext' | '-webkit-isolate' | 'bidi-override' | 'embed' | 'isolate' | 'isolate-override' | 'normal' | 'plaintext';
3784
+ export type UserSelectProperty = Globals | '-moz-none' | 'all' | 'auto' | 'contain' | 'element' | 'none' | 'text';
3785
+ export type VerticalAlignProperty<TLength> = Globals | TLength | 'baseline' | 'bottom' | 'middle' | 'sub' | 'super' | 'text-bottom' | 'text-top' | 'top' | string;
3786
+ export type VisibilityProperty = Globals | 'collapse' | 'hidden' | 'visible';
3787
+ export type WhiteSpaceProperty = Globals | '-moz-pre-wrap' | 'normal' | 'nowrap' | 'pre' | 'pre-line' | 'pre-wrap';
3788
+ export type WidthProperty<TLength> = Globals | TLength | '-moz-fit-content' | '-moz-max-content' | '-moz-min-content' | '-webkit-fill-available' | '-webkit-fit-content' | '-webkit-max-content' | 'auto' | 'available' | 'fit-content' | 'intrinsic' | 'max-content' | 'min-content' | 'min-intrinsic' | string;
3789
+ export type WillChangeProperty = Globals | AnimateableFeature | 'auto' | string;
3790
+ export type WordBreakProperty = Globals | 'break-all' | 'break-word' | 'keep-all' | 'normal';
3791
+ export type WordSpacingProperty<TLength> = Globals | TLength | 'normal' | string;
3792
+ export type WordWrapProperty = Globals | 'break-word' | 'normal';
3793
+ export type WritingModeProperty = Globals | 'horizontal-tb' | 'sideways-lr' | 'sideways-rl' | 'vertical-lr' | 'vertical-rl';
3794
+ export type ZIndexProperty = Globals | 'auto' | number;
3795
+ export type ZoomProperty = Globals | 'normal' | 'reset' | string | number;
3796
+ export type MozAppearanceProperty = Globals | '-moz-mac-unified-toolbar' | '-moz-win-borderless-glass' | '-moz-win-browsertabbar-toolbox' | '-moz-win-communications-toolbox' | '-moz-win-communicationstext' | '-moz-win-exclude-glass' | '-moz-win-glass' | '-moz-win-media-toolbox' | '-moz-win-mediatext' | '-moz-window-button-box' | '-moz-window-button-box-maximized' | '-moz-window-button-close' | '-moz-window-button-maximize' | '-moz-window-button-minimize' | '-moz-window-button-restore' | '-moz-window-frame-bottom' | '-moz-window-frame-left' | '-moz-window-frame-right' | '-moz-window-titlebar' | '-moz-window-titlebar-maximized' | 'button' | 'button-arrow-down' | 'button-arrow-next' | 'button-arrow-previous' | 'button-arrow-up' | 'button-bevel' | 'button-focus' | 'caret' | 'checkbox' | 'checkbox-container' | 'checkbox-label' | 'checkmenuitem' | 'dualbutton' | 'groupbox' | 'listbox' | 'listitem' | 'menuarrow' | 'menubar' | 'menucheckbox' | 'menuimage' | 'menuitem' | 'menuitemtext' | 'menulist' | 'menulist-button' | 'menulist-text' | 'menulist-textfield' | 'menupopup' | 'menuradio' | 'menuseparator' | 'meterbar' | 'meterchunk' | 'none' | 'progressbar' | 'progressbar-vertical' | 'progresschunk' | 'progresschunk-vertical' | 'radio' | 'radio-container' | 'radio-label' | 'radiomenuitem' | 'range' | 'range-thumb' | 'resizer' | 'resizerpanel' | 'scale-horizontal' | 'scale-vertical' | 'scalethumb-horizontal' | 'scalethumb-vertical' | 'scalethumbend' | 'scalethumbstart' | 'scalethumbtick' | 'scrollbarbutton-down' | 'scrollbarbutton-left' | 'scrollbarbutton-right' | 'scrollbarbutton-up' | 'scrollbarthumb-horizontal' | 'scrollbarthumb-vertical' | 'scrollbartrack-horizontal' | 'scrollbartrack-vertical' | 'searchfield' | 'separator' | 'sheet' | 'spinner' | 'spinner-downbutton' | 'spinner-textfield' | 'spinner-upbutton' | 'splitter' | 'statusbar' | 'statusbarpanel' | 'tab' | 'tab-scroll-arrow-back' | 'tab-scroll-arrow-forward' | 'tabpanel' | 'tabpanels' | 'textfield' | 'textfield-multiline' | 'toolbar' | 'toolbarbutton' | 'toolbarbutton-dropdown' | 'toolbargripper' | 'toolbox' | 'tooltip' | 'treeheader' | 'treeheadercell' | 'treeheadersortarrow' | 'treeitem' | 'treeline' | 'treetwisty' | 'treetwistyopen' | 'treeview';
3797
+ export type MozBindingProperty = Globals | 'none' | string;
3798
+ export type MozBorderBottomColorsProperty = Globals | Color | 'none' | string;
3799
+ export type MozBorderLeftColorsProperty = Globals | Color | 'none' | string;
3800
+ export type MozBorderRightColorsProperty = Globals | Color | 'none' | string;
3801
+ export type MozBorderTopColorsProperty = Globals | Color | 'none' | string;
3802
+ export type MozContextPropertiesProperty = Globals | 'fill' | 'fill-opacity' | 'none' | 'stroke' | 'stroke-opacity' | string;
3803
+ export type MozFloatEdgeProperty = Globals | 'border-box' | 'content-box' | 'margin-box' | 'padding-box';
3804
+ export type MozImageRegionProperty = Globals | 'auto' | string;
3805
+ export type MozOrientProperty = Globals | 'block' | 'horizontal' | 'inline' | 'vertical';
3806
+ export type MozOutlineRadiusProperty<TLength> = Globals | TLength | string;
3807
+ export type MozOutlineRadiusBottomleftProperty<TLength> = Globals | TLength | string;
3808
+ export type MozOutlineRadiusBottomrightProperty<TLength> = Globals | TLength | string;
3809
+ export type MozOutlineRadiusTopleftProperty<TLength> = Globals | TLength | string;
3810
+ export type MozOutlineRadiusToprightProperty<TLength> = Globals | TLength | string;
3811
+ export type MozStackSizingProperty = Globals | 'ignore' | 'stretch-to-fit';
3812
+ export type MozTextBlinkProperty = Globals | 'blink' | 'none';
3813
+ export type MozUserFocusProperty = Globals | 'ignore' | 'none' | 'normal' | 'select-after' | 'select-all' | 'select-before' | 'select-menu' | 'select-same';
3814
+ export type MozUserInputProperty = Globals | 'auto' | 'disabled' | 'enabled' | 'none';
3815
+ export type MozUserModifyProperty = Globals | 'read-only' | 'read-write' | 'write-only';
3816
+ export type MozWindowDraggingProperty = Globals | 'drag' | 'no-drag';
3817
+ export type MozWindowShadowProperty = Globals | 'default' | 'menu' | 'none' | 'sheet' | 'tooltip';
3818
+ export type MsAcceleratorProperty = Globals | 'false' | 'true';
3819
+ export type MsBlockProgressionProperty = Globals | 'bt' | 'lr' | 'rl' | 'tb';
3820
+ export type MsContentZoomChainingProperty = Globals | 'chained' | 'none';
3821
+ export type MsContentZoomSnapProperty = Globals | 'mandatory' | 'none' | 'proximity' | string;
3822
+ export type MsContentZoomSnapTypeProperty = Globals | 'mandatory' | 'none' | 'proximity';
3823
+ export type MsContentZoomingProperty = Globals | 'none' | 'zoom';
3824
+ export type MsFlowFromProperty = Globals | 'none' | string;
3825
+ export type MsFlowIntoProperty = Globals | 'none' | string;
3826
+ export type MsHighContrastAdjustProperty = Globals | 'auto' | 'none';
3827
+ export type MsHyphenateLimitCharsProperty = Globals | 'auto' | string | number;
3828
+ export type MsHyphenateLimitLinesProperty = Globals | 'no-limit' | number;
3829
+ export type MsHyphenateLimitZoneProperty<TLength> = Globals | TLength | string;
3830
+ export type MsImeAlignProperty = Globals | 'after' | 'auto';
3831
+ export type MsOverflowStyleProperty = Globals | '-ms-autohiding-scrollbar' | 'auto' | 'none' | 'scrollbar';
3832
+ export type MsScrollChainingProperty = Globals | 'chained' | 'none';
3833
+ export type MsScrollLimitXMaxProperty<TLength> = Globals | TLength | 'auto';
3834
+ export type MsScrollLimitXMinProperty<TLength> = Globals | TLength;
3835
+ export type MsScrollLimitYMaxProperty<TLength> = Globals | TLength | 'auto';
3836
+ export type MsScrollLimitYMinProperty<TLength> = Globals | TLength;
3837
+ export type MsScrollRailsProperty = Globals | 'none' | 'railed';
3838
+ export type MsScrollSnapTypeProperty = Globals | 'mandatory' | 'none' | 'proximity';
3839
+ export type MsScrollTranslationProperty = Globals | 'none' | 'vertical-to-horizontal';
3840
+ export type MsScrollbar3dlightColorProperty = Globals | Color;
3841
+ export type MsScrollbarArrowColorProperty = Globals | Color;
3842
+ export type MsScrollbarBaseColorProperty = Globals | Color;
3843
+ export type MsScrollbarDarkshadowColorProperty = Globals | Color;
3844
+ export type MsScrollbarFaceColorProperty = Globals | Color;
3845
+ export type MsScrollbarHighlightColorProperty = Globals | Color;
3846
+ export type MsScrollbarShadowColorProperty = Globals | Color;
3847
+ export type MsScrollbarTrackColorProperty = Globals | Color;
3848
+ export type MsTextAutospaceProperty = Globals | 'ideograph-alpha' | 'ideograph-numeric' | 'ideograph-parenthesis' | 'ideograph-space' | 'none';
3849
+ export type MsTouchSelectProperty = Globals | 'grippers' | 'none';
3850
+ export type MsUserSelectProperty = Globals | 'element' | 'none' | 'text';
3851
+ export type MsWrapFlowProperty = Globals | 'auto' | 'both' | 'clear' | 'end' | 'maximum' | 'start';
3852
+ export type MsWrapMarginProperty<TLength> = Globals | TLength;
3853
+ export type MsWrapThroughProperty = Globals | 'none' | 'wrap';
3854
+ export type WebkitAppearanceProperty = Globals | 'button' | 'button-bevel' | 'caret' | 'checkbox' | 'default-button' | 'inner-spin-button' | 'listbox' | 'listitem' | 'media-controls-background' | 'media-controls-fullscreen-background' | 'media-current-time-display' | 'media-enter-fullscreen-button' | 'media-exit-fullscreen-button' | 'media-fullscreen-button' | 'media-mute-button' | 'media-overlay-play-button' | 'media-play-button' | 'media-seek-back-button' | 'media-seek-forward-button' | 'media-slider' | 'media-sliderthumb' | 'media-time-remaining-display' | 'media-toggle-closed-captions-button' | 'media-volume-slider' | 'media-volume-slider-container' | 'media-volume-sliderthumb' | 'menulist' | 'menulist-button' | 'menulist-text' | 'menulist-textfield' | 'meter' | 'none' | 'progress-bar' | 'progress-bar-value' | 'push-button' | 'radio' | 'searchfield' | 'searchfield-cancel-button' | 'searchfield-decoration' | 'searchfield-results-button' | 'searchfield-results-decoration' | 'slider-horizontal' | 'slider-vertical' | 'sliderthumb-horizontal' | 'sliderthumb-vertical' | 'square-button' | 'textarea' | 'textfield';
3855
+ export type WebkitBorderBeforeProperty<TLength> = Globals | LineWidth<TLength> | LineStyle | Color | string;
3856
+ export type WebkitBorderBeforeColorProperty = Globals | Color;
3857
+ export type WebkitBorderBeforeStyleProperty = Globals | LineStyle | string;
3858
+ export type WebkitBorderBeforeWidthProperty<TLength> = Globals | LineWidth<TLength> | string;
3859
+ export type WebkitBoxReflectProperty<TLength> = Globals | TLength | 'above' | 'below' | 'left' | 'right' | string;
3860
+ export type WebkitLineClampProperty = Globals | 'none' | number;
3861
+ export type WebkitMaskProperty<TLength> = Globals | Position<TLength> | RepeatStyle | Box | 'border' | 'content' | 'none' | 'padding' | 'text' | string;
3862
+ export type WebkitMaskAttachmentProperty = Globals | Attachment | string;
3863
+ export type WebkitMaskClipProperty = Globals | Box | 'border' | 'content' | 'padding' | 'text' | string;
3864
+ export type WebkitMaskCompositeProperty = Globals | CompositeStyle | string;
3865
+ export type WebkitMaskImageProperty = Globals | 'none' | string;
3866
+ export type WebkitMaskOriginProperty = Globals | Box | 'border' | 'content' | 'padding' | string;
3867
+ export type WebkitMaskPositionProperty<TLength> = Globals | Position<TLength> | string;
3868
+ export type WebkitMaskPositionXProperty<TLength> = Globals | TLength | 'center' | 'left' | 'right' | string;
3869
+ export type WebkitMaskPositionYProperty<TLength> = Globals | TLength | 'bottom' | 'center' | 'top' | string;
3870
+ export type WebkitMaskRepeatProperty = Globals | RepeatStyle | string;
3871
+ export type WebkitMaskRepeatXProperty = Globals | 'no-repeat' | 'repeat' | 'round' | 'space';
3872
+ export type WebkitMaskRepeatYProperty = Globals | 'no-repeat' | 'repeat' | 'round' | 'space';
3873
+ export type WebkitMaskSizeProperty<TLength> = Globals | BgSize<TLength> | string;
3874
+ export type WebkitOverflowScrollingProperty = Globals | 'auto' | 'touch';
3875
+ export type WebkitTapHighlightColorProperty = Globals | Color;
3876
+ export type WebkitTextFillColorProperty = Globals | Color;
3877
+ export type WebkitTextStrokeProperty<TLength> = Globals | Color | TLength | string;
3878
+ export type WebkitTextStrokeColorProperty = Globals | Color;
3879
+ export type WebkitTextStrokeWidthProperty<TLength> = Globals | TLength;
3880
+ export type WebkitTouchCalloutProperty = Globals | 'default' | 'none';
3881
+ export type WebkitUserModifyProperty = Globals | 'read-only' | 'read-write' | 'read-write-plaintext-only';
3882
+ export type AlignmentBaselineProperty = Globals | 'after-edge' | 'alphabetic' | 'auto' | 'baseline' | 'before-edge' | 'central' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'text-after-edge' | 'text-before-edge';
3883
+ export type BaselineShiftProperty<TLength> = Globals | TLength | 'baseline' | 'sub' | 'super' | string;
3884
+ export type ClipRuleProperty = Globals | 'evenodd' | 'nonzero';
3885
+ export type ColorInterpolationProperty = Globals | 'auto' | 'linearRGB' | 'sRGB';
3886
+ export type ColorRenderingProperty = Globals | 'auto' | 'optimizeQuality' | 'optimizeSpeed';
3887
+ export type DominantBaselineProperty = Globals | 'alphabetic' | 'auto' | 'central' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'no-change' | 'reset-size' | 'text-after-edge' | 'text-before-edge' | 'use-script';
3888
+ export type FillProperty = Globals | Paint;
3889
+ export type FillRuleProperty = Globals | 'evenodd' | 'nonzero';
3890
+ export type FloodColorProperty = Globals | Color | 'currentColor';
3891
+ export type GlyphOrientationVerticalProperty = Globals | 'auto' | string | number;
3892
+ export type LightingColorProperty = Globals | Color | 'currentColor';
3893
+ export type MarkerProperty = Globals | 'none' | string;
3894
+ export type MarkerEndProperty = Globals | 'none' | string;
3895
+ export type MarkerMidProperty = Globals | 'none' | string;
3896
+ export type MarkerStartProperty = Globals | 'none' | string;
3897
+ export type ShapeRenderingProperty = Globals | 'auto' | 'crispEdges' | 'geometricPrecision' | 'optimizeSpeed';
3898
+ export type StopColorProperty = Globals | Color | 'currentColor';
3899
+ export type StrokeProperty = Globals | Paint;
3900
+ export type StrokeDasharrayProperty<TLength> = Globals | Dasharray<TLength> | 'none';
3901
+ export type StrokeDashoffsetProperty<TLength> = Globals | TLength | string;
3902
+ export type StrokeLinecapProperty = Globals | 'butt' | 'round' | 'square';
3903
+ export type StrokeLinejoinProperty = Globals | 'bevel' | 'miter' | 'round';
3904
+ export type StrokeWidthProperty<TLength> = Globals | TLength | string;
3905
+ export type TextAnchorProperty = Globals | 'end' | 'middle' | 'start';
3906
+ export type VectorEffectProperty = Globals | 'non-scaling-stroke' | 'none';
3907
+ type CounterStyleRangeProperty = 'auto' | 'infinite' | string | number;
3908
+ type CounterStyleSpeakAsProperty = 'auto' | 'bullets' | 'numbers' | 'spell-out' | 'words' | string;
3909
+ type CounterStyleSystemProperty = 'additive' | 'alphabetic' | 'cyclic' | 'fixed' | 'numeric' | 'symbolic' | string;
3910
+ type FontFaceFontFeatureSettingsProperty = 'normal' | string;
3911
+ type FontFaceFontDisplayProperty = 'auto' | 'block' | 'fallback' | 'optional' | 'swap';
3912
+ type FontFaceFontStretchProperty = FontStretchAbsolute | string;
3913
+ type FontFaceFontStyleProperty = 'italic' | 'normal' | 'oblique' | string;
3914
+ type FontFaceFontVariantProperty = EastAsianVariantValues | 'all-petite-caps' | 'all-small-caps' | 'common-ligatures' | 'contextual' | 'diagonal-fractions' | 'discretionary-ligatures' | 'full-width' | 'historical-forms' | 'historical-ligatures' | 'lining-nums' | 'no-common-ligatures' | 'no-contextual' | 'no-discretionary-ligatures' | 'no-historical-ligatures' | 'none' | 'normal' | 'oldstyle-nums' | 'ordinal' | 'petite-caps' | 'proportional-nums' | 'proportional-width' | 'ruby' | 'slashed-zero' | 'small-caps' | 'stacked-fractions' | 'tabular-nums' | 'titling-caps' | 'unicase' | string;
3915
+ type FontFaceFontVariationSettingsProperty = 'normal' | string;
3916
+ type FontFaceFontWeightProperty = FontWeightAbsolute | string;
3917
+ type PageBleedProperty<TLength> = TLength | 'auto';
3918
+ type PageMarksProperty = 'crop' | 'cross' | 'none' | string;
3919
+ type ViewportHeightProperty<TLength> = ViewportLength<TLength> | string;
3920
+ type ViewportMaxHeightProperty<TLength> = ViewportLength<TLength>;
3921
+ type ViewportMaxWidthProperty<TLength> = ViewportLength<TLength>;
3922
+ type ViewportMaxZoomProperty = 'auto' | string | number;
3923
+ type ViewportMinHeightProperty<TLength> = ViewportLength<TLength>;
3924
+ type ViewportMinWidthProperty<TLength> = ViewportLength<TLength>;
3925
+ type ViewportMinZoomProperty = 'auto' | string | number;
3926
+ type ViewportOrientationProperty = 'auto' | 'landscape' | 'portrait';
3927
+ type ViewportUserZoomProperty = '-ms-zoom' | 'fixed' | 'zoom';
3928
+ type ViewportWidthProperty<TLength> = ViewportLength<TLength> | string;
3929
+ type ViewportZoomProperty = 'auto' | string | number;
3930
+ type AbsoluteSize = 'large' | 'medium' | 'small' | 'x-large' | 'x-small' | 'xx-large' | 'xx-small';
3931
+ type AnimateableFeature = 'contents' | 'scroll-position' | string;
3932
+ type Attachment = 'fixed' | 'local' | 'scroll';
3933
+ type BgPosition<TLength> = TLength | 'bottom' | 'center' | 'left' | 'right' | 'top' | string;
3934
+ type BgSize<TLength> = TLength | 'auto' | 'contain' | 'cover' | string;
3935
+ type BlendMode = 'color' | 'color-burn' | 'color-dodge' | 'darken' | 'difference' | 'exclusion' | 'hard-light' | 'hue' | 'lighten' | 'luminosity' | 'multiply' | 'normal' | 'overlay' | 'saturation' | 'screen' | 'soft-light';
3936
+ type Box = 'border-box' | 'content-box' | 'padding-box';
3937
+ type Color = NamedColor | DeprecatedSystemColor | 'currentcolor' | string;
3938
+ type Compat = 'button-bevel' | 'checkbox' | 'listbox' | 'menulist' | 'menulist-button' | 'meter' | 'progress-bar' | 'push-button' | 'radio' | 'searchfield' | 'slider-horizontal' | 'square-button' | 'textarea';
3939
+ type CompositeStyle = 'clear' | 'copy' | 'destination-atop' | 'destination-in' | 'destination-out' | 'destination-over' | 'source-atop' | 'source-in' | 'source-out' | 'source-over' | 'xor';
3940
+ type CompositingOperator = 'add' | 'exclude' | 'intersect' | 'subtract';
3941
+ type ContentDistribution = 'space-around' | 'space-between' | 'space-evenly' | 'stretch';
3942
+ type ContentList = Quote | 'contents' | string;
3943
+ type ContentPosition = 'center' | 'end' | 'flex-end' | 'flex-start' | 'start';
3944
+ type CubicBezierTimingFunction = 'ease' | 'ease-in' | 'ease-in-out' | 'ease-out' | string;
3945
+ type Dasharray<TLength> = TLength | string | number;
3946
+ type DeprecatedSystemColor = 'ActiveBorder' | 'ActiveCaption' | 'AppWorkspace' | 'Background' | 'ButtonFace' | 'ButtonHighlight' | 'ButtonShadow' | 'ButtonText' | 'CaptionText' | 'GrayText' | 'Highlight' | 'HighlightText' | 'InactiveBorder' | 'InactiveCaption' | 'InactiveCaptionText' | 'InfoBackground' | 'InfoText' | 'Menu' | 'MenuText' | 'Scrollbar' | 'ThreeDDarkShadow' | 'ThreeDFace' | 'ThreeDHighlight' | 'ThreeDLightShadow' | 'ThreeDShadow' | 'Window' | 'WindowFrame' | 'WindowText';
3947
+ type DisplayInside = '-ms-flexbox' | '-ms-grid' | '-webkit-flex' | 'flex' | 'flow' | 'flow-root' | 'grid' | 'ruby' | 'table';
3948
+ type DisplayInternal = 'ruby-base' | 'ruby-base-container' | 'ruby-text' | 'ruby-text-container' | 'table-caption' | 'table-cell' | 'table-column' | 'table-column-group' | 'table-footer-group' | 'table-header-group' | 'table-row' | 'table-row-group';
3949
+ type DisplayLegacy = '-ms-inline-flexbox' | '-ms-inline-grid' | '-webkit-inline-flex' | 'inline-block' | 'inline-flex' | 'inline-grid' | 'inline-list-item' | 'inline-table';
3950
+ type DisplayOutside = 'block' | 'inline' | 'run-in';
3951
+ type EastAsianVariantValues = 'jis04' | 'jis78' | 'jis83' | 'jis90' | 'simplified' | 'traditional';
3952
+ type FinalBgLayer<TLength> = Color | BgPosition<TLength> | RepeatStyle | Attachment | Box | 'none' | string;
3953
+ type FontStretchAbsolute = 'condensed' | 'expanded' | 'extra-condensed' | 'extra-expanded' | 'normal' | 'semi-condensed' | 'semi-expanded' | 'ultra-condensed' | 'ultra-expanded' | string;
3954
+ type FontWeightAbsolute = 'bold' | 'normal' | number;
3955
+ type GenericFamily = 'cursive' | 'fantasy' | 'monospace' | 'sans-serif' | 'serif';
3956
+ type GeometryBox = Box | 'fill-box' | 'margin-box' | 'stroke-box' | 'view-box';
3957
+ type GridLine = 'auto' | string | number;
3958
+ type LineStyle = 'dashed' | 'dotted' | 'double' | 'groove' | 'hidden' | 'inset' | 'none' | 'outset' | 'ridge' | 'solid';
3959
+ type LineWidth<TLength> = TLength | 'medium' | 'thick' | 'thin';
3960
+ type MaskLayer<TLength> = Position<TLength> | RepeatStyle | GeometryBox | CompositingOperator | MaskingMode | 'no-clip' | 'none' | string;
3961
+ type MaskingMode = 'alpha' | 'luminance' | 'match-source';
3962
+ type NamedColor = 'aliceblue' | 'antiquewhite' | 'aqua' | 'aquamarine' | 'azure' | 'beige' | 'bisque' | 'black' | 'blanchedalmond' | 'blue' | 'blueviolet' | 'brown' | 'burlywood' | 'cadetblue' | 'chartreuse' | 'chocolate' | 'coral' | 'cornflowerblue' | 'cornsilk' | 'crimson' | 'cyan' | 'darkblue' | 'darkcyan' | 'darkgoldenrod' | 'darkgray' | 'darkgreen' | 'darkgrey' | 'darkkhaki' | 'darkmagenta' | 'darkolivegreen' | 'darkorange' | 'darkorchid' | 'darkred' | 'darksalmon' | 'darkseagreen' | 'darkslateblue' | 'darkslategray' | 'darkslategrey' | 'darkturquoise' | 'darkviolet' | 'deeppink' | 'deepskyblue' | 'dimgray' | 'dimgrey' | 'dodgerblue' | 'firebrick' | 'floralwhite' | 'forestgreen' | 'fuchsia' | 'gainsboro' | 'ghostwhite' | 'gold' | 'goldenrod' | 'gray' | 'green' | 'greenyellow' | 'grey' | 'honeydew' | 'hotpink' | 'indianred' | 'indigo' | 'ivory' | 'khaki' | 'lavender' | 'lavenderblush' | 'lawngreen' | 'lemonchiffon' | 'lightblue' | 'lightcoral' | 'lightcyan' | 'lightgoldenrodyellow' | 'lightgray' | 'lightgreen' | 'lightgrey' | 'lightpink' | 'lightsalmon' | 'lightseagreen' | 'lightskyblue' | 'lightslategray' | 'lightslategrey' | 'lightsteelblue' | 'lightyellow' | 'lime' | 'limegreen' | 'linen' | 'magenta' | 'maroon' | 'mediumaquamarine' | 'mediumblue' | 'mediumorchid' | 'mediumpurple' | 'mediumseagreen' | 'mediumslateblue' | 'mediumspringgreen' | 'mediumturquoise' | 'mediumvioletred' | 'midnightblue' | 'mintcream' | 'mistyrose' | 'moccasin' | 'navajowhite' | 'navy' | 'oldlace' | 'olive' | 'olivedrab' | 'orange' | 'orangered' | 'orchid' | 'palegoldenrod' | 'palegreen' | 'paleturquoise' | 'palevioletred' | 'papayawhip' | 'peachpuff' | 'peru' | 'pink' | 'plum' | 'powderblue' | 'purple' | 'rebeccapurple' | 'red' | 'rosybrown' | 'royalblue' | 'saddlebrown' | 'salmon' | 'sandybrown' | 'seagreen' | 'seashell' | 'sienna' | 'silver' | 'skyblue' | 'slateblue' | 'slategray' | 'slategrey' | 'snow' | 'springgreen' | 'steelblue' | 'tan' | 'teal' | 'thistle' | 'tomato' | 'transparent' | 'turquoise' | 'violet' | 'wheat' | 'white' | 'whitesmoke' | 'yellow' | 'yellowgreen';
3963
+ type Paint = Color | 'child' | 'context-fill' | 'context-stroke' | 'none' | string;
3964
+ type Position<TLength> = TLength | 'bottom' | 'center' | 'left' | 'right' | 'top' | string;
3965
+ type Quote = 'close-quote' | 'no-close-quote' | 'no-open-quote' | 'open-quote';
3966
+ type RepeatStyle = 'no-repeat' | 'repeat' | 'repeat-x' | 'repeat-y' | 'round' | 'space' | string;
3967
+ type SelfPosition = 'center' | 'end' | 'flex-end' | 'flex-start' | 'self-end' | 'self-start' | 'start';
3968
+ type SingleAnimation = TimingFunction | SingleAnimationDirection | SingleAnimationFillMode | 'infinite' | 'none' | 'paused' | 'running' | string | number;
3969
+ type SingleAnimationDirection = 'alternate' | 'alternate-reverse' | 'normal' | 'reverse';
3970
+ type SingleAnimationFillMode = 'backwards' | 'both' | 'forwards' | 'none';
3971
+ type SingleTransition = TimingFunction | 'all' | 'none' | string;
3972
+ type StepTimingFunction = 'step-end' | 'step-start' | string;
3973
+ type TimingFunction = CubicBezierTimingFunction | StepTimingFunction | 'linear';
3974
+ type TrackBreadth<TLength> = TLength | 'auto' | 'max-content' | 'min-content' | string;
3975
+ type ViewportLength<TLength> = TLength | 'auto' | string;
3976
3976
  export {};
3977
3977
  //# sourceMappingURL=csstype.d.ts.map