@airtable/blocks 0.0.0-experimental-f52bc4e5e-20250709 → 0.0.0-experimental-3649c7162-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/esm/base/assert_run_context.js +12 -0
- package/dist/{cjs → esm}/base/index.js +30 -32
- package/dist/esm/base/models/abstract_model_with_async_data.js +190 -0
- package/dist/esm/base/models/base.js +252 -0
- package/dist/esm/base/models/create_aggregators.js +90 -0
- package/dist/esm/base/models/cursor.js +305 -0
- package/dist/esm/base/models/field.js +338 -0
- package/dist/esm/base/models/grouped_record_query_result.js +280 -0
- package/dist/esm/base/models/linked_records_query_result.js +553 -0
- package/dist/{cjs → esm}/base/models/models.js +19 -40
- package/dist/esm/base/models/mutations.js +312 -0
- package/dist/esm/base/models/object_pool.js +145 -0
- package/dist/esm/base/models/record.js +239 -0
- package/dist/{cjs → esm}/base/models/record_coloring.js +6 -6
- package/dist/esm/base/models/record_query_result.js +657 -0
- package/dist/esm/base/models/record_store.js +475 -0
- package/dist/esm/base/models/session.js +154 -0
- package/dist/esm/base/models/table.js +520 -0
- package/dist/esm/base/models/table_or_view_query_result.js +749 -0
- package/dist/esm/base/models/view.js +326 -0
- package/dist/esm/base/models/view_data_store.js +265 -0
- package/dist/esm/base/models/view_metadata_query_result.js +176 -0
- package/dist/esm/base/perform_record_action.js +215 -0
- package/dist/esm/base/sdk.js +178 -0
- package/dist/esm/base/settings_button.js +118 -0
- package/dist/{cjs → esm}/base/types/airtable_interface.js +1 -1
- package/dist/{cjs → esm}/base/types/mutations.js +5 -11
- package/dist/{cjs → esm}/base/types/undo_redo.js +1 -1
- package/dist/{cjs → esm}/base/types/view.js +1 -1
- package/dist/{cjs → esm}/base/ui/base_provider.js +6 -8
- package/dist/esm/base/ui/baymax_utils.js +461 -0
- package/dist/esm/base/ui/block_wrapper.js +118 -0
- package/dist/esm/base/ui/box.js +84 -0
- package/dist/esm/base/ui/button.js +152 -0
- package/dist/esm/base/ui/cell_renderer.js +198 -0
- package/dist/esm/base/ui/choice_token.js +93 -0
- package/dist/esm/base/ui/collaborator_token.js +123 -0
- package/dist/esm/base/ui/color_palette.js +196 -0
- package/dist/esm/base/ui/color_palette_synced.js +69 -0
- package/dist/esm/base/ui/confirmation_dialog.js +103 -0
- package/dist/{cjs → esm}/base/ui/control_sizes.js +24 -22
- package/dist/{cjs → esm}/base/ui/create_detect_element_resize.js +6 -10
- package/dist/{cjs → esm}/base/ui/css_helpers.js +1 -1
- package/dist/esm/base/ui/dialog.js +101 -0
- package/dist/esm/base/ui/dialog_close_button.js +106 -0
- package/dist/{cjs → esm}/base/ui/expand_record.js +1 -2
- package/dist/{cjs → esm}/base/ui/expand_record_list.js +3 -4
- package/dist/esm/base/ui/expand_record_picker_async.js +71 -0
- package/dist/esm/base/ui/field_icon.js +44 -0
- package/dist/esm/base/ui/field_picker.js +98 -0
- package/dist/esm/base/ui/field_picker_synced.js +66 -0
- package/dist/esm/base/ui/form_field.js +109 -0
- package/dist/{cjs → esm}/base/ui/geometry/geometry.js +5 -5
- package/dist/esm/base/ui/geometry/point.js +19 -0
- package/dist/esm/base/ui/geometry/rect.js +51 -0
- package/dist/esm/base/ui/geometry/size.js +19 -0
- package/dist/esm/base/ui/global_alert.js +71 -0
- package/dist/esm/base/ui/heading.js +132 -0
- package/dist/esm/base/ui/icon.js +109 -0
- package/dist/{cjs → esm}/base/ui/icon_config.js +6 -12
- package/dist/{cjs → esm}/base/ui/initialize_block.js +16 -35
- package/dist/esm/base/ui/input.js +161 -0
- package/dist/esm/base/ui/input_synced.js +66 -0
- package/dist/{cjs → esm}/base/ui/key_codes.js +2 -3
- package/dist/esm/base/ui/label.js +80 -0
- package/dist/esm/base/ui/link.js +196 -0
- package/dist/esm/base/ui/loader.js +61 -0
- package/dist/esm/base/ui/modal.js +145 -0
- package/dist/esm/base/ui/model_picker_select.js +57 -0
- package/dist/esm/base/ui/popover.js +315 -0
- package/dist/esm/base/ui/progress_bar.js +115 -0
- package/dist/esm/base/ui/record_card.js +564 -0
- package/dist/esm/base/ui/record_card_list.js +303 -0
- package/dist/esm/base/ui/select.js +191 -0
- package/dist/esm/base/ui/select_and_select_buttons_helpers.js +63 -0
- package/dist/esm/base/ui/select_buttons.js +159 -0
- package/dist/esm/base/ui/select_buttons_synced.js +62 -0
- package/dist/esm/base/ui/select_synced.js +65 -0
- package/dist/esm/base/ui/switch.js +167 -0
- package/dist/esm/base/ui/switch_synced.js +53 -0
- package/dist/esm/base/ui/synced.js +49 -0
- package/dist/{cjs → esm}/base/ui/system/all_styles_set.js +4 -12
- package/dist/esm/base/ui/system/appearance/appearance_set.js +27 -0
- package/dist/esm/base/ui/system/appearance/background_color.js +18 -0
- package/dist/{cjs → esm}/base/ui/system/appearance/border.js +3 -6
- package/dist/esm/base/ui/system/appearance/border_radius.js +18 -0
- package/dist/esm/base/ui/system/appearance/box_shadow.js +18 -0
- package/dist/esm/base/ui/system/appearance/opacity.js +18 -0
- package/dist/esm/base/ui/system/dimensions/dimensions_set.js +29 -0
- package/dist/esm/base/ui/system/dimensions/height.js +18 -0
- package/dist/esm/base/ui/system/dimensions/max_height.js +18 -0
- package/dist/esm/base/ui/system/dimensions/max_width.js +18 -0
- package/dist/esm/base/ui/system/dimensions/min_height.js +18 -0
- package/dist/esm/base/ui/system/dimensions/min_width.js +18 -0
- package/dist/esm/base/ui/system/dimensions/width.js +18 -0
- package/dist/esm/base/ui/system/display.js +19 -0
- package/dist/esm/base/ui/system/flex_container/align_content.js +15 -0
- package/dist/esm/base/ui/system/flex_container/align_items.js +15 -0
- package/dist/esm/base/ui/system/flex_container/flex_container_set.js +29 -0
- package/dist/esm/base/ui/system/flex_container/flex_direction.js +15 -0
- package/dist/esm/base/ui/system/flex_container/flex_wrap.js +15 -0
- package/dist/esm/base/ui/system/flex_container/justify_content.js +15 -0
- package/dist/esm/base/ui/system/flex_container/justify_items.js +16 -0
- package/dist/esm/base/ui/system/flex_item/align_self.js +15 -0
- package/dist/esm/base/ui/system/flex_item/flex.js +15 -0
- package/dist/esm/base/ui/system/flex_item/flex_basis.js +15 -0
- package/dist/esm/base/ui/system/flex_item/flex_grow.js +15 -0
- package/dist/esm/base/ui/system/flex_item/flex_item_set.js +31 -0
- package/dist/esm/base/ui/system/flex_item/flex_shrink.js +15 -0
- package/dist/esm/base/ui/system/flex_item/justify_self.js +16 -0
- package/dist/esm/base/ui/system/flex_item/order.js +15 -0
- package/dist/{cjs → esm}/base/ui/system/index.js +104 -416
- package/dist/esm/base/ui/system/overflow.js +21 -0
- package/dist/{cjs → esm}/base/ui/system/position/bottom.js +4 -6
- package/dist/{cjs → esm}/base/ui/system/position/left.js +4 -6
- package/dist/esm/base/ui/system/position/position.js +15 -0
- package/dist/esm/base/ui/system/position/position_set.js +29 -0
- package/dist/{cjs → esm}/base/ui/system/position/right.js +4 -6
- package/dist/{cjs → esm}/base/ui/system/position/top.js +4 -6
- package/dist/esm/base/ui/system/position/z_index.js +18 -0
- package/dist/{cjs → esm}/base/ui/system/spacing/margin.js +4 -6
- package/dist/{cjs → esm}/base/ui/system/spacing/padding.js +4 -6
- package/dist/esm/base/ui/system/spacing/spacing_set.js +21 -0
- package/dist/esm/base/ui/system/typography/font_family.js +18 -0
- package/dist/esm/base/ui/system/typography/font_size.js +18 -0
- package/dist/esm/base/ui/system/typography/font_style.js +15 -0
- package/dist/esm/base/ui/system/typography/font_weight.js +18 -0
- package/dist/esm/base/ui/system/typography/letter_spacing.js +18 -0
- package/dist/esm/base/ui/system/typography/line_height.js +15 -0
- package/dist/esm/base/ui/system/typography/text_align.js +15 -0
- package/dist/esm/base/ui/system/typography/text_color.js +18 -0
- package/dist/esm/base/ui/system/typography/text_decoration.js +15 -0
- package/dist/esm/base/ui/system/typography/text_transform.js +15 -0
- package/dist/esm/base/ui/system/typography/typography_set.js +37 -0
- package/dist/{cjs → esm}/base/ui/system/utils/ensure_numbers_are_within_scale.js +3 -4
- package/dist/esm/base/ui/system/utils/get_style_props_for_responsive_prop.js +73 -0
- package/dist/esm/base/ui/table_picker.js +71 -0
- package/dist/esm/base/ui/table_picker_synced.js +62 -0
- package/dist/esm/base/ui/text.js +117 -0
- package/dist/esm/base/ui/text_button.js +196 -0
- package/dist/{cjs → esm}/base/ui/theme/default_theme/button_variants.js +3 -3
- package/dist/esm/base/ui/theme/default_theme/control_sizes.js +102 -0
- package/dist/{cjs → esm}/base/ui/theme/default_theme/heading_styles.js +1 -1
- package/dist/{cjs → esm}/base/ui/theme/default_theme/index.js +9 -15
- package/dist/{cjs → esm}/base/ui/theme/default_theme/input_variants.js +3 -3
- package/dist/{cjs → esm}/base/ui/theme/default_theme/link_variants.js +3 -3
- package/dist/{cjs → esm}/base/ui/theme/default_theme/select_buttons_variants.js +4 -4
- package/dist/esm/base/ui/theme/default_theme/select_variants.js +50 -0
- package/dist/esm/base/ui/theme/default_theme/switch_variants.js +85 -0
- package/dist/{cjs → esm}/base/ui/theme/default_theme/text_button_variants.js +5 -5
- package/dist/{cjs → esm}/base/ui/theme/default_theme/text_styles.js +1 -1
- package/dist/{cjs → esm}/base/ui/theme/default_theme/tokens.js +14 -14
- package/dist/{cjs → esm}/base/ui/theme/theme_context.js +2 -2
- package/dist/{cjs → esm}/base/ui/theme/use_theme.js +2 -2
- package/dist/esm/base/ui/tooltip.js +175 -0
- package/dist/{cjs → esm}/base/ui/ui.js +48 -49
- package/dist/{cjs → esm}/base/ui/unstable_standalone_ui.js +27 -27
- package/dist/{cjs → esm}/base/ui/use_base.js +1 -1
- package/dist/{cjs → esm}/base/ui/use_cursor.js +5 -4
- package/dist/{cjs → esm}/base/ui/use_form_field.js +1 -1
- package/dist/{cjs → esm}/base/ui/use_loadable.js +25 -91
- package/dist/{cjs → esm}/base/ui/use_record_action_data.js +4 -3
- package/dist/{cjs → esm}/base/ui/use_records.js +9 -13
- package/dist/{cjs → esm}/base/ui/use_session.js +1 -1
- package/dist/{cjs → esm}/base/ui/use_settings_button.js +4 -3
- package/dist/esm/base/ui/use_styled_system.js +25 -0
- package/dist/{cjs → esm}/base/ui/use_text_color_for_background_color.js +4 -3
- package/dist/{cjs → esm}/base/ui/use_view_metadata.js +4 -4
- package/dist/{cjs → esm}/base/ui/use_viewport.js +2 -2
- package/dist/esm/base/ui/view_picker.js +89 -0
- package/dist/esm/base/ui/view_picker_synced.js +66 -0
- package/dist/esm/base/ui/viewport_constraint.js +129 -0
- package/dist/esm/base/ui/with_styled_system.js +129 -0
- package/dist/esm/base/undo_redo.js +37 -0
- package/dist/{cjs → esm}/base/unstable_testing_utils.js +27 -27
- package/dist/esm/base/viewport.js +353 -0
- package/dist/esm/injected/airtable_interface.js +22 -0
- package/dist/esm/interface/assert_run_context.js +12 -0
- package/dist/esm/interface/index.js +22 -0
- package/dist/esm/interface/models/base.js +35 -0
- package/dist/esm/interface/models/field.js +28 -0
- package/dist/{cjs → esm}/interface/models/models.js +8 -7
- package/dist/esm/interface/models/mutations.js +63 -0
- package/dist/esm/interface/models/record.js +51 -0
- package/dist/esm/interface/models/record_store.js +51 -0
- package/dist/esm/interface/models/session.js +28 -0
- package/dist/esm/interface/models/table.js +97 -0
- package/dist/esm/interface/sdk.js +78 -0
- package/dist/{cjs → esm}/interface/types/airtable_interface.js +2 -2
- package/dist/esm/interface/types/mutations.js +17 -0
- package/dist/esm/interface/ui/block_wrapper.js +69 -0
- package/dist/{cjs → esm}/interface/ui/initialize_block.js +13 -28
- package/dist/{cjs → esm}/interface/ui/ui.js +20 -19
- package/dist/{cjs → esm}/interface/ui/use_base.js +1 -1
- package/dist/{cjs → esm}/interface/ui/use_custom_properties.js +19 -35
- package/dist/{cjs → esm}/interface/ui/use_records.js +6 -5
- package/dist/{cjs → esm}/interface/ui/use_run_info.js +2 -2
- package/dist/{cjs → esm}/interface/ui/use_session.js +1 -1
- package/dist/{cjs → esm}/shared/color_utils.js +9 -16
- package/dist/{cjs → esm}/shared/colors.js +2 -2
- package/dist/{cjs → esm}/shared/error_utils.js +9 -11
- package/dist/{cjs → esm}/shared/event_tracker.js +3 -3
- package/dist/esm/shared/global_config.js +399 -0
- package/dist/esm/shared/models/abstract_model.js +94 -0
- package/dist/esm/shared/models/base_core.js +482 -0
- package/dist/esm/shared/models/field_core.js +288 -0
- package/dist/esm/shared/models/mutations_core.js +343 -0
- package/dist/esm/shared/models/record_core.js +215 -0
- package/dist/esm/shared/models/record_store_core.js +160 -0
- package/dist/esm/shared/models/session_core.js +160 -0
- package/dist/esm/shared/models/table_core.js +1318 -0
- package/dist/{cjs → esm}/shared/private_utils.js +54 -124
- package/dist/esm/shared/sdk_core.js +113 -0
- package/dist/{cjs → esm}/shared/types/field_core.js +1 -1
- package/dist/esm/shared/types/mutation_constants.js +11 -0
- package/dist/{cjs → esm}/shared/types/mutations_core.js +1 -1
- package/dist/{cjs → esm}/shared/types/permission_levels.js +1 -1
- package/dist/esm/shared/types/record.js +1 -0
- package/dist/esm/shared/types/stat.js +1 -0
- package/dist/esm/shared/types/table_core.js +1 -0
- package/dist/{cjs → esm}/shared/ui/global_config_synced_component_helpers.js +9 -9
- package/dist/esm/shared/ui/loader.js +47 -0
- package/dist/{cjs → esm}/shared/ui/remote_utils.js +5 -7
- package/dist/{cjs → esm}/shared/ui/sdk_context.js +4 -8
- package/dist/{cjs → esm}/shared/ui/use_array_identity.js +2 -2
- package/dist/{cjs → esm}/shared/ui/use_base.js +6 -5
- package/dist/{cjs → esm}/shared/ui/use_color_scheme.js +3 -8
- package/dist/{cjs → esm}/shared/ui/use_global_config.js +5 -4
- package/dist/{cjs → esm}/shared/ui/use_session.js +6 -5
- package/dist/{cjs → esm}/shared/ui/use_synced.js +7 -5
- package/dist/{cjs → esm}/shared/ui/use_watchable.js +13 -42
- package/dist/{cjs → esm}/shared/ui/with_hooks.js +6 -13
- package/dist/{cjs → esm}/shared/unstable_private_utils.js +4 -6
- package/dist/{cjs → esm}/shared/warning.js +5 -5
- package/dist/esm/shared/watchable.js +150 -0
- package/dist/esm/stats/block_stats.js +73 -0
- package/dist/esm/testing/base/abstract_mock_airtable_interface.js +208 -0
- package/dist/esm/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/base.d.ts +19 -0
- package/dist/types/src/base/models/base.d.ts.map +1 -1
- package/dist/types/src/base/models/create_aggregators.d.ts +3 -4
- package/dist/types/src/base/models/create_aggregators.d.ts.map +1 -1
- package/dist/types/src/base/models/field.d.ts +3 -2
- package/dist/types/src/base/models/field.d.ts.map +1 -1
- package/dist/types/src/base/models/models.d.ts +1 -2
- 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/models.js +1 -1
- package/package.json +24 -23
- package/types.js +1 -1
- package/dist/cjs/base/models/abstract_model_with_async_data.js +0 -273
- package/dist/cjs/base/models/base.js +0 -306
- package/dist/cjs/base/models/create_aggregators.js +0 -115
- package/dist/cjs/base/models/cursor.js +0 -393
- package/dist/cjs/base/models/field.js +0 -427
- package/dist/cjs/base/models/grouped_record_query_result.js +0 -399
- package/dist/cjs/base/models/linked_records_query_result.js +0 -728
- package/dist/cjs/base/models/mutations.js +0 -338
- package/dist/cjs/base/models/object_pool.js +0 -184
- package/dist/cjs/base/models/record.js +0 -304
- package/dist/cjs/base/models/record_query_result.js +0 -741
- package/dist/cjs/base/models/record_store.js +0 -825
- package/dist/cjs/base/models/session.js +0 -182
- package/dist/cjs/base/models/table.js +0 -668
- package/dist/cjs/base/models/table_or_view_query_result.js +0 -1013
- package/dist/cjs/base/models/view.js +0 -431
- package/dist/cjs/base/models/view_data_store.js +0 -403
- package/dist/cjs/base/models/view_metadata_query_result.js +0 -224
- package/dist/cjs/base/perform_record_action.js +0 -257
- package/dist/cjs/base/sdk.js +0 -233
- package/dist/cjs/base/settings_button.js +0 -138
- package/dist/cjs/base/ui/baymax_utils.js +0 -133
- package/dist/cjs/base/ui/block_wrapper.js +0 -143
- package/dist/cjs/base/ui/box.js +0 -110
- package/dist/cjs/base/ui/button.js +0 -182
- package/dist/cjs/base/ui/cell_renderer.js +0 -255
- package/dist/cjs/base/ui/choice_token.js +0 -110
- package/dist/cjs/base/ui/collaborator_token.js +0 -145
- package/dist/cjs/base/ui/color_palette.js +0 -239
- package/dist/cjs/base/ui/color_palette_synced.js +0 -98
- package/dist/cjs/base/ui/confirmation_dialog.js +0 -153
- package/dist/cjs/base/ui/dialog.js +0 -142
- package/dist/cjs/base/ui/dialog_close_button.js +0 -152
- package/dist/cjs/base/ui/expand_record_picker_async.js +0 -100
- package/dist/cjs/base/ui/field_icon.js +0 -62
- package/dist/cjs/base/ui/field_picker.js +0 -143
- package/dist/cjs/base/ui/field_picker_synced.js +0 -88
- package/dist/cjs/base/ui/form_field.js +0 -137
- package/dist/cjs/base/ui/geometry/point.js +0 -21
- package/dist/cjs/base/ui/geometry/rect.js +0 -67
- package/dist/cjs/base/ui/geometry/size.js +0 -21
- package/dist/cjs/base/ui/global_alert.js +0 -92
- package/dist/cjs/base/ui/heading.js +0 -181
- package/dist/cjs/base/ui/icon.js +0 -129
- package/dist/cjs/base/ui/input.js +0 -200
- package/dist/cjs/base/ui/input_synced.js +0 -89
- package/dist/cjs/base/ui/label.js +0 -105
- package/dist/cjs/base/ui/link.js +0 -229
- package/dist/cjs/base/ui/loader.js +0 -82
- package/dist/cjs/base/ui/modal.js +0 -184
- package/dist/cjs/base/ui/model_picker_select.js +0 -83
- package/dist/cjs/base/ui/popover.js +0 -407
- package/dist/cjs/base/ui/progress_bar.js +0 -128
- package/dist/cjs/base/ui/record_card.js +0 -653
- package/dist/cjs/base/ui/record_card_list.js +0 -377
- package/dist/cjs/base/ui/select.js +0 -247
- package/dist/cjs/base/ui/select_and_select_buttons_helpers.js +0 -87
- package/dist/cjs/base/ui/select_buttons.js +0 -192
- package/dist/cjs/base/ui/select_buttons_synced.js +0 -84
- package/dist/cjs/base/ui/select_synced.js +0 -87
- package/dist/cjs/base/ui/switch.js +0 -196
- package/dist/cjs/base/ui/switch_synced.js +0 -75
- package/dist/cjs/base/ui/synced.js +0 -70
- package/dist/cjs/base/ui/system/appearance/appearance_set.js +0 -30
- package/dist/cjs/base/ui/system/appearance/background_color.js +0 -21
- package/dist/cjs/base/ui/system/appearance/border_radius.js +0 -21
- package/dist/cjs/base/ui/system/appearance/box_shadow.js +0 -21
- package/dist/cjs/base/ui/system/appearance/opacity.js +0 -21
- package/dist/cjs/base/ui/system/dimensions/dimensions_set.js +0 -31
- package/dist/cjs/base/ui/system/dimensions/height.js +0 -21
- package/dist/cjs/base/ui/system/dimensions/max_height.js +0 -21
- package/dist/cjs/base/ui/system/dimensions/max_width.js +0 -21
- package/dist/cjs/base/ui/system/dimensions/min_height.js +0 -21
- package/dist/cjs/base/ui/system/dimensions/min_width.js +0 -21
- package/dist/cjs/base/ui/system/dimensions/width.js +0 -21
- package/dist/cjs/base/ui/system/display.js +0 -22
- package/dist/cjs/base/ui/system/flex_container/align_content.js +0 -18
- package/dist/cjs/base/ui/system/flex_container/align_items.js +0 -18
- package/dist/cjs/base/ui/system/flex_container/flex_container_set.js +0 -31
- package/dist/cjs/base/ui/system/flex_container/flex_direction.js +0 -18
- package/dist/cjs/base/ui/system/flex_container/flex_wrap.js +0 -18
- package/dist/cjs/base/ui/system/flex_container/justify_content.js +0 -18
- package/dist/cjs/base/ui/system/flex_container/justify_items.js +0 -19
- package/dist/cjs/base/ui/system/flex_item/align_self.js +0 -18
- package/dist/cjs/base/ui/system/flex_item/flex.js +0 -18
- package/dist/cjs/base/ui/system/flex_item/flex_basis.js +0 -18
- package/dist/cjs/base/ui/system/flex_item/flex_grow.js +0 -18
- package/dist/cjs/base/ui/system/flex_item/flex_item_set.js +0 -32
- package/dist/cjs/base/ui/system/flex_item/flex_shrink.js +0 -18
- package/dist/cjs/base/ui/system/flex_item/justify_self.js +0 -19
- package/dist/cjs/base/ui/system/flex_item/order.js +0 -18
- package/dist/cjs/base/ui/system/overflow.js +0 -24
- package/dist/cjs/base/ui/system/position/position.js +0 -18
- package/dist/cjs/base/ui/system/position/position_set.js +0 -31
- package/dist/cjs/base/ui/system/position/z_index.js +0 -21
- package/dist/cjs/base/ui/system/spacing/spacing_set.js +0 -27
- package/dist/cjs/base/ui/system/typography/font_family.js +0 -21
- package/dist/cjs/base/ui/system/typography/font_size.js +0 -21
- package/dist/cjs/base/ui/system/typography/font_style.js +0 -18
- package/dist/cjs/base/ui/system/typography/font_weight.js +0 -21
- package/dist/cjs/base/ui/system/typography/letter_spacing.js +0 -21
- package/dist/cjs/base/ui/system/typography/line_height.js +0 -18
- package/dist/cjs/base/ui/system/typography/text_align.js +0 -18
- package/dist/cjs/base/ui/system/typography/text_color.js +0 -21
- package/dist/cjs/base/ui/system/typography/text_decoration.js +0 -18
- package/dist/cjs/base/ui/system/typography/text_transform.js +0 -18
- package/dist/cjs/base/ui/system/typography/typography_set.js +0 -35
- 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/base/ui/system/utils/get_style_props_for_responsive_prop.js +0 -113
- package/dist/cjs/base/ui/table_picker.js +0 -95
- package/dist/cjs/base/ui/table_picker_synced.js +0 -84
- package/dist/cjs/base/ui/text.js +0 -150
- package/dist/cjs/base/ui/text_button.js +0 -228
- package/dist/cjs/base/ui/theme/default_theme/control_sizes.js +0 -96
- package/dist/cjs/base/ui/theme/default_theme/select_variants.js +0 -59
- package/dist/cjs/base/ui/theme/default_theme/switch_variants.js +0 -91
- package/dist/cjs/base/ui/tooltip.js +0 -215
- package/dist/cjs/base/ui/types/aria_props.js +0 -23
- package/dist/cjs/base/ui/types/data_attributes_prop.js +0 -18
- package/dist/cjs/base/ui/types/tooltip_anchor_props.js +0 -17
- package/dist/cjs/base/ui/use_styled_system.js +0 -32
- package/dist/cjs/base/ui/view_picker.js +0 -133
- package/dist/cjs/base/ui/view_picker_synced.js +0 -88
- package/dist/cjs/base/ui/viewport_constraint.js +0 -176
- package/dist/cjs/base/ui/with_styled_system.js +0 -165
- package/dist/cjs/base/undo_redo.js +0 -48
- package/dist/cjs/base/viewport.js +0 -397
- package/dist/cjs/injected/airtable_interface.js +0 -22
- package/dist/cjs/interface/index.js +0 -36
- package/dist/cjs/interface/models/base.js +0 -54
- package/dist/cjs/interface/models/field.js +0 -42
- package/dist/cjs/interface/models/mutations.js +0 -79
- package/dist/cjs/interface/models/record.js +0 -71
- package/dist/cjs/interface/models/record_store.js +0 -83
- package/dist/cjs/interface/models/session.js +0 -42
- package/dist/cjs/interface/models/table.js +0 -126
- package/dist/cjs/interface/sdk.js +0 -104
- package/dist/cjs/interface/types/mutations.js +0 -24
- package/dist/cjs/interface/ui/block_wrapper.js +0 -61
- package/dist/cjs/shared/global_config.js +0 -511
- package/dist/cjs/shared/models/abstract_model.js +0 -119
- package/dist/cjs/shared/models/base_core.js +0 -602
- package/dist/cjs/shared/models/field_core.js +0 -331
- package/dist/cjs/shared/models/mutations_core.js +0 -439
- package/dist/cjs/shared/models/record_core.js +0 -272
- package/dist/cjs/shared/models/record_store_core.js +0 -213
- package/dist/cjs/shared/models/session_core.js +0 -214
- package/dist/cjs/shared/models/table_core.js +0 -1561
- package/dist/cjs/shared/sdk_core.js +0 -115
- package/dist/cjs/shared/types/mutation_constants.js +0 -11
- package/dist/cjs/shared/ui/loader.js +0 -68
- package/dist/cjs/shared/watchable.js +0 -216
- package/dist/cjs/stats/block_stats.js +0 -96
- 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
- /package/dist/{cjs → esm}/base/types/aggregators.js +0 -0
- /package/dist/{cjs → esm}/base/types/backend_fetch_types.js +0 -0
- /package/dist/{cjs → esm}/base/types/base.js +0 -0
- /package/dist/{cjs → esm}/base/types/cursor.js +0 -0
- /package/dist/{cjs → esm}/base/types/field.js +0 -0
- /package/dist/{cjs → esm}/base/types/record.js +0 -0
- /package/dist/{cjs → esm}/base/types/record_action_data.js +0 -0
- /package/dist/{cjs → esm}/base/types/table.js +0 -0
- /package/dist/{cjs → esm}/base/types/viewport.js +0 -0
- /package/dist/{cjs → esm}/base/ui/system/utils/csstype.js +0 -0
- /package/dist/{cjs → esm}/base/ui/system/utils/types.js +0 -0
- /package/dist/{cjs/interface/types/base.js → esm/base/ui/types/aria_props.js} +0 -0
- /package/dist/{cjs/interface/types/field.js → esm/base/ui/types/data_attributes_prop.js} +0 -0
- /package/dist/{cjs/interface/types/record.js → esm/base/ui/types/tooltip_anchor_props.js} +0 -0
- /package/dist/{cjs/interface/types/table.js → esm/interface/types/base.js} +0 -0
- /package/dist/{cjs/sdk_mode.js → esm/interface/types/field.js} +0 -0
- /package/dist/{cjs/shared → esm/interface}/types/record.js +0 -0
- /package/dist/{cjs/shared/types/airtable_interface_core.js → esm/interface/types/table.js} +0 -0
- /package/dist/{cjs → esm}/interface/ui/expand_record.js +0 -0
- /package/dist/{cjs/shared/types/attachment.js → esm/sdk_mode.js} +0 -0
- /package/dist/{cjs/shared/types/base_core.js → esm/shared/types/airtable_interface_core.js} +0 -0
- /package/dist/{cjs/shared/types/collaborator.js → esm/shared/types/attachment.js} +0 -0
- /package/dist/{cjs/shared/types/global_config.js → esm/shared/types/base_core.js} +0 -0
- /package/dist/{cjs/shared/types/hyper_ids.js → esm/shared/types/collaborator.js} +0 -0
- /package/dist/{cjs/shared/types/stat.js → esm/shared/types/global_config.js} +0 -0
- /package/dist/{cjs/shared/types/table_core.js → esm/shared/types/hyper_ids.js} +0 -0
|
@@ -1,511 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
require("core-js/modules/es.symbol.js");
|
|
4
|
-
require("core-js/modules/es.symbol.description.js");
|
|
5
|
-
require("core-js/modules/es.array.from.js");
|
|
6
|
-
require("core-js/modules/es.array.iterator.js");
|
|
7
|
-
require("core-js/modules/es.array.slice.js");
|
|
8
|
-
require("core-js/modules/es.object.to-string.js");
|
|
9
|
-
require("core-js/modules/es.regexp.exec.js");
|
|
10
|
-
require("core-js/modules/es.regexp.to-string.js");
|
|
11
|
-
require("core-js/modules/web.dom-collections.iterator.js");
|
|
12
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
13
|
-
Object.defineProperty(exports, "__esModule", {
|
|
14
|
-
value: true
|
|
15
|
-
});
|
|
16
|
-
exports.default = void 0;
|
|
17
|
-
require("core-js/modules/es.array.map.js");
|
|
18
|
-
var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
|
|
19
|
-
var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
|
|
20
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
21
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
22
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
23
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
24
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
25
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
26
|
-
var _watchable = _interopRequireDefault(require("./watchable"));
|
|
27
|
-
var _error_utils = require("./error_utils");
|
|
28
|
-
var _mutations_core = require("./types/mutations_core");
|
|
29
|
-
var _private_utils = require("./private_utils");
|
|
30
|
-
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }
|
|
31
|
-
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
32
|
-
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
33
|
-
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
|
|
34
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @module @airtable/blocks: globalConfig */ /** */
|
|
35
|
-
/**
|
|
36
|
-
* You can watch any top-level key in global config. Use '*' to watch every change.
|
|
37
|
-
*/
|
|
38
|
-
// NOTE: GlobalConfig is essentially a wrapper around a generic key-value store.
|
|
39
|
-
// It's called GlobalConfig in order to convey two main points about its intended
|
|
40
|
-
// usage:
|
|
41
|
-
// 1) that it is synced 'globally' across clients (at some point we might make
|
|
42
|
-
// a UserConfig which would be scoped to an individual user), and
|
|
43
|
-
// 2) that is should be used mainly for configuration of the block (kv store
|
|
44
|
-
// as a name seems a bit too vague in terms of intended usage).
|
|
45
|
-
/**
|
|
46
|
-
* A key-value store for persisting configuration options for an extension installation.
|
|
47
|
-
*
|
|
48
|
-
* The contents will be synced in real-time to all logged-in users of the installation.
|
|
49
|
-
* Contents will not be updated in real-time when the installation is running in
|
|
50
|
-
* a publicly shared base.
|
|
51
|
-
*
|
|
52
|
-
* Any key can be watched to know when the value of the key changes. If you want your
|
|
53
|
-
* component to automatically re-render whenever any key on GlobalConfig changes, try using the
|
|
54
|
-
* {@link useGlobalConfig} hook.
|
|
55
|
-
*
|
|
56
|
-
* You should not need to construct this object yourself.
|
|
57
|
-
*
|
|
58
|
-
* The maximum allowed size for a given GlobalConfig instance is 150kB.
|
|
59
|
-
* The maximum number of keys for a given GlobalConfig instance is 1000.
|
|
60
|
-
*
|
|
61
|
-
* @docsPath models/GlobalConfig
|
|
62
|
-
*/
|
|
63
|
-
var GlobalConfig = /*#__PURE__*/function (_Watchable) {
|
|
64
|
-
/**
|
|
65
|
-
* @internal
|
|
66
|
-
*/
|
|
67
|
-
function GlobalConfig(initialKvValuesByKey, sdk) {
|
|
68
|
-
var _this;
|
|
69
|
-
(0, _classCallCheck2.default)(this, GlobalConfig);
|
|
70
|
-
_this = _callSuper(this, GlobalConfig);
|
|
71
|
-
/** @internal */
|
|
72
|
-
(0, _defineProperty2.default)(_this, "_sdk", void 0);
|
|
73
|
-
/** @internal */
|
|
74
|
-
(0, _defineProperty2.default)(_this, "_kvStore", void 0);
|
|
75
|
-
/** @internal */
|
|
76
|
-
(0, _defineProperty2.default)(_this, "_airtableInterface", void 0);
|
|
77
|
-
_this._kvStore = initialKvValuesByKey;
|
|
78
|
-
_this._sdk = sdk;
|
|
79
|
-
_this._airtableInterface = sdk.__airtableInterface;
|
|
80
|
-
return _this;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
(0, _inherits2.default)(GlobalConfig, _Watchable);
|
|
87
|
-
return (0, _createClass2.default)(GlobalConfig, [{
|
|
88
|
-
key: "__getTopLevelKey",
|
|
89
|
-
value: function __getTopLevelKey(key) {
|
|
90
|
-
if (Array.isArray(key)) {
|
|
91
|
-
return key[0];
|
|
92
|
-
}
|
|
93
|
-
return key;
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
}, {
|
|
99
|
-
key: "_formatKeyAsPath",
|
|
100
|
-
value: function _formatKeyAsPath(key) {
|
|
101
|
-
if (!Array.isArray(key)) {
|
|
102
|
-
return [key];
|
|
103
|
-
}
|
|
104
|
-
return key;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
}, {
|
|
111
|
-
key: "_validatePath",
|
|
112
|
-
value: function _validatePath(path, store) {
|
|
113
|
-
var validation = this._airtableInterface.globalConfigHelpers.validatePath(path, store);
|
|
114
|
-
if (!validation.isValid) {
|
|
115
|
-
return validation;
|
|
116
|
-
}
|
|
117
|
-
if (path[0] === '*') {
|
|
118
|
-
return {
|
|
119
|
-
isValid: false,
|
|
120
|
-
reason: "cannot use '*' as a top-level key"
|
|
121
|
-
};
|
|
122
|
-
}
|
|
123
|
-
return {
|
|
124
|
-
isValid: true
|
|
125
|
-
};
|
|
126
|
-
}
|
|
127
|
-
/**
|
|
128
|
-
* Get the value at a path. Throws an error if the path is invalid.
|
|
129
|
-
*
|
|
130
|
-
* Returns undefined if no value exists at that path.
|
|
131
|
-
*
|
|
132
|
-
* @param key A string for the top-level key, or an array of strings describing the path to the value.
|
|
133
|
-
* @example
|
|
134
|
-
* ```js
|
|
135
|
-
* import {useGlobalConfig} from '@airtable/blocks/[placeholder-path]/ui';
|
|
136
|
-
*
|
|
137
|
-
* function MyApp() {
|
|
138
|
-
* const globalConfig = useGlobalConfig();
|
|
139
|
-
* const topLevelValue = globalConfig.get('topLevelKey');
|
|
140
|
-
* const nestedValue = globalConfig.get(['topLevelKey', 'nested', 'deeply']);
|
|
141
|
-
* }
|
|
142
|
-
* ```
|
|
143
|
-
*/
|
|
144
|
-
}, {
|
|
145
|
-
key: "get",
|
|
146
|
-
value: function get(key) {
|
|
147
|
-
var path = this._formatKeyAsPath(key);
|
|
148
|
-
var pathValidationResult = this._validatePath(path, this._kvStore);
|
|
149
|
-
if (!pathValidationResult.isValid) {
|
|
150
|
-
throw (0, _error_utils.spawnError)('Invalid globalConfig path: %s', pathValidationResult.reason);
|
|
151
|
-
}
|
|
152
|
-
var value = (0, _private_utils.getValueAtOwnPath)(this._kvStore, path);
|
|
153
|
-
// value is returned as `unknown` from getValueAtOwnPath, but we know it must be a `GlobalConfigValue | void`
|
|
154
|
-
return value;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/**
|
|
158
|
-
* Checks whether the current user has permission to set the given global config key.
|
|
159
|
-
*
|
|
160
|
-
* Accepts partial input, in the same format as {@link setAsync}.
|
|
161
|
-
* The more information provided, the more accurate the permissions check will be.
|
|
162
|
-
*
|
|
163
|
-
* Returns `{hasPermission: true}` if the current user can set the specified key,
|
|
164
|
-
* `{hasPermission: false, reasonDisplayString: string}` otherwise. `reasonDisplayString` may
|
|
165
|
-
* be used to display an error message to the user.
|
|
166
|
-
*
|
|
167
|
-
* @param key A string for the top-level key, or an array of strings describing the path to set.
|
|
168
|
-
* @param value The value to set at the specified path. Use `undefined` to delete the value at the given path.
|
|
169
|
-
*
|
|
170
|
-
* @example
|
|
171
|
-
* ```js
|
|
172
|
-
* // Check if user can update a specific key and value.
|
|
173
|
-
* const setCheckResult =
|
|
174
|
-
* globalConfig.checkPermissionsForSet('favoriteColor', 'purple');
|
|
175
|
-
* if (!setCheckResult.hasPermission) {
|
|
176
|
-
* alert(setCheckResult.reasonDisplayString);
|
|
177
|
-
* }
|
|
178
|
-
*
|
|
179
|
-
* // Check if user can update a specific key without knowing the value
|
|
180
|
-
* const setKeyCheckResult =
|
|
181
|
-
* globalConfig.checkPermissionsForSet('favoriteColor');
|
|
182
|
-
*
|
|
183
|
-
* // Check if user can update globalConfig without knowing key or value
|
|
184
|
-
* const setUnknownKeyCheckResult = globalConfig.checkPermissionsForSet();
|
|
185
|
-
* ```
|
|
186
|
-
*/
|
|
187
|
-
}, {
|
|
188
|
-
key: "checkPermissionsForSet",
|
|
189
|
-
value: function checkPermissionsForSet(key, value) {
|
|
190
|
-
return this.checkPermissionsForSetPaths([{
|
|
191
|
-
path: key ? this._formatKeyAsPath(key) : undefined,
|
|
192
|
-
value
|
|
193
|
-
}]);
|
|
194
|
-
}
|
|
195
|
-
/**
|
|
196
|
-
* An alias for `globalConfig.checkPermissionsForSet(key, value).hasPermission`.
|
|
197
|
-
*
|
|
198
|
-
* Checks whether the current user has permission to set the given global config key.
|
|
199
|
-
*
|
|
200
|
-
* Accepts partial input, in the same format as {@link setAsync}.
|
|
201
|
-
* The more information provided, the more accurate the permissions check will be.
|
|
202
|
-
*
|
|
203
|
-
* @param key A string for the top-level key, or an array of strings describing the path to set.
|
|
204
|
-
* @param value The value to set at the specified path. Use `undefined` to delete the value at the given path.
|
|
205
|
-
*
|
|
206
|
-
* @example
|
|
207
|
-
* ```js
|
|
208
|
-
* // Check if user can update a specific key and value.
|
|
209
|
-
* const canSetFavoriteColorToPurple =
|
|
210
|
-
* globalConfig.hasPermissionToSet('favoriteColor', 'purple');
|
|
211
|
-
* if (!canSetFavoriteColorToPurple) {
|
|
212
|
-
* alert('Not allowed!');
|
|
213
|
-
* }
|
|
214
|
-
*
|
|
215
|
-
* // Check if user can update a specific key without knowing the value
|
|
216
|
-
* const canSetFavoriteColor = globalConfig.hasPermissionToSet('favoriteColor');
|
|
217
|
-
*
|
|
218
|
-
* // Check if user can update globalConfig without knowing key or value
|
|
219
|
-
* const canSetGlobalConfig = globalConfig.hasPermissionToSet();
|
|
220
|
-
* ```
|
|
221
|
-
*/
|
|
222
|
-
}, {
|
|
223
|
-
key: "hasPermissionToSet",
|
|
224
|
-
value: function hasPermissionToSet(key, value) {
|
|
225
|
-
return this.checkPermissionsForSet(key, value).hasPermission;
|
|
226
|
-
}
|
|
227
|
-
/**
|
|
228
|
-
* Sets a value at a path. Throws an error if the path or value is invalid.
|
|
229
|
-
*
|
|
230
|
-
* This action is asynchronous: `await` the returned promise if you wish to wait for the
|
|
231
|
-
* update to be persisted to Airtable servers.
|
|
232
|
-
*
|
|
233
|
-
* Updates are applied optimistically locally, so your change will be reflected in
|
|
234
|
-
* {@link GlobalConfig} before the promise resolves.
|
|
235
|
-
*
|
|
236
|
-
* @param key A string for the top-level key, or an array of strings describing the path to set.
|
|
237
|
-
* @param value The value to set at the specified path. Use `undefined` to delete the value at the given path.
|
|
238
|
-
* @example
|
|
239
|
-
* ```js
|
|
240
|
-
* import {useGlobalConfig} from '@airtable/blocks/[placeholder-path]/ui';
|
|
241
|
-
*
|
|
242
|
-
* function MyApp() {
|
|
243
|
-
* const globalConfig = useGlobalConfig();
|
|
244
|
-
* const updateFavoriteColorIfPossible = (color) => {
|
|
245
|
-
* if (globalConfig.hasPermissionToSet('favoriteColor', color)) {
|
|
246
|
-
* globalConfig.setAsync('favoriteColor', color);
|
|
247
|
-
* }
|
|
248
|
-
* // The update is now applied within your extension (eg will be
|
|
249
|
-
* // reflected in globalConfig) but are still being saved to
|
|
250
|
-
* // Airtable servers (e.g. may not be updated for other users yet)
|
|
251
|
-
* }
|
|
252
|
-
*
|
|
253
|
-
* const updateFavoriteColorIfPossibleAsync = async (color) => {
|
|
254
|
-
* if (globalConfig.hasPermissionToSet('favoriteColor', color)) {
|
|
255
|
-
* await globalConfig.setAsync('favoriteColor', color);
|
|
256
|
-
* }
|
|
257
|
-
* // globalConfig updates have been saved to Airtable servers.
|
|
258
|
-
* alert('favoriteColor has been updated');
|
|
259
|
-
* }
|
|
260
|
-
* }
|
|
261
|
-
* ```
|
|
262
|
-
*/
|
|
263
|
-
}, {
|
|
264
|
-
key: "setAsync",
|
|
265
|
-
value: (function () {
|
|
266
|
-
var _setAsync = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(key, value) {
|
|
267
|
-
var path;
|
|
268
|
-
return _regenerator.default.wrap(function _callee$(_context) {
|
|
269
|
-
while (1) switch (_context.prev = _context.next) {
|
|
270
|
-
case 0:
|
|
271
|
-
path = this._formatKeyAsPath(key);
|
|
272
|
-
_context.next = 3;
|
|
273
|
-
return this.setPathsAsync([{
|
|
274
|
-
path,
|
|
275
|
-
value
|
|
276
|
-
}]);
|
|
277
|
-
case 3:
|
|
278
|
-
case "end":
|
|
279
|
-
return _context.stop();
|
|
280
|
-
}
|
|
281
|
-
}, _callee, this);
|
|
282
|
-
}));
|
|
283
|
-
function setAsync(_x, _x2) {
|
|
284
|
-
return _setAsync.apply(this, arguments);
|
|
285
|
-
}
|
|
286
|
-
return setAsync;
|
|
287
|
-
}()
|
|
288
|
-
/**
|
|
289
|
-
* Checks whether the current user has permission to perform the specified updates to global config.
|
|
290
|
-
*
|
|
291
|
-
* Accepts partial input, in the same format as {@link setPathsAsync}.
|
|
292
|
-
* The more information provided, the more accurate the permissions check will be.
|
|
293
|
-
*
|
|
294
|
-
* Returns `{hasPermission: true}` if the current user can set the specified key,
|
|
295
|
-
* `{hasPermission: false, reasonDisplayString: string}` otherwise. `reasonDisplayString` may be
|
|
296
|
-
* used to display an error message to the user.
|
|
297
|
-
*
|
|
298
|
-
* @param updates The paths and values to set.
|
|
299
|
-
* @example
|
|
300
|
-
* ```js
|
|
301
|
-
* // Check if user can update a specific keys and values.
|
|
302
|
-
* const setPathsCheckResult = globalConfig.checkPermissionsForSet([
|
|
303
|
-
* {path: ['topLevelKey1', 'nestedKey1'], value: 'foo'},
|
|
304
|
-
* {path: ['topLevelKey2', 'nestedKey2'], value: 'bar'},
|
|
305
|
-
* ]);
|
|
306
|
-
* if (!setPathsCheckResult.hasPermission) {
|
|
307
|
-
* alert(setPathsCheckResult.reasonDisplayString);
|
|
308
|
-
* }
|
|
309
|
-
*
|
|
310
|
-
* // Check if user could potentially set globalConfig values.
|
|
311
|
-
* // Equivalent to globalConfig.checkPermissionsForSet()
|
|
312
|
-
* const setUnknownPathsCheckResult =
|
|
313
|
-
* globalConfig.checkPermissionsForSetPaths();
|
|
314
|
-
* ```
|
|
315
|
-
*/
|
|
316
|
-
)
|
|
317
|
-
}, {
|
|
318
|
-
key: "checkPermissionsForSetPaths",
|
|
319
|
-
value: function checkPermissionsForSetPaths(updates) {
|
|
320
|
-
return this._sdk.__mutations.checkPermissionsForMutation({
|
|
321
|
-
type: _mutations_core.MutationTypesCore.SET_MULTIPLE_GLOBAL_CONFIG_PATHS,
|
|
322
|
-
updates: updates ? updates.map(_ref => {
|
|
323
|
-
var path = _ref.path,
|
|
324
|
-
value = _ref.value;
|
|
325
|
-
return {
|
|
326
|
-
path: path || undefined,
|
|
327
|
-
value
|
|
328
|
-
};
|
|
329
|
-
}) : undefined
|
|
330
|
-
});
|
|
331
|
-
}
|
|
332
|
-
/**
|
|
333
|
-
* An alias for `globalConfig.checkPermissionsForSetPaths(updates).hasPermission`.
|
|
334
|
-
*
|
|
335
|
-
* Checks whether the current user has permission to perform the specified updates to global
|
|
336
|
-
* config.
|
|
337
|
-
*
|
|
338
|
-
* Accepts partial input, in the same format as {@link setPathsAsync}.
|
|
339
|
-
* The more information provided, the more accurate the permissions check will be.
|
|
340
|
-
*
|
|
341
|
-
* @param updates The paths and values to set.
|
|
342
|
-
*
|
|
343
|
-
* @example
|
|
344
|
-
* ```js
|
|
345
|
-
* // Check if user can update a specific keys and values.
|
|
346
|
-
* const canSetPaths = globalConfig.hasPermissionToSetPaths([
|
|
347
|
-
* {path: ['topLevelKey1', 'nestedKey1'], value: 'foo'},
|
|
348
|
-
* {path: ['topLevelKey2', 'nestedKey2'], value: 'bar'},
|
|
349
|
-
* ]);
|
|
350
|
-
* if (!canSetPaths) {
|
|
351
|
-
* alert('not allowed!');
|
|
352
|
-
* }
|
|
353
|
-
*
|
|
354
|
-
* // Check if user could potentially set globalConfig values.
|
|
355
|
-
* // Equivalent to globalConfig.hasPermissionToSet()
|
|
356
|
-
* const canSetAnyPaths = globalConfig.hasPermissionToSetPaths();
|
|
357
|
-
* ```
|
|
358
|
-
*/
|
|
359
|
-
}, {
|
|
360
|
-
key: "hasPermissionToSetPaths",
|
|
361
|
-
value: function hasPermissionToSetPaths(updates) {
|
|
362
|
-
return this.checkPermissionsForSetPaths(updates).hasPermission;
|
|
363
|
-
}
|
|
364
|
-
/**
|
|
365
|
-
* Sets multiple values. Throws if any path or value is invalid.
|
|
366
|
-
*
|
|
367
|
-
* This action is asynchronous: `await` the returned promise if you wish to wait for the
|
|
368
|
-
* updates to be persisted to Airtable servers.
|
|
369
|
-
* Updates are applied optimistically locally, so your changes will be reflected in
|
|
370
|
-
* {@link GlobalConfig} before the promise resolves.
|
|
371
|
-
*
|
|
372
|
-
* @param updates The paths and values to set.
|
|
373
|
-
* @example
|
|
374
|
-
* ```js
|
|
375
|
-
* import {useGlobalConfig} from '@airtable/blocks/[placeholder-path]/ui';
|
|
376
|
-
*
|
|
377
|
-
* function MyApp() {
|
|
378
|
-
* const globalConfig = useGlobalConfig();
|
|
379
|
-
* const updates = [
|
|
380
|
-
* {path: ['topLevelKey1', 'nestedKey1'], value: 'foo'},
|
|
381
|
-
* {path: ['topLevelKey2', 'nestedKey2'], value: 'bar'},
|
|
382
|
-
* ];
|
|
383
|
-
*
|
|
384
|
-
* const applyUpdatesIfPossible = () => {
|
|
385
|
-
* if (globalConfig.hasPermissionToSetPaths(updates)) {
|
|
386
|
-
* globalConfig.setPathsAsync(updates);
|
|
387
|
-
* }
|
|
388
|
-
* // The updates are now applied within your extension (eg will be reflected in
|
|
389
|
-
* // globalConfig) but are still being saved to Airtable servers (e.g. they
|
|
390
|
-
* // may not be updated for other users yet)
|
|
391
|
-
* }
|
|
392
|
-
*
|
|
393
|
-
* const applyUpdatesIfPossibleAsync = async () => {
|
|
394
|
-
* if (globalConfig.hasPermissionToSetPaths(updates)) {
|
|
395
|
-
* await globalConfig.setPathsAsync(updates);
|
|
396
|
-
* }
|
|
397
|
-
* // globalConfig updates have been saved to Airtable servers.
|
|
398
|
-
* alert('globalConfig has been updated');
|
|
399
|
-
* }
|
|
400
|
-
* }
|
|
401
|
-
* ```
|
|
402
|
-
*/
|
|
403
|
-
}, {
|
|
404
|
-
key: "setPathsAsync",
|
|
405
|
-
value: (function () {
|
|
406
|
-
var _setPathsAsync = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(updates) {
|
|
407
|
-
var _iterator, _step, update, pathValidation;
|
|
408
|
-
return _regenerator.default.wrap(function _callee2$(_context2) {
|
|
409
|
-
while (1) switch (_context2.prev = _context2.next) {
|
|
410
|
-
case 0:
|
|
411
|
-
if (this.hasPermissionToSetPaths(updates)) {
|
|
412
|
-
_context2.next = 2;
|
|
413
|
-
break;
|
|
414
|
-
}
|
|
415
|
-
throw (0, _error_utils.spawnError)('Your permission level does not allow setting globalConfig values');
|
|
416
|
-
case 2:
|
|
417
|
-
_iterator = _createForOfIteratorHelper(updates);
|
|
418
|
-
_context2.prev = 3;
|
|
419
|
-
_iterator.s();
|
|
420
|
-
case 5:
|
|
421
|
-
if ((_step = _iterator.n()).done) {
|
|
422
|
-
_context2.next = 12;
|
|
423
|
-
break;
|
|
424
|
-
}
|
|
425
|
-
update = _step.value;
|
|
426
|
-
pathValidation = this._validatePath(update.path, this._kvStore);
|
|
427
|
-
if (pathValidation.isValid) {
|
|
428
|
-
_context2.next = 10;
|
|
429
|
-
break;
|
|
430
|
-
}
|
|
431
|
-
throw (0, _error_utils.spawnError)('Invalid globalConfig path: %s', pathValidation.reason);
|
|
432
|
-
case 10:
|
|
433
|
-
_context2.next = 5;
|
|
434
|
-
break;
|
|
435
|
-
case 12:
|
|
436
|
-
_context2.next = 17;
|
|
437
|
-
break;
|
|
438
|
-
case 14:
|
|
439
|
-
_context2.prev = 14;
|
|
440
|
-
_context2.t0 = _context2["catch"](3);
|
|
441
|
-
_iterator.e(_context2.t0);
|
|
442
|
-
case 17:
|
|
443
|
-
_context2.prev = 17;
|
|
444
|
-
_iterator.f();
|
|
445
|
-
return _context2.finish(17);
|
|
446
|
-
case 20:
|
|
447
|
-
_context2.next = 22;
|
|
448
|
-
return this._sdk.__mutations.applyMutationAsync({
|
|
449
|
-
type: _mutations_core.MutationTypesCore.SET_MULTIPLE_GLOBAL_CONFIG_PATHS,
|
|
450
|
-
updates
|
|
451
|
-
});
|
|
452
|
-
case 22:
|
|
453
|
-
case "end":
|
|
454
|
-
return _context2.stop();
|
|
455
|
-
}
|
|
456
|
-
}, _callee2, this, [[3, 14, 17, 20]]);
|
|
457
|
-
}));
|
|
458
|
-
function setPathsAsync(_x3) {
|
|
459
|
-
return _setPathsAsync.apply(this, arguments);
|
|
460
|
-
}
|
|
461
|
-
return setPathsAsync;
|
|
462
|
-
}()
|
|
463
|
-
/**
|
|
464
|
-
* @internal
|
|
465
|
-
* this shouldn't be called directly - instead, use this._sdk.__applyGlobalConfigUpdates()
|
|
466
|
-
*/
|
|
467
|
-
)
|
|
468
|
-
}, {
|
|
469
|
-
key: "__setMultipleKvPaths",
|
|
470
|
-
value: function __setMultipleKvPaths(updates) {
|
|
471
|
-
// This helper validates updates and throw errors if necessary.
|
|
472
|
-
// To avoid the case where an error is encountered after some updates have already been
|
|
473
|
-
// applied (where we'd have to crash the block instead of letting the developer catch the
|
|
474
|
-
// error), it doesn't mutate the current store: it returns newKvStore with changes applied.
|
|
475
|
-
var _this$_airtableInterf = this._airtableInterface.globalConfigHelpers.validateAndApplyUpdates(updates, this._kvStore),
|
|
476
|
-
newKvStore = _this$_airtableInterf.newKvStore,
|
|
477
|
-
changedTopLevelKeys = _this$_airtableInterf.changedTopLevelKeys;
|
|
478
|
-
|
|
479
|
-
// The updates are all good! Replace our kvStore with the new version.
|
|
480
|
-
this._kvStore = newKvStore;
|
|
481
|
-
|
|
482
|
-
// Now loop over the top level keys to fire change events.
|
|
483
|
-
var _iterator2 = _createForOfIteratorHelper(changedTopLevelKeys),
|
|
484
|
-
_step2;
|
|
485
|
-
try {
|
|
486
|
-
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
|
|
487
|
-
var key = _step2.value;
|
|
488
|
-
this._onChange(key);
|
|
489
|
-
}
|
|
490
|
-
} catch (err) {
|
|
491
|
-
_iterator2.e(err);
|
|
492
|
-
} finally {
|
|
493
|
-
_iterator2.f();
|
|
494
|
-
}
|
|
495
|
-
if (changedTopLevelKeys.length) {
|
|
496
|
-
this._onChange('*');
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
}], [{
|
|
500
|
-
key: "_isWatchableKey",
|
|
501
|
-
value: /** @internal */
|
|
502
|
-
function _isWatchableKey(key) {
|
|
503
|
-
// The user can store any arbitrary key in the global config, so there's
|
|
504
|
-
// not much we can do here to check if a key is valid.
|
|
505
|
-
return true;
|
|
506
|
-
}
|
|
507
|
-
}]);
|
|
508
|
-
}(_watchable.default);
|
|
509
|
-
/** @internal */
|
|
510
|
-
(0, _defineProperty2.default)(GlobalConfig, "_className", 'GlobalConfig');
|
|
511
|
-
var _default = exports.default = GlobalConfig;
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
Object.defineProperty(exports, "__esModule", {
|
|
5
|
-
value: true
|
|
6
|
-
});
|
|
7
|
-
exports.default = void 0;
|
|
8
|
-
require("core-js/modules/es.array.concat.js");
|
|
9
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
10
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
11
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
12
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
13
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
14
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
|
-
var _error_utils = require("../error_utils");
|
|
16
|
-
var _watchable = _interopRequireDefault(require("../watchable"));
|
|
17
|
-
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
|
|
18
|
-
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /** @module @airtable/blocks/models: Abstract models */ /** */
|
|
19
|
-
/**
|
|
20
|
-
* Abstract superclass for all models. You won't use this class directly.
|
|
21
|
-
*
|
|
22
|
-
* @docsPath models/advanced/AbstractModel
|
|
23
|
-
*/
|
|
24
|
-
var AbstractModel = /*#__PURE__*/function (_Watchable) {
|
|
25
|
-
/**
|
|
26
|
-
* @internal
|
|
27
|
-
*/
|
|
28
|
-
function AbstractModel(sdk, modelId) {
|
|
29
|
-
var _this;
|
|
30
|
-
(0, _classCallCheck2.default)(this, AbstractModel);
|
|
31
|
-
_this = _callSuper(this, AbstractModel);
|
|
32
|
-
/** @internal */
|
|
33
|
-
(0, _defineProperty2.default)(_this, "_baseData", void 0);
|
|
34
|
-
/** @internal */
|
|
35
|
-
(0, _defineProperty2.default)(_this, "_id", void 0);
|
|
36
|
-
/** @internal */
|
|
37
|
-
(0, _defineProperty2.default)(_this, "_sdk", void 0);
|
|
38
|
-
(0, _error_utils.invariant)(typeof modelId === 'string', '%s id should be a string', _this.constructor._className);
|
|
39
|
-
_this._sdk = sdk;
|
|
40
|
-
_this._baseData = sdk.__airtableInterface.sdkInitData.baseData;
|
|
41
|
-
_this._id = modelId;
|
|
42
|
-
return _this;
|
|
43
|
-
}
|
|
44
|
-
/**
|
|
45
|
-
* The ID for this model.
|
|
46
|
-
*/
|
|
47
|
-
(0, _inherits2.default)(AbstractModel, _Watchable);
|
|
48
|
-
return (0, _createClass2.default)(AbstractModel, [{
|
|
49
|
-
key: "id",
|
|
50
|
-
get: function get() {
|
|
51
|
-
return this._id;
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* @internal
|
|
55
|
-
*/
|
|
56
|
-
}, {
|
|
57
|
-
key: "_data",
|
|
58
|
-
get:
|
|
59
|
-
/**
|
|
60
|
-
* @internal
|
|
61
|
-
*/
|
|
62
|
-
function get() {
|
|
63
|
-
var data = this._dataOrNullIfDeleted;
|
|
64
|
-
if (data === null) {
|
|
65
|
-
throw this._spawnErrorForDeletion();
|
|
66
|
-
}
|
|
67
|
-
return data;
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* `true` if the model has been deleted, and `false` otherwise.
|
|
71
|
-
*
|
|
72
|
-
* In general, it's best to avoid keeping a reference to an object past the
|
|
73
|
-
* current event loop, since it may be deleted and trying to access any data
|
|
74
|
-
* of a deleted object (other than its ID) will throw. But if you keep a
|
|
75
|
-
* reference, you can use `isDeleted` to check that it's safe to access the
|
|
76
|
-
* model's data.
|
|
77
|
-
*/
|
|
78
|
-
}, {
|
|
79
|
-
key: "isDeleted",
|
|
80
|
-
get: function get() {
|
|
81
|
-
return this._dataOrNullIfDeleted === null;
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
}, {
|
|
87
|
-
key: "_spawnErrorForDeletion",
|
|
88
|
-
value: function _spawnErrorForDeletion() {
|
|
89
|
-
return (0, _error_utils.spawnError)('%s has been deleted', this.constructor._className);
|
|
90
|
-
}
|
|
91
|
-
/**
|
|
92
|
-
* A string representation of the model for use in debugging.
|
|
93
|
-
*/
|
|
94
|
-
}, {
|
|
95
|
-
key: "toString",
|
|
96
|
-
value: function toString() {
|
|
97
|
-
return "[".concat(this.constructor._className, " ").concat(this.id, "]");
|
|
98
|
-
}
|
|
99
|
-
}], [{
|
|
100
|
-
key: "_isWatchableKey",
|
|
101
|
-
value:
|
|
102
|
-
/**
|
|
103
|
-
* This method is essentially abstract, but as of this writing, TypeScript
|
|
104
|
-
* does not support abstract static methods. This necessitates a concrete
|
|
105
|
-
* implementation which must be explicitly ignored by the test coverage
|
|
106
|
-
* tooling.
|
|
107
|
-
*
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
// istanbul ignore next
|
|
111
|
-
function _isWatchableKey(key) {
|
|
112
|
-
// Override to return whether `key` is a valid watchable key.
|
|
113
|
-
return false;
|
|
114
|
-
}
|
|
115
|
-
}]);
|
|
116
|
-
}(_watchable.default);
|
|
117
|
-
/** @internal */
|
|
118
|
-
(0, _defineProperty2.default)(AbstractModel, "_className", 'AbstractModel');
|
|
119
|
-
var _default = exports.default = AbstractModel;
|