@airtable/blocks 0.0.0-experimental-20e3506bd-20250428
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/README.md +28 -0
- package/dist/cjs/base/index.js +96 -0
- package/dist/cjs/base/models/abstract_model_with_async_data.js +273 -0
- package/dist/cjs/base/models/base.js +306 -0
- package/dist/cjs/base/models/create_aggregators.js +115 -0
- package/dist/cjs/base/models/cursor.js +393 -0
- package/dist/cjs/base/models/field.js +427 -0
- package/dist/cjs/base/models/grouped_record_query_result.js +399 -0
- package/dist/cjs/base/models/linked_records_query_result.js +728 -0
- package/dist/cjs/base/models/models.js +137 -0
- package/dist/cjs/base/models/mutations.js +516 -0
- package/dist/cjs/base/models/object_pool.js +184 -0
- package/dist/cjs/base/models/record.js +304 -0
- package/dist/cjs/base/models/record_coloring.js +112 -0
- package/dist/cjs/base/models/record_query_result.js +741 -0
- package/dist/cjs/base/models/record_store.js +825 -0
- package/dist/cjs/base/models/session.js +182 -0
- package/dist/cjs/base/models/table.js +1737 -0
- package/dist/cjs/base/models/table_or_view_query_result.js +1013 -0
- package/dist/cjs/base/models/view.js +431 -0
- package/dist/cjs/base/models/view_data_store.js +403 -0
- package/dist/cjs/base/models/view_metadata_query_result.js +224 -0
- package/dist/cjs/base/perform_record_action.js +257 -0
- package/dist/cjs/base/sdk.js +230 -0
- package/dist/cjs/base/settings_button.js +138 -0
- package/dist/cjs/base/types/aggregators.js +1 -0
- package/dist/cjs/base/types/airtable_interface.js +39 -0
- package/dist/cjs/base/types/backend_fetch_types.js +1 -0
- package/dist/cjs/base/types/base.js +1 -0
- package/dist/cjs/base/types/cursor.js +1 -0
- package/dist/cjs/base/types/mutations.js +112 -0
- package/dist/cjs/base/types/record.js +1 -0
- package/dist/cjs/base/types/record_action_data.js +1 -0
- package/dist/cjs/base/types/table.js +1 -0
- package/dist/cjs/base/types/undo_redo.js +12 -0
- package/dist/cjs/base/types/view.js +41 -0
- package/dist/cjs/base/types/viewport.js +1 -0
- package/dist/cjs/base/ui/base_provider.js +50 -0
- package/dist/cjs/base/ui/baymax_utils.js +133 -0
- package/dist/cjs/base/ui/block_wrapper.js +143 -0
- package/dist/cjs/base/ui/box.js +110 -0
- package/dist/cjs/base/ui/button.js +182 -0
- package/dist/cjs/base/ui/cell_renderer.js +255 -0
- package/dist/cjs/base/ui/choice_token.js +110 -0
- package/dist/cjs/base/ui/collaborator_token.js +145 -0
- package/dist/cjs/base/ui/color_palette.js +239 -0
- package/dist/cjs/base/ui/color_palette_synced.js +98 -0
- package/dist/cjs/base/ui/confirmation_dialog.js +153 -0
- package/dist/cjs/base/ui/control_sizes.js +102 -0
- package/dist/cjs/base/ui/create_detect_element_resize.js +207 -0
- package/dist/cjs/base/ui/css_helpers.js +23 -0
- package/dist/cjs/base/ui/dialog.js +142 -0
- package/dist/cjs/base/ui/dialog_close_button.js +152 -0
- package/dist/cjs/base/ui/expand_record.js +40 -0
- package/dist/cjs/base/ui/expand_record_list.js +47 -0
- package/dist/cjs/base/ui/expand_record_picker_async.js +100 -0
- package/dist/cjs/base/ui/field_icon.js +62 -0
- package/dist/cjs/base/ui/field_picker.js +143 -0
- package/dist/cjs/base/ui/field_picker_synced.js +88 -0
- package/dist/cjs/base/ui/form_field.js +137 -0
- package/dist/cjs/base/ui/geometry/geometry.js +27 -0
- package/dist/cjs/base/ui/geometry/point.js +21 -0
- package/dist/cjs/base/ui/geometry/rect.js +67 -0
- package/dist/cjs/base/ui/geometry/size.js +21 -0
- package/dist/cjs/base/ui/global_alert.js +92 -0
- package/dist/cjs/base/ui/heading.js +181 -0
- package/dist/cjs/base/ui/icon.js +129 -0
- package/dist/cjs/base/ui/icon_config.js +434 -0
- package/dist/cjs/base/ui/initialize_block.js +126 -0
- package/dist/cjs/base/ui/input.js +200 -0
- package/dist/cjs/base/ui/input_synced.js +89 -0
- package/dist/cjs/base/ui/key_codes.js +74 -0
- package/dist/cjs/base/ui/label.js +105 -0
- package/dist/cjs/base/ui/link.js +229 -0
- package/dist/cjs/base/ui/loader.js +82 -0
- package/dist/cjs/base/ui/modal.js +184 -0
- package/dist/cjs/base/ui/model_picker_select.js +83 -0
- package/dist/cjs/base/ui/popover.js +407 -0
- package/dist/cjs/base/ui/progress_bar.js +128 -0
- package/dist/cjs/base/ui/record_card.js +653 -0
- package/dist/cjs/base/ui/record_card_list.js +377 -0
- package/dist/cjs/base/ui/select.js +247 -0
- package/dist/cjs/base/ui/select_and_select_buttons_helpers.js +85 -0
- package/dist/cjs/base/ui/select_buttons.js +192 -0
- package/dist/cjs/base/ui/select_buttons_synced.js +84 -0
- package/dist/cjs/base/ui/select_synced.js +87 -0
- package/dist/cjs/base/ui/switch.js +196 -0
- package/dist/cjs/base/ui/switch_synced.js +75 -0
- package/dist/cjs/base/ui/synced.js +70 -0
- package/dist/cjs/base/ui/system/all_styles_set.js +100 -0
- package/dist/cjs/base/ui/system/appearance/appearance_set.js +30 -0
- package/dist/cjs/base/ui/system/appearance/background_color.js +21 -0
- package/dist/cjs/base/ui/system/appearance/border.js +57 -0
- package/dist/cjs/base/ui/system/appearance/border_radius.js +21 -0
- package/dist/cjs/base/ui/system/appearance/box_shadow.js +21 -0
- package/dist/cjs/base/ui/system/appearance/opacity.js +21 -0
- package/dist/cjs/base/ui/system/dimensions/dimensions_set.js +31 -0
- package/dist/cjs/base/ui/system/dimensions/height.js +21 -0
- package/dist/cjs/base/ui/system/dimensions/max_height.js +21 -0
- package/dist/cjs/base/ui/system/dimensions/max_width.js +21 -0
- package/dist/cjs/base/ui/system/dimensions/min_height.js +21 -0
- package/dist/cjs/base/ui/system/dimensions/min_width.js +21 -0
- package/dist/cjs/base/ui/system/dimensions/width.js +21 -0
- package/dist/cjs/base/ui/system/display.js +22 -0
- package/dist/cjs/base/ui/system/flex_container/align_content.js +18 -0
- package/dist/cjs/base/ui/system/flex_container/align_items.js +18 -0
- package/dist/cjs/base/ui/system/flex_container/flex_container_set.js +31 -0
- package/dist/cjs/base/ui/system/flex_container/flex_direction.js +18 -0
- package/dist/cjs/base/ui/system/flex_container/flex_wrap.js +18 -0
- package/dist/cjs/base/ui/system/flex_container/justify_content.js +18 -0
- package/dist/cjs/base/ui/system/flex_container/justify_items.js +19 -0
- package/dist/cjs/base/ui/system/flex_item/align_self.js +18 -0
- package/dist/cjs/base/ui/system/flex_item/flex.js +18 -0
- package/dist/cjs/base/ui/system/flex_item/flex_basis.js +18 -0
- package/dist/cjs/base/ui/system/flex_item/flex_grow.js +18 -0
- package/dist/cjs/base/ui/system/flex_item/flex_item_set.js +32 -0
- package/dist/cjs/base/ui/system/flex_item/flex_shrink.js +18 -0
- package/dist/cjs/base/ui/system/flex_item/justify_self.js +19 -0
- package/dist/cjs/base/ui/system/flex_item/order.js +18 -0
- package/dist/cjs/base/ui/system/index.js +993 -0
- package/dist/cjs/base/ui/system/overflow.js +24 -0
- package/dist/cjs/base/ui/system/position/bottom.js +26 -0
- package/dist/cjs/base/ui/system/position/left.js +26 -0
- package/dist/cjs/base/ui/system/position/position.js +18 -0
- package/dist/cjs/base/ui/system/position/position_set.js +31 -0
- package/dist/cjs/base/ui/system/position/right.js +26 -0
- package/dist/cjs/base/ui/system/position/top.js +26 -0
- package/dist/cjs/base/ui/system/position/z_index.js +21 -0
- package/dist/cjs/base/ui/system/spacing/margin.js +74 -0
- package/dist/cjs/base/ui/system/spacing/padding.js +67 -0
- package/dist/cjs/base/ui/system/spacing/spacing_set.js +27 -0
- package/dist/cjs/base/ui/system/typography/font_family.js +21 -0
- package/dist/cjs/base/ui/system/typography/font_size.js +21 -0
- package/dist/cjs/base/ui/system/typography/font_style.js +18 -0
- package/dist/cjs/base/ui/system/typography/font_weight.js +21 -0
- package/dist/cjs/base/ui/system/typography/letter_spacing.js +21 -0
- package/dist/cjs/base/ui/system/typography/line_height.js +18 -0
- package/dist/cjs/base/ui/system/typography/text_align.js +18 -0
- package/dist/cjs/base/ui/system/typography/text_color.js +21 -0
- package/dist/cjs/base/ui/system/typography/text_decoration.js +18 -0
- package/dist/cjs/base/ui/system/typography/text_transform.js +18 -0
- package/dist/cjs/base/ui/system/typography/typography_set.js +35 -0
- package/dist/cjs/base/ui/system/utils/create_responsive_prop_type.js +19 -0
- package/dist/cjs/base/ui/system/utils/create_style_prop_types.js +24 -0
- package/dist/cjs/base/ui/system/utils/csstype.js +1 -0
- package/dist/cjs/base/ui/system/utils/ensure_numbers_are_within_scale.js +40 -0
- package/dist/cjs/base/ui/system/utils/enum_prop_type_utils.js +35 -0
- package/dist/cjs/base/ui/system/utils/get_style_props_for_responsive_prop.js +113 -0
- package/dist/cjs/base/ui/system/utils/types.js +1 -0
- package/dist/cjs/base/ui/table_picker.js +95 -0
- package/dist/cjs/base/ui/table_picker_synced.js +84 -0
- package/dist/cjs/base/ui/text.js +150 -0
- package/dist/cjs/base/ui/text_button.js +228 -0
- package/dist/cjs/base/ui/theme/default_theme/button_variants.js +59 -0
- package/dist/cjs/base/ui/theme/default_theme/control_sizes.js +96 -0
- package/dist/cjs/base/ui/theme/default_theme/heading_styles.js +99 -0
- package/dist/cjs/base/ui/theme/default_theme/index.js +48 -0
- package/dist/cjs/base/ui/theme/default_theme/input_variants.js +38 -0
- package/dist/cjs/base/ui/theme/default_theme/link_variants.js +35 -0
- package/dist/cjs/base/ui/theme/default_theme/select_buttons_variants.js +72 -0
- package/dist/cjs/base/ui/theme/default_theme/select_variants.js +59 -0
- package/dist/cjs/base/ui/theme/default_theme/switch_variants.js +91 -0
- package/dist/cjs/base/ui/theme/default_theme/text_button_variants.js +44 -0
- package/dist/cjs/base/ui/theme/default_theme/text_styles.js +81 -0
- package/dist/cjs/base/ui/theme/default_theme/tokens.js +211 -0
- package/dist/cjs/base/ui/theme/theme_context.js +13 -0
- package/dist/cjs/base/ui/theme/use_theme.js +11 -0
- package/dist/cjs/base/ui/tooltip.js +215 -0
- package/dist/cjs/base/ui/types/aria_props.js +23 -0
- package/dist/cjs/base/ui/types/data_attributes_prop.js +18 -0
- package/dist/cjs/base/ui/types/tooltip_anchor_props.js +17 -0
- package/dist/cjs/base/ui/ui.js +375 -0
- package/dist/cjs/base/ui/unstable_standalone_ui.js +179 -0
- package/dist/cjs/base/ui/use_base.js +44 -0
- package/dist/cjs/base/ui/use_cursor.js +46 -0
- package/dist/cjs/base/ui/use_form_field.js +20 -0
- package/dist/cjs/base/ui/use_record_action_data.js +80 -0
- package/dist/cjs/base/ui/use_records.js +265 -0
- package/dist/cjs/base/ui/use_session.js +42 -0
- package/dist/cjs/base/ui/use_settings_button.js +53 -0
- package/dist/cjs/base/ui/use_styled_system.js +32 -0
- package/dist/cjs/base/ui/use_text_color_for_background_color.js +14 -0
- package/dist/cjs/base/ui/use_view_metadata.js +49 -0
- package/dist/cjs/base/ui/use_viewport.js +47 -0
- package/dist/cjs/base/ui/view_picker.js +133 -0
- package/dist/cjs/base/ui/view_picker_synced.js +88 -0
- package/dist/cjs/base/ui/viewport_constraint.js +176 -0
- package/dist/cjs/base/ui/with_styled_system.js +165 -0
- package/dist/cjs/base/undo_redo.js +48 -0
- package/dist/cjs/base/unstable_testing_utils.js +170 -0
- package/dist/cjs/base/viewport.js +397 -0
- package/dist/cjs/injected/airtable_interface.js +22 -0
- package/dist/cjs/interface/index.js +36 -0
- package/dist/cjs/interface/models/base.js +54 -0
- package/dist/cjs/interface/models/field.js +42 -0
- package/dist/cjs/interface/models/mutations.js +65 -0
- package/dist/cjs/interface/models/record.js +46 -0
- package/dist/cjs/interface/models/record_store.js +83 -0
- package/dist/cjs/interface/models/session.js +42 -0
- package/dist/cjs/interface/models/table.js +47 -0
- package/dist/cjs/interface/sdk.js +119 -0
- package/dist/cjs/interface/types/airtable_interface.js +36 -0
- package/dist/cjs/interface/types/base.js +1 -0
- package/dist/cjs/interface/types/mutations.js +24 -0
- package/dist/cjs/interface/types/record.js +1 -0
- package/dist/cjs/interface/types/table.js +1 -0
- package/dist/cjs/interface/ui/block_wrapper.js +61 -0
- package/dist/cjs/interface/ui/expand_record.js +26 -0
- package/dist/cjs/interface/ui/initialize_block.js +98 -0
- package/dist/cjs/interface/ui/ui.js +105 -0
- package/dist/cjs/interface/ui/use_base.js +43 -0
- package/dist/cjs/interface/ui/use_custom_properties.js +158 -0
- package/dist/cjs/interface/ui/use_records.js +55 -0
- package/dist/cjs/interface/ui/use_run_info.js +42 -0
- package/dist/cjs/interface/ui/use_session.js +40 -0
- package/dist/cjs/sdk_mode.js +1 -0
- package/dist/cjs/shared/color_utils.js +65 -0
- package/dist/cjs/shared/colors.js +184 -0
- package/dist/cjs/shared/error_utils.js +96 -0
- package/dist/cjs/shared/event_tracker.js +28 -0
- package/dist/cjs/shared/global_config.js +506 -0
- package/dist/cjs/shared/models/abstract_model.js +119 -0
- package/dist/cjs/shared/models/base_core.js +579 -0
- package/dist/cjs/shared/models/field_core.js +329 -0
- package/dist/cjs/shared/models/mutations_core.js +171 -0
- package/dist/cjs/shared/models/record_core.js +272 -0
- package/dist/cjs/shared/models/record_store_core.js +213 -0
- package/dist/cjs/shared/models/session_core.js +214 -0
- package/dist/cjs/shared/models/table_core.js +460 -0
- package/dist/cjs/shared/private_utils.js +455 -0
- package/dist/cjs/shared/sdk_core.js +115 -0
- package/dist/cjs/shared/types/airtable_interface_core.js +1 -0
- package/dist/cjs/shared/types/attachment.js +1 -0
- package/dist/cjs/shared/types/base_core.js +1 -0
- package/dist/cjs/shared/types/collaborator.js +1 -0
- package/dist/cjs/shared/types/field.js +119 -0
- package/dist/cjs/shared/types/global_config.js +1 -0
- package/dist/cjs/shared/types/hyper_ids.js +1 -0
- package/dist/cjs/shared/types/mutation_constants.js +11 -0
- package/dist/cjs/shared/types/mutations_core.js +34 -0
- package/dist/cjs/shared/types/permission_levels.js +17 -0
- package/dist/cjs/shared/types/record.js +1 -0
- package/dist/cjs/shared/types/stat.js +1 -0
- package/dist/cjs/shared/types/table_core.js +1 -0
- package/dist/cjs/shared/ui/global_config_synced_component_helpers.js +27 -0
- package/dist/cjs/shared/ui/loader.js +68 -0
- package/dist/cjs/shared/ui/remote_utils.js +92 -0
- package/dist/cjs/shared/ui/sdk_context.js +21 -0
- package/dist/cjs/shared/ui/use_array_identity.js +32 -0
- package/dist/cjs/shared/ui/use_base.js +21 -0
- package/dist/cjs/shared/ui/use_global_config.js +47 -0
- package/dist/cjs/shared/ui/use_loadable.js +240 -0
- package/dist/cjs/shared/ui/use_session.js +20 -0
- package/dist/cjs/shared/ui/use_synced.js +45 -0
- package/dist/cjs/shared/ui/use_watchable.js +169 -0
- package/dist/cjs/shared/ui/with_hooks.js +151 -0
- package/dist/cjs/shared/unstable_private_utils.js +51 -0
- package/dist/cjs/shared/warning.js +26 -0
- package/dist/cjs/shared/watchable.js +216 -0
- package/dist/cjs/stats/block_stats.js +96 -0
- package/dist/cjs/testing/abstract_mock_airtable_interface.js +277 -0
- package/dist/types/src/base/index.d.ts +13 -0
- package/dist/types/src/base/index.d.ts.map +1 -0
- package/dist/types/src/base/models/abstract_model_with_async_data.d.ts +47 -0
- package/dist/types/src/base/models/abstract_model_with_async_data.d.ts.map +1 -0
- package/dist/types/src/base/models/base.d.ts +142 -0
- package/dist/types/src/base/models/base.d.ts.map +1 -0
- package/dist/types/src/base/models/create_aggregators.d.ts +59 -0
- package/dist/types/src/base/models/create_aggregators.d.ts.map +1 -0
- package/dist/types/src/base/models/cursor.d.ts +143 -0
- package/dist/types/src/base/models/cursor.d.ts.map +1 -0
- package/dist/types/src/base/models/field.d.ts +249 -0
- package/dist/types/src/base/models/field.d.ts.map +1 -0
- package/dist/types/src/base/models/grouped_record_query_result.d.ts +60 -0
- package/dist/types/src/base/models/grouped_record_query_result.d.ts.map +1 -0
- package/dist/types/src/base/models/linked_records_query_result.d.ts +55 -0
- package/dist/types/src/base/models/linked_records_query_result.d.ts.map +1 -0
- package/dist/types/src/base/models/models.d.ts +20 -0
- package/dist/types/src/base/models/models.d.ts.map +1 -0
- package/dist/types/src/base/models/mutations.d.ts +7 -0
- package/dist/types/src/base/models/mutations.d.ts.map +1 -0
- package/dist/types/src/base/models/object_pool.d.ts +17 -0
- package/dist/types/src/base/models/object_pool.d.ts.map +1 -0
- package/dist/types/src/base/models/record.d.ts +144 -0
- package/dist/types/src/base/models/record.d.ts.map +1 -0
- package/dist/types/src/base/models/record_coloring.d.ts +97 -0
- package/dist/types/src/base/models/record_coloring.d.ts.map +1 -0
- package/dist/types/src/base/models/record_query_result.d.ts +341 -0
- package/dist/types/src/base/models/record_query_result.d.ts.map +1 -0
- package/dist/types/src/base/models/record_store.d.ts +6 -0
- package/dist/types/src/base/models/record_store.d.ts.map +1 -0
- package/dist/types/src/base/models/session.d.ts +124 -0
- package/dist/types/src/base/models/session.d.ts.map +1 -0
- package/dist/types/src/base/models/table.d.ts +1146 -0
- package/dist/types/src/base/models/table.d.ts.map +1 -0
- package/dist/types/src/base/models/table_or_view_query_result.d.ts +61 -0
- package/dist/types/src/base/models/table_or_view_query_result.d.ts.map +1 -0
- package/dist/types/src/base/models/view.d.ts +203 -0
- package/dist/types/src/base/models/view.d.ts.map +1 -0
- package/dist/types/src/base/models/view_data_store.d.ts +10 -0
- package/dist/types/src/base/models/view_data_store.d.ts.map +1 -0
- package/dist/types/src/base/models/view_metadata_query_result.d.ts +79 -0
- package/dist/types/src/base/models/view_metadata_query_result.d.ts.map +1 -0
- package/dist/types/src/base/perform_record_action.d.ts +72 -0
- package/dist/types/src/base/perform_record_action.d.ts.map +1 -0
- package/dist/types/src/base/sdk.d.ts +35 -0
- package/dist/types/src/base/sdk.d.ts.map +1 -0
- package/dist/types/src/base/settings_button.d.ts +66 -0
- package/dist/types/src/base/settings_button.d.ts.map +1 -0
- package/dist/types/src/base/types/aggregators.d.ts +4 -0
- package/dist/types/src/base/types/aggregators.d.ts.map +1 -0
- package/dist/types/src/base/types/airtable_interface.d.ts +160 -0
- package/dist/types/src/base/types/airtable_interface.d.ts.map +1 -0
- package/dist/types/src/base/types/backend_fetch_types.d.ts +17 -0
- package/dist/types/src/base/types/backend_fetch_types.d.ts.map +1 -0
- package/dist/types/src/base/types/base.d.ts +11 -0
- package/dist/types/src/base/types/base.d.ts.map +1 -0
- package/dist/types/src/base/types/cursor.d.ts +8 -0
- package/dist/types/src/base/types/cursor.d.ts.map +1 -0
- package/dist/types/src/base/types/mutations.d.ts +270 -0
- package/dist/types/src/base/types/mutations.d.ts.map +1 -0
- package/dist/types/src/base/types/record.d.ts +7 -0
- package/dist/types/src/base/types/record.d.ts.map +1 -0
- package/dist/types/src/base/types/record_action_data.d.ts +22 -0
- package/dist/types/src/base/types/record_action_data.d.ts.map +1 -0
- package/dist/types/src/base/types/table.d.ts +13 -0
- package/dist/types/src/base/types/table.d.ts.map +1 -0
- package/dist/types/src/base/types/undo_redo.d.ts +8 -0
- package/dist/types/src/base/types/undo_redo.d.ts.map +1 -0
- package/dist/types/src/base/types/view.d.ts +70 -0
- package/dist/types/src/base/types/view.d.ts.map +1 -0
- package/dist/types/src/base/types/viewport.d.ts +9 -0
- package/dist/types/src/base/types/viewport.d.ts.map +1 -0
- package/dist/types/src/base/ui/base_provider.d.ts +37 -0
- package/dist/types/src/base/ui/base_provider.d.ts.map +1 -0
- package/dist/types/src/base/ui/baymax_utils.d.ts +2 -0
- package/dist/types/src/base/ui/baymax_utils.d.ts.map +1 -0
- package/dist/types/src/base/ui/block_wrapper.d.ts +24 -0
- package/dist/types/src/base/ui/block_wrapper.d.ts.map +1 -0
- package/dist/types/src/base/ui/box.d.ts +35 -0
- package/dist/types/src/base/ui/box.d.ts.map +1 -0
- package/dist/types/src/base/ui/button.d.ts +91 -0
- package/dist/types/src/base/ui/button.d.ts.map +1 -0
- package/dist/types/src/base/ui/cell_renderer.d.ts +92 -0
- package/dist/types/src/base/ui/cell_renderer.d.ts.map +1 -0
- package/dist/types/src/base/ui/choice_token.d.ts +69 -0
- package/dist/types/src/base/ui/choice_token.d.ts.map +1 -0
- package/dist/types/src/base/ui/collaborator_token.d.ts +65 -0
- package/dist/types/src/base/ui/collaborator_token.d.ts.map +1 -0
- package/dist/types/src/base/ui/color_palette.d.ts +108 -0
- package/dist/types/src/base/ui/color_palette.d.ts.map +1 -0
- package/dist/types/src/base/ui/color_palette_synced.d.ts +44 -0
- package/dist/types/src/base/ui/color_palette_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/confirmation_dialog.d.ts +83 -0
- package/dist/types/src/base/ui/confirmation_dialog.d.ts.map +1 -0
- package/dist/types/src/base/ui/control_sizes.d.ts +17 -0
- package/dist/types/src/base/ui/control_sizes.d.ts.map +1 -0
- package/dist/types/src/base/ui/css_helpers.d.ts +6 -0
- package/dist/types/src/base/ui/css_helpers.d.ts.map +1 -0
- package/dist/types/src/base/ui/dialog.d.ts +80 -0
- package/dist/types/src/base/ui/dialog.d.ts.map +1 -0
- package/dist/types/src/base/ui/dialog_close_button.d.ts +62 -0
- package/dist/types/src/base/ui/dialog_close_button.d.ts.map +1 -0
- package/dist/types/src/base/ui/expand_record.d.ts +27 -0
- package/dist/types/src/base/ui/expand_record.d.ts.map +1 -0
- package/dist/types/src/base/ui/expand_record_list.d.ts +29 -0
- package/dist/types/src/base/ui/expand_record_list.d.ts.map +1 -0
- package/dist/types/src/base/ui/expand_record_picker_async.d.ts +45 -0
- package/dist/types/src/base/ui/expand_record_picker_async.d.ts.map +1 -0
- package/dist/types/src/base/ui/field_icon.d.ts +41 -0
- package/dist/types/src/base/ui/field_icon.d.ts.map +1 -0
- package/dist/types/src/base/ui/field_picker.d.ts +57 -0
- package/dist/types/src/base/ui/field_picker.d.ts.map +1 -0
- package/dist/types/src/base/ui/field_picker_synced.d.ts +18 -0
- package/dist/types/src/base/ui/field_picker_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/form_field.d.ts +46 -0
- package/dist/types/src/base/ui/form_field.d.ts.map +1 -0
- package/dist/types/src/base/ui/geometry/geometry.d.ts +3 -0
- package/dist/types/src/base/ui/geometry/geometry.d.ts.map +1 -0
- package/dist/types/src/base/ui/geometry/point.d.ts +2 -0
- package/dist/types/src/base/ui/geometry/point.d.ts.map +1 -0
- package/dist/types/src/base/ui/geometry/rect.d.ts +2 -0
- package/dist/types/src/base/ui/geometry/rect.d.ts.map +1 -0
- package/dist/types/src/base/ui/geometry/size.d.ts +2 -0
- package/dist/types/src/base/ui/geometry/size.d.ts.map +1 -0
- package/dist/types/src/base/ui/global_alert.d.ts +23 -0
- package/dist/types/src/base/ui/global_alert.d.ts.map +1 -0
- package/dist/types/src/base/ui/heading.d.ts +64 -0
- package/dist/types/src/base/ui/heading.d.ts.map +1 -0
- package/dist/types/src/base/ui/icon.d.ts +61 -0
- package/dist/types/src/base/ui/icon.d.ts.map +1 -0
- package/dist/types/src/base/ui/icon_config.d.ts +425 -0
- package/dist/types/src/base/ui/icon_config.d.ts.map +1 -0
- package/dist/types/src/base/ui/initialize_block.d.ts +44 -0
- package/dist/types/src/base/ui/initialize_block.d.ts.map +1 -0
- package/dist/types/src/base/ui/input.d.ts +154 -0
- package/dist/types/src/base/ui/input.d.ts.map +1 -0
- package/dist/types/src/base/ui/input_synced.d.ts +18 -0
- package/dist/types/src/base/ui/input_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/key_codes.d.ts +2 -0
- package/dist/types/src/base/ui/key_codes.d.ts.map +1 -0
- package/dist/types/src/base/ui/label.d.ts +35 -0
- package/dist/types/src/base/ui/label.d.ts.map +1 -0
- package/dist/types/src/base/ui/link.d.ts +88 -0
- package/dist/types/src/base/ui/link.d.ts.map +1 -0
- package/dist/types/src/base/ui/loader.d.ts +55 -0
- package/dist/types/src/base/ui/loader.d.ts.map +1 -0
- package/dist/types/src/base/ui/modal.d.ts +67 -0
- package/dist/types/src/base/ui/modal.d.ts.map +1 -0
- package/dist/types/src/base/ui/model_picker_select.d.ts +19 -0
- package/dist/types/src/base/ui/model_picker_select.d.ts.map +1 -0
- package/dist/types/src/base/ui/popover.d.ts +122 -0
- package/dist/types/src/base/ui/popover.d.ts.map +1 -0
- package/dist/types/src/base/ui/progress_bar.d.ts +83 -0
- package/dist/types/src/base/ui/progress_bar.d.ts.map +1 -0
- package/dist/types/src/base/ui/record_card.d.ts +102 -0
- package/dist/types/src/base/ui/record_card.d.ts.map +1 -0
- package/dist/types/src/base/ui/record_card_list.d.ts +105 -0
- package/dist/types/src/base/ui/record_card_list.d.ts.map +1 -0
- package/dist/types/src/base/ui/select.d.ts +126 -0
- package/dist/types/src/base/ui/select.d.ts.map +1 -0
- package/dist/types/src/base/ui/select_and_select_buttons_helpers.d.ts +27 -0
- package/dist/types/src/base/ui/select_and_select_buttons_helpers.d.ts.map +1 -0
- package/dist/types/src/base/ui/select_buttons.d.ts +78 -0
- package/dist/types/src/base/ui/select_buttons.d.ts.map +1 -0
- package/dist/types/src/base/ui/select_buttons_synced.d.ts +18 -0
- package/dist/types/src/base/ui/select_buttons_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/select_synced.d.ts +18 -0
- package/dist/types/src/base/ui/select_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/switch.d.ts +104 -0
- package/dist/types/src/base/ui/switch.d.ts.map +1 -0
- package/dist/types/src/base/ui/switch_synced.d.ts +18 -0
- package/dist/types/src/base/ui/switch_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/synced.d.ts +29 -0
- package/dist/types/src/base/ui/synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/all_styles_set.d.ts +88 -0
- package/dist/types/src/base/ui/system/all_styles_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/appearance/appearance_set.d.ts +15 -0
- package/dist/types/src/base/ui/system/appearance/appearance_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/appearance/background_color.d.ts +13 -0
- package/dist/types/src/base/ui/system/appearance/background_color.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/appearance/border.d.ts +31 -0
- package/dist/types/src/base/ui/system/appearance/border.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/appearance/border_radius.d.ts +13 -0
- package/dist/types/src/base/ui/system/appearance/border_radius.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/appearance/box_shadow.d.ts +13 -0
- package/dist/types/src/base/ui/system/appearance/box_shadow.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/appearance/opacity.d.ts +13 -0
- package/dist/types/src/base/ui/system/appearance/opacity.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/dimensions_set.d.ts +16 -0
- package/dist/types/src/base/ui/system/dimensions/dimensions_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/height.d.ts +13 -0
- package/dist/types/src/base/ui/system/dimensions/height.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/max_height.d.ts +13 -0
- package/dist/types/src/base/ui/system/dimensions/max_height.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/max_width.d.ts +13 -0
- package/dist/types/src/base/ui/system/dimensions/max_width.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/min_height.d.ts +13 -0
- package/dist/types/src/base/ui/system/dimensions/min_height.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/min_width.d.ts +13 -0
- package/dist/types/src/base/ui/system/dimensions/min_width.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/dimensions/width.d.ts +13 -0
- package/dist/types/src/base/ui/system/dimensions/width.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/display.d.ts +14 -0
- package/dist/types/src/base/ui/system/display.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/align_content.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_container/align_content.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/align_items.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_container/align_items.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/flex_container_set.d.ts +16 -0
- package/dist/types/src/base/ui/system/flex_container/flex_container_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/flex_direction.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_container/flex_direction.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/flex_wrap.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_container/flex_wrap.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/justify_content.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_container/justify_content.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_container/justify_items.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_container/justify_items.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/align_self.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/align_self.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/flex.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/flex.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/flex_basis.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/flex_basis.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/flex_grow.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/flex_grow.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/flex_item_set.d.ts +17 -0
- package/dist/types/src/base/ui/system/flex_item/flex_item_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/flex_shrink.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/flex_shrink.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/justify_self.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/justify_self.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/flex_item/order.d.ts +13 -0
- package/dist/types/src/base/ui/system/flex_item/order.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/index.d.ts +54 -0
- package/dist/types/src/base/ui/system/index.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/overflow.d.ts +18 -0
- package/dist/types/src/base/ui/system/overflow.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/bottom.d.ts +13 -0
- package/dist/types/src/base/ui/system/position/bottom.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/left.d.ts +13 -0
- package/dist/types/src/base/ui/system/position/left.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/position.d.ts +13 -0
- package/dist/types/src/base/ui/system/position/position.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/position_set.d.ts +16 -0
- package/dist/types/src/base/ui/system/position/position_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/right.d.ts +13 -0
- package/dist/types/src/base/ui/system/position/right.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/top.d.ts +13 -0
- package/dist/types/src/base/ui/system/position/top.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/position/z_index.d.ts +13 -0
- package/dist/types/src/base/ui/system/position/z_index.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/spacing/margin.d.ts +25 -0
- package/dist/types/src/base/ui/system/spacing/margin.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/spacing/padding.d.ts +25 -0
- package/dist/types/src/base/ui/system/spacing/padding.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/spacing/spacing_set.d.ts +12 -0
- package/dist/types/src/base/ui/system/spacing/spacing_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/font_family.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/font_family.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/font_size.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/font_size.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/font_style.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/font_style.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/font_weight.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/font_weight.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/letter_spacing.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/letter_spacing.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/line_height.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/line_height.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/text_align.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/text_align.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/text_color.d.ts +17 -0
- package/dist/types/src/base/ui/system/typography/text_color.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/text_decoration.d.ts +15 -0
- package/dist/types/src/base/ui/system/typography/text_decoration.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/text_transform.d.ts +13 -0
- package/dist/types/src/base/ui/system/typography/text_transform.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/typography/typography_set.d.ts +20 -0
- package/dist/types/src/base/ui/system/typography/typography_set.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/create_responsive_prop_type.d.ts +2 -0
- package/dist/types/src/base/ui/system/utils/create_responsive_prop_type.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/create_style_prop_types.d.ts +4 -0
- package/dist/types/src/base/ui/system/utils/create_style_prop_types.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/csstype.d.ts +3977 -0
- package/dist/types/src/base/ui/system/utils/csstype.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/ensure_numbers_are_within_scale.d.ts +2 -0
- package/dist/types/src/base/ui/system/utils/ensure_numbers_are_within_scale.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/enum_prop_type_utils.d.ts +21 -0
- package/dist/types/src/base/ui/system/utils/enum_prop_type_utils.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/get_style_props_for_responsive_prop.d.ts +2 -0
- package/dist/types/src/base/ui/system/utils/get_style_props_for_responsive_prop.d.ts.map +1 -0
- package/dist/types/src/base/ui/system/utils/types.d.ts +31 -0
- package/dist/types/src/base/ui/system/utils/types.d.ts.map +1 -0
- package/dist/types/src/base/ui/table_picker.d.ts +49 -0
- package/dist/types/src/base/ui/table_picker.d.ts.map +1 -0
- package/dist/types/src/base/ui/table_picker_synced.d.ts +18 -0
- package/dist/types/src/base/ui/table_picker_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/text.d.ts +69 -0
- package/dist/types/src/base/ui/text.d.ts.map +1 -0
- package/dist/types/src/base/ui/text_button.d.ts +87 -0
- package/dist/types/src/base/ui/text_button.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/button_variants.d.ts +8 -0
- package/dist/types/src/base/ui/theme/default_theme/button_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/control_sizes.d.ts +107 -0
- package/dist/types/src/base/ui/theme/default_theme/control_sizes.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/heading_styles.d.ts +11 -0
- package/dist/types/src/base/ui/theme/default_theme/heading_styles.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/index.d.ts +342 -0
- package/dist/types/src/base/ui/theme/default_theme/index.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/input_variants.d.ts +5 -0
- package/dist/types/src/base/ui/theme/default_theme/input_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/link_variants.d.ts +7 -0
- package/dist/types/src/base/ui/theme/default_theme/link_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/select_buttons_variants.d.ts +8 -0
- package/dist/types/src/base/ui/theme/default_theme/select_buttons_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/select_variants.d.ts +5 -0
- package/dist/types/src/base/ui/theme/default_theme/select_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/switch_variants.d.ts +16 -0
- package/dist/types/src/base/ui/theme/default_theme/switch_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/text_button_variants.d.ts +7 -0
- package/dist/types/src/base/ui/theme/default_theme/text_button_variants.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/text_styles.d.ts +76 -0
- package/dist/types/src/base/ui/theme/default_theme/text_styles.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/default_theme/tokens.d.ts +111 -0
- package/dist/types/src/base/ui/theme/default_theme/tokens.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/theme_context.d.ts +342 -0
- package/dist/types/src/base/ui/theme/theme_context.d.ts.map +1 -0
- package/dist/types/src/base/ui/theme/use_theme.d.ts +342 -0
- package/dist/types/src/base/ui/theme/use_theme.d.ts.map +1 -0
- package/dist/types/src/base/ui/tooltip.d.ts +80 -0
- package/dist/types/src/base/ui/tooltip.d.ts.map +1 -0
- package/dist/types/src/base/ui/types/aria_props.d.ts +22 -0
- package/dist/types/src/base/ui/types/aria_props.d.ts.map +1 -0
- package/dist/types/src/base/ui/types/data_attributes_prop.d.ts +14 -0
- package/dist/types/src/base/ui/types/data_attributes_prop.d.ts.map +1 -0
- package/dist/types/src/base/ui/types/tooltip_anchor_props.d.ts +19 -0
- package/dist/types/src/base/ui/types/tooltip_anchor_props.d.ts.map +1 -0
- package/dist/types/src/base/ui/ui.d.ts +46 -0
- package/dist/types/src/base/ui/ui.d.ts.map +1 -0
- package/dist/types/src/base/ui/unstable_standalone_ui.d.ts +24 -0
- package/dist/types/src/base/ui/unstable_standalone_ui.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_base.d.ts +33 -0
- package/dist/types/src/base/ui/use_base.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_cursor.d.ts +33 -0
- package/dist/types/src/base/ui/use_cursor.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_form_field.d.ts +2 -0
- package/dist/types/src/base/ui/use_form_field.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_record_action_data.d.ts +54 -0
- package/dist/types/src/base/ui/use_record_action_data.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_records.d.ts +37 -0
- package/dist/types/src/base/ui/use_records.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_session.d.ts +31 -0
- package/dist/types/src/base/ui/use_session.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_settings_button.d.ts +30 -0
- package/dist/types/src/base/ui/use_settings_button.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_styled_system.d.ts +2 -0
- package/dist/types/src/base/ui/use_styled_system.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_text_color_for_background_color.d.ts +2 -0
- package/dist/types/src/base/ui/use_text_color_for_background_color.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_view_metadata.d.ts +11 -0
- package/dist/types/src/base/ui/use_view_metadata.d.ts.map +1 -0
- package/dist/types/src/base/ui/use_viewport.d.ts +35 -0
- package/dist/types/src/base/ui/use_viewport.d.ts.map +1 -0
- package/dist/types/src/base/ui/view_picker.d.ts +57 -0
- package/dist/types/src/base/ui/view_picker.d.ts.map +1 -0
- package/dist/types/src/base/ui/view_picker_synced.d.ts +18 -0
- package/dist/types/src/base/ui/view_picker_synced.d.ts.map +1 -0
- package/dist/types/src/base/ui/viewport_constraint.d.ts +70 -0
- package/dist/types/src/base/ui/viewport_constraint.d.ts.map +1 -0
- package/dist/types/src/base/ui/with_styled_system.d.ts +2 -0
- package/dist/types/src/base/ui/with_styled_system.d.ts.map +1 -0
- package/dist/types/src/base/undo_redo.d.ts +18 -0
- package/dist/types/src/base/undo_redo.d.ts.map +1 -0
- package/dist/types/src/base/unstable_testing_utils.d.ts +15 -0
- package/dist/types/src/base/unstable_testing_utils.d.ts.map +1 -0
- package/dist/types/src/base/viewport.d.ts +136 -0
- package/dist/types/src/base/viewport.d.ts.map +1 -0
- package/dist/types/src/injected/airtable_interface.d.ts +4 -0
- package/dist/types/src/injected/airtable_interface.d.ts.map +1 -0
- package/dist/types/src/interface/index.d.ts +7 -0
- package/dist/types/src/interface/index.d.ts.map +1 -0
- package/dist/types/src/interface/models/base.d.ts +13 -0
- package/dist/types/src/interface/models/base.d.ts.map +1 -0
- package/dist/types/src/interface/models/field.d.ts +21 -0
- package/dist/types/src/interface/models/field.d.ts.map +1 -0
- package/dist/types/src/interface/models/mutations.d.ts +6 -0
- package/dist/types/src/interface/models/mutations.d.ts.map +1 -0
- package/dist/types/src/interface/models/record.d.ts +24 -0
- package/dist/types/src/interface/models/record.d.ts.map +1 -0
- package/dist/types/src/interface/models/record_store.d.ts +2 -0
- package/dist/types/src/interface/models/record_store.d.ts.map +1 -0
- package/dist/types/src/interface/models/session.d.ts +24 -0
- package/dist/types/src/interface/models/session.d.ts.map +1 -0
- package/dist/types/src/interface/models/table.d.ts +22 -0
- package/dist/types/src/interface/models/table.d.ts.map +1 -0
- package/dist/types/src/interface/sdk.d.ts +10 -0
- package/dist/types/src/interface/sdk.d.ts.map +1 -0
- package/dist/types/src/interface/types/airtable_interface.d.ts +66 -0
- package/dist/types/src/interface/types/airtable_interface.d.ts.map +1 -0
- package/dist/types/src/interface/types/base.d.ts +6 -0
- package/dist/types/src/interface/types/base.d.ts.map +1 -0
- package/dist/types/src/interface/types/mutations.d.ts +13 -0
- package/dist/types/src/interface/types/mutations.d.ts.map +1 -0
- package/dist/types/src/interface/types/record.d.ts +5 -0
- package/dist/types/src/interface/types/record.d.ts.map +1 -0
- package/dist/types/src/interface/types/table.d.ts +10 -0
- package/dist/types/src/interface/types/table.d.ts.map +1 -0
- package/dist/types/src/interface/ui/block_wrapper.d.ts +13 -0
- package/dist/types/src/interface/ui/block_wrapper.d.ts.map +1 -0
- package/dist/types/src/interface/ui/expand_record.d.ts +16 -0
- package/dist/types/src/interface/ui/expand_record.d.ts.map +1 -0
- package/dist/types/src/interface/ui/initialize_block.d.ts +4 -0
- package/dist/types/src/interface/ui/initialize_block.d.ts.map +1 -0
- package/dist/types/src/interface/ui/ui.d.ts +16 -0
- package/dist/types/src/interface/ui/ui.d.ts.map +1 -0
- package/dist/types/src/interface/ui/use_base.d.ts +33 -0
- package/dist/types/src/interface/ui/use_base.d.ts.map +1 -0
- package/dist/types/src/interface/ui/use_custom_properties.d.ts +45 -0
- package/dist/types/src/interface/ui/use_custom_properties.d.ts.map +1 -0
- package/dist/types/src/interface/ui/use_records.d.ts +40 -0
- package/dist/types/src/interface/ui/use_records.d.ts.map +1 -0
- package/dist/types/src/interface/ui/use_run_info.d.ts +30 -0
- package/dist/types/src/interface/ui/use_run_info.d.ts.map +1 -0
- package/dist/types/src/interface/ui/use_session.d.ts +30 -0
- package/dist/types/src/interface/ui/use_session.d.ts.map +1 -0
- package/dist/types/src/sdk_mode.d.ts +65 -0
- package/dist/types/src/sdk_mode.d.ts.map +1 -0
- package/dist/types/src/shared/color_utils.d.ts +72 -0
- package/dist/types/src/shared/color_utils.d.ts.map +1 -0
- package/dist/types/src/shared/colors.d.ts +180 -0
- package/dist/types/src/shared/colors.d.ts.map +1 -0
- package/dist/types/src/shared/error_utils.d.ts +19 -0
- package/dist/types/src/shared/error_utils.d.ts.map +1 -0
- package/dist/types/src/shared/event_tracker.d.ts +17 -0
- package/dist/types/src/shared/event_tracker.d.ts.map +1 -0
- package/dist/types/src/shared/global_config.d.ts +235 -0
- package/dist/types/src/shared/global_config.d.ts.map +1 -0
- package/dist/types/src/shared/models/abstract_model.d.ts +29 -0
- package/dist/types/src/shared/models/abstract_model.d.ts.map +1 -0
- package/dist/types/src/shared/models/base_core.d.ts +168 -0
- package/dist/types/src/shared/models/base_core.d.ts.map +1 -0
- package/dist/types/src/shared/models/field_core.d.ts +133 -0
- package/dist/types/src/shared/models/field_core.d.ts.map +1 -0
- package/dist/types/src/shared/models/mutations_core.d.ts +17 -0
- package/dist/types/src/shared/models/mutations_core.d.ts.map +1 -0
- package/dist/types/src/shared/models/record_core.d.ts +60 -0
- package/dist/types/src/shared/models/record_core.d.ts.map +1 -0
- package/dist/types/src/shared/models/record_store_core.d.ts +7 -0
- package/dist/types/src/shared/models/record_store_core.d.ts.map +1 -0
- package/dist/types/src/shared/models/session_core.d.ts +50 -0
- package/dist/types/src/shared/models/session_core.d.ts.map +1 -0
- package/dist/types/src/shared/models/table_core.d.ts +143 -0
- package/dist/types/src/shared/models/table_core.d.ts.map +1 -0
- package/dist/types/src/shared/private_utils.d.ts +168 -0
- package/dist/types/src/shared/private_utils.d.ts.map +1 -0
- package/dist/types/src/shared/sdk_core.d.ts +69 -0
- package/dist/types/src/shared/sdk_core.d.ts.map +1 -0
- package/dist/types/src/shared/types/airtable_interface_core.d.ts +91 -0
- package/dist/types/src/shared/types/airtable_interface_core.d.ts.map +1 -0
- package/dist/types/src/shared/types/attachment.d.ts +27 -0
- package/dist/types/src/shared/types/attachment.d.ts.map +1 -0
- package/dist/types/src/shared/types/base_core.d.ts +35 -0
- package/dist/types/src/shared/types/base_core.d.ts.map +1 -0
- package/dist/types/src/shared/types/collaborator.d.ts +17 -0
- package/dist/types/src/shared/types/collaborator.d.ts.map +1 -0
- package/dist/types/src/shared/types/field.d.ts +1470 -0
- package/dist/types/src/shared/types/field.d.ts.map +1 -0
- package/dist/types/src/shared/types/global_config.d.ts +44 -0
- package/dist/types/src/shared/types/global_config.d.ts.map +1 -0
- package/dist/types/src/shared/types/hyper_ids.d.ts +19 -0
- package/dist/types/src/shared/types/hyper_ids.d.ts.map +1 -0
- package/dist/types/src/shared/types/mutation_constants.d.ts +5 -0
- package/dist/types/src/shared/types/mutation_constants.d.ts.map +1 -0
- package/dist/types/src/shared/types/mutations_core.d.ts +49 -0
- package/dist/types/src/shared/types/mutations_core.d.ts.map +1 -0
- package/dist/types/src/shared/types/permission_levels.d.ts +13 -0
- package/dist/types/src/shared/types/permission_levels.d.ts.map +1 -0
- package/dist/types/src/shared/types/record.d.ts +12 -0
- package/dist/types/src/shared/types/record.d.ts.map +1 -0
- package/dist/types/src/shared/types/stat.d.ts +10 -0
- package/dist/types/src/shared/types/stat.d.ts.map +1 -0
- package/dist/types/src/shared/types/table_core.d.ts +28 -0
- package/dist/types/src/shared/types/table_core.d.ts.map +1 -0
- package/dist/types/src/shared/ui/global_config_synced_component_helpers.d.ts +9 -0
- package/dist/types/src/shared/ui/global_config_synced_component_helpers.d.ts.map +1 -0
- package/dist/types/src/shared/ui/loader.d.ts +2 -0
- package/dist/types/src/shared/ui/loader.d.ts.map +1 -0
- package/dist/types/src/shared/ui/remote_utils.d.ts +41 -0
- package/dist/types/src/shared/ui/remote_utils.d.ts.map +1 -0
- package/dist/types/src/shared/ui/sdk_context.d.ts +5 -0
- package/dist/types/src/shared/ui/sdk_context.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_array_identity.d.ts +2 -0
- package/dist/types/src/shared/ui/use_array_identity.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_base.d.ts +7 -0
- package/dist/types/src/shared/ui/use_base.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_global_config.d.ts +32 -0
- package/dist/types/src/shared/ui/use_global_config.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_loadable.d.ts +101 -0
- package/dist/types/src/shared/ui/use_loadable.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_session.d.ts +2 -0
- package/dist/types/src/shared/ui/use_session.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_synced.d.ts +28 -0
- package/dist/types/src/shared/ui/use_synced.d.ts.map +1 -0
- package/dist/types/src/shared/ui/use_watchable.d.ts +61 -0
- package/dist/types/src/shared/ui/use_watchable.d.ts.map +1 -0
- package/dist/types/src/shared/ui/with_hooks.d.ts +97 -0
- package/dist/types/src/shared/ui/with_hooks.d.ts.map +1 -0
- package/dist/types/src/shared/unstable_private_utils.d.ts +5 -0
- package/dist/types/src/shared/unstable_private_utils.d.ts.map +1 -0
- package/dist/types/src/shared/warning.d.ts +6 -0
- package/dist/types/src/shared/warning.d.ts.map +1 -0
- package/dist/types/src/shared/watchable.d.ts +38 -0
- package/dist/types/src/shared/watchable.d.ts.map +1 -0
- package/dist/types/src/stats/block_stats.d.ts +33 -0
- package/dist/types/src/stats/block_stats.d.ts.map +1 -0
- package/dist/types/src/testing/abstract_mock_airtable_interface.d.ts +87 -0
- package/dist/types/src/testing/abstract_mock_airtable_interface.d.ts.map +1 -0
- package/dist/types/stories/all_controls.stories.d.ts +10 -0
- package/dist/types/stories/all_controls.stories.d.ts.map +1 -0
- package/dist/types/stories/box/appearance.stories.d.ts +21 -0
- package/dist/types/stories/box/appearance.stories.d.ts.map +1 -0
- package/dist/types/stories/box/box.stories.d.ts +45 -0
- package/dist/types/stories/box/box.stories.d.ts.map +1 -0
- package/dist/types/stories/box/dimensions.stories.d.ts +24 -0
- package/dist/types/stories/box/dimensions.stories.d.ts.map +1 -0
- package/dist/types/stories/box/flex_container.stories.d.ts +24 -0
- package/dist/types/stories/box/flex_container.stories.d.ts.map +1 -0
- package/dist/types/stories/box/flex_item.stories.d.ts +25 -0
- package/dist/types/stories/box/flex_item.stories.d.ts.map +1 -0
- package/dist/types/stories/box/position.stories.d.ts +25 -0
- package/dist/types/stories/box/position.stories.d.ts.map +1 -0
- package/dist/types/stories/box/spacing.stories.d.ts +39 -0
- package/dist/types/stories/box/spacing.stories.d.ts.map +1 -0
- package/dist/types/stories/box/typography.stories.d.ts +33 -0
- package/dist/types/stories/box/typography.stories.d.ts.map +1 -0
- package/dist/types/stories/button.stories.d.ts +48 -0
- package/dist/types/stories/button.stories.d.ts.map +1 -0
- package/dist/types/stories/cell_renderer.stories.d.ts +11 -0
- package/dist/types/stories/cell_renderer.stories.d.ts.map +1 -0
- package/dist/types/stories/choice_token.stories.d.ts +24 -0
- package/dist/types/stories/choice_token.stories.d.ts.map +1 -0
- package/dist/types/stories/collaborator_token.stories.d.ts +29 -0
- package/dist/types/stories/collaborator_token.stories.d.ts.map +1 -0
- package/dist/types/stories/color_palette.stories.d.ts +12 -0
- package/dist/types/stories/color_palette.stories.d.ts.map +1 -0
- package/dist/types/stories/confirmation_dialog.stories.d.ts +10 -0
- package/dist/types/stories/confirmation_dialog.stories.d.ts.map +1 -0
- package/dist/types/stories/dialog.stories.d.ts +10 -0
- package/dist/types/stories/dialog.stories.d.ts.map +1 -0
- package/dist/types/stories/field_icon.stories.d.ts +10 -0
- package/dist/types/stories/field_icon.stories.d.ts.map +1 -0
- package/dist/types/stories/field_picker.stories.d.ts +12 -0
- package/dist/types/stories/field_picker.stories.d.ts.map +1 -0
- package/dist/types/stories/form_field.stories.d.ts +33 -0
- package/dist/types/stories/form_field.stories.d.ts.map +1 -0
- package/dist/types/stories/heading.size.stories.d.ts +19 -0
- package/dist/types/stories/heading.size.stories.d.ts.map +1 -0
- package/dist/types/stories/heading.stories.d.ts +33 -0
- package/dist/types/stories/heading.stories.d.ts.map +1 -0
- package/dist/types/stories/helpers/attachments.d.ts +4 -0
- package/dist/types/stories/helpers/attachments.d.ts.map +1 -0
- package/dist/types/stories/helpers/categorize_style_props.d.ts +14 -0
- package/dist/types/stories/helpers/categorize_style_props.d.ts.map +1 -0
- package/dist/types/stories/helpers/choice_options.d.ts +7 -0
- package/dist/types/stories/helpers/choice_options.d.ts.map +1 -0
- package/dist/types/stories/helpers/code_block.d.ts +5 -0
- package/dist/types/stories/helpers/code_block.d.ts.map +1 -0
- package/dist/types/stories/helpers/code_utils.d.ts +32 -0
- package/dist/types/stories/helpers/code_utils.d.ts.map +1 -0
- package/dist/types/stories/helpers/collaborator_options.d.ts +7 -0
- package/dist/types/stories/helpers/collaborator_options.d.ts.map +1 -0
- package/dist/types/stories/helpers/example.d.ts +39 -0
- package/dist/types/stories/helpers/example.d.ts.map +1 -0
- package/dist/types/stories/helpers/example_code_panel.d.ts +10 -0
- package/dist/types/stories/helpers/example_code_panel.d.ts.map +1 -0
- package/dist/types/stories/helpers/fake_cell_renderer.d.ts +7 -0
- package/dist/types/stories/helpers/fake_cell_renderer.d.ts.map +1 -0
- package/dist/types/stories/helpers/fake_foreign_record.d.ts +5 -0
- package/dist/types/stories/helpers/fake_foreign_record.d.ts.map +1 -0
- package/dist/types/stories/helpers/fake_record_card.d.ts +13 -0
- package/dist/types/stories/helpers/fake_record_card.d.ts.map +1 -0
- package/dist/types/stories/helpers/field_type.d.ts +6 -0
- package/dist/types/stories/helpers/field_type.d.ts.map +1 -0
- package/dist/types/stories/helpers/raf_throttle.d.ts +5 -0
- package/dist/types/stories/helpers/raf_throttle.d.ts.map +1 -0
- package/dist/types/stories/helpers/style_prop_list.d.ts +9 -0
- package/dist/types/stories/helpers/style_prop_list.d.ts.map +1 -0
- package/dist/types/stories/helpers/sync_source_options.d.ts +7 -0
- package/dist/types/stories/helpers/sync_source_options.d.ts.map +1 -0
- package/dist/types/stories/helpers/use_resizable_panel.d.ts +27 -0
- package/dist/types/stories/helpers/use_resizable_panel.d.ts.map +1 -0
- package/dist/types/stories/icon.stories.d.ts +18 -0
- package/dist/types/stories/icon.stories.d.ts.map +1 -0
- package/dist/types/stories/icon_example.d.ts +3 -0
- package/dist/types/stories/icon_example.d.ts.map +1 -0
- package/dist/types/stories/input.stories.d.ts +27 -0
- package/dist/types/stories/input.stories.d.ts.map +1 -0
- package/dist/types/stories/label.stories.d.ts +36 -0
- package/dist/types/stories/label.stories.d.ts.map +1 -0
- package/dist/types/stories/link.stories.d.ts +45 -0
- package/dist/types/stories/link.stories.d.ts.map +1 -0
- package/dist/types/stories/loader.stories.d.ts +21 -0
- package/dist/types/stories/loader.stories.d.ts.map +1 -0
- package/dist/types/stories/progress_bar.stories.d.ts +27 -0
- package/dist/types/stories/progress_bar.stories.d.ts.map +1 -0
- package/dist/types/stories/record_card.stories.d.ts +9 -0
- package/dist/types/stories/record_card.stories.d.ts.map +1 -0
- package/dist/types/stories/record_card_list.stories.d.ts +9 -0
- package/dist/types/stories/record_card_list.stories.d.ts.map +1 -0
- package/dist/types/stories/select.stories.d.ts +30 -0
- package/dist/types/stories/select.stories.d.ts.map +1 -0
- package/dist/types/stories/select_buttons.stories.d.ts +30 -0
- package/dist/types/stories/select_buttons.stories.d.ts.map +1 -0
- package/dist/types/stories/switch.stories.d.ts +48 -0
- package/dist/types/stories/switch.stories.d.ts.map +1 -0
- package/dist/types/stories/table_picker.stories.d.ts +12 -0
- package/dist/types/stories/table_picker.stories.d.ts.map +1 -0
- package/dist/types/stories/text.size.stories.d.ts +16 -0
- package/dist/types/stories/text.size.stories.d.ts.map +1 -0
- package/dist/types/stories/text.stories.d.ts +36 -0
- package/dist/types/stories/text.stories.d.ts.map +1 -0
- package/dist/types/stories/text_button.stories.d.ts +45 -0
- package/dist/types/stories/text_button.stories.d.ts.map +1 -0
- package/dist/types/stories/tooltip.stories.d.ts +10 -0
- package/dist/types/stories/tooltip.stories.d.ts.map +1 -0
- package/dist/types/stories/view_picker.stories.d.ts +12 -0
- package/dist/types/stories/view_picker.stories.d.ts.map +1 -0
- package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts +122 -0
- package/dist/types/test/airtable_interface_mocks/fixture_data.d.ts.map +1 -0
- package/dist/types/test/airtable_interface_mocks/linked_records.d.ts +4 -0
- package/dist/types/test/airtable_interface_mocks/linked_records.d.ts.map +1 -0
- package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts +60 -0
- package/dist/types/test/airtable_interface_mocks/mock_airtable_interface.d.ts.map +1 -0
- package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts +4 -0
- package/dist/types/test/airtable_interface_mocks/project_tracker.d.ts.map +1 -0
- package/dist/types/test/error_utils.test.d.ts +2 -0
- package/dist/types/test/error_utils.test.d.ts.map +1 -0
- package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts +2 -0
- package/dist/types/test/get_style_props_for_responsive_prop.test.d.ts.map +1 -0
- package/dist/types/test/index.test.d.ts +2 -0
- package/dist/types/test/index.test.d.ts.map +1 -0
- package/dist/types/test/models/base.test.d.ts +2 -0
- package/dist/types/test/models/base.test.d.ts.map +1 -0
- package/dist/types/test/models/cursor.test.d.ts +2 -0
- package/dist/types/test/models/cursor.test.d.ts.map +1 -0
- package/dist/types/test/models/field.test.d.ts +2 -0
- package/dist/types/test/models/field.test.d.ts.map +1 -0
- package/dist/types/test/models/linked_records_query_result.test.d.ts +2 -0
- package/dist/types/test/models/linked_records_query_result.test.d.ts.map +1 -0
- package/dist/types/test/models/mutations.test.d.ts +2 -0
- package/dist/types/test/models/mutations.test.d.ts.map +1 -0
- package/dist/types/test/models/object_pool.test.d.ts +2 -0
- package/dist/types/test/models/object_pool.test.d.ts.map +1 -0
- package/dist/types/test/models/record.test.d.ts +2 -0
- package/dist/types/test/models/record.test.d.ts.map +1 -0
- package/dist/types/test/models/session.test.d.ts +2 -0
- package/dist/types/test/models/session.test.d.ts.map +1 -0
- package/dist/types/test/models/table.test.d.ts +2 -0
- package/dist/types/test/models/table.test.d.ts.map +1 -0
- package/dist/types/test/models/table_mutations.test.d.ts +2 -0
- package/dist/types/test/models/table_mutations.test.d.ts.map +1 -0
- package/dist/types/test/models/table_or_view_query_result.test.d.ts +2 -0
- package/dist/types/test/models/table_or_view_query_result.test.d.ts.map +1 -0
- package/dist/types/test/models/view.test.d.ts +2 -0
- package/dist/types/test/models/view.test.d.ts.map +1 -0
- package/dist/types/test/models/view_metadata_query_result.test.d.ts +2 -0
- package/dist/types/test/models/view_metadata_query_result.test.d.ts.map +1 -0
- package/dist/types/test/private_utils.test.d.ts +2 -0
- package/dist/types/test/private_utils.test.d.ts.map +1 -0
- package/dist/types/test/sdk.test.d.ts +2 -0
- package/dist/types/test/sdk.test.d.ts.map +1 -0
- package/dist/types/test/setup_enzyme.d.ts +2 -0
- package/dist/types/test/setup_enzyme.d.ts.map +1 -0
- package/dist/types/test/test_helpers.d.ts +11 -0
- package/dist/types/test/test_helpers.d.ts.map +1 -0
- package/dist/types/test/ui/base_provider.test.d.ts +2 -0
- package/dist/types/test/ui/base_provider.test.d.ts.map +1 -0
- package/dist/types/test/ui/block_wrapper.test.d.ts +2 -0
- package/dist/types/test/ui/block_wrapper.test.d.ts.map +1 -0
- package/dist/types/test/ui/box.test.d.ts +2 -0
- package/dist/types/test/ui/box.test.d.ts.map +1 -0
- package/dist/types/test/ui/button.test.d.ts +2 -0
- package/dist/types/test/ui/button.test.d.ts.map +1 -0
- package/dist/types/test/ui/cell_renderer.test.d.ts +2 -0
- package/dist/types/test/ui/cell_renderer.test.d.ts.map +1 -0
- package/dist/types/test/ui/choice_token.test.d.ts +2 -0
- package/dist/types/test/ui/choice_token.test.d.ts.map +1 -0
- package/dist/types/test/ui/collaborator_token.test.d.ts +2 -0
- package/dist/types/test/ui/collaborator_token.test.d.ts.map +1 -0
- package/dist/types/test/ui/color_palette.test.d.ts +2 -0
- package/dist/types/test/ui/color_palette.test.d.ts.map +1 -0
- package/dist/types/test/ui/color_palette_synced.test.d.ts +2 -0
- package/dist/types/test/ui/color_palette_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/confirmation_dialog.test.d.ts +2 -0
- package/dist/types/test/ui/confirmation_dialog.test.d.ts.map +1 -0
- package/dist/types/test/ui/dialog.test.d.ts +2 -0
- package/dist/types/test/ui/dialog.test.d.ts.map +1 -0
- package/dist/types/test/ui/expand_record.test.d.ts +2 -0
- package/dist/types/test/ui/expand_record.test.d.ts.map +1 -0
- package/dist/types/test/ui/expand_record_list.test.d.ts +2 -0
- package/dist/types/test/ui/expand_record_list.test.d.ts.map +1 -0
- package/dist/types/test/ui/expand_record_picker_async.test.d.ts +2 -0
- package/dist/types/test/ui/expand_record_picker_async.test.d.ts.map +1 -0
- package/dist/types/test/ui/field_icon.test.d.ts +2 -0
- package/dist/types/test/ui/field_icon.test.d.ts.map +1 -0
- package/dist/types/test/ui/field_picker.test.d.ts +2 -0
- package/dist/types/test/ui/field_picker.test.d.ts.map +1 -0
- package/dist/types/test/ui/field_picker_synced.test.d.ts +2 -0
- package/dist/types/test/ui/field_picker_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/form_field.test.d.ts +2 -0
- package/dist/types/test/ui/form_field.test.d.ts.map +1 -0
- package/dist/types/test/ui/global_alert.test.d.ts +2 -0
- package/dist/types/test/ui/global_alert.test.d.ts.map +1 -0
- package/dist/types/test/ui/heading.test.d.ts +2 -0
- package/dist/types/test/ui/heading.test.d.ts.map +1 -0
- package/dist/types/test/ui/icon.test.d.ts +2 -0
- package/dist/types/test/ui/icon.test.d.ts.map +1 -0
- package/dist/types/test/ui/initialize_block.test.d.ts +2 -0
- package/dist/types/test/ui/initialize_block.test.d.ts.map +1 -0
- package/dist/types/test/ui/input.test.d.ts +2 -0
- package/dist/types/test/ui/input.test.d.ts.map +1 -0
- package/dist/types/test/ui/input_synced.test.d.ts +2 -0
- package/dist/types/test/ui/input_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/label.test.d.ts +2 -0
- package/dist/types/test/ui/label.test.d.ts.map +1 -0
- package/dist/types/test/ui/link.test.d.ts +2 -0
- package/dist/types/test/ui/link.test.d.ts.map +1 -0
- package/dist/types/test/ui/loader.test.d.ts +2 -0
- package/dist/types/test/ui/loader.test.d.ts.map +1 -0
- package/dist/types/test/ui/modal.test.d.ts +2 -0
- package/dist/types/test/ui/modal.test.d.ts.map +1 -0
- package/dist/types/test/ui/popover.test.d.ts +2 -0
- package/dist/types/test/ui/popover.test.d.ts.map +1 -0
- package/dist/types/test/ui/progress_bar.test.d.ts +2 -0
- package/dist/types/test/ui/progress_bar.test.d.ts.map +1 -0
- package/dist/types/test/ui/record_card.test.d.ts +2 -0
- package/dist/types/test/ui/record_card.test.d.ts.map +1 -0
- package/dist/types/test/ui/record_card_list.test.d.ts +2 -0
- package/dist/types/test/ui/record_card_list.test.d.ts.map +1 -0
- package/dist/types/test/ui/remote_utils.test.d.ts +2 -0
- package/dist/types/test/ui/remote_utils.test.d.ts.map +1 -0
- package/dist/types/test/ui/select.test.d.ts +2 -0
- package/dist/types/test/ui/select.test.d.ts.map +1 -0
- package/dist/types/test/ui/select_buttons.test.d.ts +2 -0
- package/dist/types/test/ui/select_buttons.test.d.ts.map +1 -0
- package/dist/types/test/ui/select_buttons_synced.test.d.ts +2 -0
- package/dist/types/test/ui/select_buttons_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/select_synced.test.d.ts +2 -0
- package/dist/types/test/ui/select_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/switch.test.d.ts +2 -0
- package/dist/types/test/ui/switch.test.d.ts.map +1 -0
- package/dist/types/test/ui/switch_synced.test.d.ts +2 -0
- package/dist/types/test/ui/switch_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/synced.test.d.ts +2 -0
- package/dist/types/test/ui/synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/table_picker.test.d.ts +2 -0
- package/dist/types/test/ui/table_picker.test.d.ts.map +1 -0
- package/dist/types/test/ui/table_picker_synced.test.d.ts +2 -0
- package/dist/types/test/ui/table_picker_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/text.test.d.ts +2 -0
- package/dist/types/test/ui/text.test.d.ts.map +1 -0
- package/dist/types/test/ui/text_button.test.d.ts +2 -0
- package/dist/types/test/ui/text_button.test.d.ts.map +1 -0
- package/dist/types/test/ui/tooltip.test.d.ts +2 -0
- package/dist/types/test/ui/tooltip.test.d.ts.map +1 -0
- package/dist/types/test/ui/ui.test.d.ts +2 -0
- package/dist/types/test/ui/ui.test.d.ts.map +1 -0
- package/dist/types/test/ui/unstable_standalone_ui.test.d.ts +1 -0
- package/dist/types/test/ui/unstable_standalone_ui.test.d.ts.map +1 -0
- package/dist/types/test/ui/use_array_identity.test.d.ts +2 -0
- package/dist/types/test/ui/use_array_identity.test.d.ts.map +1 -0
- package/dist/types/test/ui/use_loadable.test.d.ts +2 -0
- package/dist/types/test/ui/use_loadable.test.d.ts.map +1 -0
- package/dist/types/test/ui/use_record_action_data.test.d.ts +2 -0
- package/dist/types/test/ui/use_record_action_data.test.d.ts.map +1 -0
- package/dist/types/test/ui/use_records.test.d.ts +2 -0
- package/dist/types/test/ui/use_records.test.d.ts.map +1 -0
- package/dist/types/test/ui/use_view_metadata.test.d.ts +2 -0
- package/dist/types/test/ui/use_view_metadata.test.d.ts.map +1 -0
- package/dist/types/test/ui/use_watchable.test.d.ts +2 -0
- package/dist/types/test/ui/use_watchable.test.d.ts.map +1 -0
- package/dist/types/test/ui/view_picker.test.d.ts +2 -0
- package/dist/types/test/ui/view_picker.test.d.ts.map +1 -0
- package/dist/types/test/ui/view_picker_synced.test.d.ts +2 -0
- package/dist/types/test/ui/view_picker_synced.test.d.ts.map +1 -0
- package/dist/types/test/ui/viewport_constraint.test.d.ts +2 -0
- package/dist/types/test/ui/viewport_constraint.test.d.ts.map +1 -0
- package/dist/types/test/unstable_private_utils.test.d.ts +1 -0
- package/dist/types/test/unstable_private_utils.test.d.ts.map +1 -0
- package/index.d.ts +14 -0
- package/models.d.ts +1 -0
- package/models.js +1 -0
- package/package.json +190 -0
- package/types/globals.d.ts +6 -0
- package/types/styled-system__core.d.ts +41 -0
- package/types/use-subscription.d.ts +6 -0
- package/types.d.ts +18 -0
- package/types.js +1 -0
- package/ui.d.ts +1 -0
- package/ui.js +1 -0
- package/unstable_private_utils.d.ts +1 -0
- package/unstable_private_utils.js +1 -0
- package/unstable_standalone_ui.d.ts +1 -0
- package/unstable_standalone_ui.js +1 -0
- package/unstable_testing_utils.d.ts +1 -0
- package/unstable_testing_utils.js +1 -0
|
@@ -0,0 +1,3977 @@
|
|
|
1
|
+
/** @hidden */ /** */
|
|
2
|
+
export interface StandardLonghandProperties<TLength = string | 0> {
|
|
3
|
+
marginBottom?: MarginBottomProperty<TLength>;
|
|
4
|
+
alignContent?: AlignContentProperty;
|
|
5
|
+
alignSelf?: AlignSelfProperty;
|
|
6
|
+
animationDelay?: GlobalsString;
|
|
7
|
+
animationDirection?: AnimationDirectionProperty;
|
|
8
|
+
animationDuration?: GlobalsString;
|
|
9
|
+
animationFillMode?: AnimationFillModeProperty;
|
|
10
|
+
animationIterationCount?: AnimationIterationCountProperty;
|
|
11
|
+
animationName?: AnimationNameProperty;
|
|
12
|
+
animationPlayState?: AnimationPlayStateProperty;
|
|
13
|
+
animationTimingFunction?: AnimationTimingFunctionProperty;
|
|
14
|
+
appearance?: AppearanceProperty;
|
|
15
|
+
backdropFilter?: BackdropFilterProperty;
|
|
16
|
+
backfaceVisibility?: BackfaceVisibilityProperty;
|
|
17
|
+
backgroundAttachment?: BackgroundAttachmentProperty;
|
|
18
|
+
backgroundBlendMode?: BackgroundBlendModeProperty;
|
|
19
|
+
backgroundClip?: BackgroundClipProperty;
|
|
20
|
+
backgroundColor?: BackgroundColorProperty;
|
|
21
|
+
backgroundImage?: BackgroundImageProperty;
|
|
22
|
+
backgroundOrigin?: BackgroundOriginProperty;
|
|
23
|
+
backgroundPosition?: BackgroundPositionProperty<TLength>;
|
|
24
|
+
backgroundPositionX?: BackgroundPositionXProperty<TLength>;
|
|
25
|
+
backgroundPositionY?: BackgroundPositionYProperty<TLength>;
|
|
26
|
+
backgroundRepeat?: BackgroundRepeatProperty;
|
|
27
|
+
backgroundSize?: BackgroundSizeProperty<TLength>;
|
|
28
|
+
blockOverflow?: BlockOverflowProperty;
|
|
29
|
+
blockSize?: BlockSizeProperty<TLength>;
|
|
30
|
+
borderBlockColor?: BorderBlockColorProperty;
|
|
31
|
+
borderBlockEndColor?: BorderBlockEndColorProperty;
|
|
32
|
+
borderBlockEndStyle?: BorderBlockEndStyleProperty;
|
|
33
|
+
borderBlockEndWidth?: BorderBlockEndWidthProperty<TLength>;
|
|
34
|
+
borderBlockStartColor?: BorderBlockStartColorProperty;
|
|
35
|
+
borderBlockStartStyle?: BorderBlockStartStyleProperty;
|
|
36
|
+
borderBlockStartWidth?: BorderBlockStartWidthProperty<TLength>;
|
|
37
|
+
borderBlockStyle?: BorderBlockStyleProperty;
|
|
38
|
+
borderBlockWidth?: BorderBlockWidthProperty<TLength>;
|
|
39
|
+
borderBottomColor?: BorderBottomColorProperty;
|
|
40
|
+
borderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength>;
|
|
41
|
+
borderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength>;
|
|
42
|
+
borderBottomStyle?: BorderBottomStyleProperty;
|
|
43
|
+
borderBottomWidth?: BorderBottomWidthProperty<TLength>;
|
|
44
|
+
borderCollapse?: BorderCollapseProperty;
|
|
45
|
+
borderEndEndRadius?: BorderEndEndRadiusProperty<TLength>;
|
|
46
|
+
borderEndStartRadius?: BorderEndStartRadiusProperty<TLength>;
|
|
47
|
+
borderImageOutset?: BorderImageOutsetProperty<TLength>;
|
|
48
|
+
borderImageRepeat?: BorderImageRepeatProperty;
|
|
49
|
+
borderImageSlice?: BorderImageSliceProperty;
|
|
50
|
+
borderImageSource?: BorderImageSourceProperty;
|
|
51
|
+
borderImageWidth?: BorderImageWidthProperty<TLength>;
|
|
52
|
+
borderInlineColor?: BorderInlineColorProperty;
|
|
53
|
+
borderInlineEndColor?: BorderInlineEndColorProperty;
|
|
54
|
+
borderInlineEndStyle?: BorderInlineEndStyleProperty;
|
|
55
|
+
borderInlineEndWidth?: BorderInlineEndWidthProperty<TLength>;
|
|
56
|
+
borderInlineStartColor?: BorderInlineStartColorProperty;
|
|
57
|
+
borderInlineStartStyle?: BorderInlineStartStyleProperty;
|
|
58
|
+
borderInlineStartWidth?: BorderInlineStartWidthProperty<TLength>;
|
|
59
|
+
borderInlineStyle?: BorderInlineStyleProperty;
|
|
60
|
+
borderInlineWidth?: BorderInlineWidthProperty<TLength>;
|
|
61
|
+
borderLeftColor?: BorderLeftColorProperty;
|
|
62
|
+
borderLeftStyle?: BorderLeftStyleProperty;
|
|
63
|
+
borderLeftWidth?: BorderLeftWidthProperty<TLength>;
|
|
64
|
+
borderRightColor?: BorderRightColorProperty;
|
|
65
|
+
borderRightStyle?: BorderRightStyleProperty;
|
|
66
|
+
borderRightWidth?: BorderRightWidthProperty<TLength>;
|
|
67
|
+
borderSpacing?: BorderSpacingProperty<TLength>;
|
|
68
|
+
borderStartEndRadius?: BorderStartEndRadiusProperty<TLength>;
|
|
69
|
+
borderStartStartRadius?: BorderStartStartRadiusProperty<TLength>;
|
|
70
|
+
borderTopColor?: BorderTopColorProperty;
|
|
71
|
+
borderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength>;
|
|
72
|
+
borderTopRightRadius?: BorderTopRightRadiusProperty<TLength>;
|
|
73
|
+
borderTopStyle?: BorderTopStyleProperty;
|
|
74
|
+
borderTopWidth?: BorderTopWidthProperty<TLength>;
|
|
75
|
+
bottom?: BottomProperty<TLength>;
|
|
76
|
+
boxDecorationBreak?: BoxDecorationBreakProperty;
|
|
77
|
+
boxShadow?: BoxShadowProperty;
|
|
78
|
+
boxSizing?: BoxSizingProperty;
|
|
79
|
+
breakAfter?: BreakAfterProperty;
|
|
80
|
+
breakBefore?: BreakBeforeProperty;
|
|
81
|
+
breakInside?: BreakInsideProperty;
|
|
82
|
+
captionSide?: CaptionSideProperty;
|
|
83
|
+
caretColor?: CaretColorProperty;
|
|
84
|
+
clear?: ClearProperty;
|
|
85
|
+
clipPath?: ClipPathProperty;
|
|
86
|
+
color?: ColorProperty;
|
|
87
|
+
colorAdjust?: ColorAdjustProperty;
|
|
88
|
+
columnCount?: ColumnCountProperty;
|
|
89
|
+
columnFill?: ColumnFillProperty;
|
|
90
|
+
columnGap?: ColumnGapProperty<TLength>;
|
|
91
|
+
columnRuleColor?: ColumnRuleColorProperty;
|
|
92
|
+
columnRuleStyle?: ColumnRuleStyleProperty;
|
|
93
|
+
columnRuleWidth?: ColumnRuleWidthProperty<TLength>;
|
|
94
|
+
columnSpan?: ColumnSpanProperty;
|
|
95
|
+
columnWidth?: ColumnWidthProperty<TLength>;
|
|
96
|
+
contain?: ContainProperty;
|
|
97
|
+
content?: ContentProperty;
|
|
98
|
+
counterIncrement?: CounterIncrementProperty;
|
|
99
|
+
counterReset?: CounterResetProperty;
|
|
100
|
+
counterSet?: CounterSetProperty;
|
|
101
|
+
cursor?: CursorProperty;
|
|
102
|
+
direction?: DirectionProperty;
|
|
103
|
+
display?: DisplayProperty;
|
|
104
|
+
emptyCells?: EmptyCellsProperty;
|
|
105
|
+
filter?: FilterProperty;
|
|
106
|
+
flexBasis?: FlexBasisProperty<TLength>;
|
|
107
|
+
flexDirection?: FlexDirectionProperty;
|
|
108
|
+
flexGrow?: GlobalsNumber;
|
|
109
|
+
flexShrink?: GlobalsNumber;
|
|
110
|
+
flexWrap?: FlexWrapProperty;
|
|
111
|
+
float?: FloatProperty;
|
|
112
|
+
fontFamily?: FontFamilyProperty;
|
|
113
|
+
fontFeatureSettings?: FontFeatureSettingsProperty;
|
|
114
|
+
fontKerning?: FontKerningProperty;
|
|
115
|
+
fontLanguageOverride?: FontLanguageOverrideProperty;
|
|
116
|
+
fontOpticalSizing?: FontOpticalSizingProperty;
|
|
117
|
+
fontSize?: FontSizeProperty<TLength>;
|
|
118
|
+
fontSizeAdjust?: FontSizeAdjustProperty;
|
|
119
|
+
fontStretch?: FontStretchProperty;
|
|
120
|
+
fontStyle?: FontStyleProperty;
|
|
121
|
+
fontSynthesis?: FontSynthesisProperty;
|
|
122
|
+
fontVariant?: FontVariantProperty;
|
|
123
|
+
fontVariantCaps?: FontVariantCapsProperty;
|
|
124
|
+
fontVariantEastAsian?: FontVariantEastAsianProperty;
|
|
125
|
+
fontVariantLigatures?: FontVariantLigaturesProperty;
|
|
126
|
+
fontVariantNumeric?: FontVariantNumericProperty;
|
|
127
|
+
fontVariantPosition?: FontVariantPositionProperty;
|
|
128
|
+
fontVariationSettings?: FontVariationSettingsProperty;
|
|
129
|
+
fontWeight?: FontWeightProperty;
|
|
130
|
+
gridAutoColumns?: GridAutoColumnsProperty<TLength>;
|
|
131
|
+
gridAutoFlow?: GridAutoFlowProperty;
|
|
132
|
+
gridAutoRows?: GridAutoRowsProperty<TLength>;
|
|
133
|
+
gridColumnEnd?: GridColumnEndProperty;
|
|
134
|
+
gridColumnStart?: GridColumnStartProperty;
|
|
135
|
+
gridRowEnd?: GridRowEndProperty;
|
|
136
|
+
gridRowStart?: GridRowStartProperty;
|
|
137
|
+
gridTemplateAreas?: GridTemplateAreasProperty;
|
|
138
|
+
gridTemplateColumns?: GridTemplateColumnsProperty<TLength>;
|
|
139
|
+
gridTemplateRows?: GridTemplateRowsProperty<TLength>;
|
|
140
|
+
hangingPunctuation?: HangingPunctuationProperty;
|
|
141
|
+
height?: HeightProperty<TLength>;
|
|
142
|
+
hyphens?: HyphensProperty;
|
|
143
|
+
imageOrientation?: ImageOrientationProperty;
|
|
144
|
+
imageRendering?: ImageRenderingProperty;
|
|
145
|
+
imageResolution?: ImageResolutionProperty;
|
|
146
|
+
initialLetter?: InitialLetterProperty;
|
|
147
|
+
inlineSize?: InlineSizeProperty<TLength>;
|
|
148
|
+
inset?: InsetProperty<TLength>;
|
|
149
|
+
insetBlock?: InsetBlockProperty<TLength>;
|
|
150
|
+
insetBlockEnd?: InsetBlockEndProperty<TLength>;
|
|
151
|
+
insetBlockStart?: InsetBlockStartProperty<TLength>;
|
|
152
|
+
insetInline?: InsetInlineProperty<TLength>;
|
|
153
|
+
insetInlineEnd?: InsetInlineEndProperty<TLength>;
|
|
154
|
+
insetInlineStart?: InsetInlineStartProperty<TLength>;
|
|
155
|
+
isolation?: IsolationProperty;
|
|
156
|
+
justifyContent?: JustifyContentProperty;
|
|
157
|
+
justifyItems?: JustifyItemsProperty;
|
|
158
|
+
justifySelf?: JustifySelfProperty;
|
|
159
|
+
left?: LeftProperty<TLength>;
|
|
160
|
+
letterSpacing?: LetterSpacingProperty<TLength>;
|
|
161
|
+
lineBreak?: LineBreakProperty;
|
|
162
|
+
lineHeight?: LineHeightProperty<TLength>;
|
|
163
|
+
lineHeightStep?: LineHeightStepProperty<TLength>;
|
|
164
|
+
listStyleImage?: ListStyleImageProperty;
|
|
165
|
+
listStylePosition?: ListStylePositionProperty;
|
|
166
|
+
listStyleType?: ListStyleTypeProperty;
|
|
167
|
+
marginBlock?: MarginBlockProperty<TLength>;
|
|
168
|
+
marginBlockEnd?: MarginBlockEndProperty<TLength>;
|
|
169
|
+
marginBlockStart?: MarginBlockStartProperty<TLength>;
|
|
170
|
+
alignItems?: AlignItemsProperty;
|
|
171
|
+
marginInline?: MarginInlineProperty<TLength>;
|
|
172
|
+
marginInlineEnd?: MarginInlineEndProperty<TLength>;
|
|
173
|
+
marginInlineStart?: MarginInlineStartProperty<TLength>;
|
|
174
|
+
marginLeft?: MarginLeftProperty<TLength>;
|
|
175
|
+
marginRight?: MarginRightProperty<TLength>;
|
|
176
|
+
marginTop?: MarginTopProperty<TLength>;
|
|
177
|
+
maskBorderMode?: MaskBorderModeProperty;
|
|
178
|
+
maskBorderOutset?: MaskBorderOutsetProperty<TLength>;
|
|
179
|
+
maskBorderRepeat?: MaskBorderRepeatProperty;
|
|
180
|
+
maskBorderSlice?: MaskBorderSliceProperty;
|
|
181
|
+
maskBorderSource?: MaskBorderSourceProperty;
|
|
182
|
+
maskBorderWidth?: MaskBorderWidthProperty<TLength>;
|
|
183
|
+
maskClip?: MaskClipProperty;
|
|
184
|
+
maskComposite?: MaskCompositeProperty;
|
|
185
|
+
maskImage?: MaskImageProperty;
|
|
186
|
+
maskMode?: MaskModeProperty;
|
|
187
|
+
maskOrigin?: MaskOriginProperty;
|
|
188
|
+
maskPosition?: MaskPositionProperty<TLength>;
|
|
189
|
+
maskRepeat?: MaskRepeatProperty;
|
|
190
|
+
maskSize?: MaskSizeProperty<TLength>;
|
|
191
|
+
maskType?: MaskTypeProperty;
|
|
192
|
+
maxBlockSize?: MaxBlockSizeProperty<TLength>;
|
|
193
|
+
maxHeight?: MaxHeightProperty<TLength>;
|
|
194
|
+
maxInlineSize?: MaxInlineSizeProperty<TLength>;
|
|
195
|
+
maxLines?: MaxLinesProperty;
|
|
196
|
+
maxWidth?: MaxWidthProperty<TLength>;
|
|
197
|
+
minBlockSize?: MinBlockSizeProperty<TLength>;
|
|
198
|
+
minHeight?: MinHeightProperty<TLength>;
|
|
199
|
+
minInlineSize?: MinInlineSizeProperty<TLength>;
|
|
200
|
+
minWidth?: MinWidthProperty<TLength>;
|
|
201
|
+
mixBlendMode?: MixBlendModeProperty;
|
|
202
|
+
motionDistance?: OffsetDistanceProperty<TLength>;
|
|
203
|
+
motionPath?: OffsetPathProperty;
|
|
204
|
+
motionRotation?: OffsetRotateProperty;
|
|
205
|
+
objectFit?: ObjectFitProperty;
|
|
206
|
+
objectPosition?: ObjectPositionProperty<TLength>;
|
|
207
|
+
offsetAnchor?: OffsetAnchorProperty<TLength>;
|
|
208
|
+
offsetDistance?: OffsetDistanceProperty<TLength>;
|
|
209
|
+
offsetPath?: OffsetPathProperty;
|
|
210
|
+
offsetPosition?: OffsetPositionProperty<TLength>;
|
|
211
|
+
offsetRotate?: OffsetRotateProperty;
|
|
212
|
+
offsetRotation?: OffsetRotateProperty;
|
|
213
|
+
opacity?: GlobalsNumber;
|
|
214
|
+
order?: GlobalsNumber;
|
|
215
|
+
orphans?: GlobalsNumber;
|
|
216
|
+
outlineColor?: OutlineColorProperty;
|
|
217
|
+
outlineOffset?: OutlineOffsetProperty<TLength>;
|
|
218
|
+
outlineStyle?: OutlineStyleProperty;
|
|
219
|
+
outlineWidth?: OutlineWidthProperty<TLength>;
|
|
220
|
+
overflow?: OverflowProperty;
|
|
221
|
+
overflowAnchor?: OverflowAnchorProperty;
|
|
222
|
+
overflowBlock?: OverflowBlockProperty;
|
|
223
|
+
overflowClipBox?: OverflowClipBoxProperty;
|
|
224
|
+
overflowInline?: OverflowInlineProperty;
|
|
225
|
+
overflowWrap?: OverflowWrapProperty;
|
|
226
|
+
overflowX?: OverflowXProperty;
|
|
227
|
+
overflowY?: OverflowYProperty;
|
|
228
|
+
overscrollBehavior?: OverscrollBehaviorProperty;
|
|
229
|
+
overscrollBehaviorX?: OverscrollBehaviorXProperty;
|
|
230
|
+
overscrollBehaviorY?: OverscrollBehaviorYProperty;
|
|
231
|
+
paddingBlock?: PaddingBlockProperty<TLength>;
|
|
232
|
+
paddingBlockEnd?: PaddingBlockEndProperty<TLength>;
|
|
233
|
+
paddingBlockStart?: PaddingBlockStartProperty<TLength>;
|
|
234
|
+
paddingBottom?: PaddingBottomProperty<TLength>;
|
|
235
|
+
paddingInline?: PaddingInlineProperty<TLength>;
|
|
236
|
+
paddingInlineEnd?: PaddingInlineEndProperty<TLength>;
|
|
237
|
+
paddingInlineStart?: PaddingInlineStartProperty<TLength>;
|
|
238
|
+
paddingLeft?: PaddingLeftProperty<TLength>;
|
|
239
|
+
paddingRight?: PaddingRightProperty<TLength>;
|
|
240
|
+
paddingTop?: PaddingTopProperty<TLength>;
|
|
241
|
+
pageBreakAfter?: PageBreakAfterProperty;
|
|
242
|
+
pageBreakBefore?: PageBreakBeforeProperty;
|
|
243
|
+
pageBreakInside?: PageBreakInsideProperty;
|
|
244
|
+
paintOrder?: PaintOrderProperty;
|
|
245
|
+
perspective?: PerspectiveProperty<TLength>;
|
|
246
|
+
perspectiveOrigin?: PerspectiveOriginProperty<TLength>;
|
|
247
|
+
placeContent?: PlaceContentProperty;
|
|
248
|
+
pointerEvents?: PointerEventsProperty;
|
|
249
|
+
position?: PositionProperty;
|
|
250
|
+
quotes?: QuotesProperty;
|
|
251
|
+
resize?: ResizeProperty;
|
|
252
|
+
right?: RightProperty<TLength>;
|
|
253
|
+
rotate?: RotateProperty;
|
|
254
|
+
rowGap?: RowGapProperty<TLength>;
|
|
255
|
+
rubyAlign?: RubyAlignProperty;
|
|
256
|
+
rubyMerge?: RubyMergeProperty;
|
|
257
|
+
rubyPosition?: RubyPositionProperty;
|
|
258
|
+
scale?: ScaleProperty;
|
|
259
|
+
scrollBehavior?: ScrollBehaviorProperty;
|
|
260
|
+
scrollMargin?: ScrollMarginProperty<TLength>;
|
|
261
|
+
scrollMarginBlock?: ScrollMarginBlockProperty<TLength>;
|
|
262
|
+
scrollMarginBlockEnd?: ScrollMarginBlockEndProperty<TLength>;
|
|
263
|
+
scrollMarginBlockStart?: ScrollMarginBlockStartProperty<TLength>;
|
|
264
|
+
scrollMarginBottom?: ScrollMarginBottomProperty<TLength>;
|
|
265
|
+
scrollMarginInline?: ScrollMarginInlineProperty<TLength>;
|
|
266
|
+
scrollMarginInlineEnd?: ScrollMarginInlineEndProperty<TLength>;
|
|
267
|
+
scrollMarginInlineStart?: ScrollMarginInlineStartProperty<TLength>;
|
|
268
|
+
scrollMarginLeft?: ScrollMarginLeftProperty<TLength>;
|
|
269
|
+
scrollMarginRight?: ScrollMarginRightProperty<TLength>;
|
|
270
|
+
scrollMarginTop?: ScrollMarginTopProperty<TLength>;
|
|
271
|
+
scrollPadding?: ScrollPaddingProperty<TLength>;
|
|
272
|
+
scrollPaddingBlock?: ScrollPaddingBlockProperty<TLength>;
|
|
273
|
+
scrollPaddingBlockEnd?: ScrollPaddingBlockEndProperty<TLength>;
|
|
274
|
+
scrollPaddingBlockStart?: ScrollPaddingBlockStartProperty<TLength>;
|
|
275
|
+
scrollPaddingBottom?: ScrollPaddingBottomProperty<TLength>;
|
|
276
|
+
scrollPaddingInline?: ScrollPaddingInlineProperty<TLength>;
|
|
277
|
+
scrollPaddingInlineEnd?: ScrollPaddingInlineEndProperty<TLength>;
|
|
278
|
+
scrollPaddingInlineStart?: ScrollPaddingInlineStartProperty<TLength>;
|
|
279
|
+
scrollPaddingLeft?: ScrollPaddingLeftProperty<TLength>;
|
|
280
|
+
scrollPaddingRight?: ScrollPaddingRightProperty<TLength>;
|
|
281
|
+
scrollPaddingTop?: ScrollPaddingTopProperty<TLength>;
|
|
282
|
+
scrollSnapAlign?: ScrollSnapAlignProperty;
|
|
283
|
+
scrollSnapStop?: ScrollSnapStopProperty;
|
|
284
|
+
scrollSnapType?: ScrollSnapTypeProperty;
|
|
285
|
+
scrollbarColor?: ScrollbarColorProperty;
|
|
286
|
+
scrollbarWidth?: ScrollbarWidthProperty;
|
|
287
|
+
shapeImageThreshold?: GlobalsNumber;
|
|
288
|
+
shapeMargin?: ShapeMarginProperty<TLength>;
|
|
289
|
+
shapeOutside?: ShapeOutsideProperty;
|
|
290
|
+
tabSize?: TabSizeProperty<TLength>;
|
|
291
|
+
tableLayout?: TableLayoutProperty;
|
|
292
|
+
textAlign?: TextAlignProperty;
|
|
293
|
+
textAlignLast?: TextAlignLastProperty;
|
|
294
|
+
textCombineUpright?: TextCombineUprightProperty;
|
|
295
|
+
textDecorationColor?: TextDecorationColorProperty;
|
|
296
|
+
textDecorationLine?: TextDecorationLineProperty;
|
|
297
|
+
textDecorationSkip?: TextDecorationSkipProperty;
|
|
298
|
+
textDecorationSkipInk?: TextDecorationSkipInkProperty;
|
|
299
|
+
textDecorationStyle?: TextDecorationStyleProperty;
|
|
300
|
+
textEmphasisColor?: TextEmphasisColorProperty;
|
|
301
|
+
textEmphasisPosition?: GlobalsString;
|
|
302
|
+
textEmphasisStyle?: TextEmphasisStyleProperty;
|
|
303
|
+
textIndent?: TextIndentProperty<TLength>;
|
|
304
|
+
textJustify?: TextJustifyProperty;
|
|
305
|
+
textOrientation?: TextOrientationProperty;
|
|
306
|
+
textOverflow?: TextOverflowProperty;
|
|
307
|
+
textRendering?: TextRenderingProperty;
|
|
308
|
+
textShadow?: TextShadowProperty;
|
|
309
|
+
textSizeAdjust?: TextSizeAdjustProperty;
|
|
310
|
+
textTransform?: TextTransformProperty;
|
|
311
|
+
textUnderlinePosition?: TextUnderlinePositionProperty;
|
|
312
|
+
top?: TopProperty<TLength>;
|
|
313
|
+
touchAction?: TouchActionProperty;
|
|
314
|
+
transform?: TransformProperty;
|
|
315
|
+
transformBox?: TransformBoxProperty;
|
|
316
|
+
transformOrigin?: TransformOriginProperty<TLength>;
|
|
317
|
+
transformStyle?: TransformStyleProperty;
|
|
318
|
+
transitionDelay?: GlobalsString;
|
|
319
|
+
transitionDuration?: GlobalsString;
|
|
320
|
+
transitionProperty?: TransitionPropertyProperty;
|
|
321
|
+
transitionTimingFunction?: TransitionTimingFunctionProperty;
|
|
322
|
+
translate?: TranslateProperty<TLength>;
|
|
323
|
+
unicodeBidi?: UnicodeBidiProperty;
|
|
324
|
+
userSelect?: UserSelectProperty;
|
|
325
|
+
verticalAlign?: VerticalAlignProperty<TLength>;
|
|
326
|
+
visibility?: VisibilityProperty;
|
|
327
|
+
whiteSpace?: WhiteSpaceProperty;
|
|
328
|
+
widows?: GlobalsNumber;
|
|
329
|
+
width?: WidthProperty<TLength>;
|
|
330
|
+
willChange?: WillChangeProperty;
|
|
331
|
+
wordBreak?: WordBreakProperty;
|
|
332
|
+
wordSpacing?: WordSpacingProperty<TLength>;
|
|
333
|
+
wordWrap?: WordWrapProperty;
|
|
334
|
+
writingMode?: WritingModeProperty;
|
|
335
|
+
zIndex?: ZIndexProperty;
|
|
336
|
+
zoom?: ZoomProperty;
|
|
337
|
+
}
|
|
338
|
+
export interface StandardShorthandProperties<TLength = string | 0> {
|
|
339
|
+
flexFlow?: FlexFlowProperty;
|
|
340
|
+
all?: Globals;
|
|
341
|
+
background?: BackgroundProperty<TLength>;
|
|
342
|
+
border?: BorderProperty<TLength>;
|
|
343
|
+
borderBlock?: BorderBlockProperty<TLength>;
|
|
344
|
+
borderBlockEnd?: BorderBlockEndProperty<TLength>;
|
|
345
|
+
borderBlockStart?: BorderBlockStartProperty<TLength>;
|
|
346
|
+
borderBottom?: BorderBottomProperty<TLength>;
|
|
347
|
+
borderColor?: BorderColorProperty;
|
|
348
|
+
borderImage?: BorderImageProperty;
|
|
349
|
+
borderInline?: BorderInlineProperty<TLength>;
|
|
350
|
+
borderInlineEnd?: BorderInlineEndProperty<TLength>;
|
|
351
|
+
borderInlineStart?: BorderInlineStartProperty<TLength>;
|
|
352
|
+
borderLeft?: BorderLeftProperty<TLength>;
|
|
353
|
+
borderRadius?: BorderRadiusProperty<TLength>;
|
|
354
|
+
borderRight?: BorderRightProperty<TLength>;
|
|
355
|
+
borderStyle?: BorderStyleProperty;
|
|
356
|
+
borderTop?: BorderTopProperty<TLength>;
|
|
357
|
+
borderWidth?: BorderWidthProperty<TLength>;
|
|
358
|
+
columnRule?: ColumnRuleProperty<TLength>;
|
|
359
|
+
columns?: ColumnsProperty<TLength>;
|
|
360
|
+
flex?: FlexProperty<TLength>;
|
|
361
|
+
animation?: AnimationProperty;
|
|
362
|
+
font?: FontProperty;
|
|
363
|
+
gap?: GapProperty<TLength>;
|
|
364
|
+
grid?: GridProperty;
|
|
365
|
+
gridArea?: GridAreaProperty;
|
|
366
|
+
gridColumn?: GridColumnProperty;
|
|
367
|
+
gridRow?: GridRowProperty;
|
|
368
|
+
gridTemplate?: GridTemplateProperty;
|
|
369
|
+
lineClamp?: LineClampProperty;
|
|
370
|
+
listStyle?: ListStyleProperty;
|
|
371
|
+
margin?: MarginProperty<TLength>;
|
|
372
|
+
mask?: MaskProperty<TLength>;
|
|
373
|
+
maskBorder?: MaskBorderProperty;
|
|
374
|
+
motion?: OffsetProperty<TLength>;
|
|
375
|
+
offset?: OffsetProperty<TLength>;
|
|
376
|
+
outline?: OutlineProperty<TLength>;
|
|
377
|
+
padding?: PaddingProperty<TLength>;
|
|
378
|
+
placeItems?: PlaceItemsProperty;
|
|
379
|
+
placeSelf?: PlaceSelfProperty;
|
|
380
|
+
textDecoration?: TextDecorationProperty;
|
|
381
|
+
textEmphasis?: TextEmphasisProperty;
|
|
382
|
+
transition?: TransitionProperty;
|
|
383
|
+
}
|
|
384
|
+
export type StandardProperties<TLength = string | 0> = StandardLonghandProperties<TLength> & StandardShorthandProperties<TLength>;
|
|
385
|
+
export interface VendorLonghandProperties<TLength = string | 0> {
|
|
386
|
+
msTransitionProperty?: TransitionPropertyProperty;
|
|
387
|
+
MozAnimationDelay?: GlobalsString;
|
|
388
|
+
MozAnimationDuration?: GlobalsString;
|
|
389
|
+
MozAnimationFillMode?: AnimationFillModeProperty;
|
|
390
|
+
MozAnimationIterationCount?: AnimationIterationCountProperty;
|
|
391
|
+
MozAnimationName?: AnimationNameProperty;
|
|
392
|
+
MozAnimationPlayState?: AnimationPlayStateProperty;
|
|
393
|
+
MozAnimationTimingFunction?: AnimationTimingFunctionProperty;
|
|
394
|
+
MozAppearance?: MozAppearanceProperty;
|
|
395
|
+
MozBackfaceVisibility?: BackfaceVisibilityProperty;
|
|
396
|
+
MozBorderBottomColors?: MozBorderBottomColorsProperty;
|
|
397
|
+
MozBorderEndColor?: BorderInlineEndColorProperty;
|
|
398
|
+
MozBorderEndStyle?: BorderInlineEndStyleProperty;
|
|
399
|
+
MozBorderEndWidth?: BorderInlineEndWidthProperty<TLength>;
|
|
400
|
+
MozBorderLeftColors?: MozBorderLeftColorsProperty;
|
|
401
|
+
MozBorderRightColors?: MozBorderRightColorsProperty;
|
|
402
|
+
MozBorderStartColor?: BorderInlineStartColorProperty;
|
|
403
|
+
MozBorderStartStyle?: BorderInlineStartStyleProperty;
|
|
404
|
+
MozBorderTopColors?: MozBorderTopColorsProperty;
|
|
405
|
+
MozBoxSizing?: BoxSizingProperty;
|
|
406
|
+
MozColumnCount?: ColumnCountProperty;
|
|
407
|
+
MozColumnFill?: ColumnFillProperty;
|
|
408
|
+
MozColumnGap?: ColumnGapProperty<TLength>;
|
|
409
|
+
MozColumnRuleColor?: ColumnRuleColorProperty;
|
|
410
|
+
MozColumnRuleStyle?: ColumnRuleStyleProperty;
|
|
411
|
+
MozColumnRuleWidth?: ColumnRuleWidthProperty<TLength>;
|
|
412
|
+
MozColumnWidth?: ColumnWidthProperty<TLength>;
|
|
413
|
+
MozContextProperties?: MozContextPropertiesProperty;
|
|
414
|
+
MozFloatEdge?: MozFloatEdgeProperty;
|
|
415
|
+
MozFontFeatureSettings?: FontFeatureSettingsProperty;
|
|
416
|
+
MozFontLanguageOverride?: FontLanguageOverrideProperty;
|
|
417
|
+
MozForceBrokenImageIcon?: GlobalsNumber;
|
|
418
|
+
MozHyphens?: HyphensProperty;
|
|
419
|
+
MozImageRegion?: MozImageRegionProperty;
|
|
420
|
+
MozMarginEnd?: MarginInlineEndProperty<TLength>;
|
|
421
|
+
MozMarginStart?: MarginInlineStartProperty<TLength>;
|
|
422
|
+
MozOrient?: MozOrientProperty;
|
|
423
|
+
MozOutlineRadiusBottomleft?: MozOutlineRadiusBottomleftProperty<TLength>;
|
|
424
|
+
MozOutlineRadiusBottomright?: MozOutlineRadiusBottomrightProperty<TLength>;
|
|
425
|
+
MozOutlineRadiusTopleft?: MozOutlineRadiusTopleftProperty<TLength>;
|
|
426
|
+
MozOutlineRadiusTopright?: MozOutlineRadiusToprightProperty<TLength>;
|
|
427
|
+
MozPaddingEnd?: PaddingInlineEndProperty<TLength>;
|
|
428
|
+
MozPaddingStart?: PaddingInlineStartProperty<TLength>;
|
|
429
|
+
MozPerspective?: PerspectiveProperty<TLength>;
|
|
430
|
+
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>;
|
|
431
|
+
MozStackSizing?: MozStackSizingProperty;
|
|
432
|
+
MozTabSize?: TabSizeProperty<TLength>;
|
|
433
|
+
MozTextSizeAdjust?: TextSizeAdjustProperty;
|
|
434
|
+
MozTransformOrigin?: TransformOriginProperty<TLength>;
|
|
435
|
+
MozTransformStyle?: TransformStyleProperty;
|
|
436
|
+
MozTransitionDelay?: GlobalsString;
|
|
437
|
+
MozTransitionDuration?: GlobalsString;
|
|
438
|
+
MozTransitionProperty?: TransitionPropertyProperty;
|
|
439
|
+
MozTransitionTimingFunction?: TransitionTimingFunctionProperty;
|
|
440
|
+
MozUserFocus?: MozUserFocusProperty;
|
|
441
|
+
MozUserModify?: MozUserModifyProperty;
|
|
442
|
+
MozUserSelect?: UserSelectProperty;
|
|
443
|
+
MozWindowDragging?: MozWindowDraggingProperty;
|
|
444
|
+
msAccelerator?: MsAcceleratorProperty;
|
|
445
|
+
msAlignSelf?: AlignSelfProperty;
|
|
446
|
+
msBlockProgression?: MsBlockProgressionProperty;
|
|
447
|
+
msContentZoomChaining?: MsContentZoomChainingProperty;
|
|
448
|
+
msContentZoomLimitMax?: GlobalsString;
|
|
449
|
+
msContentZoomLimitMin?: GlobalsString;
|
|
450
|
+
msContentZoomSnapPoints?: GlobalsString;
|
|
451
|
+
msContentZoomSnapType?: MsContentZoomSnapTypeProperty;
|
|
452
|
+
msContentZooming?: MsContentZoomingProperty;
|
|
453
|
+
msFilter?: GlobalsString;
|
|
454
|
+
msFlexDirection?: FlexDirectionProperty;
|
|
455
|
+
msFlexPositive?: GlobalsNumber;
|
|
456
|
+
msFlowFrom?: MsFlowFromProperty;
|
|
457
|
+
msFlowInto?: MsFlowIntoProperty;
|
|
458
|
+
msGridColumns?: GridAutoColumnsProperty<TLength>;
|
|
459
|
+
msGridRows?: GridAutoRowsProperty<TLength>;
|
|
460
|
+
msHighContrastAdjust?: MsHighContrastAdjustProperty;
|
|
461
|
+
msHyphenateLimitChars?: MsHyphenateLimitCharsProperty;
|
|
462
|
+
msHyphenateLimitLines?: MsHyphenateLimitLinesProperty;
|
|
463
|
+
msHyphenateLimitZone?: MsHyphenateLimitZoneProperty<TLength>;
|
|
464
|
+
msHyphens?: HyphensProperty;
|
|
465
|
+
msImeAlign?: MsImeAlignProperty;
|
|
466
|
+
msLineBreak?: LineBreakProperty;
|
|
467
|
+
msOrder?: GlobalsNumber;
|
|
468
|
+
msOverflowStyle?: MsOverflowStyleProperty;
|
|
469
|
+
msOverflowX?: OverflowXProperty;
|
|
470
|
+
msOverflowY?: OverflowYProperty;
|
|
471
|
+
msScrollChaining?: MsScrollChainingProperty;
|
|
472
|
+
msScrollLimitXMax?: MsScrollLimitXMaxProperty<TLength>;
|
|
473
|
+
msScrollLimitXMin?: MsScrollLimitXMinProperty<TLength>;
|
|
474
|
+
msScrollLimitYMax?: MsScrollLimitYMaxProperty<TLength>;
|
|
475
|
+
msScrollLimitYMin?: MsScrollLimitYMinProperty<TLength>;
|
|
476
|
+
msScrollRails?: MsScrollRailsProperty;
|
|
477
|
+
msScrollSnapPointsX?: GlobalsString;
|
|
478
|
+
msScrollSnapPointsY?: GlobalsString;
|
|
479
|
+
msScrollSnapType?: MsScrollSnapTypeProperty;
|
|
480
|
+
msScrollTranslation?: MsScrollTranslationProperty;
|
|
481
|
+
msScrollbar3dlightColor?: MsScrollbar3dlightColorProperty;
|
|
482
|
+
msScrollbarArrowColor?: MsScrollbarArrowColorProperty;
|
|
483
|
+
msScrollbarBaseColor?: MsScrollbarBaseColorProperty;
|
|
484
|
+
msScrollbarDarkshadowColor?: MsScrollbarDarkshadowColorProperty;
|
|
485
|
+
msScrollbarFaceColor?: MsScrollbarFaceColorProperty;
|
|
486
|
+
msScrollbarHighlightColor?: MsScrollbarHighlightColorProperty;
|
|
487
|
+
msScrollbarShadowColor?: MsScrollbarShadowColorProperty;
|
|
488
|
+
msScrollbarTrackColor?: MsScrollbarTrackColorProperty;
|
|
489
|
+
msTextAutospace?: MsTextAutospaceProperty;
|
|
490
|
+
msTextCombineHorizontal?: TextCombineUprightProperty;
|
|
491
|
+
msTextOverflow?: TextOverflowProperty;
|
|
492
|
+
msTouchAction?: TouchActionProperty;
|
|
493
|
+
msTouchSelect?: MsTouchSelectProperty;
|
|
494
|
+
msTransform?: TransformProperty;
|
|
495
|
+
msTransformOrigin?: TransformOriginProperty<TLength>;
|
|
496
|
+
msTransitionDelay?: GlobalsString;
|
|
497
|
+
msTransitionDuration?: GlobalsString;
|
|
498
|
+
MozAnimationDirection?: AnimationDirectionProperty;
|
|
499
|
+
msTransitionTimingFunction?: TransitionTimingFunctionProperty;
|
|
500
|
+
msUserSelect?: MsUserSelectProperty;
|
|
501
|
+
msWordBreak?: WordBreakProperty;
|
|
502
|
+
msWrapFlow?: MsWrapFlowProperty;
|
|
503
|
+
msWrapMargin?: MsWrapMarginProperty<TLength>;
|
|
504
|
+
msWrapThrough?: MsWrapThroughProperty;
|
|
505
|
+
msWritingMode?: WritingModeProperty;
|
|
506
|
+
OObjectFit?: ObjectFitProperty;
|
|
507
|
+
OObjectPosition?: ObjectPositionProperty<TLength>;
|
|
508
|
+
OTabSize?: TabSizeProperty<TLength>;
|
|
509
|
+
OTextOverflow?: TextOverflowProperty;
|
|
510
|
+
OTransformOrigin?: TransformOriginProperty<TLength>;
|
|
511
|
+
WebkitAlignContent?: AlignContentProperty;
|
|
512
|
+
WebkitAlignItems?: AlignItemsProperty;
|
|
513
|
+
WebkitAlignSelf?: AlignSelfProperty;
|
|
514
|
+
WebkitAnimationDelay?: GlobalsString;
|
|
515
|
+
WebkitAnimationDirection?: AnimationDirectionProperty;
|
|
516
|
+
WebkitAnimationDuration?: GlobalsString;
|
|
517
|
+
WebkitAnimationFillMode?: AnimationFillModeProperty;
|
|
518
|
+
WebkitAnimationIterationCount?: AnimationIterationCountProperty;
|
|
519
|
+
WebkitAnimationName?: AnimationNameProperty;
|
|
520
|
+
WebkitAnimationPlayState?: AnimationPlayStateProperty;
|
|
521
|
+
WebkitAnimationTimingFunction?: AnimationTimingFunctionProperty;
|
|
522
|
+
WebkitAppearance?: WebkitAppearanceProperty;
|
|
523
|
+
WebkitBackdropFilter?: BackdropFilterProperty;
|
|
524
|
+
WebkitBackfaceVisibility?: BackfaceVisibilityProperty;
|
|
525
|
+
WebkitBackgroundClip?: BackgroundClipProperty;
|
|
526
|
+
WebkitBackgroundOrigin?: BackgroundOriginProperty;
|
|
527
|
+
WebkitBackgroundSize?: BackgroundSizeProperty<TLength>;
|
|
528
|
+
WebkitBorderBeforeColor?: WebkitBorderBeforeColorProperty;
|
|
529
|
+
WebkitBorderBeforeStyle?: WebkitBorderBeforeStyleProperty;
|
|
530
|
+
WebkitBorderBeforeWidth?: WebkitBorderBeforeWidthProperty<TLength>;
|
|
531
|
+
WebkitBorderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength>;
|
|
532
|
+
WebkitBorderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength>;
|
|
533
|
+
WebkitBorderImageSlice?: BorderImageSliceProperty;
|
|
534
|
+
WebkitBorderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength>;
|
|
535
|
+
WebkitBorderTopRightRadius?: BorderTopRightRadiusProperty<TLength>;
|
|
536
|
+
WebkitBoxDecorationBreak?: BoxDecorationBreakProperty;
|
|
537
|
+
WebkitBoxReflect?: WebkitBoxReflectProperty<TLength>;
|
|
538
|
+
WebkitBoxShadow?: BoxShadowProperty;
|
|
539
|
+
WebkitBoxSizing?: BoxSizingProperty;
|
|
540
|
+
WebkitClipPath?: ClipPathProperty;
|
|
541
|
+
WebkitColorAdjust?: ColorAdjustProperty;
|
|
542
|
+
WebkitColumnCount?: ColumnCountProperty;
|
|
543
|
+
WebkitColumnFill?: ColumnFillProperty;
|
|
544
|
+
WebkitColumnGap?: ColumnGapProperty<TLength>;
|
|
545
|
+
WebkitColumnRuleColor?: ColumnRuleColorProperty;
|
|
546
|
+
WebkitColumnRuleStyle?: ColumnRuleStyleProperty;
|
|
547
|
+
WebkitColumnRuleWidth?: ColumnRuleWidthProperty<TLength>;
|
|
548
|
+
WebkitColumnSpan?: ColumnSpanProperty;
|
|
549
|
+
WebkitColumnWidth?: ColumnWidthProperty<TLength>;
|
|
550
|
+
WebkitFilter?: FilterProperty;
|
|
551
|
+
WebkitFlexBasis?: FlexBasisProperty<TLength>;
|
|
552
|
+
WebkitFlexDirection?: FlexDirectionProperty;
|
|
553
|
+
WebkitFlexGrow?: GlobalsNumber;
|
|
554
|
+
WebkitFlexShrink?: GlobalsNumber;
|
|
555
|
+
WebkitFlexWrap?: FlexWrapProperty;
|
|
556
|
+
WebkitFontFeatureSettings?: FontFeatureSettingsProperty;
|
|
557
|
+
WebkitFontKerning?: FontKerningProperty;
|
|
558
|
+
WebkitFontVariantLigatures?: FontVariantLigaturesProperty;
|
|
559
|
+
WebkitHyphens?: HyphensProperty;
|
|
560
|
+
WebkitJustifyContent?: JustifyContentProperty;
|
|
561
|
+
WebkitLineBreak?: LineBreakProperty;
|
|
562
|
+
WebkitLineClamp?: WebkitLineClampProperty;
|
|
563
|
+
WebkitMarginEnd?: MarginInlineEndProperty<TLength>;
|
|
564
|
+
WebkitMarginStart?: MarginInlineStartProperty<TLength>;
|
|
565
|
+
WebkitMaskAttachment?: WebkitMaskAttachmentProperty;
|
|
566
|
+
WebkitMaskClip?: WebkitMaskClipProperty;
|
|
567
|
+
WebkitMaskComposite?: WebkitMaskCompositeProperty;
|
|
568
|
+
WebkitMaskImage?: WebkitMaskImageProperty;
|
|
569
|
+
WebkitMaskOrigin?: WebkitMaskOriginProperty;
|
|
570
|
+
WebkitMaskPosition?: WebkitMaskPositionProperty<TLength>;
|
|
571
|
+
WebkitMaskPositionX?: WebkitMaskPositionXProperty<TLength>;
|
|
572
|
+
WebkitMaskPositionY?: WebkitMaskPositionYProperty<TLength>;
|
|
573
|
+
WebkitMaskRepeat?: WebkitMaskRepeatProperty;
|
|
574
|
+
WebkitMaskRepeatX?: WebkitMaskRepeatXProperty;
|
|
575
|
+
WebkitMaskRepeatY?: WebkitMaskRepeatYProperty;
|
|
576
|
+
WebkitMaskSize?: WebkitMaskSizeProperty<TLength>;
|
|
577
|
+
WebkitMaxInlineSize?: MaxInlineSizeProperty<TLength>;
|
|
578
|
+
WebkitOrder?: GlobalsNumber;
|
|
579
|
+
WebkitOverflowScrolling?: WebkitOverflowScrollingProperty;
|
|
580
|
+
WebkitPaddingEnd?: PaddingInlineEndProperty<TLength>;
|
|
581
|
+
WebkitPaddingStart?: PaddingInlineStartProperty<TLength>;
|
|
582
|
+
WebkitPerspective?: PerspectiveProperty<TLength>;
|
|
583
|
+
WebkitPerspectiveOrigin?: PerspectiveOriginProperty<TLength>;
|
|
584
|
+
WebkitScrollSnapType?: ScrollSnapTypeProperty;
|
|
585
|
+
WebkitShapeMargin?: ShapeMarginProperty<TLength>;
|
|
586
|
+
WebkitTapHighlightColor?: WebkitTapHighlightColorProperty;
|
|
587
|
+
WebkitTextCombine?: TextCombineUprightProperty;
|
|
588
|
+
WebkitTextDecorationColor?: TextDecorationColorProperty;
|
|
589
|
+
WebkitTextDecorationLine?: TextDecorationLineProperty;
|
|
590
|
+
WebkitTextDecorationSkip?: TextDecorationSkipProperty;
|
|
591
|
+
WebkitTextDecorationStyle?: TextDecorationStyleProperty;
|
|
592
|
+
WebkitTextEmphasisColor?: TextEmphasisColorProperty;
|
|
593
|
+
WebkitTextEmphasisPosition?: GlobalsString;
|
|
594
|
+
WebkitTextEmphasisStyle?: TextEmphasisStyleProperty;
|
|
595
|
+
WebkitTextFillColor?: WebkitTextFillColorProperty;
|
|
596
|
+
WebkitTextOrientation?: TextOrientationProperty;
|
|
597
|
+
WebkitTextSizeAdjust?: TextSizeAdjustProperty;
|
|
598
|
+
WebkitTextStrokeColor?: WebkitTextStrokeColorProperty;
|
|
599
|
+
WebkitTextStrokeWidth?: WebkitTextStrokeWidthProperty<TLength>;
|
|
600
|
+
WebkitTouchCallout?: WebkitTouchCalloutProperty;
|
|
601
|
+
WebkitTransform?: TransformProperty;
|
|
602
|
+
WebkitTransformOrigin?: TransformOriginProperty<TLength>;
|
|
603
|
+
WebkitTransformStyle?: TransformStyleProperty;
|
|
604
|
+
WebkitTransitionDelay?: GlobalsString;
|
|
605
|
+
WebkitTransitionDuration?: GlobalsString;
|
|
606
|
+
WebkitTransitionProperty?: TransitionPropertyProperty;
|
|
607
|
+
WebkitTransitionTimingFunction?: TransitionTimingFunctionProperty;
|
|
608
|
+
WebkitUserModify?: WebkitUserModifyProperty;
|
|
609
|
+
WebkitUserSelect?: UserSelectProperty;
|
|
610
|
+
WebkitWritingMode?: WritingModeProperty;
|
|
611
|
+
}
|
|
612
|
+
export interface VendorShorthandProperties<TLength = string | 0> {
|
|
613
|
+
WebkitAnimation?: AnimationProperty;
|
|
614
|
+
MozAnimation?: AnimationProperty;
|
|
615
|
+
MozColumnRule?: ColumnRuleProperty<TLength>;
|
|
616
|
+
MozColumns?: ColumnsProperty<TLength>;
|
|
617
|
+
MozTransition?: TransitionProperty;
|
|
618
|
+
msContentZoomLimit?: GlobalsString;
|
|
619
|
+
msContentZoomSnap?: MsContentZoomSnapProperty;
|
|
620
|
+
msFlex?: FlexProperty<TLength>;
|
|
621
|
+
msScrollLimit?: GlobalsString;
|
|
622
|
+
msScrollSnapX?: GlobalsString;
|
|
623
|
+
msScrollSnapY?: GlobalsString;
|
|
624
|
+
msTransition?: TransitionProperty;
|
|
625
|
+
MozBorderImage?: BorderImageProperty;
|
|
626
|
+
WebkitBorderBefore?: WebkitBorderBeforeProperty<TLength>;
|
|
627
|
+
WebkitBorderImage?: BorderImageProperty;
|
|
628
|
+
WebkitBorderRadius?: BorderRadiusProperty<TLength>;
|
|
629
|
+
WebkitColumnRule?: ColumnRuleProperty<TLength>;
|
|
630
|
+
WebkitColumns?: ColumnsProperty<TLength>;
|
|
631
|
+
WebkitFlex?: FlexProperty<TLength>;
|
|
632
|
+
WebkitFlexFlow?: FlexFlowProperty;
|
|
633
|
+
WebkitMask?: WebkitMaskProperty<TLength>;
|
|
634
|
+
WebkitTextEmphasis?: TextEmphasisProperty;
|
|
635
|
+
WebkitTextStroke?: WebkitTextStrokeProperty<TLength>;
|
|
636
|
+
WebkitTransition?: TransitionProperty;
|
|
637
|
+
}
|
|
638
|
+
export type VendorProperties<TLength = string | 0> = VendorLonghandProperties<TLength> & VendorShorthandProperties<TLength>;
|
|
639
|
+
export interface ObsoleteProperties<TLength = string | 0> {
|
|
640
|
+
MozBoxAlign?: BoxAlignProperty;
|
|
641
|
+
boxAlign?: BoxAlignProperty;
|
|
642
|
+
boxFlex?: GlobalsNumber;
|
|
643
|
+
boxFlexGroup?: GlobalsNumber;
|
|
644
|
+
boxLines?: BoxLinesProperty;
|
|
645
|
+
boxOrdinalGroup?: GlobalsNumber;
|
|
646
|
+
boxOrient?: BoxOrientProperty;
|
|
647
|
+
boxPack?: BoxPackProperty;
|
|
648
|
+
clip?: ClipProperty;
|
|
649
|
+
fontVariantAlternates?: FontVariantAlternatesProperty;
|
|
650
|
+
gridColumnGap?: GridColumnGapProperty<TLength>;
|
|
651
|
+
gridGap?: GridGapProperty<TLength>;
|
|
652
|
+
gridRowGap?: GridRowGapProperty<TLength>;
|
|
653
|
+
imeMode?: ImeModeProperty;
|
|
654
|
+
offsetBlock?: InsetBlockProperty<TLength>;
|
|
655
|
+
offsetBlockEnd?: InsetBlockEndProperty<TLength>;
|
|
656
|
+
offsetBlockStart?: InsetBlockStartProperty<TLength>;
|
|
657
|
+
offsetInline?: InsetInlineProperty<TLength>;
|
|
658
|
+
offsetInlineEnd?: InsetInlineEndProperty<TLength>;
|
|
659
|
+
offsetInlineStart?: InsetInlineStartProperty<TLength>;
|
|
660
|
+
scrollSnapCoordinate?: ScrollSnapCoordinateProperty<TLength>;
|
|
661
|
+
scrollSnapDestination?: ScrollSnapDestinationProperty<TLength>;
|
|
662
|
+
scrollSnapPointsX?: ScrollSnapPointsXProperty;
|
|
663
|
+
scrollSnapPointsY?: ScrollSnapPointsYProperty;
|
|
664
|
+
scrollSnapTypeX?: ScrollSnapTypeXProperty;
|
|
665
|
+
scrollSnapTypeY?: ScrollSnapTypeYProperty;
|
|
666
|
+
textCombineHorizontal?: TextCombineUprightProperty;
|
|
667
|
+
KhtmlBoxAlign?: BoxAlignProperty;
|
|
668
|
+
KhtmlBoxDirection?: BoxDirectionProperty;
|
|
669
|
+
KhtmlBoxFlex?: GlobalsNumber;
|
|
670
|
+
KhtmlBoxFlexGroup?: GlobalsNumber;
|
|
671
|
+
KhtmlBoxLines?: BoxLinesProperty;
|
|
672
|
+
KhtmlBoxOrdinalGroup?: GlobalsNumber;
|
|
673
|
+
KhtmlBoxOrient?: BoxOrientProperty;
|
|
674
|
+
KhtmlBoxPack?: BoxPackProperty;
|
|
675
|
+
KhtmlLineBreak?: LineBreakProperty;
|
|
676
|
+
KhtmlOpacity?: GlobalsNumber;
|
|
677
|
+
KhtmlUserSelect?: UserSelectProperty;
|
|
678
|
+
MozBackgroundClip?: BackgroundClipProperty;
|
|
679
|
+
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty;
|
|
680
|
+
MozBackgroundOrigin?: BackgroundOriginProperty;
|
|
681
|
+
MozBackgroundSize?: BackgroundSizeProperty<TLength>;
|
|
682
|
+
MozBinding?: MozBindingProperty;
|
|
683
|
+
MozBorderRadius?: BorderRadiusProperty<TLength>;
|
|
684
|
+
MozBorderRadiusBottomleft?: BorderBottomLeftRadiusProperty<TLength>;
|
|
685
|
+
MozBorderRadiusBottomright?: BorderBottomRightRadiusProperty<TLength>;
|
|
686
|
+
MozBorderRadiusTopleft?: BorderTopLeftRadiusProperty<TLength>;
|
|
687
|
+
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>;
|
|
688
|
+
boxDirection?: BoxDirectionProperty;
|
|
689
|
+
MozBoxDirection?: BoxDirectionProperty;
|
|
690
|
+
MozBoxFlex?: GlobalsNumber;
|
|
691
|
+
MozBoxOrdinalGroup?: GlobalsNumber;
|
|
692
|
+
MozBoxOrient?: BoxOrientProperty;
|
|
693
|
+
MozBoxPack?: BoxPackProperty;
|
|
694
|
+
MozBoxShadow?: BoxShadowProperty;
|
|
695
|
+
MozOpacity?: GlobalsNumber;
|
|
696
|
+
MozOutline?: OutlineProperty<TLength>;
|
|
697
|
+
MozOutlineColor?: OutlineColorProperty;
|
|
698
|
+
MozOutlineRadius?: MozOutlineRadiusProperty<TLength>;
|
|
699
|
+
MozOutlineStyle?: OutlineStyleProperty;
|
|
700
|
+
MozOutlineWidth?: OutlineWidthProperty<TLength>;
|
|
701
|
+
MozTextAlignLast?: TextAlignLastProperty;
|
|
702
|
+
MozTextBlink?: MozTextBlinkProperty;
|
|
703
|
+
MozTextDecorationColor?: TextDecorationColorProperty;
|
|
704
|
+
MozTextDecorationLine?: TextDecorationLineProperty;
|
|
705
|
+
MozTextDecorationStyle?: TextDecorationStyleProperty;
|
|
706
|
+
MozUserInput?: MozUserInputProperty;
|
|
707
|
+
MozWindowShadow?: MozWindowShadowProperty;
|
|
708
|
+
msImeMode?: ImeModeProperty;
|
|
709
|
+
OAnimation?: AnimationProperty;
|
|
710
|
+
OAnimationDelay?: GlobalsString;
|
|
711
|
+
OAnimationDirection?: AnimationDirectionProperty;
|
|
712
|
+
OAnimationDuration?: GlobalsString;
|
|
713
|
+
OAnimationFillMode?: AnimationFillModeProperty;
|
|
714
|
+
OAnimationIterationCount?: AnimationIterationCountProperty;
|
|
715
|
+
OAnimationName?: AnimationNameProperty;
|
|
716
|
+
OAnimationPlayState?: AnimationPlayStateProperty;
|
|
717
|
+
OAnimationTimingFunction?: AnimationTimingFunctionProperty;
|
|
718
|
+
OBackgroundSize?: BackgroundSizeProperty<TLength>;
|
|
719
|
+
OBorderImage?: BorderImageProperty;
|
|
720
|
+
OTransform?: TransformProperty;
|
|
721
|
+
OTransition?: TransitionProperty;
|
|
722
|
+
OTransitionDelay?: GlobalsString;
|
|
723
|
+
OTransitionDuration?: GlobalsString;
|
|
724
|
+
OTransitionProperty?: TransitionPropertyProperty;
|
|
725
|
+
OTransitionTimingFunction?: TransitionTimingFunctionProperty;
|
|
726
|
+
WebkitBoxAlign?: BoxAlignProperty;
|
|
727
|
+
WebkitBoxDirection?: BoxDirectionProperty;
|
|
728
|
+
WebkitBoxFlex?: GlobalsNumber;
|
|
729
|
+
WebkitBoxFlexGroup?: GlobalsNumber;
|
|
730
|
+
WebkitBoxLines?: BoxLinesProperty;
|
|
731
|
+
WebkitBoxOrdinalGroup?: GlobalsNumber;
|
|
732
|
+
WebkitBoxOrient?: BoxOrientProperty;
|
|
733
|
+
WebkitBoxPack?: BoxPackProperty;
|
|
734
|
+
WebkitScrollSnapPointsX?: ScrollSnapPointsXProperty;
|
|
735
|
+
WebkitScrollSnapPointsY?: ScrollSnapPointsYProperty;
|
|
736
|
+
}
|
|
737
|
+
export interface SvgProperties<TLength = string | 0> {
|
|
738
|
+
lineHeight?: LineHeightProperty<TLength>;
|
|
739
|
+
alignmentBaseline?: AlignmentBaselineProperty;
|
|
740
|
+
clip?: ClipProperty;
|
|
741
|
+
clipPath?: ClipPathProperty;
|
|
742
|
+
clipRule?: ClipRuleProperty;
|
|
743
|
+
color?: ColorProperty;
|
|
744
|
+
colorInterpolation?: ColorInterpolationProperty;
|
|
745
|
+
colorRendering?: ColorRenderingProperty;
|
|
746
|
+
cursor?: CursorProperty;
|
|
747
|
+
direction?: DirectionProperty;
|
|
748
|
+
display?: DisplayProperty;
|
|
749
|
+
dominantBaseline?: DominantBaselineProperty;
|
|
750
|
+
fill?: FillProperty;
|
|
751
|
+
fillOpacity?: GlobalsNumber;
|
|
752
|
+
fillRule?: FillRuleProperty;
|
|
753
|
+
filter?: FilterProperty;
|
|
754
|
+
floodColor?: FloodColorProperty;
|
|
755
|
+
floodOpacity?: GlobalsNumber;
|
|
756
|
+
font?: FontProperty;
|
|
757
|
+
fontFamily?: FontFamilyProperty;
|
|
758
|
+
fontSize?: FontSizeProperty<TLength>;
|
|
759
|
+
fontSizeAdjust?: FontSizeAdjustProperty;
|
|
760
|
+
fontStretch?: FontStretchProperty;
|
|
761
|
+
fontStyle?: FontStyleProperty;
|
|
762
|
+
fontVariant?: FontVariantProperty;
|
|
763
|
+
fontWeight?: FontWeightProperty;
|
|
764
|
+
glyphOrientationVertical?: GlyphOrientationVerticalProperty;
|
|
765
|
+
imageRendering?: ImageRenderingProperty;
|
|
766
|
+
letterSpacing?: LetterSpacingProperty<TLength>;
|
|
767
|
+
lightingColor?: LightingColorProperty;
|
|
768
|
+
baselineShift?: BaselineShiftProperty<TLength>;
|
|
769
|
+
marker?: MarkerProperty;
|
|
770
|
+
markerEnd?: MarkerEndProperty;
|
|
771
|
+
markerMid?: MarkerMidProperty;
|
|
772
|
+
markerStart?: MarkerStartProperty;
|
|
773
|
+
mask?: MaskProperty<TLength>;
|
|
774
|
+
opacity?: GlobalsNumber;
|
|
775
|
+
overflow?: OverflowProperty;
|
|
776
|
+
paintOrder?: PaintOrderProperty;
|
|
777
|
+
pointerEvents?: PointerEventsProperty;
|
|
778
|
+
shapeRendering?: ShapeRenderingProperty;
|
|
779
|
+
stopColor?: StopColorProperty;
|
|
780
|
+
stopOpacity?: GlobalsNumber;
|
|
781
|
+
stroke?: StrokeProperty;
|
|
782
|
+
strokeDasharray?: StrokeDasharrayProperty<TLength>;
|
|
783
|
+
strokeDashoffset?: StrokeDashoffsetProperty<TLength>;
|
|
784
|
+
strokeLinecap?: StrokeLinecapProperty;
|
|
785
|
+
strokeLinejoin?: StrokeLinejoinProperty;
|
|
786
|
+
strokeMiterlimit?: GlobalsNumber;
|
|
787
|
+
strokeOpacity?: GlobalsNumber;
|
|
788
|
+
strokeWidth?: StrokeWidthProperty<TLength>;
|
|
789
|
+
textAnchor?: TextAnchorProperty;
|
|
790
|
+
textDecoration?: TextDecorationProperty;
|
|
791
|
+
textRendering?: TextRenderingProperty;
|
|
792
|
+
unicodeBidi?: UnicodeBidiProperty;
|
|
793
|
+
vectorEffect?: VectorEffectProperty;
|
|
794
|
+
visibility?: VisibilityProperty;
|
|
795
|
+
whiteSpace?: WhiteSpaceProperty;
|
|
796
|
+
wordSpacing?: WordSpacingProperty<TLength>;
|
|
797
|
+
writingMode?: WritingModeProperty;
|
|
798
|
+
}
|
|
799
|
+
export type Properties<TLength = string | 0> = StandardProperties<TLength> & VendorProperties<TLength> & ObsoleteProperties<TLength> & SvgProperties<TLength>;
|
|
800
|
+
export interface StandardLonghandPropertiesHyphen<TLength = string | 0> {
|
|
801
|
+
['margin-bottom']?: MarginBottomProperty<TLength>;
|
|
802
|
+
['align-content']?: AlignContentProperty;
|
|
803
|
+
['align-self']?: AlignSelfProperty;
|
|
804
|
+
['animation-delay']?: GlobalsString;
|
|
805
|
+
['animation-direction']?: AnimationDirectionProperty;
|
|
806
|
+
['animation-duration']?: GlobalsString;
|
|
807
|
+
['animation-fill-mode']?: AnimationFillModeProperty;
|
|
808
|
+
['animation-iteration-count']?: AnimationIterationCountProperty;
|
|
809
|
+
['animation-name']?: AnimationNameProperty;
|
|
810
|
+
['animation-play-state']?: AnimationPlayStateProperty;
|
|
811
|
+
['animation-timing-function']?: AnimationTimingFunctionProperty;
|
|
812
|
+
appearance?: AppearanceProperty;
|
|
813
|
+
['backdrop-filter']?: BackdropFilterProperty;
|
|
814
|
+
['backface-visibility']?: BackfaceVisibilityProperty;
|
|
815
|
+
['background-attachment']?: BackgroundAttachmentProperty;
|
|
816
|
+
['background-blend-mode']?: BackgroundBlendModeProperty;
|
|
817
|
+
['background-clip']?: BackgroundClipProperty;
|
|
818
|
+
['background-color']?: BackgroundColorProperty;
|
|
819
|
+
['background-image']?: BackgroundImageProperty;
|
|
820
|
+
['background-origin']?: BackgroundOriginProperty;
|
|
821
|
+
['background-position']?: BackgroundPositionProperty<TLength>;
|
|
822
|
+
['background-position-x']?: BackgroundPositionXProperty<TLength>;
|
|
823
|
+
['background-position-y']?: BackgroundPositionYProperty<TLength>;
|
|
824
|
+
['background-repeat']?: BackgroundRepeatProperty;
|
|
825
|
+
['background-size']?: BackgroundSizeProperty<TLength>;
|
|
826
|
+
['block-overflow']?: BlockOverflowProperty;
|
|
827
|
+
['block-size']?: BlockSizeProperty<TLength>;
|
|
828
|
+
['border-block-color']?: BorderBlockColorProperty;
|
|
829
|
+
['border-block-end-color']?: BorderBlockEndColorProperty;
|
|
830
|
+
['border-block-end-style']?: BorderBlockEndStyleProperty;
|
|
831
|
+
['border-block-end-width']?: BorderBlockEndWidthProperty<TLength>;
|
|
832
|
+
['border-block-start-color']?: BorderBlockStartColorProperty;
|
|
833
|
+
['border-block-start-style']?: BorderBlockStartStyleProperty;
|
|
834
|
+
['border-block-start-width']?: BorderBlockStartWidthProperty<TLength>;
|
|
835
|
+
['border-block-style']?: BorderBlockStyleProperty;
|
|
836
|
+
['border-block-width']?: BorderBlockWidthProperty<TLength>;
|
|
837
|
+
['border-bottom-color']?: BorderBottomColorProperty;
|
|
838
|
+
['border-bottom-left-radius']?: BorderBottomLeftRadiusProperty<TLength>;
|
|
839
|
+
['border-bottom-right-radius']?: BorderBottomRightRadiusProperty<TLength>;
|
|
840
|
+
['border-bottom-style']?: BorderBottomStyleProperty;
|
|
841
|
+
['border-bottom-width']?: BorderBottomWidthProperty<TLength>;
|
|
842
|
+
['border-collapse']?: BorderCollapseProperty;
|
|
843
|
+
['border-end-end-radius']?: BorderEndEndRadiusProperty<TLength>;
|
|
844
|
+
['border-end-start-radius']?: BorderEndStartRadiusProperty<TLength>;
|
|
845
|
+
['border-image-outset']?: BorderImageOutsetProperty<TLength>;
|
|
846
|
+
['border-image-repeat']?: BorderImageRepeatProperty;
|
|
847
|
+
['border-image-slice']?: BorderImageSliceProperty;
|
|
848
|
+
['border-image-source']?: BorderImageSourceProperty;
|
|
849
|
+
['border-image-width']?: BorderImageWidthProperty<TLength>;
|
|
850
|
+
['border-inline-color']?: BorderInlineColorProperty;
|
|
851
|
+
['border-inline-end-color']?: BorderInlineEndColorProperty;
|
|
852
|
+
['border-inline-end-style']?: BorderInlineEndStyleProperty;
|
|
853
|
+
['border-inline-end-width']?: BorderInlineEndWidthProperty<TLength>;
|
|
854
|
+
['border-inline-start-color']?: BorderInlineStartColorProperty;
|
|
855
|
+
['border-inline-start-style']?: BorderInlineStartStyleProperty;
|
|
856
|
+
['border-inline-start-width']?: BorderInlineStartWidthProperty<TLength>;
|
|
857
|
+
['border-inline-style']?: BorderInlineStyleProperty;
|
|
858
|
+
['border-inline-width']?: BorderInlineWidthProperty<TLength>;
|
|
859
|
+
['border-left-color']?: BorderLeftColorProperty;
|
|
860
|
+
['border-left-style']?: BorderLeftStyleProperty;
|
|
861
|
+
['border-left-width']?: BorderLeftWidthProperty<TLength>;
|
|
862
|
+
['border-right-color']?: BorderRightColorProperty;
|
|
863
|
+
['border-right-style']?: BorderRightStyleProperty;
|
|
864
|
+
['border-right-width']?: BorderRightWidthProperty<TLength>;
|
|
865
|
+
['border-spacing']?: BorderSpacingProperty<TLength>;
|
|
866
|
+
['border-start-end-radius']?: BorderStartEndRadiusProperty<TLength>;
|
|
867
|
+
['border-start-start-radius']?: BorderStartStartRadiusProperty<TLength>;
|
|
868
|
+
['border-top-color']?: BorderTopColorProperty;
|
|
869
|
+
['border-top-left-radius']?: BorderTopLeftRadiusProperty<TLength>;
|
|
870
|
+
['border-top-right-radius']?: BorderTopRightRadiusProperty<TLength>;
|
|
871
|
+
['border-top-style']?: BorderTopStyleProperty;
|
|
872
|
+
['border-top-width']?: BorderTopWidthProperty<TLength>;
|
|
873
|
+
bottom?: BottomProperty<TLength>;
|
|
874
|
+
['box-decoration-break']?: BoxDecorationBreakProperty;
|
|
875
|
+
['box-shadow']?: BoxShadowProperty;
|
|
876
|
+
['box-sizing']?: BoxSizingProperty;
|
|
877
|
+
['break-after']?: BreakAfterProperty;
|
|
878
|
+
['break-before']?: BreakBeforeProperty;
|
|
879
|
+
['break-inside']?: BreakInsideProperty;
|
|
880
|
+
['caption-side']?: CaptionSideProperty;
|
|
881
|
+
['caret-color']?: CaretColorProperty;
|
|
882
|
+
clear?: ClearProperty;
|
|
883
|
+
['clip-path']?: ClipPathProperty;
|
|
884
|
+
color?: ColorProperty;
|
|
885
|
+
['color-adjust']?: ColorAdjustProperty;
|
|
886
|
+
['column-count']?: ColumnCountProperty;
|
|
887
|
+
['column-fill']?: ColumnFillProperty;
|
|
888
|
+
['column-gap']?: ColumnGapProperty<TLength>;
|
|
889
|
+
['column-rule-color']?: ColumnRuleColorProperty;
|
|
890
|
+
['column-rule-style']?: ColumnRuleStyleProperty;
|
|
891
|
+
['column-rule-width']?: ColumnRuleWidthProperty<TLength>;
|
|
892
|
+
['column-span']?: ColumnSpanProperty;
|
|
893
|
+
['column-width']?: ColumnWidthProperty<TLength>;
|
|
894
|
+
contain?: ContainProperty;
|
|
895
|
+
content?: ContentProperty;
|
|
896
|
+
['counter-increment']?: CounterIncrementProperty;
|
|
897
|
+
['counter-reset']?: CounterResetProperty;
|
|
898
|
+
['counter-set']?: CounterSetProperty;
|
|
899
|
+
cursor?: CursorProperty;
|
|
900
|
+
direction?: DirectionProperty;
|
|
901
|
+
display?: DisplayProperty;
|
|
902
|
+
['empty-cells']?: EmptyCellsProperty;
|
|
903
|
+
filter?: FilterProperty;
|
|
904
|
+
['flex-basis']?: FlexBasisProperty<TLength>;
|
|
905
|
+
['flex-direction']?: FlexDirectionProperty;
|
|
906
|
+
['flex-grow']?: GlobalsNumber;
|
|
907
|
+
['flex-shrink']?: GlobalsNumber;
|
|
908
|
+
['flex-wrap']?: FlexWrapProperty;
|
|
909
|
+
float?: FloatProperty;
|
|
910
|
+
['font-family']?: FontFamilyProperty;
|
|
911
|
+
['font-feature-settings']?: FontFeatureSettingsProperty;
|
|
912
|
+
['font-kerning']?: FontKerningProperty;
|
|
913
|
+
['font-language-override']?: FontLanguageOverrideProperty;
|
|
914
|
+
['font-optical-sizing']?: FontOpticalSizingProperty;
|
|
915
|
+
['font-size']?: FontSizeProperty<TLength>;
|
|
916
|
+
['font-size-adjust']?: FontSizeAdjustProperty;
|
|
917
|
+
['font-stretch']?: FontStretchProperty;
|
|
918
|
+
['font-style']?: FontStyleProperty;
|
|
919
|
+
['font-synthesis']?: FontSynthesisProperty;
|
|
920
|
+
['font-variant']?: FontVariantProperty;
|
|
921
|
+
['font-variant-caps']?: FontVariantCapsProperty;
|
|
922
|
+
['font-variant-east-asian']?: FontVariantEastAsianProperty;
|
|
923
|
+
['font-variant-ligatures']?: FontVariantLigaturesProperty;
|
|
924
|
+
['font-variant-numeric']?: FontVariantNumericProperty;
|
|
925
|
+
['font-variant-position']?: FontVariantPositionProperty;
|
|
926
|
+
['font-variation-settings']?: FontVariationSettingsProperty;
|
|
927
|
+
['font-weight']?: FontWeightProperty;
|
|
928
|
+
['grid-auto-columns']?: GridAutoColumnsProperty<TLength>;
|
|
929
|
+
['grid-auto-flow']?: GridAutoFlowProperty;
|
|
930
|
+
['grid-auto-rows']?: GridAutoRowsProperty<TLength>;
|
|
931
|
+
['grid-column-end']?: GridColumnEndProperty;
|
|
932
|
+
['grid-column-start']?: GridColumnStartProperty;
|
|
933
|
+
['grid-row-end']?: GridRowEndProperty;
|
|
934
|
+
['grid-row-start']?: GridRowStartProperty;
|
|
935
|
+
['grid-template-areas']?: GridTemplateAreasProperty;
|
|
936
|
+
['grid-template-columns']?: GridTemplateColumnsProperty<TLength>;
|
|
937
|
+
['grid-template-rows']?: GridTemplateRowsProperty<TLength>;
|
|
938
|
+
['hanging-punctuation']?: HangingPunctuationProperty;
|
|
939
|
+
height?: HeightProperty<TLength>;
|
|
940
|
+
hyphens?: HyphensProperty;
|
|
941
|
+
['image-orientation']?: ImageOrientationProperty;
|
|
942
|
+
['image-rendering']?: ImageRenderingProperty;
|
|
943
|
+
['image-resolution']?: ImageResolutionProperty;
|
|
944
|
+
['initial-letter']?: InitialLetterProperty;
|
|
945
|
+
['inline-size']?: InlineSizeProperty<TLength>;
|
|
946
|
+
inset?: InsetProperty<TLength>;
|
|
947
|
+
['inset-block']?: InsetBlockProperty<TLength>;
|
|
948
|
+
['inset-block-end']?: InsetBlockEndProperty<TLength>;
|
|
949
|
+
['inset-block-start']?: InsetBlockStartProperty<TLength>;
|
|
950
|
+
['inset-inline']?: InsetInlineProperty<TLength>;
|
|
951
|
+
['inset-inline-end']?: InsetInlineEndProperty<TLength>;
|
|
952
|
+
['inset-inline-start']?: InsetInlineStartProperty<TLength>;
|
|
953
|
+
isolation?: IsolationProperty;
|
|
954
|
+
['justify-content']?: JustifyContentProperty;
|
|
955
|
+
['justify-items']?: JustifyItemsProperty;
|
|
956
|
+
['justify-self']?: JustifySelfProperty;
|
|
957
|
+
left?: LeftProperty<TLength>;
|
|
958
|
+
['letter-spacing']?: LetterSpacingProperty<TLength>;
|
|
959
|
+
['line-break']?: LineBreakProperty;
|
|
960
|
+
['line-height']?: LineHeightProperty<TLength>;
|
|
961
|
+
['line-height-step']?: LineHeightStepProperty<TLength>;
|
|
962
|
+
['list-style-image']?: ListStyleImageProperty;
|
|
963
|
+
['list-style-position']?: ListStylePositionProperty;
|
|
964
|
+
['list-style-type']?: ListStyleTypeProperty;
|
|
965
|
+
['margin-block']?: MarginBlockProperty<TLength>;
|
|
966
|
+
['margin-block-end']?: MarginBlockEndProperty<TLength>;
|
|
967
|
+
['margin-block-start']?: MarginBlockStartProperty<TLength>;
|
|
968
|
+
['align-items']?: AlignItemsProperty;
|
|
969
|
+
['margin-inline']?: MarginInlineProperty<TLength>;
|
|
970
|
+
['margin-inline-end']?: MarginInlineEndProperty<TLength>;
|
|
971
|
+
['margin-inline-start']?: MarginInlineStartProperty<TLength>;
|
|
972
|
+
['margin-left']?: MarginLeftProperty<TLength>;
|
|
973
|
+
['margin-right']?: MarginRightProperty<TLength>;
|
|
974
|
+
['margin-top']?: MarginTopProperty<TLength>;
|
|
975
|
+
['mask-border-mode']?: MaskBorderModeProperty;
|
|
976
|
+
['mask-border-outset']?: MaskBorderOutsetProperty<TLength>;
|
|
977
|
+
['mask-border-repeat']?: MaskBorderRepeatProperty;
|
|
978
|
+
['mask-border-slice']?: MaskBorderSliceProperty;
|
|
979
|
+
['mask-border-source']?: MaskBorderSourceProperty;
|
|
980
|
+
['mask-border-width']?: MaskBorderWidthProperty<TLength>;
|
|
981
|
+
['mask-clip']?: MaskClipProperty;
|
|
982
|
+
['mask-composite']?: MaskCompositeProperty;
|
|
983
|
+
['mask-image']?: MaskImageProperty;
|
|
984
|
+
['mask-mode']?: MaskModeProperty;
|
|
985
|
+
['mask-origin']?: MaskOriginProperty;
|
|
986
|
+
['mask-position']?: MaskPositionProperty<TLength>;
|
|
987
|
+
['mask-repeat']?: MaskRepeatProperty;
|
|
988
|
+
['mask-size']?: MaskSizeProperty<TLength>;
|
|
989
|
+
['mask-type']?: MaskTypeProperty;
|
|
990
|
+
['max-block-size']?: MaxBlockSizeProperty<TLength>;
|
|
991
|
+
['max-height']?: MaxHeightProperty<TLength>;
|
|
992
|
+
['max-inline-size']?: MaxInlineSizeProperty<TLength>;
|
|
993
|
+
['max-lines']?: MaxLinesProperty;
|
|
994
|
+
['max-width']?: MaxWidthProperty<TLength>;
|
|
995
|
+
['min-block-size']?: MinBlockSizeProperty<TLength>;
|
|
996
|
+
['min-height']?: MinHeightProperty<TLength>;
|
|
997
|
+
['min-inline-size']?: MinInlineSizeProperty<TLength>;
|
|
998
|
+
['min-width']?: MinWidthProperty<TLength>;
|
|
999
|
+
['mix-blend-mode']?: MixBlendModeProperty;
|
|
1000
|
+
['motion-distance']?: OffsetDistanceProperty<TLength>;
|
|
1001
|
+
['motion-path']?: OffsetPathProperty;
|
|
1002
|
+
['motion-rotation']?: OffsetRotateProperty;
|
|
1003
|
+
['object-fit']?: ObjectFitProperty;
|
|
1004
|
+
['object-position']?: ObjectPositionProperty<TLength>;
|
|
1005
|
+
['offset-anchor']?: OffsetAnchorProperty<TLength>;
|
|
1006
|
+
['offset-distance']?: OffsetDistanceProperty<TLength>;
|
|
1007
|
+
['offset-path']?: OffsetPathProperty;
|
|
1008
|
+
['offset-position']?: OffsetPositionProperty<TLength>;
|
|
1009
|
+
['offset-rotate']?: OffsetRotateProperty;
|
|
1010
|
+
['offset-rotation']?: OffsetRotateProperty;
|
|
1011
|
+
opacity?: GlobalsNumber;
|
|
1012
|
+
order?: GlobalsNumber;
|
|
1013
|
+
orphans?: GlobalsNumber;
|
|
1014
|
+
['outline-color']?: OutlineColorProperty;
|
|
1015
|
+
['outline-offset']?: OutlineOffsetProperty<TLength>;
|
|
1016
|
+
['outline-style']?: OutlineStyleProperty;
|
|
1017
|
+
['outline-width']?: OutlineWidthProperty<TLength>;
|
|
1018
|
+
overflow?: OverflowProperty;
|
|
1019
|
+
['overflow-anchor']?: OverflowAnchorProperty;
|
|
1020
|
+
['overflow-block']?: OverflowBlockProperty;
|
|
1021
|
+
['overflow-clip-box']?: OverflowClipBoxProperty;
|
|
1022
|
+
['overflow-inline']?: OverflowInlineProperty;
|
|
1023
|
+
['overflow-wrap']?: OverflowWrapProperty;
|
|
1024
|
+
['overflow-x']?: OverflowXProperty;
|
|
1025
|
+
['overflow-y']?: OverflowYProperty;
|
|
1026
|
+
['overscroll-behavior']?: OverscrollBehaviorProperty;
|
|
1027
|
+
['overscroll-behavior-x']?: OverscrollBehaviorXProperty;
|
|
1028
|
+
['overscroll-behavior-y']?: OverscrollBehaviorYProperty;
|
|
1029
|
+
['padding-block']?: PaddingBlockProperty<TLength>;
|
|
1030
|
+
['padding-block-end']?: PaddingBlockEndProperty<TLength>;
|
|
1031
|
+
['padding-block-start']?: PaddingBlockStartProperty<TLength>;
|
|
1032
|
+
['padding-bottom']?: PaddingBottomProperty<TLength>;
|
|
1033
|
+
['padding-inline']?: PaddingInlineProperty<TLength>;
|
|
1034
|
+
['padding-inline-end']?: PaddingInlineEndProperty<TLength>;
|
|
1035
|
+
['padding-inline-start']?: PaddingInlineStartProperty<TLength>;
|
|
1036
|
+
['padding-left']?: PaddingLeftProperty<TLength>;
|
|
1037
|
+
['padding-right']?: PaddingRightProperty<TLength>;
|
|
1038
|
+
['padding-top']?: PaddingTopProperty<TLength>;
|
|
1039
|
+
['page-break-after']?: PageBreakAfterProperty;
|
|
1040
|
+
['page-break-before']?: PageBreakBeforeProperty;
|
|
1041
|
+
['page-break-inside']?: PageBreakInsideProperty;
|
|
1042
|
+
['paint-order']?: PaintOrderProperty;
|
|
1043
|
+
perspective?: PerspectiveProperty<TLength>;
|
|
1044
|
+
['perspective-origin']?: PerspectiveOriginProperty<TLength>;
|
|
1045
|
+
['place-content']?: PlaceContentProperty;
|
|
1046
|
+
['pointer-events']?: PointerEventsProperty;
|
|
1047
|
+
position?: PositionProperty;
|
|
1048
|
+
quotes?: QuotesProperty;
|
|
1049
|
+
resize?: ResizeProperty;
|
|
1050
|
+
right?: RightProperty<TLength>;
|
|
1051
|
+
rotate?: RotateProperty;
|
|
1052
|
+
['row-gap']?: RowGapProperty<TLength>;
|
|
1053
|
+
['ruby-align']?: RubyAlignProperty;
|
|
1054
|
+
['ruby-merge']?: RubyMergeProperty;
|
|
1055
|
+
['ruby-position']?: RubyPositionProperty;
|
|
1056
|
+
scale?: ScaleProperty;
|
|
1057
|
+
['scroll-behavior']?: ScrollBehaviorProperty;
|
|
1058
|
+
['scroll-margin']?: ScrollMarginProperty<TLength>;
|
|
1059
|
+
['scroll-margin-block']?: ScrollMarginBlockProperty<TLength>;
|
|
1060
|
+
['scroll-margin-block-end']?: ScrollMarginBlockEndProperty<TLength>;
|
|
1061
|
+
['scroll-margin-block-start']?: ScrollMarginBlockStartProperty<TLength>;
|
|
1062
|
+
['scroll-margin-bottom']?: ScrollMarginBottomProperty<TLength>;
|
|
1063
|
+
['scroll-margin-inline']?: ScrollMarginInlineProperty<TLength>;
|
|
1064
|
+
['scroll-margin-inline-end']?: ScrollMarginInlineEndProperty<TLength>;
|
|
1065
|
+
['scroll-margin-inline-start']?: ScrollMarginInlineStartProperty<TLength>;
|
|
1066
|
+
['scroll-margin-left']?: ScrollMarginLeftProperty<TLength>;
|
|
1067
|
+
['scroll-margin-right']?: ScrollMarginRightProperty<TLength>;
|
|
1068
|
+
['scroll-margin-top']?: ScrollMarginTopProperty<TLength>;
|
|
1069
|
+
['scroll-padding']?: ScrollPaddingProperty<TLength>;
|
|
1070
|
+
['scroll-padding-block']?: ScrollPaddingBlockProperty<TLength>;
|
|
1071
|
+
['scroll-padding-block-end']?: ScrollPaddingBlockEndProperty<TLength>;
|
|
1072
|
+
['scroll-padding-block-start']?: ScrollPaddingBlockStartProperty<TLength>;
|
|
1073
|
+
['scroll-padding-bottom']?: ScrollPaddingBottomProperty<TLength>;
|
|
1074
|
+
['scroll-padding-inline']?: ScrollPaddingInlineProperty<TLength>;
|
|
1075
|
+
['scroll-padding-inline-end']?: ScrollPaddingInlineEndProperty<TLength>;
|
|
1076
|
+
['scroll-padding-inline-start']?: ScrollPaddingInlineStartProperty<TLength>;
|
|
1077
|
+
['scroll-padding-left']?: ScrollPaddingLeftProperty<TLength>;
|
|
1078
|
+
['scroll-padding-right']?: ScrollPaddingRightProperty<TLength>;
|
|
1079
|
+
['scroll-padding-top']?: ScrollPaddingTopProperty<TLength>;
|
|
1080
|
+
['scroll-snap-align']?: ScrollSnapAlignProperty;
|
|
1081
|
+
['scroll-snap-stop']?: ScrollSnapStopProperty;
|
|
1082
|
+
['scroll-snap-type']?: ScrollSnapTypeProperty;
|
|
1083
|
+
['scrollbar-color']?: ScrollbarColorProperty;
|
|
1084
|
+
['scrollbar-width']?: ScrollbarWidthProperty;
|
|
1085
|
+
['shape-image-threshold']?: GlobalsNumber;
|
|
1086
|
+
['shape-margin']?: ShapeMarginProperty<TLength>;
|
|
1087
|
+
['shape-outside']?: ShapeOutsideProperty;
|
|
1088
|
+
['tab-size']?: TabSizeProperty<TLength>;
|
|
1089
|
+
['table-layout']?: TableLayoutProperty;
|
|
1090
|
+
['text-align']?: TextAlignProperty;
|
|
1091
|
+
['text-align-last']?: TextAlignLastProperty;
|
|
1092
|
+
['text-combine-upright']?: TextCombineUprightProperty;
|
|
1093
|
+
['text-decoration-color']?: TextDecorationColorProperty;
|
|
1094
|
+
['text-decoration-line']?: TextDecorationLineProperty;
|
|
1095
|
+
['text-decoration-skip']?: TextDecorationSkipProperty;
|
|
1096
|
+
['text-decoration-skip-ink']?: TextDecorationSkipInkProperty;
|
|
1097
|
+
['text-decoration-style']?: TextDecorationStyleProperty;
|
|
1098
|
+
['text-emphasis-color']?: TextEmphasisColorProperty;
|
|
1099
|
+
['text-emphasis-position']?: GlobalsString;
|
|
1100
|
+
['text-emphasis-style']?: TextEmphasisStyleProperty;
|
|
1101
|
+
['text-indent']?: TextIndentProperty<TLength>;
|
|
1102
|
+
['text-justify']?: TextJustifyProperty;
|
|
1103
|
+
['text-orientation']?: TextOrientationProperty;
|
|
1104
|
+
['text-overflow']?: TextOverflowProperty;
|
|
1105
|
+
['text-rendering']?: TextRenderingProperty;
|
|
1106
|
+
['text-shadow']?: TextShadowProperty;
|
|
1107
|
+
['text-size-adjust']?: TextSizeAdjustProperty;
|
|
1108
|
+
['text-transform']?: TextTransformProperty;
|
|
1109
|
+
['text-underline-position']?: TextUnderlinePositionProperty;
|
|
1110
|
+
top?: TopProperty<TLength>;
|
|
1111
|
+
['touch-action']?: TouchActionProperty;
|
|
1112
|
+
transform?: TransformProperty;
|
|
1113
|
+
['transform-box']?: TransformBoxProperty;
|
|
1114
|
+
['transform-origin']?: TransformOriginProperty<TLength>;
|
|
1115
|
+
['transform-style']?: TransformStyleProperty;
|
|
1116
|
+
['transition-delay']?: GlobalsString;
|
|
1117
|
+
['transition-duration']?: GlobalsString;
|
|
1118
|
+
['transition-property']?: TransitionPropertyProperty;
|
|
1119
|
+
['transition-timing-function']?: TransitionTimingFunctionProperty;
|
|
1120
|
+
translate?: TranslateProperty<TLength>;
|
|
1121
|
+
['unicode-bidi']?: UnicodeBidiProperty;
|
|
1122
|
+
['user-select']?: UserSelectProperty;
|
|
1123
|
+
['vertical-align']?: VerticalAlignProperty<TLength>;
|
|
1124
|
+
visibility?: VisibilityProperty;
|
|
1125
|
+
['white-space']?: WhiteSpaceProperty;
|
|
1126
|
+
widows?: GlobalsNumber;
|
|
1127
|
+
width?: WidthProperty<TLength>;
|
|
1128
|
+
['will-change']?: WillChangeProperty;
|
|
1129
|
+
['word-break']?: WordBreakProperty;
|
|
1130
|
+
['word-spacing']?: WordSpacingProperty<TLength>;
|
|
1131
|
+
['word-wrap']?: WordWrapProperty;
|
|
1132
|
+
['writing-mode']?: WritingModeProperty;
|
|
1133
|
+
['z-index']?: ZIndexProperty;
|
|
1134
|
+
zoom?: ZoomProperty;
|
|
1135
|
+
}
|
|
1136
|
+
export interface StandardShorthandPropertiesHyphen<TLength = string | 0> {
|
|
1137
|
+
['flex-flow']?: FlexFlowProperty;
|
|
1138
|
+
all?: Globals;
|
|
1139
|
+
background?: BackgroundProperty<TLength>;
|
|
1140
|
+
border?: BorderProperty<TLength>;
|
|
1141
|
+
['border-block']?: BorderBlockProperty<TLength>;
|
|
1142
|
+
['border-block-end']?: BorderBlockEndProperty<TLength>;
|
|
1143
|
+
['border-block-start']?: BorderBlockStartProperty<TLength>;
|
|
1144
|
+
['border-bottom']?: BorderBottomProperty<TLength>;
|
|
1145
|
+
['border-color']?: BorderColorProperty;
|
|
1146
|
+
['border-image']?: BorderImageProperty;
|
|
1147
|
+
['border-inline']?: BorderInlineProperty<TLength>;
|
|
1148
|
+
['border-inline-end']?: BorderInlineEndProperty<TLength>;
|
|
1149
|
+
['border-inline-start']?: BorderInlineStartProperty<TLength>;
|
|
1150
|
+
['border-left']?: BorderLeftProperty<TLength>;
|
|
1151
|
+
['border-radius']?: BorderRadiusProperty<TLength>;
|
|
1152
|
+
['border-right']?: BorderRightProperty<TLength>;
|
|
1153
|
+
['border-style']?: BorderStyleProperty;
|
|
1154
|
+
['border-top']?: BorderTopProperty<TLength>;
|
|
1155
|
+
['border-width']?: BorderWidthProperty<TLength>;
|
|
1156
|
+
['column-rule']?: ColumnRuleProperty<TLength>;
|
|
1157
|
+
columns?: ColumnsProperty<TLength>;
|
|
1158
|
+
flex?: FlexProperty<TLength>;
|
|
1159
|
+
animation?: AnimationProperty;
|
|
1160
|
+
font?: FontProperty;
|
|
1161
|
+
gap?: GapProperty<TLength>;
|
|
1162
|
+
grid?: GridProperty;
|
|
1163
|
+
['grid-area']?: GridAreaProperty;
|
|
1164
|
+
['grid-column']?: GridColumnProperty;
|
|
1165
|
+
['grid-row']?: GridRowProperty;
|
|
1166
|
+
['grid-template']?: GridTemplateProperty;
|
|
1167
|
+
['line-clamp']?: LineClampProperty;
|
|
1168
|
+
['list-style']?: ListStyleProperty;
|
|
1169
|
+
margin?: MarginProperty<TLength>;
|
|
1170
|
+
mask?: MaskProperty<TLength>;
|
|
1171
|
+
['mask-border']?: MaskBorderProperty;
|
|
1172
|
+
motion?: OffsetProperty<TLength>;
|
|
1173
|
+
offset?: OffsetProperty<TLength>;
|
|
1174
|
+
outline?: OutlineProperty<TLength>;
|
|
1175
|
+
padding?: PaddingProperty<TLength>;
|
|
1176
|
+
['place-items']?: PlaceItemsProperty;
|
|
1177
|
+
['place-self']?: PlaceSelfProperty;
|
|
1178
|
+
['text-decoration']?: TextDecorationProperty;
|
|
1179
|
+
['text-emphasis']?: TextEmphasisProperty;
|
|
1180
|
+
transition?: TransitionProperty;
|
|
1181
|
+
}
|
|
1182
|
+
export type StandardPropertiesHyphen<TLength = string | 0> = StandardLonghandPropertiesHyphen<TLength> & StandardShorthandPropertiesHyphen<TLength>;
|
|
1183
|
+
export interface VendorLonghandPropertiesHyphen<TLength = string | 0> {
|
|
1184
|
+
['-ms-transition-property']?: TransitionPropertyProperty;
|
|
1185
|
+
['-moz-animation-delay']?: GlobalsString;
|
|
1186
|
+
['-moz-animation-duration']?: GlobalsString;
|
|
1187
|
+
['-moz-animation-fill-mode']?: AnimationFillModeProperty;
|
|
1188
|
+
['-moz-animation-iteration-count']?: AnimationIterationCountProperty;
|
|
1189
|
+
['-moz-animation-name']?: AnimationNameProperty;
|
|
1190
|
+
['-moz-animation-play-state']?: AnimationPlayStateProperty;
|
|
1191
|
+
['-moz-animation-timing-function']?: AnimationTimingFunctionProperty;
|
|
1192
|
+
['-moz-appearance']?: MozAppearanceProperty;
|
|
1193
|
+
['-moz-backface-visibility']?: BackfaceVisibilityProperty;
|
|
1194
|
+
['-moz-border-bottom-colors']?: MozBorderBottomColorsProperty;
|
|
1195
|
+
['-moz-border-end-color']?: BorderInlineEndColorProperty;
|
|
1196
|
+
['-moz-border-end-style']?: BorderInlineEndStyleProperty;
|
|
1197
|
+
['-moz-border-end-width']?: BorderInlineEndWidthProperty<TLength>;
|
|
1198
|
+
['-moz-border-left-colors']?: MozBorderLeftColorsProperty;
|
|
1199
|
+
['-moz-border-right-colors']?: MozBorderRightColorsProperty;
|
|
1200
|
+
['-moz-border-start-color']?: BorderInlineStartColorProperty;
|
|
1201
|
+
['-moz-border-start-style']?: BorderInlineStartStyleProperty;
|
|
1202
|
+
['-moz-border-top-colors']?: MozBorderTopColorsProperty;
|
|
1203
|
+
['-moz-box-sizing']?: BoxSizingProperty;
|
|
1204
|
+
['-moz-column-count']?: ColumnCountProperty;
|
|
1205
|
+
['-moz-column-fill']?: ColumnFillProperty;
|
|
1206
|
+
['-moz-column-gap']?: ColumnGapProperty<TLength>;
|
|
1207
|
+
['-moz-column-rule-color']?: ColumnRuleColorProperty;
|
|
1208
|
+
['-moz-column-rule-style']?: ColumnRuleStyleProperty;
|
|
1209
|
+
['-moz-column-rule-width']?: ColumnRuleWidthProperty<TLength>;
|
|
1210
|
+
['-moz-column-width']?: ColumnWidthProperty<TLength>;
|
|
1211
|
+
['-moz-context-properties']?: MozContextPropertiesProperty;
|
|
1212
|
+
['-moz-float-edge']?: MozFloatEdgeProperty;
|
|
1213
|
+
['-moz-font-feature-settings']?: FontFeatureSettingsProperty;
|
|
1214
|
+
['-moz-font-language-override']?: FontLanguageOverrideProperty;
|
|
1215
|
+
['-moz-force-broken-image-icon']?: GlobalsNumber;
|
|
1216
|
+
['-moz-hyphens']?: HyphensProperty;
|
|
1217
|
+
['-moz-image-region']?: MozImageRegionProperty;
|
|
1218
|
+
['-moz-margin-end']?: MarginInlineEndProperty<TLength>;
|
|
1219
|
+
['-moz-margin-start']?: MarginInlineStartProperty<TLength>;
|
|
1220
|
+
['-moz-orient']?: MozOrientProperty;
|
|
1221
|
+
['-moz-outline-radius-bottomleft']?: MozOutlineRadiusBottomleftProperty<TLength>;
|
|
1222
|
+
['-moz-outline-radius-bottomright']?: MozOutlineRadiusBottomrightProperty<TLength>;
|
|
1223
|
+
['-moz-outline-radius-topleft']?: MozOutlineRadiusTopleftProperty<TLength>;
|
|
1224
|
+
['-moz-outline-radius-topright']?: MozOutlineRadiusToprightProperty<TLength>;
|
|
1225
|
+
['-moz-padding-end']?: PaddingInlineEndProperty<TLength>;
|
|
1226
|
+
['-moz-padding-start']?: PaddingInlineStartProperty<TLength>;
|
|
1227
|
+
['-moz-perspective']?: PerspectiveProperty<TLength>;
|
|
1228
|
+
['-moz-perspective-origin']?: PerspectiveOriginProperty<TLength>;
|
|
1229
|
+
['-moz-stack-sizing']?: MozStackSizingProperty;
|
|
1230
|
+
['-moz-tab-size']?: TabSizeProperty<TLength>;
|
|
1231
|
+
['-moz-text-size-adjust']?: TextSizeAdjustProperty;
|
|
1232
|
+
['-moz-transform-origin']?: TransformOriginProperty<TLength>;
|
|
1233
|
+
['-moz-transform-style']?: TransformStyleProperty;
|
|
1234
|
+
['-moz-transition-delay']?: GlobalsString;
|
|
1235
|
+
['-moz-transition-duration']?: GlobalsString;
|
|
1236
|
+
['-moz-transition-property']?: TransitionPropertyProperty;
|
|
1237
|
+
['-moz-transition-timing-function']?: TransitionTimingFunctionProperty;
|
|
1238
|
+
['-moz-user-focus']?: MozUserFocusProperty;
|
|
1239
|
+
['-moz-user-modify']?: MozUserModifyProperty;
|
|
1240
|
+
['-moz-user-select']?: UserSelectProperty;
|
|
1241
|
+
['-moz-window-dragging']?: MozWindowDraggingProperty;
|
|
1242
|
+
['-ms-accelerator']?: MsAcceleratorProperty;
|
|
1243
|
+
['-ms-align-self']?: AlignSelfProperty;
|
|
1244
|
+
['-ms-block-progression']?: MsBlockProgressionProperty;
|
|
1245
|
+
['-ms-content-zoom-chaining']?: MsContentZoomChainingProperty;
|
|
1246
|
+
['-ms-content-zoom-limit-max']?: GlobalsString;
|
|
1247
|
+
['-ms-content-zoom-limit-min']?: GlobalsString;
|
|
1248
|
+
['-ms-content-zoom-snap-points']?: GlobalsString;
|
|
1249
|
+
['-ms-content-zoom-snap-type']?: MsContentZoomSnapTypeProperty;
|
|
1250
|
+
['-ms-content-zooming']?: MsContentZoomingProperty;
|
|
1251
|
+
['-ms-filter']?: GlobalsString;
|
|
1252
|
+
['-ms-flex-direction']?: FlexDirectionProperty;
|
|
1253
|
+
['-ms-flex-positive']?: GlobalsNumber;
|
|
1254
|
+
['-ms-flow-from']?: MsFlowFromProperty;
|
|
1255
|
+
['-ms-flow-into']?: MsFlowIntoProperty;
|
|
1256
|
+
['-ms-grid-columns']?: GridAutoColumnsProperty<TLength>;
|
|
1257
|
+
['-ms-grid-rows']?: GridAutoRowsProperty<TLength>;
|
|
1258
|
+
['-ms-high-contrast-adjust']?: MsHighContrastAdjustProperty;
|
|
1259
|
+
['-ms-hyphenate-limit-chars']?: MsHyphenateLimitCharsProperty;
|
|
1260
|
+
['-ms-hyphenate-limit-lines']?: MsHyphenateLimitLinesProperty;
|
|
1261
|
+
['-ms-hyphenate-limit-zone']?: MsHyphenateLimitZoneProperty<TLength>;
|
|
1262
|
+
['-ms-hyphens']?: HyphensProperty;
|
|
1263
|
+
['-ms-ime-align']?: MsImeAlignProperty;
|
|
1264
|
+
['-ms-line-break']?: LineBreakProperty;
|
|
1265
|
+
['-ms-order']?: GlobalsNumber;
|
|
1266
|
+
['-ms-overflow-style']?: MsOverflowStyleProperty;
|
|
1267
|
+
['-ms-overflow-x']?: OverflowXProperty;
|
|
1268
|
+
['-ms-overflow-y']?: OverflowYProperty;
|
|
1269
|
+
['-ms-scroll-chaining']?: MsScrollChainingProperty;
|
|
1270
|
+
['-ms-scroll-limit-x-max']?: MsScrollLimitXMaxProperty<TLength>;
|
|
1271
|
+
['-ms-scroll-limit-x-min']?: MsScrollLimitXMinProperty<TLength>;
|
|
1272
|
+
['-ms-scroll-limit-y-max']?: MsScrollLimitYMaxProperty<TLength>;
|
|
1273
|
+
['-ms-scroll-limit-y-min']?: MsScrollLimitYMinProperty<TLength>;
|
|
1274
|
+
['-ms-scroll-rails']?: MsScrollRailsProperty;
|
|
1275
|
+
['-ms-scroll-snap-points-x']?: GlobalsString;
|
|
1276
|
+
['-ms-scroll-snap-points-y']?: GlobalsString;
|
|
1277
|
+
['-ms-scroll-snap-type']?: MsScrollSnapTypeProperty;
|
|
1278
|
+
['-ms-scroll-translation']?: MsScrollTranslationProperty;
|
|
1279
|
+
['-ms-scrollbar-3dlight-color']?: MsScrollbar3dlightColorProperty;
|
|
1280
|
+
['-ms-scrollbar-arrow-color']?: MsScrollbarArrowColorProperty;
|
|
1281
|
+
['-ms-scrollbar-base-color']?: MsScrollbarBaseColorProperty;
|
|
1282
|
+
['-ms-scrollbar-darkshadow-color']?: MsScrollbarDarkshadowColorProperty;
|
|
1283
|
+
['-ms-scrollbar-face-color']?: MsScrollbarFaceColorProperty;
|
|
1284
|
+
['-ms-scrollbar-highlight-color']?: MsScrollbarHighlightColorProperty;
|
|
1285
|
+
['-ms-scrollbar-shadow-color']?: MsScrollbarShadowColorProperty;
|
|
1286
|
+
['-ms-scrollbar-track-color']?: MsScrollbarTrackColorProperty;
|
|
1287
|
+
['-ms-text-autospace']?: MsTextAutospaceProperty;
|
|
1288
|
+
['-ms-text-combine-horizontal']?: TextCombineUprightProperty;
|
|
1289
|
+
['-ms-text-overflow']?: TextOverflowProperty;
|
|
1290
|
+
['-ms-touch-action']?: TouchActionProperty;
|
|
1291
|
+
['-ms-touch-select']?: MsTouchSelectProperty;
|
|
1292
|
+
['-ms-transform']?: TransformProperty;
|
|
1293
|
+
['-ms-transform-origin']?: TransformOriginProperty<TLength>;
|
|
1294
|
+
['-ms-transition-delay']?: GlobalsString;
|
|
1295
|
+
['-ms-transition-duration']?: GlobalsString;
|
|
1296
|
+
['-moz-animation-direction']?: AnimationDirectionProperty;
|
|
1297
|
+
['-ms-transition-timing-function']?: TransitionTimingFunctionProperty;
|
|
1298
|
+
['-ms-user-select']?: MsUserSelectProperty;
|
|
1299
|
+
['-ms-word-break']?: WordBreakProperty;
|
|
1300
|
+
['-ms-wrap-flow']?: MsWrapFlowProperty;
|
|
1301
|
+
['-ms-wrap-margin']?: MsWrapMarginProperty<TLength>;
|
|
1302
|
+
['-ms-wrap-through']?: MsWrapThroughProperty;
|
|
1303
|
+
['-ms-writing-mode']?: WritingModeProperty;
|
|
1304
|
+
['-o-object-fit']?: ObjectFitProperty;
|
|
1305
|
+
['-o-object-position']?: ObjectPositionProperty<TLength>;
|
|
1306
|
+
['-o-tab-size']?: TabSizeProperty<TLength>;
|
|
1307
|
+
['-o-text-overflow']?: TextOverflowProperty;
|
|
1308
|
+
['-o-transform-origin']?: TransformOriginProperty<TLength>;
|
|
1309
|
+
['-webkit-align-content']?: AlignContentProperty;
|
|
1310
|
+
['-webkit-align-items']?: AlignItemsProperty;
|
|
1311
|
+
['-webkit-align-self']?: AlignSelfProperty;
|
|
1312
|
+
['-webkit-animation-delay']?: GlobalsString;
|
|
1313
|
+
['-webkit-animation-direction']?: AnimationDirectionProperty;
|
|
1314
|
+
['-webkit-animation-duration']?: GlobalsString;
|
|
1315
|
+
['-webkit-animation-fill-mode']?: AnimationFillModeProperty;
|
|
1316
|
+
['-webkit-animation-iteration-count']?: AnimationIterationCountProperty;
|
|
1317
|
+
['-webkit-animation-name']?: AnimationNameProperty;
|
|
1318
|
+
['-webkit-animation-play-state']?: AnimationPlayStateProperty;
|
|
1319
|
+
['-webkit-animation-timing-function']?: AnimationTimingFunctionProperty;
|
|
1320
|
+
['-webkit-appearance']?: WebkitAppearanceProperty;
|
|
1321
|
+
['-webkit-backdrop-filter']?: BackdropFilterProperty;
|
|
1322
|
+
['-webkit-backface-visibility']?: BackfaceVisibilityProperty;
|
|
1323
|
+
['-webkit-background-clip']?: BackgroundClipProperty;
|
|
1324
|
+
['-webkit-background-origin']?: BackgroundOriginProperty;
|
|
1325
|
+
['-webkit-background-size']?: BackgroundSizeProperty<TLength>;
|
|
1326
|
+
['-webkit-border-before-color']?: WebkitBorderBeforeColorProperty;
|
|
1327
|
+
['-webkit-border-before-style']?: WebkitBorderBeforeStyleProperty;
|
|
1328
|
+
['-webkit-border-before-width']?: WebkitBorderBeforeWidthProperty<TLength>;
|
|
1329
|
+
['-webkit-border-bottom-left-radius']?: BorderBottomLeftRadiusProperty<TLength>;
|
|
1330
|
+
['-webkit-border-bottom-right-radius']?: BorderBottomRightRadiusProperty<TLength>;
|
|
1331
|
+
['-webkit-border-image-slice']?: BorderImageSliceProperty;
|
|
1332
|
+
['-webkit-border-top-left-radius']?: BorderTopLeftRadiusProperty<TLength>;
|
|
1333
|
+
['-webkit-border-top-right-radius']?: BorderTopRightRadiusProperty<TLength>;
|
|
1334
|
+
['-webkit-box-decoration-break']?: BoxDecorationBreakProperty;
|
|
1335
|
+
['-webkit-box-reflect']?: WebkitBoxReflectProperty<TLength>;
|
|
1336
|
+
['-webkit-box-shadow']?: BoxShadowProperty;
|
|
1337
|
+
['-webkit-box-sizing']?: BoxSizingProperty;
|
|
1338
|
+
['-webkit-clip-path']?: ClipPathProperty;
|
|
1339
|
+
['-webkit-color-adjust']?: ColorAdjustProperty;
|
|
1340
|
+
['-webkit-column-count']?: ColumnCountProperty;
|
|
1341
|
+
['-webkit-column-fill']?: ColumnFillProperty;
|
|
1342
|
+
['-webkit-column-gap']?: ColumnGapProperty<TLength>;
|
|
1343
|
+
['-webkit-column-rule-color']?: ColumnRuleColorProperty;
|
|
1344
|
+
['-webkit-column-rule-style']?: ColumnRuleStyleProperty;
|
|
1345
|
+
['-webkit-column-rule-width']?: ColumnRuleWidthProperty<TLength>;
|
|
1346
|
+
['-webkit-column-span']?: ColumnSpanProperty;
|
|
1347
|
+
['-webkit-column-width']?: ColumnWidthProperty<TLength>;
|
|
1348
|
+
['-webkit-filter']?: FilterProperty;
|
|
1349
|
+
['-webkit-flex-basis']?: FlexBasisProperty<TLength>;
|
|
1350
|
+
['-webkit-flex-direction']?: FlexDirectionProperty;
|
|
1351
|
+
['-webkit-flex-grow']?: GlobalsNumber;
|
|
1352
|
+
['-webkit-flex-shrink']?: GlobalsNumber;
|
|
1353
|
+
['-webkit-flex-wrap']?: FlexWrapProperty;
|
|
1354
|
+
['-webkit-font-feature-settings']?: FontFeatureSettingsProperty;
|
|
1355
|
+
['-webkit-font-kerning']?: FontKerningProperty;
|
|
1356
|
+
['-webkit-font-variant-ligatures']?: FontVariantLigaturesProperty;
|
|
1357
|
+
['-webkit-hyphens']?: HyphensProperty;
|
|
1358
|
+
['-webkit-justify-content']?: JustifyContentProperty;
|
|
1359
|
+
['-webkit-line-break']?: LineBreakProperty;
|
|
1360
|
+
['-webkit-line-clamp']?: WebkitLineClampProperty;
|
|
1361
|
+
['-webkit-margin-end']?: MarginInlineEndProperty<TLength>;
|
|
1362
|
+
['-webkit-margin-start']?: MarginInlineStartProperty<TLength>;
|
|
1363
|
+
['-webkit-mask-attachment']?: WebkitMaskAttachmentProperty;
|
|
1364
|
+
['-webkit-mask-clip']?: WebkitMaskClipProperty;
|
|
1365
|
+
['-webkit-mask-composite']?: WebkitMaskCompositeProperty;
|
|
1366
|
+
['-webkit-mask-image']?: WebkitMaskImageProperty;
|
|
1367
|
+
['-webkit-mask-origin']?: WebkitMaskOriginProperty;
|
|
1368
|
+
['-webkit-mask-position']?: WebkitMaskPositionProperty<TLength>;
|
|
1369
|
+
['-webkit-mask-position-x']?: WebkitMaskPositionXProperty<TLength>;
|
|
1370
|
+
['-webkit-mask-position-y']?: WebkitMaskPositionYProperty<TLength>;
|
|
1371
|
+
['-webkit-mask-repeat']?: WebkitMaskRepeatProperty;
|
|
1372
|
+
['-webkit-mask-repeat-x']?: WebkitMaskRepeatXProperty;
|
|
1373
|
+
['-webkit-mask-repeat-y']?: WebkitMaskRepeatYProperty;
|
|
1374
|
+
['-webkit-mask-size']?: WebkitMaskSizeProperty<TLength>;
|
|
1375
|
+
['-webkit-max-inline-size']?: MaxInlineSizeProperty<TLength>;
|
|
1376
|
+
['-webkit-order']?: GlobalsNumber;
|
|
1377
|
+
['-webkit-overflow-scrolling']?: WebkitOverflowScrollingProperty;
|
|
1378
|
+
['-webkit-padding-end']?: PaddingInlineEndProperty<TLength>;
|
|
1379
|
+
['-webkit-padding-start']?: PaddingInlineStartProperty<TLength>;
|
|
1380
|
+
['-webkit-perspective']?: PerspectiveProperty<TLength>;
|
|
1381
|
+
['-webkit-perspective-origin']?: PerspectiveOriginProperty<TLength>;
|
|
1382
|
+
['-webkit-scroll-snap-type']?: ScrollSnapTypeProperty;
|
|
1383
|
+
['-webkit-shape-margin']?: ShapeMarginProperty<TLength>;
|
|
1384
|
+
['-webkit-tap-highlight-color']?: WebkitTapHighlightColorProperty;
|
|
1385
|
+
['-webkit-text-combine']?: TextCombineUprightProperty;
|
|
1386
|
+
['-webkit-text-decoration-color']?: TextDecorationColorProperty;
|
|
1387
|
+
['-webkit-text-decoration-line']?: TextDecorationLineProperty;
|
|
1388
|
+
['-webkit-text-decoration-skip']?: TextDecorationSkipProperty;
|
|
1389
|
+
['-webkit-text-decoration-style']?: TextDecorationStyleProperty;
|
|
1390
|
+
['-webkit-text-emphasis-color']?: TextEmphasisColorProperty;
|
|
1391
|
+
['-webkit-text-emphasis-position']?: GlobalsString;
|
|
1392
|
+
['-webkit-text-emphasis-style']?: TextEmphasisStyleProperty;
|
|
1393
|
+
['-webkit-text-fill-color']?: WebkitTextFillColorProperty;
|
|
1394
|
+
['-webkit-text-orientation']?: TextOrientationProperty;
|
|
1395
|
+
['-webkit-text-size-adjust']?: TextSizeAdjustProperty;
|
|
1396
|
+
['-webkit-text-stroke-color']?: WebkitTextStrokeColorProperty;
|
|
1397
|
+
['-webkit-text-stroke-width']?: WebkitTextStrokeWidthProperty<TLength>;
|
|
1398
|
+
['-webkit-touch-callout']?: WebkitTouchCalloutProperty;
|
|
1399
|
+
['-webkit-transform']?: TransformProperty;
|
|
1400
|
+
['-webkit-transform-origin']?: TransformOriginProperty<TLength>;
|
|
1401
|
+
['-webkit-transform-style']?: TransformStyleProperty;
|
|
1402
|
+
['-webkit-transition-delay']?: GlobalsString;
|
|
1403
|
+
['-webkit-transition-duration']?: GlobalsString;
|
|
1404
|
+
['-webkit-transition-property']?: TransitionPropertyProperty;
|
|
1405
|
+
['-webkit-transition-timing-function']?: TransitionTimingFunctionProperty;
|
|
1406
|
+
['-webkit-user-modify']?: WebkitUserModifyProperty;
|
|
1407
|
+
['-webkit-user-select']?: UserSelectProperty;
|
|
1408
|
+
['-webkit-writing-mode']?: WritingModeProperty;
|
|
1409
|
+
}
|
|
1410
|
+
export interface VendorShorthandPropertiesHyphen<TLength = string | 0> {
|
|
1411
|
+
['-webkit-animation']?: AnimationProperty;
|
|
1412
|
+
['-moz-animation']?: AnimationProperty;
|
|
1413
|
+
['-moz-column-rule']?: ColumnRuleProperty<TLength>;
|
|
1414
|
+
['-moz-columns']?: ColumnsProperty<TLength>;
|
|
1415
|
+
['-moz-transition']?: TransitionProperty;
|
|
1416
|
+
['-ms-content-zoom-limit']?: GlobalsString;
|
|
1417
|
+
['-ms-content-zoom-snap']?: MsContentZoomSnapProperty;
|
|
1418
|
+
['-ms-flex']?: FlexProperty<TLength>;
|
|
1419
|
+
['-ms-scroll-limit']?: GlobalsString;
|
|
1420
|
+
['-ms-scroll-snap-x']?: GlobalsString;
|
|
1421
|
+
['-ms-scroll-snap-y']?: GlobalsString;
|
|
1422
|
+
['-ms-transition']?: TransitionProperty;
|
|
1423
|
+
['-moz-border-image']?: BorderImageProperty;
|
|
1424
|
+
['-webkit-border-before']?: WebkitBorderBeforeProperty<TLength>;
|
|
1425
|
+
['-webkit-border-image']?: BorderImageProperty;
|
|
1426
|
+
['-webkit-border-radius']?: BorderRadiusProperty<TLength>;
|
|
1427
|
+
['-webkit-column-rule']?: ColumnRuleProperty<TLength>;
|
|
1428
|
+
['-webkit-columns']?: ColumnsProperty<TLength>;
|
|
1429
|
+
['-webkit-flex']?: FlexProperty<TLength>;
|
|
1430
|
+
['-webkit-flex-flow']?: FlexFlowProperty;
|
|
1431
|
+
['-webkit-mask']?: WebkitMaskProperty<TLength>;
|
|
1432
|
+
['-webkit-text-emphasis']?: TextEmphasisProperty;
|
|
1433
|
+
['-webkit-text-stroke']?: WebkitTextStrokeProperty<TLength>;
|
|
1434
|
+
['-webkit-transition']?: TransitionProperty;
|
|
1435
|
+
}
|
|
1436
|
+
export type VendorPropertiesHyphen<TLength = string | 0> = VendorLonghandPropertiesHyphen<TLength> & VendorShorthandPropertiesHyphen<TLength>;
|
|
1437
|
+
export interface ObsoletePropertiesHyphen<TLength = string | 0> {
|
|
1438
|
+
['-moz-box-align']?: BoxAlignProperty;
|
|
1439
|
+
['box-align']?: BoxAlignProperty;
|
|
1440
|
+
['box-flex']?: GlobalsNumber;
|
|
1441
|
+
['box-flex-group']?: GlobalsNumber;
|
|
1442
|
+
['box-lines']?: BoxLinesProperty;
|
|
1443
|
+
['box-ordinal-group']?: GlobalsNumber;
|
|
1444
|
+
['box-orient']?: BoxOrientProperty;
|
|
1445
|
+
['box-pack']?: BoxPackProperty;
|
|
1446
|
+
clip?: ClipProperty;
|
|
1447
|
+
['font-variant-alternates']?: FontVariantAlternatesProperty;
|
|
1448
|
+
['grid-column-gap']?: GridColumnGapProperty<TLength>;
|
|
1449
|
+
['grid-gap']?: GridGapProperty<TLength>;
|
|
1450
|
+
['grid-row-gap']?: GridRowGapProperty<TLength>;
|
|
1451
|
+
['ime-mode']?: ImeModeProperty;
|
|
1452
|
+
['offset-block']?: InsetBlockProperty<TLength>;
|
|
1453
|
+
['offset-block-end']?: InsetBlockEndProperty<TLength>;
|
|
1454
|
+
['offset-block-start']?: InsetBlockStartProperty<TLength>;
|
|
1455
|
+
['offset-inline']?: InsetInlineProperty<TLength>;
|
|
1456
|
+
['offset-inline-end']?: InsetInlineEndProperty<TLength>;
|
|
1457
|
+
['offset-inline-start']?: InsetInlineStartProperty<TLength>;
|
|
1458
|
+
['scroll-snap-coordinate']?: ScrollSnapCoordinateProperty<TLength>;
|
|
1459
|
+
['scroll-snap-destination']?: ScrollSnapDestinationProperty<TLength>;
|
|
1460
|
+
['scroll-snap-points-x']?: ScrollSnapPointsXProperty;
|
|
1461
|
+
['scroll-snap-points-y']?: ScrollSnapPointsYProperty;
|
|
1462
|
+
['scroll-snap-type-x']?: ScrollSnapTypeXProperty;
|
|
1463
|
+
['scroll-snap-type-y']?: ScrollSnapTypeYProperty;
|
|
1464
|
+
['text-combine-horizontal']?: TextCombineUprightProperty;
|
|
1465
|
+
['-khtml-box-align']?: BoxAlignProperty;
|
|
1466
|
+
['-khtml-box-direction']?: BoxDirectionProperty;
|
|
1467
|
+
['-khtml-box-flex']?: GlobalsNumber;
|
|
1468
|
+
['-khtml-box-flex-group']?: GlobalsNumber;
|
|
1469
|
+
['-khtml-box-lines']?: BoxLinesProperty;
|
|
1470
|
+
['-khtml-box-ordinal-group']?: GlobalsNumber;
|
|
1471
|
+
['-khtml-box-orient']?: BoxOrientProperty;
|
|
1472
|
+
['-khtml-box-pack']?: BoxPackProperty;
|
|
1473
|
+
['-khtml-line-break']?: LineBreakProperty;
|
|
1474
|
+
['-khtml-opacity']?: GlobalsNumber;
|
|
1475
|
+
['-khtml-user-select']?: UserSelectProperty;
|
|
1476
|
+
['-moz-background-clip']?: BackgroundClipProperty;
|
|
1477
|
+
['-moz-background-inline-policy']?: BoxDecorationBreakProperty;
|
|
1478
|
+
['-moz-background-origin']?: BackgroundOriginProperty;
|
|
1479
|
+
['-moz-background-size']?: BackgroundSizeProperty<TLength>;
|
|
1480
|
+
['-moz-binding']?: MozBindingProperty;
|
|
1481
|
+
['-moz-border-radius']?: BorderRadiusProperty<TLength>;
|
|
1482
|
+
['-moz-border-radius-bottomleft']?: BorderBottomLeftRadiusProperty<TLength>;
|
|
1483
|
+
['-moz-border-radius-bottomright']?: BorderBottomRightRadiusProperty<TLength>;
|
|
1484
|
+
['-moz-border-radius-topleft']?: BorderTopLeftRadiusProperty<TLength>;
|
|
1485
|
+
['-moz-border-radius-topright']?: BorderTopRightRadiusProperty<TLength>;
|
|
1486
|
+
['box-direction']?: BoxDirectionProperty;
|
|
1487
|
+
['-moz-box-direction']?: BoxDirectionProperty;
|
|
1488
|
+
['-moz-box-flex']?: GlobalsNumber;
|
|
1489
|
+
['-moz-box-ordinal-group']?: GlobalsNumber;
|
|
1490
|
+
['-moz-box-orient']?: BoxOrientProperty;
|
|
1491
|
+
['-moz-box-pack']?: BoxPackProperty;
|
|
1492
|
+
['-moz-box-shadow']?: BoxShadowProperty;
|
|
1493
|
+
['-moz-opacity']?: GlobalsNumber;
|
|
1494
|
+
['-moz-outline']?: OutlineProperty<TLength>;
|
|
1495
|
+
['-moz-outline-color']?: OutlineColorProperty;
|
|
1496
|
+
['-moz-outline-radius']?: MozOutlineRadiusProperty<TLength>;
|
|
1497
|
+
['-moz-outline-style']?: OutlineStyleProperty;
|
|
1498
|
+
['-moz-outline-width']?: OutlineWidthProperty<TLength>;
|
|
1499
|
+
['-moz-text-align-last']?: TextAlignLastProperty;
|
|
1500
|
+
['-moz-text-blink']?: MozTextBlinkProperty;
|
|
1501
|
+
['-moz-text-decoration-color']?: TextDecorationColorProperty;
|
|
1502
|
+
['-moz-text-decoration-line']?: TextDecorationLineProperty;
|
|
1503
|
+
['-moz-text-decoration-style']?: TextDecorationStyleProperty;
|
|
1504
|
+
['-moz-user-input']?: MozUserInputProperty;
|
|
1505
|
+
['-moz-window-shadow']?: MozWindowShadowProperty;
|
|
1506
|
+
['-ms-ime-mode']?: ImeModeProperty;
|
|
1507
|
+
['-o-animation']?: AnimationProperty;
|
|
1508
|
+
['-o-animation-delay']?: GlobalsString;
|
|
1509
|
+
['-o-animation-direction']?: AnimationDirectionProperty;
|
|
1510
|
+
['-o-animation-duration']?: GlobalsString;
|
|
1511
|
+
['-o-animation-fill-mode']?: AnimationFillModeProperty;
|
|
1512
|
+
['-o-animation-iteration-count']?: AnimationIterationCountProperty;
|
|
1513
|
+
['-o-animation-name']?: AnimationNameProperty;
|
|
1514
|
+
['-o-animation-play-state']?: AnimationPlayStateProperty;
|
|
1515
|
+
['-o-animation-timing-function']?: AnimationTimingFunctionProperty;
|
|
1516
|
+
['-o-background-size']?: BackgroundSizeProperty<TLength>;
|
|
1517
|
+
['-o-border-image']?: BorderImageProperty;
|
|
1518
|
+
['-o-transform']?: TransformProperty;
|
|
1519
|
+
['-o-transition']?: TransitionProperty;
|
|
1520
|
+
['-o-transition-delay']?: GlobalsString;
|
|
1521
|
+
['-o-transition-duration']?: GlobalsString;
|
|
1522
|
+
['-o-transition-property']?: TransitionPropertyProperty;
|
|
1523
|
+
['-o-transition-timing-function']?: TransitionTimingFunctionProperty;
|
|
1524
|
+
['-webkit-box-align']?: BoxAlignProperty;
|
|
1525
|
+
['-webkit-box-direction']?: BoxDirectionProperty;
|
|
1526
|
+
['-webkit-box-flex']?: GlobalsNumber;
|
|
1527
|
+
['-webkit-box-flex-group']?: GlobalsNumber;
|
|
1528
|
+
['-webkit-box-lines']?: BoxLinesProperty;
|
|
1529
|
+
['-webkit-box-ordinal-group']?: GlobalsNumber;
|
|
1530
|
+
['-webkit-box-orient']?: BoxOrientProperty;
|
|
1531
|
+
['-webkit-box-pack']?: BoxPackProperty;
|
|
1532
|
+
['-webkit-scroll-snap-points-x']?: ScrollSnapPointsXProperty;
|
|
1533
|
+
['-webkit-scroll-snap-points-y']?: ScrollSnapPointsYProperty;
|
|
1534
|
+
}
|
|
1535
|
+
export interface SvgPropertiesHyphen<TLength = string | 0> {
|
|
1536
|
+
['line-height']?: LineHeightProperty<TLength>;
|
|
1537
|
+
['alignment-baseline']?: AlignmentBaselineProperty;
|
|
1538
|
+
clip?: ClipProperty;
|
|
1539
|
+
['clip-path']?: ClipPathProperty;
|
|
1540
|
+
['clip-rule']?: ClipRuleProperty;
|
|
1541
|
+
color?: ColorProperty;
|
|
1542
|
+
['color-interpolation']?: ColorInterpolationProperty;
|
|
1543
|
+
['color-rendering']?: ColorRenderingProperty;
|
|
1544
|
+
cursor?: CursorProperty;
|
|
1545
|
+
direction?: DirectionProperty;
|
|
1546
|
+
display?: DisplayProperty;
|
|
1547
|
+
['dominant-baseline']?: DominantBaselineProperty;
|
|
1548
|
+
fill?: FillProperty;
|
|
1549
|
+
['fill-opacity']?: GlobalsNumber;
|
|
1550
|
+
['fill-rule']?: FillRuleProperty;
|
|
1551
|
+
filter?: FilterProperty;
|
|
1552
|
+
['flood-color']?: FloodColorProperty;
|
|
1553
|
+
['flood-opacity']?: GlobalsNumber;
|
|
1554
|
+
font?: FontProperty;
|
|
1555
|
+
['font-family']?: FontFamilyProperty;
|
|
1556
|
+
['font-size']?: FontSizeProperty<TLength>;
|
|
1557
|
+
['font-size-adjust']?: FontSizeAdjustProperty;
|
|
1558
|
+
['font-stretch']?: FontStretchProperty;
|
|
1559
|
+
['font-style']?: FontStyleProperty;
|
|
1560
|
+
['font-variant']?: FontVariantProperty;
|
|
1561
|
+
['font-weight']?: FontWeightProperty;
|
|
1562
|
+
['glyph-orientation-vertical']?: GlyphOrientationVerticalProperty;
|
|
1563
|
+
['image-rendering']?: ImageRenderingProperty;
|
|
1564
|
+
['letter-spacing']?: LetterSpacingProperty<TLength>;
|
|
1565
|
+
['lighting-color']?: LightingColorProperty;
|
|
1566
|
+
['baseline-shift']?: BaselineShiftProperty<TLength>;
|
|
1567
|
+
marker?: MarkerProperty;
|
|
1568
|
+
['marker-end']?: MarkerEndProperty;
|
|
1569
|
+
['marker-mid']?: MarkerMidProperty;
|
|
1570
|
+
['marker-start']?: MarkerStartProperty;
|
|
1571
|
+
mask?: MaskProperty<TLength>;
|
|
1572
|
+
opacity?: GlobalsNumber;
|
|
1573
|
+
overflow?: OverflowProperty;
|
|
1574
|
+
['paint-order']?: PaintOrderProperty;
|
|
1575
|
+
['pointer-events']?: PointerEventsProperty;
|
|
1576
|
+
['shape-rendering']?: ShapeRenderingProperty;
|
|
1577
|
+
['stop-color']?: StopColorProperty;
|
|
1578
|
+
['stop-opacity']?: GlobalsNumber;
|
|
1579
|
+
stroke?: StrokeProperty;
|
|
1580
|
+
['stroke-dasharray']?: StrokeDasharrayProperty<TLength>;
|
|
1581
|
+
['stroke-dashoffset']?: StrokeDashoffsetProperty<TLength>;
|
|
1582
|
+
['stroke-linecap']?: StrokeLinecapProperty;
|
|
1583
|
+
['stroke-linejoin']?: StrokeLinejoinProperty;
|
|
1584
|
+
['stroke-miterlimit']?: GlobalsNumber;
|
|
1585
|
+
['stroke-opacity']?: GlobalsNumber;
|
|
1586
|
+
['stroke-width']?: StrokeWidthProperty<TLength>;
|
|
1587
|
+
['text-anchor']?: TextAnchorProperty;
|
|
1588
|
+
['text-decoration']?: TextDecorationProperty;
|
|
1589
|
+
['text-rendering']?: TextRenderingProperty;
|
|
1590
|
+
['unicode-bidi']?: UnicodeBidiProperty;
|
|
1591
|
+
['vector-effect']?: VectorEffectProperty;
|
|
1592
|
+
visibility?: VisibilityProperty;
|
|
1593
|
+
['white-space']?: WhiteSpaceProperty;
|
|
1594
|
+
['word-spacing']?: WordSpacingProperty<TLength>;
|
|
1595
|
+
['writing-mode']?: WritingModeProperty;
|
|
1596
|
+
}
|
|
1597
|
+
export type PropertiesHyphen<TLength = string | 0> = StandardPropertiesHyphen<TLength> & VendorPropertiesHyphen<TLength> & ObsoletePropertiesHyphen<TLength> & SvgPropertiesHyphen<TLength>;
|
|
1598
|
+
export interface StandardLonghandPropertiesFallback<TLength = string | 0> {
|
|
1599
|
+
marginInlineStart?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
|
|
1600
|
+
borderStartStartRadius?: BorderStartStartRadiusProperty<TLength> | Array<BorderStartStartRadiusProperty<TLength>>;
|
|
1601
|
+
borderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength> | Array<BorderTopLeftRadiusProperty<TLength>>;
|
|
1602
|
+
borderTopRightRadius?: BorderTopRightRadiusProperty<TLength> | Array<BorderTopRightRadiusProperty<TLength>>;
|
|
1603
|
+
gridTemplateColumns?: GridTemplateColumnsProperty<TLength> | Array<GridTemplateColumnsProperty<TLength>>;
|
|
1604
|
+
borderStartEndRadius?: BorderStartEndRadiusProperty<TLength> | Array<BorderStartEndRadiusProperty<TLength>>;
|
|
1605
|
+
paddingBlockStart?: PaddingBlockStartProperty<TLength> | Array<PaddingBlockStartProperty<TLength>>;
|
|
1606
|
+
paddingInlineStart?: PaddingInlineStartProperty<TLength> | Array<PaddingInlineStartProperty<TLength>>;
|
|
1607
|
+
perspectiveOrigin?: PerspectiveOriginProperty<TLength> | Array<PerspectiveOriginProperty<TLength>>;
|
|
1608
|
+
scrollMarginBlock?: ScrollMarginBlockProperty<TLength> | Array<ScrollMarginBlockProperty<TLength>>;
|
|
1609
|
+
scrollMarginBlockEnd?: ScrollMarginBlockEndProperty<TLength> | Array<ScrollMarginBlockEndProperty<TLength>>;
|
|
1610
|
+
borderInlineWidth?: BorderInlineWidthProperty<TLength> | Array<BorderInlineWidthProperty<TLength>>;
|
|
1611
|
+
scrollMarginBlockStart?: ScrollMarginBlockStartProperty<TLength> | Array<ScrollMarginBlockStartProperty<TLength>>;
|
|
1612
|
+
borderInlineStartWidth?: BorderInlineStartWidthProperty<TLength> | Array<BorderInlineStartWidthProperty<TLength>>;
|
|
1613
|
+
scrollMarginBottom?: ScrollMarginBottomProperty<TLength> | Array<ScrollMarginBottomProperty<TLength>>;
|
|
1614
|
+
borderInlineEndWidth?: BorderInlineEndWidthProperty<TLength> | Array<BorderInlineEndWidthProperty<TLength>>;
|
|
1615
|
+
scrollMarginInline?: ScrollMarginInlineProperty<TLength> | Array<ScrollMarginInlineProperty<TLength>>;
|
|
1616
|
+
borderImageOutset?: BorderImageOutsetProperty<TLength> | Array<BorderImageOutsetProperty<TLength>>;
|
|
1617
|
+
scrollMarginInlineEnd?: ScrollMarginInlineEndProperty<TLength> | Array<ScrollMarginInlineEndProperty<TLength>>;
|
|
1618
|
+
borderEndStartRadius?: BorderEndStartRadiusProperty<TLength> | Array<BorderEndStartRadiusProperty<TLength>>;
|
|
1619
|
+
scrollMarginInlineStart?: ScrollMarginInlineStartProperty<TLength> | Array<ScrollMarginInlineStartProperty<TLength>>;
|
|
1620
|
+
borderEndEndRadius?: BorderEndEndRadiusProperty<TLength> | Array<BorderEndEndRadiusProperty<TLength>>;
|
|
1621
|
+
scrollMarginRight?: ScrollMarginRightProperty<TLength> | Array<ScrollMarginRightProperty<TLength>>;
|
|
1622
|
+
borderBottomWidth?: BorderBottomWidthProperty<TLength> | Array<BorderBottomWidthProperty<TLength>>;
|
|
1623
|
+
scrollPaddingBlock?: ScrollPaddingBlockProperty<TLength> | Array<ScrollPaddingBlockProperty<TLength>>;
|
|
1624
|
+
borderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
|
|
1625
|
+
scrollPaddingBlockEnd?: ScrollPaddingBlockEndProperty<TLength> | Array<ScrollPaddingBlockEndProperty<TLength>>;
|
|
1626
|
+
borderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
|
|
1627
|
+
scrollPaddingBlockStart?: ScrollPaddingBlockStartProperty<TLength> | Array<ScrollPaddingBlockStartProperty<TLength>>;
|
|
1628
|
+
borderBlockStartWidth?: BorderBlockStartWidthProperty<TLength> | Array<BorderBlockStartWidthProperty<TLength>>;
|
|
1629
|
+
scrollPaddingBottom?: ScrollPaddingBottomProperty<TLength> | Array<ScrollPaddingBottomProperty<TLength>>;
|
|
1630
|
+
borderBlockEndWidth?: BorderBlockEndWidthProperty<TLength> | Array<BorderBlockEndWidthProperty<TLength>>;
|
|
1631
|
+
scrollPaddingInline?: ScrollPaddingInlineProperty<TLength> | Array<ScrollPaddingInlineProperty<TLength>>;
|
|
1632
|
+
backgroundPositionY?: BackgroundPositionYProperty<TLength> | Array<BackgroundPositionYProperty<TLength>>;
|
|
1633
|
+
scrollPaddingInlineEnd?: ScrollPaddingInlineEndProperty<TLength> | Array<ScrollPaddingInlineEndProperty<TLength>>;
|
|
1634
|
+
backgroundPositionX?: BackgroundPositionXProperty<TLength> | Array<BackgroundPositionXProperty<TLength>>;
|
|
1635
|
+
scrollPaddingInlineStart?: ScrollPaddingInlineStartProperty<TLength> | Array<ScrollPaddingInlineStartProperty<TLength>>;
|
|
1636
|
+
backgroundPosition?: BackgroundPositionProperty<TLength> | Array<BackgroundPositionProperty<TLength>>;
|
|
1637
|
+
scrollPaddingLeft?: ScrollPaddingLeftProperty<TLength> | Array<ScrollPaddingLeftProperty<TLength>>;
|
|
1638
|
+
animationTimingFunction?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
1639
|
+
scrollPaddingRight?: ScrollPaddingRightProperty<TLength> | Array<ScrollPaddingRightProperty<TLength>>;
|
|
1640
|
+
animationIterationCount?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
1641
|
+
marginBottom?: MarginBottomProperty<TLength> | Array<MarginBottomProperty<TLength>>;
|
|
1642
|
+
transitionTimingFunction?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
1643
|
+
backfaceVisibility?: BackfaceVisibilityProperty | Array<BackfaceVisibilityProperty>;
|
|
1644
|
+
borderImageRepeat?: BorderImageRepeatProperty | Array<BorderImageRepeatProperty>;
|
|
1645
|
+
borderImageSlice?: BorderImageSliceProperty | Array<BorderImageSliceProperty>;
|
|
1646
|
+
borderImageSource?: BorderImageSourceProperty | Array<BorderImageSourceProperty>;
|
|
1647
|
+
borderImageWidth?: BorderImageWidthProperty<TLength> | Array<BorderImageWidthProperty<TLength>>;
|
|
1648
|
+
borderInlineColor?: BorderInlineColorProperty | Array<BorderInlineColorProperty>;
|
|
1649
|
+
borderInlineEndColor?: BorderInlineEndColorProperty | Array<BorderInlineEndColorProperty>;
|
|
1650
|
+
borderInlineEndStyle?: BorderInlineEndStyleProperty | Array<BorderInlineEndStyleProperty>;
|
|
1651
|
+
backgroundAttachment?: BackgroundAttachmentProperty | Array<BackgroundAttachmentProperty>;
|
|
1652
|
+
borderInlineStartColor?: BorderInlineStartColorProperty | Array<BorderInlineStartColorProperty>;
|
|
1653
|
+
borderInlineStartStyle?: BorderInlineStartStyleProperty | Array<BorderInlineStartStyleProperty>;
|
|
1654
|
+
backgroundBlendMode?: BackgroundBlendModeProperty | Array<BackgroundBlendModeProperty>;
|
|
1655
|
+
borderInlineStyle?: BorderInlineStyleProperty | Array<BorderInlineStyleProperty>;
|
|
1656
|
+
backgroundClip?: BackgroundClipProperty | Array<BackgroundClipProperty>;
|
|
1657
|
+
borderLeftColor?: BorderLeftColorProperty | Array<BorderLeftColorProperty>;
|
|
1658
|
+
borderLeftStyle?: BorderLeftStyleProperty | Array<BorderLeftStyleProperty>;
|
|
1659
|
+
borderLeftWidth?: BorderLeftWidthProperty<TLength> | Array<BorderLeftWidthProperty<TLength>>;
|
|
1660
|
+
borderRightColor?: BorderRightColorProperty | Array<BorderRightColorProperty>;
|
|
1661
|
+
borderRightStyle?: BorderRightStyleProperty | Array<BorderRightStyleProperty>;
|
|
1662
|
+
borderRightWidth?: BorderRightWidthProperty<TLength> | Array<BorderRightWidthProperty<TLength>>;
|
|
1663
|
+
borderSpacing?: BorderSpacingProperty<TLength> | Array<BorderSpacingProperty<TLength>>;
|
|
1664
|
+
backgroundColor?: BackgroundColorProperty | Array<BackgroundColorProperty>;
|
|
1665
|
+
backgroundImage?: BackgroundImageProperty | Array<BackgroundImageProperty>;
|
|
1666
|
+
borderTopColor?: BorderTopColorProperty | Array<BorderTopColorProperty>;
|
|
1667
|
+
backgroundOrigin?: BackgroundOriginProperty | Array<BackgroundOriginProperty>;
|
|
1668
|
+
animationDelay?: GlobalsString | Array<GlobalsString>;
|
|
1669
|
+
borderTopStyle?: BorderTopStyleProperty | Array<BorderTopStyleProperty>;
|
|
1670
|
+
borderTopWidth?: BorderTopWidthProperty<TLength> | Array<BorderTopWidthProperty<TLength>>;
|
|
1671
|
+
bottom?: BottomProperty<TLength> | Array<BottomProperty<TLength>>;
|
|
1672
|
+
boxDecorationBreak?: BoxDecorationBreakProperty | Array<BoxDecorationBreakProperty>;
|
|
1673
|
+
boxShadow?: BoxShadowProperty | Array<BoxShadowProperty>;
|
|
1674
|
+
boxSizing?: BoxSizingProperty | Array<BoxSizingProperty>;
|
|
1675
|
+
breakAfter?: BreakAfterProperty | Array<BreakAfterProperty>;
|
|
1676
|
+
breakBefore?: BreakBeforeProperty | Array<BreakBeforeProperty>;
|
|
1677
|
+
breakInside?: BreakInsideProperty | Array<BreakInsideProperty>;
|
|
1678
|
+
captionSide?: CaptionSideProperty | Array<CaptionSideProperty>;
|
|
1679
|
+
caretColor?: CaretColorProperty | Array<CaretColorProperty>;
|
|
1680
|
+
clear?: ClearProperty | Array<ClearProperty>;
|
|
1681
|
+
clipPath?: ClipPathProperty | Array<ClipPathProperty>;
|
|
1682
|
+
color?: ColorProperty | Array<ColorProperty>;
|
|
1683
|
+
colorAdjust?: ColorAdjustProperty | Array<ColorAdjustProperty>;
|
|
1684
|
+
columnCount?: ColumnCountProperty | Array<ColumnCountProperty>;
|
|
1685
|
+
columnFill?: ColumnFillProperty | Array<ColumnFillProperty>;
|
|
1686
|
+
columnGap?: ColumnGapProperty<TLength> | Array<ColumnGapProperty<TLength>>;
|
|
1687
|
+
columnRuleColor?: ColumnRuleColorProperty | Array<ColumnRuleColorProperty>;
|
|
1688
|
+
columnRuleStyle?: ColumnRuleStyleProperty | Array<ColumnRuleStyleProperty>;
|
|
1689
|
+
columnRuleWidth?: ColumnRuleWidthProperty<TLength> | Array<ColumnRuleWidthProperty<TLength>>;
|
|
1690
|
+
columnSpan?: ColumnSpanProperty | Array<ColumnSpanProperty>;
|
|
1691
|
+
columnWidth?: ColumnWidthProperty<TLength> | Array<ColumnWidthProperty<TLength>>;
|
|
1692
|
+
contain?: ContainProperty | Array<ContainProperty>;
|
|
1693
|
+
content?: ContentProperty | Array<ContentProperty>;
|
|
1694
|
+
counterIncrement?: CounterIncrementProperty | Array<CounterIncrementProperty>;
|
|
1695
|
+
counterReset?: CounterResetProperty | Array<CounterResetProperty>;
|
|
1696
|
+
counterSet?: CounterSetProperty | Array<CounterSetProperty>;
|
|
1697
|
+
cursor?: CursorProperty | Array<CursorProperty>;
|
|
1698
|
+
direction?: DirectionProperty | Array<DirectionProperty>;
|
|
1699
|
+
display?: DisplayProperty | Array<DisplayProperty>;
|
|
1700
|
+
emptyCells?: EmptyCellsProperty | Array<EmptyCellsProperty>;
|
|
1701
|
+
filter?: FilterProperty | Array<FilterProperty>;
|
|
1702
|
+
flexBasis?: FlexBasisProperty<TLength> | Array<FlexBasisProperty<TLength>>;
|
|
1703
|
+
flexDirection?: FlexDirectionProperty | Array<FlexDirectionProperty>;
|
|
1704
|
+
flexGrow?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1705
|
+
flexShrink?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1706
|
+
flexWrap?: FlexWrapProperty | Array<FlexWrapProperty>;
|
|
1707
|
+
float?: FloatProperty | Array<FloatProperty>;
|
|
1708
|
+
fontFamily?: FontFamilyProperty | Array<FontFamilyProperty>;
|
|
1709
|
+
fontFeatureSettings?: FontFeatureSettingsProperty | Array<FontFeatureSettingsProperty>;
|
|
1710
|
+
fontKerning?: FontKerningProperty | Array<FontKerningProperty>;
|
|
1711
|
+
fontLanguageOverride?: FontLanguageOverrideProperty | Array<FontLanguageOverrideProperty>;
|
|
1712
|
+
fontOpticalSizing?: FontOpticalSizingProperty | Array<FontOpticalSizingProperty>;
|
|
1713
|
+
fontSize?: FontSizeProperty<TLength> | Array<FontSizeProperty<TLength>>;
|
|
1714
|
+
fontSizeAdjust?: FontSizeAdjustProperty | Array<FontSizeAdjustProperty>;
|
|
1715
|
+
fontStretch?: FontStretchProperty | Array<FontStretchProperty>;
|
|
1716
|
+
fontStyle?: FontStyleProperty | Array<FontStyleProperty>;
|
|
1717
|
+
fontSynthesis?: FontSynthesisProperty | Array<FontSynthesisProperty>;
|
|
1718
|
+
fontVariant?: FontVariantProperty | Array<FontVariantProperty>;
|
|
1719
|
+
fontVariantCaps?: FontVariantCapsProperty | Array<FontVariantCapsProperty>;
|
|
1720
|
+
fontVariantEastAsian?: FontVariantEastAsianProperty | Array<FontVariantEastAsianProperty>;
|
|
1721
|
+
fontVariantLigatures?: FontVariantLigaturesProperty | Array<FontVariantLigaturesProperty>;
|
|
1722
|
+
fontVariantNumeric?: FontVariantNumericProperty | Array<FontVariantNumericProperty>;
|
|
1723
|
+
fontVariantPosition?: FontVariantPositionProperty | Array<FontVariantPositionProperty>;
|
|
1724
|
+
fontVariationSettings?: FontVariationSettingsProperty | Array<FontVariationSettingsProperty>;
|
|
1725
|
+
fontWeight?: FontWeightProperty | Array<FontWeightProperty>;
|
|
1726
|
+
gridAutoColumns?: GridAutoColumnsProperty<TLength> | Array<GridAutoColumnsProperty<TLength>>;
|
|
1727
|
+
gridAutoFlow?: GridAutoFlowProperty | Array<GridAutoFlowProperty>;
|
|
1728
|
+
gridAutoRows?: GridAutoRowsProperty<TLength> | Array<GridAutoRowsProperty<TLength>>;
|
|
1729
|
+
gridColumnEnd?: GridColumnEndProperty | Array<GridColumnEndProperty>;
|
|
1730
|
+
gridColumnStart?: GridColumnStartProperty | Array<GridColumnStartProperty>;
|
|
1731
|
+
gridRowEnd?: GridRowEndProperty | Array<GridRowEndProperty>;
|
|
1732
|
+
gridRowStart?: GridRowStartProperty | Array<GridRowStartProperty>;
|
|
1733
|
+
gridTemplateAreas?: GridTemplateAreasProperty | Array<GridTemplateAreasProperty>;
|
|
1734
|
+
animationDirection?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
1735
|
+
gridTemplateRows?: GridTemplateRowsProperty<TLength> | Array<GridTemplateRowsProperty<TLength>>;
|
|
1736
|
+
hangingPunctuation?: HangingPunctuationProperty | Array<HangingPunctuationProperty>;
|
|
1737
|
+
height?: HeightProperty<TLength> | Array<HeightProperty<TLength>>;
|
|
1738
|
+
hyphens?: HyphensProperty | Array<HyphensProperty>;
|
|
1739
|
+
imageOrientation?: ImageOrientationProperty | Array<ImageOrientationProperty>;
|
|
1740
|
+
imageRendering?: ImageRenderingProperty | Array<ImageRenderingProperty>;
|
|
1741
|
+
imageResolution?: ImageResolutionProperty | Array<ImageResolutionProperty>;
|
|
1742
|
+
initialLetter?: InitialLetterProperty | Array<InitialLetterProperty>;
|
|
1743
|
+
inlineSize?: InlineSizeProperty<TLength> | Array<InlineSizeProperty<TLength>>;
|
|
1744
|
+
inset?: InsetProperty<TLength> | Array<InsetProperty<TLength>>;
|
|
1745
|
+
insetBlock?: InsetBlockProperty<TLength> | Array<InsetBlockProperty<TLength>>;
|
|
1746
|
+
insetBlockEnd?: InsetBlockEndProperty<TLength> | Array<InsetBlockEndProperty<TLength>>;
|
|
1747
|
+
insetBlockStart?: InsetBlockStartProperty<TLength> | Array<InsetBlockStartProperty<TLength>>;
|
|
1748
|
+
insetInline?: InsetInlineProperty<TLength> | Array<InsetInlineProperty<TLength>>;
|
|
1749
|
+
insetInlineEnd?: InsetInlineEndProperty<TLength> | Array<InsetInlineEndProperty<TLength>>;
|
|
1750
|
+
insetInlineStart?: InsetInlineStartProperty<TLength> | Array<InsetInlineStartProperty<TLength>>;
|
|
1751
|
+
isolation?: IsolationProperty | Array<IsolationProperty>;
|
|
1752
|
+
justifyContent?: JustifyContentProperty | Array<JustifyContentProperty>;
|
|
1753
|
+
justifyItems?: JustifyItemsProperty | Array<JustifyItemsProperty>;
|
|
1754
|
+
justifySelf?: JustifySelfProperty | Array<JustifySelfProperty>;
|
|
1755
|
+
left?: LeftProperty<TLength> | Array<LeftProperty<TLength>>;
|
|
1756
|
+
letterSpacing?: LetterSpacingProperty<TLength> | Array<LetterSpacingProperty<TLength>>;
|
|
1757
|
+
lineBreak?: LineBreakProperty | Array<LineBreakProperty>;
|
|
1758
|
+
lineHeight?: LineHeightProperty<TLength> | Array<LineHeightProperty<TLength>>;
|
|
1759
|
+
lineHeightStep?: LineHeightStepProperty<TLength> | Array<LineHeightStepProperty<TLength>>;
|
|
1760
|
+
listStyleImage?: ListStyleImageProperty | Array<ListStyleImageProperty>;
|
|
1761
|
+
listStylePosition?: ListStylePositionProperty | Array<ListStylePositionProperty>;
|
|
1762
|
+
listStyleType?: ListStyleTypeProperty | Array<ListStyleTypeProperty>;
|
|
1763
|
+
marginBlock?: MarginBlockProperty<TLength> | Array<MarginBlockProperty<TLength>>;
|
|
1764
|
+
marginBlockEnd?: MarginBlockEndProperty<TLength> | Array<MarginBlockEndProperty<TLength>>;
|
|
1765
|
+
marginBlockStart?: MarginBlockStartProperty<TLength> | Array<MarginBlockStartProperty<TLength>>;
|
|
1766
|
+
alignItems?: AlignItemsProperty | Array<AlignItemsProperty>;
|
|
1767
|
+
marginInline?: MarginInlineProperty<TLength> | Array<MarginInlineProperty<TLength>>;
|
|
1768
|
+
marginInlineEnd?: MarginInlineEndProperty<TLength> | Array<MarginInlineEndProperty<TLength>>;
|
|
1769
|
+
animationDuration?: GlobalsString | Array<GlobalsString>;
|
|
1770
|
+
marginLeft?: MarginLeftProperty<TLength> | Array<MarginLeftProperty<TLength>>;
|
|
1771
|
+
marginRight?: MarginRightProperty<TLength> | Array<MarginRightProperty<TLength>>;
|
|
1772
|
+
marginTop?: MarginTopProperty<TLength> | Array<MarginTopProperty<TLength>>;
|
|
1773
|
+
maskBorderMode?: MaskBorderModeProperty | Array<MaskBorderModeProperty>;
|
|
1774
|
+
maskBorderOutset?: MaskBorderOutsetProperty<TLength> | Array<MaskBorderOutsetProperty<TLength>>;
|
|
1775
|
+
maskBorderRepeat?: MaskBorderRepeatProperty | Array<MaskBorderRepeatProperty>;
|
|
1776
|
+
maskBorderSlice?: MaskBorderSliceProperty | Array<MaskBorderSliceProperty>;
|
|
1777
|
+
maskBorderSource?: MaskBorderSourceProperty | Array<MaskBorderSourceProperty>;
|
|
1778
|
+
maskBorderWidth?: MaskBorderWidthProperty<TLength> | Array<MaskBorderWidthProperty<TLength>>;
|
|
1779
|
+
maskClip?: MaskClipProperty | Array<MaskClipProperty>;
|
|
1780
|
+
maskComposite?: MaskCompositeProperty | Array<MaskCompositeProperty>;
|
|
1781
|
+
maskImage?: MaskImageProperty | Array<MaskImageProperty>;
|
|
1782
|
+
maskMode?: MaskModeProperty | Array<MaskModeProperty>;
|
|
1783
|
+
maskOrigin?: MaskOriginProperty | Array<MaskOriginProperty>;
|
|
1784
|
+
maskPosition?: MaskPositionProperty<TLength> | Array<MaskPositionProperty<TLength>>;
|
|
1785
|
+
maskRepeat?: MaskRepeatProperty | Array<MaskRepeatProperty>;
|
|
1786
|
+
maskSize?: MaskSizeProperty<TLength> | Array<MaskSizeProperty<TLength>>;
|
|
1787
|
+
maskType?: MaskTypeProperty | Array<MaskTypeProperty>;
|
|
1788
|
+
maxBlockSize?: MaxBlockSizeProperty<TLength> | Array<MaxBlockSizeProperty<TLength>>;
|
|
1789
|
+
maxHeight?: MaxHeightProperty<TLength> | Array<MaxHeightProperty<TLength>>;
|
|
1790
|
+
maxInlineSize?: MaxInlineSizeProperty<TLength> | Array<MaxInlineSizeProperty<TLength>>;
|
|
1791
|
+
maxLines?: MaxLinesProperty | Array<MaxLinesProperty>;
|
|
1792
|
+
maxWidth?: MaxWidthProperty<TLength> | Array<MaxWidthProperty<TLength>>;
|
|
1793
|
+
minBlockSize?: MinBlockSizeProperty<TLength> | Array<MinBlockSizeProperty<TLength>>;
|
|
1794
|
+
minHeight?: MinHeightProperty<TLength> | Array<MinHeightProperty<TLength>>;
|
|
1795
|
+
minInlineSize?: MinInlineSizeProperty<TLength> | Array<MinInlineSizeProperty<TLength>>;
|
|
1796
|
+
minWidth?: MinWidthProperty<TLength> | Array<MinWidthProperty<TLength>>;
|
|
1797
|
+
mixBlendMode?: MixBlendModeProperty | Array<MixBlendModeProperty>;
|
|
1798
|
+
motionDistance?: OffsetDistanceProperty<TLength> | Array<OffsetDistanceProperty<TLength>>;
|
|
1799
|
+
motionPath?: OffsetPathProperty | Array<OffsetPathProperty>;
|
|
1800
|
+
motionRotation?: OffsetRotateProperty | Array<OffsetRotateProperty>;
|
|
1801
|
+
objectFit?: ObjectFitProperty | Array<ObjectFitProperty>;
|
|
1802
|
+
objectPosition?: ObjectPositionProperty<TLength> | Array<ObjectPositionProperty<TLength>>;
|
|
1803
|
+
offsetAnchor?: OffsetAnchorProperty<TLength> | Array<OffsetAnchorProperty<TLength>>;
|
|
1804
|
+
offsetDistance?: OffsetDistanceProperty<TLength> | Array<OffsetDistanceProperty<TLength>>;
|
|
1805
|
+
offsetPath?: OffsetPathProperty | Array<OffsetPathProperty>;
|
|
1806
|
+
offsetPosition?: OffsetPositionProperty<TLength> | Array<OffsetPositionProperty<TLength>>;
|
|
1807
|
+
offsetRotate?: OffsetRotateProperty | Array<OffsetRotateProperty>;
|
|
1808
|
+
offsetRotation?: OffsetRotateProperty | Array<OffsetRotateProperty>;
|
|
1809
|
+
opacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1810
|
+
order?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1811
|
+
orphans?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1812
|
+
outlineColor?: OutlineColorProperty | Array<OutlineColorProperty>;
|
|
1813
|
+
outlineOffset?: OutlineOffsetProperty<TLength> | Array<OutlineOffsetProperty<TLength>>;
|
|
1814
|
+
outlineStyle?: OutlineStyleProperty | Array<OutlineStyleProperty>;
|
|
1815
|
+
outlineWidth?: OutlineWidthProperty<TLength> | Array<OutlineWidthProperty<TLength>>;
|
|
1816
|
+
overflow?: OverflowProperty | Array<OverflowProperty>;
|
|
1817
|
+
overflowAnchor?: OverflowAnchorProperty | Array<OverflowAnchorProperty>;
|
|
1818
|
+
overflowBlock?: OverflowBlockProperty | Array<OverflowBlockProperty>;
|
|
1819
|
+
overflowClipBox?: OverflowClipBoxProperty | Array<OverflowClipBoxProperty>;
|
|
1820
|
+
overflowInline?: OverflowInlineProperty | Array<OverflowInlineProperty>;
|
|
1821
|
+
overflowWrap?: OverflowWrapProperty | Array<OverflowWrapProperty>;
|
|
1822
|
+
overflowX?: OverflowXProperty | Array<OverflowXProperty>;
|
|
1823
|
+
overflowY?: OverflowYProperty | Array<OverflowYProperty>;
|
|
1824
|
+
overscrollBehavior?: OverscrollBehaviorProperty | Array<OverscrollBehaviorProperty>;
|
|
1825
|
+
overscrollBehaviorX?: OverscrollBehaviorXProperty | Array<OverscrollBehaviorXProperty>;
|
|
1826
|
+
overscrollBehaviorY?: OverscrollBehaviorYProperty | Array<OverscrollBehaviorYProperty>;
|
|
1827
|
+
paddingBlock?: PaddingBlockProperty<TLength> | Array<PaddingBlockProperty<TLength>>;
|
|
1828
|
+
paddingBlockEnd?: PaddingBlockEndProperty<TLength> | Array<PaddingBlockEndProperty<TLength>>;
|
|
1829
|
+
backgroundRepeat?: BackgroundRepeatProperty | Array<BackgroundRepeatProperty>;
|
|
1830
|
+
paddingBottom?: PaddingBottomProperty<TLength> | Array<PaddingBottomProperty<TLength>>;
|
|
1831
|
+
paddingInline?: PaddingInlineProperty<TLength> | Array<PaddingInlineProperty<TLength>>;
|
|
1832
|
+
paddingInlineEnd?: PaddingInlineEndProperty<TLength> | Array<PaddingInlineEndProperty<TLength>>;
|
|
1833
|
+
backgroundSize?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
1834
|
+
paddingLeft?: PaddingLeftProperty<TLength> | Array<PaddingLeftProperty<TLength>>;
|
|
1835
|
+
paddingRight?: PaddingRightProperty<TLength> | Array<PaddingRightProperty<TLength>>;
|
|
1836
|
+
paddingTop?: PaddingTopProperty<TLength> | Array<PaddingTopProperty<TLength>>;
|
|
1837
|
+
pageBreakAfter?: PageBreakAfterProperty | Array<PageBreakAfterProperty>;
|
|
1838
|
+
pageBreakBefore?: PageBreakBeforeProperty | Array<PageBreakBeforeProperty>;
|
|
1839
|
+
pageBreakInside?: PageBreakInsideProperty | Array<PageBreakInsideProperty>;
|
|
1840
|
+
paintOrder?: PaintOrderProperty | Array<PaintOrderProperty>;
|
|
1841
|
+
perspective?: PerspectiveProperty<TLength> | Array<PerspectiveProperty<TLength>>;
|
|
1842
|
+
blockOverflow?: BlockOverflowProperty | Array<BlockOverflowProperty>;
|
|
1843
|
+
placeContent?: PlaceContentProperty | Array<PlaceContentProperty>;
|
|
1844
|
+
pointerEvents?: PointerEventsProperty | Array<PointerEventsProperty>;
|
|
1845
|
+
position?: PositionProperty | Array<PositionProperty>;
|
|
1846
|
+
quotes?: QuotesProperty | Array<QuotesProperty>;
|
|
1847
|
+
resize?: ResizeProperty | Array<ResizeProperty>;
|
|
1848
|
+
right?: RightProperty<TLength> | Array<RightProperty<TLength>>;
|
|
1849
|
+
rotate?: RotateProperty | Array<RotateProperty>;
|
|
1850
|
+
rowGap?: RowGapProperty<TLength> | Array<RowGapProperty<TLength>>;
|
|
1851
|
+
rubyAlign?: RubyAlignProperty | Array<RubyAlignProperty>;
|
|
1852
|
+
rubyMerge?: RubyMergeProperty | Array<RubyMergeProperty>;
|
|
1853
|
+
rubyPosition?: RubyPositionProperty | Array<RubyPositionProperty>;
|
|
1854
|
+
scale?: ScaleProperty | Array<ScaleProperty>;
|
|
1855
|
+
scrollBehavior?: ScrollBehaviorProperty | Array<ScrollBehaviorProperty>;
|
|
1856
|
+
scrollMargin?: ScrollMarginProperty<TLength> | Array<ScrollMarginProperty<TLength>>;
|
|
1857
|
+
blockSize?: BlockSizeProperty<TLength> | Array<BlockSizeProperty<TLength>>;
|
|
1858
|
+
borderBlockColor?: BorderBlockColorProperty | Array<BorderBlockColorProperty>;
|
|
1859
|
+
borderBlockEndColor?: BorderBlockEndColorProperty | Array<BorderBlockEndColorProperty>;
|
|
1860
|
+
borderBlockEndStyle?: BorderBlockEndStyleProperty | Array<BorderBlockEndStyleProperty>;
|
|
1861
|
+
animationFillMode?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
1862
|
+
borderBlockStartColor?: BorderBlockStartColorProperty | Array<BorderBlockStartColorProperty>;
|
|
1863
|
+
borderBlockStartStyle?: BorderBlockStartStyleProperty | Array<BorderBlockStartStyleProperty>;
|
|
1864
|
+
scrollMarginLeft?: ScrollMarginLeftProperty<TLength> | Array<ScrollMarginLeftProperty<TLength>>;
|
|
1865
|
+
alignContent?: AlignContentProperty | Array<AlignContentProperty>;
|
|
1866
|
+
scrollMarginTop?: ScrollMarginTopProperty<TLength> | Array<ScrollMarginTopProperty<TLength>>;
|
|
1867
|
+
scrollPadding?: ScrollPaddingProperty<TLength> | Array<ScrollPaddingProperty<TLength>>;
|
|
1868
|
+
borderBlockStyle?: BorderBlockStyleProperty | Array<BorderBlockStyleProperty>;
|
|
1869
|
+
borderBlockWidth?: BorderBlockWidthProperty<TLength> | Array<BorderBlockWidthProperty<TLength>>;
|
|
1870
|
+
borderBottomColor?: BorderBottomColorProperty | Array<BorderBottomColorProperty>;
|
|
1871
|
+
animationName?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
1872
|
+
animationPlayState?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
1873
|
+
borderBottomStyle?: BorderBottomStyleProperty | Array<BorderBottomStyleProperty>;
|
|
1874
|
+
alignSelf?: AlignSelfProperty | Array<AlignSelfProperty>;
|
|
1875
|
+
borderCollapse?: BorderCollapseProperty | Array<BorderCollapseProperty>;
|
|
1876
|
+
appearance?: AppearanceProperty | Array<AppearanceProperty>;
|
|
1877
|
+
scrollPaddingTop?: ScrollPaddingTopProperty<TLength> | Array<ScrollPaddingTopProperty<TLength>>;
|
|
1878
|
+
scrollSnapAlign?: ScrollSnapAlignProperty | Array<ScrollSnapAlignProperty>;
|
|
1879
|
+
scrollSnapStop?: ScrollSnapStopProperty | Array<ScrollSnapStopProperty>;
|
|
1880
|
+
scrollSnapType?: ScrollSnapTypeProperty | Array<ScrollSnapTypeProperty>;
|
|
1881
|
+
scrollbarColor?: ScrollbarColorProperty | Array<ScrollbarColorProperty>;
|
|
1882
|
+
scrollbarWidth?: ScrollbarWidthProperty | Array<ScrollbarWidthProperty>;
|
|
1883
|
+
shapeImageThreshold?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1884
|
+
shapeMargin?: ShapeMarginProperty<TLength> | Array<ShapeMarginProperty<TLength>>;
|
|
1885
|
+
shapeOutside?: ShapeOutsideProperty | Array<ShapeOutsideProperty>;
|
|
1886
|
+
tabSize?: TabSizeProperty<TLength> | Array<TabSizeProperty<TLength>>;
|
|
1887
|
+
tableLayout?: TableLayoutProperty | Array<TableLayoutProperty>;
|
|
1888
|
+
textAlign?: TextAlignProperty | Array<TextAlignProperty>;
|
|
1889
|
+
textAlignLast?: TextAlignLastProperty | Array<TextAlignLastProperty>;
|
|
1890
|
+
textCombineUpright?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
1891
|
+
textDecorationColor?: TextDecorationColorProperty | Array<TextDecorationColorProperty>;
|
|
1892
|
+
textDecorationLine?: TextDecorationLineProperty | Array<TextDecorationLineProperty>;
|
|
1893
|
+
textDecorationSkip?: TextDecorationSkipProperty | Array<TextDecorationSkipProperty>;
|
|
1894
|
+
textDecorationSkipInk?: TextDecorationSkipInkProperty | Array<TextDecorationSkipInkProperty>;
|
|
1895
|
+
textDecorationStyle?: TextDecorationStyleProperty | Array<TextDecorationStyleProperty>;
|
|
1896
|
+
textEmphasisColor?: TextEmphasisColorProperty | Array<TextEmphasisColorProperty>;
|
|
1897
|
+
textEmphasisPosition?: GlobalsString | Array<GlobalsString>;
|
|
1898
|
+
textEmphasisStyle?: TextEmphasisStyleProperty | Array<TextEmphasisStyleProperty>;
|
|
1899
|
+
textIndent?: TextIndentProperty<TLength> | Array<TextIndentProperty<TLength>>;
|
|
1900
|
+
textJustify?: TextJustifyProperty | Array<TextJustifyProperty>;
|
|
1901
|
+
textOrientation?: TextOrientationProperty | Array<TextOrientationProperty>;
|
|
1902
|
+
textOverflow?: TextOverflowProperty | Array<TextOverflowProperty>;
|
|
1903
|
+
textRendering?: TextRenderingProperty | Array<TextRenderingProperty>;
|
|
1904
|
+
textShadow?: TextShadowProperty | Array<TextShadowProperty>;
|
|
1905
|
+
textSizeAdjust?: TextSizeAdjustProperty | Array<TextSizeAdjustProperty>;
|
|
1906
|
+
textTransform?: TextTransformProperty | Array<TextTransformProperty>;
|
|
1907
|
+
textUnderlinePosition?: TextUnderlinePositionProperty | Array<TextUnderlinePositionProperty>;
|
|
1908
|
+
top?: TopProperty<TLength> | Array<TopProperty<TLength>>;
|
|
1909
|
+
touchAction?: TouchActionProperty | Array<TouchActionProperty>;
|
|
1910
|
+
transform?: TransformProperty | Array<TransformProperty>;
|
|
1911
|
+
transformBox?: TransformBoxProperty | Array<TransformBoxProperty>;
|
|
1912
|
+
transformOrigin?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
1913
|
+
transformStyle?: TransformStyleProperty | Array<TransformStyleProperty>;
|
|
1914
|
+
transitionDelay?: GlobalsString | Array<GlobalsString>;
|
|
1915
|
+
transitionDuration?: GlobalsString | Array<GlobalsString>;
|
|
1916
|
+
transitionProperty?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
1917
|
+
backdropFilter?: BackdropFilterProperty | Array<BackdropFilterProperty>;
|
|
1918
|
+
translate?: TranslateProperty<TLength> | Array<TranslateProperty<TLength>>;
|
|
1919
|
+
unicodeBidi?: UnicodeBidiProperty | Array<UnicodeBidiProperty>;
|
|
1920
|
+
userSelect?: UserSelectProperty | Array<UserSelectProperty>;
|
|
1921
|
+
verticalAlign?: VerticalAlignProperty<TLength> | Array<VerticalAlignProperty<TLength>>;
|
|
1922
|
+
visibility?: VisibilityProperty | Array<VisibilityProperty>;
|
|
1923
|
+
whiteSpace?: WhiteSpaceProperty | Array<WhiteSpaceProperty>;
|
|
1924
|
+
widows?: GlobalsNumber | Array<GlobalsNumber>;
|
|
1925
|
+
width?: WidthProperty<TLength> | Array<WidthProperty<TLength>>;
|
|
1926
|
+
willChange?: WillChangeProperty | Array<WillChangeProperty>;
|
|
1927
|
+
wordBreak?: WordBreakProperty | Array<WordBreakProperty>;
|
|
1928
|
+
wordSpacing?: WordSpacingProperty<TLength> | Array<WordSpacingProperty<TLength>>;
|
|
1929
|
+
wordWrap?: WordWrapProperty | Array<WordWrapProperty>;
|
|
1930
|
+
writingMode?: WritingModeProperty | Array<WritingModeProperty>;
|
|
1931
|
+
zIndex?: ZIndexProperty | Array<ZIndexProperty>;
|
|
1932
|
+
zoom?: ZoomProperty | Array<ZoomProperty>;
|
|
1933
|
+
}
|
|
1934
|
+
export interface StandardShorthandPropertiesFallback<TLength = string | 0> {
|
|
1935
|
+
flexFlow?: FlexFlowProperty | Array<FlexFlowProperty>;
|
|
1936
|
+
borderInlineStart?: BorderInlineStartProperty<TLength> | Array<BorderInlineStartProperty<TLength>>;
|
|
1937
|
+
background?: BackgroundProperty<TLength> | Array<BackgroundProperty<TLength>>;
|
|
1938
|
+
border?: BorderProperty<TLength> | Array<BorderProperty<TLength>>;
|
|
1939
|
+
borderBlock?: BorderBlockProperty<TLength> | Array<BorderBlockProperty<TLength>>;
|
|
1940
|
+
borderBlockEnd?: BorderBlockEndProperty<TLength> | Array<BorderBlockEndProperty<TLength>>;
|
|
1941
|
+
borderBlockStart?: BorderBlockStartProperty<TLength> | Array<BorderBlockStartProperty<TLength>>;
|
|
1942
|
+
borderBottom?: BorderBottomProperty<TLength> | Array<BorderBottomProperty<TLength>>;
|
|
1943
|
+
borderColor?: BorderColorProperty | Array<BorderColorProperty>;
|
|
1944
|
+
borderImage?: BorderImageProperty | Array<BorderImageProperty>;
|
|
1945
|
+
borderInline?: BorderInlineProperty<TLength> | Array<BorderInlineProperty<TLength>>;
|
|
1946
|
+
borderInlineEnd?: BorderInlineEndProperty<TLength> | Array<BorderInlineEndProperty<TLength>>;
|
|
1947
|
+
all?: Globals | Array<Globals>;
|
|
1948
|
+
borderLeft?: BorderLeftProperty<TLength> | Array<BorderLeftProperty<TLength>>;
|
|
1949
|
+
borderRadius?: BorderRadiusProperty<TLength> | Array<BorderRadiusProperty<TLength>>;
|
|
1950
|
+
borderRight?: BorderRightProperty<TLength> | Array<BorderRightProperty<TLength>>;
|
|
1951
|
+
borderStyle?: BorderStyleProperty | Array<BorderStyleProperty>;
|
|
1952
|
+
borderTop?: BorderTopProperty<TLength> | Array<BorderTopProperty<TLength>>;
|
|
1953
|
+
borderWidth?: BorderWidthProperty<TLength> | Array<BorderWidthProperty<TLength>>;
|
|
1954
|
+
columnRule?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
|
|
1955
|
+
columns?: ColumnsProperty<TLength> | Array<ColumnsProperty<TLength>>;
|
|
1956
|
+
flex?: FlexProperty<TLength> | Array<FlexProperty<TLength>>;
|
|
1957
|
+
animation?: AnimationProperty | Array<AnimationProperty>;
|
|
1958
|
+
font?: FontProperty | Array<FontProperty>;
|
|
1959
|
+
gap?: GapProperty<TLength> | Array<GapProperty<TLength>>;
|
|
1960
|
+
grid?: GridProperty | Array<GridProperty>;
|
|
1961
|
+
gridArea?: GridAreaProperty | Array<GridAreaProperty>;
|
|
1962
|
+
gridColumn?: GridColumnProperty | Array<GridColumnProperty>;
|
|
1963
|
+
gridRow?: GridRowProperty | Array<GridRowProperty>;
|
|
1964
|
+
gridTemplate?: GridTemplateProperty | Array<GridTemplateProperty>;
|
|
1965
|
+
lineClamp?: LineClampProperty | Array<LineClampProperty>;
|
|
1966
|
+
listStyle?: ListStyleProperty | Array<ListStyleProperty>;
|
|
1967
|
+
margin?: MarginProperty<TLength> | Array<MarginProperty<TLength>>;
|
|
1968
|
+
mask?: MaskProperty<TLength> | Array<MaskProperty<TLength>>;
|
|
1969
|
+
maskBorder?: MaskBorderProperty | Array<MaskBorderProperty>;
|
|
1970
|
+
motion?: OffsetProperty<TLength> | Array<OffsetProperty<TLength>>;
|
|
1971
|
+
offset?: OffsetProperty<TLength> | Array<OffsetProperty<TLength>>;
|
|
1972
|
+
outline?: OutlineProperty<TLength> | Array<OutlineProperty<TLength>>;
|
|
1973
|
+
padding?: PaddingProperty<TLength> | Array<PaddingProperty<TLength>>;
|
|
1974
|
+
placeItems?: PlaceItemsProperty | Array<PlaceItemsProperty>;
|
|
1975
|
+
placeSelf?: PlaceSelfProperty | Array<PlaceSelfProperty>;
|
|
1976
|
+
textDecoration?: TextDecorationProperty | Array<TextDecorationProperty>;
|
|
1977
|
+
textEmphasis?: TextEmphasisProperty | Array<TextEmphasisProperty>;
|
|
1978
|
+
transition?: TransitionProperty | Array<TransitionProperty>;
|
|
1979
|
+
}
|
|
1980
|
+
export type StandardPropertiesFallback<TLength = string | 0> = StandardLonghandPropertiesFallback<TLength> & StandardShorthandPropertiesFallback<TLength>;
|
|
1981
|
+
export interface VendorLonghandPropertiesFallback<TLength = string | 0> {
|
|
1982
|
+
WebkitAnimationIterationCount?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
1983
|
+
msScrollbarDarkshadowColor?: MsScrollbarDarkshadowColorProperty | Array<MsScrollbarDarkshadowColorProperty>;
|
|
1984
|
+
msScrollbarHighlightColor?: MsScrollbarHighlightColorProperty | Array<MsScrollbarHighlightColorProperty>;
|
|
1985
|
+
msTransitionTimingFunction?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
1986
|
+
msScrollbar3dlightColor?: MsScrollbar3dlightColorProperty | Array<MsScrollbar3dlightColorProperty>;
|
|
1987
|
+
WebkitAnimationTimingFunction?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
1988
|
+
WebkitBorderBeforeColor?: WebkitBorderBeforeColorProperty | Array<WebkitBorderBeforeColorProperty>;
|
|
1989
|
+
WebkitBorderBeforeStyle?: WebkitBorderBeforeStyleProperty | Array<WebkitBorderBeforeStyleProperty>;
|
|
1990
|
+
WebkitBorderBeforeWidth?: WebkitBorderBeforeWidthProperty<TLength> | Array<WebkitBorderBeforeWidthProperty<TLength>>;
|
|
1991
|
+
WebkitBorderBottomLeftRadius?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
|
|
1992
|
+
msScrollLimitYMin?: MsScrollLimitYMinProperty<TLength> | Array<MsScrollLimitYMinProperty<TLength>>;
|
|
1993
|
+
WebkitBorderBottomRightRadius?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
|
|
1994
|
+
msScrollLimitYMax?: MsScrollLimitYMaxProperty<TLength> | Array<MsScrollLimitYMaxProperty<TLength>>;
|
|
1995
|
+
WebkitBorderTopLeftRadius?: BorderTopLeftRadiusProperty<TLength> | Array<BorderTopLeftRadiusProperty<TLength>>;
|
|
1996
|
+
msScrollLimitXMin?: MsScrollLimitXMinProperty<TLength> | Array<MsScrollLimitXMinProperty<TLength>>;
|
|
1997
|
+
WebkitBorderTopRightRadius?: BorderTopRightRadiusProperty<TLength> | Array<BorderTopRightRadiusProperty<TLength>>;
|
|
1998
|
+
msScrollLimitXMax?: MsScrollLimitXMaxProperty<TLength> | Array<MsScrollLimitXMaxProperty<TLength>>;
|
|
1999
|
+
WebkitColumnRuleWidth?: ColumnRuleWidthProperty<TLength> | Array<ColumnRuleWidthProperty<TLength>>;
|
|
2000
|
+
msHyphenateLimitZone?: MsHyphenateLimitZoneProperty<TLength> | Array<MsHyphenateLimitZoneProperty<TLength>>;
|
|
2001
|
+
WebkitMarginStart?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
|
|
2002
|
+
MozTransitionTimingFunction?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2003
|
+
WebkitMaskPosition?: WebkitMaskPositionProperty<TLength> | Array<WebkitMaskPositionProperty<TLength>>;
|
|
2004
|
+
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | Array<PerspectiveOriginProperty<TLength>>;
|
|
2005
|
+
WebkitMaskPositionX?: WebkitMaskPositionXProperty<TLength> | Array<WebkitMaskPositionXProperty<TLength>>;
|
|
2006
|
+
MozPaddingStart?: PaddingInlineStartProperty<TLength> | Array<PaddingInlineStartProperty<TLength>>;
|
|
2007
|
+
WebkitMaskPositionY?: WebkitMaskPositionYProperty<TLength> | Array<WebkitMaskPositionYProperty<TLength>>;
|
|
2008
|
+
MozOutlineRadiusTopright?: MozOutlineRadiusToprightProperty<TLength> | Array<MozOutlineRadiusToprightProperty<TLength>>;
|
|
2009
|
+
WebkitOverflowScrolling?: WebkitOverflowScrollingProperty | Array<WebkitOverflowScrollingProperty>;
|
|
2010
|
+
MozOutlineRadiusTopleft?: MozOutlineRadiusTopleftProperty<TLength> | Array<MozOutlineRadiusTopleftProperty<TLength>>;
|
|
2011
|
+
WebkitPaddingStart?: PaddingInlineStartProperty<TLength> | Array<PaddingInlineStartProperty<TLength>>;
|
|
2012
|
+
MozOutlineRadiusBottomright?: MozOutlineRadiusBottomrightProperty<TLength> | Array<MozOutlineRadiusBottomrightProperty<TLength>>;
|
|
2013
|
+
WebkitPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | Array<PerspectiveOriginProperty<TLength>>;
|
|
2014
|
+
MozOutlineRadiusBottomleft?: MozOutlineRadiusBottomleftProperty<TLength> | Array<MozOutlineRadiusBottomleftProperty<TLength>>;
|
|
2015
|
+
WebkitTapHighlightColor?: WebkitTapHighlightColorProperty | Array<WebkitTapHighlightColorProperty>;
|
|
2016
|
+
MozBorderEndWidth?: BorderInlineEndWidthProperty<TLength> | Array<BorderInlineEndWidthProperty<TLength>>;
|
|
2017
|
+
WebkitTextStrokeWidth?: WebkitTextStrokeWidthProperty<TLength> | Array<WebkitTextStrokeWidthProperty<TLength>>;
|
|
2018
|
+
MozAnimationTimingFunction?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
2019
|
+
WebkitTransformOrigin?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2020
|
+
MozAnimationIterationCount?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
2021
|
+
msTransitionProperty?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2022
|
+
WebkitTransitionTimingFunction?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2023
|
+
MozPaddingEnd?: PaddingInlineEndProperty<TLength> | Array<PaddingInlineEndProperty<TLength>>;
|
|
2024
|
+
MozAppearance?: MozAppearanceProperty | Array<MozAppearanceProperty>;
|
|
2025
|
+
MozPerspective?: PerspectiveProperty<TLength> | Array<PerspectiveProperty<TLength>>;
|
|
2026
|
+
MozBackfaceVisibility?: BackfaceVisibilityProperty | Array<BackfaceVisibilityProperty>;
|
|
2027
|
+
MozStackSizing?: MozStackSizingProperty | Array<MozStackSizingProperty>;
|
|
2028
|
+
MozTabSize?: TabSizeProperty<TLength> | Array<TabSizeProperty<TLength>>;
|
|
2029
|
+
MozTextSizeAdjust?: TextSizeAdjustProperty | Array<TextSizeAdjustProperty>;
|
|
2030
|
+
MozTransformOrigin?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2031
|
+
MozTransformStyle?: TransformStyleProperty | Array<TransformStyleProperty>;
|
|
2032
|
+
MozTransitionDelay?: GlobalsString | Array<GlobalsString>;
|
|
2033
|
+
MozTransitionDuration?: GlobalsString | Array<GlobalsString>;
|
|
2034
|
+
MozTransitionProperty?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2035
|
+
MozBorderBottomColors?: MozBorderBottomColorsProperty | Array<MozBorderBottomColorsProperty>;
|
|
2036
|
+
MozUserFocus?: MozUserFocusProperty | Array<MozUserFocusProperty>;
|
|
2037
|
+
MozUserModify?: MozUserModifyProperty | Array<MozUserModifyProperty>;
|
|
2038
|
+
MozUserSelect?: UserSelectProperty | Array<UserSelectProperty>;
|
|
2039
|
+
MozWindowDragging?: MozWindowDraggingProperty | Array<MozWindowDraggingProperty>;
|
|
2040
|
+
msAccelerator?: MsAcceleratorProperty | Array<MsAcceleratorProperty>;
|
|
2041
|
+
msAlignSelf?: AlignSelfProperty | Array<AlignSelfProperty>;
|
|
2042
|
+
msBlockProgression?: MsBlockProgressionProperty | Array<MsBlockProgressionProperty>;
|
|
2043
|
+
msContentZoomChaining?: MsContentZoomChainingProperty | Array<MsContentZoomChainingProperty>;
|
|
2044
|
+
msContentZoomLimitMax?: GlobalsString | Array<GlobalsString>;
|
|
2045
|
+
msContentZoomLimitMin?: GlobalsString | Array<GlobalsString>;
|
|
2046
|
+
msContentZoomSnapPoints?: GlobalsString | Array<GlobalsString>;
|
|
2047
|
+
msContentZoomSnapType?: MsContentZoomSnapTypeProperty | Array<MsContentZoomSnapTypeProperty>;
|
|
2048
|
+
msContentZooming?: MsContentZoomingProperty | Array<MsContentZoomingProperty>;
|
|
2049
|
+
msFilter?: GlobalsString | Array<GlobalsString>;
|
|
2050
|
+
msFlexDirection?: FlexDirectionProperty | Array<FlexDirectionProperty>;
|
|
2051
|
+
msFlexPositive?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2052
|
+
msFlowFrom?: MsFlowFromProperty | Array<MsFlowFromProperty>;
|
|
2053
|
+
msFlowInto?: MsFlowIntoProperty | Array<MsFlowIntoProperty>;
|
|
2054
|
+
msGridColumns?: GridAutoColumnsProperty<TLength> | Array<GridAutoColumnsProperty<TLength>>;
|
|
2055
|
+
msGridRows?: GridAutoRowsProperty<TLength> | Array<GridAutoRowsProperty<TLength>>;
|
|
2056
|
+
msHighContrastAdjust?: MsHighContrastAdjustProperty | Array<MsHighContrastAdjustProperty>;
|
|
2057
|
+
msHyphenateLimitChars?: MsHyphenateLimitCharsProperty | Array<MsHyphenateLimitCharsProperty>;
|
|
2058
|
+
msHyphenateLimitLines?: MsHyphenateLimitLinesProperty | Array<MsHyphenateLimitLinesProperty>;
|
|
2059
|
+
MozBorderEndColor?: BorderInlineEndColorProperty | Array<BorderInlineEndColorProperty>;
|
|
2060
|
+
msHyphens?: HyphensProperty | Array<HyphensProperty>;
|
|
2061
|
+
msImeAlign?: MsImeAlignProperty | Array<MsImeAlignProperty>;
|
|
2062
|
+
msLineBreak?: LineBreakProperty | Array<LineBreakProperty>;
|
|
2063
|
+
msOrder?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2064
|
+
msOverflowStyle?: MsOverflowStyleProperty | Array<MsOverflowStyleProperty>;
|
|
2065
|
+
msOverflowX?: OverflowXProperty | Array<OverflowXProperty>;
|
|
2066
|
+
msOverflowY?: OverflowYProperty | Array<OverflowYProperty>;
|
|
2067
|
+
msScrollChaining?: MsScrollChainingProperty | Array<MsScrollChainingProperty>;
|
|
2068
|
+
MozBorderEndStyle?: BorderInlineEndStyleProperty | Array<BorderInlineEndStyleProperty>;
|
|
2069
|
+
MozAnimationFillMode?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
2070
|
+
MozBorderLeftColors?: MozBorderLeftColorsProperty | Array<MozBorderLeftColorsProperty>;
|
|
2071
|
+
MozBorderRightColors?: MozBorderRightColorsProperty | Array<MozBorderRightColorsProperty>;
|
|
2072
|
+
msScrollRails?: MsScrollRailsProperty | Array<MsScrollRailsProperty>;
|
|
2073
|
+
msScrollSnapPointsX?: GlobalsString | Array<GlobalsString>;
|
|
2074
|
+
msScrollSnapPointsY?: GlobalsString | Array<GlobalsString>;
|
|
2075
|
+
msScrollSnapType?: MsScrollSnapTypeProperty | Array<MsScrollSnapTypeProperty>;
|
|
2076
|
+
msScrollTranslation?: MsScrollTranslationProperty | Array<MsScrollTranslationProperty>;
|
|
2077
|
+
MozBorderStartColor?: BorderInlineStartColorProperty | Array<BorderInlineStartColorProperty>;
|
|
2078
|
+
msScrollbarArrowColor?: MsScrollbarArrowColorProperty | Array<MsScrollbarArrowColorProperty>;
|
|
2079
|
+
msScrollbarBaseColor?: MsScrollbarBaseColorProperty | Array<MsScrollbarBaseColorProperty>;
|
|
2080
|
+
MozBorderStartStyle?: BorderInlineStartStyleProperty | Array<BorderInlineStartStyleProperty>;
|
|
2081
|
+
msScrollbarFaceColor?: MsScrollbarFaceColorProperty | Array<MsScrollbarFaceColorProperty>;
|
|
2082
|
+
MozBorderTopColors?: MozBorderTopColorsProperty | Array<MozBorderTopColorsProperty>;
|
|
2083
|
+
msScrollbarShadowColor?: MsScrollbarShadowColorProperty | Array<MsScrollbarShadowColorProperty>;
|
|
2084
|
+
msScrollbarTrackColor?: MsScrollbarTrackColorProperty | Array<MsScrollbarTrackColorProperty>;
|
|
2085
|
+
msTextAutospace?: MsTextAutospaceProperty | Array<MsTextAutospaceProperty>;
|
|
2086
|
+
msTextCombineHorizontal?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
2087
|
+
msTextOverflow?: TextOverflowProperty | Array<TextOverflowProperty>;
|
|
2088
|
+
msTouchAction?: TouchActionProperty | Array<TouchActionProperty>;
|
|
2089
|
+
msTouchSelect?: MsTouchSelectProperty | Array<MsTouchSelectProperty>;
|
|
2090
|
+
msTransform?: TransformProperty | Array<TransformProperty>;
|
|
2091
|
+
msTransformOrigin?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2092
|
+
msTransitionDelay?: GlobalsString | Array<GlobalsString>;
|
|
2093
|
+
msTransitionDuration?: GlobalsString | Array<GlobalsString>;
|
|
2094
|
+
MozAnimationDirection?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
2095
|
+
MozBoxSizing?: BoxSizingProperty | Array<BoxSizingProperty>;
|
|
2096
|
+
msUserSelect?: MsUserSelectProperty | Array<MsUserSelectProperty>;
|
|
2097
|
+
msWordBreak?: WordBreakProperty | Array<WordBreakProperty>;
|
|
2098
|
+
msWrapFlow?: MsWrapFlowProperty | Array<MsWrapFlowProperty>;
|
|
2099
|
+
msWrapMargin?: MsWrapMarginProperty<TLength> | Array<MsWrapMarginProperty<TLength>>;
|
|
2100
|
+
msWrapThrough?: MsWrapThroughProperty | Array<MsWrapThroughProperty>;
|
|
2101
|
+
msWritingMode?: WritingModeProperty | Array<WritingModeProperty>;
|
|
2102
|
+
OObjectFit?: ObjectFitProperty | Array<ObjectFitProperty>;
|
|
2103
|
+
OObjectPosition?: ObjectPositionProperty<TLength> | Array<ObjectPositionProperty<TLength>>;
|
|
2104
|
+
OTabSize?: TabSizeProperty<TLength> | Array<TabSizeProperty<TLength>>;
|
|
2105
|
+
OTextOverflow?: TextOverflowProperty | Array<TextOverflowProperty>;
|
|
2106
|
+
OTransformOrigin?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2107
|
+
WebkitAlignContent?: AlignContentProperty | Array<AlignContentProperty>;
|
|
2108
|
+
WebkitAlignItems?: AlignItemsProperty | Array<AlignItemsProperty>;
|
|
2109
|
+
WebkitAlignSelf?: AlignSelfProperty | Array<AlignSelfProperty>;
|
|
2110
|
+
WebkitAnimationDelay?: GlobalsString | Array<GlobalsString>;
|
|
2111
|
+
WebkitAnimationDirection?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
2112
|
+
WebkitAnimationDuration?: GlobalsString | Array<GlobalsString>;
|
|
2113
|
+
WebkitAnimationFillMode?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
2114
|
+
MozColumnCount?: ColumnCountProperty | Array<ColumnCountProperty>;
|
|
2115
|
+
WebkitAnimationName?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
2116
|
+
WebkitAnimationPlayState?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
2117
|
+
MozColumnFill?: ColumnFillProperty | Array<ColumnFillProperty>;
|
|
2118
|
+
WebkitAppearance?: WebkitAppearanceProperty | Array<WebkitAppearanceProperty>;
|
|
2119
|
+
WebkitBackdropFilter?: BackdropFilterProperty | Array<BackdropFilterProperty>;
|
|
2120
|
+
WebkitBackfaceVisibility?: BackfaceVisibilityProperty | Array<BackfaceVisibilityProperty>;
|
|
2121
|
+
WebkitBackgroundClip?: BackgroundClipProperty | Array<BackgroundClipProperty>;
|
|
2122
|
+
WebkitBackgroundOrigin?: BackgroundOriginProperty | Array<BackgroundOriginProperty>;
|
|
2123
|
+
WebkitBackgroundSize?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
2124
|
+
MozColumnGap?: ColumnGapProperty<TLength> | Array<ColumnGapProperty<TLength>>;
|
|
2125
|
+
MozColumnRuleColor?: ColumnRuleColorProperty | Array<ColumnRuleColorProperty>;
|
|
2126
|
+
MozColumnRuleStyle?: ColumnRuleStyleProperty | Array<ColumnRuleStyleProperty>;
|
|
2127
|
+
MozColumnRuleWidth?: ColumnRuleWidthProperty<TLength> | Array<ColumnRuleWidthProperty<TLength>>;
|
|
2128
|
+
MozColumnWidth?: ColumnWidthProperty<TLength> | Array<ColumnWidthProperty<TLength>>;
|
|
2129
|
+
WebkitBorderImageSlice?: BorderImageSliceProperty | Array<BorderImageSliceProperty>;
|
|
2130
|
+
MozContextProperties?: MozContextPropertiesProperty | Array<MozContextPropertiesProperty>;
|
|
2131
|
+
MozFloatEdge?: MozFloatEdgeProperty | Array<MozFloatEdgeProperty>;
|
|
2132
|
+
WebkitBoxDecorationBreak?: BoxDecorationBreakProperty | Array<BoxDecorationBreakProperty>;
|
|
2133
|
+
WebkitBoxReflect?: WebkitBoxReflectProperty<TLength> | Array<WebkitBoxReflectProperty<TLength>>;
|
|
2134
|
+
WebkitBoxShadow?: BoxShadowProperty | Array<BoxShadowProperty>;
|
|
2135
|
+
WebkitBoxSizing?: BoxSizingProperty | Array<BoxSizingProperty>;
|
|
2136
|
+
WebkitClipPath?: ClipPathProperty | Array<ClipPathProperty>;
|
|
2137
|
+
WebkitColorAdjust?: ColorAdjustProperty | Array<ColorAdjustProperty>;
|
|
2138
|
+
WebkitColumnCount?: ColumnCountProperty | Array<ColumnCountProperty>;
|
|
2139
|
+
WebkitColumnFill?: ColumnFillProperty | Array<ColumnFillProperty>;
|
|
2140
|
+
WebkitColumnGap?: ColumnGapProperty<TLength> | Array<ColumnGapProperty<TLength>>;
|
|
2141
|
+
WebkitColumnRuleColor?: ColumnRuleColorProperty | Array<ColumnRuleColorProperty>;
|
|
2142
|
+
WebkitColumnRuleStyle?: ColumnRuleStyleProperty | Array<ColumnRuleStyleProperty>;
|
|
2143
|
+
MozFontFeatureSettings?: FontFeatureSettingsProperty | Array<FontFeatureSettingsProperty>;
|
|
2144
|
+
WebkitColumnSpan?: ColumnSpanProperty | Array<ColumnSpanProperty>;
|
|
2145
|
+
WebkitColumnWidth?: ColumnWidthProperty<TLength> | Array<ColumnWidthProperty<TLength>>;
|
|
2146
|
+
WebkitFilter?: FilterProperty | Array<FilterProperty>;
|
|
2147
|
+
WebkitFlexBasis?: FlexBasisProperty<TLength> | Array<FlexBasisProperty<TLength>>;
|
|
2148
|
+
WebkitFlexDirection?: FlexDirectionProperty | Array<FlexDirectionProperty>;
|
|
2149
|
+
WebkitFlexGrow?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2150
|
+
WebkitFlexShrink?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2151
|
+
WebkitFlexWrap?: FlexWrapProperty | Array<FlexWrapProperty>;
|
|
2152
|
+
WebkitFontFeatureSettings?: FontFeatureSettingsProperty | Array<FontFeatureSettingsProperty>;
|
|
2153
|
+
WebkitFontKerning?: FontKerningProperty | Array<FontKerningProperty>;
|
|
2154
|
+
WebkitFontVariantLigatures?: FontVariantLigaturesProperty | Array<FontVariantLigaturesProperty>;
|
|
2155
|
+
WebkitHyphens?: HyphensProperty | Array<HyphensProperty>;
|
|
2156
|
+
WebkitJustifyContent?: JustifyContentProperty | Array<JustifyContentProperty>;
|
|
2157
|
+
WebkitLineBreak?: LineBreakProperty | Array<LineBreakProperty>;
|
|
2158
|
+
WebkitLineClamp?: WebkitLineClampProperty | Array<WebkitLineClampProperty>;
|
|
2159
|
+
WebkitMarginEnd?: MarginInlineEndProperty<TLength> | Array<MarginInlineEndProperty<TLength>>;
|
|
2160
|
+
MozFontLanguageOverride?: FontLanguageOverrideProperty | Array<FontLanguageOverrideProperty>;
|
|
2161
|
+
WebkitMaskAttachment?: WebkitMaskAttachmentProperty | Array<WebkitMaskAttachmentProperty>;
|
|
2162
|
+
WebkitMaskClip?: WebkitMaskClipProperty | Array<WebkitMaskClipProperty>;
|
|
2163
|
+
WebkitMaskComposite?: WebkitMaskCompositeProperty | Array<WebkitMaskCompositeProperty>;
|
|
2164
|
+
WebkitMaskImage?: WebkitMaskImageProperty | Array<WebkitMaskImageProperty>;
|
|
2165
|
+
WebkitMaskOrigin?: WebkitMaskOriginProperty | Array<WebkitMaskOriginProperty>;
|
|
2166
|
+
MozForceBrokenImageIcon?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2167
|
+
MozHyphens?: HyphensProperty | Array<HyphensProperty>;
|
|
2168
|
+
MozImageRegion?: MozImageRegionProperty | Array<MozImageRegionProperty>;
|
|
2169
|
+
WebkitMaskRepeat?: WebkitMaskRepeatProperty | Array<WebkitMaskRepeatProperty>;
|
|
2170
|
+
WebkitMaskRepeatX?: WebkitMaskRepeatXProperty | Array<WebkitMaskRepeatXProperty>;
|
|
2171
|
+
WebkitMaskRepeatY?: WebkitMaskRepeatYProperty | Array<WebkitMaskRepeatYProperty>;
|
|
2172
|
+
WebkitMaskSize?: WebkitMaskSizeProperty<TLength> | Array<WebkitMaskSizeProperty<TLength>>;
|
|
2173
|
+
WebkitMaxInlineSize?: MaxInlineSizeProperty<TLength> | Array<MaxInlineSizeProperty<TLength>>;
|
|
2174
|
+
WebkitOrder?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2175
|
+
MozMarginEnd?: MarginInlineEndProperty<TLength> | Array<MarginInlineEndProperty<TLength>>;
|
|
2176
|
+
WebkitPaddingEnd?: PaddingInlineEndProperty<TLength> | Array<PaddingInlineEndProperty<TLength>>;
|
|
2177
|
+
MozMarginStart?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
|
|
2178
|
+
WebkitPerspective?: PerspectiveProperty<TLength> | Array<PerspectiveProperty<TLength>>;
|
|
2179
|
+
MozOrient?: MozOrientProperty | Array<MozOrientProperty>;
|
|
2180
|
+
WebkitScrollSnapType?: ScrollSnapTypeProperty | Array<ScrollSnapTypeProperty>;
|
|
2181
|
+
WebkitShapeMargin?: ShapeMarginProperty<TLength> | Array<ShapeMarginProperty<TLength>>;
|
|
2182
|
+
MozAnimationDelay?: GlobalsString | Array<GlobalsString>;
|
|
2183
|
+
WebkitTextCombine?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
2184
|
+
WebkitTextDecorationColor?: TextDecorationColorProperty | Array<TextDecorationColorProperty>;
|
|
2185
|
+
WebkitTextDecorationLine?: TextDecorationLineProperty | Array<TextDecorationLineProperty>;
|
|
2186
|
+
WebkitTextDecorationSkip?: TextDecorationSkipProperty | Array<TextDecorationSkipProperty>;
|
|
2187
|
+
WebkitTextDecorationStyle?: TextDecorationStyleProperty | Array<TextDecorationStyleProperty>;
|
|
2188
|
+
WebkitTextEmphasisColor?: TextEmphasisColorProperty | Array<TextEmphasisColorProperty>;
|
|
2189
|
+
WebkitTextEmphasisPosition?: GlobalsString | Array<GlobalsString>;
|
|
2190
|
+
WebkitTextEmphasisStyle?: TextEmphasisStyleProperty | Array<TextEmphasisStyleProperty>;
|
|
2191
|
+
WebkitTextFillColor?: WebkitTextFillColorProperty | Array<WebkitTextFillColorProperty>;
|
|
2192
|
+
WebkitTextOrientation?: TextOrientationProperty | Array<TextOrientationProperty>;
|
|
2193
|
+
WebkitTextSizeAdjust?: TextSizeAdjustProperty | Array<TextSizeAdjustProperty>;
|
|
2194
|
+
WebkitTextStrokeColor?: WebkitTextStrokeColorProperty | Array<WebkitTextStrokeColorProperty>;
|
|
2195
|
+
MozAnimationName?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
2196
|
+
WebkitTouchCallout?: WebkitTouchCalloutProperty | Array<WebkitTouchCalloutProperty>;
|
|
2197
|
+
WebkitTransform?: TransformProperty | Array<TransformProperty>;
|
|
2198
|
+
MozAnimationPlayState?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
2199
|
+
WebkitTransformStyle?: TransformStyleProperty | Array<TransformStyleProperty>;
|
|
2200
|
+
WebkitTransitionDelay?: GlobalsString | Array<GlobalsString>;
|
|
2201
|
+
WebkitTransitionDuration?: GlobalsString | Array<GlobalsString>;
|
|
2202
|
+
WebkitTransitionProperty?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2203
|
+
MozAnimationDuration?: GlobalsString | Array<GlobalsString>;
|
|
2204
|
+
WebkitUserModify?: WebkitUserModifyProperty | Array<WebkitUserModifyProperty>;
|
|
2205
|
+
WebkitUserSelect?: UserSelectProperty | Array<UserSelectProperty>;
|
|
2206
|
+
WebkitWritingMode?: WritingModeProperty | Array<WritingModeProperty>;
|
|
2207
|
+
}
|
|
2208
|
+
export interface VendorShorthandPropertiesFallback<TLength = string | 0> {
|
|
2209
|
+
WebkitAnimation?: AnimationProperty | Array<AnimationProperty>;
|
|
2210
|
+
WebkitBorderBefore?: WebkitBorderBeforeProperty<TLength> | Array<WebkitBorderBeforeProperty<TLength>>;
|
|
2211
|
+
MozColumnRule?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
|
|
2212
|
+
MozColumns?: ColumnsProperty<TLength> | Array<ColumnsProperty<TLength>>;
|
|
2213
|
+
MozTransition?: TransitionProperty | Array<TransitionProperty>;
|
|
2214
|
+
msContentZoomLimit?: GlobalsString | Array<GlobalsString>;
|
|
2215
|
+
msContentZoomSnap?: MsContentZoomSnapProperty | Array<MsContentZoomSnapProperty>;
|
|
2216
|
+
msFlex?: FlexProperty<TLength> | Array<FlexProperty<TLength>>;
|
|
2217
|
+
msScrollLimit?: GlobalsString | Array<GlobalsString>;
|
|
2218
|
+
msScrollSnapX?: GlobalsString | Array<GlobalsString>;
|
|
2219
|
+
msScrollSnapY?: GlobalsString | Array<GlobalsString>;
|
|
2220
|
+
msTransition?: TransitionProperty | Array<TransitionProperty>;
|
|
2221
|
+
MozBorderImage?: BorderImageProperty | Array<BorderImageProperty>;
|
|
2222
|
+
MozAnimation?: AnimationProperty | Array<AnimationProperty>;
|
|
2223
|
+
WebkitBorderImage?: BorderImageProperty | Array<BorderImageProperty>;
|
|
2224
|
+
WebkitBorderRadius?: BorderRadiusProperty<TLength> | Array<BorderRadiusProperty<TLength>>;
|
|
2225
|
+
WebkitColumnRule?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
|
|
2226
|
+
WebkitColumns?: ColumnsProperty<TLength> | Array<ColumnsProperty<TLength>>;
|
|
2227
|
+
WebkitFlex?: FlexProperty<TLength> | Array<FlexProperty<TLength>>;
|
|
2228
|
+
WebkitFlexFlow?: FlexFlowProperty | Array<FlexFlowProperty>;
|
|
2229
|
+
WebkitMask?: WebkitMaskProperty<TLength> | Array<WebkitMaskProperty<TLength>>;
|
|
2230
|
+
WebkitTextEmphasis?: TextEmphasisProperty | Array<TextEmphasisProperty>;
|
|
2231
|
+
WebkitTextStroke?: WebkitTextStrokeProperty<TLength> | Array<WebkitTextStrokeProperty<TLength>>;
|
|
2232
|
+
WebkitTransition?: TransitionProperty | Array<TransitionProperty>;
|
|
2233
|
+
}
|
|
2234
|
+
export type VendorPropertiesFallback<TLength = string | 0> = VendorLonghandPropertiesFallback<TLength> & VendorShorthandPropertiesFallback<TLength>;
|
|
2235
|
+
export interface ObsoletePropertiesFallback<TLength = string | 0> {
|
|
2236
|
+
MozBorderRadiusBottomright?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
|
|
2237
|
+
scrollSnapCoordinate?: ScrollSnapCoordinateProperty<TLength> | Array<ScrollSnapCoordinateProperty<TLength>>;
|
|
2238
|
+
scrollSnapDestination?: ScrollSnapDestinationProperty<TLength> | Array<ScrollSnapDestinationProperty<TLength>>;
|
|
2239
|
+
MozBorderRadiusBottomleft?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
|
|
2240
|
+
offsetInlineStart?: InsetInlineStartProperty<TLength> | Array<InsetInlineStartProperty<TLength>>;
|
|
2241
|
+
MozBorderRadiusTopleft?: BorderTopLeftRadiusProperty<TLength> | Array<BorderTopLeftRadiusProperty<TLength>>;
|
|
2242
|
+
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | Array<BorderTopRightRadiusProperty<TLength>>;
|
|
2243
|
+
OAnimationIterationCount?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
2244
|
+
OAnimationTimingFunction?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
2245
|
+
MozBoxAlign?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
2246
|
+
OTransitionTimingFunction?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2247
|
+
gridGap?: GridGapProperty<TLength> | Array<GridGapProperty<TLength>>;
|
|
2248
|
+
gridRowGap?: GridRowGapProperty<TLength> | Array<GridRowGapProperty<TLength>>;
|
|
2249
|
+
imeMode?: ImeModeProperty | Array<ImeModeProperty>;
|
|
2250
|
+
offsetBlock?: InsetBlockProperty<TLength> | Array<InsetBlockProperty<TLength>>;
|
|
2251
|
+
offsetBlockEnd?: InsetBlockEndProperty<TLength> | Array<InsetBlockEndProperty<TLength>>;
|
|
2252
|
+
offsetBlockStart?: InsetBlockStartProperty<TLength> | Array<InsetBlockStartProperty<TLength>>;
|
|
2253
|
+
offsetInline?: InsetInlineProperty<TLength> | Array<InsetInlineProperty<TLength>>;
|
|
2254
|
+
offsetInlineEnd?: InsetInlineEndProperty<TLength> | Array<InsetInlineEndProperty<TLength>>;
|
|
2255
|
+
boxAlign?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
2256
|
+
boxFlex?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2257
|
+
boxFlexGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2258
|
+
scrollSnapPointsX?: ScrollSnapPointsXProperty | Array<ScrollSnapPointsXProperty>;
|
|
2259
|
+
scrollSnapPointsY?: ScrollSnapPointsYProperty | Array<ScrollSnapPointsYProperty>;
|
|
2260
|
+
scrollSnapTypeX?: ScrollSnapTypeXProperty | Array<ScrollSnapTypeXProperty>;
|
|
2261
|
+
scrollSnapTypeY?: ScrollSnapTypeYProperty | Array<ScrollSnapTypeYProperty>;
|
|
2262
|
+
textCombineHorizontal?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
2263
|
+
KhtmlBoxAlign?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
2264
|
+
KhtmlBoxDirection?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
2265
|
+
KhtmlBoxFlex?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2266
|
+
KhtmlBoxFlexGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2267
|
+
KhtmlBoxLines?: BoxLinesProperty | Array<BoxLinesProperty>;
|
|
2268
|
+
KhtmlBoxOrdinalGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2269
|
+
KhtmlBoxOrient?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
2270
|
+
KhtmlBoxPack?: BoxPackProperty | Array<BoxPackProperty>;
|
|
2271
|
+
KhtmlLineBreak?: LineBreakProperty | Array<LineBreakProperty>;
|
|
2272
|
+
KhtmlOpacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2273
|
+
KhtmlUserSelect?: UserSelectProperty | Array<UserSelectProperty>;
|
|
2274
|
+
MozBackgroundClip?: BackgroundClipProperty | Array<BackgroundClipProperty>;
|
|
2275
|
+
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | Array<BoxDecorationBreakProperty>;
|
|
2276
|
+
MozBackgroundOrigin?: BackgroundOriginProperty | Array<BackgroundOriginProperty>;
|
|
2277
|
+
MozBackgroundSize?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
2278
|
+
MozBinding?: MozBindingProperty | Array<MozBindingProperty>;
|
|
2279
|
+
MozBorderRadius?: BorderRadiusProperty<TLength> | Array<BorderRadiusProperty<TLength>>;
|
|
2280
|
+
boxLines?: BoxLinesProperty | Array<BoxLinesProperty>;
|
|
2281
|
+
boxOrdinalGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2282
|
+
boxOrient?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
2283
|
+
boxPack?: BoxPackProperty | Array<BoxPackProperty>;
|
|
2284
|
+
boxDirection?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
2285
|
+
MozBoxDirection?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
2286
|
+
MozBoxFlex?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2287
|
+
MozBoxOrdinalGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2288
|
+
MozBoxOrient?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
2289
|
+
MozBoxPack?: BoxPackProperty | Array<BoxPackProperty>;
|
|
2290
|
+
MozBoxShadow?: BoxShadowProperty | Array<BoxShadowProperty>;
|
|
2291
|
+
MozOpacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2292
|
+
MozOutline?: OutlineProperty<TLength> | Array<OutlineProperty<TLength>>;
|
|
2293
|
+
MozOutlineColor?: OutlineColorProperty | Array<OutlineColorProperty>;
|
|
2294
|
+
MozOutlineRadius?: MozOutlineRadiusProperty<TLength> | Array<MozOutlineRadiusProperty<TLength>>;
|
|
2295
|
+
MozOutlineStyle?: OutlineStyleProperty | Array<OutlineStyleProperty>;
|
|
2296
|
+
MozOutlineWidth?: OutlineWidthProperty<TLength> | Array<OutlineWidthProperty<TLength>>;
|
|
2297
|
+
MozTextAlignLast?: TextAlignLastProperty | Array<TextAlignLastProperty>;
|
|
2298
|
+
MozTextBlink?: MozTextBlinkProperty | Array<MozTextBlinkProperty>;
|
|
2299
|
+
MozTextDecorationColor?: TextDecorationColorProperty | Array<TextDecorationColorProperty>;
|
|
2300
|
+
MozTextDecorationLine?: TextDecorationLineProperty | Array<TextDecorationLineProperty>;
|
|
2301
|
+
MozTextDecorationStyle?: TextDecorationStyleProperty | Array<TextDecorationStyleProperty>;
|
|
2302
|
+
MozUserInput?: MozUserInputProperty | Array<MozUserInputProperty>;
|
|
2303
|
+
MozWindowShadow?: MozWindowShadowProperty | Array<MozWindowShadowProperty>;
|
|
2304
|
+
msImeMode?: ImeModeProperty | Array<ImeModeProperty>;
|
|
2305
|
+
OAnimation?: AnimationProperty | Array<AnimationProperty>;
|
|
2306
|
+
OAnimationDelay?: GlobalsString | Array<GlobalsString>;
|
|
2307
|
+
OAnimationDirection?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
2308
|
+
OAnimationDuration?: GlobalsString | Array<GlobalsString>;
|
|
2309
|
+
OAnimationFillMode?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
2310
|
+
clip?: ClipProperty | Array<ClipProperty>;
|
|
2311
|
+
OAnimationName?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
2312
|
+
OAnimationPlayState?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
2313
|
+
fontVariantAlternates?: FontVariantAlternatesProperty | Array<FontVariantAlternatesProperty>;
|
|
2314
|
+
OBackgroundSize?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
2315
|
+
OBorderImage?: BorderImageProperty | Array<BorderImageProperty>;
|
|
2316
|
+
OTransform?: TransformProperty | Array<TransformProperty>;
|
|
2317
|
+
OTransition?: TransitionProperty | Array<TransitionProperty>;
|
|
2318
|
+
OTransitionDelay?: GlobalsString | Array<GlobalsString>;
|
|
2319
|
+
OTransitionDuration?: GlobalsString | Array<GlobalsString>;
|
|
2320
|
+
OTransitionProperty?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2321
|
+
gridColumnGap?: GridColumnGapProperty<TLength> | Array<GridColumnGapProperty<TLength>>;
|
|
2322
|
+
WebkitBoxAlign?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
2323
|
+
WebkitBoxDirection?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
2324
|
+
WebkitBoxFlex?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2325
|
+
WebkitBoxFlexGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2326
|
+
WebkitBoxLines?: BoxLinesProperty | Array<BoxLinesProperty>;
|
|
2327
|
+
WebkitBoxOrdinalGroup?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2328
|
+
WebkitBoxOrient?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
2329
|
+
WebkitBoxPack?: BoxPackProperty | Array<BoxPackProperty>;
|
|
2330
|
+
WebkitScrollSnapPointsX?: ScrollSnapPointsXProperty | Array<ScrollSnapPointsXProperty>;
|
|
2331
|
+
WebkitScrollSnapPointsY?: ScrollSnapPointsYProperty | Array<ScrollSnapPointsYProperty>;
|
|
2332
|
+
}
|
|
2333
|
+
export interface SvgPropertiesFallback<TLength = string | 0> {
|
|
2334
|
+
lineHeight?: LineHeightProperty<TLength> | Array<LineHeightProperty<TLength>>;
|
|
2335
|
+
glyphOrientationVertical?: GlyphOrientationVerticalProperty | Array<GlyphOrientationVerticalProperty>;
|
|
2336
|
+
clip?: ClipProperty | Array<ClipProperty>;
|
|
2337
|
+
clipPath?: ClipPathProperty | Array<ClipPathProperty>;
|
|
2338
|
+
clipRule?: ClipRuleProperty | Array<ClipRuleProperty>;
|
|
2339
|
+
color?: ColorProperty | Array<ColorProperty>;
|
|
2340
|
+
colorInterpolation?: ColorInterpolationProperty | Array<ColorInterpolationProperty>;
|
|
2341
|
+
colorRendering?: ColorRenderingProperty | Array<ColorRenderingProperty>;
|
|
2342
|
+
cursor?: CursorProperty | Array<CursorProperty>;
|
|
2343
|
+
direction?: DirectionProperty | Array<DirectionProperty>;
|
|
2344
|
+
display?: DisplayProperty | Array<DisplayProperty>;
|
|
2345
|
+
dominantBaseline?: DominantBaselineProperty | Array<DominantBaselineProperty>;
|
|
2346
|
+
fill?: FillProperty | Array<FillProperty>;
|
|
2347
|
+
fillOpacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2348
|
+
fillRule?: FillRuleProperty | Array<FillRuleProperty>;
|
|
2349
|
+
filter?: FilterProperty | Array<FilterProperty>;
|
|
2350
|
+
floodColor?: FloodColorProperty | Array<FloodColorProperty>;
|
|
2351
|
+
floodOpacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2352
|
+
font?: FontProperty | Array<FontProperty>;
|
|
2353
|
+
fontFamily?: FontFamilyProperty | Array<FontFamilyProperty>;
|
|
2354
|
+
fontSize?: FontSizeProperty<TLength> | Array<FontSizeProperty<TLength>>;
|
|
2355
|
+
fontSizeAdjust?: FontSizeAdjustProperty | Array<FontSizeAdjustProperty>;
|
|
2356
|
+
fontStretch?: FontStretchProperty | Array<FontStretchProperty>;
|
|
2357
|
+
fontStyle?: FontStyleProperty | Array<FontStyleProperty>;
|
|
2358
|
+
fontVariant?: FontVariantProperty | Array<FontVariantProperty>;
|
|
2359
|
+
fontWeight?: FontWeightProperty | Array<FontWeightProperty>;
|
|
2360
|
+
alignmentBaseline?: AlignmentBaselineProperty | Array<AlignmentBaselineProperty>;
|
|
2361
|
+
imageRendering?: ImageRenderingProperty | Array<ImageRenderingProperty>;
|
|
2362
|
+
letterSpacing?: LetterSpacingProperty<TLength> | Array<LetterSpacingProperty<TLength>>;
|
|
2363
|
+
lightingColor?: LightingColorProperty | Array<LightingColorProperty>;
|
|
2364
|
+
baselineShift?: BaselineShiftProperty<TLength> | Array<BaselineShiftProperty<TLength>>;
|
|
2365
|
+
marker?: MarkerProperty | Array<MarkerProperty>;
|
|
2366
|
+
markerEnd?: MarkerEndProperty | Array<MarkerEndProperty>;
|
|
2367
|
+
markerMid?: MarkerMidProperty | Array<MarkerMidProperty>;
|
|
2368
|
+
markerStart?: MarkerStartProperty | Array<MarkerStartProperty>;
|
|
2369
|
+
mask?: MaskProperty<TLength> | Array<MaskProperty<TLength>>;
|
|
2370
|
+
opacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2371
|
+
overflow?: OverflowProperty | Array<OverflowProperty>;
|
|
2372
|
+
paintOrder?: PaintOrderProperty | Array<PaintOrderProperty>;
|
|
2373
|
+
pointerEvents?: PointerEventsProperty | Array<PointerEventsProperty>;
|
|
2374
|
+
shapeRendering?: ShapeRenderingProperty | Array<ShapeRenderingProperty>;
|
|
2375
|
+
stopColor?: StopColorProperty | Array<StopColorProperty>;
|
|
2376
|
+
stopOpacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2377
|
+
stroke?: StrokeProperty | Array<StrokeProperty>;
|
|
2378
|
+
strokeDasharray?: StrokeDasharrayProperty<TLength> | Array<StrokeDasharrayProperty<TLength>>;
|
|
2379
|
+
strokeDashoffset?: StrokeDashoffsetProperty<TLength> | Array<StrokeDashoffsetProperty<TLength>>;
|
|
2380
|
+
strokeLinecap?: StrokeLinecapProperty | Array<StrokeLinecapProperty>;
|
|
2381
|
+
strokeLinejoin?: StrokeLinejoinProperty | Array<StrokeLinejoinProperty>;
|
|
2382
|
+
strokeMiterlimit?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2383
|
+
strokeOpacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2384
|
+
strokeWidth?: StrokeWidthProperty<TLength> | Array<StrokeWidthProperty<TLength>>;
|
|
2385
|
+
textAnchor?: TextAnchorProperty | Array<TextAnchorProperty>;
|
|
2386
|
+
textDecoration?: TextDecorationProperty | Array<TextDecorationProperty>;
|
|
2387
|
+
textRendering?: TextRenderingProperty | Array<TextRenderingProperty>;
|
|
2388
|
+
unicodeBidi?: UnicodeBidiProperty | Array<UnicodeBidiProperty>;
|
|
2389
|
+
vectorEffect?: VectorEffectProperty | Array<VectorEffectProperty>;
|
|
2390
|
+
visibility?: VisibilityProperty | Array<VisibilityProperty>;
|
|
2391
|
+
whiteSpace?: WhiteSpaceProperty | Array<WhiteSpaceProperty>;
|
|
2392
|
+
wordSpacing?: WordSpacingProperty<TLength> | Array<WordSpacingProperty<TLength>>;
|
|
2393
|
+
writingMode?: WritingModeProperty | Array<WritingModeProperty>;
|
|
2394
|
+
}
|
|
2395
|
+
export type PropertiesFallback<TLength = string | 0> = StandardPropertiesFallback<TLength> & VendorPropertiesFallback<TLength> & ObsoletePropertiesFallback<TLength> & SvgPropertiesFallback<TLength>;
|
|
2396
|
+
export interface StandardLonghandPropertiesHyphenFallback<TLength = string | 0> {
|
|
2397
|
+
['inset-block-start']?: InsetBlockStartProperty<TLength> | Array<InsetBlockStartProperty<TLength>>;
|
|
2398
|
+
['grid-auto-columns']?: GridAutoColumnsProperty<TLength> | Array<GridAutoColumnsProperty<TLength>>;
|
|
2399
|
+
['grid-template-columns']?: GridTemplateColumnsProperty<TLength> | Array<GridTemplateColumnsProperty<TLength>>;
|
|
2400
|
+
['grid-template-rows']?: GridTemplateRowsProperty<TLength> | Array<GridTemplateRowsProperty<TLength>>;
|
|
2401
|
+
['font-variation-settings']?: FontVariationSettingsProperty | Array<FontVariationSettingsProperty>;
|
|
2402
|
+
['inset-inline-start']?: InsetInlineStartProperty<TLength> | Array<InsetInlineStartProperty<TLength>>;
|
|
2403
|
+
['margin-block-start']?: MarginBlockStartProperty<TLength> | Array<MarginBlockStartProperty<TLength>>;
|
|
2404
|
+
['margin-inline-end']?: MarginInlineEndProperty<TLength> | Array<MarginInlineEndProperty<TLength>>;
|
|
2405
|
+
['margin-inline-start']?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
|
|
2406
|
+
['mask-border-outset']?: MaskBorderOutsetProperty<TLength> | Array<MaskBorderOutsetProperty<TLength>>;
|
|
2407
|
+
['column-rule-width']?: ColumnRuleWidthProperty<TLength> | Array<ColumnRuleWidthProperty<TLength>>;
|
|
2408
|
+
['mask-border-width']?: MaskBorderWidthProperty<TLength> | Array<MaskBorderWidthProperty<TLength>>;
|
|
2409
|
+
['border-top-right-radius']?: BorderTopRightRadiusProperty<TLength> | Array<BorderTopRightRadiusProperty<TLength>>;
|
|
2410
|
+
['padding-block-end']?: PaddingBlockEndProperty<TLength> | Array<PaddingBlockEndProperty<TLength>>;
|
|
2411
|
+
['border-top-left-radius']?: BorderTopLeftRadiusProperty<TLength> | Array<BorderTopLeftRadiusProperty<TLength>>;
|
|
2412
|
+
['padding-block-start']?: PaddingBlockStartProperty<TLength> | Array<PaddingBlockStartProperty<TLength>>;
|
|
2413
|
+
['border-start-start-radius']?: BorderStartStartRadiusProperty<TLength> | Array<BorderStartStartRadiusProperty<TLength>>;
|
|
2414
|
+
['padding-inline-end']?: PaddingInlineEndProperty<TLength> | Array<PaddingInlineEndProperty<TLength>>;
|
|
2415
|
+
['border-start-end-radius']?: BorderStartEndRadiusProperty<TLength> | Array<BorderStartEndRadiusProperty<TLength>>;
|
|
2416
|
+
['padding-inline-start']?: PaddingInlineStartProperty<TLength> | Array<PaddingInlineStartProperty<TLength>>;
|
|
2417
|
+
['border-right-width']?: BorderRightWidthProperty<TLength> | Array<BorderRightWidthProperty<TLength>>;
|
|
2418
|
+
['perspective-origin']?: PerspectiveOriginProperty<TLength> | Array<PerspectiveOriginProperty<TLength>>;
|
|
2419
|
+
['border-left-width']?: BorderLeftWidthProperty<TLength> | Array<BorderLeftWidthProperty<TLength>>;
|
|
2420
|
+
['scroll-margin-block']?: ScrollMarginBlockProperty<TLength> | Array<ScrollMarginBlockProperty<TLength>>;
|
|
2421
|
+
['border-inline-width']?: BorderInlineWidthProperty<TLength> | Array<BorderInlineWidthProperty<TLength>>;
|
|
2422
|
+
['scroll-margin-block-end']?: ScrollMarginBlockEndProperty<TLength> | Array<ScrollMarginBlockEndProperty<TLength>>;
|
|
2423
|
+
['border-inline-start-width']?: BorderInlineStartWidthProperty<TLength> | Array<BorderInlineStartWidthProperty<TLength>>;
|
|
2424
|
+
['scroll-margin-block-start']?: ScrollMarginBlockStartProperty<TLength> | Array<ScrollMarginBlockStartProperty<TLength>>;
|
|
2425
|
+
['border-inline-start-style']?: BorderInlineStartStyleProperty | Array<BorderInlineStartStyleProperty>;
|
|
2426
|
+
['scroll-margin-bottom']?: ScrollMarginBottomProperty<TLength> | Array<ScrollMarginBottomProperty<TLength>>;
|
|
2427
|
+
['border-inline-start-color']?: BorderInlineStartColorProperty | Array<BorderInlineStartColorProperty>;
|
|
2428
|
+
['scroll-margin-inline']?: ScrollMarginInlineProperty<TLength> | Array<ScrollMarginInlineProperty<TLength>>;
|
|
2429
|
+
['border-inline-end-width']?: BorderInlineEndWidthProperty<TLength> | Array<BorderInlineEndWidthProperty<TLength>>;
|
|
2430
|
+
['scroll-margin-inline-end']?: ScrollMarginInlineEndProperty<TLength> | Array<ScrollMarginInlineEndProperty<TLength>>;
|
|
2431
|
+
['border-image-width']?: BorderImageWidthProperty<TLength> | Array<BorderImageWidthProperty<TLength>>;
|
|
2432
|
+
['scroll-margin-inline-start']?: ScrollMarginInlineStartProperty<TLength> | Array<ScrollMarginInlineStartProperty<TLength>>;
|
|
2433
|
+
['border-image-outset']?: BorderImageOutsetProperty<TLength> | Array<BorderImageOutsetProperty<TLength>>;
|
|
2434
|
+
['scroll-margin-left']?: ScrollMarginLeftProperty<TLength> | Array<ScrollMarginLeftProperty<TLength>>;
|
|
2435
|
+
['border-end-start-radius']?: BorderEndStartRadiusProperty<TLength> | Array<BorderEndStartRadiusProperty<TLength>>;
|
|
2436
|
+
['scroll-margin-right']?: ScrollMarginRightProperty<TLength> | Array<ScrollMarginRightProperty<TLength>>;
|
|
2437
|
+
['border-end-end-radius']?: BorderEndEndRadiusProperty<TLength> | Array<BorderEndEndRadiusProperty<TLength>>;
|
|
2438
|
+
['scroll-margin-top']?: ScrollMarginTopProperty<TLength> | Array<ScrollMarginTopProperty<TLength>>;
|
|
2439
|
+
['border-bottom-width']?: BorderBottomWidthProperty<TLength> | Array<BorderBottomWidthProperty<TLength>>;
|
|
2440
|
+
['scroll-padding-block']?: ScrollPaddingBlockProperty<TLength> | Array<ScrollPaddingBlockProperty<TLength>>;
|
|
2441
|
+
['border-bottom-right-radius']?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
|
|
2442
|
+
['scroll-padding-block-end']?: ScrollPaddingBlockEndProperty<TLength> | Array<ScrollPaddingBlockEndProperty<TLength>>;
|
|
2443
|
+
['border-bottom-left-radius']?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
|
|
2444
|
+
['scroll-padding-block-start']?: ScrollPaddingBlockStartProperty<TLength> | Array<ScrollPaddingBlockStartProperty<TLength>>;
|
|
2445
|
+
['border-block-width']?: BorderBlockWidthProperty<TLength> | Array<BorderBlockWidthProperty<TLength>>;
|
|
2446
|
+
['scroll-padding-bottom']?: ScrollPaddingBottomProperty<TLength> | Array<ScrollPaddingBottomProperty<TLength>>;
|
|
2447
|
+
['border-block-start-width']?: BorderBlockStartWidthProperty<TLength> | Array<BorderBlockStartWidthProperty<TLength>>;
|
|
2448
|
+
['scroll-padding-inline']?: ScrollPaddingInlineProperty<TLength> | Array<ScrollPaddingInlineProperty<TLength>>;
|
|
2449
|
+
['border-block-start-style']?: BorderBlockStartStyleProperty | Array<BorderBlockStartStyleProperty>;
|
|
2450
|
+
['scroll-padding-inline-end']?: ScrollPaddingInlineEndProperty<TLength> | Array<ScrollPaddingInlineEndProperty<TLength>>;
|
|
2451
|
+
['border-block-start-color']?: BorderBlockStartColorProperty | Array<BorderBlockStartColorProperty>;
|
|
2452
|
+
['scroll-padding-inline-start']?: ScrollPaddingInlineStartProperty<TLength> | Array<ScrollPaddingInlineStartProperty<TLength>>;
|
|
2453
|
+
['border-block-end-width']?: BorderBlockEndWidthProperty<TLength> | Array<BorderBlockEndWidthProperty<TLength>>;
|
|
2454
|
+
['scroll-padding-left']?: ScrollPaddingLeftProperty<TLength> | Array<ScrollPaddingLeftProperty<TLength>>;
|
|
2455
|
+
['background-position-y']?: BackgroundPositionYProperty<TLength> | Array<BackgroundPositionYProperty<TLength>>;
|
|
2456
|
+
['scroll-padding-right']?: ScrollPaddingRightProperty<TLength> | Array<ScrollPaddingRightProperty<TLength>>;
|
|
2457
|
+
['background-position-x']?: BackgroundPositionXProperty<TLength> | Array<BackgroundPositionXProperty<TLength>>;
|
|
2458
|
+
['scroll-padding-top']?: ScrollPaddingTopProperty<TLength> | Array<ScrollPaddingTopProperty<TLength>>;
|
|
2459
|
+
['background-position']?: BackgroundPositionProperty<TLength> | Array<BackgroundPositionProperty<TLength>>;
|
|
2460
|
+
['text-decoration-skip-ink']?: TextDecorationSkipInkProperty | Array<TextDecorationSkipInkProperty>;
|
|
2461
|
+
['animation-timing-function']?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
2462
|
+
['text-underline-position']?: TextUnderlinePositionProperty | Array<TextUnderlinePositionProperty>;
|
|
2463
|
+
['animation-iteration-count']?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
2464
|
+
['margin-bottom']?: MarginBottomProperty<TLength> | Array<MarginBottomProperty<TLength>>;
|
|
2465
|
+
['transition-timing-function']?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2466
|
+
['border-block-end-color']?: BorderBlockEndColorProperty | Array<BorderBlockEndColorProperty>;
|
|
2467
|
+
['border-top-style']?: BorderTopStyleProperty | Array<BorderTopStyleProperty>;
|
|
2468
|
+
['border-top-width']?: BorderTopWidthProperty<TLength> | Array<BorderTopWidthProperty<TLength>>;
|
|
2469
|
+
bottom?: BottomProperty<TLength> | Array<BottomProperty<TLength>>;
|
|
2470
|
+
['box-decoration-break']?: BoxDecorationBreakProperty | Array<BoxDecorationBreakProperty>;
|
|
2471
|
+
['box-shadow']?: BoxShadowProperty | Array<BoxShadowProperty>;
|
|
2472
|
+
['box-sizing']?: BoxSizingProperty | Array<BoxSizingProperty>;
|
|
2473
|
+
['break-after']?: BreakAfterProperty | Array<BreakAfterProperty>;
|
|
2474
|
+
['break-before']?: BreakBeforeProperty | Array<BreakBeforeProperty>;
|
|
2475
|
+
['break-inside']?: BreakInsideProperty | Array<BreakInsideProperty>;
|
|
2476
|
+
['caption-side']?: CaptionSideProperty | Array<CaptionSideProperty>;
|
|
2477
|
+
['caret-color']?: CaretColorProperty | Array<CaretColorProperty>;
|
|
2478
|
+
clear?: ClearProperty | Array<ClearProperty>;
|
|
2479
|
+
['clip-path']?: ClipPathProperty | Array<ClipPathProperty>;
|
|
2480
|
+
color?: ColorProperty | Array<ColorProperty>;
|
|
2481
|
+
['color-adjust']?: ColorAdjustProperty | Array<ColorAdjustProperty>;
|
|
2482
|
+
['column-count']?: ColumnCountProperty | Array<ColumnCountProperty>;
|
|
2483
|
+
['column-fill']?: ColumnFillProperty | Array<ColumnFillProperty>;
|
|
2484
|
+
['column-gap']?: ColumnGapProperty<TLength> | Array<ColumnGapProperty<TLength>>;
|
|
2485
|
+
['column-rule-color']?: ColumnRuleColorProperty | Array<ColumnRuleColorProperty>;
|
|
2486
|
+
['column-rule-style']?: ColumnRuleStyleProperty | Array<ColumnRuleStyleProperty>;
|
|
2487
|
+
['border-block-end-style']?: BorderBlockEndStyleProperty | Array<BorderBlockEndStyleProperty>;
|
|
2488
|
+
['column-span']?: ColumnSpanProperty | Array<ColumnSpanProperty>;
|
|
2489
|
+
['column-width']?: ColumnWidthProperty<TLength> | Array<ColumnWidthProperty<TLength>>;
|
|
2490
|
+
contain?: ContainProperty | Array<ContainProperty>;
|
|
2491
|
+
content?: ContentProperty | Array<ContentProperty>;
|
|
2492
|
+
['counter-increment']?: CounterIncrementProperty | Array<CounterIncrementProperty>;
|
|
2493
|
+
['counter-reset']?: CounterResetProperty | Array<CounterResetProperty>;
|
|
2494
|
+
['counter-set']?: CounterSetProperty | Array<CounterSetProperty>;
|
|
2495
|
+
cursor?: CursorProperty | Array<CursorProperty>;
|
|
2496
|
+
direction?: DirectionProperty | Array<DirectionProperty>;
|
|
2497
|
+
display?: DisplayProperty | Array<DisplayProperty>;
|
|
2498
|
+
['empty-cells']?: EmptyCellsProperty | Array<EmptyCellsProperty>;
|
|
2499
|
+
filter?: FilterProperty | Array<FilterProperty>;
|
|
2500
|
+
['flex-basis']?: FlexBasisProperty<TLength> | Array<FlexBasisProperty<TLength>>;
|
|
2501
|
+
['flex-direction']?: FlexDirectionProperty | Array<FlexDirectionProperty>;
|
|
2502
|
+
['flex-grow']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2503
|
+
['flex-shrink']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2504
|
+
['flex-wrap']?: FlexWrapProperty | Array<FlexWrapProperty>;
|
|
2505
|
+
float?: FloatProperty | Array<FloatProperty>;
|
|
2506
|
+
['font-family']?: FontFamilyProperty | Array<FontFamilyProperty>;
|
|
2507
|
+
['font-feature-settings']?: FontFeatureSettingsProperty | Array<FontFeatureSettingsProperty>;
|
|
2508
|
+
['font-kerning']?: FontKerningProperty | Array<FontKerningProperty>;
|
|
2509
|
+
['font-language-override']?: FontLanguageOverrideProperty | Array<FontLanguageOverrideProperty>;
|
|
2510
|
+
['font-optical-sizing']?: FontOpticalSizingProperty | Array<FontOpticalSizingProperty>;
|
|
2511
|
+
['font-size']?: FontSizeProperty<TLength> | Array<FontSizeProperty<TLength>>;
|
|
2512
|
+
['font-size-adjust']?: FontSizeAdjustProperty | Array<FontSizeAdjustProperty>;
|
|
2513
|
+
['font-stretch']?: FontStretchProperty | Array<FontStretchProperty>;
|
|
2514
|
+
['font-style']?: FontStyleProperty | Array<FontStyleProperty>;
|
|
2515
|
+
['font-synthesis']?: FontSynthesisProperty | Array<FontSynthesisProperty>;
|
|
2516
|
+
['font-variant']?: FontVariantProperty | Array<FontVariantProperty>;
|
|
2517
|
+
['font-variant-caps']?: FontVariantCapsProperty | Array<FontVariantCapsProperty>;
|
|
2518
|
+
['font-variant-east-asian']?: FontVariantEastAsianProperty | Array<FontVariantEastAsianProperty>;
|
|
2519
|
+
['font-variant-ligatures']?: FontVariantLigaturesProperty | Array<FontVariantLigaturesProperty>;
|
|
2520
|
+
['font-variant-numeric']?: FontVariantNumericProperty | Array<FontVariantNumericProperty>;
|
|
2521
|
+
['font-variant-position']?: FontVariantPositionProperty | Array<FontVariantPositionProperty>;
|
|
2522
|
+
['animation-fill-mode']?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
2523
|
+
['font-weight']?: FontWeightProperty | Array<FontWeightProperty>;
|
|
2524
|
+
['align-content']?: AlignContentProperty | Array<AlignContentProperty>;
|
|
2525
|
+
['grid-auto-flow']?: GridAutoFlowProperty | Array<GridAutoFlowProperty>;
|
|
2526
|
+
['grid-auto-rows']?: GridAutoRowsProperty<TLength> | Array<GridAutoRowsProperty<TLength>>;
|
|
2527
|
+
['grid-column-end']?: GridColumnEndProperty | Array<GridColumnEndProperty>;
|
|
2528
|
+
['grid-column-start']?: GridColumnStartProperty | Array<GridColumnStartProperty>;
|
|
2529
|
+
['grid-row-end']?: GridRowEndProperty | Array<GridRowEndProperty>;
|
|
2530
|
+
['grid-row-start']?: GridRowStartProperty | Array<GridRowStartProperty>;
|
|
2531
|
+
['grid-template-areas']?: GridTemplateAreasProperty | Array<GridTemplateAreasProperty>;
|
|
2532
|
+
['animation-name']?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
2533
|
+
['animation-play-state']?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
2534
|
+
['hanging-punctuation']?: HangingPunctuationProperty | Array<HangingPunctuationProperty>;
|
|
2535
|
+
height?: HeightProperty<TLength> | Array<HeightProperty<TLength>>;
|
|
2536
|
+
hyphens?: HyphensProperty | Array<HyphensProperty>;
|
|
2537
|
+
['image-orientation']?: ImageOrientationProperty | Array<ImageOrientationProperty>;
|
|
2538
|
+
['image-rendering']?: ImageRenderingProperty | Array<ImageRenderingProperty>;
|
|
2539
|
+
['image-resolution']?: ImageResolutionProperty | Array<ImageResolutionProperty>;
|
|
2540
|
+
['initial-letter']?: InitialLetterProperty | Array<InitialLetterProperty>;
|
|
2541
|
+
['inline-size']?: InlineSizeProperty<TLength> | Array<InlineSizeProperty<TLength>>;
|
|
2542
|
+
inset?: InsetProperty<TLength> | Array<InsetProperty<TLength>>;
|
|
2543
|
+
['inset-block']?: InsetBlockProperty<TLength> | Array<InsetBlockProperty<TLength>>;
|
|
2544
|
+
['inset-block-end']?: InsetBlockEndProperty<TLength> | Array<InsetBlockEndProperty<TLength>>;
|
|
2545
|
+
['border-block-style']?: BorderBlockStyleProperty | Array<BorderBlockStyleProperty>;
|
|
2546
|
+
['inset-inline']?: InsetInlineProperty<TLength> | Array<InsetInlineProperty<TLength>>;
|
|
2547
|
+
['inset-inline-end']?: InsetInlineEndProperty<TLength> | Array<InsetInlineEndProperty<TLength>>;
|
|
2548
|
+
['align-self']?: AlignSelfProperty | Array<AlignSelfProperty>;
|
|
2549
|
+
isolation?: IsolationProperty | Array<IsolationProperty>;
|
|
2550
|
+
['justify-content']?: JustifyContentProperty | Array<JustifyContentProperty>;
|
|
2551
|
+
['justify-items']?: JustifyItemsProperty | Array<JustifyItemsProperty>;
|
|
2552
|
+
['justify-self']?: JustifySelfProperty | Array<JustifySelfProperty>;
|
|
2553
|
+
left?: LeftProperty<TLength> | Array<LeftProperty<TLength>>;
|
|
2554
|
+
['letter-spacing']?: LetterSpacingProperty<TLength> | Array<LetterSpacingProperty<TLength>>;
|
|
2555
|
+
['line-break']?: LineBreakProperty | Array<LineBreakProperty>;
|
|
2556
|
+
['line-height']?: LineHeightProperty<TLength> | Array<LineHeightProperty<TLength>>;
|
|
2557
|
+
['line-height-step']?: LineHeightStepProperty<TLength> | Array<LineHeightStepProperty<TLength>>;
|
|
2558
|
+
['list-style-image']?: ListStyleImageProperty | Array<ListStyleImageProperty>;
|
|
2559
|
+
['list-style-position']?: ListStylePositionProperty | Array<ListStylePositionProperty>;
|
|
2560
|
+
['list-style-type']?: ListStyleTypeProperty | Array<ListStyleTypeProperty>;
|
|
2561
|
+
['margin-block']?: MarginBlockProperty<TLength> | Array<MarginBlockProperty<TLength>>;
|
|
2562
|
+
['margin-block-end']?: MarginBlockEndProperty<TLength> | Array<MarginBlockEndProperty<TLength>>;
|
|
2563
|
+
['border-bottom-color']?: BorderBottomColorProperty | Array<BorderBottomColorProperty>;
|
|
2564
|
+
['align-items']?: AlignItemsProperty | Array<AlignItemsProperty>;
|
|
2565
|
+
['margin-inline']?: MarginInlineProperty<TLength> | Array<MarginInlineProperty<TLength>>;
|
|
2566
|
+
appearance?: AppearanceProperty | Array<AppearanceProperty>;
|
|
2567
|
+
['backdrop-filter']?: BackdropFilterProperty | Array<BackdropFilterProperty>;
|
|
2568
|
+
['margin-left']?: MarginLeftProperty<TLength> | Array<MarginLeftProperty<TLength>>;
|
|
2569
|
+
['margin-right']?: MarginRightProperty<TLength> | Array<MarginRightProperty<TLength>>;
|
|
2570
|
+
['margin-top']?: MarginTopProperty<TLength> | Array<MarginTopProperty<TLength>>;
|
|
2571
|
+
['mask-border-mode']?: MaskBorderModeProperty | Array<MaskBorderModeProperty>;
|
|
2572
|
+
['border-bottom-style']?: BorderBottomStyleProperty | Array<BorderBottomStyleProperty>;
|
|
2573
|
+
['mask-border-repeat']?: MaskBorderRepeatProperty | Array<MaskBorderRepeatProperty>;
|
|
2574
|
+
['mask-border-slice']?: MaskBorderSliceProperty | Array<MaskBorderSliceProperty>;
|
|
2575
|
+
['mask-border-source']?: MaskBorderSourceProperty | Array<MaskBorderSourceProperty>;
|
|
2576
|
+
['backface-visibility']?: BackfaceVisibilityProperty | Array<BackfaceVisibilityProperty>;
|
|
2577
|
+
['mask-clip']?: MaskClipProperty | Array<MaskClipProperty>;
|
|
2578
|
+
['mask-composite']?: MaskCompositeProperty | Array<MaskCompositeProperty>;
|
|
2579
|
+
['mask-image']?: MaskImageProperty | Array<MaskImageProperty>;
|
|
2580
|
+
['mask-mode']?: MaskModeProperty | Array<MaskModeProperty>;
|
|
2581
|
+
['mask-origin']?: MaskOriginProperty | Array<MaskOriginProperty>;
|
|
2582
|
+
['mask-position']?: MaskPositionProperty<TLength> | Array<MaskPositionProperty<TLength>>;
|
|
2583
|
+
['mask-repeat']?: MaskRepeatProperty | Array<MaskRepeatProperty>;
|
|
2584
|
+
['mask-size']?: MaskSizeProperty<TLength> | Array<MaskSizeProperty<TLength>>;
|
|
2585
|
+
['mask-type']?: MaskTypeProperty | Array<MaskTypeProperty>;
|
|
2586
|
+
['max-block-size']?: MaxBlockSizeProperty<TLength> | Array<MaxBlockSizeProperty<TLength>>;
|
|
2587
|
+
['max-height']?: MaxHeightProperty<TLength> | Array<MaxHeightProperty<TLength>>;
|
|
2588
|
+
['max-inline-size']?: MaxInlineSizeProperty<TLength> | Array<MaxInlineSizeProperty<TLength>>;
|
|
2589
|
+
['max-lines']?: MaxLinesProperty | Array<MaxLinesProperty>;
|
|
2590
|
+
['max-width']?: MaxWidthProperty<TLength> | Array<MaxWidthProperty<TLength>>;
|
|
2591
|
+
['min-block-size']?: MinBlockSizeProperty<TLength> | Array<MinBlockSizeProperty<TLength>>;
|
|
2592
|
+
['min-height']?: MinHeightProperty<TLength> | Array<MinHeightProperty<TLength>>;
|
|
2593
|
+
['min-inline-size']?: MinInlineSizeProperty<TLength> | Array<MinInlineSizeProperty<TLength>>;
|
|
2594
|
+
['min-width']?: MinWidthProperty<TLength> | Array<MinWidthProperty<TLength>>;
|
|
2595
|
+
['mix-blend-mode']?: MixBlendModeProperty | Array<MixBlendModeProperty>;
|
|
2596
|
+
['motion-distance']?: OffsetDistanceProperty<TLength> | Array<OffsetDistanceProperty<TLength>>;
|
|
2597
|
+
['motion-path']?: OffsetPathProperty | Array<OffsetPathProperty>;
|
|
2598
|
+
['motion-rotation']?: OffsetRotateProperty | Array<OffsetRotateProperty>;
|
|
2599
|
+
['object-fit']?: ObjectFitProperty | Array<ObjectFitProperty>;
|
|
2600
|
+
['object-position']?: ObjectPositionProperty<TLength> | Array<ObjectPositionProperty<TLength>>;
|
|
2601
|
+
['offset-anchor']?: OffsetAnchorProperty<TLength> | Array<OffsetAnchorProperty<TLength>>;
|
|
2602
|
+
['offset-distance']?: OffsetDistanceProperty<TLength> | Array<OffsetDistanceProperty<TLength>>;
|
|
2603
|
+
['offset-path']?: OffsetPathProperty | Array<OffsetPathProperty>;
|
|
2604
|
+
['offset-position']?: OffsetPositionProperty<TLength> | Array<OffsetPositionProperty<TLength>>;
|
|
2605
|
+
['offset-rotate']?: OffsetRotateProperty | Array<OffsetRotateProperty>;
|
|
2606
|
+
['offset-rotation']?: OffsetRotateProperty | Array<OffsetRotateProperty>;
|
|
2607
|
+
opacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2608
|
+
order?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2609
|
+
orphans?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2610
|
+
['outline-color']?: OutlineColorProperty | Array<OutlineColorProperty>;
|
|
2611
|
+
['outline-offset']?: OutlineOffsetProperty<TLength> | Array<OutlineOffsetProperty<TLength>>;
|
|
2612
|
+
['outline-style']?: OutlineStyleProperty | Array<OutlineStyleProperty>;
|
|
2613
|
+
['outline-width']?: OutlineWidthProperty<TLength> | Array<OutlineWidthProperty<TLength>>;
|
|
2614
|
+
overflow?: OverflowProperty | Array<OverflowProperty>;
|
|
2615
|
+
['overflow-anchor']?: OverflowAnchorProperty | Array<OverflowAnchorProperty>;
|
|
2616
|
+
['overflow-block']?: OverflowBlockProperty | Array<OverflowBlockProperty>;
|
|
2617
|
+
['overflow-clip-box']?: OverflowClipBoxProperty | Array<OverflowClipBoxProperty>;
|
|
2618
|
+
['overflow-inline']?: OverflowInlineProperty | Array<OverflowInlineProperty>;
|
|
2619
|
+
['overflow-wrap']?: OverflowWrapProperty | Array<OverflowWrapProperty>;
|
|
2620
|
+
['overflow-x']?: OverflowXProperty | Array<OverflowXProperty>;
|
|
2621
|
+
['overflow-y']?: OverflowYProperty | Array<OverflowYProperty>;
|
|
2622
|
+
['overscroll-behavior']?: OverscrollBehaviorProperty | Array<OverscrollBehaviorProperty>;
|
|
2623
|
+
['overscroll-behavior-x']?: OverscrollBehaviorXProperty | Array<OverscrollBehaviorXProperty>;
|
|
2624
|
+
['overscroll-behavior-y']?: OverscrollBehaviorYProperty | Array<OverscrollBehaviorYProperty>;
|
|
2625
|
+
['padding-block']?: PaddingBlockProperty<TLength> | Array<PaddingBlockProperty<TLength>>;
|
|
2626
|
+
['border-collapse']?: BorderCollapseProperty | Array<BorderCollapseProperty>;
|
|
2627
|
+
['background-attachment']?: BackgroundAttachmentProperty | Array<BackgroundAttachmentProperty>;
|
|
2628
|
+
['padding-bottom']?: PaddingBottomProperty<TLength> | Array<PaddingBottomProperty<TLength>>;
|
|
2629
|
+
['padding-inline']?: PaddingInlineProperty<TLength> | Array<PaddingInlineProperty<TLength>>;
|
|
2630
|
+
['background-blend-mode']?: BackgroundBlendModeProperty | Array<BackgroundBlendModeProperty>;
|
|
2631
|
+
['background-clip']?: BackgroundClipProperty | Array<BackgroundClipProperty>;
|
|
2632
|
+
['padding-left']?: PaddingLeftProperty<TLength> | Array<PaddingLeftProperty<TLength>>;
|
|
2633
|
+
['padding-right']?: PaddingRightProperty<TLength> | Array<PaddingRightProperty<TLength>>;
|
|
2634
|
+
['padding-top']?: PaddingTopProperty<TLength> | Array<PaddingTopProperty<TLength>>;
|
|
2635
|
+
['page-break-after']?: PageBreakAfterProperty | Array<PageBreakAfterProperty>;
|
|
2636
|
+
['page-break-before']?: PageBreakBeforeProperty | Array<PageBreakBeforeProperty>;
|
|
2637
|
+
['page-break-inside']?: PageBreakInsideProperty | Array<PageBreakInsideProperty>;
|
|
2638
|
+
['paint-order']?: PaintOrderProperty | Array<PaintOrderProperty>;
|
|
2639
|
+
perspective?: PerspectiveProperty<TLength> | Array<PerspectiveProperty<TLength>>;
|
|
2640
|
+
['border-image-repeat']?: BorderImageRepeatProperty | Array<BorderImageRepeatProperty>;
|
|
2641
|
+
['place-content']?: PlaceContentProperty | Array<PlaceContentProperty>;
|
|
2642
|
+
['pointer-events']?: PointerEventsProperty | Array<PointerEventsProperty>;
|
|
2643
|
+
position?: PositionProperty | Array<PositionProperty>;
|
|
2644
|
+
quotes?: QuotesProperty | Array<QuotesProperty>;
|
|
2645
|
+
resize?: ResizeProperty | Array<ResizeProperty>;
|
|
2646
|
+
right?: RightProperty<TLength> | Array<RightProperty<TLength>>;
|
|
2647
|
+
rotate?: RotateProperty | Array<RotateProperty>;
|
|
2648
|
+
['row-gap']?: RowGapProperty<TLength> | Array<RowGapProperty<TLength>>;
|
|
2649
|
+
['ruby-align']?: RubyAlignProperty | Array<RubyAlignProperty>;
|
|
2650
|
+
['ruby-merge']?: RubyMergeProperty | Array<RubyMergeProperty>;
|
|
2651
|
+
['ruby-position']?: RubyPositionProperty | Array<RubyPositionProperty>;
|
|
2652
|
+
scale?: ScaleProperty | Array<ScaleProperty>;
|
|
2653
|
+
['scroll-behavior']?: ScrollBehaviorProperty | Array<ScrollBehaviorProperty>;
|
|
2654
|
+
['scroll-margin']?: ScrollMarginProperty<TLength> | Array<ScrollMarginProperty<TLength>>;
|
|
2655
|
+
['border-image-slice']?: BorderImageSliceProperty | Array<BorderImageSliceProperty>;
|
|
2656
|
+
['border-image-source']?: BorderImageSourceProperty | Array<BorderImageSourceProperty>;
|
|
2657
|
+
['background-color']?: BackgroundColorProperty | Array<BackgroundColorProperty>;
|
|
2658
|
+
['border-inline-color']?: BorderInlineColorProperty | Array<BorderInlineColorProperty>;
|
|
2659
|
+
['border-inline-end-color']?: BorderInlineEndColorProperty | Array<BorderInlineEndColorProperty>;
|
|
2660
|
+
['border-inline-end-style']?: BorderInlineEndStyleProperty | Array<BorderInlineEndStyleProperty>;
|
|
2661
|
+
['background-image']?: BackgroundImageProperty | Array<BackgroundImageProperty>;
|
|
2662
|
+
['background-origin']?: BackgroundOriginProperty | Array<BackgroundOriginProperty>;
|
|
2663
|
+
['animation-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2664
|
+
['animation-direction']?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
2665
|
+
['scroll-padding']?: ScrollPaddingProperty<TLength> | Array<ScrollPaddingProperty<TLength>>;
|
|
2666
|
+
['border-inline-style']?: BorderInlineStyleProperty | Array<BorderInlineStyleProperty>;
|
|
2667
|
+
['animation-duration']?: GlobalsString | Array<GlobalsString>;
|
|
2668
|
+
['border-left-color']?: BorderLeftColorProperty | Array<BorderLeftColorProperty>;
|
|
2669
|
+
['border-left-style']?: BorderLeftStyleProperty | Array<BorderLeftStyleProperty>;
|
|
2670
|
+
['background-repeat']?: BackgroundRepeatProperty | Array<BackgroundRepeatProperty>;
|
|
2671
|
+
['border-right-color']?: BorderRightColorProperty | Array<BorderRightColorProperty>;
|
|
2672
|
+
['border-right-style']?: BorderRightStyleProperty | Array<BorderRightStyleProperty>;
|
|
2673
|
+
['background-size']?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
2674
|
+
['border-spacing']?: BorderSpacingProperty<TLength> | Array<BorderSpacingProperty<TLength>>;
|
|
2675
|
+
['block-overflow']?: BlockOverflowProperty | Array<BlockOverflowProperty>;
|
|
2676
|
+
['scroll-snap-align']?: ScrollSnapAlignProperty | Array<ScrollSnapAlignProperty>;
|
|
2677
|
+
['scroll-snap-stop']?: ScrollSnapStopProperty | Array<ScrollSnapStopProperty>;
|
|
2678
|
+
['scroll-snap-type']?: ScrollSnapTypeProperty | Array<ScrollSnapTypeProperty>;
|
|
2679
|
+
['scrollbar-color']?: ScrollbarColorProperty | Array<ScrollbarColorProperty>;
|
|
2680
|
+
['scrollbar-width']?: ScrollbarWidthProperty | Array<ScrollbarWidthProperty>;
|
|
2681
|
+
['shape-image-threshold']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2682
|
+
['shape-margin']?: ShapeMarginProperty<TLength> | Array<ShapeMarginProperty<TLength>>;
|
|
2683
|
+
['shape-outside']?: ShapeOutsideProperty | Array<ShapeOutsideProperty>;
|
|
2684
|
+
['tab-size']?: TabSizeProperty<TLength> | Array<TabSizeProperty<TLength>>;
|
|
2685
|
+
['table-layout']?: TableLayoutProperty | Array<TableLayoutProperty>;
|
|
2686
|
+
['text-align']?: TextAlignProperty | Array<TextAlignProperty>;
|
|
2687
|
+
['text-align-last']?: TextAlignLastProperty | Array<TextAlignLastProperty>;
|
|
2688
|
+
['text-combine-upright']?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
2689
|
+
['text-decoration-color']?: TextDecorationColorProperty | Array<TextDecorationColorProperty>;
|
|
2690
|
+
['text-decoration-line']?: TextDecorationLineProperty | Array<TextDecorationLineProperty>;
|
|
2691
|
+
['text-decoration-skip']?: TextDecorationSkipProperty | Array<TextDecorationSkipProperty>;
|
|
2692
|
+
['block-size']?: BlockSizeProperty<TLength> | Array<BlockSizeProperty<TLength>>;
|
|
2693
|
+
['text-decoration-style']?: TextDecorationStyleProperty | Array<TextDecorationStyleProperty>;
|
|
2694
|
+
['text-emphasis-color']?: TextEmphasisColorProperty | Array<TextEmphasisColorProperty>;
|
|
2695
|
+
['text-emphasis-position']?: GlobalsString | Array<GlobalsString>;
|
|
2696
|
+
['text-emphasis-style']?: TextEmphasisStyleProperty | Array<TextEmphasisStyleProperty>;
|
|
2697
|
+
['text-indent']?: TextIndentProperty<TLength> | Array<TextIndentProperty<TLength>>;
|
|
2698
|
+
['text-justify']?: TextJustifyProperty | Array<TextJustifyProperty>;
|
|
2699
|
+
['text-orientation']?: TextOrientationProperty | Array<TextOrientationProperty>;
|
|
2700
|
+
['text-overflow']?: TextOverflowProperty | Array<TextOverflowProperty>;
|
|
2701
|
+
['text-rendering']?: TextRenderingProperty | Array<TextRenderingProperty>;
|
|
2702
|
+
['text-shadow']?: TextShadowProperty | Array<TextShadowProperty>;
|
|
2703
|
+
['text-size-adjust']?: TextSizeAdjustProperty | Array<TextSizeAdjustProperty>;
|
|
2704
|
+
['text-transform']?: TextTransformProperty | Array<TextTransformProperty>;
|
|
2705
|
+
['border-top-color']?: BorderTopColorProperty | Array<BorderTopColorProperty>;
|
|
2706
|
+
top?: TopProperty<TLength> | Array<TopProperty<TLength>>;
|
|
2707
|
+
['touch-action']?: TouchActionProperty | Array<TouchActionProperty>;
|
|
2708
|
+
transform?: TransformProperty | Array<TransformProperty>;
|
|
2709
|
+
['transform-box']?: TransformBoxProperty | Array<TransformBoxProperty>;
|
|
2710
|
+
['transform-origin']?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2711
|
+
['transform-style']?: TransformStyleProperty | Array<TransformStyleProperty>;
|
|
2712
|
+
['transition-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2713
|
+
['transition-duration']?: GlobalsString | Array<GlobalsString>;
|
|
2714
|
+
['transition-property']?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2715
|
+
['border-block-color']?: BorderBlockColorProperty | Array<BorderBlockColorProperty>;
|
|
2716
|
+
translate?: TranslateProperty<TLength> | Array<TranslateProperty<TLength>>;
|
|
2717
|
+
['unicode-bidi']?: UnicodeBidiProperty | Array<UnicodeBidiProperty>;
|
|
2718
|
+
['user-select']?: UserSelectProperty | Array<UserSelectProperty>;
|
|
2719
|
+
['vertical-align']?: VerticalAlignProperty<TLength> | Array<VerticalAlignProperty<TLength>>;
|
|
2720
|
+
visibility?: VisibilityProperty | Array<VisibilityProperty>;
|
|
2721
|
+
['white-space']?: WhiteSpaceProperty | Array<WhiteSpaceProperty>;
|
|
2722
|
+
widows?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2723
|
+
width?: WidthProperty<TLength> | Array<WidthProperty<TLength>>;
|
|
2724
|
+
['will-change']?: WillChangeProperty | Array<WillChangeProperty>;
|
|
2725
|
+
['word-break']?: WordBreakProperty | Array<WordBreakProperty>;
|
|
2726
|
+
['word-spacing']?: WordSpacingProperty<TLength> | Array<WordSpacingProperty<TLength>>;
|
|
2727
|
+
['word-wrap']?: WordWrapProperty | Array<WordWrapProperty>;
|
|
2728
|
+
['writing-mode']?: WritingModeProperty | Array<WritingModeProperty>;
|
|
2729
|
+
['z-index']?: ZIndexProperty | Array<ZIndexProperty>;
|
|
2730
|
+
zoom?: ZoomProperty | Array<ZoomProperty>;
|
|
2731
|
+
}
|
|
2732
|
+
export interface StandardShorthandPropertiesHyphenFallback<TLength = string | 0> {
|
|
2733
|
+
['flex-flow']?: FlexFlowProperty | Array<FlexFlowProperty>;
|
|
2734
|
+
['border-block-start']?: BorderBlockStartProperty<TLength> | Array<BorderBlockStartProperty<TLength>>;
|
|
2735
|
+
['border-inline-end']?: BorderInlineEndProperty<TLength> | Array<BorderInlineEndProperty<TLength>>;
|
|
2736
|
+
['border-inline-start']?: BorderInlineStartProperty<TLength> | Array<BorderInlineStartProperty<TLength>>;
|
|
2737
|
+
['border-block']?: BorderBlockProperty<TLength> | Array<BorderBlockProperty<TLength>>;
|
|
2738
|
+
['border-block-end']?: BorderBlockEndProperty<TLength> | Array<BorderBlockEndProperty<TLength>>;
|
|
2739
|
+
all?: Globals | Array<Globals>;
|
|
2740
|
+
['border-bottom']?: BorderBottomProperty<TLength> | Array<BorderBottomProperty<TLength>>;
|
|
2741
|
+
['border-color']?: BorderColorProperty | Array<BorderColorProperty>;
|
|
2742
|
+
['border-image']?: BorderImageProperty | Array<BorderImageProperty>;
|
|
2743
|
+
['border-inline']?: BorderInlineProperty<TLength> | Array<BorderInlineProperty<TLength>>;
|
|
2744
|
+
background?: BackgroundProperty<TLength> | Array<BackgroundProperty<TLength>>;
|
|
2745
|
+
border?: BorderProperty<TLength> | Array<BorderProperty<TLength>>;
|
|
2746
|
+
['border-left']?: BorderLeftProperty<TLength> | Array<BorderLeftProperty<TLength>>;
|
|
2747
|
+
['border-radius']?: BorderRadiusProperty<TLength> | Array<BorderRadiusProperty<TLength>>;
|
|
2748
|
+
['border-right']?: BorderRightProperty<TLength> | Array<BorderRightProperty<TLength>>;
|
|
2749
|
+
['border-style']?: BorderStyleProperty | Array<BorderStyleProperty>;
|
|
2750
|
+
['border-top']?: BorderTopProperty<TLength> | Array<BorderTopProperty<TLength>>;
|
|
2751
|
+
['border-width']?: BorderWidthProperty<TLength> | Array<BorderWidthProperty<TLength>>;
|
|
2752
|
+
['column-rule']?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
|
|
2753
|
+
columns?: ColumnsProperty<TLength> | Array<ColumnsProperty<TLength>>;
|
|
2754
|
+
flex?: FlexProperty<TLength> | Array<FlexProperty<TLength>>;
|
|
2755
|
+
animation?: AnimationProperty | Array<AnimationProperty>;
|
|
2756
|
+
font?: FontProperty | Array<FontProperty>;
|
|
2757
|
+
gap?: GapProperty<TLength> | Array<GapProperty<TLength>>;
|
|
2758
|
+
grid?: GridProperty | Array<GridProperty>;
|
|
2759
|
+
['grid-area']?: GridAreaProperty | Array<GridAreaProperty>;
|
|
2760
|
+
['grid-column']?: GridColumnProperty | Array<GridColumnProperty>;
|
|
2761
|
+
['grid-row']?: GridRowProperty | Array<GridRowProperty>;
|
|
2762
|
+
['grid-template']?: GridTemplateProperty | Array<GridTemplateProperty>;
|
|
2763
|
+
['line-clamp']?: LineClampProperty | Array<LineClampProperty>;
|
|
2764
|
+
['list-style']?: ListStyleProperty | Array<ListStyleProperty>;
|
|
2765
|
+
margin?: MarginProperty<TLength> | Array<MarginProperty<TLength>>;
|
|
2766
|
+
mask?: MaskProperty<TLength> | Array<MaskProperty<TLength>>;
|
|
2767
|
+
['mask-border']?: MaskBorderProperty | Array<MaskBorderProperty>;
|
|
2768
|
+
motion?: OffsetProperty<TLength> | Array<OffsetProperty<TLength>>;
|
|
2769
|
+
offset?: OffsetProperty<TLength> | Array<OffsetProperty<TLength>>;
|
|
2770
|
+
outline?: OutlineProperty<TLength> | Array<OutlineProperty<TLength>>;
|
|
2771
|
+
padding?: PaddingProperty<TLength> | Array<PaddingProperty<TLength>>;
|
|
2772
|
+
['place-items']?: PlaceItemsProperty | Array<PlaceItemsProperty>;
|
|
2773
|
+
['place-self']?: PlaceSelfProperty | Array<PlaceSelfProperty>;
|
|
2774
|
+
['text-decoration']?: TextDecorationProperty | Array<TextDecorationProperty>;
|
|
2775
|
+
['text-emphasis']?: TextEmphasisProperty | Array<TextEmphasisProperty>;
|
|
2776
|
+
transition?: TransitionProperty | Array<TransitionProperty>;
|
|
2777
|
+
}
|
|
2778
|
+
export type StandardPropertiesHyphenFallback<TLength = string | 0> = StandardLonghandPropertiesHyphenFallback<TLength> & StandardShorthandPropertiesHyphenFallback<TLength>;
|
|
2779
|
+
export interface VendorLonghandPropertiesHyphenFallback<TLength = string | 0> {
|
|
2780
|
+
['-ms-transform-origin']?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2781
|
+
['-ms-scrollbar-darkshadow-color']?: MsScrollbarDarkshadowColorProperty | Array<MsScrollbarDarkshadowColorProperty>;
|
|
2782
|
+
['-ms-scrollbar-highlight-color']?: MsScrollbarHighlightColorProperty | Array<MsScrollbarHighlightColorProperty>;
|
|
2783
|
+
['-ms-scrollbar-shadow-color']?: MsScrollbarShadowColorProperty | Array<MsScrollbarShadowColorProperty>;
|
|
2784
|
+
['-ms-scrollbar-track-color']?: MsScrollbarTrackColorProperty | Array<MsScrollbarTrackColorProperty>;
|
|
2785
|
+
['-ms-scrollbar-arrow-color']?: MsScrollbarArrowColorProperty | Array<MsScrollbarArrowColorProperty>;
|
|
2786
|
+
['-ms-transition-timing-function']?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2787
|
+
['-o-transform-origin']?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2788
|
+
['-webkit-animation-iteration-count']?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
2789
|
+
['-webkit-animation-timing-function']?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
2790
|
+
['-webkit-background-size']?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
2791
|
+
['-ms-scrollbar-3dlight-color']?: MsScrollbar3dlightColorProperty | Array<MsScrollbar3dlightColorProperty>;
|
|
2792
|
+
['-webkit-border-before-color']?: WebkitBorderBeforeColorProperty | Array<WebkitBorderBeforeColorProperty>;
|
|
2793
|
+
['-ms-scroll-limit-y-min']?: MsScrollLimitYMinProperty<TLength> | Array<MsScrollLimitYMinProperty<TLength>>;
|
|
2794
|
+
['-webkit-border-before-style']?: WebkitBorderBeforeStyleProperty | Array<WebkitBorderBeforeStyleProperty>;
|
|
2795
|
+
['-ms-scroll-limit-y-max']?: MsScrollLimitYMaxProperty<TLength> | Array<MsScrollLimitYMaxProperty<TLength>>;
|
|
2796
|
+
['-webkit-border-before-width']?: WebkitBorderBeforeWidthProperty<TLength> | Array<WebkitBorderBeforeWidthProperty<TLength>>;
|
|
2797
|
+
['-ms-scroll-limit-x-min']?: MsScrollLimitXMinProperty<TLength> | Array<MsScrollLimitXMinProperty<TLength>>;
|
|
2798
|
+
['-webkit-border-bottom-left-radius']?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
|
|
2799
|
+
['-ms-scroll-limit-x-max']?: MsScrollLimitXMaxProperty<TLength> | Array<MsScrollLimitXMaxProperty<TLength>>;
|
|
2800
|
+
['-webkit-border-bottom-right-radius']?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
|
|
2801
|
+
['-ms-hyphenate-limit-zone']?: MsHyphenateLimitZoneProperty<TLength> | Array<MsHyphenateLimitZoneProperty<TLength>>;
|
|
2802
|
+
['-webkit-border-top-left-radius']?: BorderTopLeftRadiusProperty<TLength> | Array<BorderTopLeftRadiusProperty<TLength>>;
|
|
2803
|
+
['-ms-hyphenate-limit-lines']?: MsHyphenateLimitLinesProperty | Array<MsHyphenateLimitLinesProperty>;
|
|
2804
|
+
['-webkit-border-top-right-radius']?: BorderTopRightRadiusProperty<TLength> | Array<BorderTopRightRadiusProperty<TLength>>;
|
|
2805
|
+
['-ms-hyphenate-limit-chars']?: MsHyphenateLimitCharsProperty | Array<MsHyphenateLimitCharsProperty>;
|
|
2806
|
+
['-webkit-box-reflect']?: WebkitBoxReflectProperty<TLength> | Array<WebkitBoxReflectProperty<TLength>>;
|
|
2807
|
+
['-ms-content-zoom-snap-type']?: MsContentZoomSnapTypeProperty | Array<MsContentZoomSnapTypeProperty>;
|
|
2808
|
+
['-webkit-column-rule-width']?: ColumnRuleWidthProperty<TLength> | Array<ColumnRuleWidthProperty<TLength>>;
|
|
2809
|
+
['-ms-content-zoom-chaining']?: MsContentZoomChainingProperty | Array<MsContentZoomChainingProperty>;
|
|
2810
|
+
['-webkit-font-feature-settings']?: FontFeatureSettingsProperty | Array<FontFeatureSettingsProperty>;
|
|
2811
|
+
['-moz-transition-timing-function']?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2812
|
+
['-webkit-font-variant-ligatures']?: FontVariantLigaturesProperty | Array<FontVariantLigaturesProperty>;
|
|
2813
|
+
['-moz-transform-origin']?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2814
|
+
['-webkit-margin-end']?: MarginInlineEndProperty<TLength> | Array<MarginInlineEndProperty<TLength>>;
|
|
2815
|
+
['-moz-perspective-origin']?: PerspectiveOriginProperty<TLength> | Array<PerspectiveOriginProperty<TLength>>;
|
|
2816
|
+
['-webkit-margin-start']?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
|
|
2817
|
+
['-moz-padding-start']?: PaddingInlineStartProperty<TLength> | Array<PaddingInlineStartProperty<TLength>>;
|
|
2818
|
+
['-webkit-mask-position']?: WebkitMaskPositionProperty<TLength> | Array<WebkitMaskPositionProperty<TLength>>;
|
|
2819
|
+
['-moz-padding-end']?: PaddingInlineEndProperty<TLength> | Array<PaddingInlineEndProperty<TLength>>;
|
|
2820
|
+
['-webkit-mask-position-x']?: WebkitMaskPositionXProperty<TLength> | Array<WebkitMaskPositionXProperty<TLength>>;
|
|
2821
|
+
['-moz-outline-radius-topright']?: MozOutlineRadiusToprightProperty<TLength> | Array<MozOutlineRadiusToprightProperty<TLength>>;
|
|
2822
|
+
['-webkit-mask-position-y']?: WebkitMaskPositionYProperty<TLength> | Array<WebkitMaskPositionYProperty<TLength>>;
|
|
2823
|
+
['-moz-outline-radius-topleft']?: MozOutlineRadiusTopleftProperty<TLength> | Array<MozOutlineRadiusTopleftProperty<TLength>>;
|
|
2824
|
+
['-webkit-max-inline-size']?: MaxInlineSizeProperty<TLength> | Array<MaxInlineSizeProperty<TLength>>;
|
|
2825
|
+
['-moz-outline-radius-bottomright']?: MozOutlineRadiusBottomrightProperty<TLength> | Array<MozOutlineRadiusBottomrightProperty<TLength>>;
|
|
2826
|
+
['-webkit-overflow-scrolling']?: WebkitOverflowScrollingProperty | Array<WebkitOverflowScrollingProperty>;
|
|
2827
|
+
['-moz-outline-radius-bottomleft']?: MozOutlineRadiusBottomleftProperty<TLength> | Array<MozOutlineRadiusBottomleftProperty<TLength>>;
|
|
2828
|
+
['-webkit-padding-end']?: PaddingInlineEndProperty<TLength> | Array<PaddingInlineEndProperty<TLength>>;
|
|
2829
|
+
['-moz-margin-start']?: MarginInlineStartProperty<TLength> | Array<MarginInlineStartProperty<TLength>>;
|
|
2830
|
+
['-webkit-padding-start']?: PaddingInlineStartProperty<TLength> | Array<PaddingInlineStartProperty<TLength>>;
|
|
2831
|
+
['-moz-font-language-override']?: FontLanguageOverrideProperty | Array<FontLanguageOverrideProperty>;
|
|
2832
|
+
['-webkit-perspective-origin']?: PerspectiveOriginProperty<TLength> | Array<PerspectiveOriginProperty<TLength>>;
|
|
2833
|
+
['-moz-column-rule-width']?: ColumnRuleWidthProperty<TLength> | Array<ColumnRuleWidthProperty<TLength>>;
|
|
2834
|
+
['-webkit-tap-highlight-color']?: WebkitTapHighlightColorProperty | Array<WebkitTapHighlightColorProperty>;
|
|
2835
|
+
['-moz-border-start-style']?: BorderInlineStartStyleProperty | Array<BorderInlineStartStyleProperty>;
|
|
2836
|
+
['-webkit-text-decoration-color']?: TextDecorationColorProperty | Array<TextDecorationColorProperty>;
|
|
2837
|
+
['-moz-border-start-color']?: BorderInlineStartColorProperty | Array<BorderInlineStartColorProperty>;
|
|
2838
|
+
['-webkit-text-decoration-style']?: TextDecorationStyleProperty | Array<TextDecorationStyleProperty>;
|
|
2839
|
+
['-moz-border-end-width']?: BorderInlineEndWidthProperty<TLength> | Array<BorderInlineEndWidthProperty<TLength>>;
|
|
2840
|
+
['-webkit-text-stroke-color']?: WebkitTextStrokeColorProperty | Array<WebkitTextStrokeColorProperty>;
|
|
2841
|
+
['-moz-border-bottom-colors']?: MozBorderBottomColorsProperty | Array<MozBorderBottomColorsProperty>;
|
|
2842
|
+
['-webkit-text-stroke-width']?: WebkitTextStrokeWidthProperty<TLength> | Array<WebkitTextStrokeWidthProperty<TLength>>;
|
|
2843
|
+
['-moz-animation-timing-function']?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
2844
|
+
['-webkit-transform-origin']?: TransformOriginProperty<TLength> | Array<TransformOriginProperty<TLength>>;
|
|
2845
|
+
['-moz-animation-iteration-count']?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
2846
|
+
['-ms-transition-property']?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2847
|
+
['-webkit-transition-timing-function']?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
2848
|
+
['-ms-flex-direction']?: FlexDirectionProperty | Array<FlexDirectionProperty>;
|
|
2849
|
+
['-ms-flex-positive']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2850
|
+
['-ms-flow-from']?: MsFlowFromProperty | Array<MsFlowFromProperty>;
|
|
2851
|
+
['-ms-flow-into']?: MsFlowIntoProperty | Array<MsFlowIntoProperty>;
|
|
2852
|
+
['-ms-grid-columns']?: GridAutoColumnsProperty<TLength> | Array<GridAutoColumnsProperty<TLength>>;
|
|
2853
|
+
['-ms-grid-rows']?: GridAutoRowsProperty<TLength> | Array<GridAutoRowsProperty<TLength>>;
|
|
2854
|
+
['-ms-high-contrast-adjust']?: MsHighContrastAdjustProperty | Array<MsHighContrastAdjustProperty>;
|
|
2855
|
+
['-moz-column-fill']?: ColumnFillProperty | Array<ColumnFillProperty>;
|
|
2856
|
+
['-moz-column-gap']?: ColumnGapProperty<TLength> | Array<ColumnGapProperty<TLength>>;
|
|
2857
|
+
['-moz-column-rule-color']?: ColumnRuleColorProperty | Array<ColumnRuleColorProperty>;
|
|
2858
|
+
['-ms-hyphens']?: HyphensProperty | Array<HyphensProperty>;
|
|
2859
|
+
['-ms-ime-align']?: MsImeAlignProperty | Array<MsImeAlignProperty>;
|
|
2860
|
+
['-ms-line-break']?: LineBreakProperty | Array<LineBreakProperty>;
|
|
2861
|
+
['-ms-order']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2862
|
+
['-ms-overflow-style']?: MsOverflowStyleProperty | Array<MsOverflowStyleProperty>;
|
|
2863
|
+
['-ms-overflow-x']?: OverflowXProperty | Array<OverflowXProperty>;
|
|
2864
|
+
['-ms-overflow-y']?: OverflowYProperty | Array<OverflowYProperty>;
|
|
2865
|
+
['-ms-scroll-chaining']?: MsScrollChainingProperty | Array<MsScrollChainingProperty>;
|
|
2866
|
+
['-moz-column-rule-style']?: ColumnRuleStyleProperty | Array<ColumnRuleStyleProperty>;
|
|
2867
|
+
['-moz-animation-duration']?: GlobalsString | Array<GlobalsString>;
|
|
2868
|
+
['-moz-column-width']?: ColumnWidthProperty<TLength> | Array<ColumnWidthProperty<TLength>>;
|
|
2869
|
+
['-moz-context-properties']?: MozContextPropertiesProperty | Array<MozContextPropertiesProperty>;
|
|
2870
|
+
['-ms-scroll-rails']?: MsScrollRailsProperty | Array<MsScrollRailsProperty>;
|
|
2871
|
+
['-ms-scroll-snap-points-x']?: GlobalsString | Array<GlobalsString>;
|
|
2872
|
+
['-ms-scroll-snap-points-y']?: GlobalsString | Array<GlobalsString>;
|
|
2873
|
+
['-ms-scroll-snap-type']?: MsScrollSnapTypeProperty | Array<MsScrollSnapTypeProperty>;
|
|
2874
|
+
['-ms-scroll-translation']?: MsScrollTranslationProperty | Array<MsScrollTranslationProperty>;
|
|
2875
|
+
['-moz-float-edge']?: MozFloatEdgeProperty | Array<MozFloatEdgeProperty>;
|
|
2876
|
+
['-moz-font-feature-settings']?: FontFeatureSettingsProperty | Array<FontFeatureSettingsProperty>;
|
|
2877
|
+
['-ms-scrollbar-base-color']?: MsScrollbarBaseColorProperty | Array<MsScrollbarBaseColorProperty>;
|
|
2878
|
+
['-moz-appearance']?: MozAppearanceProperty | Array<MozAppearanceProperty>;
|
|
2879
|
+
['-ms-scrollbar-face-color']?: MsScrollbarFaceColorProperty | Array<MsScrollbarFaceColorProperty>;
|
|
2880
|
+
['-moz-force-broken-image-icon']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2881
|
+
['-moz-hyphens']?: HyphensProperty | Array<HyphensProperty>;
|
|
2882
|
+
['-moz-image-region']?: MozImageRegionProperty | Array<MozImageRegionProperty>;
|
|
2883
|
+
['-ms-text-autospace']?: MsTextAutospaceProperty | Array<MsTextAutospaceProperty>;
|
|
2884
|
+
['-ms-text-combine-horizontal']?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
2885
|
+
['-ms-text-overflow']?: TextOverflowProperty | Array<TextOverflowProperty>;
|
|
2886
|
+
['-ms-touch-action']?: TouchActionProperty | Array<TouchActionProperty>;
|
|
2887
|
+
['-ms-touch-select']?: MsTouchSelectProperty | Array<MsTouchSelectProperty>;
|
|
2888
|
+
['-ms-transform']?: TransformProperty | Array<TransformProperty>;
|
|
2889
|
+
['-moz-margin-end']?: MarginInlineEndProperty<TLength> | Array<MarginInlineEndProperty<TLength>>;
|
|
2890
|
+
['-ms-transition-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2891
|
+
['-ms-transition-duration']?: GlobalsString | Array<GlobalsString>;
|
|
2892
|
+
['-moz-animation-direction']?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
2893
|
+
['-moz-backface-visibility']?: BackfaceVisibilityProperty | Array<BackfaceVisibilityProperty>;
|
|
2894
|
+
['-ms-user-select']?: MsUserSelectProperty | Array<MsUserSelectProperty>;
|
|
2895
|
+
['-ms-word-break']?: WordBreakProperty | Array<WordBreakProperty>;
|
|
2896
|
+
['-ms-wrap-flow']?: MsWrapFlowProperty | Array<MsWrapFlowProperty>;
|
|
2897
|
+
['-ms-wrap-margin']?: MsWrapMarginProperty<TLength> | Array<MsWrapMarginProperty<TLength>>;
|
|
2898
|
+
['-ms-wrap-through']?: MsWrapThroughProperty | Array<MsWrapThroughProperty>;
|
|
2899
|
+
['-ms-writing-mode']?: WritingModeProperty | Array<WritingModeProperty>;
|
|
2900
|
+
['-o-object-fit']?: ObjectFitProperty | Array<ObjectFitProperty>;
|
|
2901
|
+
['-o-object-position']?: ObjectPositionProperty<TLength> | Array<ObjectPositionProperty<TLength>>;
|
|
2902
|
+
['-o-tab-size']?: TabSizeProperty<TLength> | Array<TabSizeProperty<TLength>>;
|
|
2903
|
+
['-o-text-overflow']?: TextOverflowProperty | Array<TextOverflowProperty>;
|
|
2904
|
+
['-moz-orient']?: MozOrientProperty | Array<MozOrientProperty>;
|
|
2905
|
+
['-webkit-align-content']?: AlignContentProperty | Array<AlignContentProperty>;
|
|
2906
|
+
['-webkit-align-items']?: AlignItemsProperty | Array<AlignItemsProperty>;
|
|
2907
|
+
['-webkit-align-self']?: AlignSelfProperty | Array<AlignSelfProperty>;
|
|
2908
|
+
['-webkit-animation-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2909
|
+
['-webkit-animation-direction']?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
2910
|
+
['-webkit-animation-duration']?: GlobalsString | Array<GlobalsString>;
|
|
2911
|
+
['-webkit-animation-fill-mode']?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
2912
|
+
['-moz-animation-fill-mode']?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
2913
|
+
['-webkit-animation-name']?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
2914
|
+
['-webkit-animation-play-state']?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
2915
|
+
['-moz-border-end-color']?: BorderInlineEndColorProperty | Array<BorderInlineEndColorProperty>;
|
|
2916
|
+
['-webkit-appearance']?: WebkitAppearanceProperty | Array<WebkitAppearanceProperty>;
|
|
2917
|
+
['-webkit-backdrop-filter']?: BackdropFilterProperty | Array<BackdropFilterProperty>;
|
|
2918
|
+
['-webkit-backface-visibility']?: BackfaceVisibilityProperty | Array<BackfaceVisibilityProperty>;
|
|
2919
|
+
['-webkit-background-clip']?: BackgroundClipProperty | Array<BackgroundClipProperty>;
|
|
2920
|
+
['-webkit-background-origin']?: BackgroundOriginProperty | Array<BackgroundOriginProperty>;
|
|
2921
|
+
['-moz-border-end-style']?: BorderInlineEndStyleProperty | Array<BorderInlineEndStyleProperty>;
|
|
2922
|
+
['-moz-animation-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2923
|
+
['-moz-border-left-colors']?: MozBorderLeftColorsProperty | Array<MozBorderLeftColorsProperty>;
|
|
2924
|
+
['-moz-border-right-colors']?: MozBorderRightColorsProperty | Array<MozBorderRightColorsProperty>;
|
|
2925
|
+
['-moz-perspective']?: PerspectiveProperty<TLength> | Array<PerspectiveProperty<TLength>>;
|
|
2926
|
+
['-moz-animation-name']?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
2927
|
+
['-webkit-border-image-slice']?: BorderImageSliceProperty | Array<BorderImageSliceProperty>;
|
|
2928
|
+
['-moz-stack-sizing']?: MozStackSizingProperty | Array<MozStackSizingProperty>;
|
|
2929
|
+
['-moz-tab-size']?: TabSizeProperty<TLength> | Array<TabSizeProperty<TLength>>;
|
|
2930
|
+
['-webkit-box-decoration-break']?: BoxDecorationBreakProperty | Array<BoxDecorationBreakProperty>;
|
|
2931
|
+
['-moz-text-size-adjust']?: TextSizeAdjustProperty | Array<TextSizeAdjustProperty>;
|
|
2932
|
+
['-webkit-box-shadow']?: BoxShadowProperty | Array<BoxShadowProperty>;
|
|
2933
|
+
['-webkit-box-sizing']?: BoxSizingProperty | Array<BoxSizingProperty>;
|
|
2934
|
+
['-webkit-clip-path']?: ClipPathProperty | Array<ClipPathProperty>;
|
|
2935
|
+
['-webkit-color-adjust']?: ColorAdjustProperty | Array<ColorAdjustProperty>;
|
|
2936
|
+
['-webkit-column-count']?: ColumnCountProperty | Array<ColumnCountProperty>;
|
|
2937
|
+
['-webkit-column-fill']?: ColumnFillProperty | Array<ColumnFillProperty>;
|
|
2938
|
+
['-webkit-column-gap']?: ColumnGapProperty<TLength> | Array<ColumnGapProperty<TLength>>;
|
|
2939
|
+
['-webkit-column-rule-color']?: ColumnRuleColorProperty | Array<ColumnRuleColorProperty>;
|
|
2940
|
+
['-webkit-column-rule-style']?: ColumnRuleStyleProperty | Array<ColumnRuleStyleProperty>;
|
|
2941
|
+
['-moz-animation-play-state']?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
2942
|
+
['-webkit-column-span']?: ColumnSpanProperty | Array<ColumnSpanProperty>;
|
|
2943
|
+
['-webkit-column-width']?: ColumnWidthProperty<TLength> | Array<ColumnWidthProperty<TLength>>;
|
|
2944
|
+
['-webkit-filter']?: FilterProperty | Array<FilterProperty>;
|
|
2945
|
+
['-webkit-flex-basis']?: FlexBasisProperty<TLength> | Array<FlexBasisProperty<TLength>>;
|
|
2946
|
+
['-webkit-flex-direction']?: FlexDirectionProperty | Array<FlexDirectionProperty>;
|
|
2947
|
+
['-webkit-flex-grow']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2948
|
+
['-webkit-flex-shrink']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2949
|
+
['-webkit-flex-wrap']?: FlexWrapProperty | Array<FlexWrapProperty>;
|
|
2950
|
+
['-moz-transform-style']?: TransformStyleProperty | Array<TransformStyleProperty>;
|
|
2951
|
+
['-webkit-font-kerning']?: FontKerningProperty | Array<FontKerningProperty>;
|
|
2952
|
+
['-moz-transition-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2953
|
+
['-webkit-hyphens']?: HyphensProperty | Array<HyphensProperty>;
|
|
2954
|
+
['-webkit-justify-content']?: JustifyContentProperty | Array<JustifyContentProperty>;
|
|
2955
|
+
['-webkit-line-break']?: LineBreakProperty | Array<LineBreakProperty>;
|
|
2956
|
+
['-webkit-line-clamp']?: WebkitLineClampProperty | Array<WebkitLineClampProperty>;
|
|
2957
|
+
['-moz-transition-duration']?: GlobalsString | Array<GlobalsString>;
|
|
2958
|
+
['-moz-transition-property']?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
2959
|
+
['-webkit-mask-attachment']?: WebkitMaskAttachmentProperty | Array<WebkitMaskAttachmentProperty>;
|
|
2960
|
+
['-webkit-mask-clip']?: WebkitMaskClipProperty | Array<WebkitMaskClipProperty>;
|
|
2961
|
+
['-webkit-mask-composite']?: WebkitMaskCompositeProperty | Array<WebkitMaskCompositeProperty>;
|
|
2962
|
+
['-webkit-mask-image']?: WebkitMaskImageProperty | Array<WebkitMaskImageProperty>;
|
|
2963
|
+
['-webkit-mask-origin']?: WebkitMaskOriginProperty | Array<WebkitMaskOriginProperty>;
|
|
2964
|
+
['-moz-border-top-colors']?: MozBorderTopColorsProperty | Array<MozBorderTopColorsProperty>;
|
|
2965
|
+
['-moz-user-focus']?: MozUserFocusProperty | Array<MozUserFocusProperty>;
|
|
2966
|
+
['-moz-user-modify']?: MozUserModifyProperty | Array<MozUserModifyProperty>;
|
|
2967
|
+
['-webkit-mask-repeat']?: WebkitMaskRepeatProperty | Array<WebkitMaskRepeatProperty>;
|
|
2968
|
+
['-webkit-mask-repeat-x']?: WebkitMaskRepeatXProperty | Array<WebkitMaskRepeatXProperty>;
|
|
2969
|
+
['-webkit-mask-repeat-y']?: WebkitMaskRepeatYProperty | Array<WebkitMaskRepeatYProperty>;
|
|
2970
|
+
['-webkit-mask-size']?: WebkitMaskSizeProperty<TLength> | Array<WebkitMaskSizeProperty<TLength>>;
|
|
2971
|
+
['-moz-user-select']?: UserSelectProperty | Array<UserSelectProperty>;
|
|
2972
|
+
['-webkit-order']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
2973
|
+
['-moz-window-dragging']?: MozWindowDraggingProperty | Array<MozWindowDraggingProperty>;
|
|
2974
|
+
['-ms-accelerator']?: MsAcceleratorProperty | Array<MsAcceleratorProperty>;
|
|
2975
|
+
['-ms-align-self']?: AlignSelfProperty | Array<AlignSelfProperty>;
|
|
2976
|
+
['-webkit-perspective']?: PerspectiveProperty<TLength> | Array<PerspectiveProperty<TLength>>;
|
|
2977
|
+
['-ms-block-progression']?: MsBlockProgressionProperty | Array<MsBlockProgressionProperty>;
|
|
2978
|
+
['-webkit-scroll-snap-type']?: ScrollSnapTypeProperty | Array<ScrollSnapTypeProperty>;
|
|
2979
|
+
['-webkit-shape-margin']?: ShapeMarginProperty<TLength> | Array<ShapeMarginProperty<TLength>>;
|
|
2980
|
+
['-moz-box-sizing']?: BoxSizingProperty | Array<BoxSizingProperty>;
|
|
2981
|
+
['-webkit-text-combine']?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
2982
|
+
['-ms-content-zoom-limit-max']?: GlobalsString | Array<GlobalsString>;
|
|
2983
|
+
['-webkit-text-decoration-line']?: TextDecorationLineProperty | Array<TextDecorationLineProperty>;
|
|
2984
|
+
['-webkit-text-decoration-skip']?: TextDecorationSkipProperty | Array<TextDecorationSkipProperty>;
|
|
2985
|
+
['-ms-content-zoom-limit-min']?: GlobalsString | Array<GlobalsString>;
|
|
2986
|
+
['-webkit-text-emphasis-color']?: TextEmphasisColorProperty | Array<TextEmphasisColorProperty>;
|
|
2987
|
+
['-webkit-text-emphasis-position']?: GlobalsString | Array<GlobalsString>;
|
|
2988
|
+
['-webkit-text-emphasis-style']?: TextEmphasisStyleProperty | Array<TextEmphasisStyleProperty>;
|
|
2989
|
+
['-webkit-text-fill-color']?: WebkitTextFillColorProperty | Array<WebkitTextFillColorProperty>;
|
|
2990
|
+
['-webkit-text-orientation']?: TextOrientationProperty | Array<TextOrientationProperty>;
|
|
2991
|
+
['-webkit-text-size-adjust']?: TextSizeAdjustProperty | Array<TextSizeAdjustProperty>;
|
|
2992
|
+
['-ms-content-zoom-snap-points']?: GlobalsString | Array<GlobalsString>;
|
|
2993
|
+
['-moz-column-count']?: ColumnCountProperty | Array<ColumnCountProperty>;
|
|
2994
|
+
['-webkit-touch-callout']?: WebkitTouchCalloutProperty | Array<WebkitTouchCalloutProperty>;
|
|
2995
|
+
['-webkit-transform']?: TransformProperty | Array<TransformProperty>;
|
|
2996
|
+
['-ms-content-zooming']?: MsContentZoomingProperty | Array<MsContentZoomingProperty>;
|
|
2997
|
+
['-webkit-transform-style']?: TransformStyleProperty | Array<TransformStyleProperty>;
|
|
2998
|
+
['-webkit-transition-delay']?: GlobalsString | Array<GlobalsString>;
|
|
2999
|
+
['-webkit-transition-duration']?: GlobalsString | Array<GlobalsString>;
|
|
3000
|
+
['-webkit-transition-property']?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
3001
|
+
['-ms-filter']?: GlobalsString | Array<GlobalsString>;
|
|
3002
|
+
['-webkit-user-modify']?: WebkitUserModifyProperty | Array<WebkitUserModifyProperty>;
|
|
3003
|
+
['-webkit-user-select']?: UserSelectProperty | Array<UserSelectProperty>;
|
|
3004
|
+
['-webkit-writing-mode']?: WritingModeProperty | Array<WritingModeProperty>;
|
|
3005
|
+
}
|
|
3006
|
+
export interface VendorShorthandPropertiesHyphenFallback<TLength = string | 0> {
|
|
3007
|
+
['-webkit-animation']?: AnimationProperty | Array<AnimationProperty>;
|
|
3008
|
+
['-webkit-border-before']?: WebkitBorderBeforeProperty<TLength> | Array<WebkitBorderBeforeProperty<TLength>>;
|
|
3009
|
+
['-webkit-text-stroke']?: WebkitTextStrokeProperty<TLength> | Array<WebkitTextStrokeProperty<TLength>>;
|
|
3010
|
+
['-moz-columns']?: ColumnsProperty<TLength> | Array<ColumnsProperty<TLength>>;
|
|
3011
|
+
['-moz-transition']?: TransitionProperty | Array<TransitionProperty>;
|
|
3012
|
+
['-ms-content-zoom-limit']?: GlobalsString | Array<GlobalsString>;
|
|
3013
|
+
['-ms-content-zoom-snap']?: MsContentZoomSnapProperty | Array<MsContentZoomSnapProperty>;
|
|
3014
|
+
['-ms-flex']?: FlexProperty<TLength> | Array<FlexProperty<TLength>>;
|
|
3015
|
+
['-ms-scroll-limit']?: GlobalsString | Array<GlobalsString>;
|
|
3016
|
+
['-ms-scroll-snap-x']?: GlobalsString | Array<GlobalsString>;
|
|
3017
|
+
['-ms-scroll-snap-y']?: GlobalsString | Array<GlobalsString>;
|
|
3018
|
+
['-ms-transition']?: TransitionProperty | Array<TransitionProperty>;
|
|
3019
|
+
['-moz-border-image']?: BorderImageProperty | Array<BorderImageProperty>;
|
|
3020
|
+
['-moz-animation']?: AnimationProperty | Array<AnimationProperty>;
|
|
3021
|
+
['-webkit-border-image']?: BorderImageProperty | Array<BorderImageProperty>;
|
|
3022
|
+
['-webkit-border-radius']?: BorderRadiusProperty<TLength> | Array<BorderRadiusProperty<TLength>>;
|
|
3023
|
+
['-webkit-column-rule']?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
|
|
3024
|
+
['-webkit-columns']?: ColumnsProperty<TLength> | Array<ColumnsProperty<TLength>>;
|
|
3025
|
+
['-webkit-flex']?: FlexProperty<TLength> | Array<FlexProperty<TLength>>;
|
|
3026
|
+
['-webkit-flex-flow']?: FlexFlowProperty | Array<FlexFlowProperty>;
|
|
3027
|
+
['-webkit-mask']?: WebkitMaskProperty<TLength> | Array<WebkitMaskProperty<TLength>>;
|
|
3028
|
+
['-webkit-text-emphasis']?: TextEmphasisProperty | Array<TextEmphasisProperty>;
|
|
3029
|
+
['-moz-column-rule']?: ColumnRuleProperty<TLength> | Array<ColumnRuleProperty<TLength>>;
|
|
3030
|
+
['-webkit-transition']?: TransitionProperty | Array<TransitionProperty>;
|
|
3031
|
+
}
|
|
3032
|
+
export type VendorPropertiesHyphenFallback<TLength = string | 0> = VendorLonghandPropertiesHyphenFallback<TLength> & VendorShorthandPropertiesHyphenFallback<TLength>;
|
|
3033
|
+
export interface ObsoletePropertiesHyphenFallback<TLength = string | 0> {
|
|
3034
|
+
['-moz-border-radius-bottomleft']?: BorderBottomLeftRadiusProperty<TLength> | Array<BorderBottomLeftRadiusProperty<TLength>>;
|
|
3035
|
+
['scroll-snap-coordinate']?: ScrollSnapCoordinateProperty<TLength> | Array<ScrollSnapCoordinateProperty<TLength>>;
|
|
3036
|
+
['scroll-snap-destination']?: ScrollSnapDestinationProperty<TLength> | Array<ScrollSnapDestinationProperty<TLength>>;
|
|
3037
|
+
['-moz-background-inline-policy']?: BoxDecorationBreakProperty | Array<BoxDecorationBreakProperty>;
|
|
3038
|
+
['-moz-background-size']?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
3039
|
+
['offset-inline-start']?: InsetInlineStartProperty<TLength> | Array<InsetInlineStartProperty<TLength>>;
|
|
3040
|
+
['-moz-border-radius-bottomright']?: BorderBottomRightRadiusProperty<TLength> | Array<BorderBottomRightRadiusProperty<TLength>>;
|
|
3041
|
+
['-moz-border-radius-topleft']?: BorderTopLeftRadiusProperty<TLength> | Array<BorderTopLeftRadiusProperty<TLength>>;
|
|
3042
|
+
['-moz-border-radius-topright']?: BorderTopRightRadiusProperty<TLength> | Array<BorderTopRightRadiusProperty<TLength>>;
|
|
3043
|
+
['-moz-outline-radius']?: MozOutlineRadiusProperty<TLength> | Array<MozOutlineRadiusProperty<TLength>>;
|
|
3044
|
+
['-o-animation-iteration-count']?: AnimationIterationCountProperty | Array<AnimationIterationCountProperty>;
|
|
3045
|
+
['offset-block-start']?: InsetBlockStartProperty<TLength> | Array<InsetBlockStartProperty<TLength>>;
|
|
3046
|
+
['-o-animation-timing-function']?: AnimationTimingFunctionProperty | Array<AnimationTimingFunctionProperty>;
|
|
3047
|
+
['font-variant-alternates']?: FontVariantAlternatesProperty | Array<FontVariantAlternatesProperty>;
|
|
3048
|
+
['-moz-box-align']?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
3049
|
+
['-o-transition-timing-function']?: TransitionTimingFunctionProperty | Array<TransitionTimingFunctionProperty>;
|
|
3050
|
+
['box-flex']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3051
|
+
['offset-inline']?: InsetInlineProperty<TLength> | Array<InsetInlineProperty<TLength>>;
|
|
3052
|
+
['offset-inline-end']?: InsetInlineEndProperty<TLength> | Array<InsetInlineEndProperty<TLength>>;
|
|
3053
|
+
['box-flex-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3054
|
+
['box-lines']?: BoxLinesProperty | Array<BoxLinesProperty>;
|
|
3055
|
+
['box-ordinal-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3056
|
+
['scroll-snap-points-x']?: ScrollSnapPointsXProperty | Array<ScrollSnapPointsXProperty>;
|
|
3057
|
+
['scroll-snap-points-y']?: ScrollSnapPointsYProperty | Array<ScrollSnapPointsYProperty>;
|
|
3058
|
+
['scroll-snap-type-x']?: ScrollSnapTypeXProperty | Array<ScrollSnapTypeXProperty>;
|
|
3059
|
+
['scroll-snap-type-y']?: ScrollSnapTypeYProperty | Array<ScrollSnapTypeYProperty>;
|
|
3060
|
+
['text-combine-horizontal']?: TextCombineUprightProperty | Array<TextCombineUprightProperty>;
|
|
3061
|
+
['-khtml-box-align']?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
3062
|
+
['-khtml-box-direction']?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
3063
|
+
['-khtml-box-flex']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3064
|
+
['-khtml-box-flex-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3065
|
+
['-khtml-box-lines']?: BoxLinesProperty | Array<BoxLinesProperty>;
|
|
3066
|
+
['-khtml-box-ordinal-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3067
|
+
['-khtml-box-orient']?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
3068
|
+
['-khtml-box-pack']?: BoxPackProperty | Array<BoxPackProperty>;
|
|
3069
|
+
['-khtml-line-break']?: LineBreakProperty | Array<LineBreakProperty>;
|
|
3070
|
+
['-khtml-opacity']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3071
|
+
['-khtml-user-select']?: UserSelectProperty | Array<UserSelectProperty>;
|
|
3072
|
+
['-moz-background-clip']?: BackgroundClipProperty | Array<BackgroundClipProperty>;
|
|
3073
|
+
['box-orient']?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
3074
|
+
['-moz-background-origin']?: BackgroundOriginProperty | Array<BackgroundOriginProperty>;
|
|
3075
|
+
['box-pack']?: BoxPackProperty | Array<BoxPackProperty>;
|
|
3076
|
+
['-moz-binding']?: MozBindingProperty | Array<MozBindingProperty>;
|
|
3077
|
+
['-moz-border-radius']?: BorderRadiusProperty<TLength> | Array<BorderRadiusProperty<TLength>>;
|
|
3078
|
+
clip?: ClipProperty | Array<ClipProperty>;
|
|
3079
|
+
['box-align']?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
3080
|
+
['grid-column-gap']?: GridColumnGapProperty<TLength> | Array<GridColumnGapProperty<TLength>>;
|
|
3081
|
+
['grid-gap']?: GridGapProperty<TLength> | Array<GridGapProperty<TLength>>;
|
|
3082
|
+
['box-direction']?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
3083
|
+
['-moz-box-direction']?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
3084
|
+
['-moz-box-flex']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3085
|
+
['-moz-box-ordinal-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3086
|
+
['-moz-box-orient']?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
3087
|
+
['-moz-box-pack']?: BoxPackProperty | Array<BoxPackProperty>;
|
|
3088
|
+
['-moz-box-shadow']?: BoxShadowProperty | Array<BoxShadowProperty>;
|
|
3089
|
+
['-moz-opacity']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3090
|
+
['-moz-outline']?: OutlineProperty<TLength> | Array<OutlineProperty<TLength>>;
|
|
3091
|
+
['-moz-outline-color']?: OutlineColorProperty | Array<OutlineColorProperty>;
|
|
3092
|
+
['grid-row-gap']?: GridRowGapProperty<TLength> | Array<GridRowGapProperty<TLength>>;
|
|
3093
|
+
['-moz-outline-style']?: OutlineStyleProperty | Array<OutlineStyleProperty>;
|
|
3094
|
+
['-moz-outline-width']?: OutlineWidthProperty<TLength> | Array<OutlineWidthProperty<TLength>>;
|
|
3095
|
+
['-moz-text-align-last']?: TextAlignLastProperty | Array<TextAlignLastProperty>;
|
|
3096
|
+
['-moz-text-blink']?: MozTextBlinkProperty | Array<MozTextBlinkProperty>;
|
|
3097
|
+
['-moz-text-decoration-color']?: TextDecorationColorProperty | Array<TextDecorationColorProperty>;
|
|
3098
|
+
['-moz-text-decoration-line']?: TextDecorationLineProperty | Array<TextDecorationLineProperty>;
|
|
3099
|
+
['-moz-text-decoration-style']?: TextDecorationStyleProperty | Array<TextDecorationStyleProperty>;
|
|
3100
|
+
['-moz-user-input']?: MozUserInputProperty | Array<MozUserInputProperty>;
|
|
3101
|
+
['-moz-window-shadow']?: MozWindowShadowProperty | Array<MozWindowShadowProperty>;
|
|
3102
|
+
['-ms-ime-mode']?: ImeModeProperty | Array<ImeModeProperty>;
|
|
3103
|
+
['-o-animation']?: AnimationProperty | Array<AnimationProperty>;
|
|
3104
|
+
['-o-animation-delay']?: GlobalsString | Array<GlobalsString>;
|
|
3105
|
+
['-o-animation-direction']?: AnimationDirectionProperty | Array<AnimationDirectionProperty>;
|
|
3106
|
+
['-o-animation-duration']?: GlobalsString | Array<GlobalsString>;
|
|
3107
|
+
['-o-animation-fill-mode']?: AnimationFillModeProperty | Array<AnimationFillModeProperty>;
|
|
3108
|
+
['ime-mode']?: ImeModeProperty | Array<ImeModeProperty>;
|
|
3109
|
+
['-o-animation-name']?: AnimationNameProperty | Array<AnimationNameProperty>;
|
|
3110
|
+
['-o-animation-play-state']?: AnimationPlayStateProperty | Array<AnimationPlayStateProperty>;
|
|
3111
|
+
['offset-block']?: InsetBlockProperty<TLength> | Array<InsetBlockProperty<TLength>>;
|
|
3112
|
+
['-o-background-size']?: BackgroundSizeProperty<TLength> | Array<BackgroundSizeProperty<TLength>>;
|
|
3113
|
+
['-o-border-image']?: BorderImageProperty | Array<BorderImageProperty>;
|
|
3114
|
+
['-o-transform']?: TransformProperty | Array<TransformProperty>;
|
|
3115
|
+
['-o-transition']?: TransitionProperty | Array<TransitionProperty>;
|
|
3116
|
+
['-o-transition-delay']?: GlobalsString | Array<GlobalsString>;
|
|
3117
|
+
['-o-transition-duration']?: GlobalsString | Array<GlobalsString>;
|
|
3118
|
+
['-o-transition-property']?: TransitionPropertyProperty | Array<TransitionPropertyProperty>;
|
|
3119
|
+
['offset-block-end']?: InsetBlockEndProperty<TLength> | Array<InsetBlockEndProperty<TLength>>;
|
|
3120
|
+
['-webkit-box-align']?: BoxAlignProperty | Array<BoxAlignProperty>;
|
|
3121
|
+
['-webkit-box-direction']?: BoxDirectionProperty | Array<BoxDirectionProperty>;
|
|
3122
|
+
['-webkit-box-flex']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3123
|
+
['-webkit-box-flex-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3124
|
+
['-webkit-box-lines']?: BoxLinesProperty | Array<BoxLinesProperty>;
|
|
3125
|
+
['-webkit-box-ordinal-group']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3126
|
+
['-webkit-box-orient']?: BoxOrientProperty | Array<BoxOrientProperty>;
|
|
3127
|
+
['-webkit-box-pack']?: BoxPackProperty | Array<BoxPackProperty>;
|
|
3128
|
+
['-webkit-scroll-snap-points-x']?: ScrollSnapPointsXProperty | Array<ScrollSnapPointsXProperty>;
|
|
3129
|
+
['-webkit-scroll-snap-points-y']?: ScrollSnapPointsYProperty | Array<ScrollSnapPointsYProperty>;
|
|
3130
|
+
}
|
|
3131
|
+
export interface SvgPropertiesHyphenFallback<TLength = string | 0> {
|
|
3132
|
+
['line-height']?: LineHeightProperty<TLength> | Array<LineHeightProperty<TLength>>;
|
|
3133
|
+
['glyph-orientation-vertical']?: GlyphOrientationVerticalProperty | Array<GlyphOrientationVerticalProperty>;
|
|
3134
|
+
['stroke-dashoffset']?: StrokeDashoffsetProperty<TLength> | Array<StrokeDashoffsetProperty<TLength>>;
|
|
3135
|
+
['clip-path']?: ClipPathProperty | Array<ClipPathProperty>;
|
|
3136
|
+
['clip-rule']?: ClipRuleProperty | Array<ClipRuleProperty>;
|
|
3137
|
+
color?: ColorProperty | Array<ColorProperty>;
|
|
3138
|
+
['color-interpolation']?: ColorInterpolationProperty | Array<ColorInterpolationProperty>;
|
|
3139
|
+
['color-rendering']?: ColorRenderingProperty | Array<ColorRenderingProperty>;
|
|
3140
|
+
cursor?: CursorProperty | Array<CursorProperty>;
|
|
3141
|
+
direction?: DirectionProperty | Array<DirectionProperty>;
|
|
3142
|
+
display?: DisplayProperty | Array<DisplayProperty>;
|
|
3143
|
+
['dominant-baseline']?: DominantBaselineProperty | Array<DominantBaselineProperty>;
|
|
3144
|
+
fill?: FillProperty | Array<FillProperty>;
|
|
3145
|
+
['fill-opacity']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3146
|
+
['fill-rule']?: FillRuleProperty | Array<FillRuleProperty>;
|
|
3147
|
+
filter?: FilterProperty | Array<FilterProperty>;
|
|
3148
|
+
['flood-color']?: FloodColorProperty | Array<FloodColorProperty>;
|
|
3149
|
+
['flood-opacity']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3150
|
+
font?: FontProperty | Array<FontProperty>;
|
|
3151
|
+
['font-family']?: FontFamilyProperty | Array<FontFamilyProperty>;
|
|
3152
|
+
['font-size']?: FontSizeProperty<TLength> | Array<FontSizeProperty<TLength>>;
|
|
3153
|
+
['font-size-adjust']?: FontSizeAdjustProperty | Array<FontSizeAdjustProperty>;
|
|
3154
|
+
['font-stretch']?: FontStretchProperty | Array<FontStretchProperty>;
|
|
3155
|
+
['font-style']?: FontStyleProperty | Array<FontStyleProperty>;
|
|
3156
|
+
['font-variant']?: FontVariantProperty | Array<FontVariantProperty>;
|
|
3157
|
+
['font-weight']?: FontWeightProperty | Array<FontWeightProperty>;
|
|
3158
|
+
['alignment-baseline']?: AlignmentBaselineProperty | Array<AlignmentBaselineProperty>;
|
|
3159
|
+
['image-rendering']?: ImageRenderingProperty | Array<ImageRenderingProperty>;
|
|
3160
|
+
['letter-spacing']?: LetterSpacingProperty<TLength> | Array<LetterSpacingProperty<TLength>>;
|
|
3161
|
+
['lighting-color']?: LightingColorProperty | Array<LightingColorProperty>;
|
|
3162
|
+
['baseline-shift']?: BaselineShiftProperty<TLength> | Array<BaselineShiftProperty<TLength>>;
|
|
3163
|
+
marker?: MarkerProperty | Array<MarkerProperty>;
|
|
3164
|
+
['marker-end']?: MarkerEndProperty | Array<MarkerEndProperty>;
|
|
3165
|
+
['marker-mid']?: MarkerMidProperty | Array<MarkerMidProperty>;
|
|
3166
|
+
['marker-start']?: MarkerStartProperty | Array<MarkerStartProperty>;
|
|
3167
|
+
mask?: MaskProperty<TLength> | Array<MaskProperty<TLength>>;
|
|
3168
|
+
opacity?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3169
|
+
overflow?: OverflowProperty | Array<OverflowProperty>;
|
|
3170
|
+
['paint-order']?: PaintOrderProperty | Array<PaintOrderProperty>;
|
|
3171
|
+
['pointer-events']?: PointerEventsProperty | Array<PointerEventsProperty>;
|
|
3172
|
+
['shape-rendering']?: ShapeRenderingProperty | Array<ShapeRenderingProperty>;
|
|
3173
|
+
['stop-color']?: StopColorProperty | Array<StopColorProperty>;
|
|
3174
|
+
['stop-opacity']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3175
|
+
stroke?: StrokeProperty | Array<StrokeProperty>;
|
|
3176
|
+
['stroke-dasharray']?: StrokeDasharrayProperty<TLength> | Array<StrokeDasharrayProperty<TLength>>;
|
|
3177
|
+
clip?: ClipProperty | Array<ClipProperty>;
|
|
3178
|
+
['stroke-linecap']?: StrokeLinecapProperty | Array<StrokeLinecapProperty>;
|
|
3179
|
+
['stroke-linejoin']?: StrokeLinejoinProperty | Array<StrokeLinejoinProperty>;
|
|
3180
|
+
['stroke-miterlimit']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3181
|
+
['stroke-opacity']?: GlobalsNumber | Array<GlobalsNumber>;
|
|
3182
|
+
['stroke-width']?: StrokeWidthProperty<TLength> | Array<StrokeWidthProperty<TLength>>;
|
|
3183
|
+
['text-anchor']?: TextAnchorProperty | Array<TextAnchorProperty>;
|
|
3184
|
+
['text-decoration']?: TextDecorationProperty | Array<TextDecorationProperty>;
|
|
3185
|
+
['text-rendering']?: TextRenderingProperty | Array<TextRenderingProperty>;
|
|
3186
|
+
['unicode-bidi']?: UnicodeBidiProperty | Array<UnicodeBidiProperty>;
|
|
3187
|
+
['vector-effect']?: VectorEffectProperty | Array<VectorEffectProperty>;
|
|
3188
|
+
visibility?: VisibilityProperty | Array<VisibilityProperty>;
|
|
3189
|
+
['white-space']?: WhiteSpaceProperty | Array<WhiteSpaceProperty>;
|
|
3190
|
+
['word-spacing']?: WordSpacingProperty<TLength> | Array<WordSpacingProperty<TLength>>;
|
|
3191
|
+
['writing-mode']?: WritingModeProperty | Array<WritingModeProperty>;
|
|
3192
|
+
}
|
|
3193
|
+
export type PropertiesHyphenFallback<TLength = string | 0> = StandardPropertiesHyphenFallback<TLength> & VendorPropertiesHyphenFallback<TLength> & ObsoletePropertiesHyphenFallback<TLength> & SvgPropertiesHyphenFallback<TLength>;
|
|
3194
|
+
export interface CounterStyle {
|
|
3195
|
+
additiveSymbols?: string;
|
|
3196
|
+
fallback?: string;
|
|
3197
|
+
negative?: string;
|
|
3198
|
+
pad?: string;
|
|
3199
|
+
prefix?: string;
|
|
3200
|
+
range?: CounterStyleRangeProperty;
|
|
3201
|
+
speakAs?: CounterStyleSpeakAsProperty;
|
|
3202
|
+
suffix?: string;
|
|
3203
|
+
symbols?: string;
|
|
3204
|
+
system?: CounterStyleSystemProperty;
|
|
3205
|
+
}
|
|
3206
|
+
export interface CounterStyleHyphen {
|
|
3207
|
+
['additive-symbols']?: string;
|
|
3208
|
+
fallback?: string;
|
|
3209
|
+
negative?: string;
|
|
3210
|
+
pad?: string;
|
|
3211
|
+
prefix?: string;
|
|
3212
|
+
range?: CounterStyleRangeProperty;
|
|
3213
|
+
['speak-as']?: CounterStyleSpeakAsProperty;
|
|
3214
|
+
suffix?: string;
|
|
3215
|
+
symbols?: string;
|
|
3216
|
+
system?: CounterStyleSystemProperty;
|
|
3217
|
+
}
|
|
3218
|
+
export interface CounterStyleFallback {
|
|
3219
|
+
additiveSymbols?: string | Array<string>;
|
|
3220
|
+
fallback?: string | Array<string>;
|
|
3221
|
+
negative?: string | Array<string>;
|
|
3222
|
+
pad?: string | Array<string>;
|
|
3223
|
+
prefix?: string | Array<string>;
|
|
3224
|
+
range?: CounterStyleRangeProperty | Array<CounterStyleRangeProperty>;
|
|
3225
|
+
speakAs?: CounterStyleSpeakAsProperty | Array<CounterStyleSpeakAsProperty>;
|
|
3226
|
+
suffix?: string | Array<string>;
|
|
3227
|
+
symbols?: string | Array<string>;
|
|
3228
|
+
system?: CounterStyleSystemProperty | Array<CounterStyleSystemProperty>;
|
|
3229
|
+
}
|
|
3230
|
+
export interface CounterStyleHyphenFallback {
|
|
3231
|
+
['additive-symbols']?: string | Array<string>;
|
|
3232
|
+
fallback?: string | Array<string>;
|
|
3233
|
+
negative?: string | Array<string>;
|
|
3234
|
+
pad?: string | Array<string>;
|
|
3235
|
+
prefix?: string | Array<string>;
|
|
3236
|
+
range?: CounterStyleRangeProperty | Array<CounterStyleRangeProperty>;
|
|
3237
|
+
['speak-as']?: CounterStyleSpeakAsProperty | Array<CounterStyleSpeakAsProperty>;
|
|
3238
|
+
suffix?: string | Array<string>;
|
|
3239
|
+
symbols?: string | Array<string>;
|
|
3240
|
+
system?: CounterStyleSystemProperty | Array<CounterStyleSystemProperty>;
|
|
3241
|
+
}
|
|
3242
|
+
export interface FontFace {
|
|
3243
|
+
fontStyle?: FontFaceFontStyleProperty;
|
|
3244
|
+
MozFontFeatureSettings?: FontFaceFontFeatureSettingsProperty;
|
|
3245
|
+
fontFamily?: string;
|
|
3246
|
+
fontFeatureSettings?: FontFaceFontFeatureSettingsProperty;
|
|
3247
|
+
fontStretch?: FontFaceFontStretchProperty;
|
|
3248
|
+
fontDisplay?: FontFaceFontDisplayProperty;
|
|
3249
|
+
fontVariant?: FontFaceFontVariantProperty;
|
|
3250
|
+
fontVariationSettings?: FontFaceFontVariationSettingsProperty;
|
|
3251
|
+
fontWeight?: FontFaceFontWeightProperty;
|
|
3252
|
+
src?: string;
|
|
3253
|
+
unicodeRange?: string;
|
|
3254
|
+
}
|
|
3255
|
+
export interface FontFaceHyphen {
|
|
3256
|
+
['font-style']?: FontFaceFontStyleProperty;
|
|
3257
|
+
['-moz-font-feature-settings']?: FontFaceFontFeatureSettingsProperty;
|
|
3258
|
+
['font-family']?: string;
|
|
3259
|
+
['font-feature-settings']?: FontFaceFontFeatureSettingsProperty;
|
|
3260
|
+
['font-stretch']?: FontFaceFontStretchProperty;
|
|
3261
|
+
['font-display']?: FontFaceFontDisplayProperty;
|
|
3262
|
+
['font-variant']?: FontFaceFontVariantProperty;
|
|
3263
|
+
['font-variation-settings']?: FontFaceFontVariationSettingsProperty;
|
|
3264
|
+
['font-weight']?: FontFaceFontWeightProperty;
|
|
3265
|
+
src?: string;
|
|
3266
|
+
['unicode-range']?: string;
|
|
3267
|
+
}
|
|
3268
|
+
export interface FontFaceFallback {
|
|
3269
|
+
MozFontFeatureSettings?: FontFaceFontFeatureSettingsProperty | Array<FontFaceFontFeatureSettingsProperty>;
|
|
3270
|
+
fontFeatureSettings?: FontFaceFontFeatureSettingsProperty | Array<FontFaceFontFeatureSettingsProperty>;
|
|
3271
|
+
fontVariationSettings?: FontFaceFontVariationSettingsProperty | Array<FontFaceFontVariationSettingsProperty>;
|
|
3272
|
+
unicodeRange?: string | Array<string>;
|
|
3273
|
+
fontStretch?: FontFaceFontStretchProperty | Array<FontFaceFontStretchProperty>;
|
|
3274
|
+
fontDisplay?: FontFaceFontDisplayProperty | Array<FontFaceFontDisplayProperty>;
|
|
3275
|
+
fontVariant?: FontFaceFontVariantProperty | Array<FontFaceFontVariantProperty>;
|
|
3276
|
+
fontFamily?: string | Array<string>;
|
|
3277
|
+
fontWeight?: FontFaceFontWeightProperty | Array<FontFaceFontWeightProperty>;
|
|
3278
|
+
src?: string | Array<string>;
|
|
3279
|
+
fontStyle?: FontFaceFontStyleProperty | Array<FontFaceFontStyleProperty>;
|
|
3280
|
+
}
|
|
3281
|
+
export interface FontFaceHyphenFallback {
|
|
3282
|
+
['-moz-font-feature-settings']?: FontFaceFontFeatureSettingsProperty | Array<FontFaceFontFeatureSettingsProperty>;
|
|
3283
|
+
['font-feature-settings']?: FontFaceFontFeatureSettingsProperty | Array<FontFaceFontFeatureSettingsProperty>;
|
|
3284
|
+
['font-variation-settings']?: FontFaceFontVariationSettingsProperty | Array<FontFaceFontVariationSettingsProperty>;
|
|
3285
|
+
['unicode-range']?: string | Array<string>;
|
|
3286
|
+
['font-stretch']?: FontFaceFontStretchProperty | Array<FontFaceFontStretchProperty>;
|
|
3287
|
+
['font-display']?: FontFaceFontDisplayProperty | Array<FontFaceFontDisplayProperty>;
|
|
3288
|
+
['font-variant']?: FontFaceFontVariantProperty | Array<FontFaceFontVariantProperty>;
|
|
3289
|
+
['font-family']?: string | Array<string>;
|
|
3290
|
+
['font-weight']?: FontFaceFontWeightProperty | Array<FontFaceFontWeightProperty>;
|
|
3291
|
+
src?: string | Array<string>;
|
|
3292
|
+
['font-style']?: FontFaceFontStyleProperty | Array<FontFaceFontStyleProperty>;
|
|
3293
|
+
}
|
|
3294
|
+
export interface Page<TLength = string | 0> {
|
|
3295
|
+
bleed?: PageBleedProperty<TLength>;
|
|
3296
|
+
marks?: PageMarksProperty;
|
|
3297
|
+
}
|
|
3298
|
+
export interface PageHyphen<TLength = string | 0> {
|
|
3299
|
+
bleed?: PageBleedProperty<TLength>;
|
|
3300
|
+
marks?: PageMarksProperty;
|
|
3301
|
+
}
|
|
3302
|
+
export interface PageFallback<TLength = string | 0> {
|
|
3303
|
+
bleed?: PageBleedProperty<TLength> | Array<PageBleedProperty<TLength>>;
|
|
3304
|
+
marks?: PageMarksProperty | Array<PageMarksProperty>;
|
|
3305
|
+
}
|
|
3306
|
+
export interface PageHyphenFallback<TLength = string | 0> {
|
|
3307
|
+
bleed?: PageBleedProperty<TLength> | Array<PageBleedProperty<TLength>>;
|
|
3308
|
+
marks?: PageMarksProperty | Array<PageMarksProperty>;
|
|
3309
|
+
}
|
|
3310
|
+
export interface Viewport<TLength = string | 0> {
|
|
3311
|
+
OOrientation?: ViewportOrientationProperty;
|
|
3312
|
+
msHeight?: ViewportHeightProperty<TLength>;
|
|
3313
|
+
msMaxWidth?: ViewportMaxWidthProperty<TLength>;
|
|
3314
|
+
msMaxZoom?: ViewportMaxZoomProperty;
|
|
3315
|
+
msMinHeight?: ViewportMinHeightProperty<TLength>;
|
|
3316
|
+
msMinWidth?: ViewportMinWidthProperty<TLength>;
|
|
3317
|
+
msMinZoom?: ViewportMinZoomProperty;
|
|
3318
|
+
msOrientation?: ViewportOrientationProperty;
|
|
3319
|
+
msUserZoom?: ViewportUserZoomProperty;
|
|
3320
|
+
msWidth?: ViewportWidthProperty<TLength>;
|
|
3321
|
+
msZoom?: ViewportZoomProperty;
|
|
3322
|
+
msMaxHeight?: ViewportMaxHeightProperty<TLength>;
|
|
3323
|
+
height?: ViewportHeightProperty<TLength>;
|
|
3324
|
+
maxHeight?: ViewportMaxHeightProperty<TLength>;
|
|
3325
|
+
maxWidth?: ViewportMaxWidthProperty<TLength>;
|
|
3326
|
+
maxZoom?: ViewportMaxZoomProperty;
|
|
3327
|
+
minHeight?: ViewportMinHeightProperty<TLength>;
|
|
3328
|
+
minWidth?: ViewportMinWidthProperty<TLength>;
|
|
3329
|
+
minZoom?: ViewportMinZoomProperty;
|
|
3330
|
+
orientation?: ViewportOrientationProperty;
|
|
3331
|
+
userZoom?: ViewportUserZoomProperty;
|
|
3332
|
+
width?: ViewportWidthProperty<TLength>;
|
|
3333
|
+
zoom?: ViewportZoomProperty;
|
|
3334
|
+
}
|
|
3335
|
+
export interface ViewportHyphen<TLength = string | 0> {
|
|
3336
|
+
['-o-orientation']?: ViewportOrientationProperty;
|
|
3337
|
+
['-ms-height']?: ViewportHeightProperty<TLength>;
|
|
3338
|
+
['-ms-max-width']?: ViewportMaxWidthProperty<TLength>;
|
|
3339
|
+
['-ms-max-zoom']?: ViewportMaxZoomProperty;
|
|
3340
|
+
['-ms-min-height']?: ViewportMinHeightProperty<TLength>;
|
|
3341
|
+
['-ms-min-width']?: ViewportMinWidthProperty<TLength>;
|
|
3342
|
+
['-ms-min-zoom']?: ViewportMinZoomProperty;
|
|
3343
|
+
['-ms-orientation']?: ViewportOrientationProperty;
|
|
3344
|
+
['-ms-user-zoom']?: ViewportUserZoomProperty;
|
|
3345
|
+
['-ms-width']?: ViewportWidthProperty<TLength>;
|
|
3346
|
+
['-ms-zoom']?: ViewportZoomProperty;
|
|
3347
|
+
['-ms-max-height']?: ViewportMaxHeightProperty<TLength>;
|
|
3348
|
+
height?: ViewportHeightProperty<TLength>;
|
|
3349
|
+
['max-height']?: ViewportMaxHeightProperty<TLength>;
|
|
3350
|
+
['max-width']?: ViewportMaxWidthProperty<TLength>;
|
|
3351
|
+
['max-zoom']?: ViewportMaxZoomProperty;
|
|
3352
|
+
['min-height']?: ViewportMinHeightProperty<TLength>;
|
|
3353
|
+
['min-width']?: ViewportMinWidthProperty<TLength>;
|
|
3354
|
+
['min-zoom']?: ViewportMinZoomProperty;
|
|
3355
|
+
orientation?: ViewportOrientationProperty;
|
|
3356
|
+
['user-zoom']?: ViewportUserZoomProperty;
|
|
3357
|
+
width?: ViewportWidthProperty<TLength>;
|
|
3358
|
+
zoom?: ViewportZoomProperty;
|
|
3359
|
+
}
|
|
3360
|
+
export interface ViewportFallback<TLength = string | 0> {
|
|
3361
|
+
OOrientation?: ViewportOrientationProperty | Array<ViewportOrientationProperty>;
|
|
3362
|
+
msHeight?: ViewportHeightProperty<TLength> | Array<ViewportHeightProperty<TLength>>;
|
|
3363
|
+
msMaxWidth?: ViewportMaxWidthProperty<TLength> | Array<ViewportMaxWidthProperty<TLength>>;
|
|
3364
|
+
msMaxZoom?: ViewportMaxZoomProperty | Array<ViewportMaxZoomProperty>;
|
|
3365
|
+
msMinHeight?: ViewportMinHeightProperty<TLength> | Array<ViewportMinHeightProperty<TLength>>;
|
|
3366
|
+
msMinWidth?: ViewportMinWidthProperty<TLength> | Array<ViewportMinWidthProperty<TLength>>;
|
|
3367
|
+
msMinZoom?: ViewportMinZoomProperty | Array<ViewportMinZoomProperty>;
|
|
3368
|
+
msOrientation?: ViewportOrientationProperty | Array<ViewportOrientationProperty>;
|
|
3369
|
+
msUserZoom?: ViewportUserZoomProperty | Array<ViewportUserZoomProperty>;
|
|
3370
|
+
msWidth?: ViewportWidthProperty<TLength> | Array<ViewportWidthProperty<TLength>>;
|
|
3371
|
+
msZoom?: ViewportZoomProperty | Array<ViewportZoomProperty>;
|
|
3372
|
+
msMaxHeight?: ViewportMaxHeightProperty<TLength> | Array<ViewportMaxHeightProperty<TLength>>;
|
|
3373
|
+
height?: ViewportHeightProperty<TLength> | Array<ViewportHeightProperty<TLength>>;
|
|
3374
|
+
maxHeight?: ViewportMaxHeightProperty<TLength> | Array<ViewportMaxHeightProperty<TLength>>;
|
|
3375
|
+
maxWidth?: ViewportMaxWidthProperty<TLength> | Array<ViewportMaxWidthProperty<TLength>>;
|
|
3376
|
+
maxZoom?: ViewportMaxZoomProperty | Array<ViewportMaxZoomProperty>;
|
|
3377
|
+
minHeight?: ViewportMinHeightProperty<TLength> | Array<ViewportMinHeightProperty<TLength>>;
|
|
3378
|
+
minWidth?: ViewportMinWidthProperty<TLength> | Array<ViewportMinWidthProperty<TLength>>;
|
|
3379
|
+
minZoom?: ViewportMinZoomProperty | Array<ViewportMinZoomProperty>;
|
|
3380
|
+
orientation?: ViewportOrientationProperty | Array<ViewportOrientationProperty>;
|
|
3381
|
+
userZoom?: ViewportUserZoomProperty | Array<ViewportUserZoomProperty>;
|
|
3382
|
+
width?: ViewportWidthProperty<TLength> | Array<ViewportWidthProperty<TLength>>;
|
|
3383
|
+
zoom?: ViewportZoomProperty | Array<ViewportZoomProperty>;
|
|
3384
|
+
}
|
|
3385
|
+
export interface ViewportHyphenFallback<TLength = string | 0> {
|
|
3386
|
+
['-o-orientation']?: ViewportOrientationProperty | Array<ViewportOrientationProperty>;
|
|
3387
|
+
['-ms-min-height']?: ViewportMinHeightProperty<TLength> | Array<ViewportMinHeightProperty<TLength>>;
|
|
3388
|
+
['-ms-max-height']?: ViewportMaxHeightProperty<TLength> | Array<ViewportMaxHeightProperty<TLength>>;
|
|
3389
|
+
['-ms-max-zoom']?: ViewportMaxZoomProperty | Array<ViewportMaxZoomProperty>;
|
|
3390
|
+
['-ms-height']?: ViewportHeightProperty<TLength> | Array<ViewportHeightProperty<TLength>>;
|
|
3391
|
+
['-ms-min-width']?: ViewportMinWidthProperty<TLength> | Array<ViewportMinWidthProperty<TLength>>;
|
|
3392
|
+
['-ms-min-zoom']?: ViewportMinZoomProperty | Array<ViewportMinZoomProperty>;
|
|
3393
|
+
['-ms-orientation']?: ViewportOrientationProperty | Array<ViewportOrientationProperty>;
|
|
3394
|
+
['-ms-user-zoom']?: ViewportUserZoomProperty | Array<ViewportUserZoomProperty>;
|
|
3395
|
+
['-ms-width']?: ViewportWidthProperty<TLength> | Array<ViewportWidthProperty<TLength>>;
|
|
3396
|
+
['-ms-zoom']?: ViewportZoomProperty | Array<ViewportZoomProperty>;
|
|
3397
|
+
['-ms-max-width']?: ViewportMaxWidthProperty<TLength> | Array<ViewportMaxWidthProperty<TLength>>;
|
|
3398
|
+
height?: ViewportHeightProperty<TLength> | Array<ViewportHeightProperty<TLength>>;
|
|
3399
|
+
['max-height']?: ViewportMaxHeightProperty<TLength> | Array<ViewportMaxHeightProperty<TLength>>;
|
|
3400
|
+
['max-width']?: ViewportMaxWidthProperty<TLength> | Array<ViewportMaxWidthProperty<TLength>>;
|
|
3401
|
+
['max-zoom']?: ViewportMaxZoomProperty | Array<ViewportMaxZoomProperty>;
|
|
3402
|
+
['min-height']?: ViewportMinHeightProperty<TLength> | Array<ViewportMinHeightProperty<TLength>>;
|
|
3403
|
+
['min-width']?: ViewportMinWidthProperty<TLength> | Array<ViewportMinWidthProperty<TLength>>;
|
|
3404
|
+
['min-zoom']?: ViewportMinZoomProperty | Array<ViewportMinZoomProperty>;
|
|
3405
|
+
orientation?: ViewportOrientationProperty | Array<ViewportOrientationProperty>;
|
|
3406
|
+
['user-zoom']?: ViewportUserZoomProperty | Array<ViewportUserZoomProperty>;
|
|
3407
|
+
width?: ViewportWidthProperty<TLength> | Array<ViewportWidthProperty<TLength>>;
|
|
3408
|
+
zoom?: ViewportZoomProperty | Array<ViewportZoomProperty>;
|
|
3409
|
+
}
|
|
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
|
+
export {};
|
|
3977
|
+
//# sourceMappingURL=csstype.d.ts.map
|