@odoo/o-spreadsheet 19.2.0-alpha.4 → 19.3.2
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/o_spreadsheet.cjs +84657 -0
- package/dist/o_spreadsheet.css +218 -57
- package/dist/o_spreadsheet.esm.js +82081 -97450
- package/dist/o_spreadsheet.iife.js +83694 -99059
- package/dist/o_spreadsheet.min.iife.js +656 -578
- package/dist/o_spreadsheet.xml +1421 -899
- package/dist/types/actions/action.d.ts +104 -0
- package/dist/types/actions/data_actions.d.ts +13 -0
- package/dist/types/actions/edit_actions.d.ts +23 -0
- package/dist/types/actions/figure_menu_actions.d.ts +6 -0
- package/dist/types/actions/format_actions.d.ts +64 -0
- package/dist/types/actions/insert_actions.d.ts +33 -0
- package/dist/types/actions/menu_items_actions.d.ts +57 -0
- package/dist/types/actions/sheet_actions.d.ts +15 -0
- package/dist/types/actions/view_actions.d.ts +29 -0
- package/dist/types/clipboard_handlers/abstract_cell_clipboard_handler.d.ts +8 -0
- package/dist/types/clipboard_handlers/abstract_clipboard_handler.d.ts +15 -0
- package/dist/types/clipboard_handlers/abstract_figure_clipboard_handler.d.ts +5 -0
- package/dist/types/clipboard_handlers/borders_clipboard.d.ts +17 -0
- package/dist/types/clipboard_handlers/carousel_clipboard.d.ts +19 -0
- package/dist/types/clipboard_handlers/cell_clipboard.d.ts +29 -0
- package/dist/types/clipboard_handlers/chart_clipboard.d.ts +15 -0
- package/dist/types/clipboard_handlers/conditional_format_clipboard.d.ts +25 -0
- package/dist/types/clipboard_handlers/data_validation_clipboard.d.ts +25 -0
- package/dist/types/clipboard_handlers/image_clipboard.d.ts +16 -0
- package/dist/types/clipboard_handlers/index.d.ts +1 -0
- package/dist/types/clipboard_handlers/merge_clipboard.d.ts +16 -0
- package/dist/types/clipboard_handlers/references_clipboard.d.ts +11 -0
- package/dist/types/clipboard_handlers/sheet_clipboard.d.ts +11 -0
- package/dist/types/clipboard_handlers/tables_clipboard.d.ts +33 -0
- package/dist/types/collaborative/command_squisher.d.ts +77 -0
- package/dist/types/collaborative/local_transport_service.d.ts +8 -0
- package/dist/types/collaborative/ot/ot.d.ts +23 -0
- package/dist/types/collaborative/ot/ot_helpers.d.ts +5 -0
- package/dist/types/collaborative/ot/ot_specific.d.ts +1 -0
- package/dist/types/collaborative/ot/srt_specific.d.ts +1 -0
- package/dist/types/collaborative/readonly_transport_filter.d.ts +9 -0
- package/dist/types/collaborative/revisions.d.ts +26 -0
- package/dist/types/collaborative/session.d.ts +107 -0
- package/dist/types/components/action_button/action_button.d.ts +42 -0
- package/dist/types/components/animation/ripple.d.ts +118 -0
- package/dist/types/components/autofill/autofill.d.ts +32 -0
- package/dist/types/components/border_editor/border_editor.d.ts +68 -0
- package/dist/types/components/border_editor/border_editor_widget.d.ts +50 -0
- package/dist/types/components/bottom_bar/bottom_bar.d.ts +60 -0
- package/dist/types/components/bottom_bar/bottom_bar_sheet/bottom_bar_sheet.d.ts +66 -0
- package/dist/types/components/bottom_bar/bottom_bar_statistic/aggregate_statistics_store.d.ts +13 -0
- package/dist/types/components/bottom_bar/bottom_bar_statistic/bottom_bar_statistic.d.ts +25 -0
- package/dist/types/components/collaborative_client_tag/collaborative_client_tag.d.ts +22 -0
- package/dist/types/components/color_picker/color_picker.d.ts +57 -0
- package/dist/types/components/color_picker/color_picker_widget.d.ts +53 -0
- package/dist/types/components/composer/autocomplete_dropdown/autocomplete_dropdown.d.ts +25 -0
- package/dist/types/components/composer/autocomplete_dropdown/autocomplete_dropdown_store.d.ts +12 -0
- package/dist/types/components/composer/composer/abstract_composer_store.d.ts +147 -0
- package/dist/types/components/composer/composer/cell_composer_store.d.ts +24 -0
- package/dist/types/components/composer/composer/composer.d.ts +194 -0
- package/dist/types/components/composer/composer_focus_store.d.ts +28 -0
- package/dist/types/components/composer/content_editable_helper.d.ts +41 -0
- package/dist/types/components/composer/formula_assistant/formula_assistant.d.ts +31 -0
- package/dist/types/components/composer/grid_composer/grid_composer.d.ts +48 -0
- package/dist/types/components/composer/speech_bubble/speech_bubble.d.ts +18 -0
- package/dist/types/components/composer/standalone_composer/standalone_composer.d.ts +83 -0
- package/dist/types/components/composer/standalone_composer/standalone_composer_store.d.ts +34 -0
- package/dist/types/components/composer/top_bar_composer/top_bar_composer.d.ts +20 -0
- package/dist/types/components/dashboard/clickable_cell_sort_icon/clickable_cell_sort_icon.d.ts +20 -0
- package/dist/types/components/dashboard/clickable_cell_store.d.ts +21 -0
- package/dist/types/components/dashboard/dashboard.d.ts +52 -0
- package/dist/types/components/date_input/date_input.d.ts +4 -0
- package/dist/types/components/error_tooltip/error_tooltip.d.ts +40 -0
- package/dist/types/components/figures/chart/chartJs/chartjs.d.ts +39 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_animation_store.d.ts +8 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_background_plugin.d.ts +11 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_calendar_chart.d.ts +19 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_colorscale_plugin.d.ts +17 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_funnel_chart.d.ts +29 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_minor_grid_plugin.d.ts +5 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_show_values_plugin.d.ts +17 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_sunburst_hover_plugin.d.ts +14 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_sunburst_labels_plugin.d.ts +14 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_waterfall_plugin.d.ts +12 -0
- package/dist/types/components/figures/chart/chartJs/zoomable_chart/zoomable_chart_store.d.ts +30 -0
- package/dist/types/components/figures/chart/chartJs/zoomable_chart/zoomable_chartjs.d.ts +64 -0
- package/dist/types/components/figures/chart/chartJs/zoomable_chart/zoomable_chartjs_plugins.d.ts +12 -0
- package/dist/types/components/figures/chart/chart_dashboard_menu/chart_dashboard_menu.d.ts +44 -0
- package/dist/types/components/figures/chart/gauge/gauge_chart_component.d.ts +41 -0
- package/dist/types/components/figures/chart/scorecard/chart_scorecard.d.ts +24 -0
- package/dist/types/components/figures/figure/figure.d.ts +64 -0
- package/dist/types/components/figures/figure_carousel/figure_carousel.d.ts +60 -0
- package/dist/types/components/figures/figure_chart/figure_chart.d.ts +36 -0
- package/dist/types/components/figures/figure_container/figure_container.d.ts +122 -0
- package/dist/types/components/figures/figure_image/figure_image.d.ts +26 -0
- package/dist/types/components/filters/filter_menu/filter_menu.d.ts +41 -0
- package/dist/types/components/filters/filter_menu_criterion/filter_menu_criterion.d.ts +28 -0
- package/dist/types/components/filters/filter_menu_item/filter_menu_value_item.d.ts +32 -0
- package/dist/types/components/filters/filter_menu_value_list/filter_menu_value_list.d.ts +41 -0
- package/dist/types/components/focus_store.d.ts +6 -0
- package/dist/types/components/font_size_editor/font_size_editor.d.ts +34 -0
- package/dist/types/components/full_screen_figure/full_screen_figure.d.ts +20 -0
- package/dist/types/components/full_screen_figure/full_screen_figure_store.d.ts +8 -0
- package/dist/types/components/generic_input/generic_input.d.ts +73 -0
- package/dist/types/components/grid/delayed_hovered_cell_store.d.ts +10 -0
- package/dist/types/components/grid/grid.d.ts +123 -0
- package/dist/types/components/grid_add_rows_footer/grid_add_rows_footer.d.ts +29 -0
- package/dist/types/components/grid_overlay/grid_overlay.d.ts +68 -0
- package/dist/types/components/grid_overlay/hovered_icon_store.d.ts +12 -0
- package/dist/types/components/grid_popover/grid_popover.d.ts +27 -0
- package/dist/types/components/header_group/header_group.d.ts +46 -0
- package/dist/types/components/header_group/header_group_container.d.ts +34 -0
- package/dist/types/components/headers_overlay/headers_overlay.d.ts +177 -0
- package/dist/types/components/headers_overlay/unhide_headers.d.ts +50 -0
- package/dist/types/components/helpers/autofocus_hook.d.ts +3 -0
- package/dist/types/components/helpers/convert_image_to_png.d.ts +1 -0
- package/dist/types/components/helpers/css.d.ts +31 -0
- package/dist/types/components/helpers/dom_helpers.d.ts +51 -0
- package/dist/types/components/helpers/drag_and_drop.d.ts +8 -0
- package/dist/types/components/helpers/drag_and_drop_dom_items_hook.d.ts +24 -0
- package/dist/types/components/helpers/drag_and_drop_grid_hook.d.ts +18 -0
- package/dist/types/components/helpers/draw_grid_hook.d.ts +11 -0
- package/dist/types/components/helpers/figure_drag_helper.d.ts +9 -0
- package/dist/types/components/helpers/figure_snap_helper.d.ts +25 -0
- package/dist/types/components/helpers/highlight_hook.d.ts +4 -0
- package/dist/types/components/helpers/html_content_helpers.d.ts +2 -0
- package/dist/types/components/helpers/index.d.ts +1 -0
- package/dist/types/components/helpers/listener_hook.d.ts +13 -0
- package/dist/types/components/helpers/position_hook.d.ts +14 -0
- package/dist/types/components/helpers/screen_width_hook.d.ts +3 -0
- package/dist/types/components/helpers/selection_helpers.d.ts +4 -0
- package/dist/types/components/helpers/time_hooks.d.ts +17 -0
- package/dist/types/components/helpers/top_bar_tool_hook.d.ts +6 -0
- package/dist/types/components/helpers/touch_handlers_hook.d.ts +11 -0
- package/dist/types/components/helpers/wheel_hook.d.ts +1 -0
- package/dist/types/components/helpers/zoom.d.ts +21 -0
- package/dist/types/components/highlight/border/border.d.ts +22 -0
- package/dist/types/components/highlight/corner/corner.d.ts +29 -0
- package/dist/types/components/highlight/highlight/highlight.d.ts +35 -0
- package/dist/types/components/icon_picker/icon_picker.d.ts +34 -0
- package/dist/types/components/icons/icons.d.ts +33 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/link/index.d.ts +2 -0
- package/dist/types/components/link/link_display/link_display.d.ts +29 -0
- package/dist/types/components/link/link_editor/link_editor.d.ts +62 -0
- package/dist/types/components/menu/menu.d.ts +78 -0
- package/dist/types/components/menu_popover/menu_popover.d.ts +127 -0
- package/dist/types/components/named_range_selector/named_range_selector.d.ts +36 -0
- package/dist/types/components/number_editor/number_editor.d.ts +80 -0
- package/dist/types/components/number_input/number_input.d.ts +67 -0
- package/dist/types/components/paint_format_button/paint_format_button.d.ts +20 -0
- package/dist/types/components/paint_format_button/paint_format_store.d.ts +22 -0
- package/dist/types/components/pivot_html_renderer/pivot_html_renderer.d.ts +88 -0
- package/dist/types/components/popover/cell_popover_store.d.ts +16 -0
- package/dist/types/components/popover/index.d.ts +3 -0
- package/dist/types/components/popover/popover.d.ts +83 -0
- package/dist/types/components/popover/popover_builders.d.ts +1 -0
- package/dist/types/components/scrollbar/index.d.ts +2 -0
- package/dist/types/components/scrollbar/scrollbar.d.ts +39 -0
- package/dist/types/components/scrollbar/scrollbar_horizontal.d.ts +32 -0
- package/dist/types/components/scrollbar/scrollbar_vertical.d.ts +32 -0
- package/dist/types/components/scrollbar.d.ts +9 -0
- package/dist/types/components/select/select.d.ts +59 -0
- package/dist/types/components/selection/selection.d.ts +11 -0
- package/dist/types/components/selection_input/selection_input.d.ts +120 -0
- package/dist/types/components/selection_input/selection_input_store.d.ts +99 -0
- package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +59 -0
- package/dist/types/components/side_panel/chart/bar_chart/bar_chart_config_panel.d.ts +12 -0
- package/dist/types/components/side_panel/chart/bar_chart/bar_chart_design_panel.d.ts +14 -0
- package/dist/types/components/side_panel/chart/building_blocks/axis_design/axis_design_editor.d.ts +71 -0
- package/dist/types/components/side_panel/chart/building_blocks/chart_title/chart_title.d.ts +49 -0
- package/dist/types/components/side_panel/chart/building_blocks/color_scale/color_scale_picker.d.ts +50 -0
- package/dist/types/components/side_panel/chart/building_blocks/data_series/data_series.d.ts +72 -0
- package/dist/types/components/side_panel/chart/building_blocks/data_source/data_source.d.ts +52 -0
- package/dist/types/components/side_panel/chart/building_blocks/error_section/error_section.d.ts +21 -0
- package/dist/types/components/side_panel/chart/building_blocks/general_design/general_design_editor.d.ts +48 -0
- package/dist/types/components/side_panel/chart/building_blocks/generic_side_panel/config_panel.d.ts +50 -0
- package/dist/types/components/side_panel/chart/building_blocks/humanize_numbers/humanize_numbers.d.ts +18 -0
- package/dist/types/components/side_panel/chart/building_blocks/label_range/label_range.d.ts +42 -0
- package/dist/types/components/side_panel/chart/building_blocks/legend/legend.d.ts +31 -0
- package/dist/types/components/side_panel/chart/building_blocks/pie_hole_size/pie_hole_size.d.ts +21 -0
- package/dist/types/components/side_panel/chart/building_blocks/range_data_source/range_data_source.d.ts +110 -0
- package/dist/types/components/side_panel/chart/building_blocks/series_design/series_design_editor.d.ts +57 -0
- package/dist/types/components/side_panel/chart/building_blocks/series_design/series_with_axis_design_editor.d.ts +58 -0
- package/dist/types/components/side_panel/chart/building_blocks/show_data_markers/show_data_markers.d.ts +17 -0
- package/dist/types/components/side_panel/chart/building_blocks/show_values/show_values.d.ts +25 -0
- package/dist/types/components/side_panel/chart/building_blocks/text_styler/text_styler.d.ts +87 -0
- package/dist/types/components/side_panel/chart/calendar_chart/calendar_chart_config_panel.d.ts +22 -0
- package/dist/types/components/side_panel/chart/calendar_chart/calendar_chart_design_panel.d.ts +39 -0
- package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +51 -0
- package/dist/types/components/side_panel/chart/chart_with_axis/design_panel.d.ts +32 -0
- package/dist/types/components/side_panel/chart/combo_chart/combo_chart_design_panel.d.ts +28 -0
- package/dist/types/components/side_panel/chart/common.d.ts +13 -0
- package/dist/types/components/side_panel/chart/funnel_chart_panel/funnel_chart_config_panel.d.ts +10 -0
- package/dist/types/components/side_panel/chart/funnel_chart_panel/funnel_chart_design_panel.d.ts +32 -0
- package/dist/types/components/side_panel/chart/gauge_chart_panel/gauge_chart_config_panel.d.ts +28 -0
- package/dist/types/components/side_panel/chart/gauge_chart_panel/gauge_chart_design_panel.d.ts +55 -0
- package/dist/types/components/side_panel/chart/geo_chart_panel/geo_chart_config_panel.d.ts +13 -0
- package/dist/types/components/side_panel/chart/geo_chart_panel/geo_chart_design_panel.d.ts +29 -0
- package/dist/types/components/side_panel/chart/geo_chart_panel/geo_chart_region_select_section.d.ts +28 -0
- package/dist/types/components/side_panel/chart/hierarchical_chart/hierarchical_chart_config_panel.d.ts +10 -0
- package/dist/types/components/side_panel/chart/index.d.ts +15 -0
- package/dist/types/components/side_panel/chart/line_chart/line_chart_config_panel.d.ts +15 -0
- package/dist/types/components/side_panel/chart/line_chart/line_chart_design_panel.d.ts +19 -0
- package/dist/types/components/side_panel/chart/main_chart_panel/main_chart_panel.d.ts +33 -0
- package/dist/types/components/side_panel/chart/main_chart_panel/main_chart_panel_store.d.ts +23 -0
- package/dist/types/components/side_panel/chart/pie_chart/pie_chart_design_panel.d.ts +48 -0
- package/dist/types/components/side_panel/chart/radar_chart/radar_chart_design_panel.d.ts +31 -0
- package/dist/types/components/side_panel/chart/scatter_chart/scatter_chart_config_panel.d.ts +12 -0
- package/dist/types/components/side_panel/chart/scorecard_chart_panel/scorecard_chart_config_panel.d.ts +38 -0
- package/dist/types/components/side_panel/chart/scorecard_chart_panel/scorecard_chart_design_panel.d.ts +42 -0
- package/dist/types/components/side_panel/chart/sunburst_chart/sunburst_chart_design_panel.d.ts +48 -0
- package/dist/types/components/side_panel/chart/treemap_chart/treemap_category_color/treemap_category_color.d.ts +28 -0
- package/dist/types/components/side_panel/chart/treemap_chart/treemap_chart_design_panel.d.ts +57 -0
- package/dist/types/components/side_panel/chart/treemap_chart/treemap_color_scale/treemap_color_scale.d.ts +24 -0
- package/dist/types/components/side_panel/chart/waterfall_chart/waterfall_chart_design_panel.d.ts +50 -0
- package/dist/types/components/side_panel/chart/zoomable_chart/design_panel.d.ts +25 -0
- package/dist/types/components/side_panel/column_stats/column_stats_panel.d.ts +70 -0
- package/dist/types/components/side_panel/column_stats/column_stats_store.d.ts +50 -0
- package/dist/types/components/side_panel/components/badge_selection/badge_selection.d.ts +21 -0
- package/dist/types/components/side_panel/components/checkbox/checkbox.d.ts +46 -0
- package/dist/types/components/side_panel/components/cog_wheel_menu/cog_wheel_menu.d.ts +22 -0
- package/dist/types/components/side_panel/components/collapse/collapse.d.ts +17 -0
- package/dist/types/components/side_panel/components/collapsible/side_panel_collapsible.d.ts +25 -0
- package/dist/types/components/side_panel/components/radio_selection/radio_selection.d.ts +32 -0
- package/dist/types/components/side_panel/components/round_color_picker/round_color_picker.d.ts +44 -0
- package/dist/types/components/side_panel/components/section/section.d.ts +20 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/cell_is_rule_editor.d.ts +23 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/cf_editor.d.ts +45 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/cf_editor_store.d.ts +97 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor.d.ts +18 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor_threshold.d.ts +31 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/data_bar_rule_editor.d.ts +23 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/icon_set_rule_editor.d.ts +30 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_preview/cf_preview.d.ts +28 -0
- package/dist/types/components/side_panel/conditional_formatting/cf_preview_list/cf_preview_list.d.ts +24 -0
- package/dist/types/components/side_panel/criterion_form/criterion_form.d.ts +26 -0
- package/dist/types/components/side_panel/criterion_form/criterion_input/criterion_input.d.ts +67 -0
- package/dist/types/components/side_panel/criterion_form/date_criterion/date_criterion.d.ts +15 -0
- package/dist/types/components/side_panel/criterion_form/double_input_criterion/double_input_criterion.d.ts +10 -0
- package/dist/types/components/side_panel/criterion_form/single_input_criterion/single_input_criterion.d.ts +9 -0
- package/dist/types/components/side_panel/criterion_form/top_10_criterion/top_10_criterion.d.ts +17 -0
- package/dist/types/components/side_panel/criterion_form/value_in_list_criterion/value_in_list_criterion.d.ts +33 -0
- package/dist/types/components/side_panel/criterion_form/value_in_range_criterion/value_in_range_criterion.d.ts +22 -0
- package/dist/types/components/side_panel/data_validation/data_validation_panel.d.ts +20 -0
- package/dist/types/components/side_panel/data_validation/dv_editor/dv_editor.d.ts +50 -0
- package/dist/types/components/side_panel/data_validation/dv_preview/dv_preview.d.ts +20 -0
- package/dist/types/components/side_panel/find_and_replace/find_and_replace.d.ts +52 -0
- package/dist/types/components/side_panel/find_and_replace/find_and_replace_store.d.ts +73 -0
- package/dist/types/components/side_panel/more_formats/more_formats.d.ts +40 -0
- package/dist/types/components/side_panel/more_formats/more_formats_store.d.ts +64 -0
- package/dist/types/components/side_panel/named_ranges_panel/named_range_preview/named_range_preview.d.ts +33 -0
- package/dist/types/components/side_panel/named_ranges_panel/named_ranges_panel.d.ts +22 -0
- package/dist/types/components/side_panel/pivot/pivot_custom_groups_collapsible/pivot_custom_groups_collapsible.d.ts +30 -0
- package/dist/types/components/side_panel/pivot/pivot_defer_update/pivot_defer_update.d.ts +28 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/add_dimension_button/add_dimension_button.d.ts +46 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_dimension/pivot_dimension.d.ts +36 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_dimension_granularity/pivot_dimension_granularity.d.ts +40 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_dimension_order/pivot_dimension_order.d.ts +21 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +79 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_measure/pivot_measure.d.ts +44 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_sort_section/pivot_sort_section.d.ts +26 -0
- package/dist/types/components/side_panel/pivot/pivot_measure_display_panel/pivot_measure_display_panel.d.ts +72 -0
- package/dist/types/components/side_panel/pivot/pivot_measure_display_panel/pivot_measure_display_panel_store.d.ts +37 -0
- package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_design_panel/pivot_design_panel.d.ts +34 -0
- package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_side_panel.d.ts +39 -0
- package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_side_panel_store.d.ts +44 -0
- package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_spreadsheet_side_panel/pivot_spreadsheet_side_panel.d.ts +50 -0
- package/dist/types/components/side_panel/pivot/pivot_title_section/pivot_title_section.d.ts +30 -0
- package/dist/types/components/side_panel/remove_duplicates/remove_duplicates.d.ts +39 -0
- package/dist/types/components/side_panel/settings/settings_panel.d.ts +34 -0
- package/dist/types/components/side_panel/side_panel/side_panel.d.ts +43 -0
- package/dist/types/components/side_panel/side_panel/side_panel_store.d.ts +56 -0
- package/dist/types/components/side_panel/side_panels/side_panels.d.ts +23 -0
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +41 -0
- package/dist/types/components/side_panel/table_panel/table_panel.d.ts +56 -0
- package/dist/types/components/side_panel/table_style_editor_panel/table_style_editor_panel.d.ts +51 -0
- package/dist/types/components/small_bottom_bar/ribbon_menu/ribbon_menu.d.ts +36 -0
- package/dist/types/components/small_bottom_bar/small_bottom_bar.d.ts +36 -0
- package/dist/types/components/spreadsheet/spreadsheet.d.ts +82 -0
- package/dist/types/components/spreadsheet_print/spreadsheet_print.d.ts +35 -0
- package/dist/types/components/spreadsheet_print/spreadsheet_print_store.d.ts +78 -0
- package/dist/types/components/standalone_grid_canvas/figure_renderer_store.d.ts +16 -0
- package/dist/types/components/standalone_grid_canvas/standalone_grid_canvas.d.ts +27 -0
- package/dist/types/components/tables/hovered_table_store.d.ts +13 -0
- package/dist/types/components/tables/table_dropdown_button/table_dropdown_button.d.ts +40 -0
- package/dist/types/components/tables/table_resizer/table_resizer.d.ts +27 -0
- package/dist/types/components/tables/table_style_picker/table_style_picker.d.ts +34 -0
- package/dist/types/components/tables/table_style_preview/table_canvas_helpers.d.ts +8 -0
- package/dist/types/components/tables/table_style_preview/table_style_preview.d.ts +45 -0
- package/dist/types/components/tables/table_styles_popover/table_styles_popover.d.ts +59 -0
- package/dist/types/components/text_input/text_input.d.ts +60 -0
- package/dist/types/components/top_bar/color_editor/color_editor.d.ts +32 -0
- package/dist/types/components/top_bar/dropdown_action/dropdown_action.d.ts +34 -0
- package/dist/types/components/top_bar/font_size_editor/font_size_editor.d.ts +25 -0
- package/dist/types/components/top_bar/number_formats_tool/number_formats_tool.d.ts +34 -0
- package/dist/types/components/top_bar/top_bar.d.ts +85 -0
- package/dist/types/components/top_bar/top_bar_tool_store.d.ts +14 -0
- package/dist/types/components/top_bar/top_bar_tools_registry.d.ts +2 -0
- package/dist/types/components/top_bar/zoom_editor/zoom_editor.d.ts +24 -0
- package/dist/types/components/translations_terms.d.ts +165 -0
- package/dist/types/components/validation_messages/validation_messages.d.ts +21 -0
- package/dist/types/constants.d.ts +176 -0
- package/dist/types/dom_mock.d.ts +0 -0
- package/dist/types/formulas/code_builder.d.ts +24 -0
- package/dist/types/formulas/compiler.d.ts +108 -0
- package/dist/types/formulas/composer_tokenizer.d.ts +54 -0
- package/dist/types/formulas/formula_formatter.d.ts +18 -0
- package/dist/types/formulas/parser.d.ts +107 -0
- package/dist/types/formulas/range_tokenizer.d.ts +8 -0
- package/dist/types/formulas/tokenizer.d.ts +26 -0
- package/dist/types/functions/arguments.d.ts +90 -0
- package/dist/types/functions/autocomplete_arguments_provider.d.ts +13 -0
- package/dist/types/functions/create_compute_function.d.ts +5 -0
- package/dist/types/functions/function_registry.d.ts +11 -0
- package/dist/types/functions/function_registry_population.d.ts +10 -0
- package/dist/types/functions/helper_assert.d.ts +8 -0
- package/dist/types/functions/helper_financial.d.ts +59 -0
- package/dist/types/functions/helper_logical.d.ts +9 -0
- package/dist/types/functions/helper_lookup.d.ts +11 -0
- package/dist/types/functions/helper_math.d.ts +4 -0
- package/dist/types/functions/helper_matrices.d.ts +24 -0
- package/dist/types/functions/helper_parser.d.ts +99 -0
- package/dist/types/functions/helper_statistical.d.ts +21 -0
- package/dist/types/functions/helpers.d.ts +150 -0
- package/dist/types/functions/module_array.d.ts +144 -0
- package/dist/types/functions/module_database.d.ts +73 -0
- package/dist/types/functions/module_date.d.ts +198 -0
- package/dist/types/functions/module_engineering.d.ts +7 -0
- package/dist/types/functions/module_filter.d.ts +17 -0
- package/dist/types/functions/module_financial.d.ts +338 -0
- package/dist/types/functions/module_info.d.ts +68 -0
- package/dist/types/functions/module_logical.d.ts +39 -0
- package/dist/types/functions/module_lookup.d.ts +121 -0
- package/dist/types/functions/module_math.d.ts +383 -0
- package/dist/types/functions/module_operators.d.ts +96 -0
- package/dist/types/functions/module_parser.d.ts +7 -0
- package/dist/types/functions/module_statistical.d.ts +252 -0
- package/dist/types/functions/module_text.d.ts +176 -0
- package/dist/types/functions/module_web.d.ts +7 -0
- package/dist/types/helpers/carousel_helpers.d.ts +6 -0
- package/dist/types/helpers/cells/cell_evaluation.d.ts +32 -0
- package/dist/types/helpers/cells/position_map.d.ts +15 -0
- package/dist/types/helpers/chart_date.d.ts +16 -0
- package/dist/types/helpers/clipboard/clipboard_helpers.d.ts +44 -0
- package/dist/types/helpers/clipboard/navigator_clipboard_wrapper.d.ts +2 -0
- package/dist/types/helpers/color.d.ts +127 -0
- package/dist/types/helpers/concurrency.d.ts +12 -0
- package/dist/types/helpers/coordinates.d.ts +39 -0
- package/dist/types/helpers/criterion_helpers.d.ts +5 -0
- package/dist/types/helpers/data_normalization.d.ts +19 -0
- package/dist/types/helpers/dates.d.ts +94 -0
- package/dist/types/helpers/edge_scrolling.d.ts +9 -0
- package/dist/types/helpers/event_bus.d.ts +45 -0
- package/dist/types/helpers/expand_range.d.ts +8 -0
- package/dist/types/helpers/figures/chart.d.ts +30 -0
- package/dist/types/helpers/figures/charts/abstract_chart.d.ts +4 -0
- package/dist/types/helpers/figures/charts/bar_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/calendar_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/chart_common.d.ts +63 -0
- package/dist/types/helpers/figures/charts/chart_data_sources.d.ts +11 -0
- package/dist/types/helpers/figures/charts/chart_js_extension.d.ts +9 -0
- package/dist/types/helpers/figures/charts/chart_ui_common.d.ts +25 -0
- package/dist/types/helpers/figures/charts/combo_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/funnel_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/gauge_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/gauge_chart_rendering.d.ts +45 -0
- package/dist/types/helpers/figures/charts/geo_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/index.d.ts +9 -0
- package/dist/types/helpers/figures/charts/line_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/pie_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/pyramid_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/radar_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/runtime/chart_custom_tooltip.d.ts +1 -0
- package/dist/types/helpers/figures/charts/runtime/chart_data_extractor.d.ts +22 -0
- package/dist/types/helpers/figures/charts/runtime/chart_zoom.d.ts +2 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_dataset.d.ts +30 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_layout.d.ts +6 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_legend.d.ts +20 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_scales.d.ts +21 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_show_values.d.ts +9 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_title.d.ts +4 -0
- package/dist/types/helpers/figures/charts/runtime/chartjs_tooltip.d.ts +20 -0
- package/dist/types/helpers/figures/charts/runtime/index.d.ts +8 -0
- package/dist/types/helpers/figures/charts/scatter_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/scorecard_chart.d.ts +4 -0
- package/dist/types/helpers/figures/charts/scorecard_chart_config_builder.d.ts +45 -0
- package/dist/types/helpers/figures/charts/smart_chart_engine.d.ts +5 -0
- package/dist/types/helpers/figures/charts/sunburst_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/tree_map_chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/waterfall_chart.d.ts +2 -0
- package/dist/types/helpers/figures/figure/figure.d.ts +4 -0
- package/dist/types/helpers/figures/images/image_provider.d.ts +11 -0
- package/dist/types/helpers/format/format.d.ts +53 -0
- package/dist/types/helpers/format/format_parser.d.ts +39 -0
- package/dist/types/helpers/format/format_tokenizer.d.ts +43 -0
- package/dist/types/helpers/formulas.d.ts +5 -0
- package/dist/types/helpers/index.d.ts +18 -0
- package/dist/types/helpers/internal_viewport.d.ts +86 -0
- package/dist/types/helpers/inverse_command.d.ts +2 -0
- package/dist/types/helpers/links.d.ts +31 -0
- package/dist/types/helpers/locale.d.ts +60 -0
- package/dist/types/helpers/matrix.d.ts +3 -0
- package/dist/types/helpers/misc.d.ts +230 -0
- package/dist/types/helpers/numbers.d.ts +25 -0
- package/dist/types/helpers/pivot/pivot_composer_helpers.d.ts +63 -0
- package/dist/types/helpers/pivot/pivot_domain_helpers.d.ts +70 -0
- package/dist/types/helpers/pivot/pivot_helpers.d.ts +83 -0
- package/dist/types/helpers/pivot/pivot_highlight.d.ts +2 -0
- package/dist/types/helpers/pivot/pivot_menu_items.d.ts +16 -0
- package/dist/types/helpers/pivot/pivot_positional_formula_registry.d.ts +7 -0
- package/dist/types/helpers/pivot/pivot_presence_tracker.d.ts +9 -0
- package/dist/types/helpers/pivot/pivot_presentation.d.ts +98 -0
- package/dist/types/helpers/pivot/pivot_registry.d.ts +32 -0
- package/dist/types/helpers/pivot/pivot_runtime_definition.d.ts +20 -0
- package/dist/types/helpers/pivot/pivot_side_panel_registry.d.ts +6 -0
- package/dist/types/helpers/pivot/pivot_time_adapter.d.ts +10 -0
- package/dist/types/helpers/pivot/spreadsheet_pivot/data_entry_spreadsheet_pivot.d.ts +20 -0
- package/dist/types/helpers/pivot/spreadsheet_pivot/date_spreadsheet_pivot.d.ts +8 -0
- package/dist/types/helpers/pivot/spreadsheet_pivot/runtime_definition_spreadsheet_pivot.d.ts +8 -0
- package/dist/types/helpers/pivot/spreadsheet_pivot/spreadsheet_pivot.d.ts +91 -0
- package/dist/types/helpers/pivot/table_spreadsheet_pivot.d.ts +111 -0
- package/dist/types/helpers/pivot_table_presets.d.ts +3 -0
- package/dist/types/helpers/range.d.ts +63 -0
- package/dist/types/helpers/range_adapter_functions.d.ts +2 -0
- package/dist/types/helpers/recompute_zones.d.ts +133 -0
- package/dist/types/helpers/rectangle.d.ts +8 -0
- package/dist/types/helpers/reference_type.d.ts +14 -0
- package/dist/types/helpers/references.d.ts +27 -0
- package/dist/types/helpers/rendering.d.ts +2 -0
- package/dist/types/helpers/search.d.ts +19 -0
- package/dist/types/helpers/selection_statistic_functions.d.ts +14 -0
- package/dist/types/helpers/sheet.d.ts +8 -0
- package/dist/types/helpers/sort.d.ts +16 -0
- package/dist/types/helpers/sort_interactive.d.ts +4 -0
- package/dist/types/helpers/state_manager_helpers.d.ts +6 -0
- package/dist/types/helpers/table_helpers.d.ts +9 -0
- package/dist/types/helpers/table_presets.d.ts +84 -0
- package/dist/types/helpers/text_helper.d.ts +52 -0
- package/dist/types/helpers/ui/cut_interactive.d.ts +2 -0
- package/dist/types/helpers/ui/freeze_interactive.d.ts +3 -0
- package/dist/types/helpers/ui/merge_interactive.d.ts +7 -0
- package/dist/types/helpers/ui/named_range_interactive.d.ts +4 -0
- package/dist/types/helpers/ui/paste_interactive.d.ts +12 -0
- package/dist/types/helpers/ui/sheet_interactive.d.ts +3 -0
- package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +6 -0
- package/dist/types/helpers/ui/table_interactive.d.ts +8 -0
- package/dist/types/helpers/ui/toggle_group_interactive.d.ts +7 -0
- package/dist/types/helpers/uuid.d.ts +18 -0
- package/dist/types/helpers/viewport_collection.d.ts +196 -0
- package/dist/types/helpers/zones.d.ts +206 -0
- package/dist/types/history/branch.d.ts +63 -0
- package/dist/types/history/factory.d.ts +10 -0
- package/dist/types/history/operation.d.ts +18 -0
- package/dist/types/history/operation_sequence.d.ts +32 -0
- package/dist/types/history/repeat_commands/repeat_commands_generic.d.ts +8 -0
- package/dist/types/history/repeat_commands/repeat_commands_specific.d.ts +13 -0
- package/dist/types/history/repeat_commands/repeat_revision.d.ts +5 -0
- package/dist/types/history/selective_history.d.ts +81 -0
- package/dist/types/history/tree.d.ts +176 -0
- package/dist/types/index.d.ts +412 -0
- package/dist/types/migrations/data.d.ts +31 -0
- package/dist/types/migrations/legacy_tools.d.ts +15 -0
- package/dist/types/migrations/locale.d.ts +94 -0
- package/dist/types/migrations/migration_steps.d.ts +5 -0
- package/dist/types/model.d.ts +168 -0
- package/dist/types/plugins/base_plugin.d.ts +65 -0
- package/dist/types/plugins/core/borders.d.ts +129 -0
- package/dist/types/plugins/core/carousel.d.ts +20 -0
- package/dist/types/plugins/core/cell.d.ts +99 -0
- package/dist/types/plugins/core/chart.d.ts +45 -0
- package/dist/types/plugins/core/conditional_format.d.ts +59 -0
- package/dist/types/plugins/core/data_validation.d.ts +38 -0
- package/dist/types/plugins/core/figures.d.ts +40 -0
- package/dist/types/plugins/core/header_grouping.d.ts +84 -0
- package/dist/types/plugins/core/header_size.d.ts +24 -0
- package/dist/types/plugins/core/header_visibility.d.ts +21 -0
- package/dist/types/plugins/core/image.d.ts +30 -0
- package/dist/types/plugins/core/merge.d.ts +81 -0
- package/dist/types/plugins/core/named_range.d.ts +23 -0
- package/dist/types/plugins/core/pivot.d.ts +71 -0
- package/dist/types/plugins/core/range.d.ts +71 -0
- package/dist/types/plugins/core/settings.d.ts +14 -0
- package/dist/types/plugins/core/sheet.d.ts +154 -0
- package/dist/types/plugins/core/spreadsheet_pivot.d.ts +6 -0
- package/dist/types/plugins/core/squisher.d.ts +82 -0
- package/dist/types/plugins/core/table_style.d.ts +24 -0
- package/dist/types/plugins/core/tables.d.ts +61 -0
- package/dist/types/plugins/core/unsquisher.d.ts +60 -0
- package/dist/types/plugins/core_plugin.d.ts +47 -0
- package/dist/types/plugins/core_view_plugin.d.ts +29 -0
- package/dist/types/plugins/index.d.ts +8 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/binary_grid.d.ts +36 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/compilation_parameters.d.ts +17 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +54 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/evaluator.d.ts +63 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/formula_dependency_graph.d.ts +18 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/index.d.ts +1 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/interval_tree.d.ts +47 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/position_set.d.ts +28 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/r_tree.d.ts +108 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/range_set.d.ts +23 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/spreading_relation.d.ts +63 -0
- package/dist/types/plugins/ui_core_views/cell_evaluation/zone_set.d.ts +16 -0
- package/dist/types/plugins/ui_core_views/cell_icon_plugin.d.ts +15 -0
- package/dist/types/plugins/ui_core_views/custom_colors.d.ts +29 -0
- package/dist/types/plugins/ui_core_views/dynamic_tables.d.ts +38 -0
- package/dist/types/plugins/ui_core_views/evaluation_chart.d.ts +26 -0
- package/dist/types/plugins/ui_core_views/evaluation_conditional_format.d.ts +36 -0
- package/dist/types/plugins/ui_core_views/evaluation_data_validation.d.ts +54 -0
- package/dist/types/plugins/ui_core_views/formula_tracker.d.ts +8 -0
- package/dist/types/plugins/ui_core_views/header_sizes_ui.d.ts +36 -0
- package/dist/types/plugins/ui_core_views/pivot_ui.d.ts +62 -0
- package/dist/types/plugins/ui_feature/autofill.d.ts +63 -0
- package/dist/types/plugins/ui_feature/automatic_sum.d.ts +102 -0
- package/dist/types/plugins/ui_feature/cell_computed_style.d.ts +16 -0
- package/dist/types/plugins/ui_feature/checkbox_toggle.d.ts +9 -0
- package/dist/types/plugins/ui_feature/collaborative.d.ts +24 -0
- package/dist/types/plugins/ui_feature/data_cleanup.d.ts +16 -0
- package/dist/types/plugins/ui_feature/datavalidation_insertion.d.ts +5 -0
- package/dist/types/plugins/ui_feature/dynamic_translate.d.ts +13 -0
- package/dist/types/plugins/ui_feature/format.d.ts +25 -0
- package/dist/types/plugins/ui_feature/geo_features.d.ts +23 -0
- package/dist/types/plugins/ui_feature/header_visibility_ui.d.ts +22 -0
- package/dist/types/plugins/ui_feature/index.d.ts +1 -0
- package/dist/types/plugins/ui_feature/insert_pivot.d.ts +15 -0
- package/dist/types/plugins/ui_feature/local_history.d.ts +36 -0
- package/dist/types/plugins/ui_feature/lock_sheet.d.ts +7 -0
- package/dist/types/plugins/ui_feature/pivot_presence_plugin.d.ts +11 -0
- package/dist/types/plugins/ui_feature/sort.d.ts +30 -0
- package/dist/types/plugins/ui_feature/split_to_columns.d.ts +21 -0
- package/dist/types/plugins/ui_feature/subtotal_evaluation.d.ts +5 -0
- package/dist/types/plugins/ui_feature/table_autofill.d.ts +6 -0
- package/dist/types/plugins/ui_feature/table_computed_style.d.ts +28 -0
- package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +6 -0
- package/dist/types/plugins/ui_feature/ui_options.d.ts +8 -0
- package/dist/types/plugins/ui_feature/ui_sheet.d.ts +55 -0
- package/dist/types/plugins/ui_plugin.d.ts +45 -0
- package/dist/types/plugins/ui_stateful/carousel_ui.d.ts +21 -0
- package/dist/types/plugins/ui_stateful/clipboard.d.ts +65 -0
- package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +29 -0
- package/dist/types/plugins/ui_stateful/header_positions.d.ts +28 -0
- package/dist/types/plugins/ui_stateful/selection.d.ts +99 -0
- package/dist/types/plugins/ui_stateful/sheetview.d.ts +123 -0
- package/dist/types/registries/auto_completes/auto_complete_registry.d.ts +59 -0
- package/dist/types/registries/auto_completes/data_validation_auto_complete.d.ts +1 -0
- package/dist/types/registries/auto_completes/function_auto_complete.d.ts +1 -0
- package/dist/types/registries/auto_completes/index.d.ts +5 -0
- package/dist/types/registries/auto_completes/pivot_auto_complete.d.ts +1 -0
- package/dist/types/registries/auto_completes/pivot_dimension_auto_complete.d.ts +4 -0
- package/dist/types/registries/auto_completes/sheet_name_auto_complete.d.ts +1 -0
- package/dist/types/registries/autofill_modifiers.d.ts +7 -0
- package/dist/types/registries/autofill_rules.d.ts +22 -0
- package/dist/types/registries/cell_animation_registry.d.ts +28 -0
- package/dist/types/registries/cell_clickable_registry.d.ts +13 -0
- package/dist/types/registries/cell_popovers_registry.d.ts +3 -0
- package/dist/types/registries/chart_component_registry.d.ts +3 -0
- package/dist/types/registries/chart_data_source_component_registry.d.ts +3 -0
- package/dist/types/registries/chart_data_source_registry.d.ts +28 -0
- package/dist/types/registries/chart_registry.d.ts +64 -0
- package/dist/types/registries/chart_subtype_registry.d.ts +3 -0
- package/dist/types/registries/chart_types.d.ts +1 -0
- package/dist/types/registries/clipboardHandlersRegistries.d.ts +7 -0
- package/dist/types/registries/criterion_component_registry.d.ts +13 -0
- package/dist/types/registries/criterion_registry.d.ts +44 -0
- package/dist/types/registries/currencies_registry.d.ts +7 -0
- package/dist/types/registries/evaluation_registry.d.ts +9 -0
- package/dist/types/registries/figures_registry.d.ts +19 -0
- package/dist/types/registries/icons_on_cell_registry.d.ts +23 -0
- package/dist/types/registries/interactive_icon_on_cell_registry.d.ts +1 -0
- package/dist/types/registries/inverse_command_registry.d.ts +5 -0
- package/dist/types/registries/menu_items_registry.d.ts +21 -0
- package/dist/types/registries/menus/cell_menu_registry.d.ts +2 -0
- package/dist/types/registries/menus/col_menu_registry.d.ts +2 -0
- package/dist/types/registries/menus/header_group_registry.d.ts +7 -0
- package/dist/types/registries/menus/index.d.ts +6 -0
- package/dist/types/registries/menus/number_format_menu_registry.d.ts +7 -0
- package/dist/types/registries/menus/row_menu_registry.d.ts +2 -0
- package/dist/types/registries/menus/sheet_menu_registry.d.ts +5 -0
- package/dist/types/registries/menus/table_style_menu_registry.d.ts +3 -0
- package/dist/types/registries/menus/topbar_menu_registry.d.ts +2 -0
- package/dist/types/registries/ot_registry.d.ts +21 -0
- package/dist/types/registries/registry.d.ts +52 -0
- package/dist/types/registries/repeat_commands_registry.d.ts +3 -0
- package/dist/types/registries/repeat_transform_registry.d.ts +18 -0
- package/dist/types/registries/side_panel_registry.d.ts +15 -0
- package/dist/types/registries/srt_registry.d.ts +11 -0
- package/dist/types/registries/toolbar_menu_registry.d.ts +19 -0
- package/dist/types/registries/topbar_component_registry.d.ts +20 -0
- package/dist/types/registry.d.ts +10 -0
- package/dist/types/selection_stream/event_stream.d.ts +65 -0
- package/dist/types/selection_stream/selection_stream_processor.d.ts +138 -0
- package/dist/types/state_observer.d.ts +18 -0
- package/dist/types/store_engine/dependency_container.d.ts +26 -0
- package/dist/types/store_engine/index.d.ts +4 -0
- package/dist/types/store_engine/store.d.ts +20 -0
- package/dist/types/store_engine/store_hooks.d.ts +18 -0
- package/dist/types/stores/DOM_focus_store.d.ts +6 -0
- package/dist/types/stores/array_formula_highlight.d.ts +9 -0
- package/dist/types/stores/client_focus_store.d.ts +15 -0
- package/dist/types/stores/formula_fingerprints_store.d.ts +20 -0
- package/dist/types/stores/grid_renderer_store.d.ts +41 -0
- package/dist/types/stores/highlight_store.d.ts +16 -0
- package/dist/types/stores/index.d.ts +2 -0
- package/dist/types/stores/model_store.d.ts +2 -0
- package/dist/types/stores/notification_store.d.ts +8 -0
- package/dist/types/stores/renderer_store.d.ts +23 -0
- package/dist/types/stores/screen_width_store.d.ts +6 -0
- package/dist/types/stores/spreadsheet_store.d.ts +14 -0
- package/dist/types/translation.d.ts +21 -0
- package/dist/types/types/autofill.d.ts +71 -0
- package/dist/types/types/canvas.d.ts +2 -0
- package/dist/types/types/cell_popovers.d.ts +51 -0
- package/dist/types/types/cells.d.ts +66 -0
- package/dist/types/types/chart/bar_chart.d.ts +17 -0
- package/dist/types/types/chart/calendar_chart.d.ts +16 -0
- package/dist/types/types/chart/chart.d.ts +222 -0
- package/dist/types/types/chart/chartjs.d.ts +2 -0
- package/dist/types/types/chart/chartjs_tree_map_type.d.ts +131 -0
- package/dist/types/types/chart/combo_chart.d.ts +22 -0
- package/dist/types/types/chart/common_chart.d.ts +16 -0
- package/dist/types/types/chart/funnel_chart.d.ts +24 -0
- package/dist/types/types/chart/gauge_chart.d.ts +89 -0
- package/dist/types/types/chart/geo_chart.d.ts +26 -0
- package/dist/types/types/chart/index.d.ts +13 -0
- package/dist/types/types/chart/line_chart.d.ts +21 -0
- package/dist/types/types/chart/pie_chart.d.ts +15 -0
- package/dist/types/types/chart/pyramid_chart.d.ts +13 -0
- package/dist/types/types/chart/radar_chart.d.ts +18 -0
- package/dist/types/types/chart/scatter_chart.d.ts +6 -0
- package/dist/types/types/chart/scorecard_chart.d.ts +39 -0
- package/dist/types/types/chart/sunburst_chart.d.ts +42 -0
- package/dist/types/types/chart/tree_map_chart.d.ts +52 -0
- package/dist/types/types/chart/waterfall_chart.d.ts +19 -0
- package/dist/types/types/chart_subtype_properties.d.ts +26 -0
- package/dist/types/types/clipboard/clipboard_interface.d.ts +12 -0
- package/dist/types/types/clipboard.d.ts +57 -0
- package/dist/types/types/collaborative/revisions.d.ts +8 -0
- package/dist/types/types/collaborative/session.d.ts +53 -0
- package/dist/types/types/collaborative/transport_service.d.ts +95 -0
- package/dist/types/types/commands.d.ts +940 -0
- package/dist/types/types/conditional_formatting.d.ts +114 -0
- package/dist/types/types/core_getters.d.ts +74 -0
- package/dist/types/types/currency.d.ts +7 -0
- package/dist/types/types/data_validation.d.ts +138 -0
- package/dist/types/types/env.d.ts +10 -0
- package/dist/types/types/errors.d.ts +45 -0
- package/dist/types/types/event_stream/index.d.ts +1 -0
- package/dist/types/types/event_stream/selection_events.d.ts +11 -0
- package/dist/types/types/figure.d.ts +39 -0
- package/dist/types/types/files.d.ts +28 -0
- package/dist/types/types/find_and_replace.d.ts +8 -0
- package/dist/types/types/format.d.ts +8 -0
- package/dist/types/types/functions.d.ts +58 -0
- package/dist/types/types/generic_criterion.d.ts +16 -0
- package/dist/types/types/getters.d.ts +44 -0
- package/dist/types/types/history.d.ts +43 -0
- package/dist/types/types/image.d.ts +23 -0
- package/dist/types/types/index.d.ts +36 -0
- package/dist/types/types/locale.d.ts +17 -0
- package/dist/types/types/misc.d.ts +344 -0
- package/dist/types/types/model.d.ts +46 -0
- package/dist/types/types/pivot.d.ts +187 -0
- package/dist/types/types/pivot_runtime.d.ts +32 -0
- package/dist/types/types/props_of.d.ts +5 -0
- package/dist/types/types/range.d.ts +29 -0
- package/dist/types/types/rendering.d.ts +119 -0
- package/dist/types/types/scroll_direction.d.ts +1 -0
- package/dist/types/types/selection_stream_processor.d.ts +35 -0
- package/dist/types/types/spreadsheet_env.d.ts +23 -0
- package/dist/types/types/store_engine.d.ts +52 -0
- package/dist/types/types/stores/notification_store_methods.d.ts +6 -0
- package/dist/types/types/table.d.ts +103 -0
- package/dist/types/types/validator.d.ts +16 -0
- package/dist/types/types/workbook_data.d.ts +147 -0
- package/dist/types/types/xlsx.d.ts +512 -0
- package/dist/types/xlsx/constants.d.ts +81 -0
- package/dist/types/xlsx/conversion/cf_conversion.d.ts +4 -0
- package/dist/types/xlsx/conversion/color_conversion.d.ts +31 -0
- package/dist/types/xlsx/conversion/conversion_maps.d.ts +179 -0
- package/dist/types/xlsx/conversion/data_validation_conversion.d.ts +4 -0
- package/dist/types/xlsx/conversion/figure_conversion.d.ts +3 -0
- package/dist/types/xlsx/conversion/format_conversion.d.ts +8 -0
- package/dist/types/xlsx/conversion/formula_conversion.d.ts +9 -0
- package/dist/types/xlsx/conversion/index.d.ts +7 -0
- package/dist/types/xlsx/conversion/sheet_conversion.d.ts +4 -0
- package/dist/types/xlsx/conversion/style_conversion.d.ts +19 -0
- package/dist/types/xlsx/conversion/table_conversion.d.ts +8 -0
- package/dist/types/xlsx/extraction/base_extractor.d.ts +141 -0
- package/dist/types/xlsx/extraction/cf_extractor.d.ts +15 -0
- package/dist/types/xlsx/extraction/chart_extractor.d.ts +15 -0
- package/dist/types/xlsx/extraction/data_validation_extractor.d.ts +9 -0
- package/dist/types/xlsx/extraction/external_book_extractor.d.ts +6 -0
- package/dist/types/xlsx/extraction/figure_extractor.d.ts +10 -0
- package/dist/types/xlsx/extraction/index.d.ts +3 -0
- package/dist/types/xlsx/extraction/misc_extractor.d.ts +18 -0
- package/dist/types/xlsx/extraction/pivot_extractor.d.ts +10 -0
- package/dist/types/xlsx/extraction/sheet_extractor.d.ts +27 -0
- package/dist/types/xlsx/extraction/style_extractor.d.ts +19 -0
- package/dist/types/xlsx/extraction/table_extractor.d.ts +10 -0
- package/dist/types/xlsx/functions/cells.d.ts +11 -0
- package/dist/types/xlsx/functions/charts.d.ts +3 -0
- package/dist/types/xlsx/functions/conditional_formatting.d.ts +3 -0
- package/dist/types/xlsx/functions/data_validation.d.ts +3 -0
- package/dist/types/xlsx/functions/drawings.d.ts +5 -0
- package/dist/types/xlsx/functions/sheet_protection.d.ts +2 -0
- package/dist/types/xlsx/functions/styles.d.ts +10 -0
- package/dist/types/xlsx/functions/table.d.ts +2 -0
- package/dist/types/xlsx/functions/worksheet.d.ts +10 -0
- package/dist/types/xlsx/helpers/colors.d.ts +8 -0
- package/dist/types/xlsx/helpers/content_helpers.d.ts +61 -0
- package/dist/types/xlsx/helpers/misc.d.ts +27 -0
- package/dist/types/xlsx/helpers/xlsx_helper.d.ts +9 -0
- package/dist/types/xlsx/helpers/xlsx_parser_error_manager.d.ts +38 -0
- package/dist/types/xlsx/helpers/xml_helpers.d.ts +35 -0
- package/dist/types/xlsx/xlsx_reader.d.ts +13 -0
- package/dist/types/xlsx/xlsx_writer.d.ts +19 -0
- package/package.json +48 -43
- package/dist/o-spreadsheet-engine.d.ts +0 -6788
- package/dist/o-spreadsheet-engine.esm.js +0 -52797
- package/dist/o-spreadsheet-engine.iife.js +0 -52913
- package/dist/o-spreadsheet-engine.min.iife.js +0 -836
- package/dist/o-spreadsheet.d.ts +0 -13821
|
@@ -0,0 +1,940 @@
|
|
|
1
|
+
import { Format } from "./format";
|
|
2
|
+
import { Border, BorderData, CellPosition, Color, Dimension, HeaderIndex, Pixel, PixelPosition, SetDecimalStep, SortDirection, SortOptions, Style, UID, Zone } from "./misc";
|
|
3
|
+
import { ChartDefinition } from "./chart";
|
|
4
|
+
import { ConditionalFormat } from "./conditional_formatting";
|
|
5
|
+
import { ClipboardPasteOptions, ParsedOsClipboardContentWithImageData } from "./clipboard";
|
|
6
|
+
import { DataValidationRule } from "./data_validation";
|
|
7
|
+
import { Carousel, CarouselItem, Figure, FigureSize } from "./figure";
|
|
8
|
+
import { SearchOptions } from "./find_and_replace";
|
|
9
|
+
import { Image } from "./image";
|
|
10
|
+
import { Locale } from "./locale";
|
|
11
|
+
import { PivotCoreDefinition, PivotTableData } from "./pivot";
|
|
12
|
+
import { RangeData } from "./range";
|
|
13
|
+
import { CoreTableType, DataFilterValue, TableConfig, TableStyleTemplateName } from "./table";
|
|
14
|
+
/**
|
|
15
|
+
* There are two kinds of commands: CoreCommands and LocalCommands
|
|
16
|
+
*
|
|
17
|
+
* - CoreCommands are commands that
|
|
18
|
+
* 1. manipulate the imported/exported spreadsheet state
|
|
19
|
+
* 2. are shared in collaborative environment
|
|
20
|
+
*
|
|
21
|
+
* - LocalCommands: every other command
|
|
22
|
+
* 1. manipulate the local state
|
|
23
|
+
* 2. can be converted into CoreCommands
|
|
24
|
+
* 3. are not shared in collaborative environment
|
|
25
|
+
*
|
|
26
|
+
* For example, "RESIZE_COLUMNS_ROWS" is a CoreCommand. "AUTORESIZE_COLUMNS"
|
|
27
|
+
* can be (locally) converted into a "RESIZE_COLUMNS_ROWS", and therefore, is not a
|
|
28
|
+
* CoreCommand.
|
|
29
|
+
*
|
|
30
|
+
* CoreCommands should be "device agnostic". This means that they should
|
|
31
|
+
* contain all the information necessary to perform their job. Local commands
|
|
32
|
+
* can use inferred information from the local internal state, such as the
|
|
33
|
+
* active sheet.
|
|
34
|
+
*/
|
|
35
|
+
export interface SheetDependentCommand {
|
|
36
|
+
sheetId: UID;
|
|
37
|
+
}
|
|
38
|
+
export declare function isSheetDependent(cmd: Command): cmd is Extract<CoreCommand, SheetDependentCommand>;
|
|
39
|
+
export interface HeadersDependentCommand {
|
|
40
|
+
sheetId: UID;
|
|
41
|
+
dimension: Dimension;
|
|
42
|
+
elements: HeaderIndex[];
|
|
43
|
+
}
|
|
44
|
+
export declare function isHeadersDependant(cmd: CoreCommand): cmd is Extract<CoreCommand, HeadersDependentCommand>;
|
|
45
|
+
export interface SheetEditingCommand {
|
|
46
|
+
sheetName: string;
|
|
47
|
+
}
|
|
48
|
+
export interface TargetDependentCommand {
|
|
49
|
+
sheetId: UID;
|
|
50
|
+
target: Zone[];
|
|
51
|
+
}
|
|
52
|
+
export declare function isTargetDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, TargetDependentCommand>;
|
|
53
|
+
export interface RangesDependentCommand {
|
|
54
|
+
ranges: RangeData[];
|
|
55
|
+
}
|
|
56
|
+
export declare function isRangeDependant(cmd: CoreCommand): cmd is Extract<CoreCommand, RangesDependentCommand>;
|
|
57
|
+
export interface PositionDependentCommand {
|
|
58
|
+
sheetId: UID;
|
|
59
|
+
col: number;
|
|
60
|
+
row: number;
|
|
61
|
+
}
|
|
62
|
+
export declare function isPositionDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, PositionDependentCommand>;
|
|
63
|
+
export interface ZoneDependentCommand {
|
|
64
|
+
sheetId: UID;
|
|
65
|
+
zone: Zone;
|
|
66
|
+
}
|
|
67
|
+
export declare function isZoneDependent(cmd: CoreCommand): cmd is Extract<CoreCommand, ZoneDependentCommand>;
|
|
68
|
+
export declare const invalidateEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
69
|
+
export declare const invalidateChartEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
70
|
+
export declare const invalidateDependenciesCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
71
|
+
export declare const invalidateCFEvaluationCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
72
|
+
export declare const invalidateBordersCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
73
|
+
export declare const invalidSubtotalFormulasCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
74
|
+
export declare const readonlyAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
75
|
+
export declare const lockedSheetAllowedCommands: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT" | "REQUEST_UNDO" | "REQUEST_REDO" | "UNDO" | "REDO" | "COPY" | "CUT" | "PASTE" | "COPY_PASTE_CELLS_ABOVE" | "COPY_PASTE_CELLS_ON_LEFT" | "COPY_PASTE_CELLS_ON_ZONE" | "REPEAT_PASTE" | "CLEAN_CLIPBOARD_HIGHLIGHT" | "AUTOFILL_CELL" | "PASTE_FROM_OS_CLIPBOARD" | "AUTORESIZE_COLUMNS" | "AUTORESIZE_ROWS" | "MOVE_COLUMNS_ROWS" | "ACTIVATE_SHEET" | "EVALUATE_CELLS" | "EVALUATE_CHARTS" | "START_CHANGE_HIGHLIGHT" | "START" | "AUTOFILL" | "AUTOFILL_SELECT" | "AUTOFILL_TABLE_COLUMN" | "SET_FORMULA_VISIBILITY" | "AUTOFILL_AUTO" | "SELECT_FIGURE" | "REPLACE_SEARCH" | "SORT_CELLS" | "SET_DECIMAL" | "SET_FORMATTING_WITH_PIVOT" | "RESIZE_SHEETVIEW" | "SET_ZOOM" | "SUM_SELECTION" | "DELETE_CELL" | "INSERT_CELL" | "SET_VIEWPORT_OFFSET" | "SHIFT_VIEWPORT_DOWN" | "SHIFT_VIEWPORT_UP" | "SCROLL_TO_CELL" | "ACTIVATE_NEXT_SHEET" | "ACTIVATE_PREVIOUS_SHEET" | "UPDATE_FILTER" | "SPLIT_TEXT_INTO_COLUMNS" | "REMOVE_DUPLICATES" | "TRIM_WHITESPACE" | "RESIZE_TABLE" | "REFRESH_PIVOT" | "INSERT_NEW_PIVOT" | "DUPLICATE_PIVOT_IN_NEW_SHEET" | "INSERT_PIVOT_WITH_TABLE" | "SPLIT_PIVOT_FORMULA" | "PAINT_FORMAT" | "DELETE_UNFILTERED_CONTENT" | "PIVOT_START_PRESENCE_TRACKING" | "PIVOT_STOP_PRESENCE_TRACKING" | "TOGGLE_CHECKBOX" | "ADD_NEW_CHART_TO_CAROUSEL" | "ADD_FIGURE_CHART_TO_CAROUSEL" | "DUPLICATE_CAROUSEL_CHART" | "UPDATE_CAROUSEL_ACTIVE_ITEM" | "POPOUT_CHART_FROM_CAROUSEL" | "UPDATE_CHART_REGION">;
|
|
76
|
+
export declare const coreTypes: Set<"UPDATE_CELL" | "UPDATE_CELL_POSITION" | "CLEAR_CELL" | "CLEAR_CELLS" | "DELETE_CONTENT" | "ADD_COLUMNS_ROWS" | "REMOVE_COLUMNS_ROWS" | "RESIZE_COLUMNS_ROWS" | "HIDE_COLUMNS_ROWS" | "UNHIDE_COLUMNS_ROWS" | "SET_GRID_LINES_VISIBILITY" | "FREEZE_COLUMNS" | "FREEZE_ROWS" | "UNFREEZE_COLUMNS_ROWS" | "UNFREEZE_COLUMNS" | "UNFREEZE_ROWS" | "ADD_MERGE" | "REMOVE_MERGE" | "CREATE_SHEET" | "DELETE_SHEET" | "DUPLICATE_SHEET" | "MOVE_SHEET" | "RENAME_SHEET" | "COLOR_SHEET" | "HIDE_SHEET" | "SHOW_SHEET" | "LOCK_SHEET" | "UNLOCK_SHEET" | "MOVE_RANGES" | "ADD_CONDITIONAL_FORMAT" | "REMOVE_CONDITIONAL_FORMAT" | "CHANGE_CONDITIONAL_FORMAT_PRIORITY" | "CREATE_FIGURE" | "DELETE_FIGURE" | "UPDATE_FIGURE" | "CREATE_CAROUSEL" | "UPDATE_CAROUSEL" | "SET_FORMATTING" | "CLEAR_FORMATTING" | "SET_ZONE_BORDERS" | "SET_BORDER" | "SET_BORDERS_ON_TARGET" | "CREATE_CHART" | "UPDATE_CHART" | "DELETE_CHART" | "CREATE_IMAGE" | "CREATE_TABLE" | "REMOVE_TABLE" | "UPDATE_TABLE" | "CREATE_TABLE_STYLE" | "REMOVE_TABLE_STYLE" | "GROUP_HEADERS" | "UNGROUP_HEADERS" | "UNFOLD_HEADER_GROUP" | "FOLD_HEADER_GROUP" | "FOLD_ALL_HEADER_GROUPS" | "UNFOLD_ALL_HEADER_GROUPS" | "UNFOLD_HEADER_GROUPS_IN_ZONE" | "FOLD_HEADER_GROUPS_IN_ZONE" | "ADD_DATA_VALIDATION_RULE" | "REMOVE_DATA_VALIDATION_RULE" | "UPDATE_LOCALE" | "CREATE_NAMED_RANGE" | "UPDATE_NAMED_RANGE" | "DELETE_NAMED_RANGE" | "ADD_PIVOT" | "UPDATE_PIVOT" | "INSERT_PIVOT" | "RENAME_PIVOT" | "REMOVE_PIVOT" | "DUPLICATE_PIVOT">;
|
|
77
|
+
export declare function isCoreCommand(cmd: Command): cmd is CoreCommand;
|
|
78
|
+
export declare function canExecuteInReadonly(cmd: Command): boolean;
|
|
79
|
+
export interface UpdateCellCommand extends PositionDependentCommand {
|
|
80
|
+
type: "UPDATE_CELL";
|
|
81
|
+
content?: string;
|
|
82
|
+
style?: Style | null;
|
|
83
|
+
format?: Format;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Move a cell to a given position or clear the position.
|
|
87
|
+
*/
|
|
88
|
+
export interface UpdateCellPositionCommand extends PositionDependentCommand {
|
|
89
|
+
type: "UPDATE_CELL_POSITION";
|
|
90
|
+
cellId?: number;
|
|
91
|
+
}
|
|
92
|
+
export interface AddColumnsRowsCommand extends SheetDependentCommand, SheetEditingCommand {
|
|
93
|
+
type: "ADD_COLUMNS_ROWS";
|
|
94
|
+
dimension: Dimension;
|
|
95
|
+
base: HeaderIndex;
|
|
96
|
+
quantity: number;
|
|
97
|
+
position: "before" | "after";
|
|
98
|
+
}
|
|
99
|
+
export interface RemoveColumnsRowsCommand extends HeadersDependentCommand, SheetEditingCommand {
|
|
100
|
+
type: "REMOVE_COLUMNS_ROWS";
|
|
101
|
+
elements: HeaderIndex[];
|
|
102
|
+
}
|
|
103
|
+
export interface MoveColumnsRowsCommand extends HeadersDependentCommand, SheetEditingCommand {
|
|
104
|
+
type: "MOVE_COLUMNS_ROWS";
|
|
105
|
+
base: HeaderIndex;
|
|
106
|
+
elements: HeaderIndex[];
|
|
107
|
+
position: "before" | "after";
|
|
108
|
+
}
|
|
109
|
+
export interface ResizeColumnsRowsCommand extends HeadersDependentCommand {
|
|
110
|
+
type: "RESIZE_COLUMNS_ROWS";
|
|
111
|
+
elements: number[];
|
|
112
|
+
size: number | null;
|
|
113
|
+
}
|
|
114
|
+
export interface HideColumnsRowsCommand extends HeadersDependentCommand {
|
|
115
|
+
type: "HIDE_COLUMNS_ROWS";
|
|
116
|
+
elements: HeaderIndex[];
|
|
117
|
+
}
|
|
118
|
+
export interface UnhideColumnsRowsCommand extends HeadersDependentCommand {
|
|
119
|
+
type: "UNHIDE_COLUMNS_ROWS";
|
|
120
|
+
elements: HeaderIndex[];
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Freeze a given number of columns on top of the sheet
|
|
124
|
+
*/
|
|
125
|
+
export interface FreezeColumnsCommand extends SheetDependentCommand {
|
|
126
|
+
type: "FREEZE_COLUMNS";
|
|
127
|
+
/** number of columns frozen */
|
|
128
|
+
quantity: number;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Freeze a given number of rows on top of the sheet
|
|
132
|
+
*/
|
|
133
|
+
export interface FreezeRowsCommand extends SheetDependentCommand {
|
|
134
|
+
type: "FREEZE_ROWS";
|
|
135
|
+
/** number of frozen rows */
|
|
136
|
+
quantity: number;
|
|
137
|
+
}
|
|
138
|
+
export interface UnfreezeColumnsRowsCommand {
|
|
139
|
+
type: "UNFREEZE_COLUMNS_ROWS";
|
|
140
|
+
sheetId: UID;
|
|
141
|
+
}
|
|
142
|
+
export interface UnfreezeColumnsCommand {
|
|
143
|
+
type: "UNFREEZE_COLUMNS";
|
|
144
|
+
sheetId: UID;
|
|
145
|
+
}
|
|
146
|
+
export interface UnfreezeRowsCommand {
|
|
147
|
+
type: "UNFREEZE_ROWS";
|
|
148
|
+
sheetId: UID;
|
|
149
|
+
}
|
|
150
|
+
export interface SetGridLinesVisibilityCommand extends SheetDependentCommand {
|
|
151
|
+
type: "SET_GRID_LINES_VISIBILITY";
|
|
152
|
+
areGridLinesVisible: boolean;
|
|
153
|
+
}
|
|
154
|
+
export interface AddMergeCommand extends TargetDependentCommand {
|
|
155
|
+
type: "ADD_MERGE";
|
|
156
|
+
force?: boolean;
|
|
157
|
+
}
|
|
158
|
+
export interface RemoveMergeCommand extends TargetDependentCommand {
|
|
159
|
+
type: "REMOVE_MERGE";
|
|
160
|
+
}
|
|
161
|
+
export interface CreateSheetCommand extends SheetDependentCommand {
|
|
162
|
+
type: "CREATE_SHEET";
|
|
163
|
+
position: number;
|
|
164
|
+
name: string;
|
|
165
|
+
cols?: number;
|
|
166
|
+
rows?: number;
|
|
167
|
+
}
|
|
168
|
+
export interface DeleteSheetCommand extends SheetDependentCommand, SheetEditingCommand {
|
|
169
|
+
type: "DELETE_SHEET";
|
|
170
|
+
}
|
|
171
|
+
export interface DuplicateSheetCommand extends SheetDependentCommand {
|
|
172
|
+
type: "DUPLICATE_SHEET";
|
|
173
|
+
sheetIdTo: UID;
|
|
174
|
+
sheetNameTo: string;
|
|
175
|
+
}
|
|
176
|
+
export interface MoveSheetCommand extends SheetDependentCommand {
|
|
177
|
+
type: "MOVE_SHEET";
|
|
178
|
+
delta: number;
|
|
179
|
+
}
|
|
180
|
+
export interface RenameSheetCommand extends SheetDependentCommand {
|
|
181
|
+
type: "RENAME_SHEET";
|
|
182
|
+
newName: string;
|
|
183
|
+
oldName: string;
|
|
184
|
+
}
|
|
185
|
+
export interface ColorSheetCommand extends SheetDependentCommand {
|
|
186
|
+
type: "COLOR_SHEET";
|
|
187
|
+
color?: Color;
|
|
188
|
+
}
|
|
189
|
+
export interface HideSheetCommand extends SheetDependentCommand {
|
|
190
|
+
type: "HIDE_SHEET";
|
|
191
|
+
}
|
|
192
|
+
export interface ShowSheetCommand extends SheetDependentCommand {
|
|
193
|
+
type: "SHOW_SHEET";
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Command created in order to apply a translational movement for all references
|
|
197
|
+
* to cells/ranges within a specific zone.
|
|
198
|
+
* Command particularly useful during CUT / PATE.
|
|
199
|
+
*/
|
|
200
|
+
export interface MoveRangeCommand extends PositionDependentCommand, TargetDependentCommand, SheetEditingCommand {
|
|
201
|
+
type: "MOVE_RANGES";
|
|
202
|
+
targetSheetId: string;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* todo: use id instead of a list. this is not safe to serialize and send to
|
|
206
|
+
* another user
|
|
207
|
+
*/
|
|
208
|
+
export interface AddConditionalFormatCommand extends SheetDependentCommand, RangesDependentCommand {
|
|
209
|
+
type: "ADD_CONDITIONAL_FORMAT";
|
|
210
|
+
cf: Omit<ConditionalFormat, "ranges">;
|
|
211
|
+
}
|
|
212
|
+
export interface RemoveConditionalFormatCommand extends SheetDependentCommand {
|
|
213
|
+
type: "REMOVE_CONDITIONAL_FORMAT";
|
|
214
|
+
id: string;
|
|
215
|
+
}
|
|
216
|
+
export interface MoveConditionalFormatCommand extends SheetDependentCommand {
|
|
217
|
+
type: "CHANGE_CONDITIONAL_FORMAT_PRIORITY";
|
|
218
|
+
cfId: UID;
|
|
219
|
+
delta: number;
|
|
220
|
+
}
|
|
221
|
+
export interface CreateFigureCommand extends BaseFigureCommand {
|
|
222
|
+
type: "CREATE_FIGURE";
|
|
223
|
+
tag: string;
|
|
224
|
+
}
|
|
225
|
+
export interface UpdateFigureCommand extends Omit<Partial<Figure>, "id" | "col" | "row">, SheetDependentCommand, PositionDependentCommand {
|
|
226
|
+
type: "UPDATE_FIGURE";
|
|
227
|
+
figureId: UID;
|
|
228
|
+
}
|
|
229
|
+
export interface DeleteFigureCommand extends SheetDependentCommand {
|
|
230
|
+
type: "DELETE_FIGURE";
|
|
231
|
+
figureId: UID;
|
|
232
|
+
}
|
|
233
|
+
interface BaseFigureCommand extends PositionDependentCommand {
|
|
234
|
+
figureId: UID;
|
|
235
|
+
offset: PixelPosition;
|
|
236
|
+
size: FigureSize;
|
|
237
|
+
}
|
|
238
|
+
export interface CreateChartCommand {
|
|
239
|
+
type: "CREATE_CHART";
|
|
240
|
+
chartId: UID;
|
|
241
|
+
definition: ChartDefinition<string>;
|
|
242
|
+
sheetId: UID;
|
|
243
|
+
figureId: UID;
|
|
244
|
+
offset?: PixelPosition;
|
|
245
|
+
size?: FigureSize;
|
|
246
|
+
col?: number;
|
|
247
|
+
row?: number;
|
|
248
|
+
}
|
|
249
|
+
export interface UpdateChartCommand extends SheetDependentCommand {
|
|
250
|
+
type: "UPDATE_CHART";
|
|
251
|
+
figureId: UID;
|
|
252
|
+
chartId: UID;
|
|
253
|
+
definition: ChartDefinition<string>;
|
|
254
|
+
}
|
|
255
|
+
export interface DeleteChartCommand extends SheetDependentCommand {
|
|
256
|
+
type: "DELETE_CHART";
|
|
257
|
+
chartId: UID;
|
|
258
|
+
}
|
|
259
|
+
export interface UpdateChartRegionCommand {
|
|
260
|
+
type: "UPDATE_CHART_REGION";
|
|
261
|
+
chartId: UID;
|
|
262
|
+
region: string;
|
|
263
|
+
}
|
|
264
|
+
export interface CreateCarouselCommand extends BaseFigureCommand {
|
|
265
|
+
type: "CREATE_CAROUSEL";
|
|
266
|
+
definition: Carousel;
|
|
267
|
+
}
|
|
268
|
+
export interface UpdateCarouselCommand extends SheetDependentCommand {
|
|
269
|
+
type: "UPDATE_CAROUSEL";
|
|
270
|
+
figureId: UID;
|
|
271
|
+
definition: Carousel;
|
|
272
|
+
}
|
|
273
|
+
export interface AddNewChartToCarouselCommand extends SheetDependentCommand {
|
|
274
|
+
type: "ADD_NEW_CHART_TO_CAROUSEL";
|
|
275
|
+
figureId: UID;
|
|
276
|
+
}
|
|
277
|
+
export interface AddFigureChartToCarouselCommand extends SheetDependentCommand {
|
|
278
|
+
type: "ADD_FIGURE_CHART_TO_CAROUSEL";
|
|
279
|
+
carouselFigureId: UID;
|
|
280
|
+
chartFigureId: UID;
|
|
281
|
+
}
|
|
282
|
+
export interface DuplicateCarouselChartCommand extends SheetDependentCommand {
|
|
283
|
+
type: "DUPLICATE_CAROUSEL_CHART";
|
|
284
|
+
carouselId: UID;
|
|
285
|
+
chartId: UID;
|
|
286
|
+
duplicatedChartId: UID;
|
|
287
|
+
}
|
|
288
|
+
export interface UpdateCarouselActiveItemCommand extends SheetDependentCommand {
|
|
289
|
+
type: "UPDATE_CAROUSEL_ACTIVE_ITEM";
|
|
290
|
+
figureId: UID;
|
|
291
|
+
item: CarouselItem;
|
|
292
|
+
}
|
|
293
|
+
export interface PopOutChartFromCarouselCommand extends SheetDependentCommand {
|
|
294
|
+
type: "POPOUT_CHART_FROM_CAROUSEL";
|
|
295
|
+
carouselId: UID;
|
|
296
|
+
chartId: UID;
|
|
297
|
+
}
|
|
298
|
+
export interface CreateImageOverCommand extends BaseFigureCommand {
|
|
299
|
+
type: "CREATE_IMAGE";
|
|
300
|
+
definition: Image;
|
|
301
|
+
}
|
|
302
|
+
export interface CreateTableCommand extends RangesDependentCommand {
|
|
303
|
+
type: "CREATE_TABLE";
|
|
304
|
+
sheetId: UID;
|
|
305
|
+
config: TableConfig;
|
|
306
|
+
tableType: CoreTableType;
|
|
307
|
+
}
|
|
308
|
+
export interface RemoveTableCommand extends TargetDependentCommand {
|
|
309
|
+
type: "REMOVE_TABLE";
|
|
310
|
+
}
|
|
311
|
+
export interface UpdateTableCommand {
|
|
312
|
+
type: "UPDATE_TABLE";
|
|
313
|
+
zone: Zone;
|
|
314
|
+
sheetId: UID;
|
|
315
|
+
newTableRange?: RangeData;
|
|
316
|
+
tableType?: CoreTableType;
|
|
317
|
+
config?: Partial<TableConfig>;
|
|
318
|
+
}
|
|
319
|
+
export interface ResizeTableCommand {
|
|
320
|
+
type: "RESIZE_TABLE";
|
|
321
|
+
zone: Zone;
|
|
322
|
+
sheetId: UID;
|
|
323
|
+
newTableRange: RangeData;
|
|
324
|
+
tableType?: CoreTableType;
|
|
325
|
+
}
|
|
326
|
+
export interface AutofillTableCommand extends PositionDependentCommand {
|
|
327
|
+
type: "AUTOFILL_TABLE_COLUMN";
|
|
328
|
+
/** The row to start the autofill in. If undefined, it will autofill from the top of the table column */
|
|
329
|
+
autofillRowStart?: number;
|
|
330
|
+
/** The row to end the autofill in. If undefined, it will autofill to the bottom of the table column */
|
|
331
|
+
autofillRowEnd?: number;
|
|
332
|
+
}
|
|
333
|
+
export interface CreateTableStyleCommand {
|
|
334
|
+
type: "CREATE_TABLE_STYLE";
|
|
335
|
+
tableStyleId: string;
|
|
336
|
+
tableStyleName: string;
|
|
337
|
+
templateName: TableStyleTemplateName;
|
|
338
|
+
primaryColor: Color;
|
|
339
|
+
}
|
|
340
|
+
export interface RemoveTableStyleCommand {
|
|
341
|
+
type: "REMOVE_TABLE_STYLE";
|
|
342
|
+
tableStyleId: string;
|
|
343
|
+
}
|
|
344
|
+
export interface UpdateFilterCommand extends PositionDependentCommand {
|
|
345
|
+
type: "UPDATE_FILTER";
|
|
346
|
+
value: DataFilterValue;
|
|
347
|
+
}
|
|
348
|
+
export interface SetFormattingCommand extends TargetDependentCommand {
|
|
349
|
+
type: "SET_FORMATTING";
|
|
350
|
+
style?: Style;
|
|
351
|
+
format?: Format;
|
|
352
|
+
}
|
|
353
|
+
export interface SetZoneBordersCommand extends TargetDependentCommand {
|
|
354
|
+
type: "SET_ZONE_BORDERS";
|
|
355
|
+
border: BorderData;
|
|
356
|
+
}
|
|
357
|
+
export interface SetBorderCommand extends PositionDependentCommand {
|
|
358
|
+
type: "SET_BORDER";
|
|
359
|
+
border: Border | undefined;
|
|
360
|
+
}
|
|
361
|
+
export interface SetBorderTargetCommand extends TargetDependentCommand {
|
|
362
|
+
type: "SET_BORDERS_ON_TARGET";
|
|
363
|
+
border: Border | undefined;
|
|
364
|
+
}
|
|
365
|
+
export interface ClearFormattingCommand extends TargetDependentCommand {
|
|
366
|
+
type: "CLEAR_FORMATTING";
|
|
367
|
+
}
|
|
368
|
+
export interface SetDecimalCommand extends TargetDependentCommand {
|
|
369
|
+
type: "SET_DECIMAL";
|
|
370
|
+
step: SetDecimalStep;
|
|
371
|
+
}
|
|
372
|
+
export interface SetContextualFormatCommand extends TargetDependentCommand {
|
|
373
|
+
type: "SET_FORMATTING_WITH_PIVOT";
|
|
374
|
+
format: Format;
|
|
375
|
+
}
|
|
376
|
+
export interface UpdateLocaleCommand {
|
|
377
|
+
type: "UPDATE_LOCALE";
|
|
378
|
+
locale: Locale;
|
|
379
|
+
}
|
|
380
|
+
export interface AddPivotCommand {
|
|
381
|
+
type: "ADD_PIVOT";
|
|
382
|
+
pivotId: UID;
|
|
383
|
+
pivot: PivotCoreDefinition;
|
|
384
|
+
}
|
|
385
|
+
export interface UpdatePivotCommand {
|
|
386
|
+
type: "UPDATE_PIVOT";
|
|
387
|
+
pivotId: UID;
|
|
388
|
+
pivot: PivotCoreDefinition;
|
|
389
|
+
}
|
|
390
|
+
export interface InsertPivotCommand extends PositionDependentCommand {
|
|
391
|
+
type: "INSERT_PIVOT";
|
|
392
|
+
pivotId: UID;
|
|
393
|
+
table: PivotTableData;
|
|
394
|
+
}
|
|
395
|
+
export interface RenamePivotCommand {
|
|
396
|
+
type: "RENAME_PIVOT";
|
|
397
|
+
pivotId: UID;
|
|
398
|
+
name: string;
|
|
399
|
+
}
|
|
400
|
+
export interface RemovePivotCommand {
|
|
401
|
+
type: "REMOVE_PIVOT";
|
|
402
|
+
pivotId: UID;
|
|
403
|
+
}
|
|
404
|
+
export interface DuplicatePivotCommand {
|
|
405
|
+
type: "DUPLICATE_PIVOT";
|
|
406
|
+
pivotId: UID;
|
|
407
|
+
newPivotId: string;
|
|
408
|
+
duplicatedPivotName?: string;
|
|
409
|
+
}
|
|
410
|
+
export interface RemoveDuplicatesCommand {
|
|
411
|
+
type: "REMOVE_DUPLICATES";
|
|
412
|
+
columns: HeaderIndex[];
|
|
413
|
+
hasHeader: boolean;
|
|
414
|
+
}
|
|
415
|
+
export interface TrimWhitespaceCommand {
|
|
416
|
+
type: "TRIM_WHITESPACE";
|
|
417
|
+
}
|
|
418
|
+
export interface GroupHeadersCommand extends SheetDependentCommand {
|
|
419
|
+
type: "GROUP_HEADERS";
|
|
420
|
+
dimension: Dimension;
|
|
421
|
+
start: HeaderIndex;
|
|
422
|
+
end: HeaderIndex;
|
|
423
|
+
}
|
|
424
|
+
export interface UnGroupHeadersCommand extends SheetDependentCommand {
|
|
425
|
+
type: "UNGROUP_HEADERS";
|
|
426
|
+
dimension: Dimension;
|
|
427
|
+
start: HeaderIndex;
|
|
428
|
+
end: HeaderIndex;
|
|
429
|
+
}
|
|
430
|
+
export interface FoldHeaderGroupCommand extends SheetDependentCommand {
|
|
431
|
+
type: "FOLD_HEADER_GROUP";
|
|
432
|
+
dimension: Dimension;
|
|
433
|
+
start: HeaderIndex;
|
|
434
|
+
end: HeaderIndex;
|
|
435
|
+
}
|
|
436
|
+
export interface UnfoldHeaderGroupCommand extends SheetDependentCommand {
|
|
437
|
+
type: "UNFOLD_HEADER_GROUP";
|
|
438
|
+
dimension: Dimension;
|
|
439
|
+
start: HeaderIndex;
|
|
440
|
+
end: HeaderIndex;
|
|
441
|
+
}
|
|
442
|
+
export interface FoldAllHeaderGroupsCommand extends SheetDependentCommand {
|
|
443
|
+
type: "FOLD_ALL_HEADER_GROUPS";
|
|
444
|
+
dimension: Dimension;
|
|
445
|
+
}
|
|
446
|
+
export interface UnfoldAllHeaderGroupsCommand extends SheetDependentCommand {
|
|
447
|
+
type: "UNFOLD_ALL_HEADER_GROUPS";
|
|
448
|
+
dimension: Dimension;
|
|
449
|
+
}
|
|
450
|
+
export interface UnfoldHeaderGroupsInZoneCommand extends ZoneDependentCommand {
|
|
451
|
+
type: "UNFOLD_HEADER_GROUPS_IN_ZONE";
|
|
452
|
+
dimension: Dimension;
|
|
453
|
+
}
|
|
454
|
+
export interface FoldHeaderGroupsInZoneCommand extends ZoneDependentCommand {
|
|
455
|
+
type: "FOLD_HEADER_GROUPS_IN_ZONE";
|
|
456
|
+
dimension: Dimension;
|
|
457
|
+
}
|
|
458
|
+
export interface AddDataValidationCommand extends SheetDependentCommand, RangesDependentCommand {
|
|
459
|
+
type: "ADD_DATA_VALIDATION_RULE";
|
|
460
|
+
rule: Omit<DataValidationRule, "ranges">;
|
|
461
|
+
}
|
|
462
|
+
export interface RemoveDataValidationCommand extends SheetDependentCommand {
|
|
463
|
+
type: "REMOVE_DATA_VALIDATION_RULE";
|
|
464
|
+
id: string;
|
|
465
|
+
}
|
|
466
|
+
export interface LockSheetCommand extends SheetDependentCommand {
|
|
467
|
+
type: "LOCK_SHEET";
|
|
468
|
+
}
|
|
469
|
+
export interface UnlockSheetCommand extends SheetDependentCommand {
|
|
470
|
+
type: "UNLOCK_SHEET";
|
|
471
|
+
}
|
|
472
|
+
export interface CreateNamedRangeCommand extends RangesDependentCommand {
|
|
473
|
+
type: "CREATE_NAMED_RANGE";
|
|
474
|
+
name: string;
|
|
475
|
+
}
|
|
476
|
+
export interface UpdateNamedRangeCommand extends RangesDependentCommand {
|
|
477
|
+
type: "UPDATE_NAMED_RANGE";
|
|
478
|
+
oldRangeName: string;
|
|
479
|
+
newRangeName: string;
|
|
480
|
+
}
|
|
481
|
+
export interface DeleteNamedRangeCommand {
|
|
482
|
+
type: "DELETE_NAMED_RANGE";
|
|
483
|
+
name: string;
|
|
484
|
+
}
|
|
485
|
+
export interface CopyCommand {
|
|
486
|
+
type: "COPY";
|
|
487
|
+
}
|
|
488
|
+
export interface CutCommand {
|
|
489
|
+
type: "CUT";
|
|
490
|
+
}
|
|
491
|
+
export interface PasteCommand {
|
|
492
|
+
type: "PASTE";
|
|
493
|
+
target: Zone[];
|
|
494
|
+
pasteOption?: ClipboardPasteOptions;
|
|
495
|
+
}
|
|
496
|
+
export interface CopyPasteCellsAboveCommand {
|
|
497
|
+
type: "COPY_PASTE_CELLS_ABOVE";
|
|
498
|
+
}
|
|
499
|
+
export interface CopyPasteCellsOnLeftCommand {
|
|
500
|
+
type: "COPY_PASTE_CELLS_ON_LEFT";
|
|
501
|
+
}
|
|
502
|
+
export interface CopyPasteCellsOnZoneCommand {
|
|
503
|
+
type: "COPY_PASTE_CELLS_ON_ZONE";
|
|
504
|
+
}
|
|
505
|
+
export interface RepeatPasteCommand {
|
|
506
|
+
type: "REPEAT_PASTE";
|
|
507
|
+
target: Zone[];
|
|
508
|
+
pasteOption?: ClipboardPasteOptions;
|
|
509
|
+
}
|
|
510
|
+
export interface CleanClipBoardHighlightCommand {
|
|
511
|
+
type: "CLEAN_CLIPBOARD_HIGHLIGHT";
|
|
512
|
+
}
|
|
513
|
+
export interface AutoFillCellCommand {
|
|
514
|
+
type: "AUTOFILL_CELL";
|
|
515
|
+
originCol: number;
|
|
516
|
+
originRow: number;
|
|
517
|
+
col: HeaderIndex;
|
|
518
|
+
row: HeaderIndex;
|
|
519
|
+
content?: string;
|
|
520
|
+
style?: Style | null;
|
|
521
|
+
border?: Border;
|
|
522
|
+
format?: Format;
|
|
523
|
+
}
|
|
524
|
+
export interface PasteFromOSClipboardCommand {
|
|
525
|
+
type: "PASTE_FROM_OS_CLIPBOARD";
|
|
526
|
+
target: Zone[];
|
|
527
|
+
clipboardContent: ParsedOsClipboardContentWithImageData;
|
|
528
|
+
pasteOption?: ClipboardPasteOptions;
|
|
529
|
+
}
|
|
530
|
+
export interface AutoresizeColumnsCommand {
|
|
531
|
+
type: "AUTORESIZE_COLUMNS";
|
|
532
|
+
sheetId: UID;
|
|
533
|
+
cols: HeaderIndex[];
|
|
534
|
+
}
|
|
535
|
+
export interface AutoresizeRowsCommand {
|
|
536
|
+
type: "AUTORESIZE_ROWS";
|
|
537
|
+
sheetId: UID;
|
|
538
|
+
rows: HeaderIndex[];
|
|
539
|
+
}
|
|
540
|
+
export interface ActivateSheetCommand {
|
|
541
|
+
type: "ACTIVATE_SHEET";
|
|
542
|
+
sheetIdFrom: UID;
|
|
543
|
+
sheetIdTo: UID;
|
|
544
|
+
}
|
|
545
|
+
export interface EvaluateCellsCommand {
|
|
546
|
+
type: "EVALUATE_CELLS";
|
|
547
|
+
cellIds?: number[];
|
|
548
|
+
}
|
|
549
|
+
export interface EvaluateChartsCommand {
|
|
550
|
+
type: "EVALUATE_CHARTS";
|
|
551
|
+
}
|
|
552
|
+
export interface StartChangeHighlightCommand {
|
|
553
|
+
type: "START_CHANGE_HIGHLIGHT";
|
|
554
|
+
zone: Zone;
|
|
555
|
+
}
|
|
556
|
+
export interface ShowFormulaCommand {
|
|
557
|
+
type: "SET_FORMULA_VISIBILITY";
|
|
558
|
+
show: boolean;
|
|
559
|
+
}
|
|
560
|
+
export interface DeleteContentCommand {
|
|
561
|
+
type: "DELETE_CONTENT";
|
|
562
|
+
sheetId: UID;
|
|
563
|
+
target: Zone[];
|
|
564
|
+
}
|
|
565
|
+
export interface ClearCellCommand extends PositionDependentCommand {
|
|
566
|
+
type: "CLEAR_CELL";
|
|
567
|
+
}
|
|
568
|
+
export interface ClearCellsCommand extends TargetDependentCommand {
|
|
569
|
+
type: "CLEAR_CELLS";
|
|
570
|
+
}
|
|
571
|
+
export interface UndoCommand {
|
|
572
|
+
type: "UNDO";
|
|
573
|
+
commands: readonly CoreCommand[];
|
|
574
|
+
}
|
|
575
|
+
export interface RedoCommand {
|
|
576
|
+
type: "REDO";
|
|
577
|
+
commands: readonly CoreCommand[];
|
|
578
|
+
}
|
|
579
|
+
export interface RequestUndoCommand {
|
|
580
|
+
type: "REQUEST_UNDO";
|
|
581
|
+
}
|
|
582
|
+
export interface RequestRedoCommand {
|
|
583
|
+
type: "REQUEST_REDO";
|
|
584
|
+
}
|
|
585
|
+
export interface StartCommand {
|
|
586
|
+
type: "START";
|
|
587
|
+
}
|
|
588
|
+
export interface AutofillCommand {
|
|
589
|
+
type: "AUTOFILL";
|
|
590
|
+
}
|
|
591
|
+
export interface AutofillSelectCommand {
|
|
592
|
+
type: "AUTOFILL_SELECT";
|
|
593
|
+
col: HeaderIndex;
|
|
594
|
+
row: HeaderIndex;
|
|
595
|
+
}
|
|
596
|
+
export interface AutofillAutoCommand {
|
|
597
|
+
type: "AUTOFILL_AUTO";
|
|
598
|
+
}
|
|
599
|
+
export interface SelectFigureCommand {
|
|
600
|
+
type: "SELECT_FIGURE";
|
|
601
|
+
figureId: UID | null;
|
|
602
|
+
}
|
|
603
|
+
export interface ReplaceSearchCommand {
|
|
604
|
+
type: "REPLACE_SEARCH";
|
|
605
|
+
searchString: string;
|
|
606
|
+
replaceWith: string;
|
|
607
|
+
searchOptions: SearchOptions;
|
|
608
|
+
matches: CellPosition[];
|
|
609
|
+
}
|
|
610
|
+
export interface SortCommand {
|
|
611
|
+
type: "SORT_CELLS";
|
|
612
|
+
sheetId: UID;
|
|
613
|
+
col: number;
|
|
614
|
+
row: number;
|
|
615
|
+
zone: Zone;
|
|
616
|
+
sortDirection: SortDirection;
|
|
617
|
+
sortOptions?: SortOptions;
|
|
618
|
+
}
|
|
619
|
+
export interface ResizeViewportCommand {
|
|
620
|
+
type: "RESIZE_SHEETVIEW";
|
|
621
|
+
width: Pixel;
|
|
622
|
+
height: Pixel;
|
|
623
|
+
gridOffsetX?: Pixel;
|
|
624
|
+
gridOffsetY?: Pixel;
|
|
625
|
+
}
|
|
626
|
+
export interface SetViewportOffsetCommand {
|
|
627
|
+
type: "SET_VIEWPORT_OFFSET";
|
|
628
|
+
offsetX: Pixel;
|
|
629
|
+
offsetY: Pixel;
|
|
630
|
+
}
|
|
631
|
+
export interface SetZoomCommand {
|
|
632
|
+
type: "SET_ZOOM";
|
|
633
|
+
zoom: number;
|
|
634
|
+
}
|
|
635
|
+
/**
|
|
636
|
+
* Shift the viewport down by the viewport height
|
|
637
|
+
*/
|
|
638
|
+
export interface MoveViewportDownCommand {
|
|
639
|
+
type: "SHIFT_VIEWPORT_DOWN";
|
|
640
|
+
}
|
|
641
|
+
/**
|
|
642
|
+
* Shift the viewport up by the viewport height
|
|
643
|
+
*/
|
|
644
|
+
export interface MoveViewportUpCommand {
|
|
645
|
+
type: "SHIFT_VIEWPORT_UP";
|
|
646
|
+
}
|
|
647
|
+
export interface MoveViewportToCellCommand {
|
|
648
|
+
type: "SCROLL_TO_CELL";
|
|
649
|
+
col: HeaderIndex;
|
|
650
|
+
row: HeaderIndex;
|
|
651
|
+
}
|
|
652
|
+
/**
|
|
653
|
+
* Sum data according to the selected zone(s) in the appropriated
|
|
654
|
+
* cells.
|
|
655
|
+
*/
|
|
656
|
+
export interface SumSelectionCommand {
|
|
657
|
+
type: "SUM_SELECTION";
|
|
658
|
+
}
|
|
659
|
+
export interface DeleteCellCommand {
|
|
660
|
+
type: "DELETE_CELL";
|
|
661
|
+
shiftDimension: Dimension;
|
|
662
|
+
zone: Zone;
|
|
663
|
+
}
|
|
664
|
+
export interface InsertCellCommand {
|
|
665
|
+
type: "INSERT_CELL";
|
|
666
|
+
shiftDimension: Dimension;
|
|
667
|
+
zone: Zone;
|
|
668
|
+
}
|
|
669
|
+
export interface ActivateNextSheetCommand {
|
|
670
|
+
type: "ACTIVATE_NEXT_SHEET";
|
|
671
|
+
}
|
|
672
|
+
export interface ActivatePreviousSheetCommand {
|
|
673
|
+
type: "ACTIVATE_PREVIOUS_SHEET";
|
|
674
|
+
}
|
|
675
|
+
export interface SplitTextIntoColumnsCommand {
|
|
676
|
+
type: "SPLIT_TEXT_INTO_COLUMNS";
|
|
677
|
+
separator: string;
|
|
678
|
+
addNewColumns: boolean;
|
|
679
|
+
force?: boolean;
|
|
680
|
+
}
|
|
681
|
+
export interface RefreshPivotCommand {
|
|
682
|
+
type: "REFRESH_PIVOT";
|
|
683
|
+
id: UID;
|
|
684
|
+
}
|
|
685
|
+
export interface InsertNewPivotCommand {
|
|
686
|
+
type: "INSERT_NEW_PIVOT";
|
|
687
|
+
pivotId: UID;
|
|
688
|
+
newSheetId: UID;
|
|
689
|
+
}
|
|
690
|
+
export interface DuplicatePivotInNewSheetCommand {
|
|
691
|
+
type: "DUPLICATE_PIVOT_IN_NEW_SHEET";
|
|
692
|
+
pivotId: UID;
|
|
693
|
+
newPivotId: UID;
|
|
694
|
+
newSheetId: UID;
|
|
695
|
+
}
|
|
696
|
+
export interface InsertPivotWithTableCommand extends PositionDependentCommand {
|
|
697
|
+
type: "INSERT_PIVOT_WITH_TABLE";
|
|
698
|
+
pivotId: UID;
|
|
699
|
+
table: PivotTableData;
|
|
700
|
+
pivotMode: "static" | "dynamic";
|
|
701
|
+
}
|
|
702
|
+
export interface SplitPivotFormulaCommand extends PositionDependentCommand {
|
|
703
|
+
type: "SPLIT_PIVOT_FORMULA";
|
|
704
|
+
pivotId: UID;
|
|
705
|
+
}
|
|
706
|
+
export interface PaintFormat extends TargetDependentCommand {
|
|
707
|
+
type: "PAINT_FORMAT";
|
|
708
|
+
}
|
|
709
|
+
export interface DeleteUnfilteredContentCommand extends TargetDependentCommand {
|
|
710
|
+
type: "DELETE_UNFILTERED_CONTENT";
|
|
711
|
+
}
|
|
712
|
+
export interface PivotStartPresenceTracking {
|
|
713
|
+
type: "PIVOT_START_PRESENCE_TRACKING";
|
|
714
|
+
pivotId: UID;
|
|
715
|
+
}
|
|
716
|
+
export interface PivotStopPresenceTracking {
|
|
717
|
+
type: "PIVOT_STOP_PRESENCE_TRACKING";
|
|
718
|
+
}
|
|
719
|
+
export interface ToggleCheckboxCommand extends TargetDependentCommand {
|
|
720
|
+
type: "TOGGLE_CHECKBOX";
|
|
721
|
+
}
|
|
722
|
+
export type CoreCommand =
|
|
723
|
+
/** CELLS */
|
|
724
|
+
UpdateCellCommand | UpdateCellPositionCommand | ClearCellCommand | ClearCellsCommand | DeleteContentCommand
|
|
725
|
+
/** GRID SHAPE */
|
|
726
|
+
| AddColumnsRowsCommand | RemoveColumnsRowsCommand | ResizeColumnsRowsCommand | HideColumnsRowsCommand | UnhideColumnsRowsCommand | SetGridLinesVisibilityCommand | FreezeColumnsCommand | FreezeRowsCommand | UnfreezeColumnsRowsCommand | UnfreezeColumnsCommand | UnfreezeRowsCommand
|
|
727
|
+
/** MERGE */
|
|
728
|
+
| AddMergeCommand | RemoveMergeCommand
|
|
729
|
+
/** SHEETS MANIPULATION */
|
|
730
|
+
| CreateSheetCommand | DeleteSheetCommand | DuplicateSheetCommand | MoveSheetCommand | RenameSheetCommand | ColorSheetCommand | HideSheetCommand | ShowSheetCommand | LockSheetCommand | UnlockSheetCommand
|
|
731
|
+
/** RANGES MANIPULATION */
|
|
732
|
+
| MoveRangeCommand
|
|
733
|
+
/** CONDITIONAL FORMAT */
|
|
734
|
+
| AddConditionalFormatCommand | RemoveConditionalFormatCommand | MoveConditionalFormatCommand
|
|
735
|
+
/** FIGURES */
|
|
736
|
+
| CreateFigureCommand | DeleteFigureCommand | UpdateFigureCommand | CreateCarouselCommand | UpdateCarouselCommand
|
|
737
|
+
/** FORMATTING */
|
|
738
|
+
| SetFormattingCommand | ClearFormattingCommand | SetZoneBordersCommand | SetBorderCommand | SetBorderTargetCommand
|
|
739
|
+
/** CHART */
|
|
740
|
+
| CreateChartCommand | UpdateChartCommand | DeleteChartCommand
|
|
741
|
+
/** IMAGE */
|
|
742
|
+
| CreateImageOverCommand
|
|
743
|
+
/** FILTERS */
|
|
744
|
+
| CreateTableCommand | RemoveTableCommand | UpdateTableCommand | CreateTableStyleCommand | RemoveTableStyleCommand
|
|
745
|
+
/** HEADER GROUP */
|
|
746
|
+
| GroupHeadersCommand | UnGroupHeadersCommand | UnfoldHeaderGroupCommand | FoldHeaderGroupCommand | FoldAllHeaderGroupsCommand | UnfoldAllHeaderGroupsCommand | UnfoldHeaderGroupsInZoneCommand | FoldHeaderGroupsInZoneCommand
|
|
747
|
+
/** DATA VALIDATION */
|
|
748
|
+
| AddDataValidationCommand | RemoveDataValidationCommand
|
|
749
|
+
/** MISC */
|
|
750
|
+
| UpdateLocaleCommand | CreateNamedRangeCommand | UpdateNamedRangeCommand | DeleteNamedRangeCommand
|
|
751
|
+
/** PIVOT */
|
|
752
|
+
| AddPivotCommand | UpdatePivotCommand | InsertPivotCommand | RenamePivotCommand | RemovePivotCommand | DuplicatePivotCommand;
|
|
753
|
+
export type LocalCommand = RequestUndoCommand | RequestRedoCommand | UndoCommand | RedoCommand | CopyCommand | CutCommand | PasteCommand | CopyPasteCellsAboveCommand | CopyPasteCellsOnLeftCommand | CopyPasteCellsOnZoneCommand | RepeatPasteCommand | CleanClipBoardHighlightCommand | AutoFillCellCommand | PasteFromOSClipboardCommand | AutoresizeColumnsCommand | AutoresizeRowsCommand | MoveColumnsRowsCommand | ActivateSheetCommand | EvaluateCellsCommand | EvaluateChartsCommand | StartChangeHighlightCommand | StartCommand | AutofillCommand | AutofillSelectCommand | AutofillTableCommand | ShowFormulaCommand | AutofillAutoCommand | SelectFigureCommand | ReplaceSearchCommand | SortCommand | SetDecimalCommand | SetContextualFormatCommand | ResizeViewportCommand | SetZoomCommand | SumSelectionCommand | DeleteCellCommand | InsertCellCommand | SetViewportOffsetCommand | MoveViewportDownCommand | MoveViewportUpCommand | MoveViewportToCellCommand | ActivateNextSheetCommand | ActivatePreviousSheetCommand | UpdateFilterCommand | SplitTextIntoColumnsCommand | RemoveDuplicatesCommand | TrimWhitespaceCommand | ResizeTableCommand | RefreshPivotCommand | InsertNewPivotCommand | DuplicatePivotInNewSheetCommand | InsertPivotWithTableCommand | SplitPivotFormulaCommand | PaintFormat | DeleteUnfilteredContentCommand | PivotStartPresenceTracking | PivotStopPresenceTracking | ToggleCheckboxCommand | AddNewChartToCarouselCommand | AddFigureChartToCarouselCommand | DuplicateCarouselChartCommand | UpdateCarouselActiveItemCommand | PopOutChartFromCarouselCommand | UpdateChartRegionCommand;
|
|
754
|
+
export type Command = CoreCommand | LocalCommand;
|
|
755
|
+
/**
|
|
756
|
+
* Holds the result of a command dispatch.
|
|
757
|
+
* The command may have been successfully dispatched or cancelled
|
|
758
|
+
* for one or more reasons.
|
|
759
|
+
*/
|
|
760
|
+
export declare class DispatchResult {
|
|
761
|
+
readonly reasons: CancelledReason[];
|
|
762
|
+
constructor(results?: CommandResult | CommandResult[]);
|
|
763
|
+
/**
|
|
764
|
+
* Static helper which returns a successful DispatchResult
|
|
765
|
+
*/
|
|
766
|
+
static get Success(): DispatchResult;
|
|
767
|
+
get isSuccessful(): boolean;
|
|
768
|
+
/**
|
|
769
|
+
* Check if the dispatch has been cancelled because of
|
|
770
|
+
* the given reason.
|
|
771
|
+
*/
|
|
772
|
+
isCancelledBecause(reason: CancelledReason): boolean;
|
|
773
|
+
}
|
|
774
|
+
export type CancelledReason = Exclude<CommandResult, CommandResult.Success>;
|
|
775
|
+
export declare const enum CommandResult {
|
|
776
|
+
Success = "Success",
|
|
777
|
+
CancelledForUnknownReason = "CancelledForUnknownReason",
|
|
778
|
+
WillRemoveExistingMerge = "WillRemoveExistingMerge",
|
|
779
|
+
CannotMoveTableHeader = "CannotMoveTableHeader",
|
|
780
|
+
MergeIsDestructive = "MergeIsDestructive",
|
|
781
|
+
CellIsMerged = "CellIsMerged",
|
|
782
|
+
InvalidTarget = "InvalidTarget",
|
|
783
|
+
EmptyUndoStack = "EmptyUndoStack",
|
|
784
|
+
EmptyRedoStack = "EmptyRedoStack",
|
|
785
|
+
NotEnoughElements = "NotEnoughElements",
|
|
786
|
+
NotEnoughSheets = "NotEnoughSheets",
|
|
787
|
+
MissingSheetName = "MissingSheetName",
|
|
788
|
+
UnchangedSheetName = "UnchangedSheetName",
|
|
789
|
+
DuplicatedSheetName = "DuplicatedSheetName",
|
|
790
|
+
DuplicatedSheetId = "DuplicatedSheetId",
|
|
791
|
+
ForbiddenCharactersInSheetName = "ForbiddenCharactersInSheetName",
|
|
792
|
+
WrongSheetMove = "WrongSheetMove",
|
|
793
|
+
WrongSheetPosition = "WrongSheetPosition",
|
|
794
|
+
InvalidAnchorZone = "InvalidAnchorZone",
|
|
795
|
+
SelectionOutOfBound = "SelectionOutOfBound",
|
|
796
|
+
TargetOutOfSheet = "TargetOutOfSheet",
|
|
797
|
+
WrongCutSelection = "WrongCutSelection",
|
|
798
|
+
WrongPasteSelection = "WrongPasteSelection",
|
|
799
|
+
WrongPasteOption = "WrongPasteOption",
|
|
800
|
+
WrongFigurePasteOption = "WrongFigurePasteOption",
|
|
801
|
+
EmptyClipboard = "EmptyClipboard",
|
|
802
|
+
EmptyRange = "EmptyRange",
|
|
803
|
+
EmptyTarget = "EmptyTarget",
|
|
804
|
+
InvalidRange = "InvalidRange",
|
|
805
|
+
InvalidZones = "InvalidZones",
|
|
806
|
+
InvalidSheetId = "InvalidSheetId",
|
|
807
|
+
InvalidCellId = "InvalidCellId",
|
|
808
|
+
InvalidFigureId = "InvalidFigureId",
|
|
809
|
+
InputAlreadyFocused = "InputAlreadyFocused",
|
|
810
|
+
MaximumRangesReached = "MaximumRangesReached",
|
|
811
|
+
MinimumRangesReached = "MinimumRangesReached",
|
|
812
|
+
InvalidChartDefinition = "InvalidChartDefinition",
|
|
813
|
+
InvalidDataSet = "InvalidDataSet",
|
|
814
|
+
InvalidLabelRange = "InvalidLabelRange",
|
|
815
|
+
InvalidScorecardKeyValue = "InvalidScorecardKeyValue",
|
|
816
|
+
InvalidScorecardBaseline = "InvalidScorecardBaseline",
|
|
817
|
+
InvalidGaugeDataRange = "InvalidGaugeDataRange",
|
|
818
|
+
EmptyGaugeRangeMin = "EmptyGaugeRangeMin",
|
|
819
|
+
GaugeRangeMinNaN = "GaugeRangeMinNaN",
|
|
820
|
+
EmptyGaugeRangeMax = "EmptyGaugeRangeMax",
|
|
821
|
+
GaugeRangeMaxNaN = "GaugeRangeMaxNaN",
|
|
822
|
+
GaugeLowerInflectionPointNaN = "GaugeLowerInflectionPointNaN",
|
|
823
|
+
GaugeUpperInflectionPointNaN = "GaugeUpperInflectionPointNaN",
|
|
824
|
+
InvalidAutofillSelection = "InvalidAutofillSelection",
|
|
825
|
+
MinBiggerThanMax = "MinBiggerThanMax",
|
|
826
|
+
LowerBiggerThanUpper = "LowerBiggerThanUpper",
|
|
827
|
+
MidBiggerThanMax = "MidBiggerThanMax",
|
|
828
|
+
MinBiggerThanMid = "MinBiggerThanMid",
|
|
829
|
+
FirstArgMissing = "FirstArgMissing",
|
|
830
|
+
SecondArgMissing = "SecondArgMissing",
|
|
831
|
+
MinNaN = "MinNaN",
|
|
832
|
+
MidNaN = "MidNaN",
|
|
833
|
+
MaxNaN = "MaxNaN",
|
|
834
|
+
ValueUpperInflectionNaN = "ValueUpperInflectionNaN",
|
|
835
|
+
ValueLowerInflectionNaN = "ValueLowerInflectionNaN",
|
|
836
|
+
MinInvalidFormula = "MinInvalidFormula",
|
|
837
|
+
MidInvalidFormula = "MidInvalidFormula",
|
|
838
|
+
MaxInvalidFormula = "MaxInvalidFormula",
|
|
839
|
+
ValueUpperInvalidFormula = "ValueUpperInvalidFormula",
|
|
840
|
+
ValueLowerInvalidFormula = "ValueLowerInvalidFormula",
|
|
841
|
+
InvalidSortAnchor = "InvalidSortAnchor",
|
|
842
|
+
InvalidSortZone = "InvalidSortZone",
|
|
843
|
+
SortZoneWithArrayFormulas = "SortZoneWithArrayFormulas",
|
|
844
|
+
WaitingSessionConfirmation = "WaitingSessionConfirmation",
|
|
845
|
+
MergeOverlap = "MergeOverlap",
|
|
846
|
+
TooManyHiddenElements = "TooManyHiddenElements",
|
|
847
|
+
Readonly = "Readonly",
|
|
848
|
+
InvalidViewportSize = "InvalidViewportSize",
|
|
849
|
+
InvalidScrollingDirection = "InvalidScrollingDirection",
|
|
850
|
+
ViewportScrollLimitsReached = "ViewportScrollLimitsReached",
|
|
851
|
+
FigureDoesNotExist = "FigureDoesNotExist",
|
|
852
|
+
InvalidConditionalFormatId = "InvalidConditionalFormatId",
|
|
853
|
+
InvalidConditionalFormatType = "InvalidConditionalFormatType",
|
|
854
|
+
InvalidCellPopover = "InvalidCellPopover",
|
|
855
|
+
EmptySelectedRange = "EmptySelectedRange",
|
|
856
|
+
InvalidFreezeQuantity = "InvalidFreezeQuantity",
|
|
857
|
+
FrozenPaneOverlap = "FrozenPaneOverlap",
|
|
858
|
+
ValuesNotChanged = "ValuesNotChanged",
|
|
859
|
+
InvalidFilterZone = "InvalidFilterZone",
|
|
860
|
+
TableNotFound = "TableNotFound",
|
|
861
|
+
TableOverlap = "TableOverlap",
|
|
862
|
+
InvalidTableConfig = "InvalidTableConfig",
|
|
863
|
+
InvalidTableStyle = "InvalidTableStyle",
|
|
864
|
+
FilterNotFound = "FilterNotFound",
|
|
865
|
+
MergeInTable = "MergeInTable",
|
|
866
|
+
NonContinuousTargets = "NonContinuousTargets",
|
|
867
|
+
DuplicatedFigureId = "DuplicatedFigureId",
|
|
868
|
+
InvalidSelectionStep = "InvalidSelectionStep",
|
|
869
|
+
DuplicatedChartId = "DuplicatedChartId",
|
|
870
|
+
ChartDoesNotExist = "ChartDoesNotExist",
|
|
871
|
+
InvalidHeaderIndex = "InvalidHeaderIndex",
|
|
872
|
+
InvalidQuantity = "InvalidQuantity",
|
|
873
|
+
MoreThanOneColumnSelected = "MoreThanOneColumnSelected",
|
|
874
|
+
EmptySplitSeparator = "EmptySplitSeparator",
|
|
875
|
+
SplitWillOverwriteContent = "SplitWillOverwriteContent",
|
|
876
|
+
NoSplitSeparatorInSelection = "NoSplitSeparatorInSelection",
|
|
877
|
+
NoActiveSheet = "NoActiveSheet",
|
|
878
|
+
InvalidLocale = "InvalidLocale",
|
|
879
|
+
MoreThanOneRangeSelected = "MoreThanOneRangeSelected",
|
|
880
|
+
NoColumnsProvided = "NoColumnsProvided",
|
|
881
|
+
ColumnsNotIncludedInZone = "ColumnsNotIncludedInZone",
|
|
882
|
+
DuplicatesColumnsSelected = "DuplicatesColumnsSelected",
|
|
883
|
+
InvalidHeaderGroupStartEnd = "InvalidHeaderGroupStartEnd",
|
|
884
|
+
HeaderGroupAlreadyExists = "HeaderGroupAlreadyExists",
|
|
885
|
+
UnknownHeaderGroup = "UnknownHeaderGroup",
|
|
886
|
+
UnknownDataValidationRule = "UnknownDataValidationRule",
|
|
887
|
+
UnknownDataValidationCriterionType = "UnknownDataValidationCriterionType",
|
|
888
|
+
InvalidDataValidationCriterionValue = "InvalidDataValidationCriterionValue",
|
|
889
|
+
InvalidNumberOfCriterionValues = "InvalidNumberOfCriterionValues",
|
|
890
|
+
InvalidCopyPasteSelection = "InvalidCopyPasteSelection",
|
|
891
|
+
NoChanges = "NoChanges",
|
|
892
|
+
InvalidInputId = "InvalidInputId",
|
|
893
|
+
SheetIsHidden = "SheetIsHidden",
|
|
894
|
+
InvalidTableResize = "InvalidTableResize",
|
|
895
|
+
PivotIdNotFound = "PivotIdNotFound",
|
|
896
|
+
PivotIdTaken = "PivotIdTaken",
|
|
897
|
+
PivotInError = "PivotInError",
|
|
898
|
+
EmptyName = "EmptyName",
|
|
899
|
+
ValueCellIsInvalidFormula = "ValueCellIsInvalidFormula",
|
|
900
|
+
InvalidDefinition = "InvalidDefinition",
|
|
901
|
+
InvalidColor = "InvalidColor",
|
|
902
|
+
InvalidPivotDataSet = "InvalidPivotDataSet",
|
|
903
|
+
InvalidPivotCustomField = "InvalidPivotCustomField",
|
|
904
|
+
MissingFigureArguments = "MissingFigureArguments",
|
|
905
|
+
InvalidCarouselItem = "InvalidCarouselItem",
|
|
906
|
+
SheetLocked = "SheetLocked",
|
|
907
|
+
InvalidZoomLevel = "InvalidZoomLevel",
|
|
908
|
+
NamedRangeNameAlreadyExists = "NamedRangeNameAlreadyExists",
|
|
909
|
+
NamedRangeInvalidName = "NamedRangeInvalidName",
|
|
910
|
+
NamedRangeNameLooksLikeCellReference = "NamedRangeNameLooksLikeCellReference",
|
|
911
|
+
NamedRangeNotFound = "NamedRangeNotFound",
|
|
912
|
+
SubCommandOnly = "SubCommandOnly"
|
|
913
|
+
}
|
|
914
|
+
export interface CommandHandler<T> {
|
|
915
|
+
allowDispatch(command: T): CommandResult | CommandResult[];
|
|
916
|
+
beforeHandle(command: T): void;
|
|
917
|
+
handle(command: T): void;
|
|
918
|
+
finalize(): void;
|
|
919
|
+
}
|
|
920
|
+
export interface CommandDispatcher {
|
|
921
|
+
dispatch<T extends CommandTypes, C extends Extract<Command, {
|
|
922
|
+
type: T;
|
|
923
|
+
}>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
|
|
924
|
+
dispatch<T extends CommandTypes, C extends Extract<Command, {
|
|
925
|
+
type: T;
|
|
926
|
+
}>>(type: T, r: Omit<C, "type">): DispatchResult;
|
|
927
|
+
}
|
|
928
|
+
export interface CoreCommandDispatcher {
|
|
929
|
+
dispatch<T extends CoreCommandTypes, C extends Extract<CoreCommand, {
|
|
930
|
+
type: T;
|
|
931
|
+
}>>(type: {} extends Omit<C, "type"> ? T : never): DispatchResult;
|
|
932
|
+
dispatch<T extends CoreCommandTypes, C extends Extract<CoreCommand, {
|
|
933
|
+
type: T;
|
|
934
|
+
}>>(type: T, r: Omit<C, "type">): DispatchResult;
|
|
935
|
+
}
|
|
936
|
+
export type CommandTypes = Command["type"];
|
|
937
|
+
export type CoreCommandTypes = CoreCommand["type"];
|
|
938
|
+
export type CoreViewCommand = CoreCommand | EvaluateCellsCommand | EvaluateChartsCommand | UndoCommand | RedoCommand;
|
|
939
|
+
export type CoreViewCommandTypes = CoreViewCommand["type"];
|
|
940
|
+
export {};
|