@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,342 @@
|
|
|
1
|
+
declare const ThemeContext: import("react").Context<{
|
|
2
|
+
textStyles: {
|
|
3
|
+
default: {
|
|
4
|
+
small: {
|
|
5
|
+
fontSize: number;
|
|
6
|
+
lineHeight: string;
|
|
7
|
+
fontWeight: number;
|
|
8
|
+
textColor: string;
|
|
9
|
+
fontFamily: string;
|
|
10
|
+
marginY: number;
|
|
11
|
+
};
|
|
12
|
+
default: {
|
|
13
|
+
fontSize: number;
|
|
14
|
+
lineHeight: string;
|
|
15
|
+
fontWeight: number;
|
|
16
|
+
textColor: string;
|
|
17
|
+
fontFamily: string;
|
|
18
|
+
marginY: number;
|
|
19
|
+
};
|
|
20
|
+
large: {
|
|
21
|
+
fontSize: number;
|
|
22
|
+
lineHeight: string;
|
|
23
|
+
fontWeight: number;
|
|
24
|
+
textColor: string;
|
|
25
|
+
fontFamily: string;
|
|
26
|
+
marginY: number;
|
|
27
|
+
};
|
|
28
|
+
xlarge: {
|
|
29
|
+
fontSize: number;
|
|
30
|
+
lineHeight: string;
|
|
31
|
+
fontWeight: number;
|
|
32
|
+
textColor: string;
|
|
33
|
+
fontFamily: string;
|
|
34
|
+
marginY: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
paragraph: {
|
|
38
|
+
small: {
|
|
39
|
+
fontSize: number;
|
|
40
|
+
lineHeight: string;
|
|
41
|
+
fontWeight: number;
|
|
42
|
+
textColor: string;
|
|
43
|
+
fontFamily: string;
|
|
44
|
+
marginTop: number;
|
|
45
|
+
marginBottom: string;
|
|
46
|
+
};
|
|
47
|
+
default: {
|
|
48
|
+
fontSize: number;
|
|
49
|
+
lineHeight: string;
|
|
50
|
+
fontWeight: number;
|
|
51
|
+
textColor: string;
|
|
52
|
+
fontFamily: string;
|
|
53
|
+
marginTop: number;
|
|
54
|
+
marginBottom: string;
|
|
55
|
+
};
|
|
56
|
+
large: {
|
|
57
|
+
fontSize: number;
|
|
58
|
+
lineHeight: string;
|
|
59
|
+
fontWeight: number;
|
|
60
|
+
textColor: string;
|
|
61
|
+
fontFamily: string;
|
|
62
|
+
marginTop: number;
|
|
63
|
+
marginBottom: string;
|
|
64
|
+
};
|
|
65
|
+
xlarge: {
|
|
66
|
+
fontSize: number;
|
|
67
|
+
lineHeight: string;
|
|
68
|
+
fontWeight: number;
|
|
69
|
+
textColor: string;
|
|
70
|
+
fontFamily: string;
|
|
71
|
+
marginTop: number;
|
|
72
|
+
marginBottom: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
headingStyles: import("../../../shared/private_utils").ObjectMap<"default" | "caps", {
|
|
77
|
+
small?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
78
|
+
default?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
79
|
+
large?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
80
|
+
xsmall?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
81
|
+
xlarge?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
82
|
+
xxlarge?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
83
|
+
}>;
|
|
84
|
+
buttonVariants: {
|
|
85
|
+
default: string;
|
|
86
|
+
primary: string;
|
|
87
|
+
secondary: string;
|
|
88
|
+
danger: string;
|
|
89
|
+
};
|
|
90
|
+
linkVariants: {
|
|
91
|
+
default: string;
|
|
92
|
+
dark: string;
|
|
93
|
+
light: string;
|
|
94
|
+
};
|
|
95
|
+
inputVariants: {
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
selectVariants: {
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
selectButtonsVariants: {
|
|
102
|
+
default: {
|
|
103
|
+
containerClassNameForVariant: string;
|
|
104
|
+
optionClassNameForVariant: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
switchVariants: {
|
|
108
|
+
default: {
|
|
109
|
+
switchClassName: string;
|
|
110
|
+
switchContainerClassName: string;
|
|
111
|
+
switchLabelClassName: string;
|
|
112
|
+
baseClassName: string;
|
|
113
|
+
};
|
|
114
|
+
danger: {
|
|
115
|
+
switchClassName: string;
|
|
116
|
+
switchContainerClassName: string;
|
|
117
|
+
switchLabelClassName: string;
|
|
118
|
+
baseClassName: string;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
textButtonVariants: {
|
|
122
|
+
default: string;
|
|
123
|
+
dark: string;
|
|
124
|
+
light: string;
|
|
125
|
+
};
|
|
126
|
+
buttonSizes: {
|
|
127
|
+
small: {
|
|
128
|
+
paddingX: string;
|
|
129
|
+
fontSize: number;
|
|
130
|
+
height: string;
|
|
131
|
+
lineHeight: string;
|
|
132
|
+
};
|
|
133
|
+
default: {
|
|
134
|
+
paddingX: string;
|
|
135
|
+
fontSize: number;
|
|
136
|
+
height: string;
|
|
137
|
+
lineHeight: string;
|
|
138
|
+
};
|
|
139
|
+
large: {
|
|
140
|
+
paddingX: string;
|
|
141
|
+
fontSize: number;
|
|
142
|
+
height: string;
|
|
143
|
+
lineHeight: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
selectSizes: {
|
|
147
|
+
small: {
|
|
148
|
+
paddingLeft: string;
|
|
149
|
+
paddingRight: string;
|
|
150
|
+
backgroundPosition: string;
|
|
151
|
+
fontSize: number;
|
|
152
|
+
height: string;
|
|
153
|
+
lineHeight: string;
|
|
154
|
+
};
|
|
155
|
+
default: {
|
|
156
|
+
paddingLeft: string;
|
|
157
|
+
paddingRight: string;
|
|
158
|
+
backgroundPosition: string;
|
|
159
|
+
fontSize: number;
|
|
160
|
+
height: string;
|
|
161
|
+
lineHeight: string;
|
|
162
|
+
};
|
|
163
|
+
large: {
|
|
164
|
+
paddingLeft: string;
|
|
165
|
+
paddingRight: string;
|
|
166
|
+
backgroundPosition: string;
|
|
167
|
+
fontSize: number;
|
|
168
|
+
height: string;
|
|
169
|
+
lineHeight: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
inputSizes: {
|
|
173
|
+
small: {
|
|
174
|
+
paddingX: string;
|
|
175
|
+
fontSize: number;
|
|
176
|
+
height: string;
|
|
177
|
+
lineHeight: string;
|
|
178
|
+
};
|
|
179
|
+
default: {
|
|
180
|
+
paddingX: string;
|
|
181
|
+
fontSize: number;
|
|
182
|
+
height: string;
|
|
183
|
+
lineHeight: string;
|
|
184
|
+
};
|
|
185
|
+
large: {
|
|
186
|
+
paddingX: string;
|
|
187
|
+
fontSize: number;
|
|
188
|
+
height: string;
|
|
189
|
+
lineHeight: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
selectButtonsSizes: {
|
|
193
|
+
small: {
|
|
194
|
+
padding: number;
|
|
195
|
+
fontSize: number;
|
|
196
|
+
height: string;
|
|
197
|
+
lineHeight: string;
|
|
198
|
+
};
|
|
199
|
+
default: {
|
|
200
|
+
padding: number;
|
|
201
|
+
fontSize: number;
|
|
202
|
+
height: string;
|
|
203
|
+
lineHeight: string;
|
|
204
|
+
};
|
|
205
|
+
large: {
|
|
206
|
+
padding: number;
|
|
207
|
+
fontSize: number;
|
|
208
|
+
height: string;
|
|
209
|
+
lineHeight: string;
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
switchSizes: {
|
|
213
|
+
small: {
|
|
214
|
+
paddingX: string;
|
|
215
|
+
fontSize: number;
|
|
216
|
+
height: string;
|
|
217
|
+
lineHeight: string;
|
|
218
|
+
};
|
|
219
|
+
default: {
|
|
220
|
+
paddingX: string;
|
|
221
|
+
fontSize: number;
|
|
222
|
+
height: string;
|
|
223
|
+
lineHeight: string;
|
|
224
|
+
};
|
|
225
|
+
large: {
|
|
226
|
+
paddingX: string;
|
|
227
|
+
fontSize: number;
|
|
228
|
+
height: string;
|
|
229
|
+
lineHeight: string;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
colors: {
|
|
233
|
+
white: string;
|
|
234
|
+
dark: string;
|
|
235
|
+
light: string;
|
|
236
|
+
lightGray1: string;
|
|
237
|
+
lightGray2: string;
|
|
238
|
+
lightGray3: string;
|
|
239
|
+
lightGray4: string;
|
|
240
|
+
lighten1: string;
|
|
241
|
+
lighten2: string;
|
|
242
|
+
lighten3: string;
|
|
243
|
+
lighten4: string;
|
|
244
|
+
darken1: string;
|
|
245
|
+
darken2: string;
|
|
246
|
+
darken3: string;
|
|
247
|
+
darken4: string;
|
|
248
|
+
blueBright: string;
|
|
249
|
+
blue: string;
|
|
250
|
+
blueDark1: string;
|
|
251
|
+
blueLight1: string;
|
|
252
|
+
blueLight2: string;
|
|
253
|
+
cyanBright: string;
|
|
254
|
+
cyan: string;
|
|
255
|
+
cyanDark1: string;
|
|
256
|
+
cyanLight1: string;
|
|
257
|
+
cyanLight2: string;
|
|
258
|
+
grayBright: string;
|
|
259
|
+
gray: string;
|
|
260
|
+
grayDark1: string;
|
|
261
|
+
grayLight1: string;
|
|
262
|
+
grayLight2: string;
|
|
263
|
+
greenBright: string;
|
|
264
|
+
green: string;
|
|
265
|
+
greenDark1: string;
|
|
266
|
+
greenLight1: string;
|
|
267
|
+
greenLight2: string;
|
|
268
|
+
orangeBright: string;
|
|
269
|
+
orange: string;
|
|
270
|
+
orangeDark1: string;
|
|
271
|
+
orangeLight1: string;
|
|
272
|
+
orangeLight2: string;
|
|
273
|
+
pinkBright: string;
|
|
274
|
+
pink: string;
|
|
275
|
+
pinkDark1: string;
|
|
276
|
+
pinkLight1: string;
|
|
277
|
+
pinkLight2: string;
|
|
278
|
+
purpleBright: string;
|
|
279
|
+
purple: string;
|
|
280
|
+
purpleDark1: string;
|
|
281
|
+
purpleLight1: string;
|
|
282
|
+
purpleLight2: string;
|
|
283
|
+
redBright: string;
|
|
284
|
+
red: string;
|
|
285
|
+
redDark1: string;
|
|
286
|
+
redLight1: string;
|
|
287
|
+
redLight2: string;
|
|
288
|
+
tealBright: string;
|
|
289
|
+
teal: string;
|
|
290
|
+
tealDark1: string;
|
|
291
|
+
tealLight1: string;
|
|
292
|
+
tealLight2: string;
|
|
293
|
+
yellowBright: string;
|
|
294
|
+
yellow: string;
|
|
295
|
+
yellowDark1: string;
|
|
296
|
+
yellowLight1: string;
|
|
297
|
+
yellowLight2: string;
|
|
298
|
+
};
|
|
299
|
+
textColorsByBackgroundColor: import("../../../shared/private_utils").ObjectMap<import("../../../shared/colors").Color, string>;
|
|
300
|
+
textColors: {
|
|
301
|
+
dark: string;
|
|
302
|
+
default: string;
|
|
303
|
+
light: string;
|
|
304
|
+
};
|
|
305
|
+
breakpoints: {
|
|
306
|
+
xsmallViewport: string;
|
|
307
|
+
smallViewport: string;
|
|
308
|
+
mediumViewport: string;
|
|
309
|
+
largeViewport: string;
|
|
310
|
+
};
|
|
311
|
+
borderWidths: {
|
|
312
|
+
default: string;
|
|
313
|
+
thick: string;
|
|
314
|
+
};
|
|
315
|
+
borders: {
|
|
316
|
+
default: string;
|
|
317
|
+
thick: string;
|
|
318
|
+
};
|
|
319
|
+
fontFamilies: {
|
|
320
|
+
default: string;
|
|
321
|
+
monospace: string;
|
|
322
|
+
};
|
|
323
|
+
fontSizes: string[];
|
|
324
|
+
fontWeights: {
|
|
325
|
+
strong: number;
|
|
326
|
+
};
|
|
327
|
+
opacities: {
|
|
328
|
+
normal: number;
|
|
329
|
+
quiet: number;
|
|
330
|
+
quieter: number;
|
|
331
|
+
quietest: number;
|
|
332
|
+
invisible: number;
|
|
333
|
+
};
|
|
334
|
+
radii: {
|
|
335
|
+
default: number;
|
|
336
|
+
large: number;
|
|
337
|
+
circle: number;
|
|
338
|
+
};
|
|
339
|
+
space: number[];
|
|
340
|
+
}>;
|
|
341
|
+
export default ThemeContext;
|
|
342
|
+
//# sourceMappingURL=theme_context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme_context.d.ts","sourceRoot":"","sources":["../../../../../../src/base/ui/theme/theme_context.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAyC,CAAC;AAC5D,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
declare const useTheme: () => {
|
|
2
|
+
textStyles: {
|
|
3
|
+
default: {
|
|
4
|
+
small: {
|
|
5
|
+
fontSize: number;
|
|
6
|
+
lineHeight: string;
|
|
7
|
+
fontWeight: number;
|
|
8
|
+
textColor: string;
|
|
9
|
+
fontFamily: string;
|
|
10
|
+
marginY: number;
|
|
11
|
+
};
|
|
12
|
+
default: {
|
|
13
|
+
fontSize: number;
|
|
14
|
+
lineHeight: string;
|
|
15
|
+
fontWeight: number;
|
|
16
|
+
textColor: string;
|
|
17
|
+
fontFamily: string;
|
|
18
|
+
marginY: number;
|
|
19
|
+
};
|
|
20
|
+
large: {
|
|
21
|
+
fontSize: number;
|
|
22
|
+
lineHeight: string;
|
|
23
|
+
fontWeight: number;
|
|
24
|
+
textColor: string;
|
|
25
|
+
fontFamily: string;
|
|
26
|
+
marginY: number;
|
|
27
|
+
};
|
|
28
|
+
xlarge: {
|
|
29
|
+
fontSize: number;
|
|
30
|
+
lineHeight: string;
|
|
31
|
+
fontWeight: number;
|
|
32
|
+
textColor: string;
|
|
33
|
+
fontFamily: string;
|
|
34
|
+
marginY: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
paragraph: {
|
|
38
|
+
small: {
|
|
39
|
+
fontSize: number;
|
|
40
|
+
lineHeight: string;
|
|
41
|
+
fontWeight: number;
|
|
42
|
+
textColor: string;
|
|
43
|
+
fontFamily: string;
|
|
44
|
+
marginTop: number;
|
|
45
|
+
marginBottom: string;
|
|
46
|
+
};
|
|
47
|
+
default: {
|
|
48
|
+
fontSize: number;
|
|
49
|
+
lineHeight: string;
|
|
50
|
+
fontWeight: number;
|
|
51
|
+
textColor: string;
|
|
52
|
+
fontFamily: string;
|
|
53
|
+
marginTop: number;
|
|
54
|
+
marginBottom: string;
|
|
55
|
+
};
|
|
56
|
+
large: {
|
|
57
|
+
fontSize: number;
|
|
58
|
+
lineHeight: string;
|
|
59
|
+
fontWeight: number;
|
|
60
|
+
textColor: string;
|
|
61
|
+
fontFamily: string;
|
|
62
|
+
marginTop: number;
|
|
63
|
+
marginBottom: string;
|
|
64
|
+
};
|
|
65
|
+
xlarge: {
|
|
66
|
+
fontSize: number;
|
|
67
|
+
lineHeight: string;
|
|
68
|
+
fontWeight: number;
|
|
69
|
+
textColor: string;
|
|
70
|
+
fontFamily: string;
|
|
71
|
+
marginTop: number;
|
|
72
|
+
marginBottom: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
headingStyles: import("../../../shared/private_utils").ObjectMap<"default" | "caps", {
|
|
77
|
+
small?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
78
|
+
default?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
79
|
+
large?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
80
|
+
xsmall?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
81
|
+
xlarge?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
82
|
+
xxlarge?: (import("../system").TypographySetProps & import("../system").MarginProps) | undefined;
|
|
83
|
+
}>;
|
|
84
|
+
buttonVariants: {
|
|
85
|
+
default: string;
|
|
86
|
+
primary: string;
|
|
87
|
+
secondary: string;
|
|
88
|
+
danger: string;
|
|
89
|
+
};
|
|
90
|
+
linkVariants: {
|
|
91
|
+
default: string;
|
|
92
|
+
dark: string;
|
|
93
|
+
light: string;
|
|
94
|
+
};
|
|
95
|
+
inputVariants: {
|
|
96
|
+
default: string;
|
|
97
|
+
};
|
|
98
|
+
selectVariants: {
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
selectButtonsVariants: {
|
|
102
|
+
default: {
|
|
103
|
+
containerClassNameForVariant: string;
|
|
104
|
+
optionClassNameForVariant: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
switchVariants: {
|
|
108
|
+
default: {
|
|
109
|
+
switchClassName: string;
|
|
110
|
+
switchContainerClassName: string;
|
|
111
|
+
switchLabelClassName: string;
|
|
112
|
+
baseClassName: string;
|
|
113
|
+
};
|
|
114
|
+
danger: {
|
|
115
|
+
switchClassName: string;
|
|
116
|
+
switchContainerClassName: string;
|
|
117
|
+
switchLabelClassName: string;
|
|
118
|
+
baseClassName: string;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
textButtonVariants: {
|
|
122
|
+
default: string;
|
|
123
|
+
dark: string;
|
|
124
|
+
light: string;
|
|
125
|
+
};
|
|
126
|
+
buttonSizes: {
|
|
127
|
+
small: {
|
|
128
|
+
paddingX: string;
|
|
129
|
+
fontSize: number;
|
|
130
|
+
height: string;
|
|
131
|
+
lineHeight: string;
|
|
132
|
+
};
|
|
133
|
+
default: {
|
|
134
|
+
paddingX: string;
|
|
135
|
+
fontSize: number;
|
|
136
|
+
height: string;
|
|
137
|
+
lineHeight: string;
|
|
138
|
+
};
|
|
139
|
+
large: {
|
|
140
|
+
paddingX: string;
|
|
141
|
+
fontSize: number;
|
|
142
|
+
height: string;
|
|
143
|
+
lineHeight: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
selectSizes: {
|
|
147
|
+
small: {
|
|
148
|
+
paddingLeft: string;
|
|
149
|
+
paddingRight: string;
|
|
150
|
+
backgroundPosition: string;
|
|
151
|
+
fontSize: number;
|
|
152
|
+
height: string;
|
|
153
|
+
lineHeight: string;
|
|
154
|
+
};
|
|
155
|
+
default: {
|
|
156
|
+
paddingLeft: string;
|
|
157
|
+
paddingRight: string;
|
|
158
|
+
backgroundPosition: string;
|
|
159
|
+
fontSize: number;
|
|
160
|
+
height: string;
|
|
161
|
+
lineHeight: string;
|
|
162
|
+
};
|
|
163
|
+
large: {
|
|
164
|
+
paddingLeft: string;
|
|
165
|
+
paddingRight: string;
|
|
166
|
+
backgroundPosition: string;
|
|
167
|
+
fontSize: number;
|
|
168
|
+
height: string;
|
|
169
|
+
lineHeight: string;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
inputSizes: {
|
|
173
|
+
small: {
|
|
174
|
+
paddingX: string;
|
|
175
|
+
fontSize: number;
|
|
176
|
+
height: string;
|
|
177
|
+
lineHeight: string;
|
|
178
|
+
};
|
|
179
|
+
default: {
|
|
180
|
+
paddingX: string;
|
|
181
|
+
fontSize: number;
|
|
182
|
+
height: string;
|
|
183
|
+
lineHeight: string;
|
|
184
|
+
};
|
|
185
|
+
large: {
|
|
186
|
+
paddingX: string;
|
|
187
|
+
fontSize: number;
|
|
188
|
+
height: string;
|
|
189
|
+
lineHeight: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
selectButtonsSizes: {
|
|
193
|
+
small: {
|
|
194
|
+
padding: number;
|
|
195
|
+
fontSize: number;
|
|
196
|
+
height: string;
|
|
197
|
+
lineHeight: string;
|
|
198
|
+
};
|
|
199
|
+
default: {
|
|
200
|
+
padding: number;
|
|
201
|
+
fontSize: number;
|
|
202
|
+
height: string;
|
|
203
|
+
lineHeight: string;
|
|
204
|
+
};
|
|
205
|
+
large: {
|
|
206
|
+
padding: number;
|
|
207
|
+
fontSize: number;
|
|
208
|
+
height: string;
|
|
209
|
+
lineHeight: string;
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
switchSizes: {
|
|
213
|
+
small: {
|
|
214
|
+
paddingX: string;
|
|
215
|
+
fontSize: number;
|
|
216
|
+
height: string;
|
|
217
|
+
lineHeight: string;
|
|
218
|
+
};
|
|
219
|
+
default: {
|
|
220
|
+
paddingX: string;
|
|
221
|
+
fontSize: number;
|
|
222
|
+
height: string;
|
|
223
|
+
lineHeight: string;
|
|
224
|
+
};
|
|
225
|
+
large: {
|
|
226
|
+
paddingX: string;
|
|
227
|
+
fontSize: number;
|
|
228
|
+
height: string;
|
|
229
|
+
lineHeight: string;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
colors: {
|
|
233
|
+
white: string;
|
|
234
|
+
dark: string;
|
|
235
|
+
light: string;
|
|
236
|
+
lightGray1: string;
|
|
237
|
+
lightGray2: string;
|
|
238
|
+
lightGray3: string;
|
|
239
|
+
lightGray4: string;
|
|
240
|
+
lighten1: string;
|
|
241
|
+
lighten2: string;
|
|
242
|
+
lighten3: string;
|
|
243
|
+
lighten4: string;
|
|
244
|
+
darken1: string;
|
|
245
|
+
darken2: string;
|
|
246
|
+
darken3: string;
|
|
247
|
+
darken4: string;
|
|
248
|
+
blueBright: string;
|
|
249
|
+
blue: string;
|
|
250
|
+
blueDark1: string;
|
|
251
|
+
blueLight1: string;
|
|
252
|
+
blueLight2: string;
|
|
253
|
+
cyanBright: string;
|
|
254
|
+
cyan: string;
|
|
255
|
+
cyanDark1: string;
|
|
256
|
+
cyanLight1: string;
|
|
257
|
+
cyanLight2: string;
|
|
258
|
+
grayBright: string;
|
|
259
|
+
gray: string;
|
|
260
|
+
grayDark1: string;
|
|
261
|
+
grayLight1: string;
|
|
262
|
+
grayLight2: string;
|
|
263
|
+
greenBright: string;
|
|
264
|
+
green: string;
|
|
265
|
+
greenDark1: string;
|
|
266
|
+
greenLight1: string;
|
|
267
|
+
greenLight2: string;
|
|
268
|
+
orangeBright: string;
|
|
269
|
+
orange: string;
|
|
270
|
+
orangeDark1: string;
|
|
271
|
+
orangeLight1: string;
|
|
272
|
+
orangeLight2: string;
|
|
273
|
+
pinkBright: string;
|
|
274
|
+
pink: string;
|
|
275
|
+
pinkDark1: string;
|
|
276
|
+
pinkLight1: string;
|
|
277
|
+
pinkLight2: string;
|
|
278
|
+
purpleBright: string;
|
|
279
|
+
purple: string;
|
|
280
|
+
purpleDark1: string;
|
|
281
|
+
purpleLight1: string;
|
|
282
|
+
purpleLight2: string;
|
|
283
|
+
redBright: string;
|
|
284
|
+
red: string;
|
|
285
|
+
redDark1: string;
|
|
286
|
+
redLight1: string;
|
|
287
|
+
redLight2: string;
|
|
288
|
+
tealBright: string;
|
|
289
|
+
teal: string;
|
|
290
|
+
tealDark1: string;
|
|
291
|
+
tealLight1: string;
|
|
292
|
+
tealLight2: string;
|
|
293
|
+
yellowBright: string;
|
|
294
|
+
yellow: string;
|
|
295
|
+
yellowDark1: string;
|
|
296
|
+
yellowLight1: string;
|
|
297
|
+
yellowLight2: string;
|
|
298
|
+
};
|
|
299
|
+
textColorsByBackgroundColor: import("../../../shared/private_utils").ObjectMap<import("../../../shared/colors").Color, string>;
|
|
300
|
+
textColors: {
|
|
301
|
+
dark: string;
|
|
302
|
+
default: string;
|
|
303
|
+
light: string;
|
|
304
|
+
};
|
|
305
|
+
breakpoints: {
|
|
306
|
+
xsmallViewport: string;
|
|
307
|
+
smallViewport: string;
|
|
308
|
+
mediumViewport: string;
|
|
309
|
+
largeViewport: string;
|
|
310
|
+
};
|
|
311
|
+
borderWidths: {
|
|
312
|
+
default: string;
|
|
313
|
+
thick: string;
|
|
314
|
+
};
|
|
315
|
+
borders: {
|
|
316
|
+
default: string;
|
|
317
|
+
thick: string;
|
|
318
|
+
};
|
|
319
|
+
fontFamilies: {
|
|
320
|
+
default: string;
|
|
321
|
+
monospace: string;
|
|
322
|
+
};
|
|
323
|
+
fontSizes: string[];
|
|
324
|
+
fontWeights: {
|
|
325
|
+
strong: number;
|
|
326
|
+
};
|
|
327
|
+
opacities: {
|
|
328
|
+
normal: number;
|
|
329
|
+
quiet: number;
|
|
330
|
+
quieter: number;
|
|
331
|
+
quietest: number;
|
|
332
|
+
invisible: number;
|
|
333
|
+
};
|
|
334
|
+
radii: {
|
|
335
|
+
default: number;
|
|
336
|
+
large: number;
|
|
337
|
+
circle: number;
|
|
338
|
+
};
|
|
339
|
+
space: number[];
|
|
340
|
+
};
|
|
341
|
+
export default useTheme;
|
|
342
|
+
//# sourceMappingURL=use_theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use_theme.d.ts","sourceRoot":"","sources":["../../../../../../src/base/ui/theme/use_theme.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC;AAChD,eAAe,QAAQ,CAAC"}
|