@airtable/blocks 0.0.0-experimental-f52bc4e5e-20250709 → 0.0.0-experimental-75d011284-20250904
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/dist/cjs/base/assert_run_context.js +12 -0
- package/dist/cjs/base/index.js +30 -30
- package/dist/cjs/base/models/abstract_model_with_async_data.js +154 -237
- package/dist/cjs/base/models/base.js +188 -267
- package/dist/cjs/base/models/create_aggregators.js +29 -46
- package/dist/cjs/base/models/cursor.js +206 -294
- package/dist/cjs/base/models/field.js +307 -395
- package/dist/cjs/base/models/grouped_record_query_result.js +219 -338
- package/dist/cjs/base/models/linked_records_query_result.js +450 -625
- package/dist/cjs/base/models/models.js +19 -22
- package/dist/cjs/base/models/mutations.js +267 -293
- package/dist/cjs/base/models/object_pool.js +117 -156
- package/dist/cjs/base/models/record.js +191 -256
- package/dist/cjs/base/models/record_coloring.js +6 -6
- package/dist/cjs/base/models/record_query_result.js +351 -435
- package/dist/cjs/base/models/record_store.js +403 -753
- package/dist/cjs/base/models/session.js +125 -153
- package/dist/cjs/base/models/table.js +457 -605
- package/dist/cjs/base/models/table_or_view_query_result.js +656 -920
- package/dist/cjs/base/models/view.js +284 -389
- package/dist/cjs/base/models/view_data_store.js +218 -356
- package/dist/cjs/base/models/view_metadata_query_result.js +109 -157
- package/dist/cjs/base/perform_record_action.js +89 -131
- package/dist/cjs/base/sdk.js +129 -184
- package/dist/cjs/base/settings_button.js +54 -74
- package/dist/cjs/base/types/airtable_interface.js +1 -1
- package/dist/cjs/base/types/mutations.js +5 -11
- package/dist/cjs/base/types/undo_redo.js +1 -1
- package/dist/cjs/base/types/view.js +1 -1
- package/dist/cjs/base/ui/base_provider.js +6 -8
- package/dist/cjs/base/ui/baymax_utils.js +436 -108
- package/dist/cjs/base/ui/block_wrapper.js +81 -106
- package/dist/cjs/base/ui/box.js +34 -60
- package/dist/cjs/base/ui/button.js +44 -74
- package/dist/cjs/base/ui/cell_renderer.js +132 -189
- package/dist/cjs/base/ui/choice_token.js +25 -42
- package/dist/cjs/base/ui/collaborator_token.js +31 -53
- package/dist/cjs/base/ui/color_palette.js +130 -173
- package/dist/cjs/base/ui/color_palette_synced.js +41 -70
- package/dist/cjs/base/ui/confirmation_dialog.js +70 -120
- package/dist/cjs/base/ui/control_sizes.js +24 -22
- package/dist/cjs/base/ui/create_detect_element_resize.js +6 -10
- package/dist/cjs/base/ui/css_helpers.js +1 -1
- package/dist/cjs/base/ui/dialog.js +57 -98
- package/dist/cjs/base/ui/dialog_close_button.js +52 -98
- package/dist/cjs/base/ui/expand_record.js +1 -2
- package/dist/cjs/base/ui/expand_record_list.js +3 -4
- package/dist/cjs/base/ui/expand_record_picker_async.js +28 -57
- package/dist/cjs/base/ui/field_icon.js +15 -33
- package/dist/cjs/base/ui/field_picker.js +25 -70
- package/dist/cjs/base/ui/field_picker_synced.js +18 -40
- package/dist/cjs/base/ui/form_field.js +27 -55
- package/dist/cjs/base/ui/geometry/geometry.js +5 -5
- package/dist/cjs/base/ui/geometry/point.js +10 -12
- package/dist/cjs/base/ui/geometry/rect.js +36 -52
- package/dist/cjs/base/ui/geometry/size.js +10 -12
- package/dist/cjs/base/ui/global_alert.js +31 -52
- package/dist/cjs/base/ui/heading.js +45 -94
- package/dist/cjs/base/ui/icon.js +39 -59
- package/dist/cjs/base/ui/icon_config.js +6 -12
- package/dist/cjs/base/ui/initialize_block.js +16 -35
- package/dist/cjs/base/ui/input.js +62 -101
- package/dist/cjs/base/ui/input_synced.js +17 -40
- package/dist/cjs/base/ui/key_codes.js +2 -3
- package/dist/cjs/base/ui/label.js +30 -55
- package/dist/cjs/base/ui/link.js +54 -87
- package/dist/cjs/base/ui/loader.js +15 -36
- package/dist/cjs/base/ui/modal.js +88 -127
- package/dist/cjs/base/ui/model_picker_select.js +18 -44
- package/dist/cjs/base/ui/popover.js +236 -328
- package/dist/cjs/base/ui/progress_bar.js +34 -47
- package/dist/cjs/base/ui/record_card.js +389 -478
- package/dist/cjs/base/ui/record_card_list.js +150 -224
- package/dist/cjs/base/ui/select.js +60 -116
- package/dist/cjs/base/ui/select_and_select_buttons_helpers.js +15 -39
- package/dist/cjs/base/ui/select_buttons.js +50 -83
- package/dist/cjs/base/ui/select_buttons_synced.js +17 -39
- package/dist/cjs/base/ui/select_synced.js +17 -39
- package/dist/cjs/base/ui/switch.js +42 -71
- package/dist/cjs/base/ui/switch_synced.js +16 -38
- package/dist/cjs/base/ui/synced.js +27 -48
- package/dist/cjs/base/ui/system/all_styles_set.js +4 -12
- package/dist/cjs/base/ui/system/appearance/appearance_set.js +10 -13
- package/dist/cjs/base/ui/system/appearance/background_color.js +3 -6
- package/dist/cjs/base/ui/system/appearance/border.js +3 -6
- package/dist/cjs/base/ui/system/appearance/border_radius.js +3 -6
- package/dist/cjs/base/ui/system/appearance/box_shadow.js +3 -6
- package/dist/cjs/base/ui/system/appearance/opacity.js +3 -6
- package/dist/cjs/base/ui/system/dimensions/dimensions_set.js +11 -13
- package/dist/cjs/base/ui/system/dimensions/height.js +3 -6
- package/dist/cjs/base/ui/system/dimensions/max_height.js +3 -6
- package/dist/cjs/base/ui/system/dimensions/max_width.js +3 -6
- package/dist/cjs/base/ui/system/dimensions/min_height.js +3 -6
- package/dist/cjs/base/ui/system/dimensions/min_width.js +3 -6
- package/dist/cjs/base/ui/system/dimensions/width.js +3 -6
- package/dist/cjs/base/ui/system/display.js +3 -6
- package/dist/cjs/base/ui/system/flex_container/align_content.js +3 -6
- package/dist/cjs/base/ui/system/flex_container/align_items.js +3 -6
- package/dist/cjs/base/ui/system/flex_container/flex_container_set.js +11 -13
- package/dist/cjs/base/ui/system/flex_container/flex_direction.js +3 -6
- package/dist/cjs/base/ui/system/flex_container/flex_wrap.js +3 -6
- package/dist/cjs/base/ui/system/flex_container/justify_content.js +3 -6
- package/dist/cjs/base/ui/system/flex_container/justify_items.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/align_self.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/flex.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/flex_basis.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/flex_grow.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/flex_item_set.js +12 -13
- package/dist/cjs/base/ui/system/flex_item/flex_shrink.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/justify_self.js +3 -6
- package/dist/cjs/base/ui/system/flex_item/order.js +3 -6
- package/dist/cjs/base/ui/system/index.js +104 -416
- package/dist/cjs/base/ui/system/overflow.js +3 -6
- package/dist/cjs/base/ui/system/position/bottom.js +4 -6
- package/dist/cjs/base/ui/system/position/left.js +4 -6
- package/dist/cjs/base/ui/system/position/position.js +3 -6
- package/dist/cjs/base/ui/system/position/position_set.js +11 -13
- package/dist/cjs/base/ui/system/position/right.js +4 -6
- package/dist/cjs/base/ui/system/position/top.js +4 -6
- package/dist/cjs/base/ui/system/position/z_index.js +3 -6
- package/dist/cjs/base/ui/system/spacing/margin.js +4 -6
- package/dist/cjs/base/ui/system/spacing/padding.js +4 -6
- package/dist/cjs/base/ui/system/spacing/spacing_set.js +7 -13
- package/dist/cjs/base/ui/system/typography/font_family.js +3 -6
- package/dist/cjs/base/ui/system/typography/font_size.js +3 -6
- package/dist/cjs/base/ui/system/typography/font_style.js +3 -6
- package/dist/cjs/base/ui/system/typography/font_weight.js +3 -6
- package/dist/cjs/base/ui/system/typography/letter_spacing.js +3 -6
- package/dist/cjs/base/ui/system/typography/line_height.js +3 -6
- package/dist/cjs/base/ui/system/typography/text_align.js +3 -6
- package/dist/cjs/base/ui/system/typography/text_color.js +3 -6
- package/dist/cjs/base/ui/system/typography/text_decoration.js +3 -6
- package/dist/cjs/base/ui/system/typography/text_transform.js +3 -6
- package/dist/cjs/base/ui/system/typography/typography_set.js +15 -13
- package/dist/cjs/base/ui/system/utils/ensure_numbers_are_within_scale.js +3 -4
- package/dist/cjs/base/ui/system/utils/get_style_props_for_responsive_prop.js +47 -87
- package/dist/cjs/base/ui/table_picker.js +18 -42
- package/dist/cjs/base/ui/table_picker_synced.js +17 -39
- package/dist/cjs/base/ui/text.js +40 -73
- package/dist/cjs/base/ui/text_button.js +51 -83
- package/dist/cjs/base/ui/theme/default_theme/button_variants.js +3 -3
- package/dist/cjs/base/ui/theme/default_theme/control_sizes.js +51 -45
- package/dist/cjs/base/ui/theme/default_theme/heading_styles.js +1 -1
- package/dist/cjs/base/ui/theme/default_theme/index.js +9 -15
- package/dist/cjs/base/ui/theme/default_theme/input_variants.js +3 -3
- package/dist/cjs/base/ui/theme/default_theme/link_variants.js +3 -3
- package/dist/cjs/base/ui/theme/default_theme/select_buttons_variants.js +4 -4
- package/dist/cjs/base/ui/theme/default_theme/select_variants.js +8 -17
- package/dist/cjs/base/ui/theme/default_theme/switch_variants.js +23 -29
- package/dist/cjs/base/ui/theme/default_theme/text_button_variants.js +5 -5
- package/dist/cjs/base/ui/theme/default_theme/text_styles.js +1 -1
- package/dist/cjs/base/ui/theme/default_theme/tokens.js +14 -14
- package/dist/cjs/base/ui/theme/theme_context.js +2 -2
- package/dist/cjs/base/ui/theme/use_theme.js +2 -2
- package/dist/cjs/base/ui/tooltip.js +134 -174
- package/dist/cjs/base/ui/types/aria_props.js +1 -23
- package/dist/cjs/base/ui/types/data_attributes_prop.js +1 -18
- package/dist/cjs/base/ui/types/tooltip_anchor_props.js +1 -17
- package/dist/cjs/base/ui/ui.js +48 -49
- package/dist/cjs/base/ui/unstable_standalone_ui.js +27 -27
- package/dist/cjs/base/ui/use_base.js +1 -1
- package/dist/cjs/base/ui/use_cursor.js +5 -4
- package/dist/cjs/base/ui/use_form_field.js +1 -1
- package/dist/cjs/base/ui/use_loadable.js +25 -91
- package/dist/cjs/base/ui/use_record_action_data.js +4 -3
- package/dist/cjs/base/ui/use_records.js +9 -13
- package/dist/cjs/base/ui/use_session.js +1 -1
- package/dist/cjs/base/ui/use_settings_button.js +4 -3
- package/dist/cjs/base/ui/use_styled_system.js +7 -14
- package/dist/cjs/base/ui/use_text_color_for_background_color.js +4 -3
- package/dist/cjs/base/ui/use_view_metadata.js +4 -4
- package/dist/cjs/base/ui/use_viewport.js +2 -2
- package/dist/cjs/base/ui/view_picker.js +26 -70
- package/dist/cjs/base/ui/view_picker_synced.js +18 -40
- package/dist/cjs/base/ui/viewport_constraint.js +67 -114
- package/dist/cjs/base/ui/with_styled_system.js +25 -61
- package/dist/cjs/base/undo_redo.js +21 -32
- package/dist/cjs/base/unstable_testing_utils.js +27 -27
- package/dist/cjs/base/viewport.js +268 -312
- package/dist/cjs/injected/airtable_interface.js +4 -4
- package/dist/cjs/interface/assert_run_context.js +12 -0
- package/dist/cjs/interface/index.js +4 -18
- package/dist/cjs/interface/models/base.js +15 -34
- package/dist/cjs/interface/models/field.js +5 -19
- package/dist/cjs/interface/models/models.js +8 -7
- package/dist/cjs/interface/models/mutations.js +50 -66
- package/dist/cjs/interface/models/record.js +29 -49
- package/dist/cjs/interface/models/record_store.js +25 -57
- package/dist/cjs/interface/models/session.js +2 -16
- package/dist/cjs/interface/models/table.js +66 -95
- package/dist/cjs/interface/sdk.js +61 -87
- package/dist/cjs/interface/types/airtable_interface.js +2 -2
- package/dist/cjs/interface/types/mutations.js +3 -10
- package/dist/cjs/interface/ui/block_wrapper.js +56 -48
- package/dist/cjs/interface/ui/initialize_block.js +13 -28
- package/dist/cjs/interface/ui/ui.js +20 -19
- package/dist/cjs/interface/ui/use_base.js +1 -1
- package/dist/cjs/interface/ui/use_custom_properties.js +19 -35
- package/dist/cjs/interface/ui/use_records.js +6 -5
- package/dist/cjs/interface/ui/use_run_info.js +2 -2
- package/dist/cjs/interface/ui/use_session.js +1 -1
- package/dist/cjs/shared/color_utils.js +9 -16
- package/dist/cjs/shared/colors.js +2 -2
- package/dist/cjs/shared/error_utils.js +9 -11
- package/dist/cjs/shared/event_tracker.js +3 -3
- package/dist/cjs/shared/global_config.js +337 -449
- package/dist/cjs/shared/models/abstract_model.js +72 -97
- package/dist/cjs/shared/models/base_core.js +394 -514
- package/dist/cjs/shared/models/field_core.js +236 -279
- package/dist/cjs/shared/models/mutations_core.js +283 -379
- package/dist/cjs/shared/models/record_core.js +174 -231
- package/dist/cjs/shared/models/record_store_core.js +119 -172
- package/dist/cjs/shared/models/session_core.js +116 -170
- package/dist/cjs/shared/models/table_core.js +1258 -1501
- package/dist/cjs/shared/private_utils.js +54 -124
- package/dist/cjs/shared/sdk_core.js +68 -70
- package/dist/cjs/shared/types/field_core.js +1 -1
- package/dist/cjs/shared/types/mutation_constants.js +4 -4
- package/dist/cjs/shared/types/mutations_core.js +1 -1
- package/dist/cjs/shared/types/permission_levels.js +1 -1
- package/dist/cjs/shared/ui/global_config_synced_component_helpers.js +9 -9
- package/dist/cjs/shared/ui/loader.js +14 -35
- package/dist/cjs/shared/ui/remote_utils.js +5 -7
- package/dist/cjs/shared/ui/sdk_context.js +4 -8
- package/dist/cjs/shared/ui/use_array_identity.js +2 -2
- package/dist/cjs/shared/ui/use_base.js +6 -5
- package/dist/cjs/shared/ui/use_color_scheme.js +3 -8
- package/dist/cjs/shared/ui/use_global_config.js +5 -4
- package/dist/cjs/shared/ui/use_session.js +6 -5
- package/dist/cjs/shared/ui/use_synced.js +7 -5
- package/dist/cjs/shared/ui/use_watchable.js +13 -42
- package/dist/cjs/shared/ui/with_hooks.js +6 -13
- package/dist/cjs/shared/unstable_private_utils.js +4 -6
- package/dist/cjs/shared/warning.js +5 -5
- package/dist/cjs/shared/watchable.js +110 -176
- package/dist/cjs/stats/block_stats.js +62 -85
- package/dist/cjs/testing/base/abstract_mock_airtable_interface.js +208 -0
- package/dist/cjs/testing/interface/abstract_mock_airtable_interface.js +124 -0
- package/dist/types/src/base/assert_run_context.d.ts +2 -0
- package/dist/types/src/base/assert_run_context.d.ts.map +1 -0
- package/dist/types/src/base/index.d.ts +1 -0
- package/dist/types/src/base/index.d.ts.map +1 -1
- package/dist/types/src/base/models/models.d.ts +1 -0
- package/dist/types/src/base/models/models.d.ts.map +1 -1
- package/dist/types/src/base/models/mutations.d.ts.map +1 -1
- package/dist/types/src/base/sdk.d.ts.map +1 -1
- package/dist/types/src/base/ui/block_wrapper.d.ts +1 -1
- package/dist/types/src/base/ui/box.d.ts.map +1 -1
- package/dist/types/src/base/ui/button.d.ts +0 -5
- package/dist/types/src/base/ui/button.d.ts.map +1 -1
- package/dist/types/src/base/ui/cell_renderer.d.ts +1 -22
- package/dist/types/src/base/ui/cell_renderer.d.ts.map +1 -1
- package/dist/types/src/base/ui/choice_token.d.ts +1 -21
- package/dist/types/src/base/ui/choice_token.d.ts.map +1 -1
- package/dist/types/src/base/ui/collaborator_token.d.ts +0 -20
- package/dist/types/src/base/ui/collaborator_token.d.ts.map +1 -1
- package/dist/types/src/base/ui/color_palette.d.ts +1 -32
- package/dist/types/src/base/ui/color_palette.d.ts.map +1 -1
- package/dist/types/src/base/ui/color_palette_synced.d.ts +0 -14
- package/dist/types/src/base/ui/color_palette_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/confirmation_dialog.d.ts +0 -17
- package/dist/types/src/base/ui/confirmation_dialog.d.ts.map +1 -1
- package/dist/types/src/base/ui/control_sizes.d.ts +0 -1
- package/dist/types/src/base/ui/control_sizes.d.ts.map +1 -1
- package/dist/types/src/base/ui/dialog.d.ts +1 -23
- package/dist/types/src/base/ui/dialog.d.ts.map +1 -1
- package/dist/types/src/base/ui/dialog_close_button.d.ts +2 -24
- package/dist/types/src/base/ui/dialog_close_button.d.ts.map +1 -1
- package/dist/types/src/base/ui/field_icon.d.ts +1 -17
- package/dist/types/src/base/ui/field_icon.d.ts.map +1 -1
- package/dist/types/src/base/ui/field_picker.d.ts +0 -23
- package/dist/types/src/base/ui/field_picker.d.ts.map +1 -1
- package/dist/types/src/base/ui/field_picker_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/form_field.d.ts +0 -4
- package/dist/types/src/base/ui/form_field.d.ts.map +1 -1
- package/dist/types/src/base/ui/heading.d.ts +1 -1
- package/dist/types/src/base/ui/heading.d.ts.map +1 -1
- package/dist/types/src/base/ui/icon.d.ts +0 -16
- package/dist/types/src/base/ui/icon.d.ts.map +1 -1
- package/dist/types/src/base/ui/icon_config.d.ts +50 -51
- package/dist/types/src/base/ui/icon_config.d.ts.map +1 -1
- package/dist/types/src/base/ui/initialize_block.d.ts.map +1 -1
- package/dist/types/src/base/ui/input.d.ts +12 -46
- package/dist/types/src/base/ui/input.d.ts.map +1 -1
- package/dist/types/src/base/ui/input_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/label.d.ts.map +1 -1
- package/dist/types/src/base/ui/link.d.ts +1 -5
- package/dist/types/src/base/ui/link.d.ts.map +1 -1
- package/dist/types/src/base/ui/loader.d.ts +3 -20
- package/dist/types/src/base/ui/loader.d.ts.map +1 -1
- package/dist/types/src/base/ui/modal.d.ts +1 -14
- package/dist/types/src/base/ui/modal.d.ts.map +1 -1
- package/dist/types/src/base/ui/model_picker_select.d.ts.map +1 -1
- package/dist/types/src/base/ui/popover.d.ts +1 -17
- package/dist/types/src/base/ui/popover.d.ts.map +1 -1
- package/dist/types/src/base/ui/progress_bar.d.ts +1 -24
- package/dist/types/src/base/ui/progress_bar.d.ts.map +1 -1
- package/dist/types/src/base/ui/record_card.d.ts +1 -23
- package/dist/types/src/base/ui/record_card.d.ts.map +1 -1
- package/dist/types/src/base/ui/record_card_list.d.ts +1 -18
- package/dist/types/src/base/ui/record_card_list.d.ts.map +1 -1
- package/dist/types/src/base/ui/select.d.ts +0 -44
- package/dist/types/src/base/ui/select.d.ts.map +1 -1
- package/dist/types/src/base/ui/select_and_select_buttons_helpers.d.ts +0 -2
- package/dist/types/src/base/ui/select_and_select_buttons_helpers.d.ts.map +1 -1
- package/dist/types/src/base/ui/select_buttons.d.ts +0 -22
- package/dist/types/src/base/ui/select_buttons.d.ts.map +1 -1
- package/dist/types/src/base/ui/select_buttons_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/select_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/switch.d.ts +0 -22
- package/dist/types/src/base/ui/switch.d.ts.map +1 -1
- package/dist/types/src/base/ui/switch_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/synced.d.ts +2 -8
- package/dist/types/src/base/ui/synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/all_styles_set.d.ts +0 -3
- package/dist/types/src/base/ui/system/all_styles_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/appearance/appearance_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/appearance/appearance_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/appearance/background_color.d.ts +0 -1
- package/dist/types/src/base/ui/system/appearance/background_color.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/appearance/border.d.ts +0 -1
- package/dist/types/src/base/ui/system/appearance/border.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/appearance/border_radius.d.ts +0 -1
- package/dist/types/src/base/ui/system/appearance/border_radius.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/appearance/box_shadow.d.ts +0 -1
- package/dist/types/src/base/ui/system/appearance/box_shadow.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/appearance/opacity.d.ts +0 -1
- package/dist/types/src/base/ui/system/appearance/opacity.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/dimensions_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/dimensions_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/height.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/height.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/max_height.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/max_height.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/max_width.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/max_width.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/min_height.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/min_height.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/min_width.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/min_width.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/dimensions/width.d.ts +0 -1
- package/dist/types/src/base/ui/system/dimensions/width.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/display.d.ts +0 -1
- package/dist/types/src/base/ui/system/display.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/align_content.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/align_content.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/align_items.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/align_items.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/flex_container_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/flex_container_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/flex_direction.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/flex_direction.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/flex_wrap.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/flex_wrap.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/justify_content.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/justify_content.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_container/justify_items.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_container/justify_items.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/align_self.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/align_self.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/flex.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/flex.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/flex_basis.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/flex_basis.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/flex_grow.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/flex_grow.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/flex_item_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/flex_item_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/flex_shrink.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/flex_shrink.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/justify_self.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/justify_self.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/flex_item/order.d.ts +0 -1
- package/dist/types/src/base/ui/system/flex_item/order.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/index.d.ts +52 -52
- package/dist/types/src/base/ui/system/index.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/overflow.d.ts +0 -1
- package/dist/types/src/base/ui/system/overflow.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/bottom.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/bottom.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/left.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/left.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/position.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/position.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/position_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/position_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/right.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/right.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/top.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/top.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/position/z_index.d.ts +0 -1
- package/dist/types/src/base/ui/system/position/z_index.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/spacing/margin.d.ts +0 -1
- package/dist/types/src/base/ui/system/spacing/margin.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/spacing/padding.d.ts +0 -1
- package/dist/types/src/base/ui/system/spacing/padding.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/spacing/spacing_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/spacing/spacing_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/font_family.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/font_family.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/font_size.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/font_size.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/font_style.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/font_style.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/font_weight.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/font_weight.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/letter_spacing.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/letter_spacing.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/line_height.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/line_height.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/text_align.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/text_align.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/text_color.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/text_color.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/text_decoration.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/text_decoration.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/text_transform.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/text_transform.d.ts.map +1 -1
- package/dist/types/src/base/ui/system/typography/typography_set.d.ts +0 -1
- package/dist/types/src/base/ui/system/typography/typography_set.d.ts.map +1 -1
- package/dist/types/src/base/ui/table_picker.d.ts +0 -21
- package/dist/types/src/base/ui/table_picker.d.ts.map +1 -1
- package/dist/types/src/base/ui/table_picker_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/text.d.ts +0 -3
- package/dist/types/src/base/ui/text.d.ts.map +1 -1
- package/dist/types/src/base/ui/text_button.d.ts +1 -5
- package/dist/types/src/base/ui/text_button.d.ts.map +1 -1
- package/dist/types/src/base/ui/theme/default_theme/index.d.ts +1 -1
- package/dist/types/src/base/ui/theme/theme_context.d.ts +1 -1
- package/dist/types/src/base/ui/theme/use_theme.d.ts +1 -1
- package/dist/types/src/base/ui/tooltip.d.ts +0 -16
- package/dist/types/src/base/ui/tooltip.d.ts.map +1 -1
- package/dist/types/src/base/ui/types/aria_props.d.ts.map +1 -1
- package/dist/types/src/base/ui/types/data_attributes_prop.d.ts +0 -4
- package/dist/types/src/base/ui/types/data_attributes_prop.d.ts.map +1 -1
- package/dist/types/src/base/ui/types/tooltip_anchor_props.d.ts +0 -7
- package/dist/types/src/base/ui/types/tooltip_anchor_props.d.ts.map +1 -1
- package/dist/types/src/base/ui/ui.d.ts +1 -0
- package/dist/types/src/base/ui/ui.d.ts.map +1 -1
- package/dist/types/src/base/ui/view_picker.d.ts +0 -23
- package/dist/types/src/base/ui/view_picker.d.ts.map +1 -1
- package/dist/types/src/base/ui/view_picker_synced.d.ts.map +1 -1
- package/dist/types/src/base/ui/viewport_constraint.d.ts +1 -14
- package/dist/types/src/base/ui/viewport_constraint.d.ts.map +1 -1
- package/dist/types/src/base/unstable_testing_utils.d.ts +1 -1
- package/dist/types/src/base/unstable_testing_utils.d.ts.map +1 -1
- package/dist/types/src/interface/assert_run_context.d.ts +2 -0
- package/dist/types/src/interface/assert_run_context.d.ts.map +1 -0
- package/dist/types/src/interface/index.d.ts +1 -6
- package/dist/types/src/interface/index.d.ts.map +1 -1
- package/dist/types/src/interface/models/models.d.ts +1 -0
- package/dist/types/src/interface/models/models.d.ts.map +1 -1
- package/dist/types/src/interface/models/mutations.d.ts.map +1 -1
- package/dist/types/src/interface/ui/initialize_block.d.ts.map +1 -1
- package/dist/types/src/interface/ui/ui.d.ts +1 -0
- package/dist/types/src/interface/ui/ui.d.ts.map +1 -1
- package/dist/types/src/interface/ui/use_custom_properties.d.ts +1 -1
- package/dist/types/src/shared/models/mutations_core.d.ts.map +1 -1
- package/dist/types/src/shared/private_utils.d.ts +0 -9
- package/dist/types/src/shared/private_utils.d.ts.map +1 -1
- package/dist/types/src/shared/ui/global_config_synced_component_helpers.d.ts +0 -2
- package/dist/types/src/shared/ui/global_config_synced_component_helpers.d.ts.map +1 -1
- package/dist/types/src/shared/ui/loader.d.ts.map +1 -1
- package/dist/types/src/shared/ui/with_hooks.d.ts +2 -2
- package/dist/types/src/shared/ui/with_hooks.d.ts.map +1 -1
- package/dist/types/src/testing/{abstract_mock_airtable_interface.d.ts → base/abstract_mock_airtable_interface.d.ts} +13 -13
- package/dist/types/src/testing/base/abstract_mock_airtable_interface.d.ts.map +1 -0
- package/dist/types/src/testing/interface/abstract_mock_airtable_interface.d.ts +51 -0
- package/dist/types/src/testing/interface/abstract_mock_airtable_interface.d.ts.map +1 -0
- package/package.json +13 -13
- package/dist/cjs/base/ui/system/utils/create_responsive_prop_type.js +0 -19
- package/dist/cjs/base/ui/system/utils/create_style_prop_types.js +0 -24
- package/dist/cjs/base/ui/system/utils/enum_prop_type_utils.js +0 -35
- package/dist/cjs/testing/abstract_mock_airtable_interface.js +0 -277
- package/dist/types/src/base/ui/system/utils/create_responsive_prop_type.d.ts +0 -2
- package/dist/types/src/base/ui/system/utils/create_responsive_prop_type.d.ts.map +0 -1
- package/dist/types/src/base/ui/system/utils/create_style_prop_types.d.ts +0 -4
- package/dist/types/src/base/ui/system/utils/create_style_prop_types.d.ts.map +0 -1
- package/dist/types/src/base/ui/system/utils/enum_prop_type_utils.d.ts +0 -21
- package/dist/types/src/base/ui/system/utils/enum_prop_type_utils.d.ts.map +0 -1
- package/dist/types/src/testing/abstract_mock_airtable_interface.d.ts.map +0 -1
|
@@ -5,940 +5,628 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
Object.defineProperty(exports, "AlignContentProps", {
|
|
7
7
|
enumerable: true,
|
|
8
|
-
get: function
|
|
8
|
+
get: function () {
|
|
9
9
|
return _align_content.AlignContentProps;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "AlignItemsProps", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function
|
|
14
|
+
get: function () {
|
|
15
15
|
return _align_items.AlignItemsProps;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
18
|
Object.defineProperty(exports, "AlignSelfProps", {
|
|
19
19
|
enumerable: true,
|
|
20
|
-
get: function
|
|
20
|
+
get: function () {
|
|
21
21
|
return _align_self.AlignSelfProps;
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "AllStylesProps", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function
|
|
26
|
+
get: function () {
|
|
27
27
|
return _all_styles_set.AllStylesProps;
|
|
28
28
|
}
|
|
29
29
|
});
|
|
30
30
|
Object.defineProperty(exports, "AppearanceSetProps", {
|
|
31
31
|
enumerable: true,
|
|
32
|
-
get: function
|
|
32
|
+
get: function () {
|
|
33
33
|
return _appearance_set.AppearanceSetProps;
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "BackgroundColorProps", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function
|
|
38
|
+
get: function () {
|
|
39
39
|
return _background_color.BackgroundColorProps;
|
|
40
40
|
}
|
|
41
41
|
});
|
|
42
42
|
Object.defineProperty(exports, "BorderProps", {
|
|
43
43
|
enumerable: true,
|
|
44
|
-
get: function
|
|
44
|
+
get: function () {
|
|
45
45
|
return _border.BorderProps;
|
|
46
46
|
}
|
|
47
47
|
});
|
|
48
48
|
Object.defineProperty(exports, "BorderRadiusProps", {
|
|
49
49
|
enumerable: true,
|
|
50
|
-
get: function
|
|
50
|
+
get: function () {
|
|
51
51
|
return _border_radius.BorderRadiusProps;
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
Object.defineProperty(exports, "BottomProps", {
|
|
55
55
|
enumerable: true,
|
|
56
|
-
get: function
|
|
56
|
+
get: function () {
|
|
57
57
|
return _bottom.BottomProps;
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
60
|
Object.defineProperty(exports, "BoxShadowProps", {
|
|
61
61
|
enumerable: true,
|
|
62
|
-
get: function
|
|
62
|
+
get: function () {
|
|
63
63
|
return _box_shadow.BoxShadowProps;
|
|
64
64
|
}
|
|
65
65
|
});
|
|
66
66
|
Object.defineProperty(exports, "DimensionsSetProps", {
|
|
67
67
|
enumerable: true,
|
|
68
|
-
get: function
|
|
68
|
+
get: function () {
|
|
69
69
|
return _dimensions_set.DimensionsSetProps;
|
|
70
70
|
}
|
|
71
71
|
});
|
|
72
72
|
Object.defineProperty(exports, "DisplayProps", {
|
|
73
73
|
enumerable: true,
|
|
74
|
-
get: function
|
|
74
|
+
get: function () {
|
|
75
75
|
return _display.DisplayProps;
|
|
76
76
|
}
|
|
77
77
|
});
|
|
78
78
|
Object.defineProperty(exports, "FlexBasisProps", {
|
|
79
79
|
enumerable: true,
|
|
80
|
-
get: function
|
|
80
|
+
get: function () {
|
|
81
81
|
return _flex_basis.FlexBasisProps;
|
|
82
82
|
}
|
|
83
83
|
});
|
|
84
84
|
Object.defineProperty(exports, "FlexContainerSetProps", {
|
|
85
85
|
enumerable: true,
|
|
86
|
-
get: function
|
|
86
|
+
get: function () {
|
|
87
87
|
return _flex_container_set.FlexContainerSetProps;
|
|
88
88
|
}
|
|
89
89
|
});
|
|
90
90
|
Object.defineProperty(exports, "FlexDirectionProps", {
|
|
91
91
|
enumerable: true,
|
|
92
|
-
get: function
|
|
92
|
+
get: function () {
|
|
93
93
|
return _flex_direction.FlexDirectionProps;
|
|
94
94
|
}
|
|
95
95
|
});
|
|
96
96
|
Object.defineProperty(exports, "FlexGrowProps", {
|
|
97
97
|
enumerable: true,
|
|
98
|
-
get: function
|
|
98
|
+
get: function () {
|
|
99
99
|
return _flex_grow.FlexGrowProps;
|
|
100
100
|
}
|
|
101
101
|
});
|
|
102
102
|
Object.defineProperty(exports, "FlexItemSetProps", {
|
|
103
103
|
enumerable: true,
|
|
104
|
-
get: function
|
|
104
|
+
get: function () {
|
|
105
105
|
return _flex_item_set.FlexItemSetProps;
|
|
106
106
|
}
|
|
107
107
|
});
|
|
108
108
|
Object.defineProperty(exports, "FlexProps", {
|
|
109
109
|
enumerable: true,
|
|
110
|
-
get: function
|
|
110
|
+
get: function () {
|
|
111
111
|
return _flex.FlexProps;
|
|
112
112
|
}
|
|
113
113
|
});
|
|
114
114
|
Object.defineProperty(exports, "FlexShrinkProps", {
|
|
115
115
|
enumerable: true,
|
|
116
|
-
get: function
|
|
116
|
+
get: function () {
|
|
117
117
|
return _flex_shrink.FlexShrinkProps;
|
|
118
118
|
}
|
|
119
119
|
});
|
|
120
120
|
Object.defineProperty(exports, "FlexWrapProps", {
|
|
121
121
|
enumerable: true,
|
|
122
|
-
get: function
|
|
122
|
+
get: function () {
|
|
123
123
|
return _flex_wrap.FlexWrapProps;
|
|
124
124
|
}
|
|
125
125
|
});
|
|
126
126
|
Object.defineProperty(exports, "FontFamilyProps", {
|
|
127
127
|
enumerable: true,
|
|
128
|
-
get: function
|
|
128
|
+
get: function () {
|
|
129
129
|
return _font_family.FontFamilyProps;
|
|
130
130
|
}
|
|
131
131
|
});
|
|
132
132
|
Object.defineProperty(exports, "FontSizeProps", {
|
|
133
133
|
enumerable: true,
|
|
134
|
-
get: function
|
|
134
|
+
get: function () {
|
|
135
135
|
return _font_size.FontSizeProps;
|
|
136
136
|
}
|
|
137
137
|
});
|
|
138
138
|
Object.defineProperty(exports, "FontStyleProps", {
|
|
139
139
|
enumerable: true,
|
|
140
|
-
get: function
|
|
140
|
+
get: function () {
|
|
141
141
|
return _font_style.FontStyleProps;
|
|
142
142
|
}
|
|
143
143
|
});
|
|
144
144
|
Object.defineProperty(exports, "FontWeightProps", {
|
|
145
145
|
enumerable: true,
|
|
146
|
-
get: function
|
|
146
|
+
get: function () {
|
|
147
147
|
return _font_weight.FontWeightProps;
|
|
148
148
|
}
|
|
149
149
|
});
|
|
150
150
|
Object.defineProperty(exports, "HeightProps", {
|
|
151
151
|
enumerable: true,
|
|
152
|
-
get: function
|
|
152
|
+
get: function () {
|
|
153
153
|
return _height.HeightProps;
|
|
154
154
|
}
|
|
155
155
|
});
|
|
156
156
|
Object.defineProperty(exports, "JustifyContentProps", {
|
|
157
157
|
enumerable: true,
|
|
158
|
-
get: function
|
|
158
|
+
get: function () {
|
|
159
159
|
return _justify_content.JustifyContentProps;
|
|
160
160
|
}
|
|
161
161
|
});
|
|
162
162
|
Object.defineProperty(exports, "JustifyItemsProps", {
|
|
163
163
|
enumerable: true,
|
|
164
|
-
get: function
|
|
164
|
+
get: function () {
|
|
165
165
|
return _justify_items.JustifyItemsProps;
|
|
166
166
|
}
|
|
167
167
|
});
|
|
168
168
|
Object.defineProperty(exports, "JustifySelfProps", {
|
|
169
169
|
enumerable: true,
|
|
170
|
-
get: function
|
|
170
|
+
get: function () {
|
|
171
171
|
return _justify_self.JustifySelfProps;
|
|
172
172
|
}
|
|
173
173
|
});
|
|
174
174
|
Object.defineProperty(exports, "LeftProps", {
|
|
175
175
|
enumerable: true,
|
|
176
|
-
get: function
|
|
176
|
+
get: function () {
|
|
177
177
|
return _left.LeftProps;
|
|
178
178
|
}
|
|
179
179
|
});
|
|
180
180
|
Object.defineProperty(exports, "LetterSpacingProps", {
|
|
181
181
|
enumerable: true,
|
|
182
|
-
get: function
|
|
182
|
+
get: function () {
|
|
183
183
|
return _letter_spacing.LetterSpacingProps;
|
|
184
184
|
}
|
|
185
185
|
});
|
|
186
186
|
Object.defineProperty(exports, "LineHeightProps", {
|
|
187
187
|
enumerable: true,
|
|
188
|
-
get: function
|
|
188
|
+
get: function () {
|
|
189
189
|
return _line_height.LineHeightProps;
|
|
190
190
|
}
|
|
191
191
|
});
|
|
192
192
|
Object.defineProperty(exports, "MarginProps", {
|
|
193
193
|
enumerable: true,
|
|
194
|
-
get: function
|
|
194
|
+
get: function () {
|
|
195
195
|
return _margin.MarginProps;
|
|
196
196
|
}
|
|
197
197
|
});
|
|
198
198
|
Object.defineProperty(exports, "MaxHeightProps", {
|
|
199
199
|
enumerable: true,
|
|
200
|
-
get: function
|
|
200
|
+
get: function () {
|
|
201
201
|
return _max_height.MaxHeightProps;
|
|
202
202
|
}
|
|
203
203
|
});
|
|
204
204
|
Object.defineProperty(exports, "MaxWidthProps", {
|
|
205
205
|
enumerable: true,
|
|
206
|
-
get: function
|
|
206
|
+
get: function () {
|
|
207
207
|
return _max_width.MaxWidthProps;
|
|
208
208
|
}
|
|
209
209
|
});
|
|
210
210
|
Object.defineProperty(exports, "MinHeightProps", {
|
|
211
211
|
enumerable: true,
|
|
212
|
-
get: function
|
|
212
|
+
get: function () {
|
|
213
213
|
return _min_height.MinHeightProps;
|
|
214
214
|
}
|
|
215
215
|
});
|
|
216
216
|
Object.defineProperty(exports, "MinWidthProps", {
|
|
217
217
|
enumerable: true,
|
|
218
|
-
get: function
|
|
218
|
+
get: function () {
|
|
219
219
|
return _min_width.MinWidthProps;
|
|
220
220
|
}
|
|
221
221
|
});
|
|
222
222
|
Object.defineProperty(exports, "OpacityProps", {
|
|
223
223
|
enumerable: true,
|
|
224
|
-
get: function
|
|
224
|
+
get: function () {
|
|
225
225
|
return _opacity.OpacityProps;
|
|
226
226
|
}
|
|
227
227
|
});
|
|
228
228
|
Object.defineProperty(exports, "OrderProps", {
|
|
229
229
|
enumerable: true,
|
|
230
|
-
get: function
|
|
230
|
+
get: function () {
|
|
231
231
|
return _order.OrderProps;
|
|
232
232
|
}
|
|
233
233
|
});
|
|
234
234
|
Object.defineProperty(exports, "OverflowProps", {
|
|
235
235
|
enumerable: true,
|
|
236
|
-
get: function
|
|
236
|
+
get: function () {
|
|
237
237
|
return _overflow.OverflowProps;
|
|
238
238
|
}
|
|
239
239
|
});
|
|
240
240
|
Object.defineProperty(exports, "PaddingProps", {
|
|
241
241
|
enumerable: true,
|
|
242
|
-
get: function
|
|
242
|
+
get: function () {
|
|
243
243
|
return _padding.PaddingProps;
|
|
244
244
|
}
|
|
245
245
|
});
|
|
246
246
|
Object.defineProperty(exports, "PositionProps", {
|
|
247
247
|
enumerable: true,
|
|
248
|
-
get: function
|
|
248
|
+
get: function () {
|
|
249
249
|
return _position.PositionProps;
|
|
250
250
|
}
|
|
251
251
|
});
|
|
252
252
|
Object.defineProperty(exports, "PositionSetProps", {
|
|
253
253
|
enumerable: true,
|
|
254
|
-
get: function
|
|
254
|
+
get: function () {
|
|
255
255
|
return _position_set.PositionSetProps;
|
|
256
256
|
}
|
|
257
257
|
});
|
|
258
258
|
Object.defineProperty(exports, "RightProps", {
|
|
259
259
|
enumerable: true,
|
|
260
|
-
get: function
|
|
260
|
+
get: function () {
|
|
261
261
|
return _right.RightProps;
|
|
262
262
|
}
|
|
263
263
|
});
|
|
264
264
|
Object.defineProperty(exports, "SpacingSetProps", {
|
|
265
265
|
enumerable: true,
|
|
266
|
-
get: function
|
|
266
|
+
get: function () {
|
|
267
267
|
return _spacing_set.SpacingSetProps;
|
|
268
268
|
}
|
|
269
269
|
});
|
|
270
270
|
Object.defineProperty(exports, "TextAlignProps", {
|
|
271
271
|
enumerable: true,
|
|
272
|
-
get: function
|
|
272
|
+
get: function () {
|
|
273
273
|
return _text_align.TextAlignProps;
|
|
274
274
|
}
|
|
275
275
|
});
|
|
276
276
|
Object.defineProperty(exports, "TextColorProps", {
|
|
277
277
|
enumerable: true,
|
|
278
|
-
get: function
|
|
278
|
+
get: function () {
|
|
279
279
|
return _text_color.TextColorProps;
|
|
280
280
|
}
|
|
281
281
|
});
|
|
282
282
|
Object.defineProperty(exports, "TextDecorationProps", {
|
|
283
283
|
enumerable: true,
|
|
284
|
-
get: function
|
|
284
|
+
get: function () {
|
|
285
285
|
return _text_decoration.TextDecorationProps;
|
|
286
286
|
}
|
|
287
287
|
});
|
|
288
288
|
Object.defineProperty(exports, "TextTransformProps", {
|
|
289
289
|
enumerable: true,
|
|
290
|
-
get: function
|
|
290
|
+
get: function () {
|
|
291
291
|
return _text_transform.TextTransformProps;
|
|
292
292
|
}
|
|
293
293
|
});
|
|
294
294
|
Object.defineProperty(exports, "TopProps", {
|
|
295
295
|
enumerable: true,
|
|
296
|
-
get: function
|
|
296
|
+
get: function () {
|
|
297
297
|
return _top.TopProps;
|
|
298
298
|
}
|
|
299
299
|
});
|
|
300
300
|
Object.defineProperty(exports, "TypographySetProps", {
|
|
301
301
|
enumerable: true,
|
|
302
|
-
get: function
|
|
302
|
+
get: function () {
|
|
303
303
|
return _typography_set.TypographySetProps;
|
|
304
304
|
}
|
|
305
305
|
});
|
|
306
306
|
Object.defineProperty(exports, "WidthProps", {
|
|
307
307
|
enumerable: true,
|
|
308
|
-
get: function
|
|
308
|
+
get: function () {
|
|
309
309
|
return _width.WidthProps;
|
|
310
310
|
}
|
|
311
311
|
});
|
|
312
312
|
Object.defineProperty(exports, "ZIndexProps", {
|
|
313
313
|
enumerable: true,
|
|
314
|
-
get: function
|
|
314
|
+
get: function () {
|
|
315
315
|
return _z_index.ZIndexProps;
|
|
316
316
|
}
|
|
317
317
|
});
|
|
318
318
|
Object.defineProperty(exports, "alignContent", {
|
|
319
319
|
enumerable: true,
|
|
320
|
-
get: function
|
|
320
|
+
get: function () {
|
|
321
321
|
return _align_content.alignContent;
|
|
322
322
|
}
|
|
323
323
|
});
|
|
324
|
-
Object.defineProperty(exports, "alignContentPropTypes", {
|
|
325
|
-
enumerable: true,
|
|
326
|
-
get: function get() {
|
|
327
|
-
return _align_content.alignContentPropTypes;
|
|
328
|
-
}
|
|
329
|
-
});
|
|
330
324
|
Object.defineProperty(exports, "alignItems", {
|
|
331
325
|
enumerable: true,
|
|
332
|
-
get: function
|
|
326
|
+
get: function () {
|
|
333
327
|
return _align_items.alignItems;
|
|
334
328
|
}
|
|
335
329
|
});
|
|
336
|
-
Object.defineProperty(exports, "alignItemsPropTypes", {
|
|
337
|
-
enumerable: true,
|
|
338
|
-
get: function get() {
|
|
339
|
-
return _align_items.alignItemsPropTypes;
|
|
340
|
-
}
|
|
341
|
-
});
|
|
342
330
|
Object.defineProperty(exports, "alignSelf", {
|
|
343
331
|
enumerable: true,
|
|
344
|
-
get: function
|
|
332
|
+
get: function () {
|
|
345
333
|
return _align_self.alignSelf;
|
|
346
334
|
}
|
|
347
335
|
});
|
|
348
|
-
Object.defineProperty(exports, "alignSelfPropTypes", {
|
|
349
|
-
enumerable: true,
|
|
350
|
-
get: function get() {
|
|
351
|
-
return _align_self.alignSelfPropTypes;
|
|
352
|
-
}
|
|
353
|
-
});
|
|
354
336
|
Object.defineProperty(exports, "allStylesParser", {
|
|
355
337
|
enumerable: true,
|
|
356
|
-
get: function
|
|
338
|
+
get: function () {
|
|
357
339
|
return _all_styles_set.allStylesParser;
|
|
358
340
|
}
|
|
359
341
|
});
|
|
360
|
-
Object.defineProperty(exports, "allStylesPropTypes", {
|
|
361
|
-
enumerable: true,
|
|
362
|
-
get: function get() {
|
|
363
|
-
return _all_styles_set.allStylesPropTypes;
|
|
364
|
-
}
|
|
365
|
-
});
|
|
366
342
|
Object.defineProperty(exports, "appearanceSet", {
|
|
367
343
|
enumerable: true,
|
|
368
|
-
get: function
|
|
344
|
+
get: function () {
|
|
369
345
|
return _appearance_set.appearanceSet;
|
|
370
346
|
}
|
|
371
347
|
});
|
|
372
|
-
Object.defineProperty(exports, "appearanceSetPropTypes", {
|
|
373
|
-
enumerable: true,
|
|
374
|
-
get: function get() {
|
|
375
|
-
return _appearance_set.appearanceSetPropTypes;
|
|
376
|
-
}
|
|
377
|
-
});
|
|
378
348
|
Object.defineProperty(exports, "backgroundColor", {
|
|
379
349
|
enumerable: true,
|
|
380
|
-
get: function
|
|
350
|
+
get: function () {
|
|
381
351
|
return _background_color.backgroundColor;
|
|
382
352
|
}
|
|
383
353
|
});
|
|
384
|
-
Object.defineProperty(exports, "backgroundColorPropTypes", {
|
|
385
|
-
enumerable: true,
|
|
386
|
-
get: function get() {
|
|
387
|
-
return _background_color.backgroundColorPropTypes;
|
|
388
|
-
}
|
|
389
|
-
});
|
|
390
354
|
Object.defineProperty(exports, "border", {
|
|
391
355
|
enumerable: true,
|
|
392
|
-
get: function
|
|
356
|
+
get: function () {
|
|
393
357
|
return _border.border;
|
|
394
358
|
}
|
|
395
359
|
});
|
|
396
|
-
Object.defineProperty(exports, "borderPropTypes", {
|
|
397
|
-
enumerable: true,
|
|
398
|
-
get: function get() {
|
|
399
|
-
return _border.borderPropTypes;
|
|
400
|
-
}
|
|
401
|
-
});
|
|
402
360
|
Object.defineProperty(exports, "borderRadius", {
|
|
403
361
|
enumerable: true,
|
|
404
|
-
get: function
|
|
362
|
+
get: function () {
|
|
405
363
|
return _border_radius.borderRadius;
|
|
406
364
|
}
|
|
407
365
|
});
|
|
408
|
-
Object.defineProperty(exports, "borderRadiusPropTypes", {
|
|
409
|
-
enumerable: true,
|
|
410
|
-
get: function get() {
|
|
411
|
-
return _border_radius.borderRadiusPropTypes;
|
|
412
|
-
}
|
|
413
|
-
});
|
|
414
366
|
Object.defineProperty(exports, "bottom", {
|
|
415
367
|
enumerable: true,
|
|
416
|
-
get: function
|
|
368
|
+
get: function () {
|
|
417
369
|
return _bottom.bottom;
|
|
418
370
|
}
|
|
419
371
|
});
|
|
420
|
-
Object.defineProperty(exports, "bottomPropTypes", {
|
|
421
|
-
enumerable: true,
|
|
422
|
-
get: function get() {
|
|
423
|
-
return _bottom.bottomPropTypes;
|
|
424
|
-
}
|
|
425
|
-
});
|
|
426
372
|
Object.defineProperty(exports, "boxShadow", {
|
|
427
373
|
enumerable: true,
|
|
428
|
-
get: function
|
|
374
|
+
get: function () {
|
|
429
375
|
return _box_shadow.boxShadow;
|
|
430
376
|
}
|
|
431
377
|
});
|
|
432
|
-
Object.defineProperty(exports, "boxShadowPropTypes", {
|
|
433
|
-
enumerable: true,
|
|
434
|
-
get: function get() {
|
|
435
|
-
return _box_shadow.boxShadowPropTypes;
|
|
436
|
-
}
|
|
437
|
-
});
|
|
438
378
|
Object.defineProperty(exports, "dimensionsSet", {
|
|
439
379
|
enumerable: true,
|
|
440
|
-
get: function
|
|
380
|
+
get: function () {
|
|
441
381
|
return _dimensions_set.dimensionsSet;
|
|
442
382
|
}
|
|
443
383
|
});
|
|
444
|
-
Object.defineProperty(exports, "dimensionsSetPropTypes", {
|
|
445
|
-
enumerable: true,
|
|
446
|
-
get: function get() {
|
|
447
|
-
return _dimensions_set.dimensionsSetPropTypes;
|
|
448
|
-
}
|
|
449
|
-
});
|
|
450
384
|
Object.defineProperty(exports, "display", {
|
|
451
385
|
enumerable: true,
|
|
452
|
-
get: function
|
|
386
|
+
get: function () {
|
|
453
387
|
return _display.display;
|
|
454
388
|
}
|
|
455
389
|
});
|
|
456
|
-
Object.defineProperty(exports, "displayPropTypes", {
|
|
457
|
-
enumerable: true,
|
|
458
|
-
get: function get() {
|
|
459
|
-
return _display.displayPropTypes;
|
|
460
|
-
}
|
|
461
|
-
});
|
|
462
390
|
Object.defineProperty(exports, "flex", {
|
|
463
391
|
enumerable: true,
|
|
464
|
-
get: function
|
|
392
|
+
get: function () {
|
|
465
393
|
return _flex.flex;
|
|
466
394
|
}
|
|
467
395
|
});
|
|
468
396
|
Object.defineProperty(exports, "flexBasis", {
|
|
469
397
|
enumerable: true,
|
|
470
|
-
get: function
|
|
398
|
+
get: function () {
|
|
471
399
|
return _flex_basis.flexBasis;
|
|
472
400
|
}
|
|
473
401
|
});
|
|
474
|
-
Object.defineProperty(exports, "flexBasisPropTypes", {
|
|
475
|
-
enumerable: true,
|
|
476
|
-
get: function get() {
|
|
477
|
-
return _flex_basis.flexBasisPropTypes;
|
|
478
|
-
}
|
|
479
|
-
});
|
|
480
402
|
Object.defineProperty(exports, "flexContainerSet", {
|
|
481
403
|
enumerable: true,
|
|
482
|
-
get: function
|
|
404
|
+
get: function () {
|
|
483
405
|
return _flex_container_set.flexContainerSet;
|
|
484
406
|
}
|
|
485
407
|
});
|
|
486
|
-
Object.defineProperty(exports, "flexContainerSetPropTypes", {
|
|
487
|
-
enumerable: true,
|
|
488
|
-
get: function get() {
|
|
489
|
-
return _flex_container_set.flexContainerSetPropTypes;
|
|
490
|
-
}
|
|
491
|
-
});
|
|
492
408
|
Object.defineProperty(exports, "flexDirection", {
|
|
493
409
|
enumerable: true,
|
|
494
|
-
get: function
|
|
410
|
+
get: function () {
|
|
495
411
|
return _flex_direction.flexDirection;
|
|
496
412
|
}
|
|
497
413
|
});
|
|
498
|
-
Object.defineProperty(exports, "flexDirectionPropTypes", {
|
|
499
|
-
enumerable: true,
|
|
500
|
-
get: function get() {
|
|
501
|
-
return _flex_direction.flexDirectionPropTypes;
|
|
502
|
-
}
|
|
503
|
-
});
|
|
504
414
|
Object.defineProperty(exports, "flexGrow", {
|
|
505
415
|
enumerable: true,
|
|
506
|
-
get: function
|
|
416
|
+
get: function () {
|
|
507
417
|
return _flex_grow.flexGrow;
|
|
508
418
|
}
|
|
509
419
|
});
|
|
510
|
-
Object.defineProperty(exports, "flexGrowPropTypes", {
|
|
511
|
-
enumerable: true,
|
|
512
|
-
get: function get() {
|
|
513
|
-
return _flex_grow.flexGrowPropTypes;
|
|
514
|
-
}
|
|
515
|
-
});
|
|
516
420
|
Object.defineProperty(exports, "flexItemSet", {
|
|
517
421
|
enumerable: true,
|
|
518
|
-
get: function
|
|
422
|
+
get: function () {
|
|
519
423
|
return _flex_item_set.flexItemSet;
|
|
520
424
|
}
|
|
521
425
|
});
|
|
522
|
-
Object.defineProperty(exports, "flexItemSetPropTypes", {
|
|
523
|
-
enumerable: true,
|
|
524
|
-
get: function get() {
|
|
525
|
-
return _flex_item_set.flexItemSetPropTypes;
|
|
526
|
-
}
|
|
527
|
-
});
|
|
528
|
-
Object.defineProperty(exports, "flexPropTypes", {
|
|
529
|
-
enumerable: true,
|
|
530
|
-
get: function get() {
|
|
531
|
-
return _flex.flexPropTypes;
|
|
532
|
-
}
|
|
533
|
-
});
|
|
534
426
|
Object.defineProperty(exports, "flexShrink", {
|
|
535
427
|
enumerable: true,
|
|
536
|
-
get: function
|
|
428
|
+
get: function () {
|
|
537
429
|
return _flex_shrink.flexShrink;
|
|
538
430
|
}
|
|
539
431
|
});
|
|
540
|
-
Object.defineProperty(exports, "flexShrinkPropTypes", {
|
|
541
|
-
enumerable: true,
|
|
542
|
-
get: function get() {
|
|
543
|
-
return _flex_shrink.flexShrinkPropTypes;
|
|
544
|
-
}
|
|
545
|
-
});
|
|
546
432
|
Object.defineProperty(exports, "flexWrap", {
|
|
547
433
|
enumerable: true,
|
|
548
|
-
get: function
|
|
434
|
+
get: function () {
|
|
549
435
|
return _flex_wrap.flexWrap;
|
|
550
436
|
}
|
|
551
437
|
});
|
|
552
|
-
Object.defineProperty(exports, "flexWrapPropTypes", {
|
|
553
|
-
enumerable: true,
|
|
554
|
-
get: function get() {
|
|
555
|
-
return _flex_wrap.flexWrapPropTypes;
|
|
556
|
-
}
|
|
557
|
-
});
|
|
558
438
|
Object.defineProperty(exports, "fontFamily", {
|
|
559
439
|
enumerable: true,
|
|
560
|
-
get: function
|
|
440
|
+
get: function () {
|
|
561
441
|
return _font_family.fontFamily;
|
|
562
442
|
}
|
|
563
443
|
});
|
|
564
|
-
Object.defineProperty(exports, "fontFamilyPropTypes", {
|
|
565
|
-
enumerable: true,
|
|
566
|
-
get: function get() {
|
|
567
|
-
return _font_family.fontFamilyPropTypes;
|
|
568
|
-
}
|
|
569
|
-
});
|
|
570
444
|
Object.defineProperty(exports, "fontSize", {
|
|
571
445
|
enumerable: true,
|
|
572
|
-
get: function
|
|
446
|
+
get: function () {
|
|
573
447
|
return _font_size.fontSize;
|
|
574
448
|
}
|
|
575
449
|
});
|
|
576
|
-
Object.defineProperty(exports, "fontSizePropTypes", {
|
|
577
|
-
enumerable: true,
|
|
578
|
-
get: function get() {
|
|
579
|
-
return _font_size.fontSizePropTypes;
|
|
580
|
-
}
|
|
581
|
-
});
|
|
582
450
|
Object.defineProperty(exports, "fontStyle", {
|
|
583
451
|
enumerable: true,
|
|
584
|
-
get: function
|
|
452
|
+
get: function () {
|
|
585
453
|
return _font_style.fontStyle;
|
|
586
454
|
}
|
|
587
455
|
});
|
|
588
|
-
Object.defineProperty(exports, "fontStylePropTypes", {
|
|
589
|
-
enumerable: true,
|
|
590
|
-
get: function get() {
|
|
591
|
-
return _font_style.fontStylePropTypes;
|
|
592
|
-
}
|
|
593
|
-
});
|
|
594
456
|
Object.defineProperty(exports, "fontWeight", {
|
|
595
457
|
enumerable: true,
|
|
596
|
-
get: function
|
|
458
|
+
get: function () {
|
|
597
459
|
return _font_weight.fontWeight;
|
|
598
460
|
}
|
|
599
461
|
});
|
|
600
|
-
Object.defineProperty(exports, "fontWeightPropTypes", {
|
|
601
|
-
enumerable: true,
|
|
602
|
-
get: function get() {
|
|
603
|
-
return _font_weight.fontWeightPropTypes;
|
|
604
|
-
}
|
|
605
|
-
});
|
|
606
462
|
Object.defineProperty(exports, "height", {
|
|
607
463
|
enumerable: true,
|
|
608
|
-
get: function
|
|
464
|
+
get: function () {
|
|
609
465
|
return _height.height;
|
|
610
466
|
}
|
|
611
467
|
});
|
|
612
|
-
Object.defineProperty(exports, "heightPropTypes", {
|
|
613
|
-
enumerable: true,
|
|
614
|
-
get: function get() {
|
|
615
|
-
return _height.heightPropTypes;
|
|
616
|
-
}
|
|
617
|
-
});
|
|
618
468
|
Object.defineProperty(exports, "justifyContent", {
|
|
619
469
|
enumerable: true,
|
|
620
|
-
get: function
|
|
470
|
+
get: function () {
|
|
621
471
|
return _justify_content.justifyContent;
|
|
622
472
|
}
|
|
623
473
|
});
|
|
624
|
-
Object.defineProperty(exports, "justifyContentPropTypes", {
|
|
625
|
-
enumerable: true,
|
|
626
|
-
get: function get() {
|
|
627
|
-
return _justify_content.justifyContentPropTypes;
|
|
628
|
-
}
|
|
629
|
-
});
|
|
630
474
|
Object.defineProperty(exports, "justifyItems", {
|
|
631
475
|
enumerable: true,
|
|
632
|
-
get: function
|
|
476
|
+
get: function () {
|
|
633
477
|
return _justify_items.justifyItems;
|
|
634
478
|
}
|
|
635
479
|
});
|
|
636
|
-
Object.defineProperty(exports, "justifyItemsPropTypes", {
|
|
637
|
-
enumerable: true,
|
|
638
|
-
get: function get() {
|
|
639
|
-
return _justify_items.justifyItemsPropTypes;
|
|
640
|
-
}
|
|
641
|
-
});
|
|
642
480
|
Object.defineProperty(exports, "justifySelf", {
|
|
643
481
|
enumerable: true,
|
|
644
|
-
get: function
|
|
482
|
+
get: function () {
|
|
645
483
|
return _justify_self.justifySelf;
|
|
646
484
|
}
|
|
647
485
|
});
|
|
648
|
-
Object.defineProperty(exports, "justifySelfPropTypes", {
|
|
649
|
-
enumerable: true,
|
|
650
|
-
get: function get() {
|
|
651
|
-
return _justify_self.justifySelfPropTypes;
|
|
652
|
-
}
|
|
653
|
-
});
|
|
654
486
|
Object.defineProperty(exports, "left", {
|
|
655
487
|
enumerable: true,
|
|
656
|
-
get: function
|
|
488
|
+
get: function () {
|
|
657
489
|
return _left.left;
|
|
658
490
|
}
|
|
659
491
|
});
|
|
660
|
-
Object.defineProperty(exports, "leftPropTypes", {
|
|
661
|
-
enumerable: true,
|
|
662
|
-
get: function get() {
|
|
663
|
-
return _left.leftPropTypes;
|
|
664
|
-
}
|
|
665
|
-
});
|
|
666
492
|
Object.defineProperty(exports, "letterSpacing", {
|
|
667
493
|
enumerable: true,
|
|
668
|
-
get: function
|
|
494
|
+
get: function () {
|
|
669
495
|
return _letter_spacing.letterSpacing;
|
|
670
496
|
}
|
|
671
497
|
});
|
|
672
|
-
Object.defineProperty(exports, "letterSpacingPropTypes", {
|
|
673
|
-
enumerable: true,
|
|
674
|
-
get: function get() {
|
|
675
|
-
return _letter_spacing.letterSpacingPropTypes;
|
|
676
|
-
}
|
|
677
|
-
});
|
|
678
498
|
Object.defineProperty(exports, "lineHeight", {
|
|
679
499
|
enumerable: true,
|
|
680
|
-
get: function
|
|
500
|
+
get: function () {
|
|
681
501
|
return _line_height.lineHeight;
|
|
682
502
|
}
|
|
683
503
|
});
|
|
684
|
-
Object.defineProperty(exports, "lineHeightPropTypes", {
|
|
685
|
-
enumerable: true,
|
|
686
|
-
get: function get() {
|
|
687
|
-
return _line_height.lineHeightPropTypes;
|
|
688
|
-
}
|
|
689
|
-
});
|
|
690
504
|
Object.defineProperty(exports, "margin", {
|
|
691
505
|
enumerable: true,
|
|
692
|
-
get: function
|
|
506
|
+
get: function () {
|
|
693
507
|
return _margin.margin;
|
|
694
508
|
}
|
|
695
509
|
});
|
|
696
|
-
Object.defineProperty(exports, "marginPropTypes", {
|
|
697
|
-
enumerable: true,
|
|
698
|
-
get: function get() {
|
|
699
|
-
return _margin.marginPropTypes;
|
|
700
|
-
}
|
|
701
|
-
});
|
|
702
510
|
Object.defineProperty(exports, "maxHeight", {
|
|
703
511
|
enumerable: true,
|
|
704
|
-
get: function
|
|
512
|
+
get: function () {
|
|
705
513
|
return _max_height.maxHeight;
|
|
706
514
|
}
|
|
707
515
|
});
|
|
708
|
-
Object.defineProperty(exports, "maxHeightPropTypes", {
|
|
709
|
-
enumerable: true,
|
|
710
|
-
get: function get() {
|
|
711
|
-
return _max_height.maxHeightPropTypes;
|
|
712
|
-
}
|
|
713
|
-
});
|
|
714
516
|
Object.defineProperty(exports, "maxWidth", {
|
|
715
517
|
enumerable: true,
|
|
716
|
-
get: function
|
|
518
|
+
get: function () {
|
|
717
519
|
return _max_width.maxWidth;
|
|
718
520
|
}
|
|
719
521
|
});
|
|
720
|
-
Object.defineProperty(exports, "maxWidthPropTypes", {
|
|
721
|
-
enumerable: true,
|
|
722
|
-
get: function get() {
|
|
723
|
-
return _max_width.maxWidthPropTypes;
|
|
724
|
-
}
|
|
725
|
-
});
|
|
726
522
|
Object.defineProperty(exports, "minHeight", {
|
|
727
523
|
enumerable: true,
|
|
728
|
-
get: function
|
|
524
|
+
get: function () {
|
|
729
525
|
return _min_height.minHeight;
|
|
730
526
|
}
|
|
731
527
|
});
|
|
732
|
-
Object.defineProperty(exports, "minHeightPropTypes", {
|
|
733
|
-
enumerable: true,
|
|
734
|
-
get: function get() {
|
|
735
|
-
return _min_height.minHeightPropTypes;
|
|
736
|
-
}
|
|
737
|
-
});
|
|
738
528
|
Object.defineProperty(exports, "minWidth", {
|
|
739
529
|
enumerable: true,
|
|
740
|
-
get: function
|
|
530
|
+
get: function () {
|
|
741
531
|
return _min_width.minWidth;
|
|
742
532
|
}
|
|
743
533
|
});
|
|
744
|
-
Object.defineProperty(exports, "minWidthPropTypes", {
|
|
745
|
-
enumerable: true,
|
|
746
|
-
get: function get() {
|
|
747
|
-
return _min_width.minWidthPropTypes;
|
|
748
|
-
}
|
|
749
|
-
});
|
|
750
534
|
Object.defineProperty(exports, "opacity", {
|
|
751
535
|
enumerable: true,
|
|
752
|
-
get: function
|
|
536
|
+
get: function () {
|
|
753
537
|
return _opacity.opacity;
|
|
754
538
|
}
|
|
755
539
|
});
|
|
756
|
-
Object.defineProperty(exports, "opacityPropTypes", {
|
|
757
|
-
enumerable: true,
|
|
758
|
-
get: function get() {
|
|
759
|
-
return _opacity.opacityPropTypes;
|
|
760
|
-
}
|
|
761
|
-
});
|
|
762
540
|
Object.defineProperty(exports, "order", {
|
|
763
541
|
enumerable: true,
|
|
764
|
-
get: function
|
|
542
|
+
get: function () {
|
|
765
543
|
return _order.order;
|
|
766
544
|
}
|
|
767
545
|
});
|
|
768
|
-
Object.defineProperty(exports, "orderPropTypes", {
|
|
769
|
-
enumerable: true,
|
|
770
|
-
get: function get() {
|
|
771
|
-
return _order.orderPropTypes;
|
|
772
|
-
}
|
|
773
|
-
});
|
|
774
546
|
Object.defineProperty(exports, "overflow", {
|
|
775
547
|
enumerable: true,
|
|
776
|
-
get: function
|
|
548
|
+
get: function () {
|
|
777
549
|
return _overflow.overflow;
|
|
778
550
|
}
|
|
779
551
|
});
|
|
780
|
-
Object.defineProperty(exports, "overflowPropTypes", {
|
|
781
|
-
enumerable: true,
|
|
782
|
-
get: function get() {
|
|
783
|
-
return _overflow.overflowPropTypes;
|
|
784
|
-
}
|
|
785
|
-
});
|
|
786
552
|
Object.defineProperty(exports, "padding", {
|
|
787
553
|
enumerable: true,
|
|
788
|
-
get: function
|
|
554
|
+
get: function () {
|
|
789
555
|
return _padding.padding;
|
|
790
556
|
}
|
|
791
557
|
});
|
|
792
|
-
Object.defineProperty(exports, "paddingPropTypes", {
|
|
793
|
-
enumerable: true,
|
|
794
|
-
get: function get() {
|
|
795
|
-
return _padding.paddingPropTypes;
|
|
796
|
-
}
|
|
797
|
-
});
|
|
798
558
|
Object.defineProperty(exports, "position", {
|
|
799
559
|
enumerable: true,
|
|
800
|
-
get: function
|
|
560
|
+
get: function () {
|
|
801
561
|
return _position.position;
|
|
802
562
|
}
|
|
803
563
|
});
|
|
804
|
-
Object.defineProperty(exports, "positionPropTypes", {
|
|
805
|
-
enumerable: true,
|
|
806
|
-
get: function get() {
|
|
807
|
-
return _position.positionPropTypes;
|
|
808
|
-
}
|
|
809
|
-
});
|
|
810
564
|
Object.defineProperty(exports, "positionSet", {
|
|
811
565
|
enumerable: true,
|
|
812
|
-
get: function
|
|
566
|
+
get: function () {
|
|
813
567
|
return _position_set.positionSet;
|
|
814
568
|
}
|
|
815
569
|
});
|
|
816
|
-
Object.defineProperty(exports, "positionSetPropTypes", {
|
|
817
|
-
enumerable: true,
|
|
818
|
-
get: function get() {
|
|
819
|
-
return _position_set.positionSetPropTypes;
|
|
820
|
-
}
|
|
821
|
-
});
|
|
822
570
|
Object.defineProperty(exports, "right", {
|
|
823
571
|
enumerable: true,
|
|
824
|
-
get: function
|
|
572
|
+
get: function () {
|
|
825
573
|
return _right.right;
|
|
826
574
|
}
|
|
827
575
|
});
|
|
828
|
-
Object.defineProperty(exports, "rightPropTypes", {
|
|
829
|
-
enumerable: true,
|
|
830
|
-
get: function get() {
|
|
831
|
-
return _right.rightPropTypes;
|
|
832
|
-
}
|
|
833
|
-
});
|
|
834
576
|
Object.defineProperty(exports, "spacingSet", {
|
|
835
577
|
enumerable: true,
|
|
836
|
-
get: function
|
|
578
|
+
get: function () {
|
|
837
579
|
return _spacing_set.spacingSet;
|
|
838
580
|
}
|
|
839
581
|
});
|
|
840
|
-
Object.defineProperty(exports, "spacingSetPropTypes", {
|
|
841
|
-
enumerable: true,
|
|
842
|
-
get: function get() {
|
|
843
|
-
return _spacing_set.spacingSetPropTypes;
|
|
844
|
-
}
|
|
845
|
-
});
|
|
846
582
|
Object.defineProperty(exports, "textAlign", {
|
|
847
583
|
enumerable: true,
|
|
848
|
-
get: function
|
|
584
|
+
get: function () {
|
|
849
585
|
return _text_align.textAlign;
|
|
850
586
|
}
|
|
851
587
|
});
|
|
852
|
-
Object.defineProperty(exports, "textAlignPropTypes", {
|
|
853
|
-
enumerable: true,
|
|
854
|
-
get: function get() {
|
|
855
|
-
return _text_align.textAlignPropTypes;
|
|
856
|
-
}
|
|
857
|
-
});
|
|
858
588
|
Object.defineProperty(exports, "textColor", {
|
|
859
589
|
enumerable: true,
|
|
860
|
-
get: function
|
|
590
|
+
get: function () {
|
|
861
591
|
return _text_color.textColor;
|
|
862
592
|
}
|
|
863
593
|
});
|
|
864
|
-
Object.defineProperty(exports, "textColorPropTypes", {
|
|
865
|
-
enumerable: true,
|
|
866
|
-
get: function get() {
|
|
867
|
-
return _text_color.textColorPropTypes;
|
|
868
|
-
}
|
|
869
|
-
});
|
|
870
594
|
Object.defineProperty(exports, "textDecoration", {
|
|
871
595
|
enumerable: true,
|
|
872
|
-
get: function
|
|
596
|
+
get: function () {
|
|
873
597
|
return _text_decoration.textDecoration;
|
|
874
598
|
}
|
|
875
599
|
});
|
|
876
|
-
Object.defineProperty(exports, "textDecorationPropTypes", {
|
|
877
|
-
enumerable: true,
|
|
878
|
-
get: function get() {
|
|
879
|
-
return _text_decoration.textDecorationPropTypes;
|
|
880
|
-
}
|
|
881
|
-
});
|
|
882
600
|
Object.defineProperty(exports, "textTransform", {
|
|
883
601
|
enumerable: true,
|
|
884
|
-
get: function
|
|
602
|
+
get: function () {
|
|
885
603
|
return _text_transform.textTransform;
|
|
886
604
|
}
|
|
887
605
|
});
|
|
888
|
-
Object.defineProperty(exports, "textTransformPropTypes", {
|
|
889
|
-
enumerable: true,
|
|
890
|
-
get: function get() {
|
|
891
|
-
return _text_transform.textTransformPropTypes;
|
|
892
|
-
}
|
|
893
|
-
});
|
|
894
606
|
Object.defineProperty(exports, "top", {
|
|
895
607
|
enumerable: true,
|
|
896
|
-
get: function
|
|
608
|
+
get: function () {
|
|
897
609
|
return _top.top;
|
|
898
610
|
}
|
|
899
611
|
});
|
|
900
|
-
Object.defineProperty(exports, "topPropTypes", {
|
|
901
|
-
enumerable: true,
|
|
902
|
-
get: function get() {
|
|
903
|
-
return _top.topPropTypes;
|
|
904
|
-
}
|
|
905
|
-
});
|
|
906
612
|
Object.defineProperty(exports, "typographySet", {
|
|
907
613
|
enumerable: true,
|
|
908
|
-
get: function
|
|
614
|
+
get: function () {
|
|
909
615
|
return _typography_set.typographySet;
|
|
910
616
|
}
|
|
911
617
|
});
|
|
912
|
-
Object.defineProperty(exports, "typographySetPropTypes", {
|
|
913
|
-
enumerable: true,
|
|
914
|
-
get: function get() {
|
|
915
|
-
return _typography_set.typographySetPropTypes;
|
|
916
|
-
}
|
|
917
|
-
});
|
|
918
618
|
Object.defineProperty(exports, "width", {
|
|
919
619
|
enumerable: true,
|
|
920
|
-
get: function
|
|
620
|
+
get: function () {
|
|
921
621
|
return _width.width;
|
|
922
622
|
}
|
|
923
623
|
});
|
|
924
|
-
Object.defineProperty(exports, "widthPropTypes", {
|
|
925
|
-
enumerable: true,
|
|
926
|
-
get: function get() {
|
|
927
|
-
return _width.widthPropTypes;
|
|
928
|
-
}
|
|
929
|
-
});
|
|
930
624
|
Object.defineProperty(exports, "zIndex", {
|
|
931
625
|
enumerable: true,
|
|
932
|
-
get: function
|
|
626
|
+
get: function () {
|
|
933
627
|
return _z_index.zIndex;
|
|
934
628
|
}
|
|
935
629
|
});
|
|
936
|
-
Object.defineProperty(exports, "zIndexPropTypes", {
|
|
937
|
-
enumerable: true,
|
|
938
|
-
get: function get() {
|
|
939
|
-
return _z_index.zIndexPropTypes;
|
|
940
|
-
}
|
|
941
|
-
});
|
|
942
630
|
var _appearance_set = require("./appearance/appearance_set");
|
|
943
631
|
var _background_color = require("./appearance/background_color");
|
|
944
632
|
var _border_radius = require("./appearance/border_radius");
|