@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.
- package/CHANGELOG.md +15 -1
- package/dist/cjs/color_utils.js +21 -23
- package/dist/cjs/colors.js +4 -60
- package/dist/cjs/error_utils.js +15 -25
- package/dist/cjs/event_tracker.js +5 -11
- package/dist/cjs/global_config.js +107 -188
- package/dist/cjs/index.js +16 -40
- package/dist/cjs/injected/airtable_interface.js +1 -6
- package/dist/cjs/models/abstract_model.js +50 -81
- package/dist/cjs/models/abstract_model_with_async_data.js +102 -177
- package/dist/cjs/models/base.js +211 -374
- package/dist/cjs/models/create_aggregators.js +53 -47
- package/dist/cjs/models/cursor.js +125 -201
- package/dist/cjs/models/field.js +256 -303
- package/dist/cjs/models/grouped_record_query_result.js +210 -286
- package/dist/cjs/models/linked_records_query_result.js +276 -454
- package/dist/cjs/models/models.js +36 -50
- package/dist/cjs/models/mutation_constants.js +5 -9
- package/dist/cjs/models/mutations.js +125 -338
- package/dist/cjs/models/object_pool.js +37 -94
- package/dist/cjs/models/record.js +132 -226
- package/dist/cjs/models/record_coloring.js +14 -19
- package/dist/cjs/models/record_query_result.js +323 -282
- package/dist/cjs/models/record_store.js +355 -688
- package/dist/cjs/models/session.js +99 -158
- package/dist/cjs/models/table.js +361 -549
- package/dist/cjs/models/table_or_view_query_result.js +410 -765
- package/dist/cjs/models/view.js +161 -204
- package/dist/cjs/models/view_data_store.js +177 -282
- package/dist/cjs/models/view_metadata_query_result.js +96 -127
- package/dist/cjs/perform_record_action.js +69 -103
- package/dist/cjs/private_utils.js +133 -223
- package/dist/cjs/sdk.js +97 -142
- package/dist/cjs/settings_button.js +30 -57
- package/dist/cjs/stats/block_stats.js +3 -15
- package/dist/cjs/testing/abstract_mock_airtable_interface.js +53 -97
- package/dist/cjs/types/airtable_interface.js +36 -8
- package/dist/cjs/types/field.js +66 -12
- package/dist/cjs/types/mutations.js +99 -6
- package/dist/cjs/types/permission_levels.js +2 -4
- package/dist/cjs/types/undo_redo.js +2 -3
- package/dist/cjs/types/view.js +16 -11
- package/dist/cjs/ui/base_provider.js +14 -9
- package/dist/cjs/ui/baymax_utils.js +107 -1102
- package/dist/cjs/ui/block_wrapper.js +30 -68
- package/dist/cjs/ui/box.js +52 -56
- package/dist/cjs/ui/button.js +60 -77
- package/dist/cjs/ui/cell_renderer.js +78 -139
- package/dist/cjs/ui/choice_token.js +45 -47
- package/dist/cjs/ui/collaborator_token.js +33 -54
- package/dist/cjs/ui/color_palette.js +58 -106
- package/dist/cjs/ui/color_palette_synced.js +41 -52
- package/dist/cjs/ui/confirmation_dialog.js +53 -69
- package/dist/cjs/ui/control_sizes.js +21 -46
- package/dist/cjs/ui/create_detect_element_resize.js +16 -50
- package/dist/cjs/ui/css_helpers.js +3 -10
- package/dist/cjs/ui/dialog.js +44 -71
- package/dist/cjs/ui/dialog_close_button.js +52 -72
- package/dist/cjs/ui/expand_record.js +4 -11
- package/dist/cjs/ui/expand_record_list.js +6 -11
- package/dist/cjs/ui/expand_record_picker_async.js +18 -35
- package/dist/cjs/ui/field_icon.js +25 -28
- package/dist/cjs/ui/field_picker.js +47 -81
- package/dist/cjs/ui/field_picker_synced.js +33 -44
- package/dist/cjs/ui/form_field.js +45 -64
- package/dist/cjs/ui/geometry/geometry.js +6 -10
- package/dist/cjs/ui/geometry/point.js +5 -13
- package/dist/cjs/ui/geometry/rect.js +7 -29
- package/dist/cjs/ui/geometry/size.js +5 -13
- package/dist/cjs/ui/global_alert.js +35 -61
- package/dist/cjs/ui/global_config_synced_component_helpers.js +4 -13
- package/dist/cjs/ui/heading.js +63 -92
- package/dist/cjs/ui/icon.js +44 -66
- package/dist/cjs/ui/icon_config.js +13 -24
- package/dist/cjs/ui/initialize_block.js +23 -36
- package/dist/cjs/ui/input.js +74 -87
- package/dist/cjs/ui/input_synced.js +34 -43
- package/dist/cjs/ui/key_codes.js +4 -9
- package/dist/cjs/ui/label.js +45 -50
- package/dist/cjs/ui/link.js +74 -89
- package/dist/cjs/ui/loader.js +26 -42
- package/dist/cjs/ui/modal.js +63 -89
- package/dist/cjs/ui/model_picker_select.js +29 -47
- package/dist/cjs/ui/popover.js +98 -180
- package/dist/cjs/ui/progress_bar.js +45 -51
- package/dist/cjs/ui/record_card.js +143 -278
- package/dist/cjs/ui/record_card_list.js +117 -165
- package/dist/cjs/ui/remote_utils.js +5 -13
- package/dist/cjs/ui/sdk_context.js +7 -9
- package/dist/cjs/ui/select.js +84 -118
- package/dist/cjs/ui/select_and_select_buttons_helpers.js +29 -45
- package/dist/cjs/ui/select_buttons.js +54 -90
- package/dist/cjs/ui/select_buttons_synced.js +32 -41
- package/dist/cjs/ui/select_synced.js +32 -42
- package/dist/cjs/ui/switch.js +66 -84
- package/dist/cjs/ui/switch_synced.js +32 -38
- package/dist/cjs/ui/synced.js +16 -43
- package/dist/cjs/ui/system/all_styles_set.js +89 -22
- package/dist/cjs/ui/system/appearance/appearance_set.js +15 -26
- package/dist/cjs/ui/system/appearance/background_color.js +6 -12
- package/dist/cjs/ui/system/appearance/border.js +6 -12
- package/dist/cjs/ui/system/appearance/border_radius.js +6 -12
- package/dist/cjs/ui/system/appearance/box_shadow.js +6 -12
- package/dist/cjs/ui/system/appearance/opacity.js +5 -11
- package/dist/cjs/ui/system/dimensions/dimensions_set.js +15 -27
- package/dist/cjs/ui/system/dimensions/height.js +5 -11
- package/dist/cjs/ui/system/dimensions/max_height.js +5 -11
- package/dist/cjs/ui/system/dimensions/max_width.js +5 -11
- package/dist/cjs/ui/system/dimensions/min_height.js +5 -11
- package/dist/cjs/ui/system/dimensions/min_width.js +5 -11
- package/dist/cjs/ui/system/dimensions/width.js +5 -11
- package/dist/cjs/ui/system/display.js +8 -9
- package/dist/cjs/ui/system/flex_container/align_content.js +6 -12
- package/dist/cjs/ui/system/flex_container/align_items.js +6 -12
- package/dist/cjs/ui/system/flex_container/flex_container_set.js +15 -27
- package/dist/cjs/ui/system/flex_container/flex_direction.js +5 -11
- package/dist/cjs/ui/system/flex_container/flex_wrap.js +5 -11
- package/dist/cjs/ui/system/flex_container/justify_content.js +5 -11
- package/dist/cjs/ui/system/flex_container/justify_items.js +5 -11
- package/dist/cjs/ui/system/flex_item/align_self.js +6 -12
- package/dist/cjs/ui/system/flex_item/flex.js +5 -11
- package/dist/cjs/ui/system/flex_item/flex_basis.js +5 -11
- package/dist/cjs/ui/system/flex_item/flex_grow.js +5 -11
- package/dist/cjs/ui/system/flex_item/flex_item_set.js +15 -28
- package/dist/cjs/ui/system/flex_item/flex_shrink.js +5 -11
- package/dist/cjs/ui/system/flex_item/justify_self.js +5 -11
- package/dist/cjs/ui/system/flex_item/order.js +5 -11
- package/dist/cjs/ui/system/index.js +310 -362
- package/dist/cjs/ui/system/overflow.js +8 -9
- package/dist/cjs/ui/system/position/bottom.js +6 -13
- package/dist/cjs/ui/system/position/left.js +5 -12
- package/dist/cjs/ui/system/position/position.js +5 -11
- package/dist/cjs/ui/system/position/position_set.js +15 -27
- package/dist/cjs/ui/system/position/right.js +5 -12
- package/dist/cjs/ui/system/position/top.js +5 -12
- package/dist/cjs/ui/system/position/z_index.js +5 -11
- package/dist/cjs/ui/system/spacing/margin.js +5 -12
- package/dist/cjs/ui/system/spacing/padding.js +5 -12
- package/dist/cjs/ui/system/spacing/spacing_set.js +15 -23
- package/dist/cjs/ui/system/typography/font_family.js +5 -11
- package/dist/cjs/ui/system/typography/font_size.js +5 -11
- package/dist/cjs/ui/system/typography/font_style.js +5 -11
- package/dist/cjs/ui/system/typography/font_weight.js +5 -11
- package/dist/cjs/ui/system/typography/letter_spacing.js +5 -11
- package/dist/cjs/ui/system/typography/line_height.js +5 -11
- package/dist/cjs/ui/system/typography/text_align.js +5 -11
- package/dist/cjs/ui/system/typography/text_color.js +5 -11
- package/dist/cjs/ui/system/typography/text_decoration.js +5 -11
- package/dist/cjs/ui/system/typography/text_transform.js +5 -11
- package/dist/cjs/ui/system/typography/typography_set.js +15 -31
- package/dist/cjs/ui/system/utils/create_responsive_prop_type.js +2 -4
- package/dist/cjs/ui/system/utils/create_style_prop_types.js +5 -13
- package/dist/cjs/ui/system/utils/ensure_numbers_are_within_scale.js +4 -14
- package/dist/cjs/ui/system/utils/get_style_props_for_responsive_prop.js +30 -70
- package/dist/cjs/ui/table_picker.js +26 -43
- package/dist/cjs/ui/table_picker_synced.js +33 -42
- package/dist/cjs/ui/text.js +59 -71
- package/dist/cjs/ui/text_button.js +80 -97
- package/dist/cjs/ui/theme/default_theme/button_variants.js +1 -5
- package/dist/cjs/ui/theme/default_theme/control_sizes.js +29 -42
- package/dist/cjs/ui/theme/default_theme/heading_styles.js +4 -5
- package/dist/cjs/ui/theme/default_theme/index.js +15 -32
- package/dist/cjs/ui/theme/default_theme/input_variants.js +1 -5
- package/dist/cjs/ui/theme/default_theme/link_variants.js +1 -5
- package/dist/cjs/ui/theme/default_theme/select_buttons_variants.js +1 -5
- package/dist/cjs/ui/theme/default_theme/select_variants.js +10 -21
- package/dist/cjs/ui/theme/default_theme/switch_variants.js +8 -20
- package/dist/cjs/ui/theme/default_theme/text_button_variants.js +1 -5
- package/dist/cjs/ui/theme/default_theme/text_styles.js +1 -2
- package/dist/cjs/ui/theme/default_theme/tokens.js +33 -35
- package/dist/cjs/ui/theme/theme_context.js +3 -6
- package/dist/cjs/ui/theme/use_theme.js +1 -7
- package/dist/cjs/ui/tooltip.js +38 -79
- package/dist/cjs/ui/types/aria_props.js +3 -7
- package/dist/cjs/ui/types/data_attributes_prop.js +8 -6
- package/dist/cjs/ui/types/tooltip_anchor_props.js +4 -5
- package/dist/cjs/ui/ui.js +97 -130
- package/dist/cjs/ui/unstable_standalone_ui.js +18 -42
- package/dist/cjs/ui/use_array_identity.js +0 -4
- package/dist/cjs/ui/use_base.js +4 -13
- package/dist/cjs/ui/use_color_scheme.js +60 -0
- package/dist/cjs/ui/use_cursor.js +3 -12
- package/dist/cjs/ui/use_form_field.js +4 -6
- package/dist/cjs/ui/use_global_config.js +3 -10
- package/dist/cjs/ui/use_loadable.js +59 -132
- package/dist/cjs/ui/use_record_action_data.js +6 -12
- package/dist/cjs/ui/use_records.js +27 -28
- package/dist/cjs/ui/use_session.js +6 -15
- package/dist/cjs/ui/use_settings_button.js +4 -11
- package/dist/cjs/ui/use_styled_system.js +12 -21
- package/dist/cjs/ui/use_synced.js +0 -7
- package/dist/cjs/ui/use_text_color_for_background_color.js +1 -5
- package/dist/cjs/ui/use_view_metadata.js +5 -8
- package/dist/cjs/ui/use_viewport.js +1 -7
- package/dist/cjs/ui/use_watchable.js +36 -74
- package/dist/cjs/ui/view_picker.js +44 -78
- package/dist/cjs/ui/view_picker_synced.js +33 -44
- package/dist/cjs/ui/viewport_constraint.js +37 -64
- package/dist/cjs/ui/with_hooks.js +17 -22
- package/dist/cjs/ui/with_styled_system.js +33 -60
- package/dist/cjs/undo_redo.js +12 -32
- package/dist/cjs/unstable_private_utils.js +6 -8
- package/dist/cjs/unstable_testing_utils.js +44 -57
- package/dist/cjs/viewport.js +127 -189
- package/dist/cjs/warning.js +5 -6
- package/dist/cjs/watchable.js +66 -148
- package/dist/types/src/colors.d.ts +1 -1
- package/dist/types/src/colors.d.ts.map +1 -1
- package/dist/types/src/global_config.d.ts +1 -1
- package/dist/types/src/global_config.d.ts.map +1 -1
- package/dist/types/src/models/base.d.ts +1 -1
- package/dist/types/src/models/base.d.ts.map +1 -1
- package/dist/types/src/models/cursor.d.ts +1 -1
- package/dist/types/src/models/cursor.d.ts.map +1 -1
- package/dist/types/src/models/field.d.ts +1 -1
- package/dist/types/src/models/field.d.ts.map +1 -1
- package/dist/types/src/models/linked_records_query_result.d.ts.map +1 -1
- package/dist/types/src/models/models.d.ts.map +1 -1
- package/dist/types/src/models/record.d.ts +1 -1
- package/dist/types/src/models/record.d.ts.map +1 -1
- package/dist/types/src/models/record_coloring.d.ts +2 -2
- package/dist/types/src/models/record_coloring.d.ts.map +1 -1
- package/dist/types/src/models/record_query_result.d.ts +3 -3
- package/dist/types/src/models/record_query_result.d.ts.map +1 -1
- package/dist/types/src/models/session.d.ts +1 -1
- package/dist/types/src/models/session.d.ts.map +1 -1
- package/dist/types/src/models/table.d.ts +1 -1
- package/dist/types/src/models/table.d.ts.map +1 -1
- package/dist/types/src/models/view.d.ts +1 -1
- package/dist/types/src/models/view.d.ts.map +1 -1
- package/dist/types/src/models/view_metadata_query_result.d.ts +2 -2
- package/dist/types/src/models/view_metadata_query_result.d.ts.map +1 -1
- package/dist/types/src/perform_record_action.d.ts +1 -1
- package/dist/types/src/perform_record_action.d.ts.map +1 -1
- package/dist/types/src/private_utils.d.ts +8 -8
- package/dist/types/src/private_utils.d.ts.map +1 -1
- package/dist/types/src/sdk.d.ts +1 -1
- package/dist/types/src/sdk.d.ts.map +1 -1
- package/dist/types/src/settings_button.d.ts +1 -1
- package/dist/types/src/settings_button.d.ts.map +1 -1
- package/dist/types/src/types/aggregators.d.ts +1 -1
- package/dist/types/src/types/aggregators.d.ts.map +1 -1
- package/dist/types/src/types/airtable_interface.d.ts +6 -6
- package/dist/types/src/types/airtable_interface.d.ts.map +1 -1
- package/dist/types/src/types/attachment.d.ts +1 -1
- package/dist/types/src/types/attachment.d.ts.map +1 -1
- package/dist/types/src/types/base.d.ts +1 -1
- package/dist/types/src/types/base.d.ts.map +1 -1
- package/dist/types/src/types/block.d.ts +1 -1
- package/dist/types/src/types/block.d.ts.map +1 -1
- package/dist/types/src/types/collaborator.d.ts +1 -1
- package/dist/types/src/types/collaborator.d.ts.map +1 -1
- package/dist/types/src/types/field.d.ts +5 -5
- package/dist/types/src/types/field.d.ts.map +1 -1
- package/dist/types/src/types/global_config.d.ts +6 -6
- package/dist/types/src/types/global_config.d.ts.map +1 -1
- package/dist/types/src/types/mutations.d.ts +4 -4
- package/dist/types/src/types/mutations.d.ts.map +1 -1
- package/dist/types/src/types/permission_levels.d.ts +1 -1
- package/dist/types/src/types/permission_levels.d.ts.map +1 -1
- package/dist/types/src/types/record.d.ts +2 -2
- package/dist/types/src/types/record.d.ts.map +1 -1
- package/dist/types/src/types/record_action_data.d.ts +1 -1
- package/dist/types/src/types/record_action_data.d.ts.map +1 -1
- package/dist/types/src/types/table.d.ts +3 -3
- package/dist/types/src/types/table.d.ts.map +1 -1
- package/dist/types/src/types/undo_redo.d.ts +1 -1
- package/dist/types/src/types/undo_redo.d.ts.map +1 -1
- package/dist/types/src/types/view.d.ts +4 -4
- package/dist/types/src/types/view.d.ts.map +1 -1
- package/dist/types/src/ui/base_provider.d.ts +1 -1
- package/dist/types/src/ui/base_provider.d.ts.map +1 -1
- package/dist/types/src/ui/block_wrapper.d.ts +2 -2
- package/dist/types/src/ui/button.d.ts +2 -2
- package/dist/types/src/ui/button.d.ts.map +1 -1
- package/dist/types/src/ui/cell_renderer.d.ts +2 -2
- package/dist/types/src/ui/choice_token.d.ts +4 -4
- package/dist/types/src/ui/choice_token.d.ts.map +1 -1
- package/dist/types/src/ui/collaborator_token.d.ts +6 -6
- package/dist/types/src/ui/collaborator_token.d.ts.map +1 -1
- package/dist/types/src/ui/color_palette.d.ts +3 -3
- package/dist/types/src/ui/color_palette.d.ts.map +1 -1
- package/dist/types/src/ui/color_palette_synced.d.ts +2 -2
- package/dist/types/src/ui/confirmation_dialog.d.ts +1 -1
- package/dist/types/src/ui/control_sizes.d.ts +2 -2
- package/dist/types/src/ui/control_sizes.d.ts.map +1 -1
- package/dist/types/src/ui/dialog.d.ts +2 -2
- package/dist/types/src/ui/dialog.d.ts.map +1 -1
- package/dist/types/src/ui/dialog_close_button.d.ts +1 -1
- package/dist/types/src/ui/field_icon.d.ts +3 -3
- package/dist/types/src/ui/field_icon.d.ts.map +1 -1
- package/dist/types/src/ui/field_picker.d.ts +2 -2
- package/dist/types/src/ui/field_picker.d.ts.map +1 -1
- package/dist/types/src/ui/form_field.d.ts +1 -1
- package/dist/types/src/ui/form_field.d.ts.map +1 -1
- package/dist/types/src/ui/global_alert.d.ts +1 -1
- package/dist/types/src/ui/global_alert.d.ts.map +1 -1
- package/dist/types/src/ui/global_config_synced_component_helpers.d.ts +1 -1
- package/dist/types/src/ui/global_config_synced_component_helpers.d.ts.map +1 -1
- package/dist/types/src/ui/heading.d.ts +4 -4
- package/dist/types/src/ui/heading.d.ts.map +1 -1
- package/dist/types/src/ui/icon.d.ts +2 -2
- package/dist/types/src/ui/icon.d.ts.map +1 -1
- package/dist/types/src/ui/icon_config.d.ts +39 -39
- package/dist/types/src/ui/icon_config.d.ts.map +1 -1
- package/dist/types/src/ui/initialize_block.d.ts +3 -3
- package/dist/types/src/ui/initialize_block.d.ts.map +1 -1
- package/dist/types/src/ui/input.d.ts +16 -16
- package/dist/types/src/ui/input.d.ts.map +1 -1
- package/dist/types/src/ui/label.d.ts +1 -1
- package/dist/types/src/ui/label.d.ts.map +1 -1
- package/dist/types/src/ui/link.d.ts +2 -2
- package/dist/types/src/ui/link.d.ts.map +1 -1
- package/dist/types/src/ui/loader.d.ts +2 -2
- package/dist/types/src/ui/loader.d.ts.map +1 -1
- package/dist/types/src/ui/model_picker_select.d.ts +1 -1
- package/dist/types/src/ui/model_picker_select.d.ts.map +1 -1
- package/dist/types/src/ui/popover.d.ts +5 -5
- package/dist/types/src/ui/popover.d.ts.map +1 -1
- package/dist/types/src/ui/progress_bar.d.ts +2 -2
- package/dist/types/src/ui/progress_bar.d.ts.map +1 -1
- package/dist/types/src/ui/record_card.d.ts +3 -3
- package/dist/types/src/ui/record_card.d.ts.map +1 -1
- package/dist/types/src/ui/record_card_list.d.ts +3 -3
- package/dist/types/src/ui/record_card_list.d.ts.map +1 -1
- package/dist/types/src/ui/select.d.ts +4 -4
- package/dist/types/src/ui/select_and_select_buttons_helpers.d.ts +4 -4
- package/dist/types/src/ui/select_and_select_buttons_helpers.d.ts.map +1 -1
- package/dist/types/src/ui/select_buttons.d.ts +5 -5
- package/dist/types/src/ui/select_buttons.d.ts.map +1 -1
- package/dist/types/src/ui/switch.d.ts +2 -2
- package/dist/types/src/ui/switch.d.ts.map +1 -1
- package/dist/types/src/ui/synced.d.ts +3 -3
- package/dist/types/src/ui/system/all_styles_set.d.ts +0 -1
- package/dist/types/src/ui/system/all_styles_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/appearance/appearance_set.d.ts +0 -1
- package/dist/types/src/ui/system/appearance/appearance_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/appearance/background_color.d.ts +0 -1
- package/dist/types/src/ui/system/appearance/background_color.d.ts.map +1 -1
- package/dist/types/src/ui/system/appearance/border.d.ts +0 -1
- package/dist/types/src/ui/system/appearance/border.d.ts.map +1 -1
- package/dist/types/src/ui/system/appearance/border_radius.d.ts +0 -1
- package/dist/types/src/ui/system/appearance/border_radius.d.ts.map +1 -1
- package/dist/types/src/ui/system/appearance/box_shadow.d.ts +0 -1
- package/dist/types/src/ui/system/appearance/box_shadow.d.ts.map +1 -1
- package/dist/types/src/ui/system/appearance/opacity.d.ts +0 -1
- package/dist/types/src/ui/system/appearance/opacity.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/dimensions_set.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/dimensions_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/height.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/height.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/max_height.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/max_height.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/max_width.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/max_width.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/min_height.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/min_height.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/min_width.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/min_width.d.ts.map +1 -1
- package/dist/types/src/ui/system/dimensions/width.d.ts +0 -1
- package/dist/types/src/ui/system/dimensions/width.d.ts.map +1 -1
- package/dist/types/src/ui/system/display.d.ts +0 -1
- package/dist/types/src/ui/system/display.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/align_content.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/align_content.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/align_items.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/align_items.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/flex_container_set.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/flex_container_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/flex_direction.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/flex_direction.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/flex_wrap.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/flex_wrap.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/justify_content.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/justify_content.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_container/justify_items.d.ts +0 -1
- package/dist/types/src/ui/system/flex_container/justify_items.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/align_self.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/align_self.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/flex.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/flex.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/flex_basis.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/flex_basis.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/flex_grow.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/flex_grow.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/flex_item_set.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/flex_item_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/flex_shrink.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/flex_shrink.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/justify_self.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/justify_self.d.ts.map +1 -1
- package/dist/types/src/ui/system/flex_item/order.d.ts +0 -1
- package/dist/types/src/ui/system/flex_item/order.d.ts.map +1 -1
- package/dist/types/src/ui/system/overflow.d.ts +0 -1
- package/dist/types/src/ui/system/overflow.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/bottom.d.ts +0 -1
- package/dist/types/src/ui/system/position/bottom.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/left.d.ts +0 -1
- package/dist/types/src/ui/system/position/left.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/position.d.ts +0 -1
- package/dist/types/src/ui/system/position/position.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/position_set.d.ts +0 -1
- package/dist/types/src/ui/system/position/position_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/right.d.ts +0 -1
- package/dist/types/src/ui/system/position/right.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/top.d.ts +0 -1
- package/dist/types/src/ui/system/position/top.d.ts.map +1 -1
- package/dist/types/src/ui/system/position/z_index.d.ts +0 -1
- package/dist/types/src/ui/system/position/z_index.d.ts.map +1 -1
- package/dist/types/src/ui/system/spacing/margin.d.ts +0 -1
- package/dist/types/src/ui/system/spacing/margin.d.ts.map +1 -1
- package/dist/types/src/ui/system/spacing/padding.d.ts +0 -1
- package/dist/types/src/ui/system/spacing/padding.d.ts.map +1 -1
- package/dist/types/src/ui/system/spacing/spacing_set.d.ts +0 -1
- package/dist/types/src/ui/system/spacing/spacing_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/font_family.d.ts +0 -1
- package/dist/types/src/ui/system/typography/font_family.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/font_size.d.ts +0 -1
- package/dist/types/src/ui/system/typography/font_size.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/font_style.d.ts +0 -1
- package/dist/types/src/ui/system/typography/font_style.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/font_weight.d.ts +0 -1
- package/dist/types/src/ui/system/typography/font_weight.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/letter_spacing.d.ts +0 -1
- package/dist/types/src/ui/system/typography/letter_spacing.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/line_height.d.ts +0 -1
- package/dist/types/src/ui/system/typography/line_height.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/text_align.d.ts +0 -1
- package/dist/types/src/ui/system/typography/text_align.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/text_color.d.ts +0 -1
- package/dist/types/src/ui/system/typography/text_color.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/text_decoration.d.ts +0 -1
- package/dist/types/src/ui/system/typography/text_decoration.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/text_transform.d.ts +0 -1
- package/dist/types/src/ui/system/typography/text_transform.d.ts.map +1 -1
- package/dist/types/src/ui/system/typography/typography_set.d.ts +0 -1
- package/dist/types/src/ui/system/typography/typography_set.d.ts.map +1 -1
- package/dist/types/src/ui/system/utils/create_style_prop_types.d.ts +1 -1
- package/dist/types/src/ui/system/utils/create_style_prop_types.d.ts.map +1 -1
- package/dist/types/src/ui/system/utils/csstype.d.ts +578 -578
- package/dist/types/src/ui/system/utils/csstype.d.ts.map +1 -1
- package/dist/types/src/ui/system/utils/types.d.ts +4 -4
- package/dist/types/src/ui/system/utils/types.d.ts.map +1 -1
- package/dist/types/src/ui/table_picker.d.ts +1 -1
- package/dist/types/src/ui/table_picker.d.ts.map +1 -1
- package/dist/types/src/ui/text.d.ts +4 -4
- package/dist/types/src/ui/text.d.ts.map +1 -1
- package/dist/types/src/ui/text_button.d.ts +2 -2
- package/dist/types/src/ui/text_button.d.ts.map +1 -1
- package/dist/types/src/ui/theme/default_theme/heading_styles.d.ts +2 -2
- package/dist/types/src/ui/theme/default_theme/heading_styles.d.ts.map +1 -1
- package/dist/types/src/ui/theme/default_theme/index.d.ts +1 -1
- package/dist/types/src/ui/theme/theme_context.d.ts +1 -3
- package/dist/types/src/ui/theme/theme_context.d.ts.map +1 -1
- package/dist/types/src/ui/theme/use_theme.d.ts +1 -1
- package/dist/types/src/ui/tooltip.d.ts +3 -3
- package/dist/types/src/ui/types/data_attributes_prop.d.ts.map +1 -1
- package/dist/types/src/ui/types/tooltip_anchor_props.d.ts +0 -1
- package/dist/types/src/ui/types/tooltip_anchor_props.d.ts.map +1 -1
- package/dist/types/src/ui/ui.d.ts +1 -0
- package/dist/types/src/ui/ui.d.ts.map +1 -1
- package/dist/types/src/ui/use_base.d.ts.map +1 -1
- package/dist/types/src/ui/use_color_scheme.d.ts +28 -0
- package/dist/types/src/ui/use_color_scheme.d.ts.map +1 -0
- package/dist/types/src/ui/use_cursor.d.ts.map +1 -1
- package/dist/types/src/ui/use_form_field.d.ts +0 -2
- package/dist/types/src/ui/use_form_field.d.ts.map +1 -1
- package/dist/types/src/ui/use_records.d.ts +2 -2
- package/dist/types/src/ui/use_records.d.ts.map +1 -1
- package/dist/types/src/ui/use_session.d.ts.map +1 -1
- package/dist/types/src/ui/view_picker.d.ts +3 -3
- package/dist/types/src/ui/view_picker.d.ts.map +1 -1
- package/dist/types/src/ui/viewport_constraint.d.ts +3 -3
- package/dist/types/src/ui/viewport_constraint.d.ts.map +1 -1
- package/dist/types/src/viewport.d.ts +2 -2
- package/dist/types/src/viewport.d.ts.map +1 -1
- package/dist/types/src/warning.d.ts +1 -1
- package/dist/types/src/warning.d.ts.map +1 -1
- package/package.json +40 -34
- package/dist/types/stories/all_controls.stories.d.ts +0 -2
- package/dist/types/stories/all_controls.stories.d.ts.map +0 -1
- package/dist/types/stories/box.appearance.stories.d.ts +0 -2
- package/dist/types/stories/box.appearance.stories.d.ts.map +0 -1
- package/dist/types/stories/box.dimensions.stories.d.ts +0 -2
- package/dist/types/stories/box.dimensions.stories.d.ts.map +0 -1
- package/dist/types/stories/box.flex_container.stories.d.ts +0 -2
- package/dist/types/stories/box.flex_container.stories.d.ts.map +0 -1
- package/dist/types/stories/box.flex_item.stories.d.ts +0 -2
- package/dist/types/stories/box.flex_item.stories.d.ts.map +0 -1
- package/dist/types/stories/box.position.stories.d.ts +0 -2
- package/dist/types/stories/box.position.stories.d.ts.map +0 -1
- package/dist/types/stories/box.spacing.stories.d.ts +0 -2
- package/dist/types/stories/box.spacing.stories.d.ts.map +0 -1
- package/dist/types/stories/box.stories.d.ts +0 -2
- package/dist/types/stories/box.stories.d.ts.map +0 -1
- package/dist/types/stories/box.typography.stories.d.ts +0 -2
- package/dist/types/stories/box.typography.stories.d.ts.map +0 -1
- package/dist/types/stories/button.stories.d.ts +0 -2
- package/dist/types/stories/button.stories.d.ts.map +0 -1
- package/dist/types/stories/cell_renderer.stories.d.ts +0 -2
- package/dist/types/stories/cell_renderer.stories.d.ts.map +0 -1
- package/dist/types/stories/choice_token.stories.d.ts +0 -2
- package/dist/types/stories/choice_token.stories.d.ts.map +0 -1
- package/dist/types/stories/collaborator_token.stories.d.ts +0 -2
- package/dist/types/stories/collaborator_token.stories.d.ts.map +0 -1
- package/dist/types/stories/color_palette.stories.d.ts +0 -2
- package/dist/types/stories/color_palette.stories.d.ts.map +0 -1
- package/dist/types/stories/confirmation_dialog.stories.d.ts +0 -2
- package/dist/types/stories/confirmation_dialog.stories.d.ts.map +0 -1
- package/dist/types/stories/dialog.stories.d.ts +0 -2
- package/dist/types/stories/dialog.stories.d.ts.map +0 -1
- package/dist/types/stories/field_icon.stories.d.ts +0 -2
- package/dist/types/stories/field_icon.stories.d.ts.map +0 -1
- package/dist/types/stories/form_field.stories.d.ts +0 -2
- package/dist/types/stories/form_field.stories.d.ts.map +0 -1
- package/dist/types/stories/heading.size.stories.d.ts +0 -2
- package/dist/types/stories/heading.size.stories.d.ts.map +0 -1
- package/dist/types/stories/heading.stories.d.ts +0 -2
- package/dist/types/stories/heading.stories.d.ts.map +0 -1
- package/dist/types/stories/helpers/attachments.d.ts +0 -4
- package/dist/types/stories/helpers/attachments.d.ts.map +0 -1
- package/dist/types/stories/helpers/categorize_style_props.d.ts +0 -14
- package/dist/types/stories/helpers/categorize_style_props.d.ts.map +0 -1
- package/dist/types/stories/helpers/choice_options.d.ts +0 -7
- package/dist/types/stories/helpers/choice_options.d.ts.map +0 -1
- package/dist/types/stories/helpers/code_block.d.ts +0 -5
- package/dist/types/stories/helpers/code_block.d.ts.map +0 -1
- package/dist/types/stories/helpers/code_utils.d.ts +0 -32
- package/dist/types/stories/helpers/code_utils.d.ts.map +0 -1
- package/dist/types/stories/helpers/collaborator_options.d.ts +0 -7
- package/dist/types/stories/helpers/collaborator_options.d.ts.map +0 -1
- package/dist/types/stories/helpers/example.d.ts +0 -39
- package/dist/types/stories/helpers/example.d.ts.map +0 -1
- package/dist/types/stories/helpers/example_code_panel.d.ts +0 -10
- package/dist/types/stories/helpers/example_code_panel.d.ts.map +0 -1
- package/dist/types/stories/helpers/fake_cell_renderer.d.ts +0 -7
- package/dist/types/stories/helpers/fake_cell_renderer.d.ts.map +0 -1
- package/dist/types/stories/helpers/fake_foreign_record.d.ts +0 -5
- package/dist/types/stories/helpers/fake_foreign_record.d.ts.map +0 -1
- package/dist/types/stories/helpers/fake_record_card.d.ts +0 -13
- package/dist/types/stories/helpers/fake_record_card.d.ts.map +0 -1
- package/dist/types/stories/helpers/field_type.d.ts +0 -6
- package/dist/types/stories/helpers/field_type.d.ts.map +0 -1
- package/dist/types/stories/helpers/raf_throttle.d.ts +0 -5
- package/dist/types/stories/helpers/raf_throttle.d.ts.map +0 -1
- package/dist/types/stories/helpers/style_prop_list.d.ts +0 -9
- package/dist/types/stories/helpers/style_prop_list.d.ts.map +0 -1
- package/dist/types/stories/helpers/sync_source_options.d.ts +0 -7
- package/dist/types/stories/helpers/sync_source_options.d.ts.map +0 -1
- package/dist/types/stories/helpers/use_resizable_panel.d.ts +0 -27
- package/dist/types/stories/helpers/use_resizable_panel.d.ts.map +0 -1
- package/dist/types/stories/icon.stories.d.ts +0 -2
- package/dist/types/stories/icon.stories.d.ts.map +0 -1
- package/dist/types/stories/icon_example.d.ts +0 -3
- package/dist/types/stories/icon_example.d.ts.map +0 -1
- package/dist/types/stories/input.stories.d.ts +0 -2
- package/dist/types/stories/input.stories.d.ts.map +0 -1
- package/dist/types/stories/label.stories.d.ts +0 -2
- package/dist/types/stories/label.stories.d.ts.map +0 -1
- package/dist/types/stories/link.stories.d.ts +0 -2
- package/dist/types/stories/link.stories.d.ts.map +0 -1
- package/dist/types/stories/loader.stories.d.ts +0 -2
- package/dist/types/stories/loader.stories.d.ts.map +0 -1
- package/dist/types/stories/model_pickers.stories.d.ts +0 -2
- package/dist/types/stories/model_pickers.stories.d.ts.map +0 -1
- package/dist/types/stories/progress_bar.stories.d.ts +0 -2
- package/dist/types/stories/progress_bar.stories.d.ts.map +0 -1
- package/dist/types/stories/record_card.stories.d.ts +0 -2
- package/dist/types/stories/record_card.stories.d.ts.map +0 -1
- package/dist/types/stories/record_card_list.stories.d.ts +0 -2
- package/dist/types/stories/record_card_list.stories.d.ts.map +0 -1
- package/dist/types/stories/select.stories.d.ts +0 -2
- package/dist/types/stories/select.stories.d.ts.map +0 -1
- package/dist/types/stories/select_buttons.stories.d.ts +0 -2
- package/dist/types/stories/select_buttons.stories.d.ts.map +0 -1
- package/dist/types/stories/switch.stories.d.ts +0 -2
- package/dist/types/stories/switch.stories.d.ts.map +0 -1
- package/dist/types/stories/text.size.stories.d.ts +0 -2
- package/dist/types/stories/text.size.stories.d.ts.map +0 -1
- package/dist/types/stories/text.stories.d.ts +0 -2
- package/dist/types/stories/text.stories.d.ts.map +0 -1
- package/dist/types/stories/text_button.stories.d.ts +0 -2
- package/dist/types/stories/text_button.stories.d.ts.map +0 -1
- package/dist/types/stories/tooltip.stories.d.ts +0 -2
- package/dist/types/stories/tooltip.stories.d.ts.map +0 -1
- package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts +0 -124
- package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts.map +0 -1
- package/dist/types/test/airtable_interface_mocks/linked_records.d.ts +0 -4
- package/dist/types/test/airtable_interface_mocks/linked_records.d.ts.map +0 -1
- package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts +0 -61
- package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts.map +0 -1
- package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts +0 -4
- package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts.map +0 -1
- package/dist/types/test/error_utils.test.d.ts +0 -2
- package/dist/types/test/error_utils.test.d.ts.map +0 -1
- package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts +0 -2
- package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts.map +0 -1
- package/dist/types/test/index.test.d.ts +0 -2
- package/dist/types/test/index.test.d.ts.map +0 -1
- package/dist/types/test/models/base.test.d.ts +0 -2
- package/dist/types/test/models/base.test.d.ts.map +0 -1
- package/dist/types/test/models/cursor.test.d.ts +0 -2
- package/dist/types/test/models/cursor.test.d.ts.map +0 -1
- package/dist/types/test/models/field.test.d.ts +0 -2
- package/dist/types/test/models/field.test.d.ts.map +0 -1
- package/dist/types/test/models/linked_records_query_result.test.d.ts +0 -2
- package/dist/types/test/models/linked_records_query_result.test.d.ts.map +0 -1
- package/dist/types/test/models/mutations.test.d.ts +0 -2
- package/dist/types/test/models/mutations.test.d.ts.map +0 -1
- package/dist/types/test/models/object_pool.test.d.ts +0 -2
- package/dist/types/test/models/object_pool.test.d.ts.map +0 -1
- package/dist/types/test/models/record.test.d.ts +0 -2
- package/dist/types/test/models/record.test.d.ts.map +0 -1
- package/dist/types/test/models/session.test.d.ts +0 -2
- package/dist/types/test/models/session.test.d.ts.map +0 -1
- package/dist/types/test/models/table.test.d.ts +0 -2
- package/dist/types/test/models/table.test.d.ts.map +0 -1
- package/dist/types/test/models/table_mutations.test.d.ts +0 -2
- package/dist/types/test/models/table_mutations.test.d.ts.map +0 -1
- package/dist/types/test/models/table_or_view_query_result.test.d.ts +0 -2
- package/dist/types/test/models/table_or_view_query_result.test.d.ts.map +0 -1
- package/dist/types/test/models/view.test.d.ts +0 -2
- package/dist/types/test/models/view.test.d.ts.map +0 -1
- package/dist/types/test/models/view_metadata_query_result.test.d.ts +0 -2
- package/dist/types/test/models/view_metadata_query_result.test.d.ts.map +0 -1
- package/dist/types/test/private_utils.test.d.ts +0 -2
- package/dist/types/test/private_utils.test.d.ts.map +0 -1
- package/dist/types/test/sdk.test.d.ts +0 -2
- package/dist/types/test/sdk.test.d.ts.map +0 -1
- package/dist/types/test/setup_enzyme.d.ts +0 -2
- package/dist/types/test/setup_enzyme.d.ts.map +0 -1
- package/dist/types/test/test_helpers.d.ts +0 -11
- package/dist/types/test/test_helpers.d.ts.map +0 -1
- package/dist/types/test/ui/base_provider.test.d.ts +0 -2
- package/dist/types/test/ui/base_provider.test.d.ts.map +0 -1
- package/dist/types/test/ui/block_wrapper.test.d.ts +0 -2
- package/dist/types/test/ui/block_wrapper.test.d.ts.map +0 -1
- package/dist/types/test/ui/box.test.d.ts +0 -2
- package/dist/types/test/ui/box.test.d.ts.map +0 -1
- package/dist/types/test/ui/button.test.d.ts +0 -2
- package/dist/types/test/ui/button.test.d.ts.map +0 -1
- package/dist/types/test/ui/cell_renderer.test.d.ts +0 -2
- package/dist/types/test/ui/cell_renderer.test.d.ts.map +0 -1
- package/dist/types/test/ui/choice_token.test.d.ts +0 -2
- package/dist/types/test/ui/choice_token.test.d.ts.map +0 -1
- package/dist/types/test/ui/collaborator_token.test.d.ts +0 -2
- package/dist/types/test/ui/collaborator_token.test.d.ts.map +0 -1
- package/dist/types/test/ui/color_palette.test.d.ts +0 -2
- package/dist/types/test/ui/color_palette.test.d.ts.map +0 -1
- package/dist/types/test/ui/color_palette_synced.test.d.ts +0 -2
- package/dist/types/test/ui/color_palette_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/confirmation_dialog.test.d.ts +0 -2
- package/dist/types/test/ui/confirmation_dialog.test.d.ts.map +0 -1
- package/dist/types/test/ui/dialog.test.d.ts +0 -2
- package/dist/types/test/ui/dialog.test.d.ts.map +0 -1
- package/dist/types/test/ui/expand_record.test.d.ts +0 -2
- package/dist/types/test/ui/expand_record.test.d.ts.map +0 -1
- package/dist/types/test/ui/expand_record_list.test.d.ts +0 -2
- package/dist/types/test/ui/expand_record_list.test.d.ts.map +0 -1
- package/dist/types/test/ui/expand_record_picker_async.test.d.ts +0 -2
- package/dist/types/test/ui/expand_record_picker_async.test.d.ts.map +0 -1
- package/dist/types/test/ui/field_icon.test.d.ts +0 -2
- package/dist/types/test/ui/field_icon.test.d.ts.map +0 -1
- package/dist/types/test/ui/field_picker.test.d.ts +0 -2
- package/dist/types/test/ui/field_picker.test.d.ts.map +0 -1
- package/dist/types/test/ui/field_picker_synced.test.d.ts +0 -2
- package/dist/types/test/ui/field_picker_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/form_field.test.d.ts +0 -2
- package/dist/types/test/ui/form_field.test.d.ts.map +0 -1
- package/dist/types/test/ui/global_alert.test.d.ts +0 -2
- package/dist/types/test/ui/global_alert.test.d.ts.map +0 -1
- package/dist/types/test/ui/heading.test.d.ts +0 -2
- package/dist/types/test/ui/heading.test.d.ts.map +0 -1
- package/dist/types/test/ui/icon.test.d.ts +0 -2
- package/dist/types/test/ui/icon.test.d.ts.map +0 -1
- package/dist/types/test/ui/initialize_block.test.d.ts +0 -2
- package/dist/types/test/ui/initialize_block.test.d.ts.map +0 -1
- package/dist/types/test/ui/input.test.d.ts +0 -2
- package/dist/types/test/ui/input.test.d.ts.map +0 -1
- package/dist/types/test/ui/input_synced.test.d.ts +0 -2
- package/dist/types/test/ui/input_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/label.test.d.ts +0 -2
- package/dist/types/test/ui/label.test.d.ts.map +0 -1
- package/dist/types/test/ui/link.test.d.ts +0 -2
- package/dist/types/test/ui/link.test.d.ts.map +0 -1
- package/dist/types/test/ui/loader.test.d.ts +0 -2
- package/dist/types/test/ui/loader.test.d.ts.map +0 -1
- package/dist/types/test/ui/modal.test.d.ts +0 -2
- package/dist/types/test/ui/modal.test.d.ts.map +0 -1
- package/dist/types/test/ui/popover.test.d.ts +0 -2
- package/dist/types/test/ui/popover.test.d.ts.map +0 -1
- package/dist/types/test/ui/progress_bar.test.d.ts +0 -2
- package/dist/types/test/ui/progress_bar.test.d.ts.map +0 -1
- package/dist/types/test/ui/record_card.test.d.ts +0 -2
- package/dist/types/test/ui/record_card.test.d.ts.map +0 -1
- package/dist/types/test/ui/record_card_list.test.d.ts +0 -2
- package/dist/types/test/ui/record_card_list.test.d.ts.map +0 -1
- package/dist/types/test/ui/remote_utils.test.d.ts +0 -2
- package/dist/types/test/ui/remote_utils.test.d.ts.map +0 -1
- package/dist/types/test/ui/select.test.d.ts +0 -2
- package/dist/types/test/ui/select.test.d.ts.map +0 -1
- package/dist/types/test/ui/select_buttons.test.d.ts +0 -2
- package/dist/types/test/ui/select_buttons.test.d.ts.map +0 -1
- package/dist/types/test/ui/select_buttons_synced.test.d.ts +0 -2
- package/dist/types/test/ui/select_buttons_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/select_synced.test.d.ts +0 -2
- package/dist/types/test/ui/select_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/switch.test.d.ts +0 -2
- package/dist/types/test/ui/switch.test.d.ts.map +0 -1
- package/dist/types/test/ui/switch_synced.test.d.ts +0 -2
- package/dist/types/test/ui/switch_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/synced.test.d.ts +0 -2
- package/dist/types/test/ui/synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/table_picker.test.d.ts +0 -2
- package/dist/types/test/ui/table_picker.test.d.ts.map +0 -1
- package/dist/types/test/ui/table_picker_synced.test.d.ts +0 -2
- package/dist/types/test/ui/table_picker_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/text.test.d.ts +0 -2
- package/dist/types/test/ui/text.test.d.ts.map +0 -1
- package/dist/types/test/ui/text_button.test.d.ts +0 -2
- package/dist/types/test/ui/text_button.test.d.ts.map +0 -1
- package/dist/types/test/ui/tooltip.test.d.ts +0 -2
- package/dist/types/test/ui/tooltip.test.d.ts.map +0 -1
- package/dist/types/test/ui/ui.test.d.ts +0 -2
- package/dist/types/test/ui/ui.test.d.ts.map +0 -1
- package/dist/types/test/ui/unstable_standalone_ui.test.d.ts +0 -1
- package/dist/types/test/ui/unstable_standalone_ui.test.d.ts.map +0 -1
- package/dist/types/test/ui/use_array_identity.test.d.ts +0 -2
- package/dist/types/test/ui/use_array_identity.test.d.ts.map +0 -1
- package/dist/types/test/ui/use_loadable.test.d.ts +0 -2
- package/dist/types/test/ui/use_loadable.test.d.ts.map +0 -1
- package/dist/types/test/ui/use_record_action_data.test.d.ts +0 -2
- package/dist/types/test/ui/use_record_action_data.test.d.ts.map +0 -1
- package/dist/types/test/ui/use_records.test.d.ts +0 -2
- package/dist/types/test/ui/use_records.test.d.ts.map +0 -1
- package/dist/types/test/ui/use_view_metadata.test.d.ts +0 -2
- package/dist/types/test/ui/use_view_metadata.test.d.ts.map +0 -1
- package/dist/types/test/ui/use_watchable.test.d.ts +0 -2
- package/dist/types/test/ui/use_watchable.test.d.ts.map +0 -1
- package/dist/types/test/ui/view_picker.test.d.ts +0 -2
- package/dist/types/test/ui/view_picker.test.d.ts.map +0 -1
- package/dist/types/test/ui/view_picker_synced.test.d.ts +0 -2
- package/dist/types/test/ui/view_picker_synced.test.d.ts.map +0 -1
- package/dist/types/test/ui/viewport_constraint.test.d.ts +0 -2
- package/dist/types/test/ui/viewport_constraint.test.d.ts.map +0 -1
- package/dist/types/test/unstable_private_utils.test.d.ts +0 -1
- 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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3411
|
-
export
|
|
3412
|
-
export
|
|
3413
|
-
export
|
|
3414
|
-
export
|
|
3415
|
-
export
|
|
3416
|
-
export
|
|
3417
|
-
|
|
3418
|
-
export
|
|
3419
|
-
export
|
|
3420
|
-
export
|
|
3421
|
-
export
|
|
3422
|
-
export
|
|
3423
|
-
export
|
|
3424
|
-
export
|
|
3425
|
-
export
|
|
3426
|
-
export
|
|
3427
|
-
export
|
|
3428
|
-
export
|
|
3429
|
-
export
|
|
3430
|
-
export
|
|
3431
|
-
export
|
|
3432
|
-
export
|
|
3433
|
-
export
|
|
3434
|
-
export
|
|
3435
|
-
export
|
|
3436
|
-
export
|
|
3437
|
-
export
|
|
3438
|
-
export
|
|
3439
|
-
export
|
|
3440
|
-
export
|
|
3441
|
-
export
|
|
3442
|
-
export
|
|
3443
|
-
export
|
|
3444
|
-
export
|
|
3445
|
-
export
|
|
3446
|
-
export
|
|
3447
|
-
export
|
|
3448
|
-
export
|
|
3449
|
-
export
|
|
3450
|
-
export
|
|
3451
|
-
export
|
|
3452
|
-
export
|
|
3453
|
-
export
|
|
3454
|
-
export
|
|
3455
|
-
export
|
|
3456
|
-
export
|
|
3457
|
-
export
|
|
3458
|
-
export
|
|
3459
|
-
export
|
|
3460
|
-
export
|
|
3461
|
-
export
|
|
3462
|
-
export
|
|
3463
|
-
export
|
|
3464
|
-
export
|
|
3465
|
-
export
|
|
3466
|
-
export
|
|
3467
|
-
export
|
|
3468
|
-
export
|
|
3469
|
-
export
|
|
3470
|
-
export
|
|
3471
|
-
export
|
|
3472
|
-
export
|
|
3473
|
-
export
|
|
3474
|
-
export
|
|
3475
|
-
export
|
|
3476
|
-
export
|
|
3477
|
-
export
|
|
3478
|
-
export
|
|
3479
|
-
export
|
|
3480
|
-
export
|
|
3481
|
-
export
|
|
3482
|
-
export
|
|
3483
|
-
export
|
|
3484
|
-
export
|
|
3485
|
-
export
|
|
3486
|
-
export
|
|
3487
|
-
export
|
|
3488
|
-
export
|
|
3489
|
-
export
|
|
3490
|
-
export
|
|
3491
|
-
export
|
|
3492
|
-
export
|
|
3493
|
-
export
|
|
3494
|
-
export
|
|
3495
|
-
export
|
|
3496
|
-
export
|
|
3497
|
-
export
|
|
3498
|
-
export
|
|
3499
|
-
export
|
|
3500
|
-
export
|
|
3501
|
-
export
|
|
3502
|
-
export
|
|
3503
|
-
export
|
|
3504
|
-
export
|
|
3505
|
-
export
|
|
3506
|
-
export
|
|
3507
|
-
export
|
|
3508
|
-
export
|
|
3509
|
-
export
|
|
3510
|
-
export
|
|
3511
|
-
export
|
|
3512
|
-
export
|
|
3513
|
-
export
|
|
3514
|
-
export
|
|
3515
|
-
export
|
|
3516
|
-
export
|
|
3517
|
-
export
|
|
3518
|
-
export
|
|
3519
|
-
export
|
|
3520
|
-
export
|
|
3521
|
-
export
|
|
3522
|
-
export
|
|
3523
|
-
export
|
|
3524
|
-
export
|
|
3525
|
-
export
|
|
3526
|
-
export
|
|
3527
|
-
export
|
|
3528
|
-
export
|
|
3529
|
-
export
|
|
3530
|
-
export
|
|
3531
|
-
export
|
|
3532
|
-
export
|
|
3533
|
-
export
|
|
3534
|
-
export
|
|
3535
|
-
export
|
|
3536
|
-
export
|
|
3537
|
-
export
|
|
3538
|
-
export
|
|
3539
|
-
export
|
|
3540
|
-
export
|
|
3541
|
-
export
|
|
3542
|
-
export
|
|
3543
|
-
export
|
|
3544
|
-
export
|
|
3545
|
-
export
|
|
3546
|
-
export
|
|
3547
|
-
export
|
|
3548
|
-
export
|
|
3549
|
-
export
|
|
3550
|
-
export
|
|
3551
|
-
export
|
|
3552
|
-
export
|
|
3553
|
-
export
|
|
3554
|
-
export
|
|
3555
|
-
export
|
|
3556
|
-
export
|
|
3557
|
-
export
|
|
3558
|
-
export
|
|
3559
|
-
export
|
|
3560
|
-
export
|
|
3561
|
-
export
|
|
3562
|
-
export
|
|
3563
|
-
export
|
|
3564
|
-
export
|
|
3565
|
-
export
|
|
3566
|
-
export
|
|
3567
|
-
export
|
|
3568
|
-
export
|
|
3569
|
-
export
|
|
3570
|
-
export
|
|
3571
|
-
export
|
|
3572
|
-
export
|
|
3573
|
-
export
|
|
3574
|
-
export
|
|
3575
|
-
export
|
|
3576
|
-
export
|
|
3577
|
-
export
|
|
3578
|
-
export
|
|
3579
|
-
export
|
|
3580
|
-
export
|
|
3581
|
-
export
|
|
3582
|
-
export
|
|
3583
|
-
export
|
|
3584
|
-
export
|
|
3585
|
-
export
|
|
3586
|
-
export
|
|
3587
|
-
export
|
|
3588
|
-
export
|
|
3589
|
-
export
|
|
3590
|
-
export
|
|
3591
|
-
export
|
|
3592
|
-
export
|
|
3593
|
-
export
|
|
3594
|
-
export
|
|
3595
|
-
export
|
|
3596
|
-
export
|
|
3597
|
-
export
|
|
3598
|
-
export
|
|
3599
|
-
export
|
|
3600
|
-
export
|
|
3601
|
-
export
|
|
3602
|
-
export
|
|
3603
|
-
export
|
|
3604
|
-
export
|
|
3605
|
-
export
|
|
3606
|
-
export
|
|
3607
|
-
export
|
|
3608
|
-
export
|
|
3609
|
-
export
|
|
3610
|
-
export
|
|
3611
|
-
export
|
|
3612
|
-
export
|
|
3613
|
-
export
|
|
3614
|
-
export
|
|
3615
|
-
export
|
|
3616
|
-
export
|
|
3617
|
-
export
|
|
3618
|
-
export
|
|
3619
|
-
export
|
|
3620
|
-
export
|
|
3621
|
-
export
|
|
3622
|
-
export
|
|
3623
|
-
export
|
|
3624
|
-
export
|
|
3625
|
-
export
|
|
3626
|
-
export
|
|
3627
|
-
export
|
|
3628
|
-
export
|
|
3629
|
-
export
|
|
3630
|
-
export
|
|
3631
|
-
export
|
|
3632
|
-
export
|
|
3633
|
-
export
|
|
3634
|
-
export
|
|
3635
|
-
export
|
|
3636
|
-
export
|
|
3637
|
-
export
|
|
3638
|
-
export
|
|
3639
|
-
export
|
|
3640
|
-
export
|
|
3641
|
-
export
|
|
3642
|
-
export
|
|
3643
|
-
export
|
|
3644
|
-
export
|
|
3645
|
-
export
|
|
3646
|
-
export
|
|
3647
|
-
export
|
|
3648
|
-
export
|
|
3649
|
-
export
|
|
3650
|
-
export
|
|
3651
|
-
export
|
|
3652
|
-
export
|
|
3653
|
-
export
|
|
3654
|
-
export
|
|
3655
|
-
export
|
|
3656
|
-
export
|
|
3657
|
-
export
|
|
3658
|
-
export
|
|
3659
|
-
export
|
|
3660
|
-
export
|
|
3661
|
-
export
|
|
3662
|
-
export
|
|
3663
|
-
export
|
|
3664
|
-
export
|
|
3665
|
-
export
|
|
3666
|
-
export
|
|
3667
|
-
export
|
|
3668
|
-
export
|
|
3669
|
-
export
|
|
3670
|
-
export
|
|
3671
|
-
export
|
|
3672
|
-
export
|
|
3673
|
-
export
|
|
3674
|
-
export
|
|
3675
|
-
export
|
|
3676
|
-
export
|
|
3677
|
-
export
|
|
3678
|
-
export
|
|
3679
|
-
export
|
|
3680
|
-
export
|
|
3681
|
-
export
|
|
3682
|
-
export
|
|
3683
|
-
export
|
|
3684
|
-
export
|
|
3685
|
-
export
|
|
3686
|
-
export
|
|
3687
|
-
export
|
|
3688
|
-
export
|
|
3689
|
-
export
|
|
3690
|
-
export
|
|
3691
|
-
export
|
|
3692
|
-
export
|
|
3693
|
-
export
|
|
3694
|
-
export
|
|
3695
|
-
export
|
|
3696
|
-
export
|
|
3697
|
-
export
|
|
3698
|
-
export
|
|
3699
|
-
export
|
|
3700
|
-
export
|
|
3701
|
-
export
|
|
3702
|
-
export
|
|
3703
|
-
export
|
|
3704
|
-
export
|
|
3705
|
-
export
|
|
3706
|
-
export
|
|
3707
|
-
export
|
|
3708
|
-
export
|
|
3709
|
-
export
|
|
3710
|
-
export
|
|
3711
|
-
export
|
|
3712
|
-
export
|
|
3713
|
-
export
|
|
3714
|
-
export
|
|
3715
|
-
export
|
|
3716
|
-
export
|
|
3717
|
-
export
|
|
3718
|
-
export
|
|
3719
|
-
export
|
|
3720
|
-
export
|
|
3721
|
-
export
|
|
3722
|
-
export
|
|
3723
|
-
export
|
|
3724
|
-
export
|
|
3725
|
-
export
|
|
3726
|
-
export
|
|
3727
|
-
export
|
|
3728
|
-
export
|
|
3729
|
-
export
|
|
3730
|
-
export
|
|
3731
|
-
export
|
|
3732
|
-
export
|
|
3733
|
-
export
|
|
3734
|
-
export
|
|
3735
|
-
export
|
|
3736
|
-
export
|
|
3737
|
-
export
|
|
3738
|
-
export
|
|
3739
|
-
export
|
|
3740
|
-
export
|
|
3741
|
-
export
|
|
3742
|
-
export
|
|
3743
|
-
export
|
|
3744
|
-
export
|
|
3745
|
-
export
|
|
3746
|
-
export
|
|
3747
|
-
export
|
|
3748
|
-
export
|
|
3749
|
-
export
|
|
3750
|
-
export
|
|
3751
|
-
export
|
|
3752
|
-
export
|
|
3753
|
-
export
|
|
3754
|
-
export
|
|
3755
|
-
export
|
|
3756
|
-
export
|
|
3757
|
-
export
|
|
3758
|
-
export
|
|
3759
|
-
export
|
|
3760
|
-
export
|
|
3761
|
-
export
|
|
3762
|
-
export
|
|
3763
|
-
export
|
|
3764
|
-
export
|
|
3765
|
-
export
|
|
3766
|
-
export
|
|
3767
|
-
export
|
|
3768
|
-
export
|
|
3769
|
-
export
|
|
3770
|
-
export
|
|
3771
|
-
export
|
|
3772
|
-
export
|
|
3773
|
-
export
|
|
3774
|
-
export
|
|
3775
|
-
export
|
|
3776
|
-
export
|
|
3777
|
-
export
|
|
3778
|
-
export
|
|
3779
|
-
export
|
|
3780
|
-
export
|
|
3781
|
-
export
|
|
3782
|
-
export
|
|
3783
|
-
export
|
|
3784
|
-
export
|
|
3785
|
-
export
|
|
3786
|
-
export
|
|
3787
|
-
export
|
|
3788
|
-
export
|
|
3789
|
-
export
|
|
3790
|
-
export
|
|
3791
|
-
export
|
|
3792
|
-
export
|
|
3793
|
-
export
|
|
3794
|
-
export
|
|
3795
|
-
export
|
|
3796
|
-
export
|
|
3797
|
-
export
|
|
3798
|
-
export
|
|
3799
|
-
export
|
|
3800
|
-
export
|
|
3801
|
-
export
|
|
3802
|
-
export
|
|
3803
|
-
export
|
|
3804
|
-
export
|
|
3805
|
-
export
|
|
3806
|
-
export
|
|
3807
|
-
export
|
|
3808
|
-
export
|
|
3809
|
-
export
|
|
3810
|
-
export
|
|
3811
|
-
export
|
|
3812
|
-
export
|
|
3813
|
-
export
|
|
3814
|
-
export
|
|
3815
|
-
export
|
|
3816
|
-
export
|
|
3817
|
-
export
|
|
3818
|
-
export
|
|
3819
|
-
export
|
|
3820
|
-
export
|
|
3821
|
-
export
|
|
3822
|
-
export
|
|
3823
|
-
export
|
|
3824
|
-
export
|
|
3825
|
-
export
|
|
3826
|
-
export
|
|
3827
|
-
export
|
|
3828
|
-
export
|
|
3829
|
-
export
|
|
3830
|
-
export
|
|
3831
|
-
export
|
|
3832
|
-
export
|
|
3833
|
-
export
|
|
3834
|
-
export
|
|
3835
|
-
export
|
|
3836
|
-
export
|
|
3837
|
-
export
|
|
3838
|
-
export
|
|
3839
|
-
export
|
|
3840
|
-
export
|
|
3841
|
-
export
|
|
3842
|
-
export
|
|
3843
|
-
export
|
|
3844
|
-
export
|
|
3845
|
-
export
|
|
3846
|
-
export
|
|
3847
|
-
export
|
|
3848
|
-
export
|
|
3849
|
-
export
|
|
3850
|
-
export
|
|
3851
|
-
export
|
|
3852
|
-
export
|
|
3853
|
-
export
|
|
3854
|
-
export
|
|
3855
|
-
export
|
|
3856
|
-
export
|
|
3857
|
-
export
|
|
3858
|
-
export
|
|
3859
|
-
export
|
|
3860
|
-
export
|
|
3861
|
-
export
|
|
3862
|
-
export
|
|
3863
|
-
export
|
|
3864
|
-
export
|
|
3865
|
-
export
|
|
3866
|
-
export
|
|
3867
|
-
export
|
|
3868
|
-
export
|
|
3869
|
-
export
|
|
3870
|
-
export
|
|
3871
|
-
export
|
|
3872
|
-
export
|
|
3873
|
-
export
|
|
3874
|
-
export
|
|
3875
|
-
export
|
|
3876
|
-
export
|
|
3877
|
-
export
|
|
3878
|
-
export
|
|
3879
|
-
export
|
|
3880
|
-
export
|
|
3881
|
-
export
|
|
3882
|
-
export
|
|
3883
|
-
export
|
|
3884
|
-
export
|
|
3885
|
-
export
|
|
3886
|
-
export
|
|
3887
|
-
export
|
|
3888
|
-
export
|
|
3889
|
-
export
|
|
3890
|
-
export
|
|
3891
|
-
export
|
|
3892
|
-
export
|
|
3893
|
-
export
|
|
3894
|
-
export
|
|
3895
|
-
export
|
|
3896
|
-
export
|
|
3897
|
-
export
|
|
3898
|
-
export
|
|
3899
|
-
export
|
|
3900
|
-
export
|
|
3901
|
-
export
|
|
3902
|
-
export
|
|
3903
|
-
export
|
|
3904
|
-
export
|
|
3905
|
-
export
|
|
3906
|
-
export
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3961
|
-
|
|
3962
|
-
|
|
3963
|
-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
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
|