@odoo/o-spreadsheet 19.2.11 → 19.4.0-alpha.4

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.
Files changed (708) hide show
  1. package/dist/{o_spreadsheet.cjs.js → o_spreadsheet.cjs} +70185 -66238
  2. package/dist/o_spreadsheet.css +249 -47
  3. package/dist/o_spreadsheet.esm.js +74542 -70628
  4. package/dist/o_spreadsheet.iife.js +53825 -49878
  5. package/dist/o_spreadsheet.min.iife.js +965 -0
  6. package/dist/o_spreadsheet.xml +1466 -746
  7. package/dist/types/actions/action.d.ts +104 -0
  8. package/dist/types/actions/data_actions.d.ts +13 -0
  9. package/dist/types/actions/edit_actions.d.ts +23 -0
  10. package/dist/types/actions/figure_menu_actions.d.ts +6 -0
  11. package/dist/types/actions/format_actions.d.ts +65 -0
  12. package/dist/types/actions/insert_actions.d.ts +33 -0
  13. package/dist/types/actions/menu_items_actions.d.ts +58 -0
  14. package/dist/types/actions/sheet_actions.d.ts +15 -0
  15. package/dist/types/actions/view_actions.d.ts +29 -0
  16. package/dist/types/clipboard_handlers/abstract_cell_clipboard_handler.d.ts +8 -0
  17. package/dist/types/clipboard_handlers/abstract_clipboard_handler.d.ts +15 -0
  18. package/dist/types/clipboard_handlers/abstract_figure_clipboard_handler.d.ts +5 -0
  19. package/dist/types/clipboard_handlers/borders_clipboard.d.ts +18 -0
  20. package/dist/types/clipboard_handlers/carousel_clipboard.d.ts +22 -0
  21. package/dist/types/clipboard_handlers/cell_clipboard.d.ts +31 -0
  22. package/dist/types/clipboard_handlers/chart_clipboard.d.ts +18 -0
  23. package/dist/types/clipboard_handlers/clipboard_handler_registrations.d.ts +1 -0
  24. package/dist/types/clipboard_handlers/conditional_format_clipboard.d.ts +26 -0
  25. package/dist/types/clipboard_handlers/data_validation_clipboard.d.ts +26 -0
  26. package/dist/types/clipboard_handlers/image_clipboard.d.ts +19 -0
  27. package/dist/types/clipboard_handlers/merge_clipboard.d.ts +17 -0
  28. package/dist/types/clipboard_handlers/references_clipboard.d.ts +12 -0
  29. package/dist/types/clipboard_handlers/sheet_clipboard.d.ts +13 -0
  30. package/dist/types/clipboard_handlers/tables_clipboard.d.ts +36 -0
  31. package/dist/types/collaborative/command_squisher.d.ts +77 -0
  32. package/dist/types/collaborative/local_transport_service.d.ts +8 -0
  33. package/dist/types/collaborative/ot/ot.d.ts +23 -0
  34. package/dist/types/collaborative/ot/ot_helpers.d.ts +5 -0
  35. package/dist/types/collaborative/ot/ot_specific.d.ts +1 -0
  36. package/dist/types/collaborative/ot/srt_specific.d.ts +1 -0
  37. package/dist/types/collaborative/readonly_transport_filter.d.ts +9 -0
  38. package/dist/types/collaborative/revisions.d.ts +26 -0
  39. package/dist/types/collaborative/session.d.ts +106 -0
  40. package/dist/types/components/action_button/action_button.d.ts +42 -0
  41. package/dist/types/components/animation/ripple.d.ts +118 -0
  42. package/dist/types/components/autofill/autofill.d.ts +33 -0
  43. package/dist/types/components/border_editor/border_editor.d.ts +69 -0
  44. package/dist/types/components/border_editor/border_editor_widget.d.ts +51 -0
  45. package/dist/types/components/bottom_bar/bottom_bar.d.ts +60 -0
  46. package/dist/types/components/bottom_bar/bottom_bar_sheet/bottom_bar_sheet.d.ts +66 -0
  47. package/dist/types/components/bottom_bar/bottom_bar_statistic/aggregate_statistics_store.d.ts +13 -0
  48. package/dist/types/components/bottom_bar/bottom_bar_statistic/bottom_bar_statistic.d.ts +25 -0
  49. package/dist/types/components/collaborative_client_tag/collaborative_client_tag.d.ts +22 -0
  50. package/dist/types/components/color_picker/color_picker.d.ts +58 -0
  51. package/dist/types/components/color_picker/color_picker_widget.d.ts +54 -0
  52. package/dist/types/components/composer/autocomplete_dropdown/autocomplete_dropdown.d.ts +25 -0
  53. package/dist/types/components/composer/autocomplete_dropdown/autocomplete_dropdown_store.d.ts +12 -0
  54. package/dist/types/components/composer/composer/abstract_composer_store.d.ts +148 -0
  55. package/dist/types/components/composer/composer/cell_composer_store.d.ts +25 -0
  56. package/dist/types/components/composer/composer/composer.d.ts +196 -0
  57. package/dist/types/components/composer/composer_focus_store.d.ts +28 -0
  58. package/dist/types/components/composer/content_editable_helper.d.ts +41 -0
  59. package/dist/types/components/composer/formula_assistant/formula_assistant.d.ts +31 -0
  60. package/dist/types/components/composer/grid_composer/grid_composer.d.ts +49 -0
  61. package/dist/types/components/composer/speech_bubble/speech_bubble.d.ts +18 -0
  62. package/dist/types/components/composer/standalone_composer/standalone_composer.d.ts +83 -0
  63. package/dist/types/components/composer/standalone_composer/standalone_composer_store.d.ts +34 -0
  64. package/dist/types/components/composer/top_bar_composer/top_bar_composer.d.ts +20 -0
  65. package/dist/types/components/dashboard/clickable_cell_sort_icon/clickable_cell_sort_icon.d.ts +20 -0
  66. package/dist/types/components/dashboard/clickable_cell_store.d.ts +23 -0
  67. package/dist/types/components/dashboard/dashboard.d.ts +53 -0
  68. package/dist/types/components/date_input/date_input.d.ts +4 -0
  69. package/dist/types/components/error_tooltip/error_tooltip.d.ts +40 -0
  70. package/dist/types/components/figures/chart/chartJs/chartjs.d.ts +39 -0
  71. package/dist/types/components/figures/chart/chartJs/chartjs_animation_store.d.ts +9 -0
  72. package/dist/types/components/figures/chart/chartJs/chartjs_background_plugin.d.ts +11 -0
  73. package/dist/types/components/figures/chart/chartJs/chartjs_calendar_chart.d.ts +19 -0
  74. package/dist/types/components/figures/chart/chartJs/chartjs_colorscale_plugin.d.ts +18 -0
  75. package/dist/types/components/figures/chart/chartJs/chartjs_funnel_chart.d.ts +29 -0
  76. package/dist/types/components/figures/chart/chartJs/chartjs_minor_grid_plugin.d.ts +5 -0
  77. package/dist/types/components/figures/chart/chartJs/chartjs_show_values_plugin.d.ts +17 -0
  78. package/dist/types/components/figures/chart/chartJs/chartjs_sunburst_hover_plugin.d.ts +14 -0
  79. package/dist/types/components/figures/chart/chartJs/chartjs_sunburst_labels_plugin.d.ts +14 -0
  80. package/dist/types/components/figures/chart/chartJs/chartjs_waterfall_plugin.d.ts +12 -0
  81. package/dist/types/components/figures/chart/chartJs/zoomable_chart/zoomable_chart_store.d.ts +31 -0
  82. package/dist/types/components/figures/chart/chartJs/zoomable_chart/zoomable_chartjs.d.ts +64 -0
  83. package/dist/types/components/figures/chart/chartJs/zoomable_chart/zoomable_chartjs_plugins.d.ts +12 -0
  84. package/dist/types/components/figures/chart/chart_dashboard_menu/chart_dashboard_menu.d.ts +44 -0
  85. package/dist/types/components/figures/chart/gauge/gauge_chart_component.d.ts +41 -0
  86. package/dist/types/components/figures/chart/scorecard/chart_scorecard.d.ts +24 -0
  87. package/dist/types/components/figures/figure/figure.d.ts +66 -0
  88. package/dist/types/components/figures/figure_carousel/figure_carousel.d.ts +62 -0
  89. package/dist/types/components/figures/figure_chart/figure_chart.d.ts +39 -0
  90. package/dist/types/components/figures/figure_container/figure_container.d.ts +122 -0
  91. package/dist/types/components/figures/figure_image/figure_image.d.ts +28 -0
  92. package/dist/types/components/filters/filter_menu/filter_menu.d.ts +42 -0
  93. package/dist/types/components/filters/filter_menu_criterion/filter_menu_criterion.d.ts +30 -0
  94. package/dist/types/components/filters/filter_menu_item/filter_menu_value_item.d.ts +32 -0
  95. package/dist/types/components/filters/filter_menu_value_list/filter_menu_value_list.d.ts +41 -0
  96. package/dist/types/components/focus_store.d.ts +6 -0
  97. package/dist/types/components/font_size_editor/font_size_editor.d.ts +34 -0
  98. package/dist/types/components/full_screen_figure/full_screen_figure.d.ts +20 -0
  99. package/dist/types/components/full_screen_figure/full_screen_figure_store.d.ts +8 -0
  100. package/dist/types/components/generic_input/generic_input.d.ts +73 -0
  101. package/dist/types/components/grid/delayed_hovered_cell_store.d.ts +11 -0
  102. package/dist/types/components/grid/grid.d.ts +127 -0
  103. package/dist/types/components/grid_add_rows_footer/grid_add_rows_footer.d.ts +29 -0
  104. package/dist/types/components/grid_overlay/grid_overlay.d.ts +69 -0
  105. package/dist/types/components/grid_overlay/hovered_icon_store.d.ts +12 -0
  106. package/dist/types/components/grid_popover/grid_popover.d.ts +27 -0
  107. package/dist/types/components/header_group/header_group.d.ts +47 -0
  108. package/dist/types/components/header_group/header_group_container.d.ts +34 -0
  109. package/dist/types/components/headers_overlay/headers_overlay.d.ts +178 -0
  110. package/dist/types/components/headers_overlay/unhide_headers.d.ts +50 -0
  111. package/dist/types/components/helpers/autofocus_hook.d.ts +3 -0
  112. package/dist/types/components/helpers/convert_image_to_png.d.ts +1 -0
  113. package/dist/types/components/helpers/css.d.ts +31 -0
  114. package/dist/types/components/helpers/dom_helpers.d.ts +51 -0
  115. package/dist/types/components/helpers/drag_and_drop.d.ts +8 -0
  116. package/dist/types/components/helpers/drag_and_drop_dom_items_hook.d.ts +24 -0
  117. package/dist/types/components/helpers/drag_and_drop_grid_hook.d.ts +18 -0
  118. package/dist/types/components/helpers/draw_grid_hook.d.ts +11 -0
  119. package/dist/types/components/helpers/figure_drag_helper.d.ts +11 -0
  120. package/dist/types/components/helpers/figure_snap_helper.d.ts +27 -0
  121. package/dist/types/components/helpers/highlight_hook.d.ts +4 -0
  122. package/dist/types/components/helpers/html_content_helpers.d.ts +2 -0
  123. package/dist/types/components/helpers/listener_hook.d.ts +13 -0
  124. package/dist/types/components/helpers/position_hook.d.ts +14 -0
  125. package/dist/types/components/helpers/screen_width_hook.d.ts +3 -0
  126. package/dist/types/components/helpers/selection_helpers.d.ts +5 -0
  127. package/dist/types/components/helpers/time_hooks.d.ts +17 -0
  128. package/dist/types/components/helpers/top_bar_tool_hook.d.ts +6 -0
  129. package/dist/types/components/helpers/touch_handlers_hook.d.ts +11 -0
  130. package/dist/types/components/helpers/wheel_hook.d.ts +1 -0
  131. package/dist/types/components/helpers/zoom.d.ts +22 -0
  132. package/dist/types/components/highlight/border/border.d.ts +22 -0
  133. package/dist/types/components/highlight/corner/corner.d.ts +30 -0
  134. package/dist/types/components/highlight/highlight/highlight.d.ts +37 -0
  135. package/dist/types/components/icon_picker/icon_picker.d.ts +34 -0
  136. package/dist/types/components/icons/icons.d.ts +33 -0
  137. package/dist/types/components/link/link_display/link_display.d.ts +30 -0
  138. package/dist/types/components/link/link_editor/link_editor.d.ts +62 -0
  139. package/dist/types/components/menu/menu.d.ts +79 -0
  140. package/dist/types/components/menu_popover/menu_popover.d.ts +128 -0
  141. package/dist/types/components/named_range_selector/named_range_selector.d.ts +36 -0
  142. package/dist/types/components/number_editor/number_editor.d.ts +80 -0
  143. package/dist/types/components/number_input/number_input.d.ts +67 -0
  144. package/dist/types/components/paint_format_button/paint_format_button.d.ts +20 -0
  145. package/dist/types/components/paint_format_button/paint_format_store.d.ts +23 -0
  146. package/dist/types/components/pivot_html_renderer/pivot_html_renderer.d.ts +89 -0
  147. package/dist/types/components/popover/cell_popover_store.d.ts +17 -0
  148. package/dist/types/components/popover/popover.d.ts +84 -0
  149. package/dist/types/components/popover/popover_builders.d.ts +1 -0
  150. package/dist/types/components/scrollbar/scrollbar.d.ts +39 -0
  151. package/dist/types/components/scrollbar/scrollbar_horizontal.d.ts +32 -0
  152. package/dist/types/components/scrollbar/scrollbar_vertical.d.ts +32 -0
  153. package/dist/types/components/scrollbar.d.ts +9 -0
  154. package/dist/types/components/select/select.d.ts +59 -0
  155. package/dist/types/components/selection/selection.d.ts +11 -0
  156. package/dist/types/components/selection_input/selection_input.d.ts +120 -0
  157. package/dist/types/components/selection_input/selection_input_store.d.ts +100 -0
  158. package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +61 -0
  159. package/dist/types/components/side_panel/chart/bar_chart/bar_chart_config_panel.d.ts +12 -0
  160. package/dist/types/components/side_panel/chart/bar_chart/bar_chart_design_panel.d.ts +15 -0
  161. package/dist/types/components/side_panel/chart/bubble_chart/bubble_chart_config_panel.d.ts +66 -0
  162. package/dist/types/components/side_panel/chart/bubble_chart/bubble_chart_design_panel.d.ts +61 -0
  163. package/dist/types/components/side_panel/chart/building_blocks/axis_design/axis_design_editor.d.ts +72 -0
  164. package/dist/types/components/side_panel/chart/building_blocks/chart_title/chart_title.d.ts +49 -0
  165. package/dist/types/components/side_panel/chart/building_blocks/color_scale/color_scale_picker.d.ts +51 -0
  166. package/dist/types/components/side_panel/chart/building_blocks/data_series/data_series.d.ts +76 -0
  167. package/dist/types/components/side_panel/chart/building_blocks/data_source/data_source.d.ts +53 -0
  168. package/dist/types/components/side_panel/chart/building_blocks/error_section/error_section.d.ts +21 -0
  169. package/dist/types/components/side_panel/chart/building_blocks/general_design/general_design_editor.d.ts +49 -0
  170. package/dist/types/components/side_panel/chart/building_blocks/generic_side_panel/config_panel.d.ts +50 -0
  171. package/dist/types/components/side_panel/chart/building_blocks/humanize_numbers/humanize_numbers.d.ts +18 -0
  172. package/dist/types/components/side_panel/chart/building_blocks/label_range/label_range.d.ts +48 -0
  173. package/dist/types/components/side_panel/chart/building_blocks/legend/legend.d.ts +32 -0
  174. package/dist/types/components/side_panel/chart/building_blocks/pie_hole_size/pie_hole_size.d.ts +21 -0
  175. package/dist/types/components/side_panel/chart/building_blocks/range_data_source/range_data_source.d.ts +112 -0
  176. package/dist/types/components/side_panel/chart/building_blocks/series_design/series_design_editor.d.ts +58 -0
  177. package/dist/types/components/side_panel/chart/building_blocks/series_design/series_with_axis_design_editor.d.ts +59 -0
  178. package/dist/types/components/side_panel/chart/building_blocks/show_data_markers/show_data_markers.d.ts +17 -0
  179. package/dist/types/components/side_panel/chart/building_blocks/show_values/show_values.d.ts +25 -0
  180. package/dist/types/components/side_panel/chart/building_blocks/text_styler/text_styler.d.ts +88 -0
  181. package/dist/types/components/side_panel/chart/calendar_chart/calendar_chart_config_panel.d.ts +22 -0
  182. package/dist/types/components/side_panel/chart/calendar_chart/calendar_chart_design_panel.d.ts +39 -0
  183. package/dist/types/components/side_panel/chart/chart_side_panel_registry.d.ts +15 -0
  184. package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +52 -0
  185. package/dist/types/components/side_panel/chart/chart_with_axis/design_panel.d.ts +32 -0
  186. package/dist/types/components/side_panel/chart/combo_chart/combo_chart_design_panel.d.ts +28 -0
  187. package/dist/types/components/side_panel/chart/common.d.ts +15 -0
  188. package/dist/types/components/side_panel/chart/funnel_chart_panel/funnel_chart_config_panel.d.ts +10 -0
  189. package/dist/types/components/side_panel/chart/funnel_chart_panel/funnel_chart_design_panel.d.ts +32 -0
  190. package/dist/types/components/side_panel/chart/gauge_chart_panel/gauge_chart_config_panel.d.ts +28 -0
  191. package/dist/types/components/side_panel/chart/gauge_chart_panel/gauge_chart_design_panel.d.ts +56 -0
  192. package/dist/types/components/side_panel/chart/geo_chart_panel/geo_chart_config_panel.d.ts +13 -0
  193. package/dist/types/components/side_panel/chart/geo_chart_panel/geo_chart_design_panel.d.ts +30 -0
  194. package/dist/types/components/side_panel/chart/geo_chart_panel/geo_chart_region_select_section.d.ts +29 -0
  195. package/dist/types/components/side_panel/chart/hierarchical_chart/hierarchical_chart_config_panel.d.ts +10 -0
  196. package/dist/types/components/side_panel/chart/line_chart/line_chart_config_panel.d.ts +15 -0
  197. package/dist/types/components/side_panel/chart/line_chart/line_chart_design_panel.d.ts +19 -0
  198. package/dist/types/components/side_panel/chart/main_chart_panel/main_chart_panel.d.ts +34 -0
  199. package/dist/types/components/side_panel/chart/main_chart_panel/main_chart_panel_store.d.ts +23 -0
  200. package/dist/types/components/side_panel/chart/pie_chart/pie_chart_design_panel.d.ts +48 -0
  201. package/dist/types/components/side_panel/chart/radar_chart/radar_chart_design_panel.d.ts +31 -0
  202. package/dist/types/components/side_panel/chart/scatter_chart/scatter_chart_config_panel.d.ts +12 -0
  203. package/dist/types/components/side_panel/chart/scorecard_chart_panel/scorecard_chart_config_panel.d.ts +38 -0
  204. package/dist/types/components/side_panel/chart/scorecard_chart_panel/scorecard_chart_design_panel.d.ts +43 -0
  205. package/dist/types/components/side_panel/chart/sunburst_chart/sunburst_chart_design_panel.d.ts +48 -0
  206. package/dist/types/components/side_panel/chart/treemap_chart/treemap_category_color/treemap_category_color.d.ts +29 -0
  207. package/dist/types/components/side_panel/chart/treemap_chart/treemap_chart_design_panel.d.ts +57 -0
  208. package/dist/types/components/side_panel/chart/treemap_chart/treemap_color_scale/treemap_color_scale.d.ts +25 -0
  209. package/dist/types/components/side_panel/chart/waterfall_chart/waterfall_chart_design_panel.d.ts +51 -0
  210. package/dist/types/components/side_panel/chart/zoomable_chart/design_panel.d.ts +25 -0
  211. package/dist/types/components/side_panel/column_stats/column_stats_panel.d.ts +70 -0
  212. package/dist/types/components/side_panel/column_stats/column_stats_store.d.ts +52 -0
  213. package/dist/types/components/side_panel/components/badge_selection/badge_selection.d.ts +21 -0
  214. package/dist/types/components/side_panel/components/checkbox/checkbox.d.ts +46 -0
  215. package/dist/types/components/side_panel/components/cog_wheel_menu/cog_wheel_menu.d.ts +22 -0
  216. package/dist/types/components/side_panel/components/collapse/collapse.d.ts +17 -0
  217. package/dist/types/components/side_panel/components/collapsible/side_panel_collapsible.d.ts +25 -0
  218. package/dist/types/components/side_panel/components/radio_selection/radio_selection.d.ts +32 -0
  219. package/dist/types/components/side_panel/components/round_color_picker/round_color_picker.d.ts +44 -0
  220. package/dist/types/components/side_panel/components/section/section.d.ts +20 -0
  221. package/dist/types/components/side_panel/conditional_formatting/cf_editor/cell_is_rule_editor.d.ts +23 -0
  222. package/dist/types/components/side_panel/conditional_formatting/cf_editor/cf_editor.d.ts +45 -0
  223. package/dist/types/components/side_panel/conditional_formatting/cf_editor/cf_editor_store.d.ts +100 -0
  224. package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor.d.ts +18 -0
  225. package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor_threshold.d.ts +32 -0
  226. package/dist/types/components/side_panel/conditional_formatting/cf_editor/data_bar_rule_editor.d.ts +23 -0
  227. package/dist/types/components/side_panel/conditional_formatting/cf_editor/icon_set_rule_editor.d.ts +30 -0
  228. package/dist/types/components/side_panel/conditional_formatting/cf_preview/cf_preview.d.ts +29 -0
  229. package/dist/types/components/side_panel/conditional_formatting/cf_preview_list/cf_preview_list.d.ts +24 -0
  230. package/dist/types/components/side_panel/criterion_form/criterion_form.d.ts +26 -0
  231. package/dist/types/components/side_panel/criterion_form/criterion_input/criterion_input.d.ts +67 -0
  232. package/dist/types/components/side_panel/criterion_form/date_criterion/date_criterion.d.ts +16 -0
  233. package/dist/types/components/side_panel/criterion_form/double_input_criterion/double_input_criterion.d.ts +10 -0
  234. package/dist/types/components/side_panel/criterion_form/single_input_criterion/single_input_criterion.d.ts +9 -0
  235. package/dist/types/components/side_panel/criterion_form/top_10_criterion/top_10_criterion.d.ts +17 -0
  236. package/dist/types/components/side_panel/criterion_form/value_in_list_criterion/value_in_list_criterion.d.ts +34 -0
  237. package/dist/types/components/side_panel/criterion_form/value_in_range_criterion/value_in_range_criterion.d.ts +23 -0
  238. package/dist/types/components/side_panel/data_validation/data_validation_panel.d.ts +20 -0
  239. package/dist/types/components/side_panel/data_validation/dv_editor/dv_editor.d.ts +53 -0
  240. package/dist/types/components/side_panel/data_validation/dv_preview/dv_preview.d.ts +21 -0
  241. package/dist/types/components/side_panel/find_and_replace/find_and_replace.d.ts +52 -0
  242. package/dist/types/components/side_panel/find_and_replace/find_and_replace_store.d.ts +74 -0
  243. package/dist/types/components/side_panel/more_formats/more_formats.d.ts +40 -0
  244. package/dist/types/components/side_panel/more_formats/more_formats_store.d.ts +64 -0
  245. package/dist/types/components/side_panel/named_ranges_panel/named_range_preview/named_range_preview.d.ts +33 -0
  246. package/dist/types/components/side_panel/named_ranges_panel/named_ranges_panel.d.ts +22 -0
  247. package/dist/types/components/side_panel/perf_profile/perf_profile_panel.d.ts +30 -0
  248. package/dist/types/components/side_panel/pivot/pivot_custom_groups_collapsible/pivot_custom_groups_collapsible.d.ts +31 -0
  249. package/dist/types/components/side_panel/pivot/pivot_defer_update/pivot_defer_update.d.ts +28 -0
  250. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/add_dimension_button/add_dimension_button.d.ts +46 -0
  251. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_dimension/pivot_dimension.d.ts +36 -0
  252. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_dimension_granularity/pivot_dimension_granularity.d.ts +40 -0
  253. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_dimension_order/pivot_dimension_order.d.ts +21 -0
  254. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +79 -0
  255. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_measure/pivot_measure.d.ts +45 -0
  256. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_sort_section/pivot_sort_section.d.ts +26 -0
  257. package/dist/types/components/side_panel/pivot/pivot_measure_display_panel/pivot_measure_display_panel.d.ts +73 -0
  258. package/dist/types/components/side_panel/pivot/pivot_measure_display_panel/pivot_measure_display_panel_store.d.ts +38 -0
  259. package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_design_panel/pivot_design_panel.d.ts +36 -0
  260. package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_side_panel.d.ts +39 -0
  261. package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_side_panel_store.d.ts +45 -0
  262. package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_spreadsheet_side_panel/pivot_spreadsheet_side_panel.d.ts +50 -0
  263. package/dist/types/components/side_panel/pivot/pivot_title_section/pivot_title_section.d.ts +30 -0
  264. package/dist/types/components/side_panel/remove_duplicates/remove_duplicates.d.ts +39 -0
  265. package/dist/types/components/side_panel/settings/settings_panel.d.ts +35 -0
  266. package/dist/types/components/side_panel/side_panel/side_panel.d.ts +43 -0
  267. package/dist/types/components/side_panel/side_panel/side_panel_store.d.ts +56 -0
  268. package/dist/types/components/side_panel/side_panels/side_panels.d.ts +23 -0
  269. package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +41 -0
  270. package/dist/types/components/side_panel/table_panel/table_panel.d.ts +57 -0
  271. package/dist/types/components/side_panel/table_style_editor_panel/table_style_editor_panel.d.ts +52 -0
  272. package/dist/types/components/small_bottom_bar/ribbon_menu/ribbon_menu.d.ts +36 -0
  273. package/dist/types/components/small_bottom_bar/small_bottom_bar.d.ts +37 -0
  274. package/dist/types/components/spreadsheet/spreadsheet.d.ts +77 -0
  275. package/dist/types/components/spreadsheet_print/spreadsheet_print.d.ts +35 -0
  276. package/dist/types/components/spreadsheet_print/spreadsheet_print_store.d.ts +79 -0
  277. package/dist/types/components/standalone_grid_canvas/figure_renderer_store.d.ts +17 -0
  278. package/dist/types/components/standalone_grid_canvas/standalone_grid_canvas.d.ts +28 -0
  279. package/dist/types/components/tables/hovered_table_store.d.ts +14 -0
  280. package/dist/types/components/tables/table_dropdown_button/table_dropdown_button.d.ts +40 -0
  281. package/dist/types/components/tables/table_resizer/table_resizer.d.ts +28 -0
  282. package/dist/types/components/tables/table_style_picker/table_style_picker.d.ts +34 -0
  283. package/dist/types/components/tables/table_style_preview/table_canvas_helpers.d.ts +8 -0
  284. package/dist/types/components/tables/table_style_preview/table_style_preview.d.ts +45 -0
  285. package/dist/types/components/tables/table_styles_popover/table_styles_popover.d.ts +59 -0
  286. package/dist/types/components/text_input/text_input.d.ts +60 -0
  287. package/dist/types/components/top_bar/color_editor/color_editor.d.ts +32 -0
  288. package/dist/types/components/top_bar/dropdown_action/dropdown_action.d.ts +34 -0
  289. package/dist/types/components/top_bar/font_size_editor/font_size_editor.d.ts +25 -0
  290. package/dist/types/components/top_bar/number_formats_tool/number_formats_tool.d.ts +34 -0
  291. package/dist/types/components/top_bar/top_bar.d.ts +87 -0
  292. package/dist/types/components/top_bar/top_bar_tool_store.d.ts +14 -0
  293. package/dist/types/components/top_bar/top_bar_tools_registry.d.ts +2 -0
  294. package/dist/types/components/top_bar/zoom_editor/zoom_editor.d.ts +24 -0
  295. package/dist/types/components/translations_terms.d.ts +165 -0
  296. package/dist/types/components/validation_messages/validation_messages.d.ts +21 -0
  297. package/dist/types/constants.d.ts +172 -0
  298. package/dist/types/dom_mock.d.ts +0 -0
  299. package/dist/types/formulas/code_builder.d.ts +24 -0
  300. package/dist/types/formulas/compiler.d.ts +108 -0
  301. package/dist/types/formulas/composer_tokenizer.d.ts +54 -0
  302. package/dist/types/formulas/formula_formatter.d.ts +18 -0
  303. package/dist/types/formulas/parser.d.ts +107 -0
  304. package/dist/types/formulas/range_tokenizer.d.ts +8 -0
  305. package/dist/types/formulas/tokenizer.d.ts +26 -0
  306. package/dist/types/functions/arguments.d.ts +90 -0
  307. package/dist/types/functions/autocomplete_arguments_provider.d.ts +13 -0
  308. package/dist/types/functions/create_compute_function.d.ts +42 -0
  309. package/dist/types/functions/function_registry.d.ts +11 -0
  310. package/dist/types/functions/function_registry_population.d.ts +10 -0
  311. package/dist/types/functions/helper_assert.d.ts +8 -0
  312. package/dist/types/functions/helper_financial.d.ts +59 -0
  313. package/dist/types/functions/helper_logical.d.ts +9 -0
  314. package/dist/types/functions/helper_lookup.d.ts +11 -0
  315. package/dist/types/functions/helper_math.d.ts +4 -0
  316. package/dist/types/functions/helper_matrices.d.ts +24 -0
  317. package/dist/types/functions/helper_parser.d.ts +99 -0
  318. package/dist/types/functions/helper_statistical.d.ts +21 -0
  319. package/dist/types/functions/helpers.d.ts +113 -0
  320. package/dist/types/functions/module_array.d.ts +144 -0
  321. package/dist/types/functions/module_database.d.ts +73 -0
  322. package/dist/types/functions/module_date.d.ts +198 -0
  323. package/dist/types/functions/module_engineering.d.ts +7 -0
  324. package/dist/types/functions/module_filter.d.ts +17 -0
  325. package/dist/types/functions/module_financial.d.ts +338 -0
  326. package/dist/types/functions/module_info.d.ts +68 -0
  327. package/dist/types/functions/module_logical.d.ts +59 -0
  328. package/dist/types/functions/module_lookup.d.ts +121 -0
  329. package/dist/types/functions/module_math.d.ts +383 -0
  330. package/dist/types/functions/module_operators.d.ts +96 -0
  331. package/dist/types/functions/module_parser.d.ts +7 -0
  332. package/dist/types/functions/module_statistical.d.ts +252 -0
  333. package/dist/types/functions/module_text.d.ts +176 -0
  334. package/dist/types/functions/module_web.d.ts +7 -0
  335. package/dist/types/helpers/carousel_helpers.d.ts +6 -0
  336. package/dist/types/helpers/cells/cell_evaluation.d.ts +32 -0
  337. package/dist/types/helpers/cells/position_map.d.ts +15 -0
  338. package/dist/types/helpers/chart_date.d.ts +18 -0
  339. package/dist/types/helpers/clipboard/clipboard_helpers.d.ts +44 -0
  340. package/dist/types/helpers/clipboard/navigator_clipboard_wrapper.d.ts +2 -0
  341. package/dist/types/helpers/color.d.ts +142 -0
  342. package/dist/types/helpers/concurrency.d.ts +12 -0
  343. package/dist/types/helpers/coordinates.d.ts +39 -0
  344. package/dist/types/helpers/criterion_helpers.d.ts +5 -0
  345. package/dist/types/helpers/data_normalization.d.ts +19 -0
  346. package/dist/types/helpers/dates.d.ts +94 -0
  347. package/dist/types/helpers/edge_scrolling.d.ts +9 -0
  348. package/dist/types/helpers/event_bus.d.ts +45 -0
  349. package/dist/types/helpers/expand_range.d.ts +8 -0
  350. package/dist/types/helpers/figures/chart.d.ts +30 -0
  351. package/dist/types/helpers/figures/charts/abstract_chart.d.ts +4 -0
  352. package/dist/types/helpers/figures/charts/bar_chart.d.ts +2 -0
  353. package/dist/types/helpers/figures/charts/bubble_chart.d.ts +7 -0
  354. package/dist/types/helpers/figures/charts/calendar_chart.d.ts +2 -0
  355. package/dist/types/helpers/figures/charts/chart_common.d.ts +66 -0
  356. package/dist/types/helpers/figures/charts/chart_data_sources.d.ts +11 -0
  357. package/dist/types/helpers/figures/charts/chart_js_extension.d.ts +9 -0
  358. package/dist/types/helpers/figures/charts/chart_ui_common.d.ts +25 -0
  359. package/dist/types/helpers/figures/charts/combo_chart.d.ts +2 -0
  360. package/dist/types/helpers/figures/charts/funnel_chart.d.ts +2 -0
  361. package/dist/types/helpers/figures/charts/gauge_chart.d.ts +2 -0
  362. package/dist/types/helpers/figures/charts/gauge_chart_rendering.d.ts +45 -0
  363. package/dist/types/helpers/figures/charts/geo_chart.d.ts +2 -0
  364. package/dist/types/helpers/figures/charts/helpers_index.d.ts +9 -0
  365. package/dist/types/helpers/figures/charts/line_chart.d.ts +2 -0
  366. package/dist/types/helpers/figures/charts/pie_chart.d.ts +2 -0
  367. package/dist/types/helpers/figures/charts/pyramid_chart.d.ts +2 -0
  368. package/dist/types/helpers/figures/charts/radar_chart.d.ts +2 -0
  369. package/dist/types/helpers/figures/charts/runtime/chart_custom_tooltip.d.ts +1 -0
  370. package/dist/types/helpers/figures/charts/runtime/chart_data_extractor.d.ts +35 -0
  371. package/dist/types/helpers/figures/charts/runtime/chart_zoom.d.ts +2 -0
  372. package/dist/types/helpers/figures/charts/runtime/chartjs_dataset.d.ts +41 -0
  373. package/dist/types/helpers/figures/charts/runtime/chartjs_layout.d.ts +6 -0
  374. package/dist/types/helpers/figures/charts/runtime/chartjs_legend.d.ts +24 -0
  375. package/dist/types/helpers/figures/charts/runtime/chartjs_scales.d.ts +30 -0
  376. package/dist/types/helpers/figures/charts/runtime/chartjs_show_values.d.ts +13 -0
  377. package/dist/types/helpers/figures/charts/runtime/chartjs_title.d.ts +9 -0
  378. package/dist/types/helpers/figures/charts/runtime/chartjs_tooltip.d.ts +30 -0
  379. package/dist/types/helpers/figures/charts/runtime/helpers_index.d.ts +8 -0
  380. package/dist/types/helpers/figures/charts/scatter_chart.d.ts +2 -0
  381. package/dist/types/helpers/figures/charts/scorecard_chart.d.ts +4 -0
  382. package/dist/types/helpers/figures/charts/scorecard_chart_config_builder.d.ts +45 -0
  383. package/dist/types/helpers/figures/charts/smart_chart_engine.d.ts +7 -0
  384. package/dist/types/helpers/figures/charts/sunburst_chart.d.ts +2 -0
  385. package/dist/types/helpers/figures/charts/tree_map_chart.d.ts +2 -0
  386. package/dist/types/helpers/figures/charts/waterfall_chart.d.ts +2 -0
  387. package/dist/types/helpers/figures/figure/figure.d.ts +4 -0
  388. package/dist/types/helpers/figures/images/image_provider.d.ts +11 -0
  389. package/dist/types/helpers/format/format.d.ts +53 -0
  390. package/dist/types/helpers/format/format_parser.d.ts +39 -0
  391. package/dist/types/helpers/format/format_tokenizer.d.ts +43 -0
  392. package/dist/types/helpers/formulas.d.ts +5 -0
  393. package/dist/types/helpers/internal_viewport.d.ts +86 -0
  394. package/dist/types/helpers/inverse_command.d.ts +2 -0
  395. package/dist/types/helpers/links.d.ts +31 -0
  396. package/dist/types/helpers/locale.d.ts +60 -0
  397. package/dist/types/helpers/matrix.d.ts +3 -0
  398. package/dist/types/helpers/misc.d.ts +230 -0
  399. package/dist/types/helpers/numbers.d.ts +25 -0
  400. package/dist/types/helpers/pivot/pivot_composer_helpers.d.ts +63 -0
  401. package/dist/types/helpers/pivot/pivot_domain_helpers.d.ts +70 -0
  402. package/dist/types/helpers/pivot/pivot_helpers.d.ts +83 -0
  403. package/dist/types/helpers/pivot/pivot_highlight.d.ts +3 -0
  404. package/dist/types/helpers/pivot/pivot_menu_items.d.ts +17 -0
  405. package/dist/types/helpers/pivot/pivot_positional_formula_registry.d.ts +7 -0
  406. package/dist/types/helpers/pivot/pivot_presence_tracker.d.ts +9 -0
  407. package/dist/types/helpers/pivot/pivot_presentation.d.ts +98 -0
  408. package/dist/types/helpers/pivot/pivot_registry.d.ts +32 -0
  409. package/dist/types/helpers/pivot/pivot_runtime_definition.d.ts +20 -0
  410. package/dist/types/helpers/pivot/pivot_side_panel_registry.d.ts +6 -0
  411. package/dist/types/helpers/pivot/pivot_time_adapter.d.ts +10 -0
  412. package/dist/types/helpers/pivot/spreadsheet_pivot/data_entry_spreadsheet_pivot.d.ts +20 -0
  413. package/dist/types/helpers/pivot/spreadsheet_pivot/date_spreadsheet_pivot.d.ts +8 -0
  414. package/dist/types/helpers/pivot/spreadsheet_pivot/runtime_definition_spreadsheet_pivot.d.ts +8 -0
  415. package/dist/types/helpers/pivot/spreadsheet_pivot/spreadsheet_pivot.d.ts +91 -0
  416. package/dist/types/helpers/pivot/table_spreadsheet_pivot.d.ts +111 -0
  417. package/dist/types/helpers/pivot_table_presets.d.ts +3 -0
  418. package/dist/types/helpers/range.d.ts +63 -0
  419. package/dist/types/helpers/range_adapter_functions.d.ts +2 -0
  420. package/dist/types/helpers/recompute_zones.d.ts +133 -0
  421. package/dist/types/helpers/rectangle.d.ts +8 -0
  422. package/dist/types/helpers/reference_type.d.ts +14 -0
  423. package/dist/types/helpers/references.d.ts +27 -0
  424. package/dist/types/helpers/rendering.d.ts +3 -0
  425. package/dist/types/helpers/search.d.ts +19 -0
  426. package/dist/types/helpers/selection_statistic_functions.d.ts +16 -0
  427. package/dist/types/helpers/sheet.d.ts +8 -0
  428. package/dist/types/helpers/sort.d.ts +16 -0
  429. package/dist/types/helpers/sort_interactive.d.ts +4 -0
  430. package/dist/types/helpers/state_manager_helpers.d.ts +6 -0
  431. package/dist/types/helpers/table_helpers.d.ts +9 -0
  432. package/dist/types/helpers/table_presets.d.ts +84 -0
  433. package/dist/types/helpers/text_helper.d.ts +52 -0
  434. package/dist/types/helpers/ui/cut_interactive.d.ts +2 -0
  435. package/dist/types/helpers/ui/freeze_interactive.d.ts +3 -0
  436. package/dist/types/helpers/ui/merge_interactive.d.ts +7 -0
  437. package/dist/types/helpers/ui/named_range_interactive.d.ts +4 -0
  438. package/dist/types/helpers/ui/paste_interactive.d.ts +14 -0
  439. package/dist/types/helpers/ui/sheet_interactive.d.ts +3 -0
  440. package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +6 -0
  441. package/dist/types/helpers/ui/table_interactive.d.ts +9 -0
  442. package/dist/types/helpers/ui/toggle_group_interactive.d.ts +7 -0
  443. package/dist/types/helpers/uuid.d.ts +18 -0
  444. package/dist/types/helpers/viewport_collection.d.ts +196 -0
  445. package/dist/types/helpers/zones.d.ts +206 -0
  446. package/dist/types/history/branch.d.ts +63 -0
  447. package/dist/types/history/factory.d.ts +10 -0
  448. package/dist/types/history/operation.d.ts +18 -0
  449. package/dist/types/history/operation_sequence.d.ts +32 -0
  450. package/dist/types/history/repeat_commands/repeat_commands_generic.d.ts +8 -0
  451. package/dist/types/history/repeat_commands/repeat_commands_specific.d.ts +13 -0
  452. package/dist/types/history/repeat_commands/repeat_revision.d.ts +5 -0
  453. package/dist/types/history/selective_history.d.ts +81 -0
  454. package/dist/types/history/tree.d.ts +176 -0
  455. package/dist/types/index.d.ts +459 -0
  456. package/dist/types/migrations/data.d.ts +31 -0
  457. package/dist/types/migrations/legacy_tools.d.ts +15 -0
  458. package/dist/types/migrations/locale.d.ts +94 -0
  459. package/dist/types/migrations/migration_steps.d.ts +5 -0
  460. package/dist/types/model.d.ts +168 -0
  461. package/dist/types/plugins/base_plugin.d.ts +65 -0
  462. package/dist/types/plugins/core/borders.d.ts +129 -0
  463. package/dist/types/plugins/core/carousel.d.ts +20 -0
  464. package/dist/types/plugins/core/cell.d.ts +99 -0
  465. package/dist/types/plugins/core/chart.d.ts +45 -0
  466. package/dist/types/plugins/core/conditional_format.d.ts +59 -0
  467. package/dist/types/plugins/core/data_validation.d.ts +38 -0
  468. package/dist/types/plugins/core/figures.d.ts +40 -0
  469. package/dist/types/plugins/core/header_grouping.d.ts +84 -0
  470. package/dist/types/plugins/core/header_size.d.ts +24 -0
  471. package/dist/types/plugins/core/header_visibility.d.ts +21 -0
  472. package/dist/types/plugins/core/image.d.ts +30 -0
  473. package/dist/types/plugins/core/merge.d.ts +81 -0
  474. package/dist/types/plugins/core/named_range.d.ts +30 -0
  475. package/dist/types/plugins/core/pivot.d.ts +71 -0
  476. package/dist/types/plugins/core/range.d.ts +71 -0
  477. package/dist/types/plugins/core/settings.d.ts +14 -0
  478. package/dist/types/plugins/core/sheet.d.ts +154 -0
  479. package/dist/types/plugins/core/spreadsheet_pivot.d.ts +6 -0
  480. package/dist/types/plugins/core/squisher.d.ts +82 -0
  481. package/dist/types/plugins/core/table_style.d.ts +24 -0
  482. package/dist/types/plugins/core/tables.d.ts +61 -0
  483. package/dist/types/plugins/core/unsquisher.d.ts +60 -0
  484. package/dist/types/plugins/core_plugin.d.ts +47 -0
  485. package/dist/types/plugins/core_view_plugin.d.ts +29 -0
  486. package/dist/types/plugins/plugin_registries.d.ts +8 -0
  487. package/dist/types/plugins/ui_core_views/cell_evaluation/binary_grid.d.ts +36 -0
  488. package/dist/types/plugins/ui_core_views/cell_evaluation/compilation_parameters.d.ts +17 -0
  489. package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +56 -0
  490. package/dist/types/plugins/ui_core_views/cell_evaluation/evaluator.d.ts +73 -0
  491. package/dist/types/plugins/ui_core_views/cell_evaluation/formula_dependency_graph.d.ts +18 -0
  492. package/dist/types/plugins/ui_core_views/cell_evaluation/interval_tree.d.ts +47 -0
  493. package/dist/types/plugins/ui_core_views/cell_evaluation/position_set.d.ts +28 -0
  494. package/dist/types/plugins/ui_core_views/cell_evaluation/r_tree.d.ts +108 -0
  495. package/dist/types/plugins/ui_core_views/cell_evaluation/range_set.d.ts +23 -0
  496. package/dist/types/plugins/ui_core_views/cell_evaluation/spreading_relation.d.ts +63 -0
  497. package/dist/types/plugins/ui_core_views/cell_evaluation/zone_set.d.ts +16 -0
  498. package/dist/types/plugins/ui_core_views/cell_icon_plugin.d.ts +15 -0
  499. package/dist/types/plugins/ui_core_views/custom_colors.d.ts +29 -0
  500. package/dist/types/plugins/ui_core_views/dynamic_tables.d.ts +38 -0
  501. package/dist/types/plugins/ui_core_views/evaluation_chart.d.ts +26 -0
  502. package/dist/types/plugins/ui_core_views/evaluation_conditional_format.d.ts +36 -0
  503. package/dist/types/plugins/ui_core_views/evaluation_data_validation.d.ts +54 -0
  504. package/dist/types/plugins/ui_core_views/fingerprint.d.ts +13 -0
  505. package/dist/types/plugins/ui_core_views/formula_tracker.d.ts +8 -0
  506. package/dist/types/plugins/ui_core_views/header_sizes_ui.d.ts +36 -0
  507. package/dist/types/plugins/ui_core_views/pivot_ui.d.ts +62 -0
  508. package/dist/types/plugins/ui_feature/autofill.d.ts +63 -0
  509. package/dist/types/plugins/ui_feature/automatic_sum.d.ts +102 -0
  510. package/dist/types/plugins/ui_feature/cell_computed_style.d.ts +16 -0
  511. package/dist/types/plugins/ui_feature/checkbox_toggle.d.ts +9 -0
  512. package/dist/types/plugins/ui_feature/collaborative.d.ts +24 -0
  513. package/dist/types/plugins/ui_feature/color_theme.d.ts +15 -0
  514. package/dist/types/plugins/ui_feature/data_cleanup.d.ts +16 -0
  515. package/dist/types/plugins/ui_feature/datavalidation_insertion.d.ts +5 -0
  516. package/dist/types/plugins/ui_feature/dynamic_translate.d.ts +13 -0
  517. package/dist/types/plugins/ui_feature/format.d.ts +25 -0
  518. package/dist/types/plugins/ui_feature/geo_features.d.ts +23 -0
  519. package/dist/types/plugins/ui_feature/header_visibility_ui.d.ts +22 -0
  520. package/dist/types/plugins/ui_feature/insert_pivot.d.ts +15 -0
  521. package/dist/types/plugins/ui_feature/local_history.d.ts +36 -0
  522. package/dist/types/plugins/ui_feature/lock_sheet.d.ts +7 -0
  523. package/dist/types/plugins/ui_feature/pivot_presence_plugin.d.ts +11 -0
  524. package/dist/types/plugins/ui_feature/sort.d.ts +30 -0
  525. package/dist/types/plugins/ui_feature/split_to_columns.d.ts +21 -0
  526. package/dist/types/plugins/ui_feature/subtotal_evaluation.d.ts +5 -0
  527. package/dist/types/plugins/ui_feature/table_autofill.d.ts +6 -0
  528. package/dist/types/plugins/ui_feature/table_computed_style.d.ts +28 -0
  529. package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +6 -0
  530. package/dist/types/plugins/ui_feature/ui_options.d.ts +8 -0
  531. package/dist/types/plugins/ui_feature/ui_sheet.d.ts +55 -0
  532. package/dist/types/plugins/ui_plugin.d.ts +46 -0
  533. package/dist/types/plugins/ui_stateful/carousel_ui.d.ts +20 -0
  534. package/dist/types/plugins/ui_stateful/clipboard.d.ts +64 -0
  535. package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +29 -0
  536. package/dist/types/plugins/ui_stateful/header_positions.d.ts +28 -0
  537. package/dist/types/plugins/ui_stateful/selection.d.ts +99 -0
  538. package/dist/types/plugins/ui_stateful/sheetview.d.ts +123 -0
  539. package/dist/types/registries/auto_completes/auto_complete_registry.d.ts +60 -0
  540. package/dist/types/registries/auto_completes/autocompelete_registration.d.ts +5 -0
  541. package/dist/types/registries/auto_completes/data_validation_auto_complete.d.ts +1 -0
  542. package/dist/types/registries/auto_completes/function_auto_complete.d.ts +1 -0
  543. package/dist/types/registries/auto_completes/pivot_auto_complete.d.ts +1 -0
  544. package/dist/types/registries/auto_completes/pivot_dimension_auto_complete.d.ts +4 -0
  545. package/dist/types/registries/auto_completes/sheet_name_auto_complete.d.ts +1 -0
  546. package/dist/types/registries/autofill_modifiers.d.ts +7 -0
  547. package/dist/types/registries/autofill_rules.d.ts +22 -0
  548. package/dist/types/registries/cell_animation_registry.d.ts +28 -0
  549. package/dist/types/registries/cell_clickable_registry.d.ts +14 -0
  550. package/dist/types/registries/cell_popovers_registry.d.ts +3 -0
  551. package/dist/types/registries/chart_component_registry.d.ts +3 -0
  552. package/dist/types/registries/chart_data_source_component_registry.d.ts +3 -0
  553. package/dist/types/registries/chart_data_source_registry.d.ts +28 -0
  554. package/dist/types/registries/chart_registry.d.ts +65 -0
  555. package/dist/types/registries/chart_subtype_registry.d.ts +3 -0
  556. package/dist/types/registries/chart_types.d.ts +1 -0
  557. package/dist/types/registries/clipboardHandlersRegistries.d.ts +7 -0
  558. package/dist/types/registries/criterion_component_registry.d.ts +14 -0
  559. package/dist/types/registries/criterion_registry.d.ts +44 -0
  560. package/dist/types/registries/currencies_registry.d.ts +7 -0
  561. package/dist/types/registries/evaluation_registry.d.ts +9 -0
  562. package/dist/types/registries/figures_registry.d.ts +19 -0
  563. package/dist/types/registries/icons_on_cell_registry.d.ts +23 -0
  564. package/dist/types/registries/interactive_icon_on_cell_registry.d.ts +1 -0
  565. package/dist/types/registries/inverse_command_registry.d.ts +5 -0
  566. package/dist/types/registries/menu_items_registry.d.ts +21 -0
  567. package/dist/types/registries/menus/cell_menu_registry.d.ts +2 -0
  568. package/dist/types/registries/menus/col_menu_registry.d.ts +2 -0
  569. package/dist/types/registries/menus/header_group_registry.d.ts +7 -0
  570. package/dist/types/registries/menus/index.d.ts +6 -0
  571. package/dist/types/registries/menus/number_format_menu_registry.d.ts +7 -0
  572. package/dist/types/registries/menus/row_menu_registry.d.ts +2 -0
  573. package/dist/types/registries/menus/sheet_menu_registry.d.ts +5 -0
  574. package/dist/types/registries/menus/table_style_menu_registry.d.ts +3 -0
  575. package/dist/types/registries/menus/topbar_menu_registry.d.ts +2 -0
  576. package/dist/types/registries/ot_registry.d.ts +21 -0
  577. package/dist/types/registries/registry.d.ts +52 -0
  578. package/dist/types/registries/repeat_commands_registry.d.ts +3 -0
  579. package/dist/types/registries/repeat_transform_registry.d.ts +18 -0
  580. package/dist/types/registries/side_panel_registry.d.ts +15 -0
  581. package/dist/types/registries/srt_registry.d.ts +11 -0
  582. package/dist/types/registries/toolbar_menu_registry.d.ts +19 -0
  583. package/dist/types/registries/topbar_component_registry.d.ts +18 -0
  584. package/dist/types/registry.d.ts +10 -0
  585. package/dist/types/selection_stream/event_stream.d.ts +65 -0
  586. package/dist/types/selection_stream/selection_stream_processor.d.ts +138 -0
  587. package/dist/types/state_observer.d.ts +18 -0
  588. package/dist/types/store_engine/dependency_container.d.ts +26 -0
  589. package/dist/types/store_engine/store.d.ts +20 -0
  590. package/dist/types/store_engine/store_hooks.d.ts +18 -0
  591. package/dist/types/stores/DOM_focus_store.d.ts +6 -0
  592. package/dist/types/stores/array_formula_highlight.d.ts +9 -0
  593. package/dist/types/stores/client_focus_store.d.ts +15 -0
  594. package/dist/types/stores/formula_fingerprints_store.d.ts +18 -0
  595. package/dist/types/stores/grid_renderer_store.d.ts +44 -0
  596. package/dist/types/stores/highlight_store.d.ts +17 -0
  597. package/dist/types/stores/model_store.d.ts +2 -0
  598. package/dist/types/stores/notification_store.d.ts +8 -0
  599. package/dist/types/stores/renderer_store.d.ts +23 -0
  600. package/dist/types/stores/screen_width_store.d.ts +6 -0
  601. package/dist/types/stores/spreadsheet_store.d.ts +16 -0
  602. package/dist/types/translation.d.ts +21 -0
  603. package/dist/types/types/autofill.d.ts +71 -0
  604. package/dist/types/types/canvas.d.ts +2 -0
  605. package/dist/types/types/cell_popovers.d.ts +51 -0
  606. package/dist/types/types/cells.d.ts +66 -0
  607. package/dist/types/types/chart/bar_chart.d.ts +17 -0
  608. package/dist/types/types/chart/bubble_chart.d.ts +24 -0
  609. package/dist/types/types/chart/calendar_chart.d.ts +17 -0
  610. package/dist/types/types/chart/chart.d.ts +227 -0
  611. package/dist/types/types/chart/chartjs.d.ts +2 -0
  612. package/dist/types/types/chart/chartjs_tree_map_type.d.ts +131 -0
  613. package/dist/types/types/chart/combo_chart.d.ts +22 -0
  614. package/dist/types/types/chart/common_chart.d.ts +22 -0
  615. package/dist/types/types/chart/funnel_chart.d.ts +24 -0
  616. package/dist/types/types/chart/gauge_chart.d.ts +86 -0
  617. package/dist/types/types/chart/geo_chart.d.ts +26 -0
  618. package/dist/types/types/chart/line_chart.d.ts +21 -0
  619. package/dist/types/types/chart/pie_chart.d.ts +15 -0
  620. package/dist/types/types/chart/pyramid_chart.d.ts +13 -0
  621. package/dist/types/types/chart/radar_chart.d.ts +18 -0
  622. package/dist/types/types/chart/scatter_chart.d.ts +6 -0
  623. package/dist/types/types/chart/scorecard_chart.d.ts +36 -0
  624. package/dist/types/types/chart/sunburst_chart.d.ts +42 -0
  625. package/dist/types/types/chart/tree_map_chart.d.ts +52 -0
  626. package/dist/types/types/chart/waterfall_chart.d.ts +19 -0
  627. package/dist/types/types/chart_subtype_properties.d.ts +26 -0
  628. package/dist/types/types/clipboard/clipboard_interface.d.ts +12 -0
  629. package/dist/types/types/clipboard.d.ts +57 -0
  630. package/dist/types/types/collaborative/revisions.d.ts +8 -0
  631. package/dist/types/types/collaborative/session.d.ts +53 -0
  632. package/dist/types/types/collaborative/transport_service.d.ts +95 -0
  633. package/dist/types/types/commands.d.ts +948 -0
  634. package/dist/types/types/conditional_formatting.d.ts +114 -0
  635. package/dist/types/types/core_getters.d.ts +74 -0
  636. package/dist/types/types/currency.d.ts +7 -0
  637. package/dist/types/types/data_validation.d.ts +138 -0
  638. package/dist/types/types/env.d.ts +10 -0
  639. package/dist/types/types/errors.d.ts +45 -0
  640. package/dist/types/types/event_stream/selection_events.d.ts +11 -0
  641. package/dist/types/types/figure.d.ts +39 -0
  642. package/dist/types/types/files.d.ts +28 -0
  643. package/dist/types/types/find_and_replace.d.ts +8 -0
  644. package/dist/types/types/format.d.ts +8 -0
  645. package/dist/types/types/functions.d.ts +76 -0
  646. package/dist/types/types/generic_criterion.d.ts +16 -0
  647. package/dist/types/types/getters.d.ts +46 -0
  648. package/dist/types/types/history.d.ts +43 -0
  649. package/dist/types/types/image.d.ts +23 -0
  650. package/dist/types/types/locale.d.ts +17 -0
  651. package/dist/types/types/misc.d.ts +344 -0
  652. package/dist/types/types/model.d.ts +47 -0
  653. package/dist/types/types/pivot.d.ts +187 -0
  654. package/dist/types/types/pivot_runtime.d.ts +32 -0
  655. package/dist/types/types/props_of.d.ts +5 -0
  656. package/dist/types/types/range.d.ts +29 -0
  657. package/dist/types/types/rendering.d.ts +132 -0
  658. package/dist/types/types/scroll_direction.d.ts +1 -0
  659. package/dist/types/types/selection_stream_processor.d.ts +35 -0
  660. package/dist/types/types/spreadsheet_env.d.ts +23 -0
  661. package/dist/types/types/store_engine.d.ts +52 -0
  662. package/dist/types/types/stores/notification_store_methods.d.ts +6 -0
  663. package/dist/types/types/table.d.ts +103 -0
  664. package/dist/types/types/validator.d.ts +16 -0
  665. package/dist/types/types/workbook_data.d.ts +147 -0
  666. package/dist/types/types/xlsx.d.ts +518 -0
  667. package/dist/types/xlsx/constants.d.ts +81 -0
  668. package/dist/types/xlsx/conversion/cf_conversion.d.ts +4 -0
  669. package/dist/types/xlsx/conversion/color_conversion.d.ts +31 -0
  670. package/dist/types/xlsx/conversion/conversion_maps.d.ts +180 -0
  671. package/dist/types/xlsx/conversion/data_validation_conversion.d.ts +4 -0
  672. package/dist/types/xlsx/conversion/figure_conversion.d.ts +3 -0
  673. package/dist/types/xlsx/conversion/format_conversion.d.ts +8 -0
  674. package/dist/types/xlsx/conversion/formula_conversion.d.ts +9 -0
  675. package/dist/types/xlsx/conversion/named_ranges_conversion.d.ts +5 -0
  676. package/dist/types/xlsx/conversion/sheet_conversion.d.ts +4 -0
  677. package/dist/types/xlsx/conversion/style_conversion.d.ts +19 -0
  678. package/dist/types/xlsx/conversion/table_conversion.d.ts +8 -0
  679. package/dist/types/xlsx/extraction/base_extractor.d.ts +141 -0
  680. package/dist/types/xlsx/extraction/cf_extractor.d.ts +15 -0
  681. package/dist/types/xlsx/extraction/chart_extractor.d.ts +15 -0
  682. package/dist/types/xlsx/extraction/data_validation_extractor.d.ts +9 -0
  683. package/dist/types/xlsx/extraction/external_book_extractor.d.ts +6 -0
  684. package/dist/types/xlsx/extraction/figure_extractor.d.ts +10 -0
  685. package/dist/types/xlsx/extraction/misc_extractor.d.ts +19 -0
  686. package/dist/types/xlsx/extraction/pivot_extractor.d.ts +10 -0
  687. package/dist/types/xlsx/extraction/sheet_extractor.d.ts +27 -0
  688. package/dist/types/xlsx/extraction/style_extractor.d.ts +19 -0
  689. package/dist/types/xlsx/extraction/table_extractor.d.ts +10 -0
  690. package/dist/types/xlsx/functions/cells.d.ts +11 -0
  691. package/dist/types/xlsx/functions/charts.d.ts +3 -0
  692. package/dist/types/xlsx/functions/conditional_formatting.d.ts +3 -0
  693. package/dist/types/xlsx/functions/data_validation.d.ts +3 -0
  694. package/dist/types/xlsx/functions/drawings.d.ts +5 -0
  695. package/dist/types/xlsx/functions/sheet_protection.d.ts +2 -0
  696. package/dist/types/xlsx/functions/styles.d.ts +10 -0
  697. package/dist/types/xlsx/functions/table.d.ts +2 -0
  698. package/dist/types/xlsx/functions/worksheet.d.ts +11 -0
  699. package/dist/types/xlsx/helpers/colors.d.ts +8 -0
  700. package/dist/types/xlsx/helpers/content_helpers.d.ts +61 -0
  701. package/dist/types/xlsx/helpers/misc.d.ts +27 -0
  702. package/dist/types/xlsx/helpers/xlsx_helper.d.ts +9 -0
  703. package/dist/types/xlsx/helpers/xlsx_parser_error_manager.d.ts +38 -0
  704. package/dist/types/xlsx/helpers/xml_helpers.d.ts +35 -0
  705. package/dist/types/xlsx/xlsx_reader.d.ts +13 -0
  706. package/dist/types/xlsx/xlsx_writer.d.ts +19 -0
  707. package/package.json +15 -14
  708. package/dist/o_spreadsheet.iife.min.js +0 -955
@@ -0,0 +1,965 @@
1
+ (function(e,t){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});var n=Object.create,r=Object.defineProperty,i=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,o=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,c=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),l=(e,t)=>{let n={};for(var i in e)r(n,i,{get:e[i],enumerable:!0});return t||r(n,Symbol.toStringTag,{value:`Module`}),n},u=(e,t,n,o)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var c=a(t),l=0,u=c.length,d;l<u;l++)d=c[l],!s.call(e,d)&&d!==n&&r(e,d,{get:(e=>t[e]).bind(null,d),enumerable:!(o=i(t,d))||o.enumerable});return e},d=(e,t,i)=>(i=e==null?{}:n(o(e)),u(t||!e||!e.__esModule?r(i,`default`,{value:e,enumerable:!0}):i,e));if(globalThis.OffscreenCanvas===void 0){class e{constructor(){return f(this)}save(){}restore(){}measureText(e){return{width:e.length}}}class t{constructor(e,t){return f(this)}getContext(t){return t===`2d`?new e:null}}function f(e){return new Proxy(e,{get:function(e,t,n){if(Reflect.has(e,t))return Reflect.get(e,t,n);throw Error(`OffscreenCanvas mock: "${String(t)}" is not implemented.\nAdd it to MockOffscreenCanvas or MockOffscreenCanvasRenderingContext2D if needed.`)}})}globalThis.OffscreenCanvas=t}if(globalThis.DOMParser===void 0&&(globalThis.DOMParser=class{parseFromString(){return{querySelector(){return null},querySelectorAll(){return[]},body:{}}}}),globalThis.document===void 0){let e=function(){};globalThis.document={implementation:{createDocument(){return{}}},addEventListener:e,removeEventListener:e,querySelectorAll(){return[]},querySelector(){return null},createElement(){return{setAttribute(){},getBoundingClientRect(){return{width:0,height:0}}}},createTextNode(){return{}},cookie:``,head:{querySelectorAll(){return[]}},body:{classList:{add:e,remove:e,contains:e},contains(){return!1},appendChild(){},removeChild(){}}}}function p(e){return e.map(h).sort((e,t)=>e.sequence-t.sequence)}let m=1;function h(e){let t=e.name,n=e.children,r=e.description,i=e.shortcut,a=e.icon,o=e.secondaryIcon,s=e.id||m++,c=e.isEnabled?e.isEnabled:()=>!0;return{id:s.toString(),name:typeof t==`function`?t:()=>t,isVisible:e.isVisible?e.isVisible:()=>!0,isEnabled:c,isActive:e.isActive,execute:e.execute?(t,n)=>{if(c(t))return e.execute(t,n)}:void 0,children:n?e=>n.map(t=>typeof t==`function`?t(e):t).flat().map(h).sort((e,t)=>e.sequence-t.sequence):()=>[],isReadonlyAllowed:e.isReadonlyAllowed||!1,isEnabledOnLockedSheet:e.isEnabledOnLockedSheet||!1,separator:e.separator||!1,icon:typeof a==`function`?a:()=>a||``,iconColor:e.iconColor,secondaryIcon:typeof o==`function`?o:()=>o||``,description:typeof r==`function`?r:()=>r||``,shortcut:i||``,textColor:e.textColor,sequence:e.sequence||0,onStartHover:e.onStartHover,onStopHover:e.onStopHover}}function g(e,t){let n=[];for(let r=0;r<t.length;r++){let i=t[r];i.isVisible(e)&&(!_(i)||v(e,i))&&n.push(i),i.separator&&r!==t.length-1&&n[n.length-1]!==`separator`&&n.push(`separator`)}return n[n.length-1]===`separator`&&n.pop(),n.length===1&&n[0]===`separator`?[]:n}function _(e){return!e.execute}function v(e,t){return t.children(e).some(t=>t.isVisible(e))}function y(e,t){let n=t.children?.(e);return n.length?n.some(t=>y(e,t)):t.isEnabled(e)?e.model.getters.isReadonly()?t.isReadonlyAllowed:!0:!1}let b=.5,ee=`#017E84`,te=`#3266ca`,ne=11982760,re=ee,ie=`#188038`,ae=`light-dark(#9B359B, #B972A6)`,oe=`#00000000`,se=`#111827`,ce=`#ced4da`,le=`#D8DADD`,ue=`#374151`;ue+``;let de=ee,fe={minColor:`#FFF5EB`,midColor:`#FD8D3C`,maxColor:`#7F2704`},pe=`#F28C28`,me=`#000000.#434343.#666666.#999999.#B7B7B7.#CCCCCC.#D9D9D9.#EFEFEF.#F3F3F3.#FFFFFF.#980000.#FF0000.#FF9900.#FFFF00.#00FF00.#00FFFF.#4A86E8.#0000FF.#9900FF.#FF00FF.#E6B8AF.#F4CCCC.#FCE5CD.#FFF2CC.#D9EAD3.#D0E0E3.#C9DAF8.#CFE2F3.#D9D2E9.#EAD1DC.#DD7E6B.#EA9999.#F9CB9C.#FFE599.#B6D7A8.#A2C4C9.#A4C2F4.#9FC5E8.#B4A7D6.#D5A6BD.#CC4125.#E06666.#F6B26B.#FFD966.#93C47D.#76A5AF.#6D9EEB.#6FA8DC.#8E7CC3.#C27BA0.#A61C00.#CC0000.#E69138.#F1C232.#6AA84F.#45818E.#3C78D8.#3D85C6.#674EA7.#A64D79.#85200C.#990000.#B45F06.#BF9000.#38761D.#134F5C.#1155CC.#0B5394.#351C75.#741B47.#5B0F00.#660000.#783F04.#7F6000.#274E13.#0C343D.#1C4587.#073763.#20124D.#4C1130`.split(`.`),he=[50,75,100,125,150,200],ge={align:`left`,verticalAlign:`bottom`,wrapping:`overflow`,bold:!1,italic:!1,strikethrough:!1,underline:!1,fontSize:10,fillColor:``,textColor:``,rotation:0,hideGridLines:!1},_e=.001,ve={...ge,align:`right`},ye=ge.verticalAlign,be=ge.wrapping,xe=ge.fontSize,Se=`'Roboto', arial`,Ce={style:`thin`,color:`#000000`},we=`START_REVISION`,Te=`difference`,Ee=`#43C5B1`,De=`#EA6175`,Oe=.4,ke=[`'`,`*`,`?`,`/`,`\\`,`[`,`]`],Ae=/'|\*|\?|\/|\\|\[|\]/,je=0;function Me(){return je}function Ne(e){je=e}let Pe=[6,7,8,9,10,11,12,14,18,24,36],Fe={hasFilters:!1,totalRow:!1,firstColumn:!0,lastColumn:!1,numberOfHeaders:1,bandedRows:!0,bandedColumns:!1,styleId:`TableStyleMedium5`,automaticAutofill:!1},Ie=`PivotTableStyleMedium12`,Le={symbol:`$`,position:`before`,decimalPlaces:2,code:``,name:`Dollar`},Re={fontSize:16,color:ue},ze=`light-dark(#000000, #ffffff)`,Be=`#3da4ab`,Ve={OPERATOR:Be,NUMBER:`#02c39a`,STRING:`#00a82d`,FUNCTION:ze,DEBUGGER:Be,LEFT_PAREN:ze,RIGHT_PAREN:ze,ARG_SEPARATOR:ze,ORPHAN_RIGHT_PAREN:`#ff0000`},He=[`thin`,`medium`,`thick`,`dashed`,`dotted`];function Ue(e){return Array.isArray(e)&&Array.isArray(e[0])}let We=function(e){return e.UP=`up`,e.DOWN=`down`,e.LEFT=`left`,e.RIGHT=`right`,e}({}),Ge=new RegExp(Ae,`g`);function Ke(e){return`clone`in e&&e.clone instanceof Function}function qe(e){return e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`)}function x(e){switch(typeof e){case`object`:{if(e===null)return e;if(Ke(e))return e.clone();if(!(Je(e)||e instanceof Array))throw Error(`Unsupported type: only objects and arrays are supported`);let t=Array.isArray(e)?Array(e.length):{};if(Array.isArray(e))for(let n=0,r=e.length;n<r;n++)n in e&&(t[n]=x(e[n]));else for(let n in e)t[n]=x(e[n]);return t}case`number`:case`string`:case`boolean`:case`function`:case`undefined`:return e;default:throw Error(`Unsupported type: ${typeof e}`)}}function Je(e){return typeof e==`object`&&!!e&&(e?.constructor===Object||e?.constructor===void 0)}function Ye(e){return Xe(e,`'`)}function Xe(e,t=`"`){return e.startsWith(t)&&(e=e.slice(1)),e.endsWith(t)&&(e=e.slice(0,-1)),e}function Ze(e){return e.match(/\w/g)?.length!==e.length&&(e=`'${e}'`),e}function Qe(e,t=` `){return e.replace(Ge,t)}function S(e,t,n){return e<t?t:e>n?n:e}function C(e,t,n=1){if(t<=e&&n>0)return[];if(n===0)throw Error(`range() step must not be zero`);let r=Math.ceil(Math.abs((t-e)/n)),i=Array(r);for(let t=0;t<r;t++)i[t]=e+t*n;return i}function $e(e){return e.reduce((e,t,n,r)=>(Math.abs(t-r[n-1])===1?e[e.length-1].push(t):e.push([t]),e),[])}function*et(e,t){t.next();for(let n of e){let e=t.next();yield{...n,next:e.done?void 0:e.value}}}function tt(e){let t=e.toUpperCase();return t===`TRUE`||t===`FALSE`}let nt=/^\[(.+)\]\((.+)\)$/,rt=/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,4}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)$/;function it(e){return nt.test(e)}function at(e){return rt.test(e)}function ot(e,t){return`[${e}](${t})`}function st(e){let t=e.match(nt)||[],n=t[1],r=t[2];if(!n||!r)throw Error(`Could not parse markdown link ${e}.`);return{label:n,url:r}}let ct=`o-spreadsheet://`;function lt(e){return e.startsWith(ct)}function ut(e){return`${ct}${e}`}function dt(e){if(e.startsWith(ct))return e.slice(16);throw Error(`${e} is not a valid sheet link`)}function w(e){return e!==void 0}function ft(e){return e===void 0?!0:Object.values(e).every(e=>typeof e==`object`?ft(e):!e)}function pt(e,t,n){let r,i=!1,a=function(){let a=this,o=Array.from(arguments);if(!i&&n)return i=!0,e.apply(a,o);function s(){r=void 0,i=!1,e.apply(a,o)}clearTimeout(r),r=setTimeout(s,t)};return a.isDebouncePending=()=>r!==void 0,a.stopDebounce=()=>{clearTimeout(r)},a}function mt(e){let t=!1;return async(...n)=>{t||(t=!0,await Promise.resolve(),t=!1,e(...n))}}function ht(e,t){let n=0;return function(...r){let i=Date.now();if(i-n>=t)return n=i,e(...r)}}function gt(e){let t=``;for(let n=0,r=e.length;n<r;n++)t+=e[n];return t}function _t(e){let t=!1,n,r=()=>(t||=(n=e instanceof Function?e():e,!0),n);return r.map=e=>_t(()=>e(r())),r}function vt(e,t){let n=e.slice(t).find(e=>e);return n||=e.slice(0,t).reverse().find(e=>e),n||``}function yt(e,t){return e===`after`?t+1:t}function T(...e){if(e.length<=1)return!0;for(let t=1;t<e.length;t++)if(!bt(e[0],e[t]))return!1;return!0}function bt(e,t){if(e===t)return!0;if(e&&!t||t&&!e||typeof e!=typeof t||typeof e!=`object`)return!1;for(let n in t)if(!(n in e)&&t[n]!==void 0)return!1;for(let n in e){if(typeof e[n]!=typeof t[n])return!1;if(typeof e[n]==`object`){if(!bt(e[n],t[n]))return!1}else if(e[n]!==t[n])return!1}return!0}function xt(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!T(e[n],t[n]))return!1;return!0}function St(e,t){if(e.length<t.length)return!1;let n=new Set(e);return t.every(e=>n.has(e))}function Ct(e){if(!e)return e;let t={...e};return Object.keys(t).forEach(e=>!t[e]&&delete t[e]),t}let wt=[` `,`\f`,`\v`,`\xA0`,` `,` `,` `,`\u2028`,`\u2029`,` `,` `,` `,``],Tt=new RegExp(wt.join(`|`),`g`),Et=/(\r\n|\r)/g,Dt=wt.concat([` `]);function Ot(e){return e?e.replace(Et,`
2
+ `):``}function kt(e){let t=Array.from(e).sort((e,t)=>e-t);for(let e=1;e<t.length;e++)if(t[e]-t[e-1]!==1)return!1;return!0}function At(e){let t=new Map,n=e.name?e.name+` (memoized)`:`memoized`;return{[n](...n){return t.has(n[0])||t.set(n[0],e(...n)),t.get(n[0])}}[n]}function jt(e,t){let n=new Set(t),r=[];for(let t=0;t<e.length;t++)n.has(t)||r.push(e[t]);return r}function Mt(e,t,n){return e.slice(0,n).concat(t).concat(e.slice(n))}function Nt(e,t,n){let r=[...e];return r[n]=t,r}function Pt(e){return e.split(`
3
+ `).map(e=>e.replace(/\s+/g,` `).trim()).join(`
4
+ `)}function Ft(e,t,n){return t>n?Ft(e,n,t):e>=t&&e<=n}function It(e,t){let n=qe(e),r=t.matchCase?``:`i`;return t.exactMatch&&(n=`^${n}$`),RegExp(n,r)}function Lt(e){let t=e.length;if(t<1e5)return Math.max(...e);let n=-1/0;for(;t--;)n=e[t]>n?e[t]:n;return n}function Rt(e){let t=e.length;if(t<1e5)return Math.min(...e);let n=1/0;for(;t--;)n=e[t]<n?e[t]:n;return n}var zt=class{text;currentIndex=0;current;constructor(e){this.text=e,this.current=e[0]}shift(){let e=this.current;return this.current=this.text[++this.currentIndex],e}advanceBy(e){this.currentIndex+=e,this.current=this.text[this.currentIndex]}isOver(){return this.currentIndex>=this.text.length}remaining(){return this.text.substring(this.currentIndex)}currentStartsWith(e){if(this.current!==e[0])return!1;for(let t=1;t<e.length;t++)if(this.text[this.currentIndex+t]!==e[t])return!1;return!0}};function Bt(e,t=e=>e){let n=new Set;return e.filter(e=>{let r=t(e);return n.has(r)?!1:(n.add(r),!0)})}function Vt(e){let t={};for(let n in e)for(let r in e[n])t[r]||(t[r]={}),t[r][n]=e[n][r];return t}function Ht(e,t,n={}){let r=n.compute??((e,t)=>`${e} (${t})`),i=n.computeFirstOne??!1,a=n.start??1,o=i?r(e,a):e;for(;t.includes(o);)o=r(e,a++);return o}function Ut(e){return e.startsWith(`=`)||e.startsWith(`+`)}function Wt(e){return{bold:e.bold,italic:e.italic,fontSize:e.fontSize,textColor:e.color,align:e.align}}function Gt(e,t){return e.isFormula&&e.compiledFormula.usesSymbol(t)}function Kt(e,t,n){let{sheetId:r,col:i,row:a}=t;if(!Ut(n))return;let o=e.evaluateFormula(r,n,{sheetId:r,col:i,row:a});if(!Ue(o))return;let s=e.getNumberRows(r),c=e.getNumberCols(r);return{missingRows:a+o[0].length-s,missingCols:i+o.length-c}}function qt(e){if(e<0)throw Error(`number must be positive. Got ${e}`);return e<26?String.fromCharCode(65+e):qt(Math.floor(e/26)-1)+qt(e%26)}function Jt(e){let t=0,n=e.length;for(let r=0;r<n;r++){let n=Yt(e[r]);t=t*26+n}return t-1}function Yt(e){let t=e.charCodeAt(0);return t>=65&&t<=90?t-64:t-96}function Xt(e){return e>=`A`&&e<=`Z`||e>=`a`&&e<=`z`}function Zt(e){return e>=`0`&&e<=`9`}let Qt=Jt(`ZZZ`);function $t(e){for(;e.current===` `;)e.advanceBy(1)}function en(e){if(e.current===`$`&&e.advanceBy(1),!e.current||!Xt(e.current))return-1;let t=0;for(;e.current&&Xt(e.current);)t=t*26+Yt(e.shift());return t}function tn(e){if(e.current===`$`&&e.advanceBy(1),!e.current||!Zt(e.current))return-1;let t=0;for(;e.current&&Zt(e.current);)t=t*10+Number(e.shift());return t}function nn(e){let t=new zt(e);$t(t);let n=en(t);if(n===-1||!t.current)throw Error(`Invalid cell description: ${e}`);let r=tn(t);$t(t);let i=n-1,a=r-1;if(!t.isOver()||i>Qt||a>9999998)throw Error(`Invalid cell description: ${e}`);return{col:i,row:a}}function E(e,t,n={colFixed:!1,rowFixed:!1}){return(n.colFixed?`$`:``)+qt(e)+(n.rowFixed?`$`:``)+String(t+1)}function rn(e,t=[]){if(e.length<=1&&t.length===0)return e;let n=[0],r=new Map([[0,[]]]);return an(n,r,e,!1),an(n,r,t,!0),un(n,r)}function an(e,t,n,r=!1){for(let i of n){let n=i.left,a=i.right===void 0?void 0:i.right+1,o=sn(e,t,n,!0,0),s=sn(e,t,a,!1,o);for(let n=o;n<=s;n++)cn(t.get(e[n]),i,r);ln(e,t,o,s)}}function on(e,t,n){let r=n.left,i=n.right,a=dn(e,r,0),o=i===void 0?e.length-1:dn(e,i,a),s=n.top,c=n.bottom===void 0?void 0:n.bottom+1;for(let n=a;n<=o;n++){let r=t.get(e[n]),i=dn(r,s,0);if(i===-1||i%2!=0)return!1;let a=c===void 0?r.length:fn(r,c,0);if(i+1!==a)return!1}return!0}function sn(e,t,n,r,i){if(n===void 0)return e.length-1;let a=dn(e,n,i);return n===e[a]?r?a:a-1:(e.splice(a+1,0,n),t.set(n,[...t.get(e[a])]),r?a+1:a)}function cn(e,t,n=!1){let r=t.top,i=t.bottom===void 0?void 0:t.bottom+1,a=[],o=dn(e,r,0,!1);if((o%2!=0&&!n||o%2==0&&n)&&a.push(r),i===void 0){e.splice(o+1),e.push(...a);return}let s=fn(e,i,0,!1);(s%2==0&&!n||s%2!=0&&n)&&a.push(i);let c=s-o-1,l=a.length,u=o+1;u===e.length-1&&c===1&&l===1?e[u]=a[0]??a[1]:e.splice(u,c,...a)}function ln(e,t,n,r){let i=n-1==-1?0:n-1,a=r===e.length-1?r:r+1;for(let n=a;n>i;n--)xt(t.get(e[n]),t.get(e[n-1]))&&(t.delete(e[n]),e.splice(n,1))}function un(e,t){let n=[],r=[];for(let i=0;i<e.length;i++){let a=e[i],o=t.get(a);if(!o||o.length===0){n.push(...r),r=[];continue}let s=e[i+1];s!==void 0&&s--;let c=[];for(let e=0;e<o.length;e+=2){let t=o[e],n=o[e+1];n!==void 0&&n--;let i={top:t,left:a,bottom:n,right:s};(n===void 0&&t!==0||s===void 0&&a!==0)&&(i.hasHeader=!0);let l=!1;for(let e=r.length-1;e>=0;e--){let t=r[e];if(t.top===i.top&&t.bottom===i.bottom){t.right=i.right,r.splice(e,1),c.push(t),l=!0;break}}l||c.push(i)}n.push(...r),r=c}return n.push(...r),n}function dn(e,t,n=0,r=!0){let i=e.length-1,a=-1;for(;n<=i;){let o=n+(i-n>>1);if(e[o]===t&&r)return o;e[o]<t?(a=o,n=o+1):i=o-1}return a}function fn(e,t,n=0,r=!0){let i=e.length-1,a=e.length;for(;n<=i;){let o=n+(i-n>>1);if(e[o]===t&&r)return o;e[o]>t?(a=o,i=o-1):n=o+1}return a}function pn(e){let t=new zt(e);$t(t);let n=e.indexOf(`!`);n!==-1&&t.advanceBy(n+1);let r=en(t),i=tn(t),a,o,s,c,l=!1,u=!1,d=!1;if(i===-1?(s=c=r-1,a=o=0,l=!0):r===-1?(a=o=i-1,s=c=0,u=!0):(s=c=r-1,a=o=i-1,d=!0),$t(t),t.current===`:`){t.advanceBy(1),$t(t);let e=en(t),n=tn(t);n===-1?(c=e-1,l=!0):e===-1?(o=n-1,u=!0):(c=e-1,o=n-1,a=l?o:a,s=u?c:s,d=!0)}let f={top:a,left:s,bottom:l?void 0:o,right:u?void 0:c};return d&&=u||l,d&&(f.hasHeader=d),f}function mn(e){let t=Rn(pn(e)),n=t.bottom,r=t.right;if(n!==void 0&&n>9999998||r!==void 0&&r>Qt)throw Error(`Range string out of bounds: ${e}`);if(n===void 0&&r===void 0)throw Error(`Wrong zone xc. The zone cannot be at the same time a full column and a full row`);return t}function hn(e){let t=mn(e);if(t.bottom===void 0||t.right===void 0)throw Error(`This does not support unbounded ranges`);return t}function gn(e){return vn(mn(e))}function _n(e){try{return gn(e)}catch{return!1}}function vn(e){let{bottom:t,top:n,left:r,right:i}=e;return t!==void 0&&isNaN(t)||isNaN(n)||isNaN(r)||i!==void 0&&isNaN(i)?!1:yn(e)&&e.top>=0&&e.left>=0}function yn(e){return(e.bottom===void 0||e.bottom>=e.top&&e.bottom>=0)&&(e.right===void 0||e.right>=e.left&&e.right>=0)}function bn(e){let{top:t,bottom:n,left:r,right:i}=e,a=`hasHeader`in e?e.hasHeader:!1,o=t===n&&r===i;if(n===void 0&&i!==void 0)return t===0&&!a?`${qt(r)}:${qt(i)}`:`${E(r,t)}:${qt(i)}`;if(i===void 0&&n!==void 0)return r===0&&!a?`${t+1}:${n+1}`:`${E(r,t)}:${n+1}`;if(n!==void 0&&i!==void 0)return o?E(r,t):`${E(r,t)}:${E(i,n)}`;throw Error(`Bad zone format`)}function xn(e,t,n,r,i){let a=t===`left`?`columns`:`rows`,o=r===`before`?n-1:n,s=e[t===`left`?`right`:`bottom`];return e[t]<=o&&s&&s>o?zn(e,a,`RESIZE`,i):o<e[t]?zn(e,a,`MOVE`,i):{...e}}function Sn(e,t,n,r,i){let a=t===`left`?`columns`:`rows`,o=r===`before`?n-1:n,s=t===`left`?`right`:`bottom`;return e[t]<=o&&e[s]>o?zn(e,a,`RESIZE`,i):o<e[t]?zn(e,a,`MOVE`,i):{...e}}function Cn(e,t,n){let r=t===`left`?`right`:`bottom`,i=e[t],a=e[r];for(let o of n.sort((e,t)=>t-e))e[t]>o&&(i--,a--),e[t]<o&&e[r]>=o&&a--;return{...e,[t]:i,[r]:a}}function wn(e,t,n){let r=t===`left`?`right`:`bottom`,i=e[t],a=e[r],o=e[r];for(let r of n.sort((e,t)=>t-e))e[t]>r&&(i--,a!==void 0&&a--),o!==void 0&&a!==void 0&&e[t]<=r&&o>=r&&a--;if(!(a!==void 0&&i>a))return{...e,[t]:i,[r]:a}}function Tn(...e){return{top:Math.min(...e.map(e=>e.top)),left:Math.min(...e.map(e=>e.left)),bottom:Math.max(...e.map(e=>e.bottom)),right:Math.max(...e.map(e=>e.right))}}function En(...e){return{top:Math.min(...e.map(e=>e.top)),left:Math.min(...e.map(e=>e.left)),bottom:e.some(e=>e.bottom===void 0)?void 0:Math.max(...e.map(e=>e.bottom)),right:e.some(e=>e.right===void 0)?void 0:Math.max(...e.map(e=>e.right))}}function Dn(e,t){if(kn(e,t))return{top:Math.max(e.top,t.top),left:Math.max(e.left,t.left),bottom:Math.min(e.bottom??9999998,t.bottom),right:Math.min(e.right??Qt,t.right)}}function On(e,t){return e.left===t.left&&e.right===t.right&&e.top===t.top&&e.bottom===t.bottom}function kn(e,t){return!(e.bottom===void 0||e.bottom<t.top||t.bottom<e.top||e.right===void 0||e.right<t.left||t.right<e.left)}function An(e){for(let t=0;t<e.length-1;t++)for(let n=t+1;n<e.length;n++)if(kn(e[t],e[n]))return!0;return!1}function jn(e,t,n){let{left:r,right:i,top:a,bottom:o}=n;return e>=r&&e<=i&&t>=a&&t<=o}function Mn(e,t){return e.left>=t.left&&e.right<=t.right&&e.top>=t.top&&e.bottom<=t.bottom}function Nn(e){return{numberOfRows:e.bottom-e.top+1,numberOfCols:e.right-e.left+1}}function Pn(e){let{numberOfCols:t,numberOfRows:n}=Nn(e);return t===1||n===1}function Fn(e){let{top:t,left:n,bottom:r,right:i}=e;if(Kn(e)===1)return[];let a={top:t+1,bottom:r,left:n,right:n};if(i===n)return[a];let o={top:t,bottom:r,left:n+1,right:i};return t===r?[o]:[a,o]}function In(e){let t=[],{left:n,right:r,top:i,bottom:a}=Rn(e);for(let e of C(n,r+1))for(let n of C(i,a+1))t.push({col:e,row:n});return t}function Ln(e,t){let n=[],{left:r,right:i,top:a,bottom:o}=Rn(t);for(let t of C(r,i+1))for(let r of C(a,o+1))n.push({sheetId:e,col:t,row:r});return n}function Rn(e){return e.right!==void 0&&e.left>e.right&&(e={...e,left:e.right,right:e.left}),e.bottom!==void 0&&e.top>e.bottom&&(e={...e,top:e.bottom,bottom:e.top}),e}function zn(e,t,n,r){let i=t===`both`?r[0]:t===`columns`?r:0,a=t===`both`?r[1]:t===`rows`?r:0,o=`hasHeader`in e?e.hasHeader:!1,s;s=Gn(e)&&!o?t!==`rows`:Wn(e)&&!o?t!==`columns`:!0;let c={...e};return s&&n===`MOVE`&&(c.left+=i,c.top+=a),c.right!==void 0&&(c.right+=i),c.bottom!==void 0&&(c.bottom+=a),c}function Bn(e){return e.reverse().filter((e,t,n)=>t===n.findIndex(t=>t.top===e.top&&t.bottom===e.bottom&&t.left===e.left&&t.right===e.right)).reverse()}function Vn(e){return e.reduce((e,t)=>{let n=e.length;for(let r=0;r<n;r++)if(kn(e[r],t))return e[r]=Tn(e[r],t),e;return e[n]=t,e},[])}function Hn(e,t){let n,r,{left:i,right:a,top:o,bottom:s}=e,{left:c,right:l,top:u,bottom:d}=t;return n=c===i?l===a?c:l:c,r=u===o?d===s?u:d:u,{col:n,row:r}}function D(e){return{left:e.col,right:e.col,top:e.row,bottom:e.row}}function Un(e){return{...e,right:e.left,bottom:e.top}}function Wn(e){return e.right===void 0}function Gn(e){return e.bottom===void 0}function Kn(e){return(e.bottom-e.top+1)*(e.right-e.left+1)}function qn(e,t,n){return e.left<t&&t<=e.right||e.top<n&&n<=e.bottom}function Jn(e,t,n){return e.some(e=>qn(e,t,n))}function Yn(e,t){let{left:n,top:r,bottom:i,right:a}=e;if(a!==void 0&&i!==void 0)return e;if(i===void 0&&a!==void 0)return{right:a,top:r,left:n,bottom:t.numberOfRows-1};if(a===void 0&&i!==void 0)return{bottom:i,left:n,top:r,right:t.numberOfCols-1};throw Error(`Bad zone format`)}function Xn(e){return e.length<2?!0:rn(e).length===1}function Zn(e){let t=new Set;for(let n of rn(e))for(let e of C(n.left,n.right+1))t.add(e);return t}function Qn(e){let t=new Map;for(let n of e)for(let e=n.left;e<=n.right;e++){let r=t.get(e);r?(r.top=Math.min(r.top,n.top),r.bottom=Math.max(r.bottom,n.bottom)):t.set(e,{left:e,right:e,top:n.top,bottom:n.bottom})}return Array.from(t.values())}function $n(e){let t=new Set;for(let n of rn(e))for(let e of C(n.top,n.bottom+1))t.add(e);return t}function er(e,t){return e.right+1===t.left||e.left===t.right+1?e.top<=t.bottom&&e.top>=t.top||t.top<=e.bottom&&t.top>=e.top:e.bottom+1===t.top||e.top===t.bottom+1?e.left<=t.right&&e.left>=t.left||t.left<=e.right&&t.left>=e.left:!1}function tr(e){let t=[...e],n=!0;for(;n;){n=!1;for(let e=0;e<t.length;e++){let r=t[e],i=t.findIndex((t,n)=>e!==n&&(er(t,r)||kn(t,r)));if(i!==-1){t[e]=Tn(t[i],r),t.splice(i,1),n=!0;break}}}return t}function nr(e,t){let n=[];return e.bottom<t.bottom&&n.push({...t,top:e.bottom+1}),e.right<t.right&&n.push({...t,left:e.right+1,top:e.top,bottom:e.bottom}),e.left>t.left&&n.push({...t,right:e.left-1,top:e.top,bottom:e.bottom}),e.top>t.top&&n.push({...t,bottom:e.top-1}),n}function rr(e,t){return t.type===`REMOVE_COLUMNS_ROWS`?wn(e,t.dimension===`COL`?`left`:`top`,t.elements):t.type===`ADD_COLUMNS_ROWS`?xn(e,t.dimension===`COL`?`left`:`top`,t.base,t.position,t.quantity):e}function ir(e,t){let n=t.type===`DELETE_SHEET`&&t.sheetId;if(`sheetId`in t&&e._sheetId!==t.sheetId)return e;{let r=rr(e._zone,t);if(r&&n!==e._sheetId)return{...e,_zone:r}}}function ar(e){class t{constructor(t){throw Error(`This is a abstract store for ${e}, it cannot be instantiated.
5
+ Did you forget to inject your store instance?
6
+
7
+ const stores = useStoreProvider();
8
+ stores.inject(MyMetaStore, storeInstance);
9
+ `)}}return t}var or=class{disposeCallbacks=[];constructor(e){this.get=e}onDispose(e){this.disposeCallbacks.push(e)}dispose(){this.disposeCallbacks.forEach(e=>e())}};let sr=ar(`Model`),cr={Background:0,Highlights:1,Clipboard:2,Chart:4,Autofill:5,Selection:6,Headers:100},lr=At(()=>Object.keys(cr).sort((e,t)=>cr[e]-cr[t]));function ur(e,t){if(cr[e])throw Error(`Layer ${e} already exists`);cr[e]=t}var dr=class{mutators=[`register`,`unRegister`,`draw`,`startAnimation`,`stopAnimation`];renderers={};model;context=void 0;animationFrameId=null;registeredAnimations=new Set;constructor(e,t=lr()){this.layers=t,this.model=e(sr)}register(e){if(e.renderingLayers.length)for(let t of e.renderingLayers)this.renderers[t]||(this.renderers[t]=[]),this.renderers[t].push(e)}unRegister(e){for(let t of Object.keys(this.renderers))this.renderers[t]=this.renderers[t].filter(t=>t!==e)}drawLayer(e,t,n){let r=this.renderers[t];if(r)for(let i of r)e.ctx.save(),i.drawLayer(e,t,n),e.ctx.restore();return`noStateChange`}draw(e,t){if(e||=this.context,!e)throw Error(`Rendering context is not defined`);this.context=e;for(let n of this.layers)this.model.drawLayer(e,n),this.drawLayer(e,n,t);return`noStateChange`}startAnimation(e){if(this.registeredAnimations.add(e),!this.animationFrameId){let e=t=>{this.animationFrameId=requestAnimationFrame(e),this.draw(void 0,t)};this.animationFrameId=requestAnimationFrame(e)}return`noStateChange`}stopAnimation(e){return this.registeredAnimations.delete(e),this.registeredAnimations.size===0&&this.animationFrameId!==null&&(cancelAnimationFrame(this.animationFrameId),this.animationFrameId=null),`noStateChange`}dispose(){this.animationFrameId&&=(cancelAnimationFrame(this.animationFrameId),null)}},fr=class extends or{model=this.get(sr);getters=this.model.getters;renderer=this.get(dr);constructor(e){super(e),this.model.on(`command-dispatched`,this,this.handle),this.model.on(`command-finalized`,this,this.finalize),this.renderer.register(this),this.onDispose(()=>{this.model.off(`command-dispatched`,this),this.model.off(`command-finalized`,this),this.renderer.unRegister(this)})}get renderingLayers(){return[]}handle(e){}finalize(){}drawLayer(e,t,n){}};let pr={id:`void-composer`,get editionMode(){return`inactive`},startEdition:()=>{throw Error(`No composer is registered`)},stopEdition:()=>{throw Error(`No composer is registered`)},setCurrentContent:()=>{throw Error(`No composer is registered`)}};var mr=class extends fr{mutators=[`focusComposer`,`focusActiveComposer`];activeComposer=pr;_focusMode=`inactive`;get focusMode(){return this.activeComposer.editionMode===`inactive`?`inactive`:this._focusMode}focusComposer(e,t){if(this.activeComposer=e,this.getters.isReadonly())return`noStateChange`;this._focusMode=t.focusMode||`contentFocus`,this._focusMode!==`inactive`&&this.setComposerContent(t)}focusActiveComposer(e){if(this.getters.isReadonly())return`noStateChange`;if(!this.activeComposer)throw Error(`No composer is registered`);this._focusMode=e.focusMode||`contentFocus`,this._focusMode!==`inactive`&&this.setComposerContent(e)}setComposerContent({content:e,selection:t}){this.activeComposer.editionMode===`inactive`?this.activeComposer.startEdition(e,t):e&&this.activeComposer.setCurrentContent(e,t)}},hr=class{content={};add(e,t){if(e in this.content)throw Error(`${e} is already present in this registry!`);return this.replace(e,t)}replace(e,t){return this.content[e]=t,this}get(e){let t=this.content[e];if(!t&&!(e in this.content))throw Error(`Cannot find ${e} in this registry!`);return t}contains(e){return e in this.content}getAll(){return Object.values(this.content)}getKeys(){return Object.keys(this.content)}remove(e){delete this.content[e]}};let gr=new hr;function _r(){return globalThis.Chart?!!globalThis.Chart.registry.plugins.get(`chartShowValuesPlugin`):!0}function vr(){if(!(!globalThis.Chart||_r()))for(let e of gr.getAll())e.register(globalThis.Chart)}function yr(){if(globalThis.Chart)for(let e of gr.getAll())e.unregister(globalThis.Chart)}var br=class{subscriptions={};on(e,t,n){if(!n)throw Error(`Missing callback`);this.subscriptions[e]||(this.subscriptions[e]=[]),this.subscriptions[e].push({owner:t,callback:n})}trigger(e,t){let n=this.subscriptions[e]||[];for(let e=0,r=n.length;e<r;e++){let r=n[e];r.callback.call(r.owner,t)}}off(e,t){let n=this.subscriptions[e];n&&(this.subscriptions[e]=n.filter(e=>e.owner!==t))}clear(){this.subscriptions={}}},xr=class extends br{dependencies=new Map;factory=new Sr(this.get.bind(this));inject(e,t){if(this.dependencies.has(e)&&this.dependencies.get(e)!==t)throw Error(`Store ${e.name} already has an instance`);this.dependencies.set(e,t)}get(e){return this.dependencies.has(e)||this.dependencies.set(e,this.instantiate(e)),this.dependencies.get(e)}instantiate(e,...t){return this.factory.build(e,...t)}resetStores(){this.dependencies.clear()}dispose(){for(let e of this.dependencies.values())`dispose`in e&&typeof e.dispose==`function`&&e.dispose()}},Sr=class{pendingBuilds=new Set;constructor(e){this.get=e}build(e,...t){if(this.pendingBuilds.has(e))throw Error(`Circular dependency detected: ${[...this.pendingBuilds,e].map(e=>e.name).join(` -> `)}`);this.pendingBuilds.add(e);let n=new e(this.get,...t);return this.pendingBuilds.delete(e),n}};function Cr(){let e=(0,t.useEnv)();if(e.__spreadsheet_stores__ instanceof xr)return e.__spreadsheet_stores__;let n=new xr;return(0,t.useSubEnv)({__spreadsheet_stores__:n,getStore:e=>Er(n.get(e),()=>n.trigger(`store-updated`))}),(0,t.onWillUnmount)(()=>n.dispose()),n}function O(e){let n=Dr((0,t.useEnv)());return Tr(n,n.get(e))}function wr(e,...n){let r=Dr((0,t.useEnv)()),i=r.instantiate(e,...n);return(0,t.onWillUnmount)(()=>i.dispose()),Tr(r,i)}function Tr(e,n){let r=(0,t.useComponent)();return Er(n,()=>{(0,t.status)(r)===`mounted`&&e.trigger(`store-updated`)})}function Er(e,t){return new Proxy(e,{get(n,r,i){let a=n,o=Reflect.get(n,r,a);return e.mutators?.includes(r)?new Proxy(o,{apply(e,n,r){Reflect.apply(e,a,r)!==`noStateChange`&&t()}}):o}})}function Dr(e){let t=e.__spreadsheet_stores__;if(!(t instanceof xr))throw Error(`No store provider found. Did you forget to call useStoreProvider()?`);return t}var Or=class extends fr{mutators=[`disableAnimationForChart`,`enableAnimationForChart`];animationPlayed={};disableAnimationForChart(e,t){return this.animationPlayed[e]=t,`noStateChange`}enableAnimationForChart(e){return this.animationPlayed[e]=void 0,`noStateChange`}};let kr={id:`background`,beforeDraw(e,t,n){let{ctx:r}=e;r.save(),r.globalCompositeOperation=`destination-over`,r.fillStyle=n.color||`#FFFFFF`,r.fillRect(0,0,e.width,e.height),r.restore()}};function Ar(){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);return class extends globalThis.Chart.BarController{static id=`calendar`;static defaults={...globalThis.Chart?.BarController.defaults,dataElementType:`bar`,animations:{numbers:{type:`number`,properties:[]}}};updateElements(e,t,n,r){super.updateElements(e,t,n,r);let i=this.chart.config.options?.plugins?.background?.color;for(let a=t;a<t+n;a++)r===`reset`&&this.updateElement(e[a],a,{options:{backgroundColor:i}},r)}}}var k=class e{jsDate;constructor(e,t,n,r=0,i=0,a=0){this.jsDate=new Date(Date.UTC(e,t,n,r,i,a,0))}static fromTimestamp(t){let n=new Date(t);return new e(n.getUTCFullYear(),n.getUTCMonth(),n.getUTCDate(),n.getUTCHours(),n.getUTCMinutes(),n.getUTCSeconds())}static now(){let t=new Date;return new e(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds())}toString(){return this.jsDate.toString()}toLocaleDateString(){return this.jsDate.toLocaleDateString()}getTime(){return this.jsDate.getTime()}getFullYear(){return this.jsDate.getUTCFullYear()}getMonth(){return this.jsDate.getUTCMonth()}getQuarter(){return Math.floor(this.getMonth()/3)+1}getDate(){return this.jsDate.getUTCDate()}getDay(){return this.jsDate.getUTCDay()}getHours(){return this.jsDate.getUTCHours()}getMinutes(){return this.jsDate.getUTCMinutes()}getSeconds(){return this.jsDate.getUTCSeconds()}getIsoWeek(){let e=new Date(this.jsDate.getTime()),t=e.getUTCDay()||7;e.setUTCDate(e.getUTCDate()+4-t);let n=new Date(Date.UTC(e.getUTCFullYear(),0,1));return Math.ceil(((e.getTime()-n.getTime())/864e5+1)/7)}setFullYear(e){return this.jsDate.setUTCFullYear(e)}setMonth(e){return this.jsDate.setUTCMonth(e)}setDate(e){return this.jsDate.setUTCDate(e)}setHours(e){return this.jsDate.setUTCHours(e)}setMinutes(e){return this.jsDate.setUTCMinutes(e)}setSeconds(e){return this.jsDate.setUTCSeconds(e)}};let jr=new k(1899,11,30),Mr=1440*60*1e3,Nr=2e3,Pr=k.now().getFullYear(),Fr=k.now().getMonth(),Ir=k.fromTimestamp(0).getTime()-jr.getTime(),Lr=/^\d{1,2}(\/|-|\s)\d{1,2}((\/|-|\s)\d{1,4})?$/,Rr=/^\d{3,4}(\/|-|\s)\d{1,2}(\/|-|\s)\d{1,2}$/,zr=Dt.join(``),Br=RegExp(`\/|-|${Dt.join(`|`)}`),Vr=RegExp(`^(\\d{1,4})[\/${zr}\-](\\d{1,4})([\/${zr}\-](\\d{1,4}))?$`),Hr=/((\d+(:\d+)?(:\d+)?\s*(AM|PM))|(\d+:\d+(:\d+)?))$/;function Ur(e,t){switch(typeof e){case`number`:return e;case`string`:return Wr(e,t)?Kr(e,t)?.value:!e||isNaN(Number(e))?void 0:Number(e);default:return}}function Wr(e,t){return Kr(e,t)!==null}let Gr=new Map;function Kr(e,t){return Gr.has(t)||Gr.set(t,new Map),Gr.get(t).has(e)||Gr.get(t).set(e,qr(e,t)),Gr.get(t).get(e)}function qr(e,t){e=e.trim();let n=null,r=e.match(Hr);if(r){if(n=ti(r[0]),n===null)return null;e=e.replace(r[0],``).trim()}let i=null,a=Jr(e,t);if(a){let t=a.dateString.match(Br)[0];if(i=Xr(a,t),i===null)return null;e=e.replace(a.dateString,``).trim()}return e!==``||!(i||n)?null:i&&i.jsDate&&n&&n.jsDate?{value:i.value+n.value,format:i.format+` `+(n.format===`hhhh:mm:ss`?`hh:mm:ss`:n.format),jsDate:new k(i.jsDate.getFullYear()+n.jsDate.getFullYear()-1899,i.jsDate.getMonth()+n.jsDate.getMonth()-11,i.jsDate.getDate()+n.jsDate.getDate()-30,i.jsDate.getHours()+n.jsDate.getHours(),i.jsDate.getMinutes()+n.jsDate.getMinutes(),i.jsDate.getSeconds()+n.jsDate.getSeconds())}:i||n}function Jr(e,t){let n=e.match(Vr);if(!n)return null;let[,r,i,,a]=n;if(r.length>2&&a&&a.length>2)return null;if(r.length>2)return{year:r,month:i,day:a,dateString:e,type:`ymd`};let o=Yr(t);return a?a.length>2?o===`mdy`?{month:r,day:i,year:a,dateString:e,type:`mdy`}:{day:r,month:i,year:a,dateString:e,type:`dmy`}:o===`mdy`?{month:r,day:i,year:a,dateString:e,type:`mdy`}:o===`ymd`?{year:r,month:i,day:a,dateString:e,type:`ymd`}:o===`dmy`?{day:r,month:i,year:a,dateString:e,type:`dmy`}:null:i.length>2?{month:r,year:i,day:void 0,dateString:e,type:o}:o===`dmy`?{day:r,month:i,year:a,dateString:e,type:`dmy`}:{month:r,day:i,year:a,dateString:e,type:`mdy`}}function Yr(e){switch(e.dateFormat[0]){case`d`:return`dmy`;case`m`:return`mdy`;case`y`:return`ymd`}throw Error(`Invalid date format in locale`)}function Xr(e,t){let{year:n,month:r,day:i}=e,a=$r(r),o=ei(i),s=Qr(n);if(s===null||a===null||o===null)return null;let c=r?.length===2&&a+1<10||i?.length===2&&o<10,l=n?.length!==2,u=new k(s,a,o);if(u.getMonth()!==a||u.getDate()!==o)return null;let d=u.getTime()-jr.getTime(),f=Zr(e,t,c,l);return{value:Math.round(d/Mr),format:f,jsDate:u}}function Zr(e,t,n,r){let i=e.year?r?`yyyy`:`yy`:void 0,a=e.month?n?`mm`:`m`:void 0,o=e.day?n?`dd`:`d`:void 0;switch(e.type){case`mdy`:return[a,o,i].filter(w).join(t);case`ymd`:return[i,a,o].filter(w).join(t);case`dmy`:return[o,a,i].filter(w).join(t)}}function Qr(e){if(!e)return Pr;let t=Number(e);switch(e.length){case 1:return Nr+t;case 2:return Nr+(Nr+t>Pr+10?-100:0)+t;case 3:case 4:return t}return null}function $r(e){if(!e)return Fr;let t=Number(e);return t>=1&&t<=12?t-1:null}function ei(e){if(!e)return 1;let t=Number(e);return t>=0&&t<=31?t:null}function ti(e){if(e=e.trim(),Hr.test(e)){let t=/AM/i.test(e),n=/PM/i.test(e),r=(t||n?e.substring(0,e.length-2).trim():e).split(/:/),i=r.length>=2,a=r.length===3,o=Number(r[0]),s=i?Number(r[1]):0,c=a?Number(r[2]):0,l=a?`hh:mm:ss`:`hh:mm`;if(t||n)l+=` a`;else if(!i)return null;o>=12&&t?o-=12:o<12&&n&&(o+=12),s+=Math.floor(c/60),c%=60,o+=Math.floor(s/60),s%=60,o>=24&&(l=`hhhh:mm:ss`);let u=new k(1899,11,30,o,s,c);return{value:o/24+s/1440+c/86400,format:l,jsDate:u}}return null}function ni(e){let t=Math.trunc(e),n=k.fromTimestamp(t*Mr-Ir),r=e-t;r=r<0?1+r:r;let i=Math.round(r*24),a=Math.round((r-i/24)*24*60),o=Math.round((r-i/24-a/24/60)*24*60*60);return n.setHours(i),n.setMinutes(a),n.setSeconds(o),n}function ri(e){return Math.round(ii(e))}function ii(e){return(e.getTime()-jr.getTime())/Mr}function ai(e){return new k(e.getFullYear(),e.getMonth()+1,0).getDate()}function oi(e){return ai(e)===e.getDate()}function si(e,t,n){let r=e.getFullYear(),i=e.getMonth(),a=e.getDate(),o=new k(r,i+t,1);return n&&a===ai(e)||a>ai(o)?o.setDate(ai(o)):o.setDate(a),o}function ci(e){let t=Math.trunc(e);return t%4==0&&t%100!=0||t%400==0}function li(e,t,n){if(e===t)return 0;if(e>t){let n=t;t=e,e=n}let r=ni(e),i=ni(t),a=r.getDate(),o=i.getDate(),s=r.getMonth(),c=i.getMonth(),l=r.getFullYear(),u=i.getFullYear(),d=0,f=0;switch(n){case 0:a===31&&(a=30),a===30&&o===31&&(o=30),s===1&&a===(ci(l)?29:28)&&(a=30,c===1&&o===(ci(u)?29:28)&&(o=30)),d=l+(s*30+a)/360,f=u+(c*30+o)/360;break;case 1:let n=365,r=l===u,i=l+1===u;if(!r&&!i||!r&&s<c||!r&&s===c&&a<o){let e=0,t=0;for(let n=l;n<=u;n++)e++,t+=ci(n)?366:365;n=t/e}else r?ci(l)&&(n=366):(ci(l)&&s<2&&(n=366),ci(u)&&(c>1||c===1&&o===29)&&(n=366));d=e/n,f=t/n;break;case 2:d=e/360,f=t/360;break;case 3:d=e/365,f=t/365;break;case 4:a===31&&(a=30),o===31&&(o=30),d=l+(s*30+a)/360,f=u+(c*30+o)/360;break}return f-d}function ui(e,t){let n=(t.getFullYear()-e.getFullYear())*12+t.getMonth()-e.getMonth();return e.getDate()>t.getDate()?n-1:n}function di(e,t){let n=e.getTime(),r=t.getTime();return Math.floor((r-n)/Mr)}function fi(e,t){let n=t.getFullYear()-e.getFullYear(),r=e.getMonth(),i=t.getMonth(),a=e.getDate(),o=t.getDate();return i>r||i===r&&o>=a?n:n-1}function pi(e,t){return li(e,t,1)<1}function mi(e,t){return Math.trunc(e)===Math.trunc(t)}function hi(e,t,n){return t>n?hi(e,n,t):(e=Math.trunc(e),t=Math.trunc(t),n=Math.trunc(n),e>=t&&e<=n)}function gi(e,t){return Math.trunc(e)<Math.trunc(t)}function _i(e,t){return Math.trunc(e)<=Math.trunc(t)}function vi(e,t){return Math.trunc(e)>Math.trunc(t)}function yi(e,t){return Math.trunc(e)>=Math.trunc(t)}let bi=At(function(e){return e=qe(e),RegExp(`(?:^-?\\d+(?:${e}?\\d*(?:(E|e)(\\+|-)?\\d+)?)?|^-?${e}\\d+)(?!\\w|!)`)}),xi=At(function(e){let t=qe(e.decimalSeparator),n=`(?:\\d+(?:${qe(e.thousandsSeparator||``)}\\d{3,})*(?:${t}\\d*)?)`,r=`(?:${t}\\d+)`,i=`(?:\\s*`+n+`|`+r+`)(?:(e|E)(?:\\+|-)?(?:[0-9]|[0-9][0-9]|[12][0-9]{2}|30[0-7]))?(?:\\s*%)?`,a=`(?:\\s*-)?`,o=`(?:\\s*[\\$€])?`,s=`^(?:(?:`+[a+o+i,a+i+o,o+a+i].join(`)|(?:`)+`))$`;return new RegExp(s,`i`)});function Si(e,t){return e?xi(t).test(e.trim()):!1}let Ci=At(function(e){return RegExp(`[\$€${qe(e.thousandsSeparator||``)}]`,`g`)});function wi(e,t){e=e.replace(Ci(t),``),t.decimalSeparator!==`.`&&(e=e.replace(t.decimalSeparator,`.`));let n=Number(e);return isNaN(n)&&e.includes(`%`)&&(n=Number(e.split(`%`)[0]),!isNaN(n))?n/100:n}function Ti(e,t,n){let r=[...e].sort((e,t)=>e-t),i=(r.length+(n?-1:1))*t;if(n||i--,Number.isInteger(i))return r[i];let a=Math.ceil(i),o=Math.floor(i);return r[a]*(i-o)+r[o]*(a-i)}let Ei=e=>e,Di=()=>!1,Oi=Ei,ki=Di;function Ai(e,...t){if(t.length===1&&typeof t[0]==`object`&&!(t[0]instanceof String)){let n=t[0];e=e.replace(/\%\(([^\)]+)\)s/g,(e,t)=>n[t])}else t.length>0&&(e=e.replace(/\%s/g,()=>t.shift()));return e}function ji(e,t=()=>!0){Oi=e,ki=t}function Mi(){Oi===Ei&&ki===Di&&(ki=()=>!0)}let A=function(e,...t){return ki()?Ai(Oi(e),...t):new Ni(e,t)};var Ni=class extends String{constructor(e,t){super(e),this.values=t}valueOf(){let e=super.valueOf();return ki()?Ai(Oi(e),...this.values):Ai(e,...this.values)}toString(){return this.valueOf()}};let j={NotAvailable:`#N/A`,InvalidReference:`#REF`,BadExpression:`#BAD_EXPR`,CircularDependency:`#CYCLE`,UnknownFunction:`#NAME?`,DivisionByZero:`#DIV/0!`,InvalidNumber:`#NUM!`,SpilledBlocked:`#SPILL!`,GenericError:`#ERROR`,NullError:`#NULL!`},Pi=new Set(Object.values(j));var M=class{constructor(e=A(`Error`),t=j.GenericError){this.message=e,this.value=t,this.message=e.toString()}},Fi=class extends M{constructor(e=A(`Invalid expression`)){super(e,j.BadExpression)}},Ii=class extends M{constructor(e=A(`Circular reference`)){super(e,j.CircularDependency)}},Li=class extends M{constructor(e=A(`Invalid reference`)){super(e,j.InvalidReference)}},Ri=class extends M{constructor(e=A(`Data not available`)){super(e,j.NotAvailable)}},zi=class extends M{constructor(e=A(`Unknown function`)){super(e,j.UnknownFunction)}},Bi=class extends M{constructor(e=A(`Spill range is not empty`),t){super(e,j.SpilledBlocked),this.errorOriginPosition=t}},Vi=class extends M{constructor(e=A(`Division by zero`)){super(e,j.DivisionByZero)}},Hi=class extends M{constructor(e=A(`Number too large`)){super(e,j.InvalidNumber)}};let Ui=[`number`,`string`,`boolean`,`undefined`];function Wi(e){if(e!==void 0)return Ue(e)?e[0][0]?.format:e.format}function Gi(e){return typeof e==`string`&&Pi.has(e)}function Ki(e){return{value:j.NotAvailable,message:A(`Did not find value '%s' in [[FUNCTION_NAME]] evaluation.`,P(e))}}let qi=e=>A(`The function [[FUNCTION_NAME]] expects a number value, but '%s' is a string, and cannot be coerced to a number.`,e),Ji=A(`The function [[FUNCTION_NAME]] expects a reference to a cell or range.`),Yi=(e,t,n)=>A(`The function [[FUNCTION_NAME]] expects a number value between %s and %s inclusive, but receives %s.`,e.toString(),t.toString(),n.toString()),Xi=(e,t)=>A(`The function [[FUNCTION_NAME]] has an argument with value '%s'. It should be one of: %s.`,t,e.map(e=>`'${e}'`).join(`, `));function N(e,t){let n=oa(e);switch(typeof n){case`number`:return n;case`boolean`:return+!!n;case`string`:if(Si(n,t)||n===``)return wi(n,t);let e=Kr(n,t);if(e)return e.value;throw new M(qi(n));default:return 0}}function Zi(e,t){try{return N(e,t)}catch{return}}function Qi(e,t){return I(e).map(e=>e.map(e=>{if(typeof e.value!=`number`){let n=``;throw typeof e==`object`?n=A(`Function [[FUNCTION_NAME]] expects number values for %s, but got an empty value.`,t):typeof e==`string`?n=A(`Function [[FUNCTION_NAME]] expects number values for %s, but got a string.`,t):typeof e==`boolean`&&(n=A(`Function [[FUNCTION_NAME]] expects number values for %s, but got a boolean.`,t)),new M(n)}return e.value}))}function $i(e,t){let n=oa(e);if(n===``)throw new M(qi(n));return N(n,t)}function ea(e,t){return Math.trunc(N(e,t))}function ta(e,t){return Math.trunc($i(e,t))}function P(e){let t=oa(e);switch(typeof t){case`string`:return t;case`number`:return t.toString();case`boolean`:return t?`TRUE`:`FALSE`;default:return``}}let na=At(function(e){return e.toLowerCase().normalize(`NFD`).replace(/[\u0300-\u036f]/g,``)}),ra=e=>A(`The function [[FUNCTION_NAME]] expects a boolean value, but '%s' is a text, and cannot be coerced to a boolean.`,e);function F(e){let t=oa(e);switch(typeof t){case`boolean`:return t;case`string`:if(t){let e=t.toUpperCase();if(e===`TRUE`)return!0;if(e===`FALSE`)return!1;throw new M(ra(t))}else return!1;case`number`:return!!t;default:return!1}}function ia(e){let t=oa(e);if(t===``)throw new M(ra(t));return F(t)}function aa(e,t){return ni(N(oa(e),t))}function oa(e){if(typeof e==`object`&&e&&`value`in e){if(Gi(e.value))throw e;return e.value}if(Gi(e))throw new M(``,e);return e}function sa(e,t,n){for(let r of e)if(Ue(r)){let e=r.length,n=r[0].length;for(let i=0;i<n;i++)for(let n=0;n<e;n++)t(r[n][i])}else n(r)}function ca(e,t){sa(e,e=>{if(Gi(e.value))throw e;t(e)},e=>{if(Gi(e?.value))throw e;t(e)})}function la(e,t,n){sa(e,e=>{if(typeof e?.value==`number`&&t(e),Gi(e?.value))throw e},e=>{t({value:$i(e,n),format:e?.format})})}function ua(e,t,n,r,i=`rowFirst`){let a=r;for(let r of e)if(Ue(r)){let e=r.length,n=r[0].length;if(i===`rowFirst`)for(let i=0;i<n;i++)for(let n=0;n<e;n++)a=t(a,r[n][i]);else for(let i=0;i<e;i++)for(let e=0;e<n;e++)a=t(a,r[i][e])}else a=n(a,r);return a}function da(e,t,n,r=`rowFirst`){return ua(e,t,t,n,r)}function fa(e,t,n,r){return ua(e,(e,n)=>{let r=n?.value;if(typeof r==`number`)return t(e,r);if(Gi(r))throw n;return e},(e,n)=>t(e,$i(n,r)),n)}function pa(e,t,n,r){return ua(e,(e,n)=>{let i=n?.value;if(i!=null){if(typeof i==`number`)return t(e,i);if(typeof i==`boolean`)return t(e,N(i,r));if(Gi(i))throw n;return t(e,0)}return e},(e,n)=>t(e,N(n,r)),n)}function ma(e,t,n){let r=Array(e);for(let i=0;i<e;i++){r[i]=Array(t);for(let e=0;e<t;e++)r[i][e]=n(i,e)}return r}function ha(e,t){return e.length===0?[]:ma(e.length,e[0].length,(n,r)=>t(e[n][r]))}function ga(e,t){let n=e.length,r=e[0]?.length??0;for(let i=0;i<n;i++)for(let n=0;n<r;n++)t(e[i][n])}function _a(e){return e.length?ma(e[0].length,e.length,(t,n)=>e[n][t]):[]}function va(e,t,n){for(let r of e)if(Ue(r)){let e=r.length,n=r[0].length;for(let i=0;i<n;i++)for(let n=0;n<e;n++)if(!t(r[n][i]??void 0))return}else if(!n(r))return}function ya(e,t){return va(e,e=>{let n=e?.value;if(typeof n==`boolean`)return t(n);if(typeof n==`number`)return t(!!n);if(Gi(n))throw e;return!0},e=>e!==void 0&&e.value!==null?t(ia(e)):!0)}function ba(e,t){let n,r,i=e.substring(0,2);return i===`<=`||i===`>=`||i===`<>`?(n=i,r=e.substring(2)):(i=e.substring(0,1),i===`<`||i===`>`||i===`=`?(n=i,r=e.substring(1)):(n=`=`,r=e)),Si(r,t)||Wr(r,t)?r=N(r,t):(r===`TRUE`||r===`FALSE`)&&(r=F(r)),{operator:n,operand:r}}let xa=At(function(e){if(e===`*`)return/.+/;let t=``,n=``;for(let r of e)r===`?`&&n!==`~`?t+=`.`:r===`*`&&n!==`~`?t+=`.*`:((r===`*`||r===`?`)&&(t=t.slice(0,-1)),[`^`,`.`,`[`,`]`,`$`,`(`,`)`,`*`,`+`,`?`,`|`,`{`,`}`,`\\`].includes(r)&&(t+=`\\`),t+=r),n=r;return RegExp(`^`+t+`$`,`i`)});function Sa(e=``,t,n){let{operator:r,operand:i}=t;if(i===void 0||e===null||i===null)return!1;if(typeof i==`number`&&r===`=`)return typeof e==`string`&&(Si(e,n)||Wr(e,n))?N(e,n)===i:e===i;if(r===`<>`||r===`=`){let t;return t=typeof e==typeof i?e===``&&i===``?!0:typeof e==`string`&&typeof i==`string`?xa(i).test(e):e===i:!1,r===`=`?t:!t}if(typeof e==typeof i)switch(r){case`<`:return e<i;case`>`:return e>i;case`<=`:return e<=i;case`>=`:return e>=i}return!1}function Ca(e,t,n,r=!1){let i=e.length;if(i%2==1)throw new M(A(`Function [[FUNCTION_NAME]] expects criteria_range and criterion to be in pairs.`));let a=I(e[0]),o=a.length,s=a[0].length,c=[];for(let t=0;t<i-1;t+=2){let i=I(e[t]);if(i.length!==o||i[0].length!==s)throw new M(A(`Function [[FUNCTION_NAME]] expects criteria_range to have the same dimension`));let a=ba(P(e[t+1]),n);r&&typeof a.operand==`string`&&(a.operand+=`*`),c.push(a)}for(let r=0;r<o;r++)for(let a=0;a<s;a++){let o=!0;for(let t=0;t<i-1;t+=2){let i=I(e[t])[r][a].value,s=c[t/2];if(o=Sa(i??void 0,s,n),!o)break}o&&t(r,a)}}function wa(e,t,n,r,i,a){if(t===void 0||t.value===null)return-1;if(Gi(t.value))throw t;let o=Da(t.value),s=typeof o,c,l,u=0,d=i-1,f,p,m,h,g=r===`desc`?t=>Da(a(e,i-t-1)):t=>Da(a(e,t));for(;d-u>=0;){for(f=Math.floor((u+d)/2),p=f,m=g(p),h=typeof m;u<p&&s!==h;)p--,m=g(p),h=typeof m;if(h!==s||m==null){u=f+1;continue}n===`strict`&&m===o?(c=m,l=p):n===`nextSmaller`&&m<=o?(c==null||c<m||c===m&&l<p)&&(c=m,l=p):n===`nextGreater`&&m>=o&&(c===void 0||c>m||c===m&&l<p)&&(c=m,l=p),m>o||n===`strict`&&m===o?d=p-1:u=f+1}return l===void 0?-1:r===`desc`?i-l-1:l}function Ta(e,t,n,r,i,a,o=!1){if(t===void 0||t.value===null)return-1;if(Gi(t.value))throw t;let s=Da(t.value),c=o?(e,t)=>Da(i(e,r-t-1)):(e,t)=>Da(i(e,t)),l=n!==`wildcard`||typeof s!=`string`||!(s.includes(`*`)||s.includes(`?`));if(a&&l){let t=o?`reverseSearch`:`forwardSearch`,i=a[t].get(e);if(i===void 0){i=new Map;for(let t=0;t<r;t++){let n=c(e,t)??null;i.has(n)||i.set(n,t)}a[t].set(e,i)}if(i.has(s)){let e=i.get(s);return o?r-e-1:e}if(n===`strict`||n===`wildcard`)return-1}let u=Ea(e,s,n,r,c);return o&&u!==-1?r-u-1:u}function Ea(e,t,n,r,i){let a=n=>i(e,n)===t;if(n===`wildcard`&&typeof t==`string`&&(t.includes(`*`)||t.includes(`?`))){let n=xa(t);a=t=>{let r=i(e,t);return typeof r==`string`?n.test(r):!1}}let o,s=-1;n===`nextSmaller`&&(a=n=>{let r=i(e,n);return(!o&&Oa(t,r)>=0||Oa(t,r)>=0&&Oa(r,o)>0)&&(o=r,s=n),r===t}),n===`nextGreater`&&(a=n=>{let r=i(e,n);return(!o&&Oa(t,r)<=0||Oa(t,r)<=0&&Oa(r,o)<0)&&(o=r,s=n),r===t});for(let e=0;e<r;e++)if(a(e))return e;return s}function Da(e){return typeof e==`string`?na(e):e}function Oa(e,t){let n=Ui.indexOf(typeof e)-Ui.indexOf(typeof t);return n===0&&(typeof e==`string`&&typeof t==`string`?n=e.localeCompare(t):typeof e==`number`&&typeof t==`number`?n=e-t:typeof e==`boolean`&&typeof t==`boolean`&&(n=Number(e)-Number(t))),n}function I(e){return e===void 0?[[]]:Ue(e)?e:[[e]]}function ka(e,t){return da(e,(e,n)=>(e.push(t(n)),e),[],`rowFirst`)}function Aa(e){if(e===void 0)return!1;let{value:t}=e;return!(t===null||t===``)}let ja=A(`[[FUNCTION_NAME]] has no valid input data.`);function Ma(e){return A(`[[FUNCTION_NAME]] expects the provided values of %(argName)s to be a non-empty matrix.`,{argName:e})}let Na=[{name:`English (US)`,code:`en_US`,thousandsSeparator:`,`,decimalSeparator:`.`,weekStart:7,dateFormat:`m/d/yyyy`,timeFormat:`hh:mm:ss a`,formulaArgSeparator:`,`},{name:`French`,code:`fr_FR`,thousandsSeparator:` `,decimalSeparator:`,`,weekStart:1,dateFormat:`dd/mm/yyyy`,timeFormat:`hh:mm:ss`,formulaArgSeparator:`;`},{name:`English (India)`,code:`en_IN`,thousandsSeparator:`,`,decimalSeparator:`.`,weekStart:7,dateFormat:`dd/mm/yyyy`,timeFormat:`hh:mm:ss a`,formulaArgSeparator:`,`,digitGrouping:`[3,2,0]`}],L=Na[0];function Pa(e){let t=new zt(e),n=[],r=[];for(n.push(r);!t.isOver();){if(t.current===`;`){r=[],n.push(r),t.shift();continue}let e=Ua(t)||Fa(t)||La(t)||Ra(t)||Ba(t)||Va(t)||Ha(t)||Ga(t)||za(t)||Ka(t);if(!e)throw Error(`Unknown token at `+t.remaining());r.push(e)}return n}function Fa(e){let t;if(e.current===`"`?(e.shift(),t=`"`):e.currentStartsWith(`[$`)&&(e.advanceBy(2),t=`]`),!t)return null;let n=``;for(;e.current&&e.current!==t;)n+=e.shift();if(e.current===t)e.shift();else throw Error(`Unterminated string in format`);return{type:`STRING`,value:n}}let Ia=new Set(`$+-/():!^&~{}<>= `);function La(e){if(e.current===`\\`){e.shift();let t=e.shift();if(!t)throw Error(`Unexpected end of format string`);return{type:`CHAR`,value:t}}return Ia.has(e.current)?{type:`CHAR`,value:e.shift()}:null}function Ra(e){return e.current===`,`?(e.shift(),{type:`THOUSANDS_SEPARATOR`,value:`,`}):null}function za(e){return e.current===`@`?(e.shift(),{type:`TEXT_PLACEHOLDER`,value:`@`}):null}function Ba(e){return e.current===`.`?(e.shift(),{type:`DECIMAL_POINT`,value:`.`}):null}function Va(e){return e.current===`%`?(e.shift(),{type:`PERCENT`,value:`%`}):null}function Ha(e){return e.current===`e`?(e.shift(),{type:`SCIENTIFIC`,value:`e`}):null}function Ua(e){if(e.current===`0`||e.current===`#`){let t=e.current;return e.shift(),{type:`DIGIT`,value:t}}return null}let Wa=new Set(`dmqyhsa`);function Ga(e){if(!Wa.has(e.current))return null;let t=e.current,n=``;for(;e.current===t;)n+=e.shift();return{type:`DATE_PART`,value:n}}function Ka(e){if(e.current!==`*`)return null;e.shift();let t=e.shift();if(!t)throw Error(`Unexpected end of format string`);return{type:`REPEATED_CHAR`,value:t}}let qa={};function Ja(e){let t=qa[e];return t===void 0&&(t=Ya(e),qa[e]=t),t}function Ya(e){let t=Pa(e);for(let e of t){let t=e.filter(e=>e.type===`REPEATED_CHAR`);for(let e of t.slice(1))e.type=`CHAR`}let n=eo(t[0])||$a(t[0])||to(t[0]);if(!n)throw Error(`Invalid first format part of: `+e);if(t.length>1&&n.type===`text`)throw Error(`The first format in a multi-part format must be a number format: `+e);let r=eo(t[1])||$a(t[1]);if(t[1]?.length&&!r)throw Error(`Invalid second format part of: `+e);let i=eo(t[2])||$a(t[2]);if(t[2]?.length&&!i)throw Error(`Invalid third format part of: `+e);let a=to(t[3]);if(t[3]?.length&&!a)throw Error(`Invalid fourth format part of: `+e);return{positive:n,negative:r,zero:i,text:a}}function Xa(e){return e.every(e=>e.type===`DATE_PART`||e.type===`DECIMAL_POINT`||e.type===`THOUSANDS_SEPARATOR`||e.type===`STRING`||e.type===`CHAR`||e.type===`REPEATED_CHAR`)}function Za(e){return e.every(e=>e.type===`DIGIT`||e.type===`DECIMAL_POINT`||e.type===`THOUSANDS_SEPARATOR`||e.type===`PERCENT`||e.type===`SCIENTIFIC`||e.type===`STRING`||e.type===`CHAR`||e.type===`REPEATED_CHAR`)}function Qa(e){return e.every(e=>e.type===`STRING`||e.type===`TEXT_PLACEHOLDER`||e.type===`CHAR`||e.type===`REPEATED_CHAR`)}function $a(e){if(!e||!Za(e))return;let t=[],n,r=t,i=0,a=!1,o=0,s=e.findLastIndex(e=>e.type===`DIGIT`),c=!1,l=0;for(let u=0;u<e.length;u++){let d=e[u];switch(d.type){case`DIGIT`:r===t?r.push(d):l<20&&(r.push(d),l++);break;case`DECIMAL_POINT`:if(r===t)n=[],r=n;else throw Error(`Multiple decimal points in a number format`);break;case`SCIENTIFIC`:a=!0;break;case`REPEATED_CHAR`:case`CHAR`:case`STRING`:r.push(d);break;case`PERCENT`:i++,r.push(d);break;case`THOUSANDS_SEPARATOR`:u-1===s?(o+=1,s++,r.push(d)):e[u+1]?.type===`DIGIT`&&e[u-1]?.type===`DIGIT`?(r===t&&(c=!0),r.push(d)):r.push({type:`CHAR`,value:`,`});break}}return{type:`number`,integerPart:t,decimalPart:n,percentSymbols:i,scientific:a,thousandsSeparator:c,magnitude:o}}function eo(e){let t=e&&Xa(e)?{type:`date`,tokens:e}:void 0;if(!(!t||!e?.some(e=>e.type===`DATE_PART`))){if(t.tokens.length&&t.tokens.every(e=>e.type===`DATE_PART`&&e.value===`a`))throw Error(`Invalid date format`);return{type:`date`,tokens:no(t.tokens.map(e=>e.type===`THOUSANDS_SEPARATOR`||e.type===`DECIMAL_POINT`?{type:`CHAR`,value:e.value}:e))}}}function to(e){return e&&Qa(e)?{type:`text`,tokens:e}:void 0}function no(e){let t=e.filter(e=>e.type===`DATE_PART`);for(let e=0;e<t.length;e++)!t[e].value.startsWith(`m`)||t[e].value.length>2||(t[e-1]?.value.startsWith(`h`)||t[e+1]?.value.startsWith(`s`))&&(t[e].value=t[e].value.replaceAll(`m`,`M`));return e}function ro(e){return[io(e.positive),io(e.negative),io(e.zero),io(e.text)].filter(w).join(`;`)}function io(e){if(!e)return;let t=``,n=e.type===`number`?ao(e):e.tokens;for(let e of n)switch(e.type){case`STRING`:t+=`[$${e.value}]`;break;case`CHAR`:t+=oo(e.value)?`\\${e.value}`:e.value;break;case`REPEATED_CHAR`:t+=`*`+e.value;break;case`DATE_PART`:t+=e.value===`MM`?`mm`:e.value;break;default:t+=e.value}return t}function ao(e){let t=[...e.integerPart];return e.decimalPart&&(t.push({type:`DECIMAL_POINT`,value:`.`}),t.push(...e.decimalPart)),e.scientific&&t.push({type:`SCIENTIFIC`,value:`e`}),t}function oo(e){return!Ia.has(e)}let so=`REPEATED_CHAR_PLACEHOLDER_`,co={0:A(`January`),1:A(`February`),2:A(`March`),3:A(`April`),4:A(`May`),5:A(`June`),6:A(`July`),7:A(`August`),8:A(`September`),9:A(`October`),10:A(`November`),11:A(`December`)},lo={0:A(`Sunday`),1:A(`Monday`),2:A(`Tuesday`),3:A(`Wednesday`),4:A(`Thursday`),5:A(`Friday`),6:A(`Saturday`)};function uo(e,t,n,r=!1){return r?Ro({value:e,format:t},n):R(e,{format:t,locale:n})}function R(e,{format:t,locale:n,formatWidth:r}){switch(typeof e==`boolean`&&(e=e?`TRUE`:`FALSE`),typeof e){case`string`:{if(e.includes(`\\"`)&&(e=e.replaceAll(/\\"/g,`"`)),!t)return e;let n=Ja(t),i=fo(e,n).format;return!i||i.type!==`text`?e:po(e,i,r)}case`number`:t||=ko(e);let i=Ja(t),{format:a,isNegativeFormat:o}=fo(e,i);if(!a)return e.toString();if(a.type===`text`)return po(e.toString(),a,r);if(o&&(e=Math.abs(e)),a.type===`date`)return mo(Eo(e,a),r);let s=e<0,c=mo(ho(Math.abs(e),a,n),r);return s?`-`+c:c;case`object`:return``}}function fo(e,t){let n,r=!1;switch(typeof e){case`number`:e<0&&t.negative?(n=t.negative,r=!0):n=e===0&&t.zero?t.zero:t.positive;break;case`string`:let i=t.text||t.positive;i.type===`text`&&(n=i);break}return{format:n,isNegativeFormat:r}}function po(e,t,n){let r=``;for(let n of t.tokens)switch(n.type){case`TEXT_PLACEHOLDER`:r+=e;break;case`CHAR`:case`STRING`:r+=n.value;break;case`REPEATED_CHAR`:r+=so+n.value;break}return mo(r,n)}function mo(e,t){let n=e.indexOf(so);if(n===-1)return e;let r=e.slice(0,n),i=e.slice(n+26+1),a=e[n+26];function o(){if(!t)return{timesToRepeat:0,padding:``};let e=t.measureText(r+i),n=t.measureText(a),o=t.availableWidth-e;if(o<=0)return{timesToRepeat:0,padding:``};let s=Math.floor(o/n),c=o-s*n,l=t.measureText(` `);return{timesToRepeat:s,padding:` `.repeat(Math.floor(c/l))}}let{timesToRepeat:s,padding:c}=o();return r+a.repeat(s)+c+i}function ho(e,t,n){if(!t.integerPart.length&&!t.decimalPart?.length)return``;if(e===1/0)return`∞`+(t.percentSymbols?`%`:``);let r=Math.floor(Math.log10(Math.abs(e)));r===-1/0&&(r=0),t.scientific&&(e/=10**r);let i=t.percentSymbols*2-t.magnitude*3;e*=10**i;let a=0;t.decimalPart!==void 0&&(a=t.decimalPart.filter(e=>e.type===`DIGIT`).length);let{integerDigits:o,decimalDigits:s}=yo(Math.abs(e),a),c=!!t.decimalPart?.some(e=>e.type===`DIGIT`),l=go(o,t,t.thousandsSeparator?n.thousandsSeparator:void 0,c,n);if(t.decimalPart!==void 0&&(l+=n.decimalSeparator+_o(s||``,t)),t.scientific){let e=Math.abs(r).toString().padStart(2,`0`);l+=`e`+(r>=0?`+`:`-`)+e}return l}function go(e,t,n,r,i){let a=t.integerPart;r&&!a.some(e=>e.type===`DIGIT`)&&(a=[...a,{type:`DIGIT`,value:`#`}]),e===`0`&&(e=``);let o=``,s=a.findIndex(e=>e.type===`DIGIT`),c=e.length-1;function l(t,r){if(r===`0`&&(t||=`0`),!t)return;let a=e.length-1-c,s=Zo(i.digitGrouping||`[3,0]`);o=n&&s.has(a-1)?t+n+o:t+o}for(let t=a.length-1;t>=0;t--){let n=a[t];switch(n.type){case`DIGIT`:let r=e[c];if(l(r,n.value),c--,s===t)for(;c>=0;)l(e[c],`0`),c--;break;case`THOUSANDS_SEPARATOR`:break;case`REPEATED_CHAR`:o=so+n.value+o;break;default:o=n.value+o;break}}return o}function _o(e,t){if(!t.decimalPart)return``;let n=``,r=0;for(let i of t.decimalPart)switch(i.type){case`DIGIT`:let t=i.value===`#`?e[r]||``:e[r]||`0`;n+=t,r++;break;case`THOUSANDS_SEPARATOR`:break;case`REPEATED_CHAR`:n+=so+i.value;break;default:n+=i.value;break}return n}let vo=[];function yo(e,t=20){let n=e.toString();if(n.includes(`e`))return Co(e,t);if(Number.isInteger(e))return{integerDigits:n,decimalDigits:void 0};let r=n.indexOf(`.`),i=n.substring(0,r),a=n.substring(r+1);if(t===0)return Number(a[0])>=5&&(i=(Number(i)+1).toString()),{integerDigits:i,decimalDigits:void 0};if(a.length>t){let{integerDigits:e,decimalDigits:n}=So(a,t);a=n,e!==`0`&&(i=(Number(i)+Number(e)).toString())}return{integerDigits:i,decimalDigits:bo(a||``)}}function bo(e){let t=e.length-1;for(;t>=0&&e[t]===`0`;)t--;return e.slice(0,t+1)||void 0}let xo=/^0+/;function So(e,t){let n=`0`,r=e,i=e.slice(0,t);if(Number(e[t])<5)return{integerDigits:n,decimalDigits:i};let a=i.match(xo)?.[0]||``,o=(Number(i)+1).toString(),s=i.slice(a.length),c=o.length>s.length;return c&&!a?(n=`1`,r=void 0):r=c?a.slice(0,-1)+o:a+o,{integerDigits:n,decimalDigits:r}}function Co(e,t=20){let n=vo[t];n||(n=new Intl.NumberFormat(`en-US`,{maximumFractionDigits:t,useGrouping:!1}),vo[t]=n);let[r,i]=n.format(e).split(`.`);return{integerDigits:r,decimalDigits:i}}function wo(e,t){let{integerDigits:n,decimalDigits:r}=yo(e,20);return r?n+t+r:n}let To=At(function(e){if(!e)return!1;try{return Ja(e).positive.type===`date`}catch{return!1}});function Eo(e,t){let n=ni(e);if(isNaN(n.getTime()))return e.toString();let r=t.tokens.some(e=>e.type===`DATE_PART`&&e.value===`a`),i=``;for(let e of t.tokens)switch(e.type){case`DATE_PART`:i+=Do(n,e.value,r);break;case`REPEATED_CHAR`:i+=so+e.value;break;default:i+=e.value;break}return i}function Do(e,t,n){switch(t){case`d`:return e.getDate();case`dd`:return e.getDate().toString().padStart(2,`0`);case`ddd`:return lo[e.getDay()].slice(0,3);case`dddd`:return lo[e.getDay()].toString();case`m`:return e.getMonth()+1;case`mm`:return String(e.getMonth()+1).padStart(2,`0`);case`mmm`:return co[e.getMonth()].slice(0,3);case`mmmm`:return co[e.getMonth()].toString();case`mmmmm`:return co[e.getMonth()].slice(0,1);case`qq`:return A(`Q%(quarter)s`,{quarter:e.getQuarter()}).toString();case`qqqq`:return A(`Quarter %(quarter)s`,{quarter:e.getQuarter()}).toString();case`yy`:let r=String(e.getFullYear()).replace(`-`,``).padStart(2,`0`);return r.slice(r.length-2);case`yyyy`:return String(e.getFullYear()).replace(`-`,``).padStart(4,`0`);case`hhhh`:return Math.floor((e.getTime()-jr.getTime())/(3600*1e3)).toString();case`hh`:let i=e.getHours();return n&&(i=i===0?12:i>12?i-12:i),i.toString().padStart(2,`0`);case`MM`:return e.getMinutes().toString().padStart(2,`0`);case`ss`:return e.getSeconds().toString().padStart(2,`0`);case`a`:return e.getHours()>=12?`PM`:`AM`;default:throw Error(`invalid date format token: ${t}`)}}let Oo=At(function(e){return RegExp(`[0-9]+${qe(e.decimalSeparator)}[0-9]`)});function ko(e){let{integerDigits:t,decimalDigits:n}=yo(e);if(!n)return`0`;let r=t.replace(`-`,``).length;if(r+2>11)return`0`;let i=11-r-1;return{decimalDigits:n}=yo(e,Math.min(i,n.length)),n?`0.`+`0`.repeat(n.length):`0`}function Ao(e,t){if(Wr(e,t))return Kr(e,t).format}function jo(e){let t=e.includes(`.`)?`0.00`:`0`,n=e.match(/[\$€]/);if(n){let r=e.match(/[\d]/),i=`[$`+n.values().next().value+`]`;return r.index<n.index?`#,##`+t+i:i+`#,##`+t}if(e.includes(`%`))return t+`%`}function Mo(e){let t=e.decimalPlaces??2,n=e.position??`before`,r=e.code??``,i=e.symbol??``,a=`#,##0`+(t?`.`+`0`.repeat(t):``),o=`${r} ${i}`.trim();return n===`after`&&r&&(o=` `+o),Fo(o,n,a)}function No(e){let t=e.decimalPlaces??2,n=e.position??`before`,r=e.code??``,i=e.symbol??``,a=`#,##0`+(t?`.`+`0`.repeat(t):``),o=`${r} ${i}`.trim();return n===`after`&&r&&(o=` `+o),[Po(o,n,` ${a} `),Po(o,n,`(${a})`),Po(o,n,` - `)].join(`;`)}function Po(e,t,n){let r=`[$${e}]`;return t===`before`?r+`* `+n:n+`* `+r}function Fo(e,t,n){let r=`[$${e}]`;return t===`before`?r+n:n+r}function Io(e){let t=Ja(e);return ro({positive:Lo(t.positive),negative:t.negative?Lo(t.negative):void 0,zero:t.zero?Lo(t.zero):void 0,text:t.text})}function Lo(e){if(e.type!==`number`||!e.decimalPart)return e;let t=e.decimalPart.filter(e=>e.type!==`DIGIT`);return{...e,decimalPart:void 0,integerPart:[...e.integerPart,...t]}}function Ro({value:e,format:t},n){let r=Zi(e,n);if(r===void 0)return``;let i=t;if(Math.abs(r)<1e3){let e=r%1!=0;i=!t&&e?Math.abs(r)<.01?`0.00e`:`0.##`:t}else i=zo({value:e,format:t},void 0,n);return R(e,{format:i,locale:n})}function zo(e,t,n){let r=0;try{r=Math.abs(N(e?.value,n))}catch{return``}let i=e?.format;if(t!==void 0)switch(t?.value){case`k`:return Bo(i,1,`k`);case`m`:return Bo(i,2,`m`);case`b`:return Bo(i,3,`b`);default:throw new M(A(`The formatting unit should be 'k', 'm' or 'b'.`))}return r<1e5?Bo(i,0,``):r<1e8?Bo(i,1,`k`):r<1e11?Bo(i,2,`m`):r<0x5af3107a4000?Bo(i,3,`b`):`0.00e`}function Bo(e,t,n){let r=Ja(e||`#,##0`);return ro({positive:Vo(r.positive,t,n),negative:r.negative?Vo(r.negative,t,n):void 0,zero:r.zero?Vo(r.zero,t,n):void 0,text:r.text})}function Vo(e,t,n){if(e.type!==`number`||e.scientific)return e;let r=Lo(e),i={type:`STRING`,value:n},a=[...r.integerPart],o=a.findLastIndex(e=>e.type===`DIGIT`);if(o===-1)return e;for(;a[o+1]?.type===`THOUSANDS_SEPARATOR`;)a=jt(a,[o+1]);let s=a[o+1];a=s?.type===`STRING`&&[`m`,`k`,`b`].includes(s.value)?Nt(a,i,o+1):Mt(a,[i],o+1),t>0&&(a=Mt(a,Array(t).fill({type:`THOUSANDS_SEPARATOR`,value:`,`}),o+1));let c=r.percentSymbols-a.filter(e=>e.type===`PERCENT`).length;return a.push(...Array(c).fill({type:`PERCENT`,value:`%`})),{...r,integerPart:a,magnitude:t}}function Ho(e,t){let n=Ja(e);return ro(Ja(ro({positive:Uo(n.positive,t),negative:n.negative?Uo(n.negative,t):void 0,zero:n.zero?Uo(n.zero,t):void 0,text:n.text})))}function Uo(e,t){return e.type===`number`?t>0?Go(e,t):Wo(e,Math.abs(t)):e}function Wo(e,t){let n=e.decimalPart;if(!n)return e;let r=[],i=0;for(let e=n.length-1;e>=0&&!(i>=Math.abs(t));e--)n[e].type===`DIGIT`&&(i++,r.push(e));return n=jt(n,r),n.some(e=>e.type===`DIGIT`)?{...e,decimalPart:n}:{...e,decimalPart:void 0,integerPart:[...e.integerPart,...n]}}function Go(e,t){let n=e.integerPart,r=e.decimalPart;if(!r){let e=n.findLastIndex(e=>e.type===`DIGIT`);r=n.slice(e+1),n=n.slice(0,e+1)}let i=C(0,t).map(()=>({type:`DIGIT`,value:`0`})),a=r.findLastIndex(e=>e.type===`DIGIT`);return r=a===-1?[...i,...r]:Mt(r,i,a+1),{...e,decimalPart:r,integerPart:n}}function Ko(e){let t=Ja(e);for(let e of[t.positive,t.negative,t.zero])if(e&&e.type===`date`&&e.tokens.some(e=>e.type===`DATE_PART`&&e.value.includes(`q`)))return!1;return!0}function qo(e){if(!e)return!1;try{return Ja(e).positive.type===`text`}catch{return!1}}function Jo(e,t){if(!t)return!1;try{let{format:n}=fo(e,Ja(t));if(n?.type===`text`||n?.type===`date`)return n.tokens.some(e=>e.type===`REPEATED_CHAR`);if(n?.type===`number`)return n.integerPart.some(e=>e.type===`REPEATED_CHAR`)||(n.decimalPart?n.decimalPart.some(e=>e.type===`REPEATED_CHAR`):!1)}catch{}return!1}function Yo(e){try{return R(0,{format:e,locale:L}),!0}catch{return!1}}function Xo(e){return Pa(e).length}let Zo=At(function(e){let t=e.trim();if(!t.startsWith(`[`)||!t.endsWith(`]`))throw Error(`Invalid digit grouping: "${e}"`);let n=t.slice(1,-1).split(`,`).map(e=>Number(e));if(n.length===0||n.some(e=>isNaN(e)||e<0)||n[0]===0)throw Error(`Invalid digit grouping: "${e}"`);let r=new Set,i=0,a=-1;do a+=n[i],r.add(a),i=n[i+1]===0?i:i+1;while(a<=30&&n[i]!==void 0);return r}),Qo=/(.*?)\((.*?)\)(.*)/,$o=[`ANY`,`BOOLEAN`,`DATE`,`NUMBER`,`STRING`,`RANGE`,`RANGE<BOOLEAN>`,`RANGE<DATE>`,`RANGE<NUMBER>`,`RANGE<STRING>`];function z(e,t=``,n){return es(e,t,n)}function es(e,t,n){let r=e.match(Qo),i=r[1].trim();if(!i)throw Error(`Function argument definition is missing a name: '${e}'.`);let a=[],o=!1,s=!1,c;for(let e of r[2].split(`,`)){let t=e.trim().toUpperCase(),n=$o.find(e=>t===e);n?a.push(n):t===`RANGE<ANY>`?a.push(`RANGE`):t===`OPTIONAL`?o=!0:t===`REPEATING`?s=!0:t.startsWith(`DEFAULT=`)&&(c=e.trim().slice(8))}let l={name:i,description:t,type:a};return(a.includes(`ANY`)||a.includes(`RANGE`))&&(l.acceptErrors=!0),o&&(l.optional=!0),s&&(l.repeating=!0),c!==void 0&&(l.default=!0,l.defaultValue=c),a.some(e=>e.startsWith(`RANGE`))&&(l.acceptMatrix=!0),a.every(e=>e.startsWith(`RANGE`))&&(l.acceptMatrixOnly=!0),n&&n.length>0&&(l.proposalValues=n),l}function ts(e,t){let n=0,r=0,i=0,a=0;for(let e of t.args)n++,!e.optional&&!e.default&&r++,e.repeating&&i++,(e.optional||e.default)&&!e.repeating&&a++;let o=t;return o.minArgRequired=r,o.maxArgPossible=i?1/0:n,o.nbrArgRepeating=i,o.nbrOptionalNonRepeatingArgs=a,o.hidden=t.hidden||!1,o.name=e,o}let ns={};function rs(e,t){let n=e.name;return ns[n]?.[t]||(ns[n]||(ns[n]={}),ns[n][t]||(ns[n][t]=is(e,t)),ns[n][t])}function is(e,t){let n={},r=e.nbrArgRepeating?Math.floor((t-e.minArgRequired)/e.nbrArgRepeating):0,i=e.nbrArgRepeating*r,a=t-e.minArgRequired-i,o=0,s=0;for(let t=0;t<e.args.length;t++){let i=e.args[t];if((i.optional||i.default)&&!i.repeating){s<a&&(n[o]={index:t},o++),s++;continue}if(i.repeating){let a=+!i.optional;for(let i=0;i<r+a;i++)for(let r=0;r<e.nbrArgRepeating;r++)n[o]={index:t+r,repeatingGroupIndex:i},o++;t+=e.nbrArgRepeating-1;continue}n[o]={index:t},o++}return n}function as(e){if(e.nbrArgRepeating&&e.nbrOptionalNonRepeatingArgs>=e.nbrArgRepeating)throw Error(`Function ${e.name} has more optional arguments than repeatable ones.`);let t=!1,n=!1;for(let r of e.args)if(r.repeating){if(!n&&t)throw Error(`Function ${e.name} has non-consecutive repeating arguments. All repeating arguments must be declared consecutively.`);t=!0,n=!0}else n=!1}function os(e,t,n,r=void 0){let i=1,a=1,o=1/0,s=1/0,c;for(let e=0;e<n.length;e++){let t=n[e];if(Ue(t)&&(r===void 0||r[e])){let r=t.length,l=t[0].length;r!==1||l!==1?(c??=Array(n.length),r!==1&&l!==1?(c[e]=`matrix`,i=Math.max(i,r),a=Math.max(a,l),o=Math.min(o,r),s=Math.min(s,l)):r===1?l!==1&&(c[e]=`vertical`,a=Math.max(a,l),s=Math.min(s,l)):(c[e]=`horizontal`,i=Math.max(i,r),o=Math.min(o,r))):n[e]=t[0][0]}}if(i===1&&a===1)return cs(t,e,n);let l=(e,t)=>n.map((n,r)=>{switch(c?.[r]){case`matrix`:return n[e][t];case`horizontal`:return n[e][0];case`vertical`:return n[0][t];case void 0:return n}});return ma(i,a,(n,r)=>{if(n>o-1||r>s-1)return new Ri(A(`Array arguments to [[FUNCTION_NAME]] are of different size.`));let i=cs(t,e,l(n,r));return Ue(i)?i[0][0]:i})}function ss(e,t,n){t.debug&&=!1;let r=e.compute.apply(t,n);return Ue(r)?ls(r[0][0])?r:ha(r,e=>({value:e})):ls(r)?r:{value:r}}function cs(e,t,n){let r=rs(e,n.length);for(let t=0;t<n.length;t++){let i=n[t];if(!e.args[r[t].index].acceptErrors&&!Ue(i)&&Gi(i?.value))return i}try{return ss(e,t,n)}catch(t){return ds(t,e.name)}}function ls(e){return typeof e==`object`&&!!e&&`value`in e}function us(e){function t(...t){let r=0;this.__timingEntries&&(r=performance.now());let i=[],a=rs(e,t.length);for(let n=0;n<t.length;n++){let r=a[n].index,o=e.args[r],s=t[n];if(!Ue(s)&&o.acceptMatrixOnly)throw new Fi(A(`Function %s expects the parameter '%s' to be reference to a cell or range.`,e.name,(n+1).toString()));i.push(!o.acceptMatrix)}let o=n(os(this,e,t,i));if(this.__timingEntries&&this.__originCellPosition){let t=performance.now();this.__timingEntries.push({functionName:e.name,position:this.__originCellPosition,time:t-r})}return o}function n(t){return Ue(t)?ga(t,t=>ps(t,e.name)):ps(t,e.name),t}return t}function ds(e,t){return fs(e)&&Gi(e.value)?(hs(e)&&ps(e,t),e):(console.error(e),new M(ms+(hs(e)?` `+e.message:``)))}function fs(e){return e?.value!==void 0&&typeof e.value==`string`}function ps(e,t){e.message?.includes(`[[FUNCTION_NAME]]`)&&(e.message=e.message.replace(`[[FUNCTION_NAME]]`,t))}let ms=A(`An unexpected error occurred. Submit a support ticket at odoo.com/help.`);function hs(e){return e?.message!==void 0&&typeof e.message==`string`}let gs=/^[A-Z0-9\_\.]+$/,_s=new class extends hr{mapping={};add(e,t){if(e=e.toUpperCase(),e in this.content)throw Error(`${e} is already present in this registry!`);return this.replace(e,t)}replace(e,t){if(e=e.toUpperCase(),!gs.test(e))throw Error(A(`Invalid function name %s. Function names can exclusively contain alphanumerical values separated by dots (.) or underscore (_)`,e));let n=ts(e,t);return as(n),this.mapping[e]=us(n),super.replace(e,n),this}},vs=new RegExp(/\$?([A-Z]{1,3})\$?([0-9]{1,7})/,`i`),ys=new RegExp(/^\$?([A-Z]{1,3})\$?([0-9]{1,7})$/,`i`),bs=new RegExp(/^\$?([A-Z]{1,3})+$/,`i`),xs=new RegExp(/^\$?([0-9]{1,7})+$/,`i`),Ss=new RegExp(/^\s*('.+'!|[^']+!)?\$?([A-Z]{1,3})$/,`i`),Cs=new RegExp(/^\s*('.+'!|[^']+!)?\$?([0-9]{1,7})$/,`i`),ws=RegExp(`^\\s*('.+'!|[^']+!)?(`+[vs.source,`(\\$?[A-Z]{1,3})?\\$?[0-9]{1,7}\\s*:\\s*(\\$?[A-Z]{1,3})?\\$?[0-9]{1,7}\\s*`,`\\$?[A-Z]{1,3}(\\$?[0-9]{1,7})?\\s*:\\s*\\$?[A-Z]{1,3}(\\$?[0-9]{1,7})?\\s*`].join(`|`)+`)$`,`i`);function Ts(e){return Ss.test(e)}function Es(e){return Cs.test(e)}function Ds(e){return bs.test(e)}function Os(e){return xs.test(e)}function ks(e){return ys.test(e)}function As(e){if(!e.includes(`!`))return{xc:e};let t=e.split(`!`),n=t.pop();return{sheetName:Ye(t.join(`!`))||void 0,xc:n}}function js(e,t){return e===void 0?t:`${Ze(e)}!${t}`}function Ms(e){if(e.type!==`REFERENCE`)return e;let{xc:t,sheetName:n}=As(e.value),[r,i]=t.split(`:`),a=Ns(r),o=i?`:${Ns(i)}`:``;return{...e,value:js(n,a+o)}}function Ns(e){switch(Is(e)){case`none`:e=Ps(e,`colrow`);break;case`colrow`:e=Ps(e,`row`);break;case`row`:e=Ps(e,`col`);break;case`col`:e=Ps(e,`none`);break}return e}function Ps(e,t){let n;({sheetName:n,xc:e}=As(e)),n=n?Ze(n)+`!`:``,e=e.replace(/\$/g,``);let r=e.indexOf(`:`);return r>=0?`${n}${Fs(e.slice(0,r),t)}:${Fs(e.slice(r+1),t)}`:n+Fs(e,t)}function Fs(e,t){let n=e.search(/[0-9]/),r=n!==0,i=n>=0;switch(t){case`col`:return r?`$`+e:e;case`row`:return i?e.slice(0,n)+`$`+e.slice(n):e;case`colrow`:return!i||!r?`$`+e:`$`+e.slice(0,n)+`$`+e.slice(n);case`none`:return e}}function Is(e){return zs(e)?`colrow`:Ls(e)?`col`:Rs(e)?`row`:`none`}function Ls(e){return e.startsWith(`$`)}function Rs(e){return e.includes(`$`,1)}function zs(e){return e.startsWith(`$`)&&e.length>1&&e.slice(1).includes(`$`)}let Bs=[`%`],Vs=`+,-,*,/,:,=,<>,>=,>,<=,<,^,&,#`.split(`,`).concat(Bs);function Hs(e,t=L){e=Ot(e);let n=new zt(e),r=[],i=Tt.test(e)?rc:ic;for(;!n.isOver();){let e=ac(n)||i(n)||Ys(n,t)||Js(n,t)||qs(n)||Gs(n)||oc(n)||Xs(n)||$s(n)||Us(n)||Qs(n,t)||nc(n);e||={type:`UNKNOWN`,value:n.shift()},r.push(e)}return r}function Us(e){return e.current===`?`?(e.shift(),{type:`DEBUGGER`,value:`?`}):null}let Ws={"(":{type:`LEFT_PAREN`,value:`(`},")":{type:`RIGHT_PAREN`,value:`)`}};function Gs(e){return e.current===`(`||e.current===`)`?Ws[e.shift()]:null}let Ks={"{":{type:`LEFT_BRACE`,value:`{`},"}":{type:`RIGHT_BRACE`,value:`}`}};function qs(e){return e.current===`{`||e.current===`}`?Ks[e.shift()]:null}function Js(e,t){return e.current===t.formulaArgSeparator?{type:`ARG_SEPARATOR`,value:e.shift()}:null}function Ys(e,t){let n=t.formulaArgSeparator===`;`?`\\`:`;`;return n&&e.current===n?(e.shift(),{type:`ARRAY_ROW_SEPARATOR`,value:n}):null}function Xs(e){for(let t of Vs)if(e.currentStartsWith(t))return e.advanceBy(t.length),{type:`OPERATOR`,value:t};return null}let Zs=new Set(`0123456789`);function Qs(e,t){if(!Zs.has(e.current)&&e.current!==t.decimalSeparator)return null;let n=e.remaining().match(bi(t.decimalSeparator));return n?(e.advanceBy(n[0].length),{type:`NUMBER`,value:n[0]}):null}function $s(e){if(e.current===`"`){let t=e.shift(),n=t;for(;e.current&&(e.current!==t||n[n.length-1]===`\\`);)n+=e.shift();return e.current===`"`&&(n+=e.shift()),{type:`STRING`,value:n}}return null}let ec=/\p{L}|\p{N}|_|\.|!|\$/u,tc=new Set(`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_.!$`);function nc(e){let t=``;if(e.current===`'`){let n=e.shift();for(t+=n;e.current;)if(n=e.shift(),t+=n,n===`'`)if(e.current&&e.current===`'`)n=e.shift(),t+=n;else break;if(n!==`'`)return{type:`UNKNOWN`,value:t}}for(;e.current&&(tc.has(e.current)||e.current.match(ec));)t+=e.shift();if(t.length){let e=t;return ws.test(e)?{type:`REFERENCE`,value:e}:{type:`SYMBOL`,value:e}}return null}function rc(e){let t=``;for(;e.current===` `||e.current&&e.current.match(Tt);)t+=e.shift();return t?{type:`SPACE`,value:t}:null}function ic(e){let t=``;for(;e.current===` `;)t+=e.shift();return t?{type:`SPACE`,value:t}:null}function ac(e){let t=0;for(;e.current===`
10
+ `;)t++,e.shift();return t?{type:`SPACE`,value:`
11
+ `.repeat(t)}:null}function oc(e){return e.currentStartsWith(j.InvalidReference)?(e.advanceBy(j.InvalidReference.length),{type:`INVALID_REFERENCE`,value:j.InvalidReference}):null}var sc=function(e){return e[e.LeftRef=0]=`LeftRef`,e[e.RightRef=1]=`RightRef`,e[e.Separator=2]=`Separator`,e[e.FullColumnSeparator=3]=`FullColumnSeparator`,e[e.FullRowSeparator=4]=`FullRowSeparator`,e[e.RightColumnRef=5]=`RightColumnRef`,e[e.RightRowRef=6]=`RightRowRef`,e[e.Found=7]=`Found`,e}(sc||{});let cc=(e,t=()=>!0)=>[{goTo:e,guard:t}],lc=(e,t=()=>!0)=>({goTo:e,guard:t}),uc={[sc.LeftRef]:{REFERENCE:cc(sc.Separator),NUMBER:cc(sc.FullRowSeparator),SYMBOL:[lc(sc.FullColumnSeparator,e=>Ts(e.value)),lc(sc.FullRowSeparator,e=>Es(e.value))]},[sc.FullColumnSeparator]:{SPACE:cc(sc.FullColumnSeparator),OPERATOR:cc(sc.RightColumnRef,e=>e.value===`:`)},[sc.FullRowSeparator]:{SPACE:cc(sc.FullRowSeparator),OPERATOR:cc(sc.RightRowRef,e=>e.value===`:`)},[sc.Separator]:{SPACE:cc(sc.Separator),OPERATOR:cc(sc.RightRef,e=>e.value===`:`)},[sc.RightRef]:{SPACE:cc(sc.RightRef),NUMBER:cc(sc.Found),REFERENCE:cc(sc.Found,e=>ks(e.value)),SYMBOL:cc(sc.Found,e=>Ds(e.value)||Os(e.value))},[sc.RightColumnRef]:{SPACE:cc(sc.RightColumnRef),SYMBOL:cc(sc.Found,e=>Ds(e.value)),REFERENCE:cc(sc.Found,e=>ks(e.value))},[sc.RightRowRef]:{SPACE:cc(sc.RightRowRef),NUMBER:cc(sc.Found),REFERENCE:cc(sc.Found,e=>ks(e.value)),SYMBOL:cc(sc.Found,e=>Os(e.value))},[sc.Found]:{}};function dc(e){let t=0,n=uc[sc.LeftRef],r=``;for(;n!==void 0;){let i=e[t++];if(!i)return null;let a=n[i.type]?.find(e=>e.guard(i)),o=a?a.goTo:void 0;switch(o){case void 0:return null;case sc.Found:return r+=i.value,e.splice(0,t),{type:`REFERENCE`,value:r};default:n=uc[o],r+=i.value;break}}return null}function fc(e,t=L){let n=Hs(e,t),r=[];for(;n.length;)r.push(dc(n)||n.shift());return r}let pc=/[a-zA-Z0-9\_]+(\.[a-zA-Z0-9\_]+)*/,mc=[`-`,`+`],hc=[`%`,`#`];var gc=class{tokens;currentIndex=0;current;length;constructor(e){this.tokens=e,this.current=e[0],this.length=e.length}shift(){let e=this.tokens[this.currentIndex];return this.current=this.tokens[++this.currentIndex],e}get next(){return this.tokens[this.currentIndex+1]}};let _c={"#":40,"%":40,"^":30,"*":20,"/":20,"+":15,"-":15,"&":13,">":10,"<>":10,">=":10,"<":10,"<=":10,"=":10};function vc(e){let t=e.shift();if(!t)throw new Fi;switch(t.type){case`DEBUGGER`:let n=Cc(e,1e3);return n.debug=!0,n;case`NUMBER`:return{type:`NUMBER`,value:wi(t.value,L),tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex};case`STRING`:return{type:`STRING`,value:Xe(t.value),tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex};case`INVALID_REFERENCE`:return{type:`REFERENCE`,value:j.InvalidReference,tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex};case`REFERENCE`:if(e.current?.value===`:`&&e.next?.type===`REFERENCE`){e.shift();let n=e.shift();return{type:`REFERENCE`,value:`${t.value}:${n?.value}`,tokenStartIndex:t.tokenIndex,tokenEndIndex:n.tokenIndex}}return{type:`REFERENCE`,value:t.value,tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex};case`SYMBOL`:let r=t.value,i=e.current;if(Ac(t,i)){let{args:n,rightParen:i}=yc(e);return{type:`FUNCALL`,value:r,args:n,tokenStartIndex:t.tokenIndex,tokenEndIndex:i.tokenIndex}}let a=r.toUpperCase();return a===`TRUE`||a===`FALSE`?{type:`BOOLEAN`,value:a===`TRUE`,tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex}:{type:`SYMBOL`,value:Xe(t.value,`'`),tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex};case`LEFT_PAREN`:let o=Cc(e),s=xc(e,`RIGHT_PAREN`,A(`Missing closing parenthesis`));return{...o,tokenStartIndex:t.tokenIndex,tokenEndIndex:s.tokenIndex};case`LEFT_BRACE`:return Sc(e,t);case`OPERATOR`:let c=t.value;if(mc.includes(c)){let n=Cc(e,_c[c]);return{type:`UNARY_OPERATION`,value:c,operand:n,tokenStartIndex:t.tokenIndex,tokenEndIndex:n.tokenEndIndex}}throw new Fi(A(`Unexpected token: %s`,t.value));default:throw new Fi(A(`Unexpected token: %s`,t.value))}}function yc(e){if(xc(e,`LEFT_PAREN`,A(`Missing opening parenthesis`)),e.current?.type===`RIGHT_PAREN`)return{args:[],rightParen:xc(e,`RIGHT_PAREN`)};let t=[];for(t.push(bc(e));e.current?.type!==`RIGHT_PAREN`;)xc(e,`ARG_SEPARATOR`,A(`Wrong function call`)),t.push(bc(e));return{args:t,rightParen:xc(e,`RIGHT_PAREN`)}}function bc(e){let t=e.current;return t?.type===`ARG_SEPARATOR`?{type:`EMPTY`,value:``,tokenStartIndex:t.tokenIndex,tokenEndIndex:t.tokenIndex}:t?.type===`RIGHT_PAREN`?{type:`EMPTY`,value:``,tokenStartIndex:t.tokenIndex-1,tokenEndIndex:t.tokenIndex-1}:Cc(e)}function xc(e,t,n){let r=e.shift();if(!r||r.type!==t)throw new Fi(n);return r}function Sc(e,t){let n=[],r=[Cc(e)];for(;e.current?.type!==`RIGHT_BRACE`;){let t=e.shift();if(!t)throw new Fi(A(`Missing closing brace`));if(t.type===`ARG_SEPARATOR`)r.push(Cc(e));else if(t.type===`ARRAY_ROW_SEPARATOR`)n.push(r),r=[Cc(e)];else throw new Fi(A(`Unexpected token: %s`,t.value))}let i=xc(e,`RIGHT_BRACE`,A(`Missing closing brace`));return n.push(r),{type:`ARRAY`,value:n,tokenStartIndex:t.tokenIndex,tokenEndIndex:i.tokenIndex}}function Cc(e,t=0){if(e.length===0)throw new Fi;let n=vc(e);for(;e.current?.type===`OPERATOR`&&_c[e.current.value]>t;){let t=e.shift(),r=t.value;if(hc.includes(r))n={type:`UNARY_OPERATION`,value:r,operand:n,postfix:!0,tokenStartIndex:n.tokenStartIndex,tokenEndIndex:t.tokenIndex};else{let t=Cc(e,_c[r]);n={type:`BIN_OPERATION`,value:r,left:n,right:t,tokenStartIndex:n.tokenStartIndex,tokenEndIndex:t.tokenEndIndex}}}return n}function wc(e){return Tc(fc(e))}function Tc(e){let t=new gc(e.map((e,t)=>({type:e.type,value:e.value,tokenIndex:t})).filter(e=>e.type!==`SPACE`));t.current?.value===`=`&&t.shift();let n=Cc(t);if(t.current)throw new Fi;return n}function Ec(e,t,n){return kc(e,e=>e.type===t?n(e):e)}function Dc(e){return Array.from(Oc(e))}function*Oc(e){switch(yield e,e.type){case`FUNCALL`:for(let t of e.args)yield*Oc(t);break;case`ARRAY`:for(let t of e.value)for(let e of t)yield*Oc(e);break;case`UNARY_OPERATION`:yield*Oc(e.operand);break;case`BIN_OPERATION`:yield*Oc(e.left),yield*Oc(e.right);break}}function kc(e,t){switch(e=t(e),e.type){case`FUNCALL`:return{...e,args:e.args.map(e=>kc(e,t))};case`ARRAY`:return{...e,value:e.value.map(e=>e.map(e=>kc(e,t)))};case`UNARY_OPERATION`:return{...e,operand:kc(e.operand,t)};case`BIN_OPERATION`:return{...e,right:kc(e.right,t),left:kc(e.left,t)};default:return e}}function Ac(e,t){return t?.type===`LEFT_PAREN`&&pc.test(e.value)&&e.value===Xe(e.value,`'`)}var B=class{content={};add(e,t){if(e in this.content)throw Error(`${e} is already present in this registry!`);return this.replace(e,t)}replace(e,t){return this.content[e]=t,this}get(e){let t=this.content[e];if(!t&&!(e in this.content))throw Error(`Cannot find ${e} in this registry!`);return t}contains(e){return e in this.content}getAll(){return Object.values(this.content)}getKeys(){return Object.keys(this.content)}remove(e){delete this.content[e]}};function jc(e,t){let n=e.zone,r=Yn(n,t(e.sheetId)),i=e.parts;return e.parts.length===1&&Kn(r)>1?i=[e.parts[0],e.parts[0]]:e.parts.length===2&&Kn(r)===1&&(i=[e.parts[0]]),{unboundedZone:n,zone:r,parts:i,prefixSheet:e.prefixSheet,invalidSheetName:e.invalidSheetName,sheetId:e.sheetId}}function Mc(e,t){let n=e.xc,{xc:r,sheetName:i}=As(n),a=mn(r);return jc({zone:a,parts:Bc(r,a),sheetId:e.sheetId,prefixSheet:!!i,invalidSheetName:e.invalidSheetName},t)}function Nc(e){let t={left:-1,top:-1,right:-1,bottom:-1};return{sheetId:``,zone:t,unboundedZone:t,parts:[],invalidXc:e,prefixSheet:!1}}function Pc(e){return Gn(e.unboundedZone)}function Fc(e){return Wn(e.unboundedZone)}function Ic(e,t,n,r={useBoundedReference:!1,useFixedReference:!1}){if(e.invalidXc)return e.invalidXc;if(e.zone.bottom-e.zone.top<0||e.zone.right-e.zone.left<0||e.zone.left<0||e.zone.top<0)return j.InvalidReference;let i=!t||e.sheetId!==t||e.invalidSheetName||e.prefixSheet,a=``;if(i&&(a=e.invalidSheetName?Ze(e.invalidSheetName):Ze(n(e.sheetId))),i&&!a)return j.InvalidReference;let o=Xc(e,0,r);return e.parts&&e.parts.length===2&&(e.zone.top!==e.zone.bottom||e.zone.left!==e.zone.right||e.parts[0].rowFixed||e.parts[0].colFixed||e.parts[1].rowFixed||e.parts[1].colFixed)&&(o+=`:`,o+=Xc(e,1,r)),`${i?a+`!`:``}${o}`}function Lc(e,t,n){let r=n.sheetId===e?t:n.sheetId;return{...n,sheetId:r}}function Rc(e,t,n){if(!n)return;let r=e.getRangeFromSheetXC(t,n);return r.invalidSheetName||r.invalidXc?void 0:r}function zc(e){let t=[];for(let n of e)for(let e of In(n.zone))t.push({...e,sheetId:n.sheetId});return t}function Bc(e,t){let n=e.split(`:`).map(e=>{let t=Es(e);return{colFixed:t?!1:e.startsWith(`$`),rowFixed:t?e.startsWith(`$`):e.includes(`$`,1)}}),r=t.bottom===void 0,i=t.right===void 0;return r&&(n[0].rowFixed=n[0].rowFixed||n[1].rowFixed,n[1].rowFixed=n[0].rowFixed||n[1].rowFixed),i&&(n[0].colFixed=n[0].colFixed||n[1].colFixed,n[1].colFixed=n[0].colFixed||n[1].colFixed),n}function Vc(e){let t={left:e.col,top:e.row,right:e.col,bottom:e.row};return{sheetId:e.sheetId,zone:t}}function Hc(e){if(yn(e.zone))return e;let t={...e.unboundedZone},n={...e.zone},r=e.parts;if(t.right!==void 0&&t.right<t.left){let e=t.right;t.right=t.left,t.left=e,n.right=n.left,n.left=e,r=[{colFixed:r[1]?.colFixed||!1,rowFixed:r[0]?.rowFixed||!1},{colFixed:r[0]?.colFixed||!1,rowFixed:r[1]?.rowFixed||!1}]}if(t.bottom!==void 0&&t.bottom<t.top){let e=t.bottom;t.bottom=t.top,t.top=e,n.bottom=n.top,n.top=e,r=[{colFixed:r[0]?.colFixed||!1,rowFixed:r[1]?.rowFixed||!1},{colFixed:r[1]?.colFixed||!1,rowFixed:r[0]?.rowFixed||!1}]}return{unboundedZone:t,zone:n,parts:r,invalidXc:e.invalidXc,prefixSheet:e.prefixSheet,invalidSheetName:e.invalidSheetName,sheetId:e.sheetId}}let Uc=new class extends B{add(e,t){return super.add(e,t),this}get(e){return this.content[e]}};Uc.add(`REMOVE_COLUMNS_ROWS`,e=>({applyChange:Wc(e),sheetId:e.sheetId,sheetName:{old:e.sheetName,current:e.sheetName}})).add(`ADD_COLUMNS_ROWS`,e=>({applyChange:Gc(e),sheetId:e.sheetId,sheetName:{old:e.sheetName,current:e.sheetName}})).add(`DELETE_SHEET`,e=>({applyChange:Kc(e),sheetId:e.sheetId,sheetName:{old:e.sheetName,current:e.sheetName}})).add(`RENAME_SHEET`,e=>({applyChange:qc(e),sheetId:e.sheetId,sheetName:{old:e.oldName,current:e.newName}})).add(`MOVE_RANGES`,e=>({applyChange:Jc(e),sheetId:e.sheetId,sheetName:{old:e.sheetName,current:e.sheetName}}));function Wc(e){let t=e.dimension===`COL`?`left`:`top`,n=e.dimension===`COL`?`right`:`bottom`,r=e.dimension===`COL`?`columns`:`rows`,i=[...e.elements];i.sort((e,t)=>t-e);let a=$e(i);return i=>{if(i.sheetId!==e.sheetId)return{changeType:`NONE`,range:i};let o=i,s=`NONE`;for(let e of a){let a=Rt(e),c=Lt(e);if(i.zone[t]<=a&&a<=i.zone[n]){let e=Math.min(i.zone[n],c)-a+1;s=`RESIZE`,o=Yc(o,r,s,-e)}else if(i.zone[t]>=a&&i.zone[n]<=c)s=`REMOVE`,o=Nc(j.InvalidReference);else if(i.zone[t]<=c&&i.zone[n]>=c){let e=c-i.zone[t]+1;s=`RESIZE`,o=Yc(o,r,s,-e),o=Yc(o,r,`MOVE`,-(i.zone[t]-a))}else a<i.zone[t]&&(s=`MOVE`,o=Yc(o,r,s,-(c-a+1)))}return{changeType:s,range:o}}}function Gc(e){let t=e.dimension===`COL`?`left`:`top`,n=e.dimension===`COL`?`right`:`bottom`,r=e.dimension===`COL`?`columns`:`rows`;return i=>{if(i.sheetId!==e.sheetId)return{changeType:`NONE`,range:i};if(e.position===`after`){if(i.zone[t]<=e.base&&e.base<i.zone[n])return{changeType:`RESIZE`,range:Yc(i,r,`RESIZE`,e.quantity)};if(e.base<i.zone[t])return{changeType:`MOVE`,range:Yc(i,r,`MOVE`,e.quantity)}}else{if(i.zone[t]<e.base&&e.base<=i.zone[n])return{changeType:`RESIZE`,range:Yc(i,r,`RESIZE`,e.quantity)};if(e.base<=i.zone[t])return{changeType:`MOVE`,range:Yc(i,r,`MOVE`,e.quantity)}}return{changeType:`NONE`,range:i}}}function Kc(e){return t=>{if(t.sheetId!==e.sheetId&&t.invalidSheetName!==e.sheetName)return{changeType:`NONE`,range:t};let n=e.sheetName;return t={...Nc(j.InvalidReference),invalidSheetName:n},{changeType:`REMOVE`,range:t}}}function qc(e){return t=>{if(t.sheetId===e.sheetId)return{changeType:`CHANGE`,range:t};if(e.newName&&t.invalidSheetName===e.newName){let n=e.sheetId;return{changeType:`CHANGE`,range:{...t,sheetId:n,invalidSheetName:void 0}}}if(e.oldName&&t.invalidSheetName===e.oldName){let n=e.sheetId;return{changeType:`CHANGE`,range:{...t,sheetId:n,invalidSheetName:void 0}}}return{changeType:`NONE`,range:t}}}function Jc(e){let t=e.target[0];return n=>{if(n.sheetId!==e.sheetId||!Mn(n.zone,t))return{changeType:`NONE`,range:n};let r=e.targetSheetId,i=Yc(n,`both`,`MOVE`,[e.col-t.left,e.row-t.top]),a=e.sheetId===r?i.prefixSheet:!0;return{changeType:`MOVE`,range:{...i,sheetId:r,prefixSheet:a}}}}function Yc(e,t,n,r){return{...e,unboundedZone:zn(e.unboundedZone,t,n,r),zone:zn(e.zone,t,n,r)}}function Xc(e,t,n={useBoundedReference:!1,useFixedReference:!1}){let r=e.parts[t]?.colFixed||n.useFixedReference?`$`:``,i=qt(t===0?e.zone.left:e.zone.right),a=e.parts[t]?.rowFixed||n.useFixedReference?`$`:``,o=String(t===0?e.zone.top+1:e.zone.bottom+1),s=``;return s=Gn(e.unboundedZone)&&!n.useBoundedReference?t===0&&e.unboundedZone.hasHeader?r+i+a+o:r+i:Wn(e.unboundedZone)&&!n.useBoundedReference?t===0&&e.unboundedZone.hasHeader?r+i+a+o:a+o:r+i+a+o,s}function Zc(e){let t=[];for(let n=0;n<e;n++)t.push({cells:{}});return t}function Qc(e,t,n){return n.map(n=>n>=e?n+t:n)}function $c(e,t){return e=[...e].sort((e,t)=>t-e),t.map(t=>{for(let n of e)if(t>n)t--;else if(t===n)return;return t}).filter(w)}function el(e,t=`Sheet`){let n=1,r=`${t}${n}`;for(;e.includes(r);)r=`${t}${n}`,n++;return r}function tl(e,t){let n=1,r=A(`Copy of %s`,e),i=r.toString();for(;t.includes(i);)i=`${r} (${n})`,n++;return i}let nl=At(function(e){return Ye(e.trim().toUpperCase())});function rl(e,t){return e===void 0||t===void 0?!1:nl(e)===nl(t)}function il(e,t,n,r){if(!t.startsWith(`=`))return t;let i=fc(t);for(let t=1;t<i.length;t++)if(i[t].type===`REFERENCE`){let r=i[t].value,a=ol(e,r,n).range;r!==a&&(i[t]={value:a,type:`REFERENCE`})}else if(al(i,t)){let e=r(i[t].value);e!==i[t].value&&(i[t]={...i[t],value:e})}return gt(i.map(e=>e.value))}function al(e,t){let n=e[t],r;for(let n=t+1;n<e.length;n++)if(e[n].type!==`SPACE`){r=e[n];break}return n.type===`SYMBOL`&&!Ac(n,r)}function ol(e,t,n){let r=As(t).sheetName;if(r?!rl(r,n.sheetName.old):e!==n.sheetId)return{changeType:`NONE`,range:t};let i=ll(t,r?n.sheetId:e);if(i.invalidXc)return{changeType:`NONE`,range:t};let a=n.applyChange(i);if(a.changeType===`NONE`||a.changeType===`REMOVE`)return{changeType:a.changeType,range:t};let o=Ic(a.range,e,sl(n));return o===j.InvalidReference?{changeType:`REMOVE`,range:o}:{changeType:a.changeType,range:o}}function sl(e){return t=>t===e.sheetId?e.sheetName.current:``}function cl(e){return{numberOfRows:2**53-1,numberOfCols:2**53-1}}function ll(e,t){return ws.test(e)?Mc({xc:e,sheetId:t},cl):Nc(e)}var ul=class{code=``;constructor(e=new fl){this.scope=e}append(...e){this.code+=e.map(e=>e.toString()).join(`
12
+ `)+`
13
+ `}return(e){return new dl(this.scope,this.code,e)}toString(){return ml(this.code)}},dl=class{code;constructor(e,t,n){this.scope=e,this.returnExpression=n,this.code=ml(t)}toString(){return this.code}assignResultToVariable(){if(this.scope.isAlreadyDeclared(this.returnExpression))return this;let e=this.scope.nextVariableName(),t=new ul(this.scope);return t.append(this.code),t.append(`const ${e} = ${this.returnExpression};`),t.return(e)}},fl=class{nextId=1;declaredVariables=new Set;nextVariableName(){let e=`_${this.nextId++}`;return this.declaredVariables.add(e),e}isAlreadyDeclared(e){return this.declaredVariables.has(e)}};function pl(e){return e.split(`
14
+ `).map(e=>e.trim()).filter(e=>e!==``)}function ml(e){let t=``,n=0,r=pl(e);for(let e of r)e.startsWith(`}`)&&n--,t+=` `.repeat(n)+e+`
15
+ `,e.endsWith(`{`)&&n++;return t.trim()}let hl=_s.content,gl={"=":`EQ`,"+":`ADD`,"-":`MINUS`,"*":`MULTIPLY`,"/":`DIVIDE`,">=":`GTE`,"<>":`NE`,">":`GT`,"<=":`LTE`,"<":`LT`,"^":`POWER`,"&":`CONCATENATE`},_l={"-":`UMINUS`,"+":`UPLUS`,"%":`UNARY.PERCENT`,"#":`SPILLED.RANGE`},vl={},yl=new Intl.Collator(`en`,{sensitivity:`accent`});var bl=class e{rangeDependencies;hasDependencies;constructor(e,t,n,r,i,a,o,s){this.sheetId=e,this.tokens=t,this.literalValues=n,this.symbols=r,this.isBadExpression=a,this.normalizedFormula=o,this.execute=s,this.hasDependencies=i?.length>0,this.tokens.forEach(e=>{[`REFERENCE`,`NUMBER`,`STRING`,`INVALID_REFERENCE`].includes(e.type)&&(e.value=`__NO_REAL_VALUE__`)}),this.rangeDependencies=i}getTokens(e,t){let n=0,r=0,i=0;return this.isBadExpression||this.tokens.forEach(a=>{switch(a.type){case`REFERENCE`:case`INVALID_REFERENCE`:a.value=e.getRangeString(this.rangeDependencies[n++],this.sheetId,t);break;case`NUMBER`:a.value=this.literalValues.numbers[r++].value.toString();break;case`STRING`:a.value=`"${this.literalValues.strings[i++].value}"`;break}}),this.tokens}getAst(e){return Tc(this.getTokens(e))}toFormulaString(e,t){return this.isBadExpression?this.normalizedFormula:gt(this.getTokens(e,t).filter(e=>e.type!==`SPACE`).map(e=>e.value))}getNamedRangesInFormula(e){let t=[];for(let n=0;n<this.tokens.length;n++)if(al(this.tokens,n)){let r=e.getNamedRange(this.tokens[n].value);r&&t.push(r)}return t}usesSymbol(e){return this.symbols.some(t=>yl.compare(t,e)===0)}areAllFunctionsExportableToExcel(){return this.isBadExpression?!1:!Dc(Tc(this.tokens)).some(e=>e.type===`FUNCALL`&&!hl[e.value.toUpperCase()]?.isExported)}getFunctionsFromTokens(e,t){return this.isBadExpression||!e.some(e=>this.usesSymbol(e))?[]:Dc(this.getAst(t)).filter(t=>t.type===`FUNCALL`&&e.includes(t.value.toUpperCase())).map(e=>({functionName:e.value.toUpperCase(),args:e.args}))}isFirstNonWhitespaceSymbol(e){let t=this.tokens.find((e,t)=>t>0&&e.type!==`SPACE`);return t?.type===`SYMBOL`&&t.value.toUpperCase()===e}adaptCompiledFormula(t,n){let r=[],i=!1;for(let e of this.rangeDependencies){let n=t(e);r.push(n.range),n.changeType!==`NONE`&&(i=!0)}let a=this.renameNamedRangeTokens(n);return i||a?new e(this.sheetId,a?.newTokens||this.tokens,this.literalValues,a?.newSymbols||this.symbols,r,this.isBadExpression,Cl(a?.newTokens||this.tokens),this.execute):this}renameNamedRangeTokens(e){let t=!1,n=[],r=[];for(let i=0;i<this.tokens.length;i++){let a=this.tokens[i];if(al(this.tokens,i)){let n=e(this.tokens[i].value);n!==this.tokens[i].value&&(t=!0,a={...this.tokens[i],value:n})}n.push(a),a.type===`SYMBOL`&&r.push(a.value)}return t?{newSymbols:r,newTokens:n}:void 0}static IsBadExpression(e){return xl(fc(e)).isBadExpression}static CopyWithDependencies(t,n,r){return new e(n,t.tokens,t.literalValues,t.symbols,r,t.isBadExpression,t.normalizedFormula,t.execute)}static CopyWithDependenciesAndLiteral(t,n,r,i,a){return new e(n,t.tokens,{numbers:i,strings:a},t.symbols,r,t.isBadExpression,t.normalizedFormula,t.execute)}static CompileForSerializedFormula(t,n){let r=xl(n.tokens);return new e(t,n.tokens,n.literalValues,n.symbols,n.rangeDependencies,n.isBadExpression,n.normalizedFormula,r.execute)}static Compile(t,n,r){let i=xl(fc(t));return new e(n,i.tokens,i.literalValues,i.symbols,i.dependencies.map(e=>r.getRangeFromSheetXC(n,e)),i.isBadExpression,i.normalizedFormula,i.execute)}};function xl(e){try{return Sl(e)}catch(t){return{tokens:e,literalValues:{numbers:[],strings:[]},symbols:[],dependencies:[],execute:function(){return t},isBadExpression:!0,normalizedFormula:e.map(e=>e.value).join(``)}}}function Sl(e){let{dependencies:t,literalValues:n,symbols:r}=wl(e),i=Cl(e);if(!vl[i]){let t=Tc([...e]),n=new fl,s=0,c=0,l=0;if(t.type===`BIN_OPERATION`&&t.value===`:`||t.type===`EMPTY`)throw new Fi(A(`Invalid formula`));let u=o(t),d=new ul;d.append(u),d.append(`return ${u.returnExpression};`),vl[i]=Function(`deps`,`ref`,`range`,`getSymbolValue`,`ctx`,d.toString());function a(e){let{args:t}=e,n=hl[e.value.toUpperCase()];if(!n)throw new zi(A(`Unknown function: "%s"`,e.value));Tl(e);let r=[],i=rs(n,t.length);for(let e=0;e<t.length;e++){let a=n.args[i[e].index],s=t[e],c=(a.type||[]).some(e=>El(e));r.push(o(s,c))}return r}function o(e,t=!1){let i=new ul(n);switch(e.debug&&(i.append(`debugger;`),i.append(`ctx["debug"] = true;`)),e.type){case`BOOLEAN`:return i.return(`{ value: ${e.value} }`);case`NUMBER`:return i.return(`this.literalValues.numbers[${c++}]`);case`STRING`:return i.return(`this.literalValues.strings[${s++}]`);case`REFERENCE`:return i.return(`${e.value.includes(`:`)||t?`range`:`ref`}(deps[${l++}])`);case`FUNCALL`:let n=a(e).map(e=>e.assignResultToVariable());i.append(...n);let u=e.value.toUpperCase();return i.return(`ctx['${u}'](${n.map(e=>e.returnExpression)})`);case`ARRAY`:return o({type:`FUNCALL`,value:`ARRAY.LITERAL`,args:e.value.map(e=>({type:`FUNCALL`,value:`ARRAY.ROW`,args:e,tokenStartIndex:0,tokenEndIndex:0})),tokenStartIndex:0,tokenEndIndex:0});case`UNARY_OPERATION`:{let t=_l[e.value],n=o(e.operand,e.value===`#`).assignResultToVariable();return i.append(n),i.return(`ctx['${t}'](${n.returnExpression})`)}case`BIN_OPERATION`:{let t=gl[e.value],n=o(e.left,!1).assignResultToVariable(),r=o(e.right,!1).assignResultToVariable();return i.append(n),i.append(r),i.return(`ctx['${t}'](${n.returnExpression}, ${r.returnExpression})`)}case`SYMBOL`:let d=r.indexOf(e.value);return i.return(`getSymbolValue(this.symbols[${d}], ${t})`);case`EMPTY`:return i.return(`undefined`)}}}return{execute:vl[i],dependencies:t,literalValues:n,symbols:r,tokens:e,isBadExpression:!1,normalizedFormula:i}}function Cl(e){let t=``;for(let n of e)switch(n.type){case`STRING`:t+=`|S|`;break;case`NUMBER`:t+=`|N|`;break;case`REFERENCE`:case`INVALID_REFERENCE`:n.value.includes(`:`)?t+=`|R|`:t+=`|C|`;break;case`SPACE`:break;default:t+=n.value;break}return t}function wl(e){let t={numbers:[],strings:[]},n=[],r=[];for(let i of e)switch(i.type){case`INVALID_REFERENCE`:case`REFERENCE`:n.push(i.value);break;case`STRING`:let e=Xe(i.value);t.strings.push({value:e});break;case`NUMBER`:{let e=wi(i.value,L);t.numbers.push({value:e});break}case`SYMBOL`:r.push(Xe(i.value,`'`))}return{dependencies:n,literalValues:t,symbols:r}}function Tl(e){let t=e.args.length,n=e.value.toUpperCase(),r=hl[n],{nbrArgRepeating:i,minArgRequired:a}=r;if(t<a)throw new Fi(A(`Invalid number of arguments for the %(functionName)s function. Expected %(minArgRequired)s minimum, but got %(nbrArgSupplied)s instead.`,{functionName:n,minArgRequired:a,nbrArgSupplied:t}));if(t>r.maxArgPossible)throw new Fi(A(`Invalid number of arguments for the %(functionName)s function. Expected %(maxArgPossible)s maximum, but got %(nbrArgSupplied)s instead.`,{functionName:n,maxArgPossible:r.maxArgPossible,nbrArgSupplied:t}));if(i>1){let e=i*Math.floor((t-a)/i),o=t-a-e-r.nbrOptionalNonRepeatingArgs;if(o>0)throw new Fi(A(`Invalid number of arguments for the %(functionName)s function. Repeatable arguments should be supplied in groups of %(nbrArgRepeating)s, with up to %(nbrArgOptional)s optional. Got %(nbrValueRemaining)s too many.`,{functionName:n,nbrArgRepeating:i,nbrArgOptional:r.nbrOptionalNonRepeatingArgs,nbrValueRemaining:o}))}}function El(e){return e.startsWith(`RANGE`)}let V=function(e){return e.boolean=`boolean`,e.number=`number`,e.text=`text`,e.empty=`empty`,e.error=`error`,e}({});function Dl(e){return`sheetId`in e}function Ol(e){return`dimension`in e&&`sheetId`in e&&`elements`in e}function kl(e){return`target`in e&&`sheetId`in e}function Al(e){return`ranges`in e}function jl(e){return`col`in e&&`row`in e&&`sheetId`in e}function Ml(e){return`sheetId`in e&&`zone`in e}let Nl=new Set([`RENAME_SHEET`,`DELETE_SHEET`,`CREATE_SHEET`,`DUPLICATE_SHEET`,`ADD_COLUMNS_ROWS`,`REMOVE_COLUMNS_ROWS`,`UNDO`,`REDO`,`ADD_MERGE`,`REMOVE_MERGE`,`UPDATE_LOCALE`,`ADD_PIVOT`,`UPDATE_PIVOT`,`INSERT_PIVOT`,`RENAME_PIVOT`,`REMOVE_PIVOT`,`DUPLICATE_PIVOT`,`CREATE_NAMED_RANGE`,`UPDATE_NAMED_RANGE`,`DELETE_NAMED_RANGE`]),Pl=new Set([`EVALUATE_CELLS`,`EVALUATE_CHARTS`,`UPDATE_CELL`,`UNHIDE_COLUMNS_ROWS`,`HIDE_COLUMNS_ROWS`,`GROUP_HEADERS`,`UNGROUP_HEADERS`,`FOLD_ALL_HEADER_GROUPS`,`FOLD_HEADER_GROUP`,`FOLD_HEADER_GROUPS_IN_ZONE`,`UNFOLD_ALL_HEADER_GROUPS`,`UNFOLD_HEADER_GROUP`,`UNFOLD_HEADER_GROUPS_IN_ZONE`,`UPDATE_TABLE`,`UPDATE_FILTER`,`UNDO`,`REDO`]),Fl=new Set([`MOVE_RANGES`]),Il=new Set([`EVALUATE_CELLS`,`ADD_CONDITIONAL_FORMAT`,`REMOVE_CONDITIONAL_FORMAT`,`CHANGE_CONDITIONAL_FORMAT_PRIORITY`]),Ll=new Set([`AUTOFILL_CELL`,`SET_BORDER`,`SET_ZONE_BORDERS`,`SET_BORDERS_ON_TARGET`]),Rl=new Set([`UNHIDE_COLUMNS_ROWS`,`HIDE_COLUMNS_ROWS`,`GROUP_HEADERS`,`UNGROUP_HEADERS`,`FOLD_ALL_HEADER_GROUPS`,`FOLD_HEADER_GROUP`,`FOLD_HEADER_GROUPS_IN_ZONE`,`UNFOLD_ALL_HEADER_GROUPS`,`UNFOLD_HEADER_GROUP`,`UNFOLD_HEADER_GROUPS_IN_ZONE`,`UPDATE_TABLE`,`UPDATE_FILTER`]),zl=new Set([`START`,`ACTIVATE_SHEET`,`COPY`,`RESIZE_SHEETVIEW`,`SET_VIEWPORT_OFFSET`,`SET_ZOOM`,`EVALUATE_CELLS`,`EVALUATE_CHARTS`,`SET_FORMULA_VISIBILITY`,`UPDATE_FILTER`,`UPDATE_CHART`,`UPDATE_CHART_REGION`,`UPDATE_CAROUSEL_ACTIVE_ITEM`,`UPDATE_PIVOT`]),Bl=new Set([`LOCK_SHEET`,`UNLOCK_SHEET`,`MOVE_SHEET`,`DUPLICATE_SHEET`,`CREATE_SHEET`,`HIDE_SHEET`,`SHOW_SHEET`,`COPY`,`START`,`SCROLL_TO_CELL`,`ACTIVATE_SHEET`,`RESIZE_SHEETVIEW`,`SET_VIEWPORT_OFFSET`,`SET_FORMULA_VISIBILITY`,`SELECT_FIGURE`,`EVALUATE_CHARTS`,`EVALUATE_CELLS`,`REQUEST_UNDO`,`REQUEST_REDO`,`REPLACE_SEARCH`,`SET_ZOOM`,`UPDATE_CAROUSEL_ACTIVE_ITEM`,`DUPLICATE_PIVOT_IN_NEW_SHEET`,`UPDATE_FILTER`]),Vl=new 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.UNFREEZE_COLUMNS.UNFREEZE_ROWS.FREEZE_COLUMNS.FREEZE_ROWS.UNFREEZE_COLUMNS_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_BORDER.SET_ZONE_BORDERS.SET_BORDERS_ON_TARGET.CREATE_CHART.UPDATE_CHART.DELETE_CHART.CREATE_TABLE.REMOVE_TABLE.UPDATE_TABLE.CREATE_TABLE_STYLE.REMOVE_TABLE_STYLE.CREATE_IMAGE.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`.split(`.`));function Hl(e){return Vl.has(e.type)}function Ul(e){return zl.has(e.type)}var Wl=class{reasons;constructor(e=[]){Array.isArray(e)||(e=[e]),e=[...new Set(e)],this.reasons=e.filter(e=>e!==H.Success)}static get Success(){return Gl}get isSuccessful(){return this.reasons.length===0}isCancelledBecause(e){return this.reasons.includes(e)}};let Gl=new Wl,H=function(e){return e.Success=`Success`,e.CancelledForUnknownReason=`CancelledForUnknownReason`,e.WillRemoveExistingMerge=`WillRemoveExistingMerge`,e.CannotMoveTableHeader=`CannotMoveTableHeader`,e.MergeIsDestructive=`MergeIsDestructive`,e.CellIsMerged=`CellIsMerged`,e.InvalidTarget=`InvalidTarget`,e.EmptyUndoStack=`EmptyUndoStack`,e.EmptyRedoStack=`EmptyRedoStack`,e.NotEnoughElements=`NotEnoughElements`,e.NotEnoughSheets=`NotEnoughSheets`,e.MissingSheetName=`MissingSheetName`,e.UnchangedSheetName=`UnchangedSheetName`,e.DuplicatedSheetName=`DuplicatedSheetName`,e.DuplicatedSheetId=`DuplicatedSheetId`,e.ForbiddenCharactersInSheetName=`ForbiddenCharactersInSheetName`,e.WrongSheetMove=`WrongSheetMove`,e.WrongSheetPosition=`WrongSheetPosition`,e.InvalidAnchorZone=`InvalidAnchorZone`,e.SelectionOutOfBound=`SelectionOutOfBound`,e.TargetOutOfSheet=`TargetOutOfSheet`,e.WrongCutSelection=`WrongCutSelection`,e.WrongPasteSelection=`WrongPasteSelection`,e.WrongPasteOption=`WrongPasteOption`,e.WrongFigurePasteOption=`WrongFigurePasteOption`,e.EmptyClipboard=`EmptyClipboard`,e.EmptyRange=`EmptyRange`,e.EmptyTarget=`EmptyTarget`,e.InvalidRange=`InvalidRange`,e.InvalidZones=`InvalidZones`,e.InvalidSheetId=`InvalidSheetId`,e.InvalidCellId=`InvalidCellId`,e.InvalidFigureId=`InvalidFigureId`,e.InputAlreadyFocused=`InputAlreadyFocused`,e.MaximumRangesReached=`MaximumRangesReached`,e.MinimumRangesReached=`MinimumRangesReached`,e.InvalidChartDefinition=`InvalidChartDefinition`,e.InvalidDataSet=`InvalidDataSet`,e.InvalidYRange=`InvalidYRange`,e.InvalidXRange=`InvalidXRange`,e.InvalidLabelRange=`InvalidLabelRange`,e.InvalidBubbleSizeRange=`InvalidBubbleSizeRange`,e.InvalidScorecardKeyValue=`InvalidScorecardKeyValue`,e.InvalidScorecardBaseline=`InvalidScorecardBaseline`,e.InvalidGaugeDataRange=`InvalidGaugeDataRange`,e.EmptyGaugeRangeMin=`EmptyGaugeRangeMin`,e.GaugeRangeMinNaN=`GaugeRangeMinNaN`,e.EmptyGaugeRangeMax=`EmptyGaugeRangeMax`,e.GaugeRangeMaxNaN=`GaugeRangeMaxNaN`,e.GaugeLowerInflectionPointNaN=`GaugeLowerInflectionPointNaN`,e.GaugeUpperInflectionPointNaN=`GaugeUpperInflectionPointNaN`,e.InvalidAutofillSelection=`InvalidAutofillSelection`,e.MinBiggerThanMax=`MinBiggerThanMax`,e.LowerBiggerThanUpper=`LowerBiggerThanUpper`,e.MidBiggerThanMax=`MidBiggerThanMax`,e.MinBiggerThanMid=`MinBiggerThanMid`,e.FirstArgMissing=`FirstArgMissing`,e.SecondArgMissing=`SecondArgMissing`,e.MinNaN=`MinNaN`,e.MidNaN=`MidNaN`,e.MaxNaN=`MaxNaN`,e.ValueUpperInflectionNaN=`ValueUpperInflectionNaN`,e.ValueLowerInflectionNaN=`ValueLowerInflectionNaN`,e.MinInvalidFormula=`MinInvalidFormula`,e.MidInvalidFormula=`MidInvalidFormula`,e.MaxInvalidFormula=`MaxInvalidFormula`,e.ValueUpperInvalidFormula=`ValueUpperInvalidFormula`,e.ValueLowerInvalidFormula=`ValueLowerInvalidFormula`,e.InvalidSortAnchor=`InvalidSortAnchor`,e.InvalidSortZone=`InvalidSortZone`,e.SortZoneWithArrayFormulas=`SortZoneWithArrayFormulas`,e.WaitingSessionConfirmation=`WaitingSessionConfirmation`,e.MergeOverlap=`MergeOverlap`,e.TooManyHiddenElements=`TooManyHiddenElements`,e.Readonly=`Readonly`,e.InvalidViewportSize=`InvalidViewportSize`,e.InvalidScrollingDirection=`InvalidScrollingDirection`,e.ViewportScrollLimitsReached=`ViewportScrollLimitsReached`,e.FigureDoesNotExist=`FigureDoesNotExist`,e.InvalidConditionalFormatId=`InvalidConditionalFormatId`,e.InvalidConditionalFormatType=`InvalidConditionalFormatType`,e.InvalidCellPopover=`InvalidCellPopover`,e.EmptySelectedRange=`EmptySelectedRange`,e.InvalidFreezeQuantity=`InvalidFreezeQuantity`,e.FrozenPaneOverlap=`FrozenPaneOverlap`,e.ValuesNotChanged=`ValuesNotChanged`,e.InvalidFilterZone=`InvalidFilterZone`,e.TableNotFound=`TableNotFound`,e.TableOverlap=`TableOverlap`,e.InvalidTableConfig=`InvalidTableConfig`,e.InvalidTableStyle=`InvalidTableStyle`,e.FilterNotFound=`FilterNotFound`,e.MergeInTable=`MergeInTable`,e.NonContinuousTargets=`NonContinuousTargets`,e.DuplicatedFigureId=`DuplicatedFigureId`,e.InvalidSelectionStep=`InvalidSelectionStep`,e.DuplicatedChartId=`DuplicatedChartId`,e.ChartDoesNotExist=`ChartDoesNotExist`,e.InvalidHeaderIndex=`InvalidHeaderIndex`,e.InvalidQuantity=`InvalidQuantity`,e.MoreThanOneColumnSelected=`MoreThanOneColumnSelected`,e.EmptySplitSeparator=`EmptySplitSeparator`,e.SplitWillOverwriteContent=`SplitWillOverwriteContent`,e.NoSplitSeparatorInSelection=`NoSplitSeparatorInSelection`,e.NoActiveSheet=`NoActiveSheet`,e.InvalidLocale=`InvalidLocale`,e.MoreThanOneRangeSelected=`MoreThanOneRangeSelected`,e.NoColumnsProvided=`NoColumnsProvided`,e.ColumnsNotIncludedInZone=`ColumnsNotIncludedInZone`,e.DuplicatesColumnsSelected=`DuplicatesColumnsSelected`,e.InvalidHeaderGroupStartEnd=`InvalidHeaderGroupStartEnd`,e.HeaderGroupAlreadyExists=`HeaderGroupAlreadyExists`,e.UnknownHeaderGroup=`UnknownHeaderGroup`,e.UnknownDataValidationRule=`UnknownDataValidationRule`,e.UnknownDataValidationCriterionType=`UnknownDataValidationCriterionType`,e.InvalidDataValidationCriterionValue=`InvalidDataValidationCriterionValue`,e.InvalidNumberOfCriterionValues=`InvalidNumberOfCriterionValues`,e.InvalidCopyPasteSelection=`InvalidCopyPasteSelection`,e.NoChanges=`NoChanges`,e.InvalidInputId=`InvalidInputId`,e.SheetIsHidden=`SheetIsHidden`,e.InvalidTableResize=`InvalidTableResize`,e.PivotIdNotFound=`PivotIdNotFound`,e.PivotIdTaken=`PivotIdTaken`,e.PivotInError=`PivotInError`,e.EmptyName=`EmptyName`,e.ValueCellIsInvalidFormula=`ValueCellIsInvalidFormula`,e.InvalidDefinition=`InvalidDefinition`,e.InvalidColor=`InvalidColor`,e.InvalidPivotDataSet=`InvalidPivotDataSet`,e.InvalidPivotCustomField=`InvalidPivotCustomField`,e.MissingFigureArguments=`MissingFigureArguments`,e.InvalidCarouselItem=`InvalidCarouselItem`,e.SheetLocked=`SheetLocked`,e.InvalidZoomLevel=`InvalidZoomLevel`,e.NamedRangeNameAlreadyExists=`NamedRangeNameAlreadyExists`,e.NamedRangeInvalidName=`NamedRangeInvalidName`,e.NamedRangeNameLooksLikeCellReference=`NamedRangeNameLooksLikeCellReference`,e.NamedRangeNotFound=`NamedRangeNotFound`,e.SubCommandOnly=`SubCommandOnly`,e}({});function Kl(e){return/^https?:\/\//i.test(e)?e:`https://${e}`}let ql=new B;function Jl(e,t){return e=Kl(e),{url:e,label:t||e,isExternal:!0,isUrlEditable:!0}}ql.add(`sheet_URL`,{match:e=>lt(e),createLink:(e,t)=>({label:t,url:e,isExternal:!1,isUrlEditable:!1}),urlRepresentation(e,t){let n=dt(e);return t.tryGetSheetName(n)||A(`Invalid sheet`)},open(e,t){let n=dt(e);t.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:t.model.getters.getActiveSheetId(),sheetIdTo:n}).isCancelledBecause(H.SheetIsHidden)&&t.notifyUser({type:`warning`,sticky:!1,text:A(`Cannot open the link because the linked sheet is hidden.`)})},sequence:0,title:A(`Sheets`),getLinkProposals(e){return e.model.getters.getSheetIds().map(t=>{let n=e.model.getters.getSheet(t);return{...this.createLink(ut(t),n.name),icon:`o-spreadsheet-Icon.INSERT_SHEET`}})}});let Yl={createLink:Jl,match:e=>at(e),open:e=>window.open(e,`_blank`),urlRepresentation:e=>e,sequence:0,title:A(`Web`)};function Xl(e){return ql.getAll().sort((e,t)=>e.sequence-t.sequence).find(t=>t.match(e))||Yl}function Zl(e,t){return Xl(e.url).urlRepresentation(e.url,t)}function Ql(e,t,n){Xl(e.url).open(e.url,t,n)}function $l(e){if(typeof e==`string`){if(it(e)){let{label:t,url:n}=st(e);return Xl(n).createLink(n,t)}else if(at(e))return Jl(e)}}function eu(e,t,n){return ou({value:qo(t.format)&&e.parsedValue!==null?e.content:e.parsedValue,format:t.format,origin:n},t.locale,n)}function tu(e,t,n,r,i,a,o){return n.startsWith(`=`)?ru(e,t,n,r,i,a):nu(e,t,n,r,i,o)}function nu(e,t,n,r,i,a){let o=e.getLocale(),s=au(n,o);if(!r&&typeof s==`number`){let e=Ao(n,o);if(a?.avoidAutomaticDateFormat&&e)return{id:t,content:n,style:i,format:r,isFormula:!1,parsedValue:n};r=e||jo(n)}else r||=void 0;return!qo(r)&&!n.startsWith(`'`)&&!Gi(n)&&(n=P(s)),{id:t,content:n,style:i,format:r,isFormula:!1,parsedValue:s}}function ru(e,t,n,r,i,a){return iu(t,bl.Compile(n,a,e),r,i)}function iu(e,t,n,r){return{id:e,format:n,style:r,isFormula:!0,compiledFormula:t}}function au(e,t){if(e.startsWith(`=`))throw Error(`Cannot parse "${e}" because it's not a literal value. It's a formula`);if(e.startsWith(`'`))return e.slice(1);if(e===``)return null;if(e.includes(`
16
+ `))return e;if(Si(e,L))return wi(e,L);let n=Kr(e,t);return n?n.value:tt(e)?e.toUpperCase()===`TRUE`:e}function ou(e,t=L,n,r){let i=$l(e.value);if(!i)return _u(su(e,t,n,r),e.origin??n);let a=au(i.label,t);return _u({...su({value:a,format:e.format||(typeof a==`number`?Ao(i.label,t)||jo(i.label):void 0)},t,n,r),link:i},e.origin??n)}function su(e,t,n,r){let{value:i,format:a,message:o,errorOriginPosition:s}=e;a=r?.format||a;let c=R(i,{format:a,locale:t});return Gi(i)?gu(i,o,n,s):i===null?pu(a):qo(a)?du(P(i),a,c,n):typeof i==`number`?To(a||``)?mu(i,a,c,n):fu(i,a,c,n):typeof i==`boolean`?hu(i,a,c,n):du(i,a,c,n)}function U(e){return!!e&&uu(e)===V.number}function cu(e){return!!e&&uu(e)===V.text}function lu(e){return!!e&&uu(e)===V.error}function uu({value:e,format:t}){if(e===null)return V.empty;if(Gi(e))return V.error;if(qo(t))return V.text;switch(typeof e){case`number`:return V.number;case`boolean`:return V.boolean;case`string`:return V.text}}function du(e,t,n,r){return{value:e,format:t,formattedValue:n,position:r,type:V.text,isAutoSummable:!0,defaultAlign:`left`}}function fu(e,t,n,r){return{value:e||0,format:t,formattedValue:n,position:r,type:V.number,isAutoSummable:!0,defaultAlign:`right`}}let pu=At(function(e){return{value:null,format:e,formattedValue:``,type:V.empty,isAutoSummable:!0,defaultAlign:`left`}});function mu(e,t,n,r){return{value:e,format:t,formattedValue:n,position:r,type:V.number,isAutoSummable:!1,defaultAlign:`right`}}function hu(e,t,n,r){return{value:e,format:t,formattedValue:n,position:r,type:V.boolean,isAutoSummable:!1,defaultAlign:`center`}}function gu(e,t,n,r){return{value:e,formattedValue:e,message:t,position:n,type:V.error,isAutoSummable:!1,defaultAlign:`center`,errorOriginPosition:r}}function _u(e,t){return e.value===null||`origin`in e||(e.origin=t),e}function vu(e,t=1){return t*(e+4)-4}function yu(e=100,t=100){return new OffscreenCanvas(e,t).getContext(`2d`)}function bu(e,t,n,r){if(!t||!t.isFormula&&!t.content)return 23;let i=``;try{if(!t.isFormula){let e={format:t.format,locale:n};i=R(au(t.content,n),e)}}catch{i=j.GenericError}return xu(e,i,t.style,r)}function xu(e,t,n,r){return Cu(e,Nu(e,t,n,n?.wrapping===`wrap`?r-8:void 0),n).height+6}function Su(e,t=!1,n=!1){return`${n?`italic`:``} ${t?`bold`:``} ${e}px ${Se}`}function Cu(e,t,n={},r=`pt`){if(!t.length)return{width:0,height:0};let i=Au(n,r),a=t.map(t=>Ou(e,t,i)),o=vu(a[0].height,t.length),s=Math.max(...a.map(e=>e.width));if(!n.rotation)return{height:o,width:s};let c=Math.abs(Math.cos(n.rotation)),l=Math.abs(Math.sin(n.rotation));return{width:s*c+o*l,height:l*s+c*o}}function wu(e,t,n={},r=`pt`){return Tu(e,t,Au(n,r),n.rotation)}function Tu(e,t,n,r){let i=Ou(e,t,n);if(!r)return i.width;let a=Math.abs(Math.cos(r)),o=Math.abs(Math.sin(r));return i.width*a+i.height*o}let Eu={};function Du(e,t,n,r=`pt`){let i=Ou(e,t,Au(n,r));if(!n.rotation)return i;let a=Math.abs(Math.cos(n.rotation)),o=Math.abs(Math.sin(n.rotation));return{width:i.width*a+i.height*o,height:i.height*a+i.width*o}}function Ou(e,t,n){if(Eu[n]||(Eu[n]={}),Eu[n][t]===void 0){e.save(),e.font=n;let r=e.measureText(t);e.restore();let i=r.width,a=r.fontBoundingBoxAscent+r.fontBoundingBoxDescent;Eu[n][t]={width:i,height:a}}return Eu[n][t]}function ku(e){return Math.round(e*96/72)}function Au(e,t=`pt`){return`${e.italic?`italic `:``}${e.bold?`bold`:`400`} ${(t===`pt`?ju(e):e.fontSize)??xe}px ${Se}`}function ju(e){return ku(e?.fontSize||xe)}function Mu(e,t,n,r){if(wu(e,t,r)<=n)return[t];let i=[],a=``;for(let o of t)wu(e,a+o,r)>n?(i.push(a),a=o):a+=o;return i.push(a),i}function Nu(e,t,n,r){n||={},it(t)&&(t=st(t).label);let i=[],a=t.includes(`
17
+ `)?t.split(`
18
+ `):[t];for(let t of a){let a=t.includes(` `)?t.split(` `):[t];if(!r){i.push(t);continue}let o=``,s=r;for(let t of a){let a=Mu(e,t,r,n),c=a.pop(),l=wu(e,c,n);if(a.length)o!==``&&(i.push(o),o=``,s=r),a.forEach(e=>{i.push(e)}),o=c,s=r-l;else{let t=o===``?c:` `+c,a=wu(e,t,n);a<=s?(o+=t,s-=a):(i.push(o),o=c,s=r-l)}}o!==``&&i.push(o)}return i}function Pu(e,t,n,r=.25){let i=1;if(n(i)>e)return i;if(n(t)<e)return t;let a=(i+t)/2,o=n(a),s=0;for(;Math.abs(o-e)>r&&s<20;)o>=e?t=(i+t)/2:i=(i+t)/2,a=(i+t)/2,o=n(a),s++;return a}function Fu(e){return e?e.toLowerCase().trim():``}let Iu=/([0-9\.]*)px/;function Lu(e){return Number(e.match(Iu)?.[1])}function Ru(e,t,n){let r=Tu(e,t,e.font);if(r<=n)return t;let i=Tu(e,`…`,e.font);if(r<=i)return t;let a=t.length;for(;r>=n-i&&a-- >0;)t=t.substring(0,a),r=Tu(e,t,e.font);return t+`…`}function zu(e,t,n,r=!1,i=!1,a=Lu(e.font)/10){if(e.fillText(t,n.x,n.y),!r&&!i)return;let o=e.measureText(t),s=o.width,c=o.actualBoundingBoxAscent+o.actualBoundingBoxDescent,l=o.fontBoundingBoxAscent+o.fontBoundingBoxDescent,{x:u,y:d}=n,f=d,p=d;switch(e.textAlign){case`center`:u-=s/2;break;case`right`:u-=s;break}switch(e.textBaseline){case`top`:p+=l-2*a,f+=l/2-a;break;case`middle`:p+=l/2-a;break;case`alphabetic`:p+=2*a,f-=3*a;break;case`bottom`:p=d,f-=c/2-a/2;break}r&&(e.lineWidth=a,e.strokeStyle=e.fillStyle,e.beginPath(),e.moveTo(u,p),e.lineTo(u+s,p),e.stroke()),i&&(e.lineWidth=a,e.strokeStyle=e.fillStyle,e.beginPath(),e.moveTo(u,f),e.lineTo(u+s,f),e.stroke())}function Bu(e,t,n,r,i=`pt`){if(wu(e,n,r,i)<=t)return n;let a=wu(e,`...`,r,i);if(a>=t)return``;let o=1,s=n.length,c;for(;o<=s;){let l=Math.floor((o+s)/2);c=wu(e,n.slice(0,l),r,i),c+a>t?s=l-1:o=l+1}let l=n.slice(0,Math.max(0,o-1));return l?l+`...`:``}function Vu(e,t){if(!t.rotation||t.rotation%(Math.PI*2)==0)return e;let{x:n,y:r}=e,i=Math.cos(-t.rotation),a=Math.sin(-t.rotation),o=e.textWidth-8,s=e.textHeight,c=t.align===`center`,l=t.align===`left`==a<0,u=a*s,d=Math.abs(a*o),f=i*s;return t.verticalAlign===`top`?c?(r+=d/2,n-=u/2):l?n-=u:r+=d:!t.verticalAlign||t.verticalAlign===`bottom`?(r+=s-f,c?(r-=d/2,n-=u/2):l&&(n-=u,r-=d)):c?(n-=u/2,r-=s/2,l?r+=u:r-=u):l?(n-=u,r-=d/2):r+=d/2+f/4,{x:i*n-a*r,y:i*r+a*n}}let Hu={id:`chartColorScalePlugin`,afterDatasetsDraw(e,t,n){if(!n.position||n.position===`none`||!n.colorScale.length)return;let r=e.ctx;r.save(),r.textAlign=`center`,r.textBaseline=`middle`,r.miterLimit=1;let i=(e.chartArea.bottom-e.chartArea.top)/2,a=n.position===`left`?20:r.canvas.width-70,o=e.chartArea.top,s=r.createLinearGradient(0,o+i,0,o),c=1/(n.colorScale.length-1);n.colorScale.forEach((e,t)=>{s.addColorStop(t*c,e)}),r.fillStyle=s,r.fillRect(a,o,10,i),r.fillStyle=n.fontColor??`black`,r.font=Su(12),r.textAlign=`left`;let l=Math.round(n.minValue*100)/100,u=Math.round(n.maxValue*100)/100;n.minValue===n.maxValue&&(--l,u+=1);let d=Ro({value:u,format:void 0},n.locale),f=Ro({value:l,format:void 0},n.locale);r.fillText(f,a+10+5,o+i-6),r.fillText(d,a+10+5,o+6),r.restore()}};function Uu(){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);return class extends globalThis.Chart.BarController{static id=`funnel`;static defaults={...globalThis.Chart?.BarController.defaults,dataElementType:`funnel`,animation:{duration:e=>e.type===`data`?1e3*(e.raw[1]/Math.max(...e.dataset.data.map(e=>e[1]))):1e3}};updateElements(e,t,n,r){super.updateElements(e,t,n,r);for(let i=t;i<t+n;i++){let t=e[i];this.updateElement(t,i,{nextElement:e[i+1]},r)}}}}function Wu(){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);return class extends globalThis.Chart.BarElement{static id=`funnel`;draw(e){e.save();let{x:t,y:n,height:r,nextElement:i,base:a,options:o}=this.getProps([`x`,`y`,`width`,`height`,`nextElement`,`base`,`options`]),s=Gu(this),c=(s-(i?Gu(i):0))/2,l=Math.min(t,a),u=n-r/2;e.fillStyle=o.backgroundColor,e.beginPath(),e.moveTo(l,u),e.lineTo(l+s,u),e.lineTo(l+s-c,u+r),e.lineTo(l+c,u+r),e.closePath(),e.fill(),o.borderWidth&&(e.strokeStyle=o.borderColor,e.lineWidth=o.borderWidth,e.stroke()),e.restore()}inRange(e,t){let{x:n,y:r,height:i,nextElement:a,base:o}=this.getProps([`x`,`y`,`width`,`height`,`nextElement`,`base`,`options`]),s=Gu(this),c=a?Gu(a):0,l=Math.min(n,o),u=r-i/2;if(t<u||t>u+i)return!1;let d=(s-c)/2,f=l+d*(t-u)/i,p=l+s-d*(t-u)/i;return!(e<f||e>p)}}}function Gu(e){let{x:t,base:n}=e.getProps([`x`,`base`]);return Math.max(t,n)-Math.min(t,n)}let Ku=function(e){if(!e.length)return{x:0,y:0};let{x:t,y:n,base:r,width:i,height:a}=e[0].element.getProps([`x`,`y`,`width`,`height`,`base`]),o=Math.min(t,r),s=n-a/2;return{x:o+i*2/3,y:s+a/2}},qu={id:`o-spreadsheet-minor-gridlines`,beforeDatasetsDraw(e){let t=e.ctx,n=e.chartArea;if(n)for(let r in e.scales){let i=e.scales[r],a=i.options,o=a?.grid?.minor;if(!o?.display)continue;let s=a?.grid?.display,c=i.ticks;if(!(!c||c.length<2)){t.save(),t.lineWidth=1,t.strokeStyle=o.color??a?.grid?.color??`#e6e6e6`;for(let e=0;e<c.length-1;e++){let r=i.getPixelForTick(e),a=i.getPixelForTick(e+1);if(!(!isFinite(r)||!isFinite(a)))for(let e=+!!s;e<4;e++){let o=e/4,s=Math.round(r+(a-r)*o)+.5;t.beginPath(),i.isHorizontal()?(t.moveTo(s,n.top),t.lineTo(s,n.bottom)):(t.moveTo(n.left,s),t.lineTo(n.right,s)),t.stroke()}}t.restore()}}}},Ju=/rgba?\(|\s+|\)/gi,Yu=/^#([A-F\d]{2}){3,4}$/,Xu=/^light-dark\(\s*(rgba?\([0-9.,\s]+\)|#[a-f0-9]+)\s*,\s*(rgba?\([0-9.,\s]+\)|#[a-f0-9]+)\s*\)$/i,Zu=[`#eb6d00`,`#0074d9`,`#ad8e00`,`#169ed4`,`#b10dc9`,`#00a82d`,`#00a3a3`,`#f012be`,`#3d9970`,`#62A300`,`#ff4136`,`#949494`,`#ff5c9d`];function Qu(e,t=1){let n=t===1?``:Math.round(t*255).toString(16).padStart(2,`0`);return ed(e.toString(16).padStart(6,`0`))+n}function $u(e){return typeof e==`number`?e:Number.parseInt(ed(e).slice(1,7),16)}function ed(e){let t=e;if(e.startsWith(`light-dark`)){let t=e.match(Xu);if(!t)throw Error(`Invalid light-dark color: ${e}`);return`light-dark(${ed(t[1])}, ${ed(t[2])})`}if(e.startsWith(`rgb`)?t=od(e):(t=e.replace(`#`,``).toUpperCase(),(t.length===3||t.length===4)&&(t=t.split(``).reduce((e,t)=>e+t+t,``)),t=`#${t}`),!Yu.test(t))throw Error(`invalid color input: ${e}`);return t}function td(e){try{return ed(e),!0}catch{return!1}}function nd(e){try{return dd(e),!0}catch{return!1}}let rd=e=>e>=0&&e<=255;function id(e,t,n,r=1){if(!rd(e)||!rd(t)||!rd(n)||r<0||r>1)throw Error(`Invalid RGBA values ${[e,t,n,r]}`);return{a:r,b:n,g:t,r:e}}function ad(e){let{r:t,g:n,b:r}=cd(e);t/=255,n/=255,r/=255;let i=e=>e<=.03928?e/12.92:((e+.055)/1.055)**2.4,a=i(t),o=i(n),s=i(r);return .2126*a+.7152*o+.0722*s}function od(e){let t=e.replace(Ju,``).split(`,`),n=255;if(t.length!==3&&t.length!==4)throw Error(`invalid color`);if(t.length===4){let e=parseFloat(t.pop()||`1`);if(isNaN(e))throw Error(`invalid alpha value`);n=Math.round(e*255)}let r=t.map(e=>parseInt(e,10));return n!==255&&r.push(n),`#`+gt(r.map(e=>e.toString(16).padStart(2,`0`))).toUpperCase()}function sd(e){let t=e.r.toString(16),n=e.g.toString(16),r=e.b.toString(16),i=Math.round(e.a*255).toString(16);return t.length===1&&(t=`0`+t),n.length===1&&(n=`0`+n),r.length===1&&(r=`0`+r),i.length===1&&(i=`0`+i),i===`ff`&&(i=``),(`#`+t+n+r+i).toUpperCase()}function cd(e){e=ed(e);let t,n,r,i;if(e.length===7)t=parseInt(e[1]+e[2],16),n=parseInt(e[3]+e[4],16),r=parseInt(e[5]+e[6],16),i=255;else if(e.length===9)t=parseInt(e[1]+e[2],16),n=parseInt(e[3]+e[4],16),r=parseInt(e[5]+e[6],16),i=parseInt(e[7]+e[8],16);else throw Error(`Invalid color`);return i=+(i/255).toFixed(3),{a:i,r:t,g:n,b:r}}function ld(e){e={...e},e.s/=100,e.l/=100;let t=(1-Math.abs(2*e.l-1))*e.s,n=t*(1-Math.abs(e.h/60%2-1)),r=e.l-t/2,i=0,a=0,o=0;return 0<=e.h&&e.h<60?(i=t,a=n,o=0):60<=e.h&&e.h<120?(i=n,a=t,o=0):120<=e.h&&e.h<180?(i=0,a=t,o=n):180<=e.h&&e.h<240?(i=0,a=n,o=t):240<=e.h&&e.h<300?(i=n,a=0,o=t):300<=e.h&&e.h<360&&(i=t,a=0,o=n),i=Math.round((i+r)*255),a=Math.round((a+r)*255),o=Math.round((o+r)*255),{a:e.a,r:i,g:a,b:o}}function ud(e){let t=e.r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),a=Math.max(t,n,r),o=a-i,s=0,c=0,l=0;return s=o===0?0:a===t?(n-r)/o%6:a===n?(r-t)/o+2:(t-n)/o+4,s=Math.round(s*60),s<0&&(s+=360),l=(a+i)/2,c=o===0?0:o/(1-Math.abs(2*l-1)),c=+(c*100).toFixed(1),l=+(l*100).toFixed(1),{a:e.a,h:s,s:c,l}}function dd(e){return sd(ld(e))}function fd(e){return ud(cd(e))}function pd(e,t){let n=cd(t),r=cd(e),i=n.a+r.a*(1-n.a);return sd({r:Math.round((n.r*n.a+r.r*r.a*(1-n.a))/i),g:Math.round((n.g*n.a+r.g*r.a*(1-n.a))/i),b:Math.round((n.b*n.a+r.b*r.a*(1-n.a))/i),a:i})}function md(e){return cd(typeof e==`number`?Qu(e):e)}function hd(e,t,n=0){if(!(td(e)&&td(t)))return!1;let r=cd(e),i=cd(t);return r.a===i.a?Math.sqrt(((r.r-i.r)/255)**2+((r.g-i.g)/255)**2+((r.b-i.b)/255)**2)<=n:!1}function gd(e,t){if(e.startsWith(`light-dark`)){let n=e.match(Xu);if(!n)throw Error(`Invalid light-dark color: ${e}`);return`light-dark(${gd(n[1],t)}, ${gd(n[2],t)})`}return t===1?ed(e).slice(0,7):sd({...cd(e),a:t})}function _d(e,t){let n=fd(e);return t===1?`#fff`:(n.l=t*(100-n.l)+n.l,dd(n))}let vd={invert:1,hueRotate:170,contrast:.85,brightness:1.2},yd=`invert(${vd.invert}) hue-rotate(${vd.hueRotate}deg) contrast(${vd.contrast}) brightness(${vd.brightness})`;function bd(e){let t=e*Math.PI/180,n=Math.cos(t),r=Math.sin(t);return[[.213+n*.787-r*.213,.715-n*.715-r*.715,.072-n*.072+r*.928],[.213-n*.213+r*.143,.715+n*.285+r*.14,.072-n*.072-r*.283],[.213-n*.213-r*.787,.715-n*.715+r*.715,.072+n*.928+r*.072]]}function xd(e){let{r:t,g:n,b:r,a:i}=cd(e),a=t/255,o=n/255,s=r/255;a/=vd.brightness,o/=vd.brightness,s/=vd.brightness,a=(a-.5)/vd.contrast+.5,o=(o-.5)/vd.contrast+.5,s=(s-.5)/vd.contrast+.5,a=Math.max(0,Math.min(1,a)),o=Math.max(0,Math.min(1,o)),s=Math.max(0,Math.min(1,s));let c=bd(-vd.hueRotate),l=Math.max(0,Math.min(1,c[0][0]*a+c[0][1]*o+c[0][2]*s)),u=Math.max(0,Math.min(1,c[1][0]*a+c[1][1]*o+c[1][2]*s)),d=Math.max(0,Math.min(1,c[2][0]*a+c[2][1]*o+c[2][2]*s));return sd({r:Math.round((1-l)*255),g:Math.round((1-u)*255),b:Math.round((1-d)*255),a:i})}function Sd(e,t){let n=fd(e);return t===1?`#000`:(n.s=Math.min(100,t*n.s+n.s),n.l-=t*n.l,dd(n))}function Cd(e){return ad(e)<.6?_d(e,.9):Sd(e,.75)}let wd=`#4EA7F2`,Td=[wd,`#EA6175`,`#43C5B1`,`#F4A261`,`#8481DD`,`#FFD86D`],Ed=[wd,`#3188E6`,`#43C5B1`,`#00A78D`,`#EA6175`,`#CE4257`,`#F4A261`,`#F48935`,`#8481DD`,`#5752D1`,`#FFD86D`,`#FFBC2C`],Dd=[wd,`#3188E6`,`#056BD9`,`#A76DBC`,`#7F4295`,`#6D2387`,`#EA6175`,`#CE4257`,`#982738`,`#43C5B1`,`#00A78D`,`#0E8270`,`#F4A261`,`#F48935`,`#BE5D10`,`#8481DD`,`#5752D1`,`#3A3580`,`#A4A8B6`,`#7E8290`,`#545B70`,`#FFD86D`,`#FFBC2C`,`#C08A16`],Od=[wd,`#3188E6`,`#056BD9`,`#155193`,`#A76DBC`,`#7F4295`,`#6D2387`,`#4F1565`,`#EA6175`,`#CE4257`,`#982738`,`#791B29`,`#43C5B1`,`#00A78D`,`#0E8270`,`#105F53`,`#F4A261`,`#F48935`,`#BE5D10`,`#7D380D`,`#8481DD`,`#5752D1`,`#3A3580`,`#26235F`,`#A4A8B6`,`#7E8290`,`#545B70`,`#3F4250`,`#FFD86D`,`#FFBC2C`,`#C08A16`,`#936A12`],kd=[wd,`#43C5B1`,`#EA6175`,`#F4A261`,`#8481DD`,`#FFD86D`,`#3188E6`,`#00A78D`,`#CE4257`,`#F48935`,`#5752D1`,`#FFBC2C`],Ad=[wd,`#A76DBC`,`#EA6175`,`#43C5B1`,`#F4A261`,`#8481DD`,`#A4A8B6`,`#FFD86D`,`#3188E6`,`#7F4295`,`#CE4257`,`#00A78D`,`#F48935`,`#5752D1`,`#7E8290`,`#FFBC2C`,`#056BD9`,`#6D2387`,`#982738`,`#0E8270`,`#BE5D10`,`#3A3580`,`#545B70`,`#C08A16`],jd=[wd,`#A76DBC`,`#EA6175`,`#43C5B1`,`#F4A261`,`#8481DD`,`#A4A8B6`,`#FFD86D`,`#3188E6`,`#7F4295`,`#CE4257`,`#00A78D`,`#F48935`,`#5752D1`,`#7E8290`,`#FFBC2C`,`#056BD9`,`#6D2387`,`#982738`,`#0E8270`,`#BE5D10`,`#3A3580`,`#545B70`,`#C08A16`,`#155193`,`#4F1565`,`#791B29`,`#105F53`,`#7D380D`,`#26235F`,`#3F4250`,`#936A12`];function Md(e,t){return t[e%t.length]}function Nd(e){return e<=6?Td:e<=12?Ed:e<=24?Dd:Od}function Pd(e){return e<=6?Td:e<=12?kd:e<=24?Ad:jd}var Fd=class{currentColorIndex=0;palette;constructor(e,t=[]){this.preferredColors=t,this.palette=Nd(e).filter(e=>!t.includes(e))}next(){return this.preferredColors?.[this.currentColorIndex]?this.preferredColors[this.currentColorIndex++]:Md(this.currentColorIndex++,this.palette)}},Id=class extends Fd{constructor(e,t=[]){super(e,t),this.palette=Pd(e).filter(e=>!t.includes(e))}},Ld=class{availableColors;colors={};constructor(e=12){this.availableColors=new Id(e)}get(e){return this.colors[e]||(this.colors[e]=this.availableColors.next()),this.colors[e]}};let Rd={greys:[`#ffffff`,`#808080`,`#000000`],blues:[`#f7fbff`,`#6aaed6`,`#08306b`],reds:[`#fff5f0`,`#fb694a`,`#67000d`],greens:[`#f7fcf5`,`#73c476`,`#00441b`],oranges:[`#fff5eb`,`#fd8c3b`,`#7f2704`],purples:[`#fcfbfd`,`#9e9ac8`,`#3f007d`],viridis:[`#440154`,`#21918c`,`#fde725`],cividis:[`#00224e`,`#7d7c78`,`#fee838`],rainbow:[`#B41DB4`,`#FFFF00`,`#00FFFF`]},zd=Object.keys(Rd);function Bd(e){if(e.length<2)throw Error(`Color scale must have at least 2 points`);let t=[...e.sort((e,t)=>e.value-t.value)],n=[];for(let e=1;e<t.length;e++){let r=md(t[e-1].color).a,i=md(t[e].color).a,a=$u(t[e-1].color),o=$u(t[e].color);n.push({min:t[e-1].value,max:t[e].value,minColor:a,maxColor:o,minColorAlpha:r,maxColorAlpha:i,colorDiff:Vd(t[e-1].value,t[e].value,a,o)})}return e=>{if(e<n[0].min)return Qu(n[0].minColor,n[0].minColorAlpha);for(let t of n)if(e>=t.min&&e<=t.max)return Qu(Hd(e,t.min,t.minColor,t.colorDiff),t.maxColorAlpha);return Qu(n[n.length-1].maxColor,n[n.length-1].maxColorAlpha)}}function Vd(e,t,n,r){let i=t-e,a=(n>>16)%256-(r>>16)%256,o=(n>>8)%256-(r>>8)%256,s=n%256-r%256;return[a/i,o/i,s/i]}function Hd(e,t,n,r){let[i,a,o]=r,s=Math.round((n>>16)%256-i*(e-t)),c=Math.round((n>>8)%256-a*(e-t)),l=Math.round(n%256-o*(e-t));return s<<16|c<<8|l}let Ud=`000000`,Wd={arrows:`3Arrows`,smiley:`3Symbols`,dots:`3TrafficLights1`},Gd={styleSheet:`http://schemas.openxmlformats.org/spreadsheetml/2006/main`,sst:`http://schemas.openxmlformats.org/spreadsheetml/2006/main`,Relationships:`http://schemas.openxmlformats.org/package/2006/relationships`,Types:`http://schemas.openxmlformats.org/package/2006/content-types`,worksheet:`http://schemas.openxmlformats.org/spreadsheetml/2006/main`,workbook:`http://schemas.openxmlformats.org/spreadsheetml/2006/main`,drawing:`http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing`,table:`http://schemas.openxmlformats.org/spreadsheetml/2006/main`,revision:`http://schemas.microsoft.com/office/spreadsheetml/2014/revision`,revision3:`http://schemas.microsoft.com/office/spreadsheetml/2016/revision3`,markupCompatibility:`http://schemas.openxmlformats.org/markup-compatibility/2006`},Kd=`http://schemas.openxmlformats.org/drawingml/2006/main`,qd=`http://schemas.openxmlformats.org/drawingml/2006/chart`,Jd={workbook:`application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml`,macroEnabledWorkbook:`application/vnd.ms-excel.sheet.macroEnabled.main+xml`,templateWorkbook:`application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml`,macroEnabledTemplateWorkbook:`application/vnd.ms-excel.template.macroEnabled.main+xml`,excelAddInWorkbook:`application/vnd.ms-excel.addin.macroEnabled.main+xml`,sheet:`application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml`,metadata:`application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml`,sharedStrings:`application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml`,styles:`application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml`,drawing:`application/vnd.openxmlformats-officedocument.drawing+xml`,chart:`application/vnd.openxmlformats-officedocument.drawingml.chart+xml`,themes:`application/vnd.openxmlformats-officedocument.theme+xml`,table:`application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml`,pivot:`application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml`,externalLink:`application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml`},Yd={document:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument`,sheet:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet`,metadata:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/sheetMetadata`,sharedStrings:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings`,styles:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles`,drawing:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing`,chart:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart`,theme:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme`,table:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/table`,hyperlink:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink`,image:`http://schemas.openxmlformats.org/officeDocument/2006/relationships/image`},Xd=`http://schemas.openxmlformats.org/officeDocument/2006/relationships`,Zd=.75,Qd=.143,$d=8.43,ef=12.75,tf={FLOOR:[{type:`NUMBER`,value:1}],CEILING:[{type:`NUMBER`,value:1}],ROUND:[{type:`NUMBER`,value:0}],ROUNDUP:[{type:`NUMBER`,value:0}],ROUNDDOWN:[{type:`NUMBER`,value:0}]},nf=`ACOT,ACOTH,AGGREGATE,ARABIC,BASE,BETA.DIST,BETA.INV,BINOM.DIST,BINOM.DIST.RANGE,BINOM.INV,BITAND,BITLSHIFT,BITOR,BITRSHIFT,BITXOR,BYCOL,BYROW,CEILING.MATH,CEILING.PRECISE,CHISQ.DIST,CHISQ.DIST.RT,CHISQ.INV,CHISQ.INV.RT,CHISQ.TEST,CHOOSECOLS,CHOOSEROWS,COMBINA,CONCAT,CONFIDENCE.NORM,CONFIDENCE.T,COT,COTH,COVARIANCE.P,COVARIANCE.S,CSC,CSCH,DAYS,DECIMAL,DROP,ERF.PRECISE,ERFC.PRECISE,EXPAND,EXPON.DIST,F.DIST,F.DIST.RT,F.INV,F.INV.RT,F.TEST,FIELDVALUE,FILTERXML,FLOOR.MATH,FLOOR.PRECISE,FORECAST.ETS,FORECAST.ETS.CONFINT,FORECAST.ETS.SEASONALITY,FORECAST.ETS.STAT,FORECAST.LINEAR,FORMULATEXT,GAMMA,GAMMA.DIST,GAMMA.INV,GAMMALN.PRECISE,GAUSS,HSTACK,HYPGEOM.DIST,IFNA,IFS,IMCOSH,IMCOT,IMCSC,IMCSCH,IMSEC,IMSECH,IMSINH,IMTAN,ISFORMULA,ISOMITTED,ISOWEEKNUM,LAMBDA,LET,LOGNORM.DIST,LOGNORM.INV,MAKEARRAY,MAP,MAXIFS,MINIFS,MODE.MULT,MODE.SNGL,MUNIT,NEGBINOM.DIST,NORM.DIST,NORM.INV,NORM.S.DIST,NORM.S.INV,NUMBERVALUE,PDURATION,PERCENTILE.EXC,PERCENTILE.INC,PERCENTRANK.EXC,PERCENTRANK.INC,PERMUTATIONA,PHI,POISSON.DIST,PQSOURCE,PYTHON_STR,PYTHON_TYPE,PYTHON_TYPENAME,QUARTILE.EXC,QUARTILE.INC,QUERYSTRING,RANDARRAY,RANK.AVG,RANK.EQ,REDUCE,RRI,SCAN,SEC,SECH,SEQUENCE,SHEET,SHEETS,SKEW.P,SORTBY,STDEV.P,STDEV.S,SWITCH,T.DIST,T.DIST.2T,T.DIST.RT,T.INV,T.INV.2T,T.TEST,TAKE,TEXTAFTER,TEXTBEFORE,TEXTJOIN,TEXTSPLIT,TOCOL,TOROW,UNICHAR,UNICODE,UNIQUE,VAR.P,VAR.S,VSTACK,WEBSERVICE,WEIBULL.DIST,WRAPCOLS,WRAPROWS,XLOOKUP,XOR,Z.TEST`.split(`,`),rf=`xMovingAverage`,af={exponential:`exp`,logarithmic:`log`,polynomial:`poly`,trailingMovingAverage:`movingAvg`};function of(e,t,n){return n?Lc(e,t,n):void 0}function sf(e,{applyChange:t}){if(!e)return;let n=t(e);switch(n.changeType){case`REMOVE`:return;default:return n.range}}function cf(e,t,n){let r=[];for(let i of n.dataSets){let{unboundedZone:a,sheetId:o,invalidSheetName:s,invalidXc:c}=e.getRangeFromSheetXC(t,i.dataRange);if(!(s||c))if(a.left!==a.right&&a.top!==a.bottom){if(a.right===void 0)continue;let t=i.dataSetId;for(let i=a.left;i<=a.right;i++){let s={...a,left:i,right:i};r.push({...lf(e,o,s,n.dataSetsHaveTitle?{top:s.top,bottom:s.top,left:s.left,right:s.left}:void 0),dataSetId:t}),t=`${t}_${i}`}}else r.push({...lf(e,o,a,n.dataSetsHaveTitle?{top:a.top,bottom:a.top,left:a.left,right:a.left}:void 0),dataSetId:i.dataSetId})}return r}function lf(e,t,n,r){if(n.left!==n.right&&n.top!==n.bottom)throw Error(`Zone should be a single column or row: ${bn(n)}`);if(r){let i=bn(n),a=bn(r);return{labelCell:e.getRangeFromSheetXC(t,a),dataRange:e.getRangeFromSheetXC(t,i)}}else return{labelCell:void 0,dataRange:e.getRangeFromSheetXC(t,bn(n))}}function uf(e,t,n){let r=n.labelCell?.zone,i=n.dataRange.zone;if(r){let{numberOfRows:e,numberOfCols:t}=Nn(i);e===1?i={...i,left:i.left+1}:t===1&&(i={...i,top:i.top+1})}let a=t[n.dataSetId]??{},o=jc({...n.dataRange,zone:i},e.getSheetSize),s={};a.label?s={text:a.label}:n.labelCell&&(s={reference:e.getRangeString(n.labelCell,`forceSheetReference`,{useBoundedReference:!0})});let c;return a.trend?.type&&(c={type:a.trend.type===`polynomial`&&a.trend.order===1?`linear`:af[a.trend.type],color:a.trend.color,order:a.trend.order?Math.min(a.trend.order,6):void 0,window:a.trend.window||2}),{label:s,range:e.getRangeString(o,`forceSheetReference`,{useBoundedReference:!0}),backgroundColor:a.backgroundColor,rightYAxis:a.yAxisId===`y1`,trend:c}}function df(e,t,n){if(!t)return;let r={...t.zone};n&&t.zone.bottom>t.zone.top&&(r.top+=1);let i=jc({...t,zone:r},e.getSheetSize);return e.getRangeString(i,`forceSheetReference`,{useBoundedReference:!0})}function ff(e){return e&&ad(e)<.3?`#FFFFFF`:`#000000`}function pf(e){return e&&ad(e)<.3?`#C8C8C8`:`#666666`}function mf(e){return e.dataSets.find(e=>!ws.test(e.dataRange))!==void 0||e.dataSets.map(e=>mn(e.dataRange)).some(e=>e.top!==e.bottom&&Wn(e))?H.InvalidDataSet:H.Success}function hf(e){return e.labelRange&&!ws.test(e.labelRange||``)?H.InvalidLabelRange:H.Success}function gf(e,t,n){return n&&!!t&&e>=t}function _f(e,t){let{x:n,y:r}=e.getMainViewportCoordinates(),{scrollX:i,scrollY:a}=e.getActiveSheetScrollInfo(),{width:o,height:s}=e.getVisibleRect(e.getActiveMainViewport());return{x:n+i+Math.max(0,(o-t.width)/2),y:r+a+Math.max(0,(s-t.height)/2)}}function vf(e){let t=!1,n=!1;if(`horizontal`in e&&e.horizontal)return{useLeftAxis:!0,useRightAxis:!1};let r=`dataSetStyles`in e?e.dataSetStyles??{}:{};for(let e of Object.values(r))e?.yAxisId===`y1`?n=!0:t=!0;return t||=!n,{useLeftAxis:t,useRightAxis:n}}function yf(e,t,n=!1){return(r,i)=>{let a=e?.[i];return bf({format:a,locale:t},n)(r)}}function bf(e,t=!1){return n=>{if(n=Number(n),isNaN(n))return n;let{locale:r,format:i}=e;return Cf(t?Ro({value:n,format:i},r):R(n,{locale:r,format:!i&&Math.abs(n)>=1e3?`#,##`:i}))}}let xf=[{value:`left`,label:A(`Left`)},{value:`right`,label:A(`Right`)}];function Sf(e,t){let n=[],r=Lt(t.map(e=>e.data.length));for(let t=0;t<=r;t++)n.push(e.next());return n}function Cf(e,t=20){return e?e.length>t?e.substring(0,t)+`…`:e:``}function wf(e){return e===`x1`||e===`xMovingAverage`}function Tf({background:e},t){let n=t.getSpreadsheetTheme().backgroundColor;return e||n}let Ef={id:`chartShowValuesPlugin`,afterDatasetsDraw(e,t,n){if(!n.showValues||!e._metasets?.[0]?.data)return;let r=e.ctx;switch(r.save(),r.textAlign=`center`,r.textBaseline=`middle`,r.miterLimit=1,n.type){case`pie`:Mf(e,n,r);break;case`line`:case`scatter`:case`combo`:case`waterfall`:case`radar`:Of(e,n,r);break;case`bar`:n.horizontal?jf(e,n,r):Of(e,n,r);break;case`pyramid`:jf(e,n,r);break;case`calendar`:kf(e,n,r);break;case`bubble`:Af(e,n,r);break;case`funnel`:jf(e,n,r);break}r.restore()}};function Df(e,t,n,r){r.lineWidth=3,r.strokeText(e,t,n),r.lineWidth=1,r.fillText(e,t,n)}function Of(e,t,n){let r={};for(let i of e._metasets){if(wf(i.xAxisID)||i.hidden)continue;let a=e.scales[i.yAxisID];for(let o=0;o<i._parsed.length;o++){let s=i._parsed[o],c=Number(e.config.type===`radar`?s.r:s.y);if(isNaN(c))continue;let l=i.data[o],u=l.x,d=0;if(e.config.type===`line`||e.config.type===`radar`)d=c<0?l.y+10:l.y-10;else if(e.config.type===`bubble`)d=l.y;else{let e=a.getPixelForValue(0),t=Math.abs(e-l.y),n=globalThis.Chart?.defaults.font.size??12;d=t<n?c<0?e+n/2:e-n/2:c<0?l.y-l.height/2:l.y+l.height/2}r[u]||(r[u]=[]);for(let e of r[u]||[])Math.abs(e-d)<13&&(d=e+13*(c<0?1:-1));r[u].push(d),n.fillStyle=l.options.backgroundColor,n.strokeStyle=t.background(Number(c),i,o)||`#ffffff`,Df(t.callback(Number(c),i,o),u,d,n)}}}function kf(e,t,n){let r=e.chartArea.bottom,i=e.chartArea.top;for(let a of e._metasets){if(wf(a.xAxisID)||a.hidden)continue;let o=e.scales[a.yAxisID];for(let s=0;s<a._parsed.length;s++){let c=a._parsed[s],l=Number(e.config.type===`radar`?c.r:c.y);if(isNaN(l))continue;let u=a.data[s],d=u.x,f=0,p=o.getPixelForValue(0),m=Math.abs(p-u.y),h=globalThis.Chart?.defaults.font.size??12;f=m<h?l<0?p+h/2:p-h/2:l<0?u.y-u.height/2:u.y+u.height/2,f=Math.min(f,r),f=Math.max(f,i),n.strokeStyle=u.options.backgroundColor,n.fillStyle=t.background(Number(l),a,s)||`#ffffff`;let g=t.callback(Number(l),a,s),_=n.measureText(g);_.actualBoundingBoxAscent+_.actualBoundingBoxDescent+2>Math.abs(u.height)-2||Df(g,d,f,n)}}}function Af(e,t,n){let r=e.chartArea.bottom,i=e.chartArea.top,a={};for(let o of e._metasets)for(let e=0;e<o._parsed.length;e++){let s=o._parsed[e].y;if(isNaN(s))continue;let c=o.data[e],l=c.x,u=Math.max(Math.min(c.y,r),i);a[l]||(a[l]=[]);for(let e of a[l]||[])Math.abs(e-u)<13&&(u=e+13*(s<0?1:-1));a[l].push(u);let d=c.options.backgroundColor??`#ffffff`;fd(ed(d)).a===1?n.fillStyle=ff(d):n.fillStyle=`#000000`;let f=t.callback(Number(s),o,e);n.fillText(f,l,u)}}function jf(e,t,n){let r={};for(let i of e._metasets){if(wf(i.xAxisID))return;let a=e.scales[i.xAxisID].getPixelForValue(0);for(let e=0;e<i._parsed.length;e++){let o=Number(i._parsed[e].x);if(isNaN(o))continue;let s=t.callback(o,i,e),c=i.data[e],l=c.y,u=wu(n,s,{fontSize:globalThis.Chart?.defaults.font.size??12},`px`),d=Math.abs(c.x-a),f;f=d<u?o<0?a-u/2-3:a+u/2+3:o<0?c.x+c.width/2:c.x-c.width/2,r[l]||(r[l]=[]);for(let e of r[l])Math.abs(e-f)<u&&(f=o<0?e-u-3:e+u+3);r[l].push(f),n.strokeStyle=c.options.backgroundColor,n.fillStyle=t.background(Number(o),i,e)||`#ffffff`,Df(s,f,l,n)}}}function Mf(e,t,n){for(let r of e._metasets)for(let e=0;e<r._parsed.length;e++){let i=Number(r._parsed[e]);if(isNaN(i)||i===0)continue;let a=r.data[e],{startAngle:o,endAngle:s,innerRadius:c,outerRadius:l}=a,u=(o+s)/2,d=(c+l)/2,f=a.x+d*Math.cos(u),p=a.y+d*Math.sin(u),m=t.callback(i,r,e),h=globalThis.Chart?.defaults.font.size??12,g=wu(n,m,{fontSize:h},`px`),_=l-c;if(g>=_||_<h)continue;let v=s-o,y=2*d*Math.tan(v/2);if(v<Math.PI/2&&(g>=y||y<h))continue;let b=t.background(Number(i),r,e);n.fillStyle=ff(b),n.strokeStyle=b||`#ffffff`,Df(m,f,p,n)}}let Nf={showHeaders:!0,headerDesign:{align:`center`,fillColor:`#808080`,bold:!0,fontSize:15},showValues:!0,showLabels:!0,valuesDesign:{align:`left`,verticalAlign:`bottom`,fontSize:12},coloringOptions:{type:`categoryColor`,colors:[],useValueBasedGradient:!0}},Pf={second:1e3,minute:1e3*60,hour:1e3*3600,day:1e3*3600*24,month:1e3*3600*24*30,year:1e3*3600*24*365},Ff={inSeconds:function(e){return Math.floor(e/Pf.second)},inMinutes:function(e){return Math.floor(e/Pf.minute)},inHours:function(e){return Math.floor(e/Pf.hour)},inDays:function(e){return Math.floor(e/Pf.day)},inMonths:function(e){return Math.floor(e/Pf.month)},inYears:function(e){return Math.floor(e/Pf.year)}},If=/^((d|dd|m|mm|yyyy|yy|hh|h|ss|a)(-|:|\s|\/))*(d|dd|m|mm|yyyy|yy|hh|h|ss|a)$/i;function Lf(e,t,n){let r=Rf(t),i=Bf(e,r,n),a={};return i&&(a[i]=r),{parser:r,displayFormats:a,unit:i??!1,tooltipFormat:r}}function Rf(e){let t=e.indexOf(`h`);return e=t>=0?e.slice(0,t).replace(/m/g,`M`)+e.slice(t):e.replace(/m/g,`M`),e.includes(`a`)||(e=e.replace(/h/g,`H`)),e}function zf(e){return e.includes(`s`)?`second`:e.includes(`m`)?`minute`:e.includes(`h`)||e.includes(`H`)?`hour`:e.includes(`d`)?`day`:e.includes(`M`)?`month`:`year`}function Bf(e,t,n){let r=e.map(e=>Kr(e,n)?.jsDate);if(r.some(e=>e===void 0)||e.length<2)return;let i=r.map(e=>e.getTime()),a=Lt(i)-Rt(i),o=zf(t);return Pf.second>=Pf[o]&&Ff.inSeconds(a)<180?`second`:Pf.minute>=Pf[o]&&Ff.inMinutes(a)<180?`minute`:Pf.hour>=Pf[o]&&Ff.inHours(a)<96?`hour`:Pf.day>=Pf[o]&&Ff.inDays(a)<90?`day`:Pf.month>=Pf[o]&&Ff.inMonths(a)<36?`month`:`year`}function Vf(e,t){let n={},{trendDataSetsValues:r,locale:i,axisFormats:a,axisType:o}=t,s={stacked:e.stacked,locale:i};if(e.horizontal)n.x=np(e,`bottom`,`values`,o,{...s,format:a?.x}),n.y={...np(e,`left`,`labels`,`linear`,s),grid:{display:!1}};else{n.x={...np(e,`bottom`,`labels`,o,s),grid:{display:!1}};let t={...s,format:a?.y};n.y=np(e,`left`,`values`,`linear`,t);let r={...s,format:a?.y1};n.y1=np(e,`right`,`values`,`linear`,r)}if(n=Ct(n),r&&r.length&&r.some(w)){let e=Math.max(...r.map(e=>e?.length||0));n.x1={...n.x,labels:Array(e).fill(``),offset:!1,display:!1},n[rf]={...n.x,offset:!0,display:!1}}return n}function Hf(e,t){let n=t.map(e=>e.label||``),r=ff(e.background);return{y:{title:tp(e.axesDesign?.y),stacked:!0,min:0,max:n.length,ticks:{stepSize:.5,color:r,callback:function(e,t,r){if(t%2!=0)return n[Math.floor((t-1)/2)]}},grid:{display:!1},border:{display:!1}},x:{title:tp(e.axesDesign?.x),stacked:!0,grid:{display:!1},position:`top`,ticks:{color:r},border:{display:!1}}}}function Uf(e,t){let{dataSetsValues:n}=t;if(!n.length||e.legendPosition===`none`)return;let r=n.flatMap(e=>e.data).filter(U).map(e=>e.value),i=Math.min(...r),a=Math.max(...r),o=[];return o=typeof e.colorScale==`object`?[e.colorScale.minColor,e.colorScale.midColor,e.colorScale.maxColor].filter(w):[...Rd[e.colorScale??`oranges`]],{position:e.legendPosition===`right`?`right`:`left`,colorScale:o,fontColor:ff(e.background),minValue:i,maxValue:a,locale:t.locale}}function Wf(e,t){let{locale:n,axisType:r,trendDataSetsValues:i,labels:a,axisFormats:o}=t,s=o?.x,c=e.stacked,l={x:np(e,`bottom`,`labels`,r,{locale:n}),y:np(e,`left`,`values`,`linear`,{locale:n,stacked:c,format:o?.y}),y1:np(e,`right`,`values`,`linear`,{locale:n,stacked:c,format:o?.y1})};if(l=Ct(l),r===`time`&&a&&s){let t={type:`time`,time:Lf(a,s,n),min:R(e.axesDesign?.x?.min??``,{format:s,locale:n}),max:R(e.axesDesign?.x?.max??``,{format:s,locale:n})};Object.assign(l.x,t),l.x.ticks.maxTicksLimit=15,delete l?.x?.ticks?.callback}else r===`linear`&&(l.x.type=`linear`,l.x.ticks.callback=e.humanize?e=>Ro({value:e,format:s},n):e=>R(e,{format:s,locale:n}));if(i&&i.length&&i.some(w)&&(l.x1={...l.x,display:!1},l[rf]={...l.x,display:!1},r===`category`||r===`time`)){let e=Math.max(...i.map(e=>e?.length||0));l.x1.type=`category`,l.x1.labels=C(0,e).map(e=>e.toString()),l.x1.offset=!1,l[rf].type=`category`,l[rf].offset=!1}return l}function Gf(e){return ad(e||`#ffffff`)>.5?`#cccccc`:`#999999`}function Kf(e){return ad(e||`#ffffff`)>.5?`#e6e6e6`:`#333333`}function qf(e,t){let n=Wf(e,t),r=n?.x??{},i=e.axesDesign?.x,a=i?.gridLines!==`none`&&i?.gridLines!==`minor`;return{...n,x:{...r,grid:{...r.grid,color:Gf(e.background),display:a}}}}function Jf(e,t){let n=qf(e,t),r=e.verticalAxisPosition||`left`;return{...n,y:{...n.y,position:r}}}function Yf(e,t){let{locale:n,axisFormats:r,axisType:i}=t,a=r?.y||r?.y1,o=e.axesDesign?.y,s={x:{...np(e,`bottom`,`labels`,i,{locale:n}),grid:{display:!1}},y:{position:e.verticalAxisPosition,ticks:{color:ff(e.background),callback:bf({locale:n,format:a},e.humanize)},title:tp(e.axesDesign?.y),min:o?.min,max:o?.max,grid:{lineWidth:e=>e.tick.value===0?2:1,display:o?.gridLines!==`none`&&o?.gridLines!==`minor`,color:Gf(e.background)}}};return(o?.gridLines===`minor`||o?.gridLines===`both`)&&(s.y.grid.minor={display:!0,color:Kf(e.background)}),s}function Xf(e,t){let{dataSetsValues:n}=t,r=Vf(e,t),i=r.x.ticks.callback;r.x.ticks.callback=e=>i(Math.abs(e));let a=Math.max(...n.map(e=>Math.max(...e.data.filter(U).map(e=>Math.abs(e.value)))));return r.x.suggestedMin=-a,r.x.suggestedMax=a,r}function Zf(e,t){let{locale:n,axisFormats:r,dataSetsValues:i}=t,a=Math.min(...i.map(e=>Math.min(...e.data.filter(U).map(e=>e.value))));return{r:{beginAtZero:!0,ticks:{callback:bf({format:r?.r,locale:n},e.humanize),backdropColor:e.background||`#FFFFFF`},pointLabels:{color:ff(e.background),callback:e=>Cf(e)},suggestedMin:a<0?a-1:0}}}function Qf(e,t){let{locale:n,axisFormats:r,availableRegions:i}=t,a=ap(e.legendPosition),o=e.region?i.find(t=>t.id===e.region):i[0],s=r?.y||r?.y1;return{projection:{projection:ep(o?.defaultProjection||`mercator`),axis:`x`},color:{axis:`x`,display:e.legendPosition!==`none`,border:{color:le},grid:{color:le},ticks:{color:ff(e.background),callback:bf({locale:n,format:s},e.humanize)},legend:{position:a,align:a.includes(`right`)?`left`:`right`,margin:ip(e)},interpolate:rp(e.colorScale??fe),missing:e.missingValueColor||`#ffffff`}}}function $f(e,t){let n=t.dataSetsValues[0];return{x:{display:!1},y:{grid:{offset:!1},ticks:{callback:function(e){return Cf(this.getLabelForValue(e))}},border:{display:!1}},percentages:{position:`right`,border:{display:!1},ticks:{callback:function(e,r,i){let a=n.data?.[r],o=n.data?.[0];return!o?.value||a?.value===null||!U(a)||!U(o)?``:R(a.value/o.value,{format:`0%`,locale:t.locale})}},grid:{display:!1}}}}function ep(e){return e===`conicConformal`?globalThis.ChartGeo.geoConicConformal().rotate([100,0]):e}function tp(e){if(e?.title?.text){let{text:t,color:n,align:r,italic:i,bold:a}=e.title;return{display:!0,text:t,color:n,font:{style:i?`italic`:`normal`,weight:a?`bold`:`normal`,size:e.title.fontSize??12},align:r===`left`?`start`:r===`right`?`end`:`center`}}}function np(e,t,n,r,i){let{useLeftAxis:a,useRightAxis:o}=vf(e);if(t===`left`&&!a||t===`right`&&!o)return;let s=ff(e.background),c;if(c=t===`bottom`?e.axesDesign?.x:t===`left`?e.axesDesign?.y:e.axesDesign?.y1,n===`values`){let n=!(t===`right`&&a),o=c?.gridLines?c?.gridLines===`major`||c?.gridLines===`both`:n,l=!(r===`category`||r===void 0)&&(c?.gridLines===`minor`||c?.gridLines===`both`),u=bf(i,e.humanize),d={position:t,title:tp(c),beginAtZero:!c?.min,stacked:i?.stacked,ticks:{color:s,callback:u},min:c?.min,max:c?.max,grid:{display:o,color:Gf(e.background)}};return l&&(d.grid.minor={display:!0,color:Kf(e.background)}),d}else{let t={ticks:{padding:5,color:s,callback:function(e,t,n){return Cf(this.getLabelForValue(e))}},min:c?.min,max:c?.max,grid:{display:c?.gridLines===`major`||c?.gridLines===`both`,color:Gf(e.background)},stacked:i?.stacked,title:tp(c)};return(c?.gridLines===`minor`||c?.gridLines===`both`)&&(t.grid.minor={display:!0,color:Kf(e.background)}),t}}function rp(e,t=0,n=1){if(t===n){let t=e.midColor??e.minColor;return e=>t}let r=[{value:t,color:e.minColor}];return e.midColor&&r.push({value:(t+n)/2,color:e.midColor}),r.push({value:n,color:e.maxColor}),Bd(r)}function ip(e){switch(e.legendPosition){case`top`:case`right`:return{top:e.title.text?45:15,left:20,right:20};case`bottom`:case`left`:case`none`:return{left:20,right:20,bottom:10}}}function ap(e){switch(e){case`top`:return`top-left`;case`right`:return`top-right`;case`bottom`:return`bottom-right`;case`left`:return`bottom-left`;case`none`:return`bottom-left`}}let op=`nullValue`;function sp(e,t){let{dataSetsValues:n,background:r}=t,i=[],a=kp(e.dataSetStyles,n),o=[];for(let s in n){let{label:c,data:l,hidden:u,dataSetId:d}=n[s];c=e.dataSetStyles?.[d]?.label??c;let f=a.next(),p={label:c,data:l.map(e=>U(e)?e.value:NaN),hidden:u,borderColor:e.background||r,borderWidth:+!!e.stacked,backgroundColor:f,yAxisID:e.horizontal?`y`:e.dataSetStyles?.[d]?.yAxisId??`y`,xAxisID:`x`,barPercentage:.9,categoryPercentage:n.length>1?.8:1,borderRadius:2};i.push(p);let m=e.dataSetStyles?.[d]?.trend,h=t.trendDataSetsValues?.[s];!m?.display||e.horizontal||!h||o.push(Dp(p,m,h))}return i.push(...o),i}function cp(e,t){let{labels:n,dataSetsValues:r,background:i}=t,a=r.map(e=>e.data).flat().filter(U).map(e=>e.value),o=Math.max(...a),s=Math.min(...a),c=rp(e.colorScale??fe,s,o),l=[];for(let t of r)l.push({label:t.label,data:t.data.map(e=>1),backgroundColor:t.data.map(t=>U(t)?c(t.value):e.missingValueColor||`#00000000`),borderColor:e.background||i,borderSkipped:!1,borderWidth:1,barPercentage:1,categoryPercentage:1,values:t.data.map(e=>U(e)?e.value:NaN)});return{labels:n,datasets:l}}function lp(e,t){let{dataSetsValues:n,labels:r}=t,i=e.negativeValuesColor||`#EA6175`,a=e.positiveValuesColor||`#4EA7F2`,o=e.subTotalValuesColor||`#AAAAAA`,s=[],c=[],l={label:``,data:c,backgroundColor:s},u=[],d=0;for(let t of n)if(!t.hidden){for(let l=0;l<t.data.length;l++){let f=t.data[l];if(u.push(r[l]),!U(f)){c.push([d,d]),s.push(``);continue}c.push([d,f.value+d]);let p=f.value>=0?a:i;l===0&&t===n[0]&&e.firstValueAsSubtotal&&(p=o),s.push(p),d+=f.value}e.showSubTotals&&(u.push(A(`Subtotal`)),c.push([0,d]),s.push(o))}return{datasets:[l],labels:u}}function up(e,t){let{dataSetsValues:n,axisType:r,labels:i}=t,a=[],o=!!e.fillArea,s=!!e.stacked,c=[],l=kp(e.dataSetStyles,n);for(let u=0;u<n.length;u++){let{label:d,data:f,hidden:p,dataSetId:m}=n[u];d=e.dataSetStyles?.[m]?.label??d;let h=[],g=l.next();h=r&&[`linear`,`time`].includes(r)?f.map((e,t)=>({x:i[t]===``?NaN:i[t]??NaN,y:U(e)?e.value:NaN})):f.map(e=>U(e)?e.value:NaN);let _=e.dataSetStyles?.[m],v={label:d,data:h,hidden:p,tension:0,borderColor:g,backgroundColor:o?gd(g,Oe):g,pointBackgroundColor:g,fill:o?Op(u,s):!1,pointRadius:e.hideDataMarkers?0:3,yAxisID:_?.yAxisId||`y`};a.push(v);let y=_?.trend,b=t.trendDataSetsValues?.[u];!y?.display||!b||c.push(Dp(v,y,b))}return a.push(...c),a}function dp(e,t){let n=up(e,t);for(let e of n)wf(e.xAxisID)||(e.showLine=!1);return n}function fp(e,t){let n,r;if(e.bubbleColor.color===`multiple`){let i=new Fd(t.bubbleSizes.length);r=[];for(let e=0;e<t.bubbleSizes.length;e++)r.push(i.next());n=r.map(t=>gd(t,e.bubbleColor.transparent?.5:1))}else r=e.bubbleColor.color,n=gd(r,e.bubbleColor.transparent?.5:1);let i=pp(t.bubbleSizes),a=[];for(let e=0;e<t.bubbleSizes.length;e++){let n=t.dataSetsValues[0].data[e];a.push({x:t.labels[e],y:U(n)?n.value:NaN})}return[{label:t.dataSetsValues[0]?.label,data:a,backgroundColor:n,borderColor:r,hoverBackgroundColor:n,hoverBorderColor:r,yAxisID:`y`,pointRadius:i,pointHoverRadius:i,showLine:!1}]}function pp(e){if(!e.length)return[];let t=e.filter(e=>Number.isFinite(e)&&e>0),n=t.length?Math.min(...t):0,r=(t.length?Math.max(...t):0)-n;return t.length?e.map(e=>e===void 0||!Number.isFinite(e)||e<0?0:e===0?2:r===0?10:10+S((e-n)/r,0,1)*20):e.map(()=>2)}function mp(e,t){let{dataSetsValues:n}=t,r=[],i=Sf(new Fd(Math.max(0,...n.map(e=>e?.data?.length??0)),e.slicesColors),n);for(let{label:t,data:a,hidden:o}of n){if(o)continue;let n={label:t,data:a.map(e=>U(e)?e.value:NaN),borderColor:e.background||`#FFFFFF`,backgroundColor:i,hoverOffset:10};r.push(n)}return r}function hp(e,t){let{dataSetsValues:n}=t,r=[],i=kp(e.dataSetStyles,n),a=[],o=n.filter(({dataSetId:t})=>(e.dataSetStyles?.[t]?.type??`line`)===`bar`);for(let s=0;s<n.length;s++){let{label:c,data:l,hidden:u,dataSetId:d}=n[s];c=e.dataSetStyles?.[d]?.label||c;let f=e.dataSetStyles?.[d],p=i.next(),m=s===0?`bar`:`line`,h=f?.type??m,g={label:c,data:l.map(e=>U(e)?e.value:null),hidden:u,borderColor:p,backgroundColor:p,yAxisID:e.dataSetStyles?.[d]?.yAxisId||`y`,xAxisID:`x`,type:h,order:h===`bar`?n.length+s:s,pointRadius:e.hideDataMarkers?0:3};g.type===`bar`&&(g.barPercentage=.9,g.categoryPercentage=o.length>1?.8:1,g.borderRadius=2),r.push(g);let _=e.dataSetStyles?.[d]?.trend,v=t.trendDataSetsValues?.[s];!_?.display||!v||a.push(Dp(g,_,v))}return r.push(...a),r}function gp(e,t){let{dataSetsValues:n}=t,r=[],i=e.fillArea??!1,a=kp(e.dataSetStyles,n);for(let t=0;t<n.length;t++){let{label:o,data:s,hidden:c}=n[t];e.dataSetStyles?.[t]?.label&&(o=e.dataSetStyles[t].label);let l=a.next(),u={label:o,data:s.map(e=>U(e)?e.value:null),hidden:c,borderColor:l,backgroundColor:l,pointRadius:e.hideDataMarkers?0:3};i&&(u.backgroundColor=gd(l,Oe),u.fill=`start`),r.push(u)}return r}function _p(e,t){let{availableRegions:n,dataSetsValues:r,labels:i}=t,a=e.region||n[0]?.id,o=a?t.getGeoJsonFeatures(a):void 0,s={outline:o,showOutline:!!o,data:[]};if(o&&a){let e={};if(r[0])for(let n=0;n<r[0].data.length;n++){let o=r[0].data[n];if(!i[n]||o===void 0)continue;let s=t.geoFeatureNameToId(a,i[n]);s&&(e[s]={value:U(o)?o.value:0,label:i[n]})}for(let t of o)t.id&&s.data.push({feature:{...t,properties:{name:e[t.id]?.label}},value:e[t.id]?.value})}return[s]}function vp(e,t){let n=t.dataSetsValues[0],{labels:r,background:i}=t;if(!n)return[];let{label:a,data:o}=n;return a=e.dataSetStyles?.[0]?.label||a,[{label:a,data:o.map(e=>{if(!U(e))return 0;let t=e.value;return t<=0?[0,0]:[-t,t]}),backgroundColor:yp(r,e.funnelColors),yAxisID:`y`,xAxisID:`x`,barPercentage:1,categoryPercentage:1,borderColor:e.background||i,borderWidth:3}]}function yp(e,t){let n=new Fd(e.length,t);return e.map(()=>n.next())}function bp(e,t){let{dataSetsValues:n,labels:r,background:i}=t,a=wp(Sp(n,r)),o=a[0]||[],s=new Fd(o.length,e.groupColors||[]),c=o.map(e=>({label:e.label,color:s.next()})),l=[];for(let t=a.length-1;t>=0;t--){let n={groupColors:c,parsing:{key:`value`},data:a[t],borderColor:t=>{let n=t.type===`data`?t.raw:void 0;return!n||n.label===`nullValue`?oe:e.background||i},backgroundColor:e=>{let t=e.type===`data`?e.raw:void 0;if(!t||t.label===`nullValue`)return oe;let n=t.groups[0];return c.find(e=>e.label===n)?.color},hoverOffset:10};l.push(n)}return l}function xp(e,t){let n=[],r=Math.max(...e.map(e=>e.data.length));for(let i=0;i<r;i++){n[i]={};for(let t=0;t<e.length;t++){let r=e[t].data[i]?.value,a=r===null?op:String(r);n[i][t]=a}n[i].value=Number(t[i])}return n}function Sp(e,t){return Cp(xp(e,t),0,e.length,[])}function Cp(e,t,n,r){if(t>=n)return[];let i=Object.groupBy(e,e=>e[t]);return Object.keys(i).map(e=>{let a=i[e]?.reduce((e,t)=>e+Number(t.value),0)||0,o=[...r,e];return{label:e,value:a,children:Cp(i[e]||[],t+1,n,[...r,e]),groups:o,depth:t}}).sort((e,t)=>t.value-e.value)}function wp(e){let t=[],n=[...e];for(;n.length>0;){let e=n.shift();e&&(t[e.depth]||(t[e.depth]=[]),t[e.depth].push(e),e.children&&n.push(...e.children))}return t}function Tp(e,t){let{dataSetsValues:n,labels:r,locale:i,axisFormats:a}=t,o={locale:i,format:a?.y};if(n.length===0)return[];let s=Sp(n,r).sort((e,t)=>t.value-e.value),c=Ap(e,s),l=[],u=Math.max(...n.map(e=>e.data.length));for(let e=0;e<u;e++){l[e]={};for(let t=0;t<n.length;t++)l[e][t]=n[t].data[e].value?String(n[t].data[e].value):void 0;l[e].value=Number(r[e])}let d=e.showLabels??Nf.showLabels,f=e.showValues??Nf.showValues,p=e.coloringOptions||Nf.coloringOptions,m;return p?.type===`colorScale`&&(m=jp(s,p)),[{data:[],tree:l,labels:{display:d||f,overflow:`hidden`,...Ep(e.valuesDesign,Nf.valuesDesign),formatter:e=>[d?e.raw.g:void 0,f?R(e.raw.v,o):void 0].filter(w)},captions:{display:e.showHeaders??Nf.showHeaders,padding:6,...Ep(e.headerDesign,Nf.headerDesign)},key:`value`,groups:C(0,n.length).map(e=>String(e)),borderWidth:0,spacing:1,displayMode:`headerBoxes`,groupColors:c,backgroundColor:t=>{if(t.type!==`data`)return`transparent`;if(!t.raw.isLeaf)return e.headerDesign?.fillColor||Nf.headerDesign?.fillColor;if(p.type===`colorScale`)return m?.(t.raw.v)||`#FF0000`;if(p.type===`categoryColor`)return Mp(t,s,p,c);throw Error(`Unsupported coloring option type}`)}}]}function Ep(e,t){let n=e=>{let t=e.element.options.backgroundColor;return ad(t)>.7?`#666666`:`#FFFFFF`};return{align:e?.align??t?.align,position:e?.verticalAlign??t?.verticalAlign,color:e?.color||n,hoverColor:e?.color||n,font:{weight:e?.bold??t?.bold?`bold`:`normal`,style:e?.italic??t?.italic?`italic`:`normal`,size:e?.fontSize??t?.fontSize}}}function Dp(e,t,n){let r=cd(e.backgroundColor);r.a=1;let i=t.color||_d(sd(r),.5);return{type:`line`,xAxisID:t.type===`trailingMovingAverage`?rf:`x1`,yAxisID:e.yAxisID,label:e.label?A(`Trend line for %s`,e.label):``,data:n,order:-1,showLine:!0,pointRadius:0,backgroundColor:i,borderColor:i,borderDash:[5,5],borderWidth:void 0,fill:!1,pointBackgroundColor:i}}function Op(e,t){return t?e===0?`origin`:`-1`:`origin`}function kp(e,t){let n=t.map(t=>e?.[t.dataSetId]?.backgroundColor),r=t.length;return new Fd(r,n)}function Ap(e,t){let n=e.coloringOptions?.type===`categoryColor`?e.coloringOptions.colors:[],r=new Fd(t.length,n);return t.map(e=>({label:e.label,color:r.next()}))}function jp(e,t){if(e.length===0)return;let n=wp(e),r=n[n.length-1],i=Math.min(...r.map(e=>e.value)),a=Math.max(...r.map(e=>e.value));if(Number.isFinite(i)&&Number.isFinite(a)){let e=[{value:i,color:t.minColor}];if(t.midColor){let n=(i+a)/2;e.push({value:n,color:t.midColor})}return e.push({value:a,color:t.maxColor}),Bd(e)}}function Mp(e,t,n,r){let i=e.raw._data.children[0][0],a=r.find(e=>e.label===i)?.color;if(!a||!n.useValueBasedGradient)return a||`#FF0000`;let o=t.find(e=>e.label===i);if(!o||!o.children.length)return a;let s=wp(o.children),c=s[s.length-1],l=Math.max(...c.map(e=>e.value)),u=Math.min(...c.map(e=>e.value));return u===l||!isFinite(u)||!isFinite(l)?a:_d(a,((Number(e.raw.v)||0)-l)/(u-l)*.5)}let Np={id:`sunburstHoverPlugin`,afterEvent(e,t,n){if(!n.enabled)return;let r=e.getActiveElements(),i=r.map(e=>({datasetIndex:e.datasetIndex,index:e.index}));for(let t of r){let n=e.data.datasets[t.datasetIndex].data[t.index];for(let t=0;t<e.data.datasets.length;t++){let r=e.data.datasets[t];for(let e=0;e<r.data.length;e++){let a=r.data[e];Pp(n.groups,a.groups)&&i.push({datasetIndex:t,index:e})}}}i=i.filter(t=>{let{datasetIndex:n,index:r}=t;return e.data.datasets[n].data[r].label!==op}),e.setActiveElements(i);for(let t of e.getSortedVisibleDatasetMetas())for(let e of t.data){let t=e.$context,{datasetIndex:n,index:r,dataset:a,raw:o}=t;if(o.label===`nullValue`)continue;let s=typeof a.backgroundColor==`function`?a.backgroundColor(t):a.backgroundColor;i.length&&!i.some(e=>e.datasetIndex===n&&e.index===r)?e.options.backgroundColor=_d(s,.5):e.options.backgroundColor=s}}};function Pp(e,t){return t.length>e.length&&e.every((e,n)=>e===t[n])}let Fp={id:`sunburstLabelsPlugin`,afterDatasetsDraw(e,t,n){if(!n.showValues&&!n.showLabels||e.config.type!==`doughnut`)return;let r=e.ctx;Ip(e,n,r)}};function Ip(e,t,n){let r=t.style,i=r.fontSize||13,a=i+3;for(let o of e._metasets)for(let s=0;s<o._dataset.data.length;s++){let c=o._dataset.data[s];if(c.label===`nullValue`)continue;let l=[t.showLabels?c.label:void 0,t.showValues?t.callback(c.value,`y`):void 0].filter(w),u=o.data[s],{startAngle:d,endAngle:f,innerRadius:p,outerRadius:m,circumference:h}=u,g=u.options.offset/4,_=g*(1-Math.sin(Math.min(Math.PI,h||0)));p+=_,m+=_;let v=(d+f)/2,y=(p+m)/2,b=(m-p)*.9,ee=f-d;if((ee>=Math.PI?m:Math.sin(ee/2)*p*2)<l.length*a)continue;n.save();let te={x:Math.cos(v)*g,y:Math.sin(v)*g},ne=e.chartArea.left+e.chartArea.width/2+te.x,re=e.chartArea.top+e.chartArea.height/2+te.y;n.translate(ne,re);let ie;v>Math.PI/2?(n.rotate(v-Math.PI),ie=-y):(ie=y,n.rotate(v));let ae=u.options.backgroundColor,oe=ad(ae)>.7?`#666666`:`#FFFFFF`;n.fillStyle=r.textColor||oe,n.textAlign=`center`,n.textBaseline=`middle`,n.font=Su(i,r.bold,r.italic);let se=-((l.length-1)*a)/2;for(let e=0;e<l.length;e++){let t=Bu(n,b,l[e],r,`px`);n.fillText(t,ie,se+e*a)}n.restore()}}let Lp={id:`waterfallLinesPlugin`,beforeDraw(e,t,n){if(!n.showConnectorLines)return;let r=e._metasets?.[0]?.data;if(!r)return;let i=e.ctx;i.save(),i.setLineDash([3,2]);for(let e=0;e<r.length;e++){let t=r[e];if(t.height===0)continue;let n=zp(r,e);if(!n)break;let a=Rp(t),o=Rp(n),s=t.$context.raw,c=s[1]-s[0],l=Math.round(c<0?a.bottom-1:a.top),u=Math.round(a.right),d=Math.round(o.left);i.strokeStyle=`#999`,i.beginPath(),i.moveTo(u+1,l+.5),i.lineTo(d,l+.5),i.stroke()}i.restore()}};function Rp(e){let t=e.base<e.y;return{left:e.x-e.width/2,right:e.x+e.width/2,bottom:t?e.base+e.height:e.y+e.height,top:t?e.base:e.y}}function zp(e,t){return e.find((e,n)=>n>t&&e.height!==0)}let Bp={id:`zoomWindowPlugin`,afterDatasetsDraw:function(e,t,n){if(!n.getLowerBound||!n.getUpperBound)return;let{ctx:r,chartArea:{left:i,right:a,top:o,bottom:s}}=e,c=n.getLowerBound()??i,l=n.getUpperBound()??a;c>l&&([c,l]=[l,c]),c=Math.max(i,c),l=Math.min(a,l),c===i&&--c,l===a&&(l+=1),r.save(),r.fillStyle=`rgba(255,255,255,0.5)`,r.beginPath(),r.rect(i,s,c-i,o-s),r.rect(l,s,a-l,o-s),r.fill(),r.beginPath(),r.strokeStyle=`#bbb`,r.rect(c,s,l-c,o-s),r.stroke(),r.lineWidth=2,r.beginPath(),r.moveTo(c-3,(o+s)/2-7),r.lineTo(c-3,(o+s)/2+7),r.stroke(),r.beginPath(),r.moveTo(l+3,(o+s)/2-7),r.lineTo(l+3,(o+s)/2+7),r.stroke(),r.restore()}};gr.add(`chartShowValuesPlugin`,{register:e=>e.register(Ef),unregister:e=>e.unregister(Ef)}),gr.add(`chartMinorGridPlugin`,{register:e=>e.register(qu),unregister:e=>e.unregister(qu)}),gr.add(`waterfallLinesPlugin`,{register:e=>e.register(Lp),unregister:e=>e.unregister(Lp)}),gr.add(`funnelController`,{register:e=>e.register(Uu()),unregister:e=>e.unregister(Uu())}),gr.add(`funnelElement`,{register:e=>e.register(Wu()),unregister:e=>e.unregister(Wu())}),gr.add(`funnelTooltipPositioner`,{register:e=>e.Tooltip.positioners.funnelTooltipPositioner=Ku,unregister:e=>e.Tooltip.positioners.funnelTooltipPositioner=void 0}),gr.add(`sunburstLabelsPlugin`,{register:e=>e.register(Fp),unregister:e=>e.unregister(Fp)}),gr.add(`sunburstHoverPlugin`,{register:e=>e.register(Np),unregister:e=>e.unregister(Np)}),gr.add(`chartColorScalePlugin`,{register:e=>e.register(Hu),unregister:e=>e.unregister(Hu)}),gr.add(`calendarController`,{register:e=>e.register(Ar()),unregister:e=>e.unregister(Ar())}),gr.add(`zoomWindowPlugin`,{register:e=>e.register(Bp),unregister:e=>e.unregister(Bp)}),gr.add(`chartBackgroundPlugin`,{register:e=>e.register(kr),unregister:e=>e.unregister(kr)});var Vp=class extends t.Component{static template=`o-spreadsheet-ChartJsComponent`;static props={chartId:String,isFullScreen:{type:Boolean,optional:!0}};canvas=(0,t.useRef)(`graphContainer`);chart;currentRuntime;animationStore;currentDevicePixelRatio=window.devicePixelRatio;get chartRuntime(){let e=this.env.model.getters.getChartRuntime(this.props.chartId);if(!(`chartJsConfig`in e))throw Error(`Unsupported chart runtime`);return e}setup(){this.shouldAnimate&&(this.animationStore=O(Or)),(0,t.onMounted)(()=>{vr();let e=this.chartRuntime;this.currentRuntime=e,this.createChart(x(e))}),(0,t.onWillUnmount)(this.unmount.bind(this)),(0,t.useEffect)(()=>{let e=this.chartRuntime;e===this.currentRuntime?this.currentDevicePixelRatio!==window.devicePixelRatio&&(this.currentDevicePixelRatio=window.devicePixelRatio,this.updateChartJs(x(this.currentRuntime))):(e.chartJsConfig.type===this.currentRuntime.chartJsConfig.type?this.updateChartJs(x(e)):(this.chart?.destroy(),this.createChart(x(e))),this.currentRuntime=e)})}unmount(){this.chart?.destroy()}get shouldAnimate(){return this.env.model.getters.isDashboard()}createChart(e){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);let t=e.chartJsConfig;if(this.shouldAnimate&&this.animationStore){let e=this.env.model.getters.getChartDefinition(this.props.chartId)?.type;e&&this.animationStore.animationPlayed[this.animationChartId]!==e&&(t=this.enableAnimationInChartData(t),this.animationStore.disableAnimationForChart(this.animationChartId,e))}let n=this.canvas.el.getContext(`2d`);this.chart=new globalThis.Chart(n,t)}updateChartJs(e){let t=e.chartJsConfig;if(this.shouldAnimate){let e=this.env.model.getters.getChartDefinition(this.props.chartId)?.type;e&&this.hasChartDataChanged()&&this.animationStore&&(t=this.enableAnimationInChartData(t),this.animationStore.disableAnimationForChart(this.animationChartId,e))}t.data&&t.data.datasets?(this.chart.data=t.data,t.options?.plugins?.title&&(this.chart.config.options.plugins.title=t.options.plugins.title)):this.chart.data.datasets=[],this.chart.config.options=t.options,this.chart.update()}hasChartDataChanged(){return!T(this.getChartDataInRuntime(this.currentRuntime),this.getChartDataInRuntime(this.chartRuntime))}enableAnimationInChartData(e){return{...e,options:{...e.options,animation:{animateRotate:!0}}}}getChartDataInRuntime(e){let t=e.chartJsConfig.data;return{labels:t.labels,dataset:t.datasets.map(e=>({data:e.data,label:e.label,tree:e.tree}))}}get animationChartId(){return this.props.isFullScreen?this.props.chartId+`-fullscreen`:this.props.chartId}},Hp=class{static commonKeys=[`type`,`title`,`background`,`humanize`]};function Up(e,t,n,r,i){if(!e)return``;if(n===`text`||t?.type!==V.number||e.type!==V.number)return r?Ro(e,i):e.formattedValue;let{value:a,format:o}=e;return n===`progress`?(a=t.value/a,o=`0.0%`):(a=Math.abs(t.value-a),n===`percentage`&&a!==0&&(a/=e.value),n===`percentage`&&(o=`0.0%`),o||(a=Math.round(a*100)/100)),r?Ro({value:a,format:o},i):R(a,{format:o,locale:i})}function Wp(e,t,n){return e?t?Ro(e,n):e.formattedValue??String(e.value??``):``}function Gp(e,t,n,r,i){if(t===`text`||t===`progress`||e?.type!==V.number||n?.type!==V.number)return;let a=n.value-e.value;if(a>0)return r;if(a<0)return i}function Kp(e,t,n){if(n===`text`||e?.type!==V.number||t?.type!==V.number)return`neutral`;let r=t.value-e.value;return r>0?`up`:r<0?`down`:`neutral`}function qp(e){return e.keyValue&&!ws.test(e.keyValue)?H.InvalidScorecardKeyValue:H.Success}function Jp(e){return e.baseline&&!ws.test(e.baseline)?H.InvalidScorecardBaseline:H.Success}let Yp=globalThis.Path2D,Xp=Yp&&new Yp(`M8.6 4.8a.5.5 0 0 1 0 .75l-3.9 3.9a.5 .5 0 0 1 -.75 0l-3.8 -3.9a.5 .5 0 0 1 0 -.75l.4-.4a.5.5 0 0 1 .75 0l2.3 2.4v-5.7c0-.25.25-.5.5-.5h.6c.25 0 .5.25.5.5v5.8l2.3 -2.4a.5.5 0 0 1 .75 0z`),Zp=Yp&&new Yp(`M8.7 5.5a.5.5 0 0 0 0-.75l-3.8-4a.5.5 0 0 0-.75 0l-3.8 4a.5.5 0 0 0 0 .75l.4.4a.5.5 0 0 0 .75 0l2.3-2.4v5.8c0 .25.25.5.5.5h.6c.25 0 .5-.25.5-.5v-5.8l2.2 2.4a.5.5 0 0 0 .75 0z`),Qp={sequence:40,allowedDefinitionKeys:[...Hp.commonKeys,`keyValue`,`keyDescr`,`baseline`,`baselineMode`,`baselineDescr`,`baselineColorUp`,`baselineColorDown`],fromStrDefinition(e,t,n){let r=Rc(n,t,e.baseline),i=Rc(n,t,e.keyValue);return{...e,baseline:r,keyValue:i}},validateDefinition(e,t){return e.checkValidations(t,qp,Jp)},copyInSheetId:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,type:`scorecard`,keyValue:e.dataSource?.type===`range`?e.dataSource?.dataSets?.[0]?.dataRange:void 0,title:e.title||{text:``},baselineMode:Te,baselineColorUp:Ee,baselineColorDown:De,baseline:e.auxiliaryRange||``,humanize:e.humanize}},transformDefinition(e,t,{adaptRangeString:n}){let r,i;if(e.baseline){let{changeType:i,range:a}=n(t,e.baseline);i!==`REMOVE`&&(r=a)}if(e.keyValue){let{changeType:r,range:a}=n(t,e.keyValue);r!==`REMOVE`&&(i=a)}return{...e,baseline:r,keyValue:i}},duplicateInDuplicatedSheet(e,t,n){let r=of(t,n,e.baseline),i=of(t,n,e.keyValue);return{...e,baseline:r,keyValue:i}},toStrDefinition(e,t,n){return{...e,keyValue:e.keyValue?n.getRangeString(e.keyValue,t):void 0,baseline:e.baseline?n.getRangeString(e.baseline,t):void 0}},getContextCreation(e,t){return{...e,dataSource:{type:`range`,dataSets:e.keyValue?[{dataRange:e.keyValue,dataSetId:`0`}]:[]},auxiliaryRange:e.baseline}},getDefinitionForExcel:()=>void 0,updateRanges(e,t){let n=sf(e.baseline,t),r=sf(e.keyValue,t);return e.baseline===n&&e.keyValue===r?e:{...e,baseline:n,keyValue:r}},getRuntime(e,t){let n=``,r,i=e.getLocale();if(t.keyValue){let a={sheetId:t.keyValue.sheetId,col:t.keyValue.zone.left,row:t.keyValue.zone.top};r=e.getEvaluatedCell(a),n=Wp(r,t.humanize??!0,i)}let a,o=t.baseline;if(o){let t={sheetId:o.sheetId,col:o.zone.left,row:o.zone.top};a=e.getEvaluatedCell(t)}let{background:s,fontColor:c}=e.getStyleOfSingleCellChart(t.background,t.keyValue),l=Up(a,r,t.baselineMode,t.humanize??!0,i),u=t.baselineMode===`progress`&&Si(l,i)?N(l,i):0,d=t.title;return{title:{...d,text:d.text?e.dynamicTranslate(d.text):``},keyValue:n,keyDescr:t.keyDescr?.text?e.dynamicTranslate(t.keyDescr.text):``,baselineDisplay:l,baselineArrow:Kp(a,r,t.baselineMode),baselineColor:Gp(a,t.baselineMode,r,t.baselineColorUp,t.baselineColorDown),baselineDescr:t.baselineMode!==`progress`&&t.baselineDescr?.text?e.dynamicTranslate(t.baselineDescr.text):``,fontColor:c,background:s,baselineStyle:{...t.baselineMode!==`percentage`&&t.baselineMode!==`progress`&&o?e.getCellComputedStyle({sheetId:o.sheetId,col:o.zone.left,row:o.zone.top}):void 0,fontSize:t.baselineDescr?.fontSize,align:t.baselineDescr?.align},baselineDescrStyle:{textColor:t.baselineDescr?.color,...t.baselineDescr},keyValueStyle:{...t.keyValue?e.getCellComputedStyle({sheetId:t.keyValue.sheetId,col:t.keyValue.zone.left,row:t.keyValue.zone.top}):void 0,fontSize:t.keyDescr?.fontSize,align:t.keyDescr?.align},keyValueDescrStyle:{textColor:t.keyDescr?.color,...t.keyDescr},progressBar:t.baselineMode===`progress`?{value:u,color:u>0?t.baselineColorUp:t.baselineColorDown}:void 0}}};function $p(e,t,n=1){let r=t.getContext(`2d`);if(!r)throw Error(`Unable to retrieve 2D context from canvas`);let i=typeof globalThis.devicePixelRatio==`number`?globalThis.devicePixelRatio:1;t.width=i*e.canvas.width*n,t.height=i*e.canvas.height*n,r.scale(i*n,i*n);let a=e.canvas.width-20;if(r.fillStyle=e.canvas.backgroundColor,r.fillRect(0,0,e.canvas.width,e.canvas.height),e.title){r.font=e.title.style.font,r.fillStyle=e.title.style.color;let t=r.textBaseline;r.textBaseline=`middle`,r.fillText(Ru(r,e.title.text,a-e.title.position.x),e.title.position.x,e.title.position.y),r.textBaseline=t}if(e.baseline&&(r.font=e.baseline.style.font,r.fillStyle=e.baseline.style.color,zu(r,e.baseline.text,e.baseline.position,e.baseline.style.underline,e.baseline.style.strikethrough)),e.baselineArrow&&e.baselineArrow.style.size>0&&Yp){r.save(),r.fillStyle=e.baselineArrow.style.color,r.translate(e.baselineArrow.position.x,e.baselineArrow.position.y);let t=e.baselineArrow.style.size/10;switch(r.scale(t,t),e.baselineArrow.direction){case`down`:r.fill(Xp);break;case`up`:r.fill(Zp);break}r.restore()}if(e.baselineDescr){let t=e.baselineDescr;r.font=t.style.font,r.fillStyle=t.style.color,r.fillText(Ru(r,t.text,a-t.position.x),t.position.x,t.position.y)}if(e.key&&(r.font=e.key.style.font,r.fillStyle=e.key.style.color,zu(r,Ru(r,e.key.text,a-e.key.position.x),e.key.position,e.key.style.underline,e.key.style.strikethrough)),e.keyDescr){let t=e.keyDescr;r.font=e.keyDescr?.style.font??t.style.font,r.fillStyle=t.style.color,r.fillText(Ru(r,t.text,a-t.position.x),t.position.x,t.position.y)}if(e.progressBar){if(r.fillStyle=e.progressBar.style.backgroundColor,r.beginPath(),r.roundRect(e.progressBar.position.x,e.progressBar.position.y,e.progressBar.dimension.width,e.progressBar.dimension.height,e.progressBar.dimension.height/2),r.fill(),r.fillStyle=e.progressBar.style.color,r.beginPath(),e.progressBar.value>0)r.roundRect(e.progressBar.position.x,e.progressBar.position.y,e.progressBar.dimension.width*Math.max(0,Math.min(1,e.progressBar.value)),e.progressBar.dimension.height,e.progressBar.dimension.height/2);else{let t=e.progressBar.dimension.width*Math.max(0,Math.min(1,-e.progressBar.value));r.roundRect(e.progressBar.position.x+e.progressBar.dimension.width-t,e.progressBar.position.y,t,e.progressBar.dimension.height,e.progressBar.dimension.height/2)}r.fill()}}let em=.05;function tm(e,t){let n=e||``;return t&&n?` `+n:n}function nm({width:e,height:t},n){return new rm({width:e,height:t},n).computeDesign()}var rm=class{context;width;height;constructor({width:e,height:t},n){if(this.runtime=n,this.width=e,this.height=t,typeof OffscreenCanvas>`u`)throw Error(`OffscreenCanvas is not supported in this environment`);let r=new globalThis.OffscreenCanvas(e,t).getContext(`2d`);if(!r)throw Error(`Unable to create scorecard measurement context`);this.context=r}computeDesign(){let e={canvas:{width:this.width,height:this.height,backgroundColor:this.backgroundColor}},t=this.getTextStyles(),n=0;if(this.title){let r,i;switch({height:n,width:i}=this.getFullTextDimensions(this.title,t.title.font),this.runtime.title.align){case`center`:r=(this.width-i)/2;break;case`right`:r=this.width-i-20;break;default:r=20}e.title={text:this.title,style:t.title,position:{x:r,y:10+n/2}}}let r=t.baselineArrow?.size??0,{height:i,width:a}=this.getTextDimensions(this.baseline,t.baselineValue.font);this.baseline||(i=this.getTextDimensions(this.baselineDescr,t.baselineDescr.font).height);let o=this.getTextDimensions(this.baselineDescr,t.baselineDescr.font).width,s;switch(this.runtime.baselineStyle?.align){case`right`:s=this.width-20-o-a;break;case`left`:s=20+r;break;default:s=(this.width-a-o+r)/2}if(this.baseline&&(e.baseline={text:this.baseline,style:t.baselineValue,position:{x:s,y:this.keyValue?this.height*(1-em*(this.runtime.progressBar?1:2)):this.height-(this.height-n-i)/2-10}},t.baselineArrow&&!this.runtime.progressBar&&(e.baselineArrow={direction:this.baselineArrow,style:t.baselineArrow,position:{x:e.baseline.position.x-r,y:e.baseline.position.y-(i+r)/2}})),e.baseline&&this.baselineDescr){let n={x:e.baseline.position.x+a,y:e.baseline.position.y};e.baselineDescr={text:this.baselineDescr,style:t.baselineDescr,position:n}}let c=0;this.runtime.progressBar&&(c=this.height*.05,e.progressBar={position:{x:40,y:this.height*(1-2*em)-i-c},dimension:{height:c,width:this.width-80},value:this.runtime.progressBar.value,style:{color:this.runtime.progressBar.color,backgroundColor:this.secondaryFontColor}});let{width:l,height:u}=this.getFullTextDimensions(this.keyValue,t.keyValue.font),d=this.getTextDimensions(this.keyDescr,t.keyDescr.font).width,f;switch(this.runtime.keyValueStyle?.align){case`right`:f=this.width-20-d-l;break;case`left`:f=20;break;default:f=(this.width-l-d)/2}if(this.keyValue&&(e.key={text:this.keyValue,style:t.keyValue,position:{x:Math.max(20,f),y:this.height*(.5-em*2)+10/2+(n+u/2)/2}}),e.key&&this.keyDescr){let n={x:e.key.position.x+l,y:e.key.position.y};e.keyDescr={text:this.keyDescr,style:t.keyDescr,position:n}}return e}get title(){return this.runtime.title.text??``}get keyValue(){return this.runtime.keyValue}get keyDescr(){return tm(this.runtime.keyDescr,this.keyValue)}get baseline(){return this.runtime.baselineDisplay}get baselineDescr(){return tm(this.runtime.baselineDescr,this.baseline)}get baselineArrow(){return this.runtime.baselineArrow}get backgroundColor(){return this.runtime.background}get secondaryFontColor(){return pf(this.backgroundColor)}getTextDimensions(e,t){this.context.font=t;let n=this.context.measureText(e);return{width:n.width,height:n.actualBoundingBoxAscent+n.actualBoundingBoxDescent}}getFullTextDimensions(e,t){this.context.font=t;let n=this.context.measureText(e);return{width:n.width,height:n.fontBoundingBoxAscent+n.fontBoundingBoxDescent}}getTextStyles(){let e=this.runtime.keyValueStyle?.fontSize??32,t=Math.floor(.9*e),n=this.runtime.baselineStyle?.fontSize??16,r=Math.floor(.9*n);return this.runtime.progressBar&&(n/=1.5),{title:{font:Su(this.runtime.title.fontSize??14,this.runtime.title.bold,this.runtime.title.italic),color:this.runtime.title.color??this.secondaryFontColor},keyValue:{color:this.runtime.keyValueStyle?.textColor||this.runtime.fontColor,font:Su(e,this.runtime.keyValueStyle?.bold,this.runtime.keyValueStyle?.italic),strikethrough:this.runtime.keyValueStyle?.strikethrough,underline:this.runtime.keyValueStyle?.underline},keyDescr:{color:this.runtime.keyValueDescrStyle?.textColor||this.runtime.fontColor,font:Su(t,this.runtime.keyValueDescrStyle?.bold,this.runtime.keyValueDescrStyle?.italic),strikethrough:this.runtime.keyValueDescrStyle?.strikethrough,underline:this.runtime.keyValueDescrStyle?.underline},baselineValue:{font:Su(n,this.runtime.baselineStyle?.bold,this.runtime.baselineStyle?.italic),strikethrough:this.runtime.baselineStyle?.strikethrough,underline:this.runtime.baselineStyle?.underline,color:this.runtime.baselineColor||this.runtime.baselineStyle?.textColor||this.secondaryFontColor},baselineDescr:{font:Su(r,this.runtime.baselineDescrStyle?.bold,this.runtime.baselineDescrStyle?.italic),strikethrough:this.runtime.baselineDescrStyle?.strikethrough,underline:this.runtime.baselineDescrStyle?.underline,color:this.runtime.baselineDescrStyle?.textColor??this.secondaryFontColor},baselineArrow:this.baselineArrow===`neutral`||this.runtime.progressBar?void 0:{size:this.keyValue?.8*n:0,color:this.runtime.baselineColor||this.runtime.baselineStyle?.textColor||this.secondaryFontColor}}}};let im=/Mac/i,am=!1;function om(){let e=document.createElement(`div`);e.setAttribute(`style`,`width:10px;height:1px;zoom:2;position:absolute;z-index:-10000`),document.body.appendChild(e),am=e.getBoundingClientRect().width!==20,document.body.removeChild(e)}(0,t.whenReady)(om);let sm=[`Shift`,`Control`,`Alt`,`Meta`];function cm(e,t){return e?!!t.target&&e.contains(t.target):!1}function lm(e=1){let t=document.querySelector(`.o-grid-overlay`),n=t&&um(t,e);if(!n)throw Error(`Can't find spreadsheet position`);return n}function um(e,t){let n=e.closest(`.o-zoomable`),r,i=1;n?(r=n,i=am?t:1):r=e;let a=r.getBoundingClientRect();return{x:a.x*i,y:a.y*i,width:a.width*i,height:a.height*i}}function dm(e){return e.el?fm(e.el):{x:0,y:0,width:0,height:0}}function fm(e){let t=e.getBoundingClientRect();return{x:t.x,y:t.y,width:t.width,height:t.height}}function*pm(e){if(yield e,e.hasChildNodes())for(let t of e.childNodes)yield*pm(t)}function mm(){return Array.from(document.querySelectorAll(`.o-spreadsheet .o-menu`))}function hm(e){let{startElement:t,endElement:n,startSelectionOffset:r,endSelectionOffset:i}=gm(e);return{start:_m(e,t,r),end:_m(e,n,i)}}function gm(e){let t=document.getSelection();return{startElement:t.anchorNode||e,startSelectionOffset:t.anchorOffset,endElement:t.focusNode||e,endSelectionOffset:t.focusOffset}}function _m(e,t,n){let r=0,i=pm(e),a=i.next(),o=!0;for(;!a.done&&a.value!==t;)a.value.hasChildNodes()||a.value.textContent&&(r+=a.value.textContent.length),(a.value.nodeName===`P`||a.value.nodeName===`DIV`&&a.value!==e)&&(o?o=!1:r++),a=i.next();if(a.value!==t)return 0;if(!a.value.hasChildNodes())r+=n;else{let e=[...a.value.childNodes].slice(0,n);r+=e.reduce((t,n,r)=>{if(n.textContent!==null){let i=n.textContent.length;return n.nodeName===`P`&&r!==e.length-1&&i++,t+i}else return t},0)}return t.nodeName===`P`&&!o&&t.textContent===``&&r++,r}let vm=/^[a-zA-Z]$/;function ym(e,t=`key`){let n=``;sm.includes(e.key)||(xm(e)&&(n+=`Ctrl+`),e.altKey&&(n+=`Alt+`),e.shiftKey&&(n+=`Shift+`));let r=t===`key`?e.key:e.code;return n+=vm.test(r)?r.toUpperCase():r,n}function bm(){return!!im.test(navigator.userAgent)}function xm(e){return bm()||Dm()?e.metaKey:e.ctrlKey}function Sm(e){return e.button===1||xm(e)&&e.button===0}function Cm(e,t){let n=document.createElement(`a`);n.href=e,n.download=t,document.body.appendChild(n),n.click(),document.body.removeChild(n)}function wm(){return/Firefox/i.test(navigator.userAgent)}function Tm(){return navigator.maxTouchPoints||1}function Em(){return/Android/i.test(navigator.userAgent)}function Dm(){return/(iPad|iPhone|iPod)/i.test(navigator.userAgent)||navigator.platform===`MacIntel`&&Tm()>1}function Om(){return/(webOS|BlackBerry|Windows Phone)/i.test(navigator.userAgent)}function km(){return Em()||Dm()||Om()}function Am(e,t,n){let r=e.model.getters.getViewportZoomLevel();if(n===void 0&&(n=Nm(t,r)),!n)return jm(t);let i=t.clientX-n.x,a=t.clientY-n.y,o=i/r,s=a/r;return{ev:t,clientX:t.clientX-i+o,clientY:t.clientY-a+s,offsetX:o,offsetY:s}}function jm(e){return{ev:e,clientX:e.clientX,clientY:e.clientY,offsetX:e.offsetX,offsetY:e.offsetY}}function Mm(e,t){return{height:t.height*e,width:t.width*e,x:t.x*e,y:t.y*e}}function Nm(e,t){let n=e.target;return!n||!(`classList`in n)||!(n instanceof Element)?null:um(n,t)}var Pm=class extends t.Component{static template=`o-spreadsheet-ScorecardChart`;static props={chartId:String,isFullScreen:{type:Boolean,optional:!0}};canvas=(0,t.useRef)(`chartContainer`);get runtime(){return this.env.model.getters.getChartRuntime(this.props.chartId)}get title(){let e=this.env.model.getters.getChartDefinition(this.props.chartId).title.text;return e?this.env.model.getters.dynamicTranslate(e):``}setup(){(0,t.useEffect)(this.createChart.bind(this),()=>{let e=this.canvas.el.getBoundingClientRect();return[e.width,e.height,this.runtime,this.canvas.el,window.devicePixelRatio]})}createChart(){let e=this.canvas.el,t=this.env.model.getters.getViewportZoomLevel();$p(nm(Mm(1/t,e.getBoundingClientRect()),this.runtime),e,t)}};let Fm=`#F3F2F1`;function Im(e,t,n=1,r){let i=r??Lm(e),a=typeof globalThis.devicePixelRatio==`number`?globalThis.devicePixelRatio:1;e.width=i.width*a,e.height=i.height*a;let o=e.getContext(`2d`);if(!o)throw Error(`Unable to retrieve 2D context from canvas`);o.scale(a*n,a*n);let s=Um({width:i.width/n,height:i.height/n,x:0,y:0},t,o);zm(o,s),Rm(o,s),Vm(o,s),Bm(o,s),Hm(o,s)}function Lm(e){if(e instanceof HTMLCanvasElement){let t=e.getBoundingClientRect();return{width:t.width,height:t.height}}return{width:e.width,height:e.height}}function Rm(e,t){e.save();let n=t.gauge,r=n.rect.x+n.rect.width/2,i=n.rect.y+n.rect.height,a=n.rect.height-n.arcWidth/2;if(a<0)return;let o=n.percentage===1?0:Math.PI*(1+n.percentage);e.strokeStyle=Fm,e.beginPath(),e.lineWidth=n.arcWidth,e.arc(r,i,a,o,0),e.stroke(),e.strokeStyle=n.color,e.beginPath(),e.arc(r,i,a,Math.PI,o),e.stroke(),e.restore()}function zm(e,t){e.save(),e.fillStyle=t.backgroundColor,e.fillRect(0,0,t.width,t.height),e.restore()}function Bm(e,t){for(let n of[t.minLabel,t.maxLabel,t.gaugeValue])e.save(),e.textAlign=`center`,e.fillStyle=n.color,e.font=`${n.fontSize}px ${Se}`,e.fillText(n.label,n.textPosition.x,n.textPosition.y),e.restore()}function Vm(e,t){let{x:n,y:r,width:i,height:a}=t.gauge.rect;for(let o of t.inflectionValues){e.save(),e.translate(n+i/2-.5,r+a-.5),e.rotate(Math.PI/2-o.rotation),e.lineWidth=2,e.strokeStyle=pf(t.backgroundColor)+`aa`,e.beginPath(),e.moveTo(0,-(a-t.gauge.arcWidth)),e.lineTo(0,-a-3),e.stroke(),e.textAlign=`center`,e.font=`${o.fontSize}px ${Se}`,e.fillStyle=o.color;let s=-a-6-o.offset;e.fillText(o.label,0,s),e.restore()}}function Hm(e,t){e.save();let n=t.title;e.font=Su(n.fontSize,n.bold,n.italic),e.textBaseline=`middle`,e.fillStyle=n.color,e.fillText(n.label,n.textPosition.x,n.textPosition.y),e.restore()}function Um(e,t,n){let r=t.maxValue,i=t.minValue,a=Zm(t,`animated`),o=Wm(e,t.title.text),s=o.width/6,c=a?(a-i.value)/(r.value-i.value):0,l={x:e.width/2,y:o.y+o.height-o.height/12},u=80;o.height<300&&(u*=o.height/300);let d=o.width/2,f=t.gaugeValue?.label||`-`;wu(n,f,{fontSize:u},`px`)>d&&(u=Pu(d,u,e=>wu(n,f,{fontSize:e},`px`)));let p={x:o.x+s/2,y:o.y+o.height+12},m={x:o.x+o.width-s/2,y:o.y+o.height+12},h=pf(t.background),g=Gm(t,o,h,n),_=0,v=0,y=0;switch(t.title.text&&({width:v,height:y}=Du(n,t.title.text,{fontSize:16,...t.title},`px`)),t.title.align){case`right`:_=e.width-v-20;break;case`center`:_=(e.width-v)/2;break;default:_=20;break}return{width:e.width,height:e.height,title:{label:t.title.text??``,fontSize:t.title.fontSize??16,textPosition:{x:_,y:15+y/2},color:t.title.color??h,bold:t.title.bold,italic:t.title.italic},backgroundColor:t.background,gauge:{rect:o,arcWidth:s,percentage:S(c,0,1),color:Km(t)},inflectionValues:g,gaugeValue:{label:f,textPosition:l,fontSize:u,color:h},minLabel:{label:t.minValue.label,textPosition:p,fontSize:12,color:h},maxLabel:{label:t.maxValue.label,textPosition:m,fontSize:12,color:h}}}function Wm(e,t){let n=t?25:0,r=e.height-20-n-10,i=e.width-60,a,o;return i>2*r?(a=2*r,o=r):(a=i,o=i/2),{x:30+(i-a)/2,y:n+10+(r-o)/2,width:a,height:o}}function Gm(e,t,n,r){let i=e.maxValue,a=e.minValue,o={x:t.x+t.width/2,y:t.y+t.height},s={fontSize:12},c=[],l=[];for(let u of e.inflectionValues){let e=(u.value-a.value)/(i.value-a.value),d=wu(r,u.label,s,`px`),f=Math.PI-Math.PI*e,p=Xm(f,t.height+6,o.x,o.y,d+2,12),m=l.some(e=>Ym(e,p))?12:0;l.push(p),c.push({rotation:f,label:u.label,fontSize:12,color:n,offset:m})}return c}function Km(e){let t=Zm(e,`final`);if(t===void 0)return Fm;for(let n=0;n<e.inflectionValues.length;n++){let r=e.inflectionValues[n];if(r.operator===`<`&&t<r.value||r.operator===`<=`&&t<=r.value)return e.colors[n]}return e.colors.at(-1)}function qm(e){return[{start:e.topLeft,end:e.topRight},{start:e.topRight,end:e.bottomRight},{start:e.bottomRight,end:e.bottomLeft},{start:e.bottomLeft,end:e.topLeft}]}function Jm(e,t){let n=e.start,r=e.end,i=t.start,a=t.end;function o(e,t,n){return(n.y-e.y)*(t.x-e.x)>(t.y-e.y)*(n.x-e.x)}return o(n,i,a)!==o(r,i,a)&&o(n,r,i)!==o(n,r,a)}function Ym(e,t){let n=qm(e),r=qm(t);for(let e of n)for(let t of r)if(Jm(e,t))return!0;return!1}function Xm(e,t,n,r,i,a){let o=Math.cos(e),s=Math.sin(e),c=o*t,l=s*t,u=i/2*s,d=i/2*o,f={x:c+u+n,y:r-(l-d)},p={x:c-u+n,y:r-(l+d)},m=o*(t+a),h=s*(t+a),g={x:m-u+n,y:r-(h+d)};return{bottomLeft:p,bottomRight:f,topRight:{x:m+u+n,y:r-(h-d)},topLeft:g}}function Zm(e,t){return t===`animated`&&e.animationValue!==void 0?e.animationValue:e.gaugeValue?.value}let Qm={responsive:!0,maintainAspectRatio:!1,elements:{line:{fill:!1},point:{hitRadius:15}},animation:!1,events:[`mousemove`,`mouseout`,`click`,`touchstart`,`touchmove`,`mouseup`]};async function $m(e,t,n){try{let r=th(t.width,t.height),i=ih(r,e,t,n),a=await rh(r);return i(),a}catch(e){console.log(`Error exporting chart to image URL: `+e.message)}}async function eh(e,t,n){try{let r=th(t.width,t.height),i=ih(r,e,t,n),a=await nh(r);return i(),a}catch(e){console.log(`Error exporting chart to image file: `+e.message)}return null}function th(e,t){if(!globalThis.OffscreenCanvas)throw Error(`converting a chart to an image using OffscreenCanvas is not supported in this environment`);return new OffscreenCanvas(e,t)}async function nh(e){return`convertToBlob`in e?e.convertToBlob({type:`image/png`}):new Promise(t=>e.toBlob(t,`image/png`))}async function rh(e){let t=await nh(e);if(t)return new Promise(e=>{let n=new FileReader;n.addEventListener(`load`,()=>{e(n.result)}),n.readAsDataURL(t)})}function ih(e,t,n,r){if(`chartJsConfig`in t){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);let n=_r();n||vr();let r=x(t.chartJsConfig);if(!globalThis.Chart.registry.controllers.get(r.type))throw console.log(`Chart of type "${r.type}" is not registered in Chart.js library.`),n||yr(),Error(`Chart of type "${r.type}" is not registered in Chart.js library.`);let i=new globalThis.Chart(e,r);return()=>{i.destroy(),n||yr()}}else r===`scorecard`?$p(nm(n,t),e):r===`gauge`&&Im(e,t,1,n);return()=>{}}function ah(e,t){let{scrollX:n,scrollY:r}=e.getActiveSheetScrollInfo(),i=e.getSheetViewDimension(),a=n+Math.max(0,(i.width-t.width)/2),o=r+Math.max(0,(i.height-t.height)/2);return e.getPositionAnchorOffset({x:a,y:o})}function oh(e,t){let n=x(t),r=e.getSheetViewDimension(),i=r.width,a=r.height;if(n.width>i){let e=i/n.width;n.width=i,n.height*=e}if(n.height>a){let e=a/n.height;n.height=a,n.width*=e}return n}function sh(e,t){return t.model.getters.getChartIdFromFigureId(e)?p([{id:`edit`,name:A(`Edit`),execute:()=>{t.model.dispatch(`SELECT_FIGURE`,{figureId:e}),t.openSidePanel(`ChartPanel`)},icon:`o-spreadsheet-Icon.EDIT`,isEnabled:e=>!e.isSmall},uh(e,t),dh(e,t),fh(e,t),ph(e,t),mh(e,t)]).filter(e=>t.model.getters.isReadonly()?e.isReadonlyAllowed:!0):[]}function ch(e,t){return p([uh(e,t,A(`Image copied to clipboard`)),dh(e,t),{id:`reset_size`,name:A(`Reset size`),execute:async()=>{let n=t.model.getters.getActiveSheetId(),r=t.model.getters.getFigure(n,e);if(!r)return;let i=t.model.getters.getImagePath(e),a=t.model.getters.getImageSize(e)??await t.imageProvider?.getImageOriginalSize(i);if(!t.model.getters.getImageSize(e)){let n=t.model.getters.getImage(e);n.size=a}let{col:o,row:s}=r,{height:c,width:l}=oh(t.model.getters,a);t.model.dispatch(`UPDATE_FIGURE`,{sheetId:n,figureId:e,height:c,width:l,col:o,row:s})},icon:`o-spreadsheet-Icon.REFRESH`},{id:`download`,name:A(`Download`),execute:async()=>{t.model.dispatch(`SELECT_FIGURE`,{figureId:e}),Cm(t.model.getters.getImagePath(e),`image`)},icon:`o-spreadsheet-Icon.DOWNLOAD`},mh(e,t)])}function lh(e,t){let n=t=>t.model.getters.getSelectedCarouselItem(e)?.type===`chart`;return p([{id:`edit_carousel`,name:A(`Edit carousel`),execute:()=>{t.model.dispatch(`SELECT_FIGURE`,{figureId:e}),t.openSidePanel(`CarouselPanel`,{figureId:e})},icon:`o-spreadsheet-Icon.EDIT`,isEnabled:e=>!e.isSmall},{...uh(e,t,A(`Carousel copied to clipboard`)),name:A(`Copy carousel`)},{...dh(e,t),name:A(`Cut carousel`)},{...mh(e,t),name:A(`Delete carousel`),separator:!0},{id:`edit_chart`,name:A(`Edit chart`),execute:()=>{t.model.dispatch(`SELECT_FIGURE`,{figureId:e}),t.openSidePanel(`ChartPanel`,{})},icon:`o-spreadsheet-Icon.EDIT`,isEnabled:e=>!e.isSmall,isVisible:n},{...fh(e,t),isVisible:n,name:A(`Copy chart as image`)},{...ph(e,t),isVisible:n,name:A(`Download chart`)},{id:`popout_chart`,name:A(`Pop out chart`),icon:`o-spreadsheet-Icon.EXTERNAL`,execute:()=>{let n=t.model.getters.getSelectedCarouselItem(e);!n||n.type!==`chart`||t.model.dispatch(`POPOUT_CHART_FROM_CAROUSEL`,{carouselId:e,chartId:n.chartId,sheetId:t.model.getters.getActiveSheetId()})},isVisible:n},{id:`delete_carousel_item`,name:t=>t.model.getters.getSelectedCarouselItem(e)?.type===`chart`?A(`Delete chart`):A(`Delete data view`),execute:()=>{let n=t.model.getters.getSelectedCarouselItem(e);if(!n)return;let r=t.model.getters.getCarousel(e),i=r.items.filter(e=>!T(e,n));t.model.dispatch(`UPDATE_CAROUSEL`,{figureId:e,sheetId:t.model.getters.getActiveSheetId(),definition:{...r,items:i}})},icon:`o-spreadsheet-Icon.TRASH`,isVisible:t=>t.model.getters.getCarousel(e).items.length>=1}]).filter(e=>t.model.getters.isReadonly()?e.isReadonlyAllowed:!0)}function uh(e,t,n){return{id:`copy`,name:A(`Copy`),shortcut:`Ctrl+C`,execute:async()=>{t.model.dispatch(`SELECT_FIGURE`,{figureId:e}),t.model.dispatch(`COPY`);let r=await t.model.getters.getClipboardTextAndImageContent();await t.clipboard.write(r),n&&t.notifyUser({sticky:!1,type:`success`,text:n})},icon:`o-spreadsheet-Icon.CLIPBOARD`,isEnabledOnLockedSheet:!0}}function dh(e,t){return{id:`cut`,name:A(`Cut`),shortcut:`Ctrl+X`,execute:async()=>{t.model.dispatch(`SELECT_FIGURE`,{figureId:e}),t.model.dispatch(`CUT`),await t.clipboard.write(await t.model.getters.getClipboardTextAndImageContent())},icon:`o-spreadsheet-Icon.CUT`}}function fh(e,t){return{id:`copy_as_image`,name:A(`Copy as image`),icon:`o-spreadsheet-Icon.COPY_AS_IMAGE`,execute:async()=>{let n=t.model.getters.getFigureSheetId(e),r=t.model.getters.getFigure(n,e),i=t.model.getters.getChartIdFromFigureId(e);if(!i)return;let a=t.model.getters.getChartType(i),o=await eh(t.model.getters.getChartRuntime(i),r,a);if(!o)return;let s=await new Promise(e=>{let t=new FileReader;t.addEventListener(`loadend`,n=>{let r=t.result;e(r)}),t.readAsArrayBuffer(o)}),c=`<img src="data:image/png;base64,${new Uint8Array(s).toBase64()}" />`;await t.clipboard.write({"text/html":c,"image/png":o}),t.notifyUser({sticky:!1,type:`success`,text:A(`Chart copied to clipboard`)})},isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0}}function ph(e,t){return{id:`download`,name:A(`Download`),icon:`o-spreadsheet-Icon.DOWNLOAD`,execute:async()=>{let n=t.model.getters.getFigureSheetId(e),r=t.model.getters.getFigure(n,e),i=t.model.getters.getChartIdFromFigureId(e);if(!i)return;let a=t.model.getters.getChartType(i),o=await $m(t.model.getters.getChartRuntime(i),r,a);o&&Cm(o,`chart`)},isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0}}function mh(e,t){return{id:`delete`,name:A(`Delete`),execute:()=>{t.model.dispatch(`DELETE_FIGURE`,{sheetId:t.model.getters.getActiveSheetId(),figureId:e})},icon:`o-spreadsheet-Icon.TRASH`}}let hh=new B,gh={type:`bar`,title:{},stacked:!1,dataSetStyles:{},dataSource:{type:`range`,dataSets:[],dataSetsHaveTitle:!1},legendPosition:`top`,humanize:!0};function _h(e,t){if(t.type===`carouselDataView`)return`o-spreadsheet-Icon.DATA`;let n=e.getChartDefinition(t.chartId);return(hh.getAll().find(e=>e.matcher?.(n))||hh.get(n.type)).preview}function vh(e,t){if(t.title)return t.title;if(t.type===`carouselDataView`)return A(`Data`);let n=e.getChartDefinition(t.chartId);return(hh.getAll().find(e=>e.matcher?.(n))||hh.get(n.type)).displayName}let yh=[`x1`,rf],bh=[`x`,...yh];var xh=class extends fr{mutators=[`resetAxisLimits`,`updateAxisLimits`,`updateTrendLineConfiguration`,`clearAxisLimits`];originalAxisLimits={};currentAxesLimits={};idConversion={};axisDesignBoundaries={};handle(e){switch(e.type){case`DELETE_FIGURE`:if(e.figureId&&this.idConversion[e.figureId]){for(let t of this.idConversion[e.figureId])delete this.originalAxisLimits[t],delete this.currentAxesLimits[t];delete this.axisDesignBoundaries[e.figureId]}break;case`UPDATE_CHART`:let t=`${e.definition.type}-${e.chartId}`;if(this.idConversion[e.figureId]||(this.idConversion[e.figureId]=new Set),this.idConversion[e.figureId].add(t),!(`zoomable`in e.definition&&e.definition.zoomable))this.clearAxisLimits(t),delete this.axisDesignBoundaries[e.figureId];else{let n=`axesDesign`in e.definition?e.definition.axesDesign:void 0,r=n?.x?.min,i=n?.x?.max,a=this.axisDesignBoundaries[e.figureId];(a?.min!==r||a?.max!==i)&&(this.clearAxisLimits(t),this.axisDesignBoundaries[e.figureId]={min:r,max:i})}break}}clearAxisLimits(e){return delete this.originalAxisLimits[e],delete this.currentAxesLimits[e],`noStateChange`}resetAxisLimits(e,t){for(let n of bh)t[n]?this.originalAxisLimits[e]={...this.originalAxisLimits[e],[n]:{...t[n]}}:this.originalAxisLimits[e]?.[n]&&delete this.originalAxisLimits[e][n];return`noStateChange`}updateAxisLimits(e,t){let{min:n,max:r}=t;return n>r&&([n,r]=[r,n]),this.currentAxesLimits[e]={x:{min:n,max:r}},`noStateChange`}updateTrendLineConfiguration(e){if(!this.originalAxisLimits[e]?.x||!this.currentAxesLimits[e]?.x)return`noStateChange`;let t=this.originalAxisLimits[e].x;for(let n of yh){if(!this.originalAxisLimits[e][n])continue;let r=t.max-t.min,i=this.originalAxisLimits[e][n],a=(i.max-i.min)/r,o=i.min-t.min*a,s=this.currentAxesLimits[e].x.min,c=this.currentAxesLimits[e].x.max;this.currentAxesLimits[e][n]={min:s*a+o,max:c*a+o}}return`noStateChange`}},Sh=class extends Vp{static template=`o-spreadsheet-ZoomableChartJsComponent`;store;masterChartCanvas=(0,t.useRef)(`masterChartCanvas`);masterChart;mode;hasLinearScale;isBarChart;chartId=``;datasetBoundaries={min:0,max:0};removeEventListeners=()=>{};isMasterChartAllowed=!1;setup(){this.store=O(xh),super.setup()}unmount(){super.unmount(),this.masterChart?.destroy(),this.removeEventListeners()}get containerStyle(){return`
19
+ height:${this.sliceable?`calc(100% - 60px)`:`100%`};
20
+ `}get masterChartContainerStyle(){let e=this.env.model.getters.getChartRuntime(this.props.chartId);return e&&!e.chartJsConfig.data.datasets.some(e=>e.data.length>1)?`opacity: 0.3;`:``}get sliceable(){if(this.props.isFullScreen)return!0;let e=this.env.model.getters.getChartDefinition(this.props.chartId);return(`zoomable`in e&&e.zoomable)??!1}get axisOffset(){return!this.hasLinearScale&&this.isBarChart?.5:0}getMasterChartConfiguration(e){let t=e;return{...t,options:{...t.options,plugins:{...t.options.plugins,zoomWindowPlugin:{getLowerBound:()=>this.lowerBound,getUpperBound:()=>this.upperBound}}}}}getDetailChartConfiguration(e){if(!this.sliceable)return e;let t=e.options.scales.x;return this.store.currentAxesLimits[this.chartId]?.x&&(t={...t,...this.getStoredBoundaries()}),{...e,options:{...e.options,scales:{...e.options.scales,x:t},layout:{...e.options.layout,padding:{...e.options.layout?.padding,bottom:5}}}}}getAxisLimitsFromDataset(e){let t=e.data.datasets.map(e=>e.data).flat().map((e,t)=>typeof e==`object`&&e?e.x:t);return{min:Math.min(...t),max:Math.max(...t)}}setMasterChartCursor(e){let t=this.masterChartCanvas?.el;if(e&&!e.chartJsConfig.data.datasets.some(e=>e.data.length>1)){t.style.cursor=`not-allowed`,this.isMasterChartAllowed=!1;return}t.style.cursor=`default`,this.isMasterChartAllowed=!0}createChart(e){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);let t=e.chartJsConfig;if(this.isBarChart=t.type===`bar`,this.chartId=`${t.type}-${this.props.chartId}`,this.datasetBoundaries=this.getAxisLimitsFromDataset(t),this.sliceable&&(e.chartJsConfig=this.getDetailChartConfiguration(t)),super.createChart(e),this.hasLinearScale=this.chart?.scales?.x?.type===`linear`,!this.sliceable||!(`masterChartConfig`in e)){this.isMasterChartAllowed=!1;return}this.masterChart?.destroy();let n=(this.masterChartCanvas?.el).getContext(`2d`);this.setMasterChartCursor(e),this.masterChart=new globalThis.Chart(n,this.getMasterChartConfiguration(e.masterChartConfig)),this.resetAxesLimits(),this.chart?.options&&(this.chart.options.animation=!1)}updateChartJs(e){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);let t=e.chartJsConfig,{min:n,max:r}=this.getAxisLimitsFromDataset(t);if((this.datasetBoundaries.min!==n||this.datasetBoundaries.max!==r)&&(this.store.clearAxisLimits(this.chartId),this.datasetBoundaries={min:n,max:r}),this.isBarChart=t?.type===`bar`,this.chartId=`${t.type}-${this.props.chartId}`,this.sliceable&&(e.chartJsConfig=this.getDetailChartConfiguration(t)),super.updateChartJs(e),this.hasLinearScale=this.chart?.scales?.x?.type===`linear`,!this.sliceable||!(`masterChartConfig`in e))this.masterChart=void 0,this.isMasterChartAllowed=!1;else{let t=this.getMasterChartConfiguration(e.masterChartConfig);if(this.masterChart)this.masterChart.data=t.data,this.masterChart.config.options=t.options,this.masterChart.update();else{let e=this.masterChartCanvas.el.getContext(`2d`);this.masterChart=new globalThis.Chart(e,t)}this.setMasterChartCursor(e)}this.resetAxesLimits(),this.chart?.options&&(this.chart.options.animation=!1)}resetAxesLimits(){if(this.chart){if(!this.store.originalAxisLimits[this.chartId]?.x){let e=this.masterChart?this.masterChart.scales:this.chart.scales;!this.hasLinearScale&&e.x&&(e={...e,x:this.adjustBoundaries(e.x)}),this.store.resetAxisLimits(this.chartId,e);return}this.updateTrendingLineAxes(),this.chart.update(),this.masterChart&&this.masterChart.update()}}updateTrendingLineAxes(){this.store.updateTrendLineConfiguration(this.chartId);let e=this.store.currentAxesLimits[this.chartId];for(let t of[`x1`,rf])!this.chart?.config?.options?.scales?.[t]||!e?.[t]||(this.chart.config.options.scales[t].min=e[t].min,this.chart.config.options.scales[t].max=e[t].max)}get upperBound(){return this.computePosition(this.store.currentAxesLimits[this.chartId]?.x?.max)}get lowerBound(){return this.computePosition(this.store.currentAxesLimits[this.chartId]?.x?.min)}computePosition(e){if(e===void 0||!this.masterChart?.scales?.x)return;let t=this.masterChart.scales.x;if(this.hasLinearScale)return t.getPixelForValue(e);if(!this.masterChart.chartArea)return;let{left:n,right:r}=this.masterChart.chartArea,{min:i,max:a}=t,o=this.axisOffset;return n+(r-n)*(o+e-i)/(2*o+a-i)}computeCoordinate(e){if(!this.masterChart)return;let t=this.masterChart.scales.x;if(this.hasLinearScale){let n=t.getValueForPixel(e);return n===void 0?void 0:Math.round(n*100)/100}let{left:n,right:r}=this.masterChart.chartArea,i=this.axisOffset;return t.min-i+(t.max+2*i-t.min)*(e-n)/(r-n)}getStoredBoundaries(){let{min:e,max:t}=this.store.currentAxesLimits[this.chartId].x;return this.hasLinearScale||(e=Math.ceil(e),t=Math.floor(t)),{min:e,max:t}}adjustBoundaries({min:e,max:t}){return this.hasLinearScale||(e=Math.ceil(e)-this.axisOffset,t=Math.floor(t)+this.axisOffset),{min:e,max:t}}updateAxisLimits(e,t){if(e===t||!this.chart)return;this.store.updateAxisLimits(this.chartId,{min:e,max:t});let{min:n,max:r}=this.getStoredBoundaries();(r>n||this.isBarChart&&r===n)&&(this.chart.config.options.scales.x.min=n,this.chart.config.options.scales.x.max=r,this.updateTrendingLineAxes(),this.chart.update()),this.masterChart?.update()}onMasterChartPointerDown(e){this.removeEventListeners();let t=Am(this.env,e,this.masterChartCanvas.el?.getBoundingClientRect()),n=t.offsetX;if(!this.masterChart?.chartArea||!this.chart?.scales?.x)return;let{left:r,right:i,top:a,bottom:o}=this.masterChart.chartArea,s=this.upperBound??i,c=this.lowerBound??r;if(n<r-5||n>i+5||t.offsetY<a||t.offsetY>o)return;e.preventDefault(),e.stopPropagation();let l,u,d,f=n;if((c!==r||s!==i)&&n>c+5&&n<s-5){l=t.offsetX-c,this.mode=`moveInMaster`;let e=this.store.currentAxesLimits[this.chartId]?.x;u=(e?.max??this.chart.scales.x.max)-(e?.min??this.chart.scales.x.min)}else this.mode=`selectInMaster`,l=Math.abs(n-c)<5?s:Math.abs(n-s)<5?c:S(n,r,i),d=this.computeCoordinate(l);let p=this.store.originalAxisLimits[this.chartId].x.min,m=this.store.originalAxisLimits[this.chartId].x.max,h=e=>{if(this.mode===`moveInMaster`){let t=this.computeCoordinate(e-l);return t<p?t=p:t>m-u&&(t=m-u),{min:t,max:t+u}}else if(this.mode===`selectInMaster`){let t=S(e,r,i);if(Math.abs(l-t)>5){let e=this.computeCoordinate(t);return d===void 0||e===void 0?{}:{min:Math.min(d,e),max:Math.max(d,e)}}}return{}},g=e=>{let t=Am(this.env,e,this.masterChartCanvas.el?.getBoundingClientRect()).offsetX;if(Math.abs(t-f)<5)return;let{min:n,max:r}=h(t);n!==void 0&&r!==void 0&&this.updateAxisLimits(n,r)},_=e=>{this.removeEventListeners();let{min:t,max:n}=this.chart.scales.x;this.hasLinearScale||(this.mode===`moveInMaster`?(t=Math.round(t)-this.axisOffset,n=t+u):{min:t,max:n}=this.adjustBoundaries({min:t,max:n})),this.updateAxisLimits(t,n),this.mode=void 0,this.updateMasterChartCursor(e)};this.removeEventListeners=()=>{window.removeEventListener(`pointermove`,g,!0),window.removeEventListener(`pointerup`,_,!0)},window.addEventListener(`pointermove`,g,!0),window.addEventListener(`pointerup`,_,!0)}updateMasterChartCursor(e){let t=e.target,{offsetX:n,offsetY:r}=Am(this.env,e,t?.getBoundingClientRect());if(!(!t||!this.isMasterChartAllowed)&&this.mode===void 0){if(!this.masterChart?.chartArea){t.style.cursor=`default`;return}let{left:e,right:i,top:a,bottom:o}=this.masterChart.chartArea,s=this.lowerBound??e,c=this.upperBound??i;r<a||r>o?t.style.cursor=`default`:Math.abs(s-n)<5||Math.abs(c-n)<5?t.style.cursor=`ew-resize`:s<n&&n<c&&(s!==e||c!==i)?t.style.cursor=`grab`:t.style.cursor=`crosshair`}}onMasterChartMouseLeave(e){let t=e.target;!t||!this.isMasterChartAllowed||(t.style.cursor=`default`)}onMasterChartDoubleClick(e){this.mode=void 0;let t=Am(this.env,e,this.masterChartCanvas.el?.getBoundingClientRect()),n=t.offsetX;if(!this.masterChart?.chartArea||!this.chart?.scales.x)return;let{left:r,right:i,top:a,bottom:o}=this.masterChart.chartArea,s=this.upperBound??i,c=this.lowerBound??r;if(s<c&&([s,c]=[c,s]),n<r-5||n>i+5||t.offsetY<a||t.offsetY>o)return;e.preventDefault(),e.stopPropagation();let{min:l,max:u}=this.store.currentAxesLimits[this.chartId]?.x??this.chart.scales.x,d=this.store.originalAxisLimits[this.chartId].x;if(d){if(Math.abs(n-c)<5)l=d.min;else if(Math.abs(n-s)<5)u=d.max;else if(c<n&&n<s)l=d.min,u=d.max;else return;this.updateAxisLimits(l,u)}}};let Ch=new B;Ch.add(`animatedBackgroundColorChange`,{id:`animatedBackgroundColorChange`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>e?.style?.fillColor!==t?.style?.fillColor,updateAnimation:function(e,t,n,r){let i=Bd([{value:0,color:n.style.fillColor||`#ffffff`},{value:1,color:r.style.fillColor||`#ffffff`}]);t.style.fillColor=i(wh[this.easingFn](e))}}),Ch.add(`animatedTextColorChange`,{id:`animatedTextColorChange`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>e?.style?.textColor!==t?.style?.textColor,updateAnimation:function(e,t,n,r){let i=Bd([{value:0,color:n.style.textColor||`#000000`},{value:1,color:r.style.textColor||`#000000`}]);t.style.textColor=i(wh[this.easingFn](e))}}),Ch.add(`animatedDataBar`,{id:`animatedDataBar`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>e?.dataBarFill?.percentage!==t?.dataBarFill?.percentage,updateAnimation:function(e,t,n,r){let i=n?.dataBarFill?.percentage||0,a=r?.dataBarFill?.percentage||0,o=wh[this.easingFn](e),s=i+(a-i)*o;t.dataBarFill={color:r.dataBarFill?.color||n.dataBarFill?.color||`#ffffff`,percentage:s}}}),Ch.add(`textFadeIn`,{id:`textFadeIn`,easingFn:`easeInCubic`,hasAnimation:(e,t)=>{let n=e?.content?.textLines?.join(`
21
+ `),r=t?.content?.textLines?.join(`
22
+ `);return!!(!n&&r)},updateAnimation:function(e,t,n,r){t.textOpacity=wh[this.easingFn](e)}}),Ch.add(`textFadeOut`,{id:`textFadeOut`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>{let n=e?.content?.textLines?.join(`
23
+ `),r=t?.content?.textLines?.join(`
24
+ `);return!!(n&&!r)},updateAnimation:function(e,t,n,r){let i=1-wh[this.easingFn](e),a={...n.style};delete a.fillColor,t.textOpacity=i,t.content=n.content,t.clipRect=n.clipRect,Object.assign(t.style,a)}}),Ch.add(`iconFadeIn`,{id:`iconFadeIn`,easingFn:`easeInCubic`,hasAnimation:(e,t)=>!!(!e?.icons?.left&&t?.icons?.left||!e?.icons?.right&&t?.icons?.right||!e?.icons?.center&&t?.icons?.center),updateAnimation:function(e,t,n,r){let i=wh[this.easingFn](e);t.icons.left&&r.icons.left&&!n.icons.left&&(t.icons.left.opacity=i),t.icons.right&&r.icons.right&&!n.icons.right&&(t.icons.right.opacity=i),t.icons.center&&r.icons.center&&!n.icons.center&&(t.icons.center.opacity=i)}}),Ch.add(`iconFadeOut`,{id:`iconFadeOut`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>!!(e?.icons?.left&&!t?.icons?.left||e?.icons?.right&&!t?.icons?.right||e?.icons?.center&&!t?.icons?.center),updateAnimation:function(e,t,n,r){let i=1-wh[this.easingFn](e);t.icons||={},n.icons.left&&!r.icons.left&&(t.icons.left={...n.icons.left,opacity:i}),n.icons.right&&!r.icons.right&&(t.icons.right={...n.icons.right,opacity:i}),n.icons.center&&!r.icons.center&&(t.icons.center={...n.icons.center,opacity:i})}}),Ch.add(`textChange`,{id:`textChange`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>{let n=e?.content?.textLines?.join(`
25
+ `),r=t?.content?.textLines?.join(`
26
+ `);return!!(n&&r&&(n!==r||Dh(t,e)))},updateAnimation:function(e,t,n,r){let i=wh[this.easingFn](e),a=r.y+(i-1)*r.height,o=r.y+i*r.height,s=Dh(r,n),c={id:r.id+`-text-slide-in`,x:r.x,y:a,width:r.width,height:r.height,style:{...r.style,hideGridLines:!0},content:r.content?{...r.content}:void 0,clipRect:r.clipRect||{...r,x:Math.max(0,r.x-(r.content?.width||0)),width:r.width+(r.content?.width||0)*2},icons:s?Eh(r.icons,r):Th(r.icons)},l={id:n.id+`-text-slide-out`,x:r.x,y:o,width:r.width,height:r.height,style:{...n.style,hideGridLines:!0},content:n.content?{...n.content}:void 0,clipRect:n.clipRect||{...r,x:Math.max(0,r.x-(n.content?.width||0)),width:r.width+(n.content?.width||0)*2},icons:s?Eh(n.icons,r):Th(n.icons)};if(r.content&&n.content&&c.content&&l.content){let e=r.content.y+(i-1)*r.height,t=r.content.y+i*r.height;c.content.y=e,l.content.y=t}return l.style.fillColor=c.style.fillColor=void 0,t.content=void 0,t.icons=s?{}:t.icons,{newBoxes:[c,l]}}}),Ch.add(`borderFadeIn`,{id:`borderFadeIn`,easingFn:`easeInCubic`,hasAnimation:(e,t)=>!!(!e?.border?.bottom&&t?.border?.bottom||!e?.border?.top&&t?.border?.top||!e?.border?.left&&t?.border?.left||!e?.border?.right&&t?.border?.right),updateAnimation:function(e,t,n,r){let i=wh[this.easingFn](e);t.border?.top&&r.border?.top&&!n.border?.top&&(t.border.top.opacity=i),t.border?.bottom&&r.border?.bottom&&!n.border?.bottom&&(t.border.bottom.opacity=i),t.border?.left&&r.border?.left&&!n.border?.left&&(t.border.left.opacity=i),t.border?.right&&r.border?.right&&!n.border?.right&&(t.border.right.opacity=i)}}),Ch.add(`borderFadeOut`,{id:`borderFadeOut`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>!!(e?.border?.bottom&&!t?.border?.bottom||e?.border?.top&&!t?.border?.top||e?.border?.left&&!t?.border?.left||e?.border?.right&&!t?.border?.right),updateAnimation:function(e,t,n,r){let i=1-wh[this.easingFn](e);t.border||={},n.border?.top&&!r.border?.top&&(t.border.top={...n.border.top,opacity:i}),n.border?.bottom&&!r.border?.bottom&&(t.border.bottom={...n.border.bottom,opacity:i}),n.border?.left&&!r.border?.left&&(t.border.left={...n.border.left,opacity:i}),n.border?.right&&!r.border?.right&&(t.border.right={...n.border.right,opacity:i})}}),Ch.add(`borderColorChange`,{id:`borderColorChange`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>{let n=e?.border,r=t?.border;return!n||!r?!1:n.bottom?.color!==r.bottom?.color||n.top?.color!==r.top?.color||n.left?.color!==r.left?.color||n.right?.color!==r.right?.color},updateAnimation:function(e,t,n,r){let i=i=>{let a=n?.border?.[i],o=r?.border?.[i],s=t.border?.[i];a&&o&&s&&(s.color=Bd([{value:0,color:a.color||`#000000`},{value:1,color:o.color||`#000000`}])(wh[this.easingFn](e)))};i(`top`),i(`bottom`),i(`left`),i(`right`)}}),Ch.add(`iconChange`,{id:`iconChange`,easingFn:`easeOutCubic`,hasAnimation:(e,t)=>!Dh(t,e)&&(e?.icons?.center?.svg?.name!==t?.icons?.center?.svg?.name||e?.icons?.left?.svg?.name!==t?.icons?.left?.svg?.name||e?.icons?.right?.svg?.name!==t?.icons?.right?.svg?.name),updateAnimation:function(e,t,n,r){let i=wh[this.easingFn](e),a=r.y+(i-1)*r.height,o=r.y+i*r.height,s=[],c=e=>{let i=n.icons?.[e],c=r.icons?.[e],l={id:`${r.id}-icon-${e}-slide-in`,style:{verticalAlign:r.style.verticalAlign,hideGridLines:!0},x:r.x,y:a,width:r.width,height:r.height,icons:{[e]:{...c,clipRect:r}}},u={id:`${r.id}-icon-${e}-slide-out`,style:{verticalAlign:n.style.verticalAlign,hideGridLines:!0},x:r.x,y:o,width:r.width,height:r.height,icons:{[e]:{...i,clipRect:r}}};t.icons[e]=Th(r.icons)[e],s.push(l,u)};return c(`left`),c(`right`),c(`center`),{newBoxes:s}}});let wh={linear:e=>e,easeInCubic:e=>e*e*e,easeOutCubic:e=>--e*e*e+1,easeInOutCubic:e=>(e/=.5)<1?.5*e*e*e:.5*((e-=2)*e*e+2),easeOutQuart:e=>-(--e*e*e*e-1)};function Th(e){return{left:e.left?{...e.left,svg:void 0}:void 0,right:e.right?{...e.right,svg:void 0}:void 0,center:e.center?{...e.center,svg:void 0}:void 0}}function Eh(e,t){return{left:e.left?{...e.left,clipRect:t}:void 0,right:e.right?{...e.right,clipRect:t}:void 0,center:e.center?{...e.center,clipRect:t}:void 0}}function Dh(e,t){let n=(e,t)=>t&&e?!!(e.horizontalAlign!==t.horizontalAlign||e.size!==t.size||e.margin!==t.margin||e.svg&&!t.svg||!e.svg&&t.svg):!!(e&&!t||!e&&t);return n(e?.icons.left,t?.icons.left)||n(e?.icons.right,t?.icons.right)||n(e?.icons.center,t?.icons.center)}var Oh=class extends t.Component{static template=`o-spreadsheet-GaugeChartComponent`;static props={chartId:String,isFullScreen:{type:Boolean,optional:!0}};canvas=(0,t.useRef)(`chartContainer`);animationStore;get runtime(){return this.env.model.getters.getChartRuntime(this.props.chartId)}setup(){this.env.model.getters.isDashboard()&&(this.animationStore=O(Or));let e=null,n;(0,t.useEffect)(()=>{if(this.env.isDashboard()&&n===void 0&&this.animationStore?.animationPlayed[this.animationChartId]!==`gauge`)e=this.drawGaugeWithAnimation(),this.animationStore?.disableAnimationForChart(this.animationChartId,`gauge`);else if(this.env.isDashboard()&&n!==void 0&&!T(this.runtime,n))e=this.drawGaugeWithAnimation(),this.animationStore?.disableAnimationForChart(this.animationChartId,`gauge`);else{let e=this.env.model.getters.getViewportZoomLevel();Im(this.canvasEl,this.runtime,e)}return n=this.runtime,()=>e?.stop()},()=>{let e=this.canvasEl.getBoundingClientRect();return[e.width,e.height,this.runtime,this.canvas.el,window.devicePixelRatio]})}drawGaugeWithAnimation(){Im(this.canvasEl,{...this.runtime,animationValue:0},void 0);let e=this.runtime.gaugeValue?.value||0,t=this.runtime.maxValue.value,n=Math.sign(e)*Math.min(Math.abs(e),Math.abs(t));if(n===0)return null;let r=this.runtime.minValue.value,i=new kh(r,n,1e3,e=>Im(this.canvasEl,{...this.runtime,animationValue:e},void 0));return i.start(),i}get canvasEl(){return this.canvas.el}get animationChartId(){return this.props.isFullScreen?this.props.chartId+`-fullscreen`:this.props.chartId}},kh=class{startTime=void 0;animationFrameId=null;constructor(e,t,n,r){this.startValue=e,this.endValue=t,this.duration=n,this.callback=r}start(){this.animationFrameId=requestAnimationFrame(this.animate.bind(this))}stop(){this.animationFrameId&&=(cancelAnimationFrame(this.animationFrameId),null)}animate(e){this.startTime||=e;let t=e-this.startTime,n=Math.min(t/this.duration,1),r=this.startValue+(this.endValue-this.startValue)*wh.easeOutQuart(n);this.callback(r),n<1?this.animationFrameId=requestAnimationFrame(this.animate.bind(this)):this.stop()}};let Ah=new B;Ah.add(`line`,Sh),Ah.add(`bar`,Sh),Ah.add(`combo`,Sh),Ah.add(`pie`,Vp),Ah.add(`gauge`,Oh),Ah.add(`scatter`,Vp),Ah.add(`bubble`,Vp),Ah.add(`scorecard`,Pm),Ah.add(`waterfall`,Sh),Ah.add(`pyramid`,Vp),Ah.add(`radar`,Vp),Ah.add(`geo`,Vp),Ah.add(`funnel`,Vp),Ah.add(`sunburst`,Vp),Ah.add(`treemap`,Vp),Ah.add(`calendar`,Vp);var jh=class extends fr{mutators=[`toggleFullScreenFigure`];fullScreenFigure=void 0;toggleFullScreenFigure(e){this.fullScreenFigure?.id===e?this.fullScreenFigure=void 0:this.makeFullScreen(e)}makeFullScreen(e){let t=this.getters.getActiveSheetId(),n=this.getters.getFigure(t,e);n&&(this.fullScreenFigure={...n,x:0,y:0,width:0,height:0})}};function Mh({strikethrough:e,underline:t}){return!e&&!t?`none`:`${e?`line-through`:``} ${t?`underline`:``}`}function Nh(e){let t=Ph(e);return e&&e.fillColor&&(t.background=e.fillColor),t}function Ph(e){let t={};if(!e)return t;if(e.bold&&(t[`font-weight`]=`bold`),e.italic&&(t[`font-style`]=`italic`),e.fontSize&&(t[`font-size`]=`${e.fontSize}px`),e.strikethrough||e.underline){let n=e.strikethrough?`line-through`:``;n=e.underline?n+` underline`:n,t[`text-decoration`]=n}return e.textColor&&(t.color=e.textColor),t}function W(e){let t=``;for(let n in e)e[n]&&(t+=`${n}:${e[n]}; `);return t}function Fh(e){let t=window.getComputedStyle(e);return{top:parseInt(t.marginTop,10)||0,bottom:parseInt(t.marginBottom,10)||0,left:parseInt(t.marginLeft,10)||0,right:parseInt(t.marginRight,10)||0}}var Ih=class{mutators=[`setFocusableElement`,`focus`];focusableElement=void 0;setFocusableElement(e){return this.focusableElement=e,`noStateChange`}focus(){if(this.focusableElement===document.activeElement)return`noStateChange`;this.focusableElement?.focus()}};function Lh(e,n){let r,{setInterval:i,clearInterval:a}=window,o=()=>{a(r),r=void 0},s=()=>{try{e()}catch(e){throw o(),e}};return(0,t.useEffect)(()=>(r=i(s,n),()=>a(r)),()=>[n]),{pause:o,resume:()=>{r===void 0&&(r=i(s,n))}}}function Rh(){let e;function n(){e!==void 0&&(clearTimeout(e),e=void 0)}function r(t,r){n(),e=setTimeout(t,r)}return(0,t.onWillUnmount)(n),{clear:n,schedule:r}}var zh=class extends t.Component{static template=`o-spreadsheet-Menu`;static props={menuItems:Array,onClose:Function,onClickMenu:{type:Function,optional:!0},onMouseEnter:{type:Function,optional:!0},onMouseLeave:{type:Function,optional:!0},width:{type:Number,optional:!0},hoveredMenuId:{type:String,optional:!0},isHoveredMenuFocused:{type:Boolean,optional:!0},onScroll:{type:Function,optional:!0},onKeyDown:{type:Function,optional:!0}};static components={};static defaultProps={};menuRef=(0,t.useRef)(`menu`);setup(){(0,t.useEffect)(()=>{if(this.props.hoveredMenuId&&this.props.isHoveredMenuFocused&&this.menuRef.el){let e=`[data-name='${this.props.hoveredMenuId}']`;this.menuRef.el.querySelector(e)?.focus()}})}get childrenHaveIcon(){return this.props.menuItems.some(e=>e!==`separator`&&!!this.getIconName(e))}getIconName(e){return e.icon(this.env)?e.icon(this.env):e.isActive?.(this.env)?`o-spreadsheet-Icon.CHECK`:``}getColor(e){return W({color:e.textColor})}getIconColor(e){return W({color:e.iconColor})}getName(e){return e.name(this.env)}isRoot(e){return _(e)}isEnabled(e){return y(this.env,e)}get menuStyle(){return this.props.width?W({width:this.props.width+`px`}):``}onClickMenu(e,t){this.isEnabled(e)&&this.props.onClickMenu?.(e,t)}};function Bh(e,t){return Uh(Dn(Hh(e),Hh(t)))}function Vh(...e){return Uh(Tn(...e.map(Hh)))}function Hh(e){return{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height}}function Uh(e){if(e)return{x:e.left,y:e.top,width:e.right-e.left,height:e.bottom-e.top}}function Wh(e,t,n){return e>=n.x&&e<=n.x+n.width&&t>=n.y&&t<=n.y+n.height}function Gh(){let e=(0,t.useState)({x:0,y:0,width:0,height:0}),n=null;function r(){if(n||=document.querySelector(`.o-spreadsheet`),n){let{top:t,left:r,width:i,height:a}=n.getBoundingClientRect();e.x=r,e.y=t,e.width=i,e.height=a}}return(0,t.onMounted)(r),(0,t.onPatched)(r),e}function Kh(){let e=(0,t.useState)({x:0,y:0,width:0,height:0}),n=(0,t.useComponent)(),r=Gh();function i(){let t=n.env,i=`getPopoverContainerRect`in t&&t.getPopoverContainerRect?t.getPopoverContainerRect():r;e.x=i.x,e.y=i.y,e.width=i.width,e.height=i.height}return i(),(0,t.onMounted)(i),(0,t.onPatched)(i),e}var qh=class extends t.Component{static template=`o-spreadsheet-Popover`;static props={anchorRect:Object,containerRect:{type:Object,optional:!0},positioning:{type:String,optional:!0},maxWidth:{type:Number,optional:!0},maxHeight:{type:Number,optional:!0},verticalOffset:{type:Number,optional:!0},onMouseWheel:{type:Function,optional:!0},onPopoverHidden:{type:Function,optional:!0},onPopoverMoved:{type:Function,optional:!0},zIndex:{type:Number,optional:!0},class:{type:String,optional:!0},slots:Object};static defaultProps={positioning:`bottom-left`,verticalOffset:0,onMouseWheel:()=>{},onPopoverMoved:()=>{},onPopoverHidden:()=>{}};popoverRef=(0,t.useRef)(`popover`);popoverContentRef=(0,t.useRef)(`popoverContent`);currentPosition=void 0;currentDisplayValue=void 0;spreadsheetRect=Gh();containerRect;setup(){this.containerRect=Kh();let e=new ResizeObserver(this.computePopoverPosition.bind(this));(0,t.onMounted)(()=>{e.observe(this.popoverContentRef.el)}),(0,t.onWillUnmount)(()=>{e.disconnect()}),(0,t.useEffect)(this.computePopoverPosition.bind(this))}computePopoverPosition(){if(!this.containerRect)throw Error(`Popover container is not defined`);let e=this.popoverRef.el,t=this.popoverContentRef.el,n=Bh(this.props.anchorRect,this.containerRect),r=n?`block`:`none`;if(this.currentDisplayValue!==`none`&&r===`none`&&this.props.onPopoverHidden?.(),e.style.display=r,this.currentDisplayValue=r,!n)return;let i={width:this.props.maxWidth,height:this.props.maxHeight},a={width:t.getBoundingClientRect().width,height:t.getBoundingClientRect().height},o=this.spreadsheetRect,s=this.props.positioning===`bottom-left`?new Yh(n,this.containerRect,i,o,this.currentPosition):new Xh(n,this.containerRect,i,o,this.currentPosition);e.style[`max-height`]=s.getMaxHeight(a.height)+`px`,e.style[`max-width`]=s.getMaxWidth(a.width)+`px`,a={width:e.getBoundingClientRect().width,height:e.getBoundingClientRect().height};let c=s.getCss(a,this.props.verticalOffset);for(let t of Object.keys(c))e.style[t]=c[t];let l=s.getCurrentPosition(a);this.currentPosition&&l!==this.currentPosition&&this.props.onPopoverMoved?.(),this.currentPosition=l}},Jh=class{constructor(e,t,n,r,i){this.anchorRect=e,this.containerRect=t,this.propsMaxSize=n,this.spreadsheetOffset=r,this.lastPosition=i}shouldRenderAtBottom(e){return this.lastPosition===`top-left`||this.lastPosition===`top-right`?!(e<=this.availableHeightUp||this.availableHeightUp>=this.availableHeightDown):e<=this.availableHeightDown||this.availableHeightDown>=this.availableHeightUp}shouldRenderAtRight(e){return this.lastPosition===`bottom-left`||this.lastPosition===`top-left`?!(e<=this.availableWidthLeft||this.availableWidthLeft>=this.availableWidthRight):e<=this.availableWidthRight||this.availableWidthRight>=this.availableWidthLeft}getMaxHeight(e){let t=this.shouldRenderAtBottom(e)?this.availableHeightDown:this.availableHeightUp;return this.propsMaxSize.height?Math.min(t,this.propsMaxSize.height):t}getMaxWidth(e){let t=this.shouldRenderAtRight(e)?this.availableWidthRight:this.availableWidthLeft;return this.propsMaxSize.width?Math.min(t,this.propsMaxSize.width):t}getCss(e,t){let n=this.getMaxHeight(e.height),r=this.getMaxWidth(e.width),i=Math.min(n,e.height),a=Math.min(r,e.width),o=this.shouldRenderAtBottom(e.height),s=this.shouldRenderAtRight(e.width);return t=o?t:-t,{top:this.getTopCoordinate(i,o)-this.spreadsheetOffset.y-t+`px`,left:this.getLeftCoordinate(a,s)-this.spreadsheetOffset.x+`px`}}getCurrentPosition(e){let t=this.shouldRenderAtBottom(e.height),n=this.shouldRenderAtRight(e.width);return t&&n?`bottom-right`:t&&!n?`bottom-left`:!t&&n?`top-right`:`top-left`}},Yh=class extends Jh{get availableHeightUp(){return this.anchorRect.y-this.containerRect.y}get availableHeightDown(){return this.containerRect.height-this.availableHeightUp-this.anchorRect.height}get availableWidthRight(){return this.containerRect.x+this.containerRect.width-this.anchorRect.x}get availableWidthLeft(){return this.anchorRect.x+this.anchorRect.width-this.containerRect.x}getTopCoordinate(e,t){return t?this.anchorRect.y+this.anchorRect.height:this.anchorRect.y-e}getLeftCoordinate(e,t){return t?this.anchorRect.x:this.anchorRect.x+this.anchorRect.width-e}},Xh=class extends Jh{get availableHeightUp(){return this.anchorRect.y+this.anchorRect.height-this.containerRect.y}get availableHeightDown(){return this.containerRect.y+this.containerRect.height-this.anchorRect.y}get availableWidthRight(){return this.containerRect.width-this.anchorRect.width-this.availableWidthLeft}get availableWidthLeft(){return this.anchorRect.x-this.containerRect.x}getTopCoordinate(e,t){return t?this.anchorRect.y:this.anchorRect.y+this.anchorRect.height-e}getLeftCoordinate(e,t){return t?this.anchorRect.x+this.anchorRect.width:this.anchorRect.x-e}},Zh=class e extends t.Component{static template=`o-spreadsheet-Menu-Popover`;static props={anchorRect:Object,popoverPositioning:{type:String,optional:!0},menuItems:Array,depth:{type:Number,optional:!0},maxHeight:{type:Number,optional:!0},onClose:Function,onMenuClicked:{type:Function,optional:!0},menuId:{type:String,optional:!0},onMouseOver:{type:Function,optional:!0},width:{type:Number,optional:!0},autoSelectFirstItem:{type:Boolean,optional:!0},disableKeyboardNavigation:{type:Boolean,optional:!0},onKeyboardNavigation:{type:Function,optional:!0}};static components={MenuPopover:e,Menu:zh,Popover:qh};static defaultProps={depth:0,popoverPositioning:`top-right`};subMenu=(0,t.useState)({isOpen:!1,anchorRect:null,scrollOffset:0,menuItems:[],isHoveringChild:!1});state=(0,t.useState)({hoveredMenu:this.props.autoSelectFirstItem?this.getNextEnabledMenuItem():void 0});menuRef=(0,t.useRef)(`menu`);openingTimeOut=Rh();setup(){let e=O(Ih);(0,t.useEffect)(()=>{!this.props.disableKeyboardNavigation&&!this.state.hoveredMenu&&!this.subMenu.isOpen&&this.menuRef.el?.focus()}),(0,t.useExternalListener)(window,`click`,this.onExternalClick,{capture:!0}),(0,t.useExternalListener)(window,`contextmenu`,this.onExternalClick,{capture:!0}),(0,t.onWillUpdateProps)(e=>{e.menuItems!==this.props.menuItems&&this.closeSubMenu()}),(0,t.onWillUnmount)(()=>{this.state.hoveredMenu?.onStopHover?.(this.env),this.menuRef.el?.contains(document.activeElement)&&e.focus()})}get menuProps(){let e=this.menuItems.filter(e=>e!==`separator`).find(e=>this.isMenuHovered(e))?.id;return{menuItems:this.menuItems,onClose:this.close.bind(this),onClickMenu:this.onClickMenu.bind(this),onMouseEnter:this.onMenuItemMouseEnter.bind(this),onMouseLeave:this.onMouseLeave.bind(this),width:this.props.width||250,onScroll:this.onScroll.bind(this),onKeyDown:this.onKeydown.bind(this),hoveredMenuId:e,isHoveredMenuFocused:!this.subMenu.isOpen}}get subMenuAnchorRect(){let e=Object.assign({},this.subMenu.anchorRect);return e.y-=this.subMenu.scrollOffset||0,e}get popoverProps(){let e=this.props.depth===0;return{anchorRect:{x:this.props.anchorRect.x,y:this.props.anchorRect.y,width:e?this.props.anchorRect.width:this.props.width||250,height:e?this.props.anchorRect.height:26},positioning:this.props.popoverPositioning,verticalOffset:e?0:6,onPopoverHidden:()=>this.closeSubMenu(),onPopoverMoved:()=>this.closeSubMenu(),maxHeight:this.props.maxHeight}}get childrenHaveIcon(){return this.props.menuItems.some(e=>!!this.getIconName(e))}getIconName(e){return e.icon(this.env)?e.icon(this.env):e.isActive?.(this.env)?`o-spreadsheet-Icon.CHECK`:``}getColor(e){return W({color:e.textColor})}getIconColor(e){return W({color:e.iconColor})}async activateMenu(e,t){let n=await e.execute?.(this.env,t);this.close(),this.props.onMenuClicked?.({detail:n})}close(){this.closeSubMenu(),this.props.onClose()}onExternalClick(e){this.menuRef.el&&mm().some(t=>cm(t,e))||(e.closedMenuId=this.props.menuId,this.close())}get menuItems(){return g(this.env,this.props.menuItems)}getName(e){return e.name(this.env)}isRoot(e){return!e.execute}isMenuHovered(e){return(this.subMenu?.isHoveringChild||!1)&&this.isParentMenu(this.subMenu,e)||this.state.hoveredMenu?.id===e.id}onScroll(e){this.subMenu.scrollOffset=e.target.scrollTop}openSubMenu(e,t,n=!1){this.subMenu.anchorRect={x:dm(this.menuRef).x,y:t-(this.subMenu.scrollOffset||0),width:this.props.width||250,height:26},this.subMenu.menuItems=e.children(this.env),this.subMenu.isOpen=!0,this.subMenu.parentMenu=e,this.subMenu.autoSelectFirstItem=n}isParentMenu(e,t){return e.parentMenu?.id===t.id}closeSubMenu(){this.subMenu.isOpen=!1,this.subMenu.parentMenu=void 0}async onClickMenu(e,t){this.isRoot(e)?this.openSubMenu(e,t.target.getBoundingClientRect().top):await this.activateMenu(e,Sm(t))}onMenuItemMouseEnter(e,t){if(this.state.hoveredMenu=e,e.onStartHover?.(this.env),this.isParentMenu(this.subMenu,e)){this.openingTimeOut.clear();return}let n=t.currentTarget;this.isRoot(e)&&this.openingTimeOut.schedule(()=>{this.openSubMenu(e,n.getBoundingClientRect().top)},250)}onMouseOverMainMenu(){this.props.onMouseOver?.(),this.subMenu.isHoveringChild=!1}onMouseOverChildMenu(){this.subMenu.isHoveringChild=!0,this.openingTimeOut.clear()}onMouseLeave(e){this.state.hoveredMenu=void 0,e.onStopHover?.(this.env),this.openingTimeOut.schedule(this.closeSubMenu.bind(this),250)}get menuStyle(){return this.props.width?W({width:this.props.width+`px`}):``}onKeydown(e){e.stopPropagation(),e.preventDefault(),this.navigateMenu(e.key)!==`eventHandled`&&this.props.onKeyboardNavigation?.(e)}navigateMenu(e){let t=this.state.hoveredMenu;switch(e){case`Enter`:if(t&&this.isRoot(t)){let e=this.getMenuItemRect(t.id);if(e)return this.openSubMenu(t,e.y,!0),`eventHandled`}else if(t&&y(this.env,t))return this.activateMenu(t),`eventHandled`;return`notHandled`;case`Escape`:return this.subMenu.isOpen?(this.closeSubMenu(),`eventHandled`):this.props.depth===0?(this.close(),`eventHandled`):`notHandled`;case`ArrowLeft`:return this.subMenu.isOpen?(this.state.hoveredMenu=this.subMenu.parentMenu,this.closeSubMenu(),`eventHandled`):`notHandled`;case`ArrowDown`:return this.state.hoveredMenu=this.getNextEnabledMenuItem(this.state.hoveredMenu),`eventHandled`;case`ArrowUp`:return this.state.hoveredMenu=this.getPreviousEnabledMenuItem(this.state.hoveredMenu),`eventHandled`;case`ArrowRight`:if(t&&this.isRoot(t)&&this.subMenu.parentMenu?.id!==t.id){let e=this.getMenuItemRect(t.id);return e&&this.openSubMenu(t,e.y,!0),`eventHandled`}return`notHandled`}return`notHandled`}getMenuItemRect(e){let t=this.menuRef.el?.querySelector(`[data-name="${e}"]`);return t?fm(t):void 0}getNextEnabledMenuItem(e){let t=this.menuItems.filter(e=>e!==`separator`),n=t.findIndex(t=>t.id===e?.id);for(let e=1;e<=t.length;e++){let r=t[(n+e)%t.length];if(y(this.env,r))return r}}getPreviousEnabledMenuItem(e){let t=this.menuItems.filter(e=>e!==`separator`),n=t.findIndex(t=>t.id===e?.id);n===-1&&(n=t.length);for(let e=1;e<=t.length;e++){let r=t[(n-e+t.length)%t.length];if(y(this.env,r))return r}}},Qh=class extends t.Component{static template=`o-spreadsheet-Select`;static props={onChange:Function,values:Array,selectedValue:{type:String,optional:!0},class:{type:String,optional:!0},popoverClass:{type:String,optional:!0},name:{type:String,optional:!0},title:{type:String,optional:!0}};static components={Popover:qh};selectRef=(0,t.useRef)(`selectRef`);dropdownRef=(0,t.useRef)(`dropdownRef`);state=(0,t.useState)({isPopoverOpen:!1,hoveredValue:void 0});setup(){(0,t.useExternalListener)(window,`pointerdown`,this.onExternalClick,{capture:!0}),(0,t.useEffect)(()=>{this.dropdownRef.el&&(this.dropdownRef.el.style.width=`${this.selectRef.el?.offsetWidth}px`)})}onMouseDown(){this.toggleDropdown()}onKeyDown(e){if(e.key===`Enter`){if(e.stopPropagation(),e.preventDefault(),!this.state.isPopoverOpen){this.toggleDropdown();return}this.state.hoveredValue!==void 0&&this.state.hoveredValue!==this.props.selectedValue&&this.props.onChange(this.state.hoveredValue),this.closeDropdown()}else e.key===`ArrowDown`?(e.stopPropagation(),e.preventDefault(),this.state.isPopoverOpen?this.navigateToNextOption(this.activeValue):(this.toggleDropdown(),this.navigateToNextOption(void 0))):e.key===`ArrowUp`?(e.stopPropagation(),e.preventDefault(),this.state.isPopoverOpen?this.navigateToPreviousOption(this.activeValue):(this.toggleDropdown(),this.navigateToPreviousOption(void 0))):e.key===`Escape`&&(e.stopPropagation(),e.preventDefault(),this.closeDropdown())}onExternalClick(e){!cm(this.selectRef.el,e)&&!cm(this.dropdownRef.el,e)&&this.closeDropdown()}onOptionClick(e){e!==this.props.selectedValue&&this.props.onChange(e),this.closeDropdown()}toggleDropdown(){this.state.isPopoverOpen?this.closeDropdown():this.state.isPopoverOpen=!0}closeDropdown(){this.state.isPopoverOpen=!1,this.state.hoveredValue=void 0}get popoverProps(){return{anchorRect:dm(this.selectRef),positioning:`bottom-left`,verticalOffset:0}}get selectedLabel(){return this.props.values?.find(e=>e.value===this.props.selectedValue)?.label||``}onOptionHover(e){this.state.hoveredValue=e}get activeValue(){return this.state.hoveredValue===void 0?this.props.selectedValue:this.state.hoveredValue}navigateToNextOption(e){let t=this.props.values.findIndex(t=>t.value===e);if(t===-1){this.state.hoveredValue=this.props.values[0]?.value;return}let n=Math.min(t+1,this.props.values.length-1);this.state.hoveredValue=this.props.values[n]?.value}navigateToPreviousOption(e){let t=this.props.values.findIndex(t=>t.value===e);if(t===-1){this.state.hoveredValue=this.props.values.at(-1)?.value;return}let n=Math.max(t-1,0);this.state.hoveredValue=this.props.values[n]?.value}},$h=class extends t.Component{static template=`o-spreadsheet-ChartDashboardMenu`;static components={MenuPopover:Zh,Select:Qh};static props={chartId:String,hasFullScreenButton:{type:Boolean,optional:!0}};static defaultProps={hasFullScreenButton:!0};fullScreenFigureStore;menuState=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]});setup(){super.setup(),this.fullScreenFigureStore=O(jh)}getMenuItems(){return[this.fullScreenMenuItem].filter(w)}get backgroundColor(){return`background-color: `+(this.env.model.getters.getChartDefinition(this.props.chartId).background||this.env.model.getters.getSpreadsheetTheme().backgroundColor)}openContextMenu(e){this.menuState.isOpen=!0,this.menuState.anchorRect=fm(e.currentTarget);let t=this.env.model.getters.getFigureIdFromChartId(this.props.chartId);this.menuState.menuItems=sh(t,this.env)}get fullScreenMenuItem(){if(!this.props.hasFullScreenButton)return;let e=this.env.model.getters.getChartDefinition(this.props.chartId),t=this.env.model.getters.getFigureIdFromChartId(this.props.chartId);if(e.type===`scorecard`)return;let n=t===this.fullScreenFigureStore.fullScreenFigure?.id;return{id:`fullScreenChart`,label:A(n?`Exit Full Screen`:`Full Screen`),class:`text-muted fa ${n?`fa-compress`:`fa-expand`}`,onClick:()=>{this.fullScreenFigureStore.toggleFullScreenFigure(t)}}}get regionOptions(){return this.env.model.getters.getAvailableChartRegions(this.props.chartId).map(e=>({value:e.id,label:e.label}))}get selectedRegion(){let e=this.env.model.getters.getChartDefinition(this.props.chartId);if(!e.type.includes(`geo`))return``;let t=e,n=this.env.model.getters.getGeoChartAvailableRegions();return t.region||n[0]?.id||``}onRegionSelected(e){this.env.model.dispatch(`UPDATE_CHART_REGION`,{chartId:this.props.chartId,region:e})}},eg=class extends t.Component{static template=`o-spreadsheet-CarouselFigure`;static props={figureUI:Object,editFigureStyle:{type:Function,optional:!0},isFullScreen:{type:Boolean,optional:!0},openContextMenu:{type:Function,optional:!0}};static components={ChartDashboardMenu:$h,MenuPopover:Zh};carouselTabsRef=(0,t.useRef)(`carouselTabs`);carouselTabsDropdownRef=(0,t.useRef)(`carouselTabsDropdown`);menuState=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]});hiddenItems=[];animationStore;fullScreenFigureStore;setup(){this.animationStore=O(Or),this.fullScreenFigureStore=O(jh),(0,t.useEffect)(()=>{this.selectedCarouselItem?.type===`carouselDataView`?this.props.editFigureStyle?.({"pointer-events":`none`}):this.props.editFigureStyle?.({"pointer-events":`auto`}),this.updateTabsVisibility()})}get carousel(){return this.env.model.getters.getCarousel(this.props.figureUI.id)}get selectedCarouselItem(){return this.env.model.getters.getSelectedCarouselItem(this.props.figureUI.id)}get chartComponent(){let e=this.selectedCarouselItem;if(e?.type!==`chart`)throw Error(`Selected item is not a chart`);let t=this.env.model.getters.getChartType(e.chartId),n=Ah.get(t);if(!n)throw Error(`Component is not defined for type ${t}`);return n}onCarouselDoubleClick(){this.env.model.dispatch(`SELECT_FIGURE`,{figureId:this.props.figureUI.id}),this.env.openSidePanel(`CarouselPanel`,{figureId:this.props.figureUI.id})}isItemSelected(e){let t=this.selectedCarouselItem;return T(t,e)}getItemTitle(e){return vh(this.env.model.getters,e)}onCarouselTabClick(e){if(this.env.model.dispatch(`UPDATE_CAROUSEL_ACTIVE_ITEM`,{figureId:this.props.figureUI.id,sheetId:this.env.model.getters.getActiveSheetId(),item:e}),e.type===`chart`){let t=e.chartId+(this.props.isFullScreen?`-fullscreen`:``);this.animationStore?.enableAnimationForChart(t)}}get headerStyle(){let e={},t=this.env.model.getters.getSpreadsheetTheme().backgroundColor;if(this.selectedCarouselItem?.type===`chart`){let n=this.env.model.getters.getChartRuntime(this.selectedCarouselItem.chartId);`background`in n&&n.background?e[`background-color`]=n.background:`chartJsConfig`in n&&(e[`background-color`]=n.chartJsConfig.options?.plugins?.background?.color||t)}else e[`background-color`]=t;return W(e)}get title(){return this.carousel.title?.text??``}get titleStyle(){return W(Ph(Wt({...Re,...this.carousel.title})))}updateTabsVisibility(){let e=this.carouselTabsRef.el,t=this.carouselTabsDropdownRef.el;if(!e||!t)return;this.hiddenItems=[];let n=fm(e),r=Array.from(e.children);for(let e of r)e.style.display=`block`;let i=r.map(e=>fm(e).width),a=0;for(let e=0;e<r.length;e++){let t=a+i[e]>n.width;a+=i[e],t&&(r[e].style.display=`none`,this.hiddenItems.push(this.carousel.items[e]))}t.style.display=this.hiddenItems.length?`block`:`none`}get menuId(){return`carousel-tabs-menu-`}toggleMenu(e){if(e.closedMenuId===this.menuId){this.menuState.isOpen=!1;return}let t=dm(this.carouselTabsDropdownRef),n=this.hiddenItems.map(e=>({name:this.getItemTitle(e),execute:()=>this.onCarouselTabClick(e),isActive:()=>this.isItemSelected(e),isReadonlyAllowed:!0}));this.menuState.isOpen=!0,this.menuState.anchorRect=t,this.menuState.menuItems=p(n)}toggleFullScreen(){this.selectedCarouselItem?.type===`chart`&&this.fullScreenFigureStore.toggleFullScreenFigure(this.props.figureUI.id)}get fullScreenButtonTitle(){return this.props.isFullScreen?A(`Exit Full Screen`):A(`Full Screen`)}get visibleCarouselItems(){return this.carousel.items.filter(e=>!(e.type===`carouselDataView`&&this.props.isFullScreen))}openContextMenu(e){let t=e.currentTarget;t&&this.props.openContextMenu?.(fm(t))}},tg=class extends t.Component{static template=`o-spreadsheet-ChartFigure`;static props={figureUI:Object,editFigureStyle:{type:Function,optional:!0},isFullScreen:{type:Boolean,optional:!0},openContextMenu:{type:Function,optional:!0}};static components={ChartDashboardMenu:$h};onDoubleClick(){this.env.model.dispatch(`SELECT_FIGURE`,{figureId:this.props.figureUI.id}),this.env.openSidePanel(`ChartPanel`)}get chartType(){return this.env.model.getters.getChartType(this.chartId)}get chartId(){let e=this.env.model.getters.getChartIdFromFigureId(this.props.figureUI.id);if(!e)throw Error(`No chart found for figure ID: ${this.props.figureUI.id}`);return e}get chartComponent(){let e=this.chartType,t=Ah.get(e);if(!t)throw Error(`Component is not defined for type ${e}`);return t}},ng=class extends t.Component{static template=`o-spreadsheet-ImageFigure`;static props={figureUI:Object,editFigureStyle:{type:Function,optional:!0},openContextMenu:{type:Function,optional:!0}};static components={};get figureId(){return this.props.figureUI.id}get getImagePath(){return this.env.model.getters.getImagePath(this.figureId)}};let rg=new B;rg.add(`chart`,{Component:tg,SidePanelComponent:`ChartPanel`,menuBuilder:sh}),rg.add(`image`,{Component:ng,keepRatio:!0,minFigSize:20,borderWidth:0,menuBuilder:ch}),rg.add(`carousel`,{Component:eg,menuBuilder:lh});var ig=class extends t.Component{static template=`o-spreadsheet-FigureComponent`;static props={figureUI:Object,style:{type:String,optional:!0},class:{type:String,optional:!0},onMouseDown:{type:Function,optional:!0},onClickAnchor:{type:Function,optional:!0}};static components={MenuPopover:Zh};static defaultProps={onMouseDown:()=>{},onClickAnchor:()=>{}};menuState=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]});figureRef=(0,t.useRef)(`figure`);figureWrapperRef=(0,t.useRef)(`figureWrapper`);menuButtonRef=(0,t.useRef)(`menuButton`);borderWidth;get isSelected(){return this.env.model.getters.getSelectedFigureId()===this.props.figureUI.id}get figureRegistry(){return rg}getBorderWidth(){return this.env.isDashboard()?0:this.isSelected?2:this.borderWidth}getBorderStyle(e){return`border-${e}-width: ${this.getBorderWidth()}px;`}get wrapperStyle(){let{x:e,y:t,width:n,height:r}=this.props.figureUI;return W({left:`${e}px`,top:`${t}px`,width:`${n}px`,height:`${r}px`})}getResizerPosition(e){let t={};return e.includes(`top`)?t.top=`-3px`:e.includes(`bottom`)?t.bottom=`-3px`:t.bottom=`calc(50% - 3px)`,e.includes(`left`)?t.left=`-3px`:e.includes(`right`)?t.right=`-3px`:t.right=`calc(50% - 3px)`,W(t)}setup(){let e=rg.get(this.props.figureUI.tag).borderWidth;this.borderWidth=e===void 0?1:e,(0,t.useEffect)((e,t,n)=>{e===t&&n?.focus({preventScroll:!0})},()=>[this.env.model.getters.getSelectedFigureId(),this.props.figureUI.id,this.figureRef.el])}clickAnchor(e,t,n){this.props.onClickAnchor(e,t,n)}onMouseDown(e){this.env.isMobile()||this.props.onMouseDown(e)}onClick(e){this.env.isMobile()&&this.props.onMouseDown(e)}onKeyDown(e){let t=ym(e);switch(t){case`Delete`:case`Backspace`:this.env.model.dispatch(`DELETE_FIGURE`,{sheetId:this.env.model.getters.getActiveSheetId(),figureId:this.props.figureUI.id}),e.preventDefault(),e.stopPropagation();break;case`ArrowDown`:case`ArrowLeft`:case`ArrowRight`:case`ArrowUp`:let{col:n,row:r,offset:i}=this.postionInBoundary(this.props.figureUI,e.key);this.env.model.dispatch(`UPDATE_FIGURE`,{sheetId:this.env.model.getters.getActiveSheetId(),figureId:this.props.figureUI.id,offset:i,col:n,row:r}),e.preventDefault(),e.stopPropagation();break;case`Ctrl+A`:e.preventDefault(),e.stopPropagation();break;case`Ctrl+Y`:case`Ctrl+Z`:t===`Ctrl+Y`?this.env.model.dispatch(`REQUEST_REDO`):t===`Ctrl+Z`&&this.env.model.dispatch(`REQUEST_UNDO`),e.preventDefault(),e.stopPropagation();break}}postionInBoundary(e,t){let n=this.env.model.getters.getActiveSheetId(),{col:r,row:i,offset:a}=e;switch(a={...a},t){case`ArrowUp`:a.y===0?(i--,a.y=this.env.model.getters.getRowSize(n,i)-1):a.y--;break;case`ArrowLeft`:a.x===0?(r--,a.x=this.env.model.getters.getColSize(n,r)-1):a.x--;break;case`ArrowDown`:a.y===this.env.model.getters.getRowSize(n,i)?(i++,a.y=0):a.y++;break;case`ArrowRight`:a.x===this.env.model.getters.getColSize(n,i)?(r++,a.x=0):a.x++}return{col:r,row:i,offset:a}}onContextMenu(e){if(this.env.isDashboard())return;let t=Am(this.env,e);this.openContextMenu({x:t.clientX,y:t.clientY,width:0,height:0})}showMenu(){this.openContextMenu(dm(this.menuButtonRef))}openContextMenu(e){this.menuState.isOpen=!0,this.menuState.anchorRect=e,this.menuState.menuItems=rg.get(this.props.figureUI.tag).menuBuilder(this.props.figureUI.id,this.env)}editWrapperStyle(e){if(this.figureWrapperRef.el)for(let t in e)this.figureWrapperRef.el.style.setProperty(t,e[t]||null)}get isFigureResizable(){return this.isSelected&&!this.env.isMobile()&&!this.env.isDashboard()&&!this.env.model.getters.isCurrentSheetLocked()}},ag=class extends fr{mutators=[`clear`,`hover`];col;row;handle(e){switch(e.type){case`ACTIVATE_SHEET`:this.clear()}}hover(e){if(e.col===this.col&&e.row===this.row)return`noStateChange`;this.col=e.col,this.row=e.row}clear(){if(this.col===void 0&&this.row===void 0)return`noStateChange`;this.col=void 0,this.row=void 0}};let og=`(previous)`,sg=`(next)`,cg={Errors:{[H.InvalidRange]:A(`The range is invalid`),[H.FirstArgMissing]:A(`The argument is missing. Please provide a value`),[H.SecondArgMissing]:A(`The second argument is missing. Please provide a value`),[H.MinNaN]:A(`The minpoint must be a number`),[H.MidNaN]:A(`The midpoint must be a number`),[H.MaxNaN]:A(`The maxpoint must be a number`),[H.ValueUpperInflectionNaN]:A(`The first value must be a number`),[H.ValueLowerInflectionNaN]:A(`The second value must be a number`),[H.MinBiggerThanMax]:A(`Minimum must be smaller then Maximum`),[H.MinBiggerThanMid]:A(`Minimum must be smaller then Midpoint`),[H.MidBiggerThanMax]:A(`Midpoint must be smaller then Maximum`),[H.LowerBiggerThanUpper]:A(`Lower inflection point must be smaller than upper inflection point`),[H.MinInvalidFormula]:A(`Invalid Minpoint formula`),[H.MaxInvalidFormula]:A(`Invalid Maxpoint formula`),[H.MidInvalidFormula]:A(`Invalid Midpoint formula`),[H.ValueUpperInvalidFormula]:A(`Invalid upper inflection point formula`),[H.ValueLowerInvalidFormula]:A(`Invalid lower inflection point formula`),[H.EmptyRange]:A(`A range needs to be defined`),[H.EmptyTarget]:A(`Target must contain at least one zone`),[H.ValueCellIsInvalidFormula]:A(`At least one of the provided values is an invalid formula`),Unexpected:A(`The rule is invalid for an unknown reason`)},ColorScale:A(`Color scale`),IconSet:A(`Icon set`),DataBar:A(`Data bar`)},lg={Series:A(`Series`),BackgroundColor:A(`Background color`),StackedBarChart:A(`Stacked bar chart`),StackedLineChart:A(`Stacked line chart`),StackedAreaChart:A(`Stacked area chart`),StackedColumnChart:A(`Stacked column chart`),CumulativeData:A(`Cumulative data`),TreatLabelsAsText:A(`Treat labels as text`),AggregatedChart:A(`Aggregate`),Errors:{Unexpected:A(`The chart definition is invalid for an unknown reason`),[H.InvalidDataSet]:A(`The dataset is invalid`),[H.InvalidLabelRange]:A(`Labels are invalid`),[H.InvalidScorecardKeyValue]:A(`The key value is invalid`),[H.InvalidScorecardBaseline]:A(`The baseline value is invalid`),[H.InvalidGaugeDataRange]:A(`The data range is invalid`),[H.EmptyGaugeRangeMin]:A(`A minimum range limit value is needed`),[H.GaugeRangeMinNaN]:A(`The minimum range limit value must be a number`),[H.EmptyGaugeRangeMax]:A(`A maximum range limit value is needed`),[H.GaugeRangeMaxNaN]:A(`The maximum range limit value must be a number`),[H.GaugeLowerInflectionPointNaN]:A(`The lower inflection point value must be a number`),[H.GaugeUpperInflectionPointNaN]:A(`The upper inflection point value must be a number`),[H.InvalidYRange]:A(`The vertical axis values range is invalid`),[H.InvalidXRange]:A(`The horizontal axis values range is invalid`),[H.InvalidBubbleSizeRange]:A(`The bubble sizes range is invalid`)},ColorScales:{blues:A(`Blues`),cividis:A(`Cividis`),custom:A(`Custom`),greens:A(`Greens`),greys:A(`Greys`),oranges:A(`Oranges`),purples:A(`Purples`),rainbow:A(`Rainbow`),reds:A(`Reds`),viridis:A(`Viridis`)}},ug={Custom:A(`Custom`)},dg=A(`Merged cells are preventing this operation. Unmerge those cells and try again.`),fg=A(`The header row of a table can't be moved.`),pg={Errors:{Unexpected:A(`Cannot split the selection for an unknown reason`),[H.NoSplitSeparatorInSelection]:A(`There is no match for the selected separator in the selection`),[H.MoreThanOneColumnSelected]:A(`Only a selection from a single column can be split`),[H.SplitWillOverwriteContent]:A(`Splitting will overwrite existing content`)}},mg={Errors:{Unexpected:A(`Cannot remove duplicates for an unknown reason`),[H.MoreThanOneRangeSelected]:A(`Please select only one range of cells`),[H.EmptySelectedRange]:A(`Please select a range of cells containing values.`),[H.NoColumnsProvided]:A(`Please select at latest one column to analyze.`),[H.WillRemoveExistingMerge]:A(`This operation is not possible due to a merge. Please remove the merges first than try again.`)}},hg={DateIs:{today:A(`today`),yesterday:A(`yesterday`),tomorrow:A(`tomorrow`),lastWeek:A(`in the past week`),lastMonth:A(`in the past month`),lastYear:A(`in the past year`)},DateIsBefore:{today:A(`today`),yesterday:A(`yesterday`),tomorrow:A(`tomorrow`),lastWeek:A(`one week ago`),lastMonth:A(`one month ago`),lastYear:A(`one year ago`)},CriterionError:{notEmptyValue:A(`The value must not be empty`),numberValue:A(`The value must be a number`),dateValue:A(`The value must be a date`),validRange:A(`The value must be a valid range`),validFormula:A(`The formula must be valid`),positiveNumber:A(`The value must be a positive number`)},Errors:{[H.InvalidRange]:A(`The range is invalid.`),[H.InvalidDataValidationCriterionValue]:A(`One or more of the provided criteria values are invalid. Please review and correct them.`),[H.InvalidNumberOfCriterionValues]:A(`One or more of the provided criteria values are missing.`),Unexpected:A(`The rule is invalid for an unknown reason.`)}},gg={Errors:{Unexpected:A(`The table zone is invalid for an unknown reason`),[H.TableOverlap]:A(`You cannot create overlapping tables.`),[H.NonContinuousTargets]:A(`A table can only be created on a continuous selection.`),[H.InvalidRange]:A(`The range is invalid`),[H.TargetOutOfSheet]:A(`The range is out of the sheet`)},Checkboxes:{hasFilters:A(`Filter button`),headerRow:A(`Header row(s)`),bandedRows:A(`Banded rows`),firstColumn:A(`First column`),lastColumn:A(`Last column`),bandedColumns:A(`Banded columns`),automaticAutofill:A(`Automatically autofill formulas`),totalRow:A(`Total row`),isDynamic:A(`Auto-adjust to formula result`)},Tooltips:{filterWithoutHeader:A(`Cannot have filters without a header row`),isDynamic:A(`For tables based on array formulas only`)}},_g={labels:{no_calculations:A(`No calculations`),"%_of_grand_total":A(`% of grand total`),"%_of_col_total":A(`% of column total`),"%_of_row_total":A(`% of row total`),"%_of":A(`% of`),"%_of_parent_row_total":A(`% of parent row total`),"%_of_parent_col_total":A(`% of parent column total`),"%_of_parent_total":A(`% of parent total`),difference_from:A(`Difference from`),"%_difference_from":A(`% difference from`),running_total:A(`Running total`),"%_running_total":A(`% Running total`),rank_asc:A(`Rank smallest to largest`),rank_desc:A(`Rank largest to smallest`),index:A(`Index`)},descriptions:{"%_of_grand_total":()=>A(`Displayed as % of grand total`),"%_of_col_total":()=>A(`Displayed as % of column total`),"%_of_row_total":()=>A(`Displayed as % of row total`),"%_of":(e,t)=>{switch(t){case sg:return A(`Displayed as % of next "%s"`,e);case og:return A(`Displayed as % of previous "%s"`,e);default:return A(`Displayed as % of "%s" : %s`,e,t)}},"%_of_parent_row_total":()=>A(`Displayed as % of parent row total`),"%_of_parent_col_total":()=>A(`Displayed as % of parent column total`),"%_of_parent_total":e=>A(`Displayed as % of parent "%s" total`,e),difference_from:(e,t)=>{switch(t){case sg:return A(`Displayed as difference from next "%s"`,e);case og:return A(`Displayed as difference from previous "%s"`,e);default:return A(`Displayed as difference from "%s" : %s`,e,t)}},"%_difference_from":(e,t)=>{switch(t){case sg:return A(`Displayed as % difference from next "%s"`,e);case og:return A(`Displayed as % difference from previous "%s"`,e);default:return A(`Displayed as % difference from "%s" : %s`,e,t)}},running_total:e=>A(`Displayed as running total based on "%s"`,e),"%_running_total":e=>A(`Displayed as % running total based on "%s"`,e),rank_asc:e=>A(`Displayed as rank from smallest to largest based on "%s"`,e),rank_desc:e=>A(`Displayed as rank largest to smallest based on "%s"`,e),index:()=>A(`Displayed as index`)},documentation:{no_calculations:A(`Displays the value that is entered in the field.`),"%_of_grand_total":A(`Displays values as a percentage of the grand total of all the values or data points in the report.`),"%_of_col_total":A(`Displays all the values in each column or series as a percentage of the total for the column or series.`),"%_of_row_total":A(`Displays the value in each row or category as a percentage of the total for the row or category.`),"%_of":A(`Displays values as a percentage of the value of the Base item in the Base field.`),"%_of_parent_row_total":A(`Calculates values as follows:
27
+ (value for the item) / (value for the parent item on rows)`),"%_of_parent_col_total":A(`Calculates values as follows:
28
+ (value for the item) / (value for the parent item on columns)`),"%_of_parent_total":A(`Calculates values as follows:
29
+ (value for the item) / (value for the parent item of the selected Base field)`),difference_from:A(`Displays values as the difference from the value of the Base item in the Base field.`),"%_difference_from":A(`Displays values as the percentage difference from the value of the Base item in the Base field.`),running_total:A(`Displays the value for successive items in the Base field as a running total.`),"%_running_total":A(`Calculates the value as a percentage for successive items in the Base field that are displayed as a running total.`),rank_asc:A(`Displays the rank of selected values in a specific field, listing the smallest item in the field as 1, and each larger value with a higher rank value.`),rank_desc:A(`Displays the rank of selected values in a specific field, listing the largest item in the field as 1, and each smaller value with a higher rank value.`),index:A(`Calculates values as follows:
30
+ ((value in cell) x (Grand Total of Grand Totals)) / ((Grand Row Total) x (Grand Column Total))`)}};function vg(e,t){return A(`Oops—this pivot table is quite large (%s cells). Try simplifying it using the side panel.`,R(e,{format:`0,00`,locale:t}))}function yg(e){if(!e||typeof e!=`object`||!(!e.thousandsSeparator||typeof e.thousandsSeparator==`string`))return!1;for(let t of[`code`,`name`,`decimalSeparator`,`dateFormat`,`timeFormat`,`formulaArgSeparator`])if(!e[t]||typeof e[t]!=`string`)return!1;if(e.formulaArgSeparator===e.decimalSeparator||e.thousandsSeparator===e.decimalSeparator)return!1;try{R(1,{locale:e,format:`#,##0.00`}),R(1,{locale:e,format:e.dateFormat}),R(1,{locale:e,format:e.timeFormat})}catch{return!1}return!0}function bg(e,t){return Ut(e)?wg(e,t):Dg(e,t)}function xg(e,t){return Ut(e)?wg(e,t):Og(e,t)}function Sg(e,t){return e.startsWith(`=`)?Tg(e,t):Ag(e,t)}function Cg(e,t){return Ut(e)?wg(e,t):Dg(e,t)}function wg(e,t){return Eg(e.startsWith(`+`)?`=`+e.slice(1):e,t,L)}function Tg(e,t){return Eg(e,L,t)}function Eg(e,t,n){if(t.formulaArgSeparator===n.formulaArgSeparator&&t.decimalSeparator===n.decimalSeparator)return e;let r=Hs(e,t),i=``;for(let e of r)e.type===`NUMBER`?i+=e.value.replace(t.decimalSeparator,n.decimalSeparator):e.type===`ARG_SEPARATOR`?i+=n.formulaArgSeparator:e.type===`ARRAY_ROW_SEPARATOR`?i+=n.formulaArgSeparator===`;`?`\\`:`;`:i+=e.value;return i}function Dg(e,t){return t.decimalSeparator===`.`||!Si(e,t)?e:(t.thousandsSeparator&&(e=e.replaceAll(t.thousandsSeparator,``)),e.replace(t.decimalSeparator,`.`))}function Og(e,t){if(Wr(e,t)){let n=N(e,t),r=L.dateFormat;return Number.isInteger(n)||(r+=` `+L.timeFormat),R(n,{locale:L,format:r})}return Dg(e,t)}function kg(e,t){if(t.decimalSeparator===`.`||!Si(e,L))return e;let n=Oo(L);return e.replace(n,e=>e.replace(`.`,t.decimalSeparator))}function Ag(e,t){if(Wr(e,L)){let n=N(e,L),r=t.dateFormat;return Number.isInteger(n)||(r+=` `+t.timeFormat),R(n,{locale:t,format:r})}return kg(e,t)}function jg(e,t){return Pg(e,e=>xg(e,t))}function Mg(e,t){return Pg(e,e=>Sg(e,t))}function Ng(e,t){let n=x(e);return n.criterion.values=n.criterion.values.map(e=>Sg(e,t)),n}function Pg(e,t){switch(e=x(e),e.type){case`CellIsRule`:switch(e.operator){case`isBetween`:case`isNotBetween`:case`isEqual`:case`isNotEqual`:case`isGreaterThan`:case`isGreaterOrEqualTo`:case`isLessThan`:case`isLessOrEqualTo`:case`customFormula`:case`dateIs`:case`dateIsBefore`:case`dateIsAfter`:case`dateIsOnOrAfter`:case`dateIsOnOrBefore`:case`top10`:return e.values=e.values.map(e=>t(e)),e;case`beginsWithText`:case`containsText`:case`endsWithText`:case`notContainsText`:case`isEmpty`:case`isNotEmpty`:case`uniqueValues`:case`duplicateValues`:return e}case`DataBarRule`:return e;case`ColorScaleRule`:return e.minimum=Fg(e.minimum,t),e.maximum=Fg(e.maximum,t),e.midpoint&&=Fg(e.midpoint,t),e;case`IconSetRule`:return e.lowerInflectionPoint.value=t(e.lowerInflectionPoint.value),e.upperInflectionPoint.value=t(e.upperInflectionPoint.value),e}}function Fg(e,t){if(!e?.value)return e;let n=t(e.type===`formula`?`=`+e.value:e.value),r=e.type===`formula`?n.slice(1):n;return{...e,value:r}}function Ig(e){return e.dateFormat+` `+e.timeFormat}var G=class{static getCrypto(){if(typeof globalThis<`u`&&globalThis.crypto)return globalThis.crypto}static smallUuid(){let e=this.getCrypto();return e?`10000000-1000`.replace(/[01]/g,t=>{let n=Number(t);return(n^e.getRandomValues(new Uint8Array(1))[0]&15>>n/4).toString(16)}):`xxxxxxxx-xxxx`.replace(/[xy]/g,function(e){let t=Math.random()*16|0;return(e===`x`?t:t&3|8).toString(16)})}static uuidv4(){let e=this.getCrypto();return e?`10000000-1000-4000-8000-100000000000`.replace(/[018]/g,t=>{let n=Number(t);return(n^e.getRandomValues(new Uint8Array(1))[0]&15>>n/4).toString(16)}):`xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx`.replace(/[xy]/g,function(e){let t=Math.random()*16|0;return(e===`x`?t:t&3|8).toString(16)})}},Lg=class{constructor(e){this.xmlString=e}toString(){return this.xmlString}};let Rg=[`areaChart`,`area3DChart`,`lineChart`,`line3DChart`,`stockChart`,`radarChart`,`scatterChart`,`pieChart`,`pie3DChart`,`doughnutChart`,`barChart`,`bar3DChart`,`ofPieChart`,`surfaceChart`,`surface3DChart`,`bubbleChart`,`comboChart`,`radarChart`];var zg=class{static getters=[];history;constructor(e){this.history=Object.assign(Object.create(e),{update:e.addChange.bind(e,this),selectCell:()=>{}})}exportForExcel(e){}allowDispatch(e){return H.Success}beforeHandle(e){}handle(e){}finalize(){}batchValidations(...e){return t=>e.map(e=>e.call(this,t)).flat()}chainValidations(...e){return t=>{for(let n of e){let e=n.call(this,t);Array.isArray(e)||(e=[e]);let r=e.filter(e=>e!==H.Success);if(r.length)return r}return H.Success}}checkValidations(e,...t){return this.batchValidations(...t)(e)}},Bg=class extends zg{getters;dispatch;canDispatch;constructor({getters:e,stateObserver:t,range:n,dispatch:r,canDispatch:i}){super(t),n.addRangeProvider(this.adaptRanges.bind(this)),this.getters=e,this.dispatch=r,this.canDispatch=i}import(e){}export(e,t){}adaptRanges(e){}};let Vg=/^[\p{L}\p{N}_.]+$/u;var Hg=class extends Bg{static getters=[`getNamedRange`,`getNamedRangeFromZone`,`getNamedRanges`];namedRanges=[];adaptRanges({applyChange:e}){let t=[],n=!1;for(let r of this.namedRanges){let i=e(r.range);switch(i.changeType){case`REMOVE`:n=!0;break;case`RESIZE`:case`MOVE`:case`CHANGE`:n=!0,t.push({...r,range:i.range});break;case`NONE`:t.push(r)}}n&&this.history.update(`namedRanges`,t)}allowDispatch(e){switch(e.type){case`CREATE_NAMED_RANGE`:return this.checkValidNewNamedRangeName(e.name);case`UPDATE_NAMED_RANGE`:return this.checkValidations(e,()=>this.checkNamedRangeExists(e.oldRangeName),()=>e.newRangeName===e.oldRangeName?H.Success:this.checkValidNewNamedRangeName(e.newRangeName));case`DELETE_NAMED_RANGE`:return this.checkNamedRangeExists(e.name)}return H.Success}handle(e){switch(e.type){case`CREATE_NAMED_RANGE`:{let t=this.getters.getRangeFromRangeData(e.ranges[0]),n=[...this.namedRanges,{name:e.name,range:t}];this.history.update(`namedRanges`,n);break}case`UPDATE_NAMED_RANGE`:{let t=this.getNamedRangeIndex(e.oldRangeName);if(t!==-1){let n=this.getters.getRangeFromRangeData(e.ranges[0]);this.history.update(`namedRanges`,t,{name:e.newRangeName,range:n})}break}case`DELETE_NAMED_RANGE`:{let t=this.getNamedRangeIndex(e.name);if(t!==-1){let e=[...this.namedRanges];e.splice(t,1),this.history.update(`namedRanges`,e)}break}}}getNamedRange(e){return this.namedRanges[this.getNamedRangeIndex(e)]}getNamedRangeFromZone(e,t){for(let n of this.namedRanges){let r=n.range;if(r.sheetId===e&&T(r.unboundedZone,t))return n}}getNamedRanges(){return this.namedRanges}getNamedRangeIndex(e){return this.namedRanges.findIndex(t=>t&&t.name.toLowerCase()===e.toLowerCase())}import(e){for(let t in e.namedRanges||{})this.namedRanges.push({name:t,range:this.getters.getRangeFromSheetXC(void 0,e.namedRanges[t])})}export(e){e.namedRanges={};for(let t of this.namedRanges){let n=this.getters.getRangeString(t.range);e.namedRanges[t.name]=n}}exportForExcel(e){this.export(e)}checkValidNewNamedRangeName(e){return this.getNamedRange(e)?H.NamedRangeNameAlreadyExists:!Vg.test(e)||Si(e,L)||[`TRUE`,`FALSE`].includes(e.toUpperCase())?H.NamedRangeInvalidName:ws.test(e)?H.NamedRangeNameLooksLikeCellReference:H.Success}checkNamedRangeExists(e){return this.getNamedRange(e)?H.Success:H.NamedRangeNotFound}};function Ug(e,t){let n={};for(let r of e.namedRanges){if(!r.value.split(`!`)[0]?.replace(/'/g,``)){t.addConversionWarning(`Named range "${r.name}" does not specify a sheet and will be ignored.`);continue}if(!Vg.test(r.name)){t.addConversionWarning(`Named range "${r.name}" has an invalid name and will be ignored.`);continue}n[r.name]=r.value}return n}let Wg=new WeakMap,Gg=new WeakMap;function Kg(e,t){Wg.has(t)||(Wg.set(t,new Map),Gg.set(t,0));let n=Wg.get(t),r=Yg(e);if(n.has(r)){let i=n.get(r);return t[i]=e,i}let i=Gg.get(t)+1;return n.set(r,i),Gg.set(t,i),t[i]=e,i}function qg(e){let t={};for(let n in e){let r=rn(e[n].map(D));for(let e of r)t[bn(e)]=Number(n)}return t}function*Jg(e,t){for(let n in t){let r=hn(n),i=t[n];for(let t=r.top;t<=r.bottom;t++)for(let n=r.left;n<=r.right;n++)yield[{sheetId:e,col:n,row:t},i]}}function Yg(e){if(e===null)return`null`;if(e===void 0)return`undefined`;if(typeof e!=`object`)return String(e);if(Array.isArray(e)){let t=e.length,n=`[`;for(let r=0;r<t;r++)r>0&&(n+=`,`),n+=Yg(e[r]);return n+`]`}let t=Object.keys(e).sort(),n=`{`;for(let r of t)e[r]!==void 0&&(n+=`"${r}":${Yg(e[r])},`);return n+=`}`,n}let Xg=[`thin`,`medium`,`thick`,`dashed`,`dotted`],Zg=[`general`,`left`,`center`,`right`],Qg=[`top`,`center`,`bottom`],$g=[`Arial`],e_=[`solid`,`none`],t_=[`expression`,`cellIs`,`colorScale`,`iconSet`,`containsText`,`notContainsText`,`beginsWith`,`endsWithText`,`containsBlanks`,`notContainsBlanks`],n_={b:`boolean`,d:`date`,e:`error`,inlineStr:`inlineStr`,n:`number`,s:`sharedString`,str:`str`},r_={dashDot:`thin`,dashDotDot:`thin`,dashed:`dashed`,dotted:`dotted`,double:`thin`,hair:`thin`,medium:`medium`,mediumDashDot:`thin`,mediumDashDotDot:`thin`,mediumDashed:`thin`,none:void 0,slantDashDot:`thin`,thick:`thick`,thin:`thin`},i_={general:void 0,left:`left`,center:`center`,right:`right`,fill:`left`,justify:`left`,centerContinuous:`center`,distributed:`center`},a_={top:`top`,center:`middle`,bottom:`bottom`,justify:`middle`,distributed:`middle`},o_={top:`top`,middle:`center`,bottom:`bottom`},s_={beginsWith:`beginsWithText`,endsWith:`endsWithText`,containsText:`containsText`,notContains:`notContainsText`,between:`isBetween`,notBetween:`isNotBetween`,equal:`isEqual`,notEqual:`isNotEqual`,greaterThan:`isGreaterThan`,greaterThanOrEqual:`isGreaterOrEqualTo`,lessThan:`isLessThan`,lessThanOrEqual:`isLessOrEqualTo`},c_={aboveAverage:void 0,expression:`customFormula`,cellIs:void 0,colorScale:void 0,dataBar:void 0,iconSet:void 0,top10:`top10`,uniqueValues:`uniqueValues`,duplicateValues:`duplicateValues`,containsText:`containsText`,notContainsText:`notContainsText`,beginsWith:`beginsWithText`,endsWith:`endsWithText`,containsBlanks:`isEmpty`,notContainsBlanks:`isNotEmpty`,containsErrors:void 0,notContainsErrors:void 0,timePeriod:void 0},l_={num:`number`,percent:`percentage`,max:`value`,min:`value`,percentile:`percentile`,formula:`formula`},u_={NoIcons:void 0,"3Arrows":`arrows`,"3ArrowsGray":`arrows`,"3Symbols":`smiley`,"3Symbols2":`smiley`,"3Signs":`dots`,"3Flags":`dots`,"3TrafficLights1":`dots`,"3TrafficLights2":`dots`,"4Arrows":`arrows`,"4ArrowsGray":`arrows`,"4RedToBlack":`dots`,"4Rating":`smiley`,"4TrafficLights":`dots`,"5Arrows":`arrows`,"5ArrowsGray":`arrows`,"5Rating":`smiley`,"5Quarters":`dots`,"3Stars":`smiley`,"3Triangles":`arrows`,"5Boxes":`dots`},d_={none:`none`,b:`bottom`,t:`top`,l:`left`,r:`right`,tr:`right`},f_={areaChart:void 0,area3DChart:void 0,lineChart:`line`,line3DChart:void 0,stockChart:void 0,radarChart:`radar`,scatterChart:`scatter`,pieChart:`pie`,pie3DChart:void 0,doughnutChart:`pie`,barChart:`bar`,bar3DChart:void 0,ofPieChart:void 0,surfaceChart:void 0,surface3DChart:void 0,bubbleChart:void 0,comboChart:`combo`},p_={exp:`exponential`,log:`logarithmic`,poly:`polynomial`,movingAvg:`trailingMovingAverage`},m_={1:`AVERAGE`,2:`COUNT`,3:`COUNTA`,4:`MAX`,5:`MIN`,6:`PRODUCT`,7:`STDEV`,8:`STDEVP`,9:`SUM`,10:`VAR`,11:`VARP`,101:`AVERAGE`,102:`COUNT`,103:`COUNTA`,104:`MAX`,105:`MIN`,106:`PRODUCT`,107:`STDEV`,108:`STDEVP`,109:`SUM`,110:`VAR`,111:`VARP`},h_={0:`General`,1:`0`,2:`0.00`,3:`#,#00`,4:`#,##0.00`,9:`0%`,10:`0.00%`,11:void 0,12:void 0,13:void 0,14:`m/d/yyyy`,15:`m/d/yyyy`,16:`m/d/yyyy`,17:`m/d/yyyy`,18:`hh:mm:ss a`,19:`hh:mm:ss a`,20:`hhhh:mm:ss`,21:`hhhh:mm:ss`,22:`m/d/yy h:mm`,37:void 0,38:void 0,39:void 0,40:void 0,45:`hhhh:mm:ss`,46:`hhhh:mm:ss`,47:`hhhh:mm:ss`,48:void 0,49:`@`},g_={0:1,"0.00":2,"#,#00":3,"#,##0.00":4,"0%":9,"0.00%":10,"0.00E+00":11,"# ?/?":12,"# ??/??":13,"mm-dd-yy":14,"d-mm-yy":15,"mm-yy":16,"mmm-yy":17,"h:mm AM/PM":18,"h:mm:ss AM/PM":19,"h:mm":20,"h:mm:ss":21,"m/d/yy h:mm":22,"#,##0 ;(#,##0)":37,"#,##0 ;[Red](#,##0)":38,"#,##0.00;(#,##0.00)":39,"#,##0.00;[Red](#,##0.00)":40,"mm:ss":45,"[h]:mm:ss":46,"mmss.0":47,"##0.0E+0":48,"@":49,"hh:mm:ss a":19},__={0:`000000`,1:`FFFFFF`,2:`FF0000`,3:`00FF00`,4:`0000FF`,5:`FFFF00`,6:`FF00FF`,7:`00FFFF`,8:`000000`,9:`FFFFFF`,10:`FF0000`,11:`00FF00`,12:`0000FF`,13:`FFFF00`,14:`FF00FF`,15:`00FFFF`,16:`800000`,17:`008000`,18:`000080`,19:`808000`,20:`800080`,21:`008080`,22:`C0C0C0`,23:`808080`,24:`9999FF`,25:`993366`,26:`FFFFCC`,27:`CCFFFF`,28:`660066`,29:`FF8080`,30:`0066CC`,31:`CCCCFF`,32:`000080`,33:`FF00FF`,34:`FFFF00`,35:`00FFFF`,36:`800080`,37:`800000`,38:`008080`,39:`0000FF`,40:`00CCFF`,41:`CCFFFF`,42:`CCFFCC`,43:`FFFF99`,44:`99CCFF`,45:`FF99CC`,46:`CC99FF`,47:`FFCC99`,48:`3366FF`,49:`33CCCC`,50:`99CC00`,51:`FFCC00`,52:`FF9900`,53:`FF6600`,54:`666699`,55:`969696`,56:`003366`,57:`339966`,58:`003300`,59:`333300`,60:`993300`,61:`993366`,62:`333399`,63:`333333`,64:`000000`,65:`FFFFFF`},v_={"image/avif":`avif`,"image/bmp":`bmp`,"image/gif":`gif`,"image/vnd.microsoft.icon":`ico`,"image/jpeg":`jpeg`,"image/png":`png`,"image/tiff":`tiff`,"image/webp":`webp`},y_={avif:`image/avif`,bmp:`image/bmp`,gif:`image/gif`,ico:`image/vnd.microsoft.icon`,jpeg:`image/jpeg`,png:`image/png`,tiff:`image/tiff`,webp:`image/webp`,jpg:`image/jpeg`},b_={between:`isBetween`,notBetween:`isNotBetween`,equal:`isEqual`,notEqual:`isNotEqual`,greaterThan:`isGreaterThan`,greaterThanOrEqual:`isGreaterOrEqualTo`,lessThan:`isLessThan`,lessThanOrEqual:`isLessOrEqualTo`},x_={between:`dateIsBetween`,notBetween:`dateIsNotBetween`,equal:`dateIs`,greaterThan:`dateIsAfter`,greaterThanOrEqual:`dateIsOnOrAfter`,lessThan:`dateIsBefore`,lessThanOrEqual:`dateIsOnOrBefore`};function S_(e){switch(e){case`isNotEmpty`:return`notContainsBlanks`;case`isEmpty`:return`containsBlanks`;case`notContainsText`:return`notContainsBlanks`;case`containsText`:return`containsText`;case`beginsWithText`:return`beginsWith`;case`endsWithText`:return`endsWith`;case`isGreaterThan`:return`greaterThan`;case`isGreaterOrEqualTo`:return`greaterThanOrEqual`;case`isLessThan`:return`lessThan`;case`isLessOrEqualTo`:return`lessThanOrEqual`;case`isBetween`:return`between`;case`isNotBetween`:return`notBetween`;case`isEqual`:return`equal`;case`isNotEqual`:return`notEqual`;case`customFormula`:return``;case`dateIs`:return``;case`dateIsBefore`:return`lessThan`;case`dateIsAfter`:return`greaterThan`;case`dateIsOnOrAfter`:return`greaterThanOrEqual`;case`dateIsOnOrBefore`:return`lessThanOrEqual`;case`top10`:return`top10`;case`uniqueValues`:return`uniqueValues`;case`duplicateValues`:return`duplicateValues`}}function C_(e){switch(typeof e){case`boolean`:return`b`;case`string`:return`str`;case`number`:return`n`;default:return}}function w_(e){return Math.round(Zd*e*100)/100}function T_(e){return Math.round(Qd*e*100)/100}function E_(e){return e&&Math.round(e/Zd*100)/100}function D_(e){return e&&Math.round(e/Qd*100)/100}function O_(e,t,n,r,i){let a=n?e.styles[n]:{},o=r?e.formats[r]:void 0,s={font:{size:a?.fontSize||xe,color:{rgb:a?.textColor?a.textColor:`000000`},family:2,name:`Arial`},fill:a?.fillColor?{fgColor:{rgb:a.fillColor}}:{reservedAttribute:`none`},numFmt:o?{format:o,id:0}:void 0,border:i||0,alignment:{horizontal:a.align,vertical:a.verticalAlign?o_[a.verticalAlign]:void 0,wrapText:a.wrapping===`wrap`||t?.includes(`
31
+ `)?!0:void 0,textRotation:a.rotation?k_(a.rotation):void 0,shrinkToFit:a.wrapping===`clip`?!0:void 0}};return s.font.strike=!!a?.strikethrough||void 0,s.font.underline=!!a?.underline||void 0,s.font.bold=!!a?.bold||void 0,s.font.italic=!!a?.italic||void 0,s}function k_(e){let t=Math.round(-e/Math.PI*180)%180;return t>90?t-=180:t<-90&&(t+=180),t>=0?t:90-t}function A_(e){return e<=90?-(e/180)*Math.PI:-(90-e)/180*Math.PI}function j_(e,t){let n=M_(t.numFmt,e.numFmts);return F_({fontId:F_(t.font,e.fonts),fillId:F_(t.fill,e.fills),borderId:t.border,numFmtId:n,alignment:{vertical:t.alignment.vertical,horizontal:t.alignment.horizontal,wrapText:t.alignment.wrapText,textRotation:t.alignment.textRotation,shrinkToFit:t.alignment.shrinkToFit}},e.styles)}function M_(e,t){if(!e)return 0;let n=g_[e.format];return n||=F_(e,t)+164,n}function N_(e,t,n){let r=e.find(e=>e.path===t),i;return r?(i=`rId${(r.rels.length+1).toString()}`,r.rels.push({...n,id:i})):(i=`rId1`,e.push({path:t,rels:[{...n,id:i}]})),i}let P_=new WeakMap;function F_(e,t){let n=P_.get(t);if(!n){n=new Map;for(let e=0;e<t.length;e++){let r=Yg(t[e]);n.set(r,e)}P_.set(t,n)}let r=Yg(e);if(n.has(r))return n.get(r);let i=t.length;return t.push(e),n.set(r,i),i}function I_(e,t){let n=t.chartIds.findIndex(t=>t===e);return n===-1?(t.chartIds.push(e),t.chartIds.length):n+1}let L_=[];function R_(e){let t=L_.findIndex(t=>t===e);return t===-1?(L_.push(e),L_.length):t+1}function z_(e){return Math.round(e*914400/96)}function B_(e,t,n){let r=e,i;({xc:r,sheetName:i}=As(e));let a;if(i){let e=n.sheets.findIndex(e=>rl(e.name,i));if(e<0)throw Error(`Unable to find a sheet with the name `+i);a=e}else a=Number(t);let o=mn(r);return o.right===void 0&&(o.right=n.sheets[a].colNumber),o.bottom===void 0&&(o.bottom=n.sheets[a].rowNumber),(o.right-o.left+1)*(o.bottom-o.top+1)}function V_(e){return Math.round(e*96/914400)}function H_(e,t){let n=0;for(let r=0;r<e;r++){let e=t.cols.find(e=>r>=e.min&&r<=e.max);e?.width?n+=e.width:t.sheetFormat?.defaultColWidth?n+=t.sheetFormat.defaultColWidth:n+=$d}return n/Qd}function U_(e,t){let n=0;for(let r=0;r<e;r++){let e=t.rows.find(e=>e.index-1===r);e?.height?n+=e.height:t.sheetFormat?.defaultRowHeight?n+=t.sheetFormat.defaultRowHeight:n+=ef}return n/Zd}function W_(e){return Object.keys(b_).find(t=>b_[t]===e)}function G_(e){return Object.keys(x_).find(t=>x_[t]===e)}let K_=function(e){return e.DiagonalBorderNotSupported=`Diagonal Borders`,e.BorderStyleNotSupported=`Border style`,e.FillStyleNotSupported=`Fill Style`,e.FontNotSupported=`Font`,e.HorizontalAlignmentNotSupported=`Horizontal Alignment`,e.VerticalAlignmentNotSupported=`Vertical Alignments`,e.MultipleRulesCfNotSupported=`Multiple rules conditional formats`,e.CfTypeNotSupported=`Conditional format type`,e.CfFormatBorderNotSupported=`Borders in conditional formats`,e.CfFormatAlignmentNotSupported=`Alignment in conditional formats`,e.CfFormatNumFmtNotSupported=`Num formats in conditional formats`,e.CfIconSetEmptyIconNotSupported=`IconSets with empty icons`,e.BadlyFormattedHyperlink=`Badly formatted hyperlink`,e.NumFmtIdNotSupported=`Number format`,e.TimeDataValidationNotSupported=`Time data validation rules`,e.TextLengthDataValidationNotSupported=`Text length data validation rules`,e.WholeNumberDataValidationNotSupported=`Whole number data validation rules`,e.NotEqualDateDataValidationNotSupported=`Not equal date data validation rules`,e}({});var q_=class{_parsingWarnings=new Set;_conversionWarnings=new Set;addParsingWarning(e){this._parsingWarnings.add(e)}addConversionWarning(e){this._conversionWarnings.add(e)}get warnings(){return[...this._parsingWarnings,...this._conversionWarnings]}generateNotSupportedWarning(e,t,n){let r=`${e} ${t?`"`+t+`" is`:`are`} not yet supported. `;n&&(r+=`Only ${n.join(`, `)} are currently supported.`),this._conversionWarnings.has(r)||this._conversionWarnings.add(r)}};let J_={name:`ARROW_DOWN`,width:448,height:512,paths:[{fillColor:`#E06666`,path:`M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z`}]},Y_={name:`ARROW_UP`,width:448,height:512,paths:[{fillColor:`#6AA84F`,path:`M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z`}]},X_={name:`ARROW_RIGHT`,width:448,height:512,paths:[{fillColor:`#F0AD4E`,path:`M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z`}]},Z_={name:`SMILE`,width:496,height:512,paths:[{fillColor:`#6AA84F`,path:`M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z`}]},Q_={name:`MEH`,width:496,height:512,paths:[{fillColor:`#F0AD4E`,path:`M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z`}]},$_={name:`FROWN`,width:496,height:512,paths:[{fillColor:`#E06666`,path:`M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z`}]},ev=`M256 9 a247 247 0 1 0.1 0 0`,tv={name:`GREEN_DOT`,width:512,height:512,paths:[{fillColor:`#6AA84F`,path:ev}]},nv={name:`YELLOW_DOT`,width:512,height:512,paths:[{fillColor:`#F0AD4E`,path:ev}]},rv={name:`RED_DOT`,width:512,height:512,paths:[{fillColor:`#E06666`,path:ev}]},iv=`M40 160 h320 l-160 160`;function av(e){return{name:`CARET_DOWN`,width:512,height:512,paths:[{fillColor:e.textColor||`#374151C2`,path:iv}]}}function ov(e){return{name:`CARET_UP`,width:512,height:512,paths:[{fillColor:e.textColor||`#374151C2`,path:`M40 320 h320 l-160 -160`}]}}function sv(e){return{name:`CARET_DOWN`,width:512,height:512,paths:[{fillColor:e.textColor||`#374151C2`,path:`M200 32a200 200 0 1 1 0 400 200 200 0 1 1 0-400`},{fillColor:e.fillColor||`#fff`,path:iv}]}}let cv=e=>({name:`CHECKBOX_UNCHECKED`,width:512,height:512,paths:[{fillColor:e?le:`#91959d`,path:`M45,45 h422 v422 h-422 v-422 m30,30 v362 h362 v-362`}]}),lv=e=>({name:`CHECKBOX_UNCHECKED`,width:512,height:512,paths:[{fillColor:e?`#82d1d5`:de,path:`M45,45 h422 v422 h-422 v-422 m30,30 v362 h362 v-362`}]}),uv=e=>({name:`CHECKBOX_CHECKED`,width:512,height:512,paths:[{fillColor:e?`#82d1d5`:de,path:`M45,45 h422 v422 h-422 v-422`},{fillColor:e?`#505050`:`#FFF`,path:`M165,240 l45,45 l135,-135 h60 l-195,195 l-105,-105`}]});function dv(e,t){return{name:`PIVOT_ICON`,width:512,height:512,paths:[{path:`M21,21 h469 v469 h-469`,fillColor:t?se:`#777`},{path:`M64,64 v384 h384 v-384`,fillColor:t?`#E7E9ED`:`#eee`},{path:e?`M149,235 h213 v43 h-213 M235,149 h43 v213 h-43`:`M149,235 h213 v43 h-213`,fillColor:t?se:`#777`}]}}function fv(e,t,n){let r=e?`M18.6 3.5H4.29c-.7 0-1.06.85-.56 1.35l6.1 6.1v6.8c0 .26.13.5.34.65l2.64 1.85a.79.79 0 0 0 1.25-.65v-8.64l6.1-6.1a.79.79 0 0 0-.56-1.35`:`M 339.667 681 L 510.333 681 L 510.333 595.667 L 339.667 595.667 L 339.667 681 Z M 41 169 L 41 254.333 L 809 254.333 L 809 169 L 41 169 Z M 169 467.667 L 681 467.667 L 681 382.333 L 169 382.333 L 169 467.667 Z`,i=e?`M0,0 h24 v24 h-24`:`M0,0 h850 v850 h-850`,a={iconColor:ie,hoverBackgroundColor:ie};return n&&!t?a.iconColor=`#fff`:!n&&t?a.iconColor=`#defade`:n&&t&&(a.iconColor=ie,a.hoverBackgroundColor=`#fff`),{name:`DATA_FILTER_ICON`,width:e?24:850,height:e?24:850,paths:[n?{path:i,fillColor:a.hoverBackgroundColor}:void 0,{path:r,fillColor:a.iconColor}].filter(w)}}let pv={arrowGood:{template:`ARROW_UP`,svg:Y_},arrowNeutral:{template:`ARROW_RIGHT`,svg:X_},arrowBad:{template:`ARROW_DOWN`,svg:J_},smileyGood:{template:`SMILE`,svg:Z_},smileyNeutral:{template:`MEH`,svg:Q_},smileyBad:{template:`FROWN`,svg:$_},dotGood:{template:`GREEN_DOT`,svg:tv},dotNeutral:{template:`YELLOW_DOT`,svg:nv},dotBad:{template:`RED_DOT`,svg:rv}},mv={arrows:{good:`arrowGood`,neutral:`arrowNeutral`,bad:`arrowBad`},smiley:{good:`smileyGood`,neutral:`smileyNeutral`,bad:`smileyBad`},dots:{good:`dotGood`,neutral:`dotNeutral`,bad:`dotBad`}},hv={};function gv(e){if(hv[e])return hv[e];let t=new Path2D(e);return hv[e]=t,t}function _v(e,t){let n=e.split(`/`),r=t.split(`/`),i=``,a=0;for(let e=0;e<n.length-1;e++)n[e]===r[e]?a++:i+=`../`;return i+=r.slice(a).join(`/`),i}function vv(e,t=0){let n={};for(let r=0;r<e.length;r++)e[r]&&(n[r+t]=e[r]);return n}function yv(e){return e.replace(/_x([0-9a-zA-Z]{4})_/g,(e,t)=>String.fromCharCode(parseInt(t,16)))}function bv(e,t,n){return t===`COL`?(e.cols[n]||(e.cols[n]={}),e.cols[n]):(e.rows[n]||(e.rows[n]={}),e.rows[n])}function xv(e){if(e[0]===`=`)return e;let t=Hs(e);return t.length===1&&t[0].type!==`REFERENCE`?e:`=`+e}function Sv(e){if(!e)return;let t;if(e.rgb)t=e.rgb;else if(e.auto)t=Ud;else if(e.indexed)t=__[e.indexed];else return;return t=Cv(t),e.tint&&(t=wv(t,e.tint)),t=t.toUpperCase(),t.length===9&&t.endsWith(`FF`)&&(t=t.slice(0,7)),t}function Cv(e){return e.length===6?`#`+e+`FF`:`#`+e.slice(2)+e.slice(0,2)}function wv(e,t){let n=ud(cd(e));return t<0&&(n.l*=1+t),t>0&&(n.l=n.l*(1-t)+(100-100*(1-t))),sd(ld(n))}function Tv(e){return e.length===9&&(e=e.slice(0,7)),parseInt(e.replace(`#`,``),16)}let Ev=/^(yy|yyyy|m{1,5}|d{1,4}|h{1,2}|s{1,2}|am\/pm|a\/m|\s|-|\/|\.|:)+$/i;function Dv(e,t,n){let r=h_[e]||t.find(t=>t.id===e)?.format;if(r!==`General`){if(r)try{let e=r.replace(/\[(.*)-[A-Z0-9]{3}\]/g,`[$1]`);if(e=e.replace(/\[\$\]/g,``),e=e.replace(/_.{1}/g,``),e=e.replace(/\*.{1}/g,``),kv(e)&&(e=Av(e)),Ov(e))return e}catch{}n.generateNotSupportedWarning(K_.NumFmtIdNotSupported,r||`nmFmtId ${e}`)}}function Ov(e){try{return R(0,{format:e,locale:L}),!0}catch{return!1}}function kv(e){return Ev.test(e)}function Av(e){return e=e.toLowerCase(),e=e.replace(/mmmmm/g,`mmm`),e=e.replace(/am\/pm|a\/m/g,`a`),e=e.replace(/hhhh/g,`hh`),e=e.replace(/\bh\b/g,`hh`),e}function jv(e,t){return vv(e.borders.map(e=>{Rv(e,t);let n={top:Mv(e.top,t),bottom:Mv(e.bottom,t),left:Mv(e.left,t),right:Mv(e.right,t)};return Object.keys(n).forEach(e=>n[e]===void 0&&delete n[e]),n}),1)}function Mv(e,t){if(!e)return;Lv(e,t);let n=r_[e.style];return n?{style:n,color:Sv(e.color)}:void 0}function Nv(e,t){return vv(e.styles.map(n=>Pv({fontStyle:e.fonts[n.fontId],fillStyle:e.fills[n.fillId],alignment:n.alignment},t)),1)}function Pv(e,t){return Iv(e?.fontStyle,e?.fillStyle,t),zv(e?.alignment?.horizontal,t),Bv(e?.alignment?.vertical,t),{bold:e.fontStyle?.bold,italic:e.fontStyle?.italic,strikethrough:e.fontStyle?.strike,underline:e.fontStyle?.underline,verticalAlign:e.alignment?.vertical?a_[e.alignment.vertical]:void 0,align:e.alignment?.horizontal?i_[e.alignment.horizontal]:void 0,rotation:e.alignment?.textRotation?A_(e.alignment.textRotation):void 0,fillColor:e.fillStyle?.patternType===`solid`?Sv(e.fillStyle?.fgColor):Sv(e.fillStyle?.bgColor),textColor:Sv(e.fontStyle?.color),fontSize:e.fontStyle?.size,wrapping:e.alignment?.wrapText?`wrap`:`overflow`}}function Fv(e,t){let n=[];for(let r of e.styles){let i=Dv(r.numFmtId,e.numFmts,t);i&&(n[r.numFmtId]=i)}return vv(n,1)}function Iv(e,t,n){e&&e.name&&!$g.includes(e.name)&&n.generateNotSupportedWarning(K_.FontNotSupported,e.name,$g),t&&t.patternType&&!e_.includes(t.patternType)&&n.generateNotSupportedWarning(K_.FillStyleNotSupported,t.patternType,e_)}function Lv(e,t){Xg.includes(e.style)||t.generateNotSupportedWarning(K_.BorderStyleNotSupported,e.style,Xg)}function Rv(e,t){e.diagonal&&t.generateNotSupportedWarning(K_.DiagonalBorderNotSupported)}function zv(e,t){e&&!Zg.includes(e)&&t.generateNotSupportedWarning(K_.HorizontalAlignmentNotSupported,e,Zg)}function Bv(e,t){e&&!Qg.includes(e)&&t.generateNotSupportedWarning(K_.VerticalAlignmentNotSupported,e,Qg)}function Vv(e,t,n){let r=[],i=1;for(let a of e){if(a.cfRules.length===0)continue;Kv(a,t,n);let e=a.cfRules[0],o,s=[],c={};if(!(e.dxfId===void 0&&!(e.type===`colorScale`||e.type===`iconSet`||e.type===`dataBar`))){switch(e.type){case`aboveAverage`:case`containsErrors`:case`notContainsErrors`:case`timePeriod`:continue;case`dataBar`:let t=Hv(i++,a);t&&r.push(t);continue;case`colorScale`:let l=Uv(i++,a);l&&r.push(l);continue;case`iconSet`:let u=Wv(i++,a,n);u&&r.push(u);continue;case`containsText`:case`notContainsText`:case`beginsWith`:case`endsWith`:if(!e.text)continue;o=c_[e.type],s.push(e.text);break;case`expression`:if(!e.formula?.length)continue;o=c_[e.type],s.push(`=${e.formula[0]}`);break;case`duplicateValues`:case`uniqueValues`:case`containsBlanks`:case`notContainsBlanks`:o=c_[e.type];break;case`cellIs`:if(!e.operator||!e.formula||e.formula.length===0)continue;o=s_[e.operator],s.push(xv(e.formula[0])),e.formula.length===2&&s.push(xv(e.formula[1]));break;case`top10`:if(e.rank===void 0)continue;o=c_[e.type],s.push(e.rank.toString()),e.percent&&(c.isPercent=!0),e.bottom&&(c.isBottom=!0);break}o&&e.dxfId!==void 0&&r.push({id:(i++).toString(),ranges:a.sqref,stopIfTrue:e.stopIfTrue,rule:{type:`CellIsRule`,operator:o,values:s,...c,style:Pv({fontStyle:t[e.dxfId].font,fillStyle:t[e.dxfId].fill},n)}})}}return r}function Hv(e,t){let n=t.cfRules[0].dataBar;if(!n)return;let r=Tv(Sv(n.color)||`#FFFFFF`);return{id:e.toString(),stopIfTrue:t.cfRules[0].stopIfTrue,ranges:t.sqref,rule:{type:`DataBarRule`,color:r}}}function Uv(e,t){let n=t.cfRules[0].colorScale;if(!n||n.cfvos.length!==n.colors.length||n.cfvos.length<2||n.cfvos.length>3)return;let r=[];for(let e=0;e<n.cfvos.length;e++)r.push({color:Tv(Sv(n.colors[e])||`#FFFFFF`),type:l_[n.cfvos[e].type],value:n.cfvos[e].value});let i=r[0],a=r.length===2?r[1]:r[2],o=r.length===3?r[1]:void 0;return{id:e.toString(),stopIfTrue:t.cfRules[0].stopIfTrue,ranges:t.sqref,rule:{type:`ColorScaleRule`,minimum:i,midpoint:o,maximum:a}}}function Wv(e,t,n){let r=t.cfRules[0].iconSet;if(!r)return;let i=r.cfvos,a=r.cfIcons;if(i.length<3||a&&a.length<3)return;i.length>3&&(i=[i[0],i[Math.floor(i.length/2)],i[i.length-1]]),a&&a.length>3&&(a=[a[0],a[Math.floor(a.length/2)],a[a.length-1]]);let o=[];for(let e=1;e<=2;e++){let t=l_[i[e].type];if(t===`value`)return;o.push({value:i[e].value||``,operator:i[e].gte?`ge`:`gt`,type:t})}let s={lower:a?Gv(a[0].iconSet,a[0].iconId):Gv(r.iconSet,0),middle:a?Gv(a[1].iconSet,a[1].iconId):Gv(r.iconSet,1),upper:a?Gv(a[2].iconSet,a[2].iconId):Gv(r.iconSet,2)};r.reverse&&(s={upper:s.lower,middle:s.middle,lower:s.upper});for(let e of Object.keys(s))if(!s[e])switch(n.generateNotSupportedWarning(K_.CfIconSetEmptyIconNotSupported),e){case`upper`:s[e]=mv.dots.good;break;case`middle`:s[e]=mv.dots.neutral;break;case`lower`:s[e]=mv.dots.bad;break}return{id:e.toString(),stopIfTrue:t.cfRules[0].stopIfTrue,ranges:t.sqref,rule:{type:`IconSetRule`,icons:s,upperInflectionPoint:o[1],lowerInflectionPoint:o[0]}}}function Gv(e,t){let n=u_[e];return n?t===0?mv[n].bad:t===1?mv[n].neutral:mv[n].good:``}function Kv(e,t,n){if(e.cfRules.length>1&&n.generateNotSupportedWarning(K_.MultipleRulesCfNotSupported),t_.includes(e.cfRules[0].type)||n.generateNotSupportedWarning(K_.CfTypeNotSupported,e.cfRules[0].type),e.cfRules[0].dxfId){let r=t[e.cfRules[0].dxfId];r.border&&n.generateNotSupportedWarning(K_.CfFormatBorderNotSupported),r.alignment&&n.generateNotSupportedWarning(K_.CfFormatAlignmentNotSupported),r.numFmt&&n.generateNotSupportedWarning(K_.CfFormatNumFmtNotSupported)}}function qv(e){let t=k.now();switch(e){case`today`:return Math.floor(ii(t));case`yesterday`:return t.setDate(t.getDate()-1),Math.floor(ii(t));case`tomorrow`:return t.setDate(t.getDate()+1),Math.floor(ii(t));case`lastWeek`:return t.setDate(t.getDate()-6),Math.floor(ii(t));case`lastMonth`:{let e=t.getMonth()===0?11:t.getMonth()-1,n=new k(t.getFullYear(),e,1);return t.getDate()>ai(n)?t.setDate(1):(t.setDate(t.getDate()+1),t.setMonth(t.getMonth()-1)),Math.floor(ii(t))}case`lastYear`:return t.getMonth()===1&&t.getDate()===29?(t.setDate(28),t.setFullYear(t.getFullYear()-1)):(t.setDate(t.getDate()+1),t.setFullYear(t.getFullYear()-1)),Math.floor(ii(t))}}function Jv(e,t){return`dateValue`in e&&e.dateValue!==`exactDate`?[qv(e.dateValue)]:e.values.map(e=>Ur(e,t))}function Yv(e,t){return e.map(e=>{if(e.startsWith(`=`))return e;let n=au(e,t);return typeof n==`number`?R(n,{format:t.dateFormat,locale:t}):``})}function Xv(e,t){let n=[],r=1;for(let i of e)if(i)switch(i.type){case`time`:t.generateNotSupportedWarning(K_.TimeDataValidationNotSupported);break;case`textLength`:t.generateNotSupportedWarning(K_.TextLengthDataValidationNotSupported);break;case`whole`:t.generateNotSupportedWarning(K_.WholeNumberDataValidationNotSupported);break;case`decimal`:let e=Zv(r++,i);n.push(e);break;case`list`:let a=Qv(r++,i);n.push(a);break;case`date`:if(i.operator===`notEqual`){t.generateNotSupportedWarning(K_.NotEqualDateDataValidationNotSupported);break}let o=$v(r++,i);n.push(o);break;case`custom`:let s=ey(r++,i);n.push(s);break}return n}function Zv(e,t){let n=[xv(t.formula1.toString())];return t.formula2&&n.push(xv(t.formula2.toString())),{id:e.toString(),ranges:t.sqref,isBlocking:t.errorStyle!==`warning`,criterion:{type:b_[t.operator],values:n}}}function Qv(e,t){let n=t.formula1.toString(),r=ws.test(n);return{id:e.toString(),ranges:t.sqref,isBlocking:t.errorStyle!==`warning`,criterion:{type:r?`isValueInRange`:`isValueInList`,values:r?[n]:n.replaceAll(`"`,``).split(`,`),displayStyle:`arrow`}}}function $v(e,t){let n,r=[xv(t.formula1.toString())];return t.formula2?(r.push(xv(t.formula2.toString())),n={type:x_[t.operator],values:Yv(r,L)}):n={type:x_[t.operator],values:Yv(r,L),dateValue:`exactDate`},{id:e.toString(),ranges:t.sqref,isBlocking:t.errorStyle!==`warning`,criterion:n}}function ey(e,t){return{id:e.toString(),ranges:t.sqref,isBlocking:t.errorStyle!==`warning`,criterion:{type:`customFormula`,values:[xv(t.formula1.toString())]}}}let ty=new B,ny=new B;function ry(e){let t=1;return e.figures.map(n=>iy(n,(t++).toString(),e)).filter(w)}function iy(e,t,n){let r,i,a,o,s;if(e.anchors.length===1)({col:r,row:i,offset:a}=uy(e.anchors[0])),s=V_(e.figureSize.cx),o=V_(e.figureSize.cy);else{({col:r,row:i,offset:a}=uy(e.anchors[0]));let{x:t,y:c}=dy(e.anchors[0],n),{x:l,y:u}=dy(e.anchors[1],n);s=l-t,o=u-c}let c={id:t,col:r,row:i,offset:a};if(ay(e.data))return{...c,width:s,height:o,tag:`chart`,data:sy(e.data)};if(oy(e.data))return{...c,width:V_(e.data.size.cx),height:V_(e.data.size.cy),tag:`image`,data:{path:e.data.imageSrc,mimetype:e.data.mimetype}}}function ay(e){return`dataSets`in e&&e.dataSets.length>0}function oy(e){return`imageSrc`in e}function sy(e){let t=e.dataSets.some(e=>`reference`in(e.label??{})),n={},r=e.labelRange?cy(e.labelRange,t):void 0,i=e.dataSets.map((e,r)=>{let i;e.label&&`text`in e.label&&(i=e.label.text);let a=r.toString();return n[a]={label:i,backgroundColor:e.backgroundColor,trend:ly(e.trend)},{dataSetId:a,dataRange:cy(e.range,t)}});e.type===`pie`&&i.reverse();let a={dataSource:{dataSets:i,dataSetsHaveTitle:t,labelRange:r,type:`range`},dataSetStyles:n,auxiliaryRange:r,title:e.title??{text:``},background:Sv({rgb:e.backgroundColor})||`#FFFFFF`,legendPosition:e.legendPosition,stacked:e.stacked||!1,aggregated:!1,cumulative:e.cumulative||!1,labelsAsText:!1,horizontal:e.horizontal,isDoughnut:e.isDoughnut,pieHolePercentage:e.pieHolePercentage,showValues:e.showValues};try{let t=ny.get(e.type),n=ty.get(`range`);return t.getDefinitionFromContextCreation(a,n)}catch{return}}function cy(e,t){let{sheetName:n,xc:r}=As(e),i=mn(r);if(t&&i.bottom!==void 0&&i.right!==void 0){let e=i.bottom-i.top+1,t=i.right-i.left+1;e===1?i={...i,left:i.left-1}:t===1&&(i={...i,top:i.top-1})}return js(n,bn(i))}function ly(e){if(!(!e||!e.type))return{type:e.type===`linear`?`polynomial`:p_[e.type],order:e.type===`linear`?1:e.order,color:e.color,window:e.window||2,display:!0}}function uy(e){let t={x:V_(e.colOffset)-1,y:V_(e.rowOffset)-1};return{col:e.col,row:e.row,offset:t}}function dy(e,t){return{x:H_(e.col,t)+V_(e.colOffset),y:U_(e.row,t)+V_(e.rowOffset)}}let fy=new RegExp(/'?\[([0-9]*)\](.*)'?!(\$?[a-zA-Z]*\$?[0-9]*)/g),py=new RegExp(/SUBTOTAL\(([0-9]*),/g),my=new RegExp(vs.source,`ig`);function hy(e,t){let n=gy(e);for(let r of e.rows.map(e=>e.cells).flat())r?.formula&&(r.formula.content=r.formula.sharedIndex!==void 0&&!r.formula.content?`=`+vy(r.xc,n[r.formula.sharedIndex]):`=`+r.formula.content,r.formula.content=_y(r.formula.content,t))}function gy(e){let t={};for(let n of e.rows)for(let e of n.cells)e.formula&&e.formula.sharedIndex!==void 0&&e.formula.content&&(t[e.formula.sharedIndex]={refCellXc:e.xc,formula:e.formula.content});return t}function _y(e,t){return e=e.replace(`_xlfn.`,``),e=e.replace(/#REF!/g,`#REF`),e=e.replace(py,(e,t)=>{let n=m_[t];return n?n+`(`:e}),e=e.replace(fy,(e,n,r,i)=>{n=Number(n)-1,i=i.replace(/\$/g,``);let a=t.externalBooks[n]?.sheetNames.findIndex(e=>rl(e,r))??-1;if(a===-1)return e;let o=t.externalBooks[n].datasets.find(e=>e.sheetId===a)?.data;if(!o)return e;let s=o&&o[i];return(Number(s)?s:`"${s}"`)||e}),e}function vy(e,t){let n=nn(t.refCellXc),r=t.formula.slice(),i;do if(i=my.exec(r),i){let t=nn(i[0].replace(`$`,``)),a=nn(e),o={colFixed:i[0].startsWith(`$`),rowFixed:i[0].includes(`$`,1)},s={col:a.col-n.col,row:a.row-n.row},c={col:o.colFixed?t.col:t.col+s.col,row:o.rowFixed?t.row:t.row+s.row};r=r.slice(0,i.index)+E(c.col,c.row,o)+r.slice(i.index+i[0].length)}while(i);return r}function yy(e,t){return e.sheets.map(n=>{hy(n,e);let r=Ey(n),i=n.sheetViews[0],a=Dy(n,`ROW`,r[1]),o=Dy(n,`COL`,r[0]);return{id:n.sheetName,areGridLinesVisible:i?i.showGridLines:!0,name:n.sheetName,colNumber:r[0],rowNumber:r[1],...Cy(n,e,r,t),merges:n.merges,cols:by(n,r[0],o),rows:xy(n,r[1],a),conditionalFormats:Vv(n.cfs,e.dxfs,t),dataValidationRules:Xv(n.dataValidations,t),figures:ry(n),isVisible:n.isVisible,panes:i?{xSplit:i.pane.xSplit,ySplit:i.pane.ySplit}:{xSplit:0,ySplit:0},tables:[],headerGroups:{COL:o,ROW:a},color:Sv(n.sheetProperties?.tabColor),isLocked:n.isLocked}})}function by(e,t,n){let r={};for(let i=1;i<t+1;i++){let t=e.cols.find(e=>e.min<=i&&i<=e.max),a;a=t&&t.width?t.width:e.sheetFormat?.defaultColWidth?e.sheetFormat.defaultColWidth:$d;let o=i-1,s=n.some(e=>e.isFolded&&e.start<=o&&o<=e.end);r[o]={size:D_(a),isHidden:!s&&t?.hidden}}return r}function xy(e,t,n){let r={};for(let i=1;i<t+1;i++){let t=e.rows.find(e=>e.index===i),a;a=t&&t.height?t.height:e.sheetFormat?.defaultRowHeight?e.sheetFormat.defaultRowHeight:ef;let o=i-1,s=n.some(e=>e.isFolded&&e.start<=o&&o<=e.end);r[o]={size:E_(a),isHidden:!s&&t?.hidden}}return r}function Sy(e){return e.map(Ot)}function Cy(e,t,n,r){let i={},a={},o={},s={},c=Sy(t.sharedStrings),l=e.hyperlinks.reduce((e,t)=>(e[t.xc]=t,e),{});for(let n of e.rows)for(let e of n.cells)i[e.xc]=wy(e,l,c,r),e.styleIndex&&(a[e.xc]=e.styleIndex+1,o[e.xc]=t.styles[e.styleIndex].numFmtId+1,s[e.xc]=t.styles[e.styleIndex].borderId+1);for(let r of e.rows.filter(e=>e.styleIndex))for(let e=1;e<=n[0];e++){let n=E(e-1,r.index-1);a[n]??=r.styleIndex+1,s[n]??=t.styles[r.styleIndex].borderId+1,o[n]??=t.styles[r.styleIndex].numFmtId+1}for(let r of e.cols.filter(e=>e.styleIndex))for(let e=r.min;e<=Math.min(r.max,n[0]);e++)for(let i=1;i<=n[1];i++){let n=E(e-1,i-1);a[n]??=r.styleIndex+1,s[n]??=t.styles[r.styleIndex].borderId+1,o[n]??=t.styles[r.styleIndex].numFmtId+1}return{cells:i,styles:a,formats:o,borders:s}}function wy(e,t,n,r){let i;switch(e.type){case`sharedString`:i=n[parseInt(e.value,10)];break;case`boolean`:i=Number(e.value)?`TRUE`:`FALSE`;break;case`date`:case`error`:case`inlineStr`:case`number`:case`str`:i=e.value;break}return i&&t[e.xc]&&(i=Ty(t[e.xc],i,r)),e.formula&&(i=e.formula.content),i}function Ty(e,t,n){let r=e.display||t;return!e.relTarget&&!e.location&&n.generateNotSupportedWarning(K_.BadlyFormattedHyperlink),ot(r,e.relTarget?e.relTarget:ut(As(e.location).sheetName))}function Ey(e){let t=[0,0];for(let n of e.rows)t[0]=Math.max(t[0],Lt(n.cells.map(e=>nn(e.xc).col))),t[1]=Math.max(t[1],n.index);for(let n of e.figures)t[0]=Math.max(t[0],n.anchors[n.anchors.length-1]?.col??0),t[1]=Math.max(t[1],n.anchors[n.anchors.length-1]?.row??0);return t[0]=Math.max(t[0]+5,30),t[1]=Math.max(t[1]+5,100),t}function Dy(e,t,n){let r=e?.sheetProperties?.outlinePr,i=[],a=0;for(let o=0;o<n;o++){let n=ky(e,t,o)?.outlineLevel||0;if(n>a){let n=(t===`ROW`?r?.summaryBelow:r?.summaryRight)??!0,a=Oy(e,t,o,n);a&&i.push(a)}a=n}return i}function Oy(e,t,n,r){let i=ky(e,t,n),a=i?.outlineLevel;if(!a||!a)return;let o=a,s=n,c=i;for(;c&&o>=a;)s++,c=ky(e,t,s),o=c?.outlineLevel||0;let l=n,u=s-1,d=(r?ky(e,t,u+1):ky(e,t,l-1))?.collapsed||!1;return{start:l-1,end:u-1,isFolded:d}}function ky(e,t,n){return t===`COL`?e.cols.find(e=>e.min<=n&&n<=e.max):e.rows.find(e=>e.index===n)}let Ay={hasFilters:!1,totalRow:!1,firstColumn:!1,lastColumn:!1,numberOfHeaders:1,bandedRows:!0,bandedColumns:!1,automaticAutofill:!0,styleId:`TableStyleMedium2`},jy={light:A(`Light`),medium:A(`Medium`),dark:A(`Dark`)};function My(e,t){return{coloredText:Sd(t,.3),light:_d(t,.8),medium:_d(t,.6),dark:Sd(t,.3),mediumBorder:_d(t,.45),highlight:t,name:e}}let K={black:{name:A(`Black`),coloredText:`#000000`,light:`#D9D9D9`,medium:`#A6A6A6`,dark:`#404040`,mediumBorder:`#000000`,highlight:`#000000`},lightBlue:My(A(`Blue`),`#346B90`),red:My(A(`Red`),`#C53628`),lightGreen:My(A(`Green`),`#748747`),purple:My(A(`Purple`),`#6C4E65`),gray:{name:A(`Gray`),coloredText:`#666666`,light:`#EEEEEE`,medium:`#DDDDDD`,dark:`#767676`,mediumBorder:`#D0D0D0`,highlight:`#A9A9A9`},orange:My(A(`Orange`),`#C37034`)},Ny={black:K.black,orangeBlue:{...K.lightBlue,highlight:K.orange.highlight},purpleGreen:{...K.lightGreen,highlight:K.purple.highlight},redBlue:{...K.lightBlue,highlight:K.red.highlight}},Py=e=>({category:`light`,templateName:`lightColoredText`,primaryColor:e.highlight,wholeTable:{style:{textColor:e.coloredText},border:{top:{color:e.highlight,style:`thin`},bottom:{color:e.highlight,style:`thin`}}},headerRow:{border:{bottom:{color:e.highlight,style:`thin`}},style:{bold:!0}},totalRow:{border:{top:{color:e.highlight,style:`thin`}},style:{bold:!0}},firstRowStripe:{style:{fillColor:e.light}},firstColumn:{style:{bold:!0}},lastColumn:{style:{bold:!0}}}),Fy=e=>({category:`light`,templateName:`lightWithHeader`,primaryColor:e.highlight,wholeTable:{border:{top:{color:e.highlight,style:`thin`},bottom:{color:e.highlight,style:`thin`},left:{color:e.highlight,style:`thin`},right:{color:e.highlight,style:`thin`}}},headerRow:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0},border:{bottom:{color:e.highlight,style:`thin`}}},totalRow:{border:{top:{color:e.highlight,style:`medium`}},style:{bold:!0}},firstRowStripe:{border:{bottom:{color:e.highlight,style:`thin`}}},secondRowStripe:{border:{bottom:{color:e.highlight,style:`thin`}}},firstColumn:{style:{bold:!0}},lastColumn:{style:{bold:!0}}}),Iy=e=>({category:`light`,templateName:`lightAllBorders`,primaryColor:e.highlight,wholeTable:{border:{top:{color:e.highlight,style:`thin`},bottom:{color:e.highlight,style:`thin`},left:{color:e.highlight,style:`thin`},right:{color:e.highlight,style:`thin`},horizontal:{color:e.highlight,style:`thin`},vertical:{color:e.highlight,style:`thin`}}},headerRow:{border:{bottom:{color:e.highlight,style:`medium`}},style:{bold:!0}},totalRow:{border:{top:{color:e.highlight,style:`medium`}},style:{bold:!0}},firstRowStripe:{style:{fillColor:e.light}},firstColumnStripe:{style:{fillColor:e.light}},firstColumn:{style:{bold:!0}},lastColumn:{style:{bold:!0}}}),Ly=e=>({category:`medium`,templateName:`mediumBandedBorders`,primaryColor:e.highlight,wholeTable:{border:{top:{color:e.mediumBorder,style:`thin`},bottom:{color:e.mediumBorder,style:`thin`},left:{color:e.mediumBorder,style:`thin`},right:{color:e.mediumBorder,style:`thin`},horizontal:{color:e.mediumBorder,style:`thin`}}},headerRow:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},totalRow:{border:{top:{color:e.highlight,style:`medium`}},style:{bold:!0}},firstRowStripe:{style:{fillColor:e.light}},firstColumnStripe:{style:{fillColor:e.light}},firstColumn:{style:{bold:!0}},lastColumn:{style:{bold:!0}}}),Ry=e=>({category:`medium`,templateName:`mediumWhiteBorders`,primaryColor:e.highlight,wholeTable:{border:{horizontal:{color:`#FFFFFF`,style:`thin`},vertical:{color:`#FFFFFF`,style:`thin`}},style:{fillColor:e.light}},headerRow:{border:{bottom:{color:`#FFFFFF`,style:`thick`}},style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},totalRow:{border:{top:{color:`#FFFFFF`,style:`thick`}},style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},firstColumn:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},lastColumn:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},firstRowStripe:{style:{fillColor:e.medium}},firstColumnStripe:{style:{fillColor:e.medium}}}),zy=e=>({category:`medium`,templateName:`mediumMinimalBorders`,primaryColor:e.highlight,wholeTable:{border:{top:{color:`#000000`,style:`medium`},bottom:{color:`#000000`,style:`medium`}}},totalRow:{border:{top:{color:`#000000`,style:`medium`}},style:{bold:!0}},headerRow:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0},border:{bottom:{color:`#000000`,style:`medium`}}},firstColumn:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},lastColumn:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},firstRowStripe:{style:{fillColor:K.black.light}},firstColumnStripe:{style:{fillColor:K.black.light}}}),By=e=>({category:`medium`,templateName:`mediumAllBorders`,primaryColor:e.highlight,wholeTable:{border:{top:{color:e.mediumBorder,style:`thin`},bottom:{color:e.mediumBorder,style:`thin`},left:{color:e.mediumBorder,style:`thin`},right:{color:e.mediumBorder,style:`thin`},horizontal:{color:e.mediumBorder,style:`thin`},vertical:{color:e.mediumBorder,style:`thin`}},style:{fillColor:e.light}},totalRow:{border:{top:{color:e.highlight,style:`medium`}},style:{bold:!0}},firstRowStripe:{style:{fillColor:e.medium}},firstColumnStripe:{style:{fillColor:e.medium}},firstColumn:{style:{bold:!0}},lastColumn:{style:{bold:!0}},headerRow:{style:{bold:!0}}}),Vy=e=>({category:`dark`,templateName:`dark`,primaryColor:e.highlight,wholeTable:{style:{fillColor:e.highlight,textColor:`#FFFFFF`}},totalRow:{style:{fillColor:e.dark,textColor:`#FFFFFF`,bold:!0},border:{top:{color:`#FFFFFF`,style:`thick`}}},headerRow:{style:{fillColor:`#000000`,bold:!0},border:{bottom:{color:`#FFFFFF`,style:`thick`}}},firstColumn:{style:{fillColor:e.dark,bold:!0},border:{right:{color:`#FFFFFF`,style:`thick`}}},lastColumn:{style:{fillColor:e.dark,bold:!0},border:{left:{color:`#FFFFFF`,style:`thick`}}},firstRowStripe:{style:{fillColor:e.dark}},firstColumnStripe:{style:{fillColor:e.dark}}}),Hy=e=>({category:`dark`,templateName:`darkNoBorders`,primaryColor:e.highlight,wholeTable:{style:{fillColor:e.light}},totalRow:{border:{top:{color:`#000000`,style:`medium`}},style:{bold:!0}},headerRow:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},firstRowStripe:{style:{fillColor:e.medium}},firstColumnStripe:{style:{fillColor:e.medium}},firstColumn:{style:{bold:!0}},lastColumn:{style:{bold:!0}}}),Uy=Vy(K.black);Uy.wholeTable.style.fillColor=`#737373`;let Wy=zy(K.black);Wy.wholeTable.border={...Wy.wholeTable.border,left:{color:`#000000`,style:`thin`},right:{color:`#000000`,style:`thin`},horizontal:{color:`#000000`,style:`thin`},vertical:{color:`#000000`,style:`thin`}};function q(e,t,n){return{...t(n),displayName:`${n.name}, ${e}`}}let Gy={None:{category:`light`,templateName:`none`,primaryColor:``,displayName:A(`None`)},TableStyleLight1:q(`TableStyleLight1`,Py,K.black),TableStyleLight2:q(`TableStyleLight2`,Py,K.lightBlue),TableStyleLight3:q(`TableStyleLight3`,Py,K.red),TableStyleLight4:q(`TableStyleLight4`,Py,K.lightGreen),TableStyleLight5:q(`TableStyleLight5`,Py,K.purple),TableStyleLight6:q(`TableStyleLight6`,Py,K.gray),TableStyleLight7:q(`TableStyleLight7`,Py,K.orange),TableStyleLight8:q(`TableStyleLight8`,Fy,K.black),TableStyleLight9:q(`TableStyleLight9`,Fy,K.lightBlue),TableStyleLight10:q(`TableStyleLight10`,Fy,K.red),TableStyleLight11:q(`TableStyleLight11`,Fy,K.lightGreen),TableStyleLight12:q(`TableStyleLight12`,Fy,K.purple),TableStyleLight13:q(`TableStyleLight13`,Fy,K.gray),TableStyleLight14:q(`TableStyleLight14`,Fy,K.orange),TableStyleLight15:q(`TableStyleLight15`,Iy,K.black),TableStyleLight16:q(`TableStyleLight16`,Iy,K.lightBlue),TableStyleLight17:q(`TableStyleLight17`,Iy,K.red),TableStyleLight18:q(`TableStyleLight18`,Iy,K.lightGreen),TableStyleLight19:q(`TableStyleLight19`,Iy,K.purple),TableStyleLight20:q(`TableStyleLight20`,Iy,K.gray),TableStyleLight21:q(`TableStyleLight21`,Iy,K.orange),TableStyleMedium1:q(`TableStyleMedium1`,Ly,K.black),TableStyleMedium2:q(`TableStyleMedium2`,Ly,K.lightBlue),TableStyleMedium3:q(`TableStyleMedium3`,Ly,K.red),TableStyleMedium4:q(`TableStyleMedium4`,Ly,K.lightGreen),TableStyleMedium5:q(`TableStyleMedium5`,Ly,K.purple),TableStyleMedium6:q(`TableStyleMedium6`,Ly,K.gray),TableStyleMedium7:q(`TableStyleMedium7`,Ly,K.orange),TableStyleMedium8:q(`TableStyleMedium8`,Ry,K.black),TableStyleMedium9:q(`TableStyleMedium9`,Ry,K.lightBlue),TableStyleMedium10:q(`TableStyleMedium10`,Ry,K.red),TableStyleMedium11:q(`TableStyleMedium11`,Ry,K.lightGreen),TableStyleMedium12:q(`TableStyleMedium12`,Ry,K.purple),TableStyleMedium13:q(`TableStyleMedium13`,Ry,K.gray),TableStyleMedium14:q(`TableStyleMedium14`,Ry,K.orange),TableStyleMedium15:{...Wy,displayName:`Black, TableStyleMedium15`},TableStyleMedium16:q(`TableStyleMedium16`,zy,K.lightBlue),TableStyleMedium17:q(`TableStyleMedium17`,zy,K.red),TableStyleMedium18:q(`TableStyleMedium18`,zy,K.lightGreen),TableStyleMedium19:q(`TableStyleMedium19`,zy,K.purple),TableStyleMedium20:q(`TableStyleMedium20`,zy,K.gray),TableStyleMedium21:q(`TableStyleMedium21`,zy,K.orange),TableStyleMedium22:q(`TableStyleMedium22`,By,K.black),TableStyleMedium23:q(`TableStyleMedium23`,By,K.lightBlue),TableStyleMedium24:q(`TableStyleMedium24`,By,K.red),TableStyleMedium25:q(`TableStyleMedium25`,By,K.lightGreen),TableStyleMedium26:q(`TableStyleMedium26`,By,K.purple),TableStyleMedium27:q(`TableStyleMedium27`,By,K.gray),TableStyleMedium28:q(`TableStyleMedium28`,By,K.orange),TableStyleDark1:{...Uy,displayName:`Black, TableStyleDark1`},TableStyleDark2:q(`TableStyleDark2`,Vy,K.lightBlue),TableStyleDark3:q(`TableStyleDark3`,Vy,K.red),TableStyleDark4:q(`TableStyleDark4`,Vy,K.lightGreen),TableStyleDark5:q(`TableStyleDark5`,Vy,K.purple),TableStyleDark6:q(`TableStyleDark6`,Vy,K.gray),TableStyleDark7:q(`TableStyleDark7`,Vy,K.orange),TableStyleDark8:q(`TableStyleDark8`,Hy,Ny.black),TableStyleDark9:q(`TableStyleDark9`,Hy,Ny.redBlue),TableStyleDark10:q(`TableStyleDark10`,Hy,Ny.purpleGreen),TableStyleDark11:q(`TableStyleDark11`,Hy,Ny.orangeBlue)},Ky={none:()=>({category:`none`,templateName:`none`,primaryColor:``,name:`none`}),lightColoredText:Py,lightAllBorders:Iy,mediumAllBorders:By,lightWithHeader:Fy,mediumBandedBorders:Ly,mediumMinimalBorders:zy,darkNoBorders:Hy,mediumWhiteBorders:Ry,dark:Vy};function qy(e,t,n){let r=My(``,n);return{...Ky[t](r),category:`custom`,displayName:e}}function Jy(e,t){for(let n of t.sheets){let t=e.sheets.find(e=>e.name===n.sheetName);if(t){t.tables||=[];for(let e of n.tables)t.tables.push({range:e.ref,config:Yy(e)});for(let e of n.pivotTables)t.tables.push({range:e.location.ref,config:Xy(e)})}}Zy(e,t.sheets)}function Yy(e){let t=e.style?.name||``;return{hasFilters:e.autoFilter!==void 0,numberOfHeaders:e.headerRowCount,totalRow:e.totalsRowCount>0,firstColumn:e.style?.showFirstColumn||!1,lastColumn:e.style?.showLastColumn||!1,bandedRows:e.style?.showRowStripes||!1,bandedColumns:e.style?.showColumnStripes||!1,styleId:Gy[t]?t:Ay.styleId}}function Xy(e){return{hasFilters:!1,numberOfHeaders:e.location.firstDataRow,totalRow:e.rowGrandTotals,firstColumn:!0,lastColumn:e.style?.showLastColumn||!1,bandedRows:e.style?.showRowStripes||!1,bandedColumns:e.style?.showColStripes||!1,styleId:Ay.styleId}}function Zy(e,t){let n=null;$y(e,t);let r=e.sheets;for(let e of r){let i=t.find(t=>rl(t.sheetName,e.name)).tables;if(!(!i||i.length===0)){n||=Qy(r);for(let t of i)for(let i in n){let a=r.find(e=>e.id===i);for(let r in n[i]){let o=n[i][r];for(let s=o.length-3;s>=0;s-=2){let o=n[i][r][s];if(!o.endsWith(t.name))continue;let c=n[i][r][s+1],l=eb(e.id===a.id?``:e.name+`!`,c,t,r);n[i][r][s+2]=o.slice(0,o.indexOf(t.name))+l+n[i][r][s+2],n[i][r].splice(s,2)}}}}}if(n)for(let e in n){let t=r.find(t=>t.id===e);for(let r in n[e]){let i=n[e][r];if(i.length===1){t.cells[r]=i[0];continue}let a=``;for(let e=0;e<i.length;e+=2)a+=i[e]+`[`+i[e+1]+`]`;a+=i[i.length-1],t.cells[r]=a}}}function Qy(e){let t={};for(let n of e)for(let e in n.cells){let r=n.cells[e];if(!r||!r.startsWith(`=`))continue;let i=r.indexOf(`[`);if(i===-1)continue;let a=[],o=r.slice(0,i),s=``,c=1,l=0,u=i;for(let e=i+1;e<r.length;e++){if(r[e]===`[`){c===0&&(o=r.slice(l,e),u=e),c++;continue}r[e]===`]`&&(c--,c===0&&(s=r.slice(u+1,e),a.push(o),a.push(s),l=e+1))}a.length&&(t[n.id]||(t[n.id]={}),a.push(r.slice(l)),t[n.id][e]=[...a])}return t}function $y(e,t){for(let n in e.namedRanges||{}){let r=e.namedRanges[n];if(r.endsWith(`]`))for(let i of e.sheets){let a=t.find(e=>rl(e.sheetName,i.name))?.tables;for(let t of a||[]){if(!t.name||!r.startsWith(t.name+`[`))continue;let a=eb(i.name+`!`,r.slice(t.name.length+1,r.length-1),t,`invalidCellXc`);e.namedRanges[n]=a}}}}function eb(e,t,n,r){t===``&&(t=`#Data`);let i=t.split(`,`).map(e=>e.trim()),a=hn(n.ref),o=[],s=[],c=[];for(let e of i)if(tb(e).startsWith(`#`)){let t=tb(e);switch(c.push(t),t){case`#All`:s.push(a.top,a.bottom);break;case`#Data`:let e=n.headerRowCount?a.top+n.headerRowCount:a.top,t=n.totalsRowCount?a.bottom-n.totalsRowCount:a.bottom;s.push(e,t);break;case`#This Row`:s.push(nn(r).row);break;case`#Headers`:if(!n.headerRowCount)return j.InvalidReference;s.push(a.top);break;case`#Totals`:if(!n.totalsRowCount)return j.InvalidReference;s.push(a.bottom);break}}else{let t=e.split(`:`).map(e=>e.trim()).map(tb);if(o.length)return j.InvalidReference;let r=n.cols.findIndex(e=>e.name===t[0]);if(r===-1)return j.InvalidReference;if(o.push(r+a.left),t[1]){let e=n.cols.findIndex(e=>e.name===t[1]);if(e===-1)return j.InvalidReference;o.push(e+a.left)}}if(!nb(c))return j.InvalidReference;if(s.length===0){let e=n.headerRowCount?a.top+n.headerRowCount:a.top,t=n.totalsRowCount?a.bottom-n.totalsRowCount:a.bottom;s.push(e,t)}return o.length===0&&o.push(a.left,a.right),e+bn({top:Math.min(...s),left:Math.min(...o),bottom:Math.max(...s),right:Math.max(...o)})}function tb(e){return e.startsWith(`[`)&&e.endsWith(`]`)?e.slice(1,e.length-1):e}function nb(e){return e.length<2?!0:e.length>2?!1:e.includes(`#Data`)&&e.includes(`#Totals`)?!0:!!(e.includes(`#Headers`)&&e.includes(`#Data`))}function rb(e,t,n){return{content:new XMLSerializer().serializeToString(e),path:t,contentType:n}}function ib(e){return String(e).replace(/\&/g,`&amp;`).replace(/\</g,`&lt;`).replace(/\>/g,`&gt;`).replace(/\"/g,`&quot;`).replace(/\'/g,`&apos;`).replace(/[\x00-\x08\x0B\x0C\x0E-\x1F]/g,``)}function J(e){return new Lg(e.map(([e,t])=>`${e}="${ib(t)}"`).join(` `))}function ab(e,t=`text/xml`){let n=new DOMParser().parseFromString(e.toString(),t),r=n.querySelector(`parsererror`);if(r){let t=r.innerHTML,n=parseInt(t.split(`:`)[0],10),i=e.toString().trim().split(`
32
+ `),a=i.slice(Math.max(n-3,0),Math.min(n+2,i.length)).join(`
33
+ `);throw Error(`XML string could not be parsed: ${t}\n${a}`)}return n}function ob(e){if(e)return{style:e.style,color:{rgb:e.color}}}function sb(e){let t=[{},...Object.values(e.borders).map(e=>({left:ob(e.left),right:ob(e.right),bottom:ob(e.bottom),top:ob(e.top)}))];return{relsFiles:[],sharedStrings:[],chartIds:[],imageIds:[],styles:[{fontId:0,fillId:0,numFmtId:0,borderId:0,alignment:{}}],fonts:[{size:xe,family:2,color:{rgb:`000000`},name:`Arial`}],fills:[{reservedAttribute:`none`},{reservedAttribute:`gray125`}],borders:t,numFmts:[],dxfs:[],namedRanges:[]}}function cb(e,t){return X`
34
+ <Override ContentType="${t}" PartName="${e}" />
35
+ `}function lb(e,t){return X`
36
+ <Default Extension="${e}" ContentType="${t}" />
37
+ `}function Y(e){return new Lg(e.join(`
38
+ `))}function X(e,...t){let n=[e[0]];for(let r=0;r<t.length;r++){let i=t[r]instanceof Lg?t[r]:ib(t[r]);n.push(i+e[r+1])}return new Lg(gt(n))}function ub(e){return e.replace(/NAMESPACE.*NAMESPACE(.*)/,`$1`)}function db(e){return e.replaceAll(/(<\/?)([a-zA-Z0-9]+):([a-zA-Z0-9]+)/g,`$1NAMESPACE$2NAMESPACE$3`)}function fb(e){return e.replaceAll(/([a-zA-Z0-9]+):([a-zA-Z0-9]+)/g,`NAMESPACE$1NAMESPACE$2`)}var pb=class{value;constructor(e){this.value=e}asString(){return yv(String(this.value))}asBool(){return this.value===`true`?!0:this.value===`false`?!1:!!Number(this.value)}asNum(){return Number(this.value)}},mb=class{rootFile;xlsxFileStructure;warningManager;relationships;currentFile=void 0;constructor(e,t,n){this.rootFile=e,this.currentFile=e.file.fileName,this.xlsxFileStructure=t,this.warningManager=n,this.relationships={},e.rels&&this.extractRelationships(e.rels).map(e=>{this.relationships[e.id]=e})}extractRelationships(e){return this.mapOnElements({parent:e.xml,query:`Relationship`},e=>({id:this.extractAttr(e,`Id`,{required:!0}).asString(),target:this.extractAttr(e,`Target`,{required:!0}).asString(),type:this.extractAttr(e,`Type`,{required:!0}).asString()}))}getListOfXMLFiles(){return Object.entries(this.xlsxFileStructure).filter(([e])=>e!==`images`).map(([e,t])=>t).flat().filter(w)}mapOnElements(e,t){let n=[],r=this.currentFile,i;if(i=e.children?this.querySelector(e.parent,e.query)?.children||[]:this.querySelectorAll(e.parent,e.query),i)for(let e of i)try{n.push(t(e))}catch(t){this.catchErrorOnElement(t,e)}return this.currentFile=r,n}catchErrorOnElement(e,t){let n=t?`Error when parsing an element <${t.tagName}> of file ${this.currentFile}, skip this element. \n${e.stack}`:`Error when parsing file ${this.currentFile}.`;this.warningManager.addParsingWarning([n,e.message].join(`
39
+ `))}extractAttr(e,t,n){let r=e.attributes[t];r||this.handleMissingValue(e,`attribute "${t}"`,n);let i=r?.value?r.value:n?.default;return i===void 0?void 0:new pb(i)}extractTextContent(e,t){if(t?.default!==void 0&&typeof t.default!=`string`)throw Error(`extractTextContent default value should be a string`);let n=e?.attributes[`xml:space`]?.value===`preserve`,r=e?.textContent;return(!e||r===null)&&this.handleMissingValue(e,`text content`,t),r&&=n?r:r.trim(),r?yv(r):t?.default}extractChildAttr(e,t,n,r){let i;i=typeof t==`number`?e.children[t]:this.querySelector(e,t),i||this.handleMissingValue(e,typeof t==`number`?`child at index ${t}`:`child <${t}>`,r);let a=i?this.extractAttr(i,n,r)?.asString():r?.default;return a===void 0?void 0:new pb(a)}extractChildTextContent(e,t,n){if(n?.default!==void 0&&typeof n.default!=`string`)throw Error(`extractTextContent default value should be a string`);let r=this.querySelector(e,t);return r||this.handleMissingValue(e,`child <${t}>`,n),r?this.extractTextContent(r,n):n?.default}handleMissingValue(e,t,n){if(n?.required)if(n?.default!==void 0)this.warningManager.addParsingWarning(`Missing required ${t} in element <${e.tagName}> of ${this.currentFile}, replacing it by the default value ${n.default}`);else throw Error(`Missing required ${t} in element <${e.tagName}> of ${this.currentFile}, and no default value was set`)}extractColor(e,t,n){if(!e)return n?{rgb:n}:void 0;let r=this.extractAttr(e,`theme`)?.asString(),i;if(r!==void 0){if(!t||!t.clrScheme)throw Error(`Color referencing a theme but no theme was provided`);i=this.getThemeColor(r,t.clrScheme)}else i=this.extractAttr(e,`rgb`)?.asString(),i=i===`FF000000`?void 0:i;return{rgb:i||n,auto:this.extractAttr(e,`auto`)?.asBool(),indexed:this.extractAttr(e,`indexed`)?.asNum(),tint:this.extractAttr(e,`tint`)?.asNum()}}getTargetXmlFile(e){if(!e)throw Error(`Undefined target file`);let t=this.processRelationshipTargetName(e.target),n=this.getListOfXMLFiles().find(e=>e.file.fileName.endsWith(t));if(!n||!n.file)throw Error(`Cannot find target file`);return n}getTargetImageFile(e){if(!e)throw Error(`Undefined target file`);let t=this.processRelationshipTargetName(e.target),n=this.xlsxFileStructure.images.find(e=>e.fileName.endsWith(t));if(!n)throw Error(`Cannot find target file`);return n}querySelector(e,t){let n=fb(t);return e.querySelector(n)}querySelectorAll(e,t){let n=fb(t);return e.querySelectorAll(n)}getThemeColor(e,t){switch(e){case`0`:return`FFFFFF`;case`1`:return`000000`;case`2`:return t[3].value;case`3`:return t[2].value;default:return t[e].value}}processRelationshipTargetName(e){return e.replace(/\.+\//,``)}},hb=class extends mb{getExternalBook(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`externalBook`},e=>({rId:this.extractAttr(e,`r:id`,{required:!0}).asString(),sheetNames:this.mapOnElements({parent:e,query:`sheetName`},e=>this.extractAttr(e,`val`,{required:!0}).asString()),datasets:this.extractExternalSheetData(e)}))[0]}extractExternalSheetData(e){return this.mapOnElements({parent:e,query:`sheetData`},e=>{let t=this.mapOnElements({parent:e,query:`cell`},e=>({xc:this.extractAttr(e,`r`,{required:!0}).asString(),value:this.extractChildTextContent(e,`v`,{required:!0})})),n={};for(let e of t)n[e.xc]=e.value;return{sheetId:this.extractAttr(e,`sheetId`,{required:!0}).asNum(),data:n}})}},gb=class extends mb{getTheme(){return{clrScheme:this.mapOnElements({query:`a:clrScheme`,parent:this.rootFile.file.xml,children:!0},e=>({name:e.tagName,value:this.extractChildAttr(e,0,`val`,{required:!0,default:Ud}).asString(),lastClr:this.extractChildAttr(e,0,`lastClr`,{default:Ud}).asString()}))}}getSharedStrings(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`si`},e=>this.mapOnElements({parent:e,query:`t`},e=>this.extractTextContent(e)||``).join(``))}getNamedRanges(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`definedNames definedName`},e=>({name:this.extractAttr(e,`name`,{required:!0}).asString(),value:this.extractTextContent(e)||``}))}},_b=class extends mb{theme;constructor(e,t,n,r){super(e,t,n),this.theme=r}extractConditionalFormattings(){let e=this.mapOnElements({parent:this.rootFile.file.xml,query:`worksheet > conditionalFormatting`},e=>({sqref:this.extractAttr(e,`sqref`,{required:!0}).asString().split(` `),pivot:this.extractAttr(e,`pivot`)?.asBool(),cfRules:this.extractCFRules(e,this.theme)}));return e.push(...this.mapOnElements({parent:this.rootFile.file.xml,query:`extLst x14:conditionalFormatting`},e=>({sqref:this.extractChildTextContent(e,`xm:sqref`,{required:!0}).split(` `),pivot:this.extractAttr(e,`xm:pivot`)?.asBool(),cfRules:this.extractCFRules(e,this.theme)}))),e}extractCFRules(e,t){return this.mapOnElements({parent:e,query:`cfRule, x14:cfRule`},e=>({type:this.extractAttr(e,`type`,{required:!0}).asString(),priority:this.extractAttr(e,`priority`,{required:!0}).asNum(),colorScale:this.extractCfColorScale(e,t),formula:this.extractCfFormula(e),iconSet:this.extractCfIconSet(e),dxfId:this.extractAttr(e,`dxfId`)?.asNum(),stopIfTrue:this.extractAttr(e,`stopIfTrue`)?.asBool(),aboveAverage:this.extractAttr(e,`aboveAverage`)?.asBool(),percent:this.extractAttr(e,`percent`)?.asBool(),bottom:this.extractAttr(e,`bottom`)?.asBool(),operator:this.extractAttr(e,`operator`)?.asString(),text:this.extractAttr(e,`text`)?.asString(),timePeriod:this.extractAttr(e,`timePeriod`)?.asString(),rank:this.extractAttr(e,`rank`)?.asNum(),stdDev:this.extractAttr(e,`stdDev`)?.asNum(),equalAverage:this.extractAttr(e,`equalAverage`)?.asBool(),dataBar:this.extractCfDataBar(e,t)}))}extractCfFormula(e){return this.mapOnElements({parent:e,query:`formula`},e=>this.extractTextContent(e,{required:!0}))}extractCfColorScale(e,t){let n=this.querySelector(e,`colorScale`);if(n)return{colors:this.mapOnElements({parent:n,query:`color`},e=>this.extractColor(e,t,`ffffff`)),cfvos:this.extractCFVos(n)}}extractCfDataBar(e,t){let n=this.querySelector(e,`dataBar`);if(n)return{color:this.extractColor(n.querySelector(`color`),t,`EFF7FF`),cfvos:this.extractCFVos(n)}}extractCfIconSet(e){let t=this.querySelector(e,`iconSet, x14:iconSet`);if(t)return{iconSet:this.extractAttr(t,`iconSet`,{default:`3TrafficLights1`}).asString(),showValue:this.extractAttr(t,`showValue`,{default:!0}).asBool(),percent:this.extractAttr(t,`percent`,{default:!0}).asBool(),reverse:this.extractAttr(t,`reverse`)?.asBool(),custom:this.extractAttr(t,`custom`)?.asBool(),cfvos:this.extractCFVos(t),cfIcons:this.extractCfIcons(t)}}extractCfIcons(e){let t=this.mapOnElements({parent:e,query:`cfIcon, x14:cfIcon`},e=>({iconSet:this.extractAttr(e,`iconSet`,{required:!0}).asString(),iconId:this.extractAttr(e,`iconId`,{required:!0}).asNum()}));return t.length===0?void 0:t}extractCFVos(e){return this.mapOnElements({parent:e,query:`cfvo, x14:cfvo`},e=>({type:this.extractAttr(e,`type`,{required:!0}).asString(),gte:this.extractAttr(e,`gte`,{default:!0})?.asBool(),value:e.attributes.val?this.extractAttr(e,`val`)?.asString():this.extractChildTextContent(e,`f, xm:f`)}))}},vb=class extends mb{theme;constructor(e,t,n,r){super(e,t,n),this.theme=r}extractDataValidations(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`worksheet > dataValidations > dataValidation`},e=>({type:this.extractAttr(e,`type`,{required:!0}).asString(),operator:this.extractAttr(e,`operator`,{default:`between`})?.asString(),sqref:this.extractAttr(e,`sqref`,{required:!0}).asString().split(` `),errorStyle:this.extractAttr(e,`errorStyle`)?.asString(),formula1:this.extractDataValidationFormula(e,1)[0],formula2:this.extractDataValidationFormula(e,2)[0],showErrorMessage:this.extractAttr(e,`showErrorMessage`)?.asBool(),errorTitle:this.extractAttr(e,`errorTitle`)?.asString(),error:this.extractAttr(e,`error`)?.asString(),showInputMessage:this.extractAttr(e,`showInputMessage`)?.asBool(),promptTitle:this.extractAttr(e,`promptTitle`)?.asString(),prompt:this.extractAttr(e,`prompt`)?.asString(),allowBlank:this.extractAttr(e,`allowBlank`)?.asBool()}))}extractDataValidationFormula(e,t){return this.mapOnElements({parent:e,query:`formula${t}`},e=>this.extractTextContent(e,{required:!0}))}},yb=class extends mb{extractChart(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`c:chartSpace`},e=>{let t=this.getChartType(e);if(!f_[t])throw Error(`Unsupported chart type ${t}`);if(f_[t]===`combo`)return this.extractComboChart(e);let n=this.mapOnElements({parent:e,query:`c:chart > c:title a:t`},e=>e.textContent||``).join(``),r=this.extractChildAttr(e,`c:grouping`,`val`,{default:`clustered`}).asString(),i=this.extractChildAttr(e,`c:barDir`,`val`,{default:`col`}).asString(),a=this.extractChildAttr(e,`c:holeSize`,`val`,{default:`0`}).asNum(),o=[...this.querySelectorAll(e,`c:chart c:showVal`)].some(e=>e.attributes.getNamedItem(`val`)?.value===`1`);return{title:{text:n},type:f_[t],dataSets:this.extractChartDatasets(this.querySelectorAll(e,`c:${t}`),t),labelRange:this.extractLabelRange(t,e),backgroundColor:this.extractChildAttr(e,`c:chartSpace > c:spPr a:srgbClr`,`val`,{default:`ffffff`}).asString(),legendPosition:d_[this.extractChildAttr(e,`c:legendPos`,`val`,{default:`none`}).asString()],stacked:r===`stacked`,fontColor:`000000`,horizontal:i===`bar`,isDoughnut:a>0,pieHolePercentage:a,showValues:o}})[0]}extractLabelRange(e,t){return e===`scatterChart`?this.extractChildTextContent(t,`c:ser c:strRef c:f`)||this.extractChildTextContent(t,`c:ser c:numRef c:f`):this.extractChildTextContent(t,`c:ser c:cat c:f`)}extractComboChart(e){let t=this.mapOnElements({parent:e,query:`c:title a:t`},e=>e.textContent||``).join(``),n=this.extractChildAttr(e,`c:grouping`,`val`,{default:`clustered`}).asString(),r=[...this.querySelectorAll(e,`c:chart c:showVal`)].some(e=>e.attributes.getNamedItem(`val`)?.value===`1`);return{title:{text:t},type:`combo`,dataSets:[...this.extractChartDatasets(this.querySelectorAll(e,`c:barChart`),`comboChart`),...this.extractChartDatasets(this.querySelectorAll(e,`c:lineChart`),`comboChart`)],labelRange:this.extractChildTextContent(e,`c:ser c:cat c:f`),backgroundColor:this.extractChildAttr(e,`c:chartSpace > c:spPr a:srgbClr`,`val`,{default:`ffffff`}).asString(),legendPosition:d_[this.extractChildAttr(e,`c:legendPos`,`val`,{default:`none`}).asString()],stacked:n===`stacked`,fontColor:`000000`,showValues:r}}extractChartDatasets(e,t){return Array.from(e).map(e=>t===`scatterChart`?this.extractScatterChartDatasets(e):this.mapOnElements({parent:e,query:`c:ser`},e=>{let t={},n=this.extractChildTextContent(e,`c:tx c:f`);if(n)t={reference:n};else{let n=this.extractChildTextContent(e,`c:tx c:v`);n&&(t={text:n})}let r=this.querySelectorAll(e,`c:spPr a:solidFill`),i=r.length?this.querySelector(r[0],`a:srgbClr`):void 0,a=i?i.getAttribute(`val`):void 0;return{label:t,range:this.extractChildTextContent(e,`c:val c:f`,{required:!0}),backgroundColor:a&&td(a)?`${ed(a)}`:void 0,trend:this.extractChartTrendline(e)}})).flat()}extractChartTrendline(e){let t=this.querySelector(e,`c:trendline`);if(!t)return;let n=this.extractChildAttr(t,`c:trendlineType`,`val`),r=this.extractChildAttr(t,`a:solidFill a:srgbClr`,`val`);return{type:n?n.asString():void 0,order:this.extractChildAttr(t,`c:order`,`val`)?.asNum(),window:this.extractChildAttr(t,`c:period`,`val`)?.asNum(),color:r&&td(r.asString())?`${ed(r.asString())}`:void 0}}extractScatterChartDatasets(e){return this.mapOnElements({parent:e,query:`c:ser`},e=>{let t={},n=this.querySelectorAll(e,`c:spPr a:solidFill a:srgbClr`),r=n.length?n[0].getAttribute(`val`):void 0,i=this.extractChildTextContent(e,`c:tx c:f`);if(i)t={reference:i};else{let n=this.extractChildTextContent(e,`c:tx c:v`);n&&(t={text:n})}return{label:t,range:this.extractChildTextContent(e,`c:yVal c:f`,{required:!0}),trend:this.extractChartTrendline(e),backgroundColor:r&&td(r)?`${ed(r)}`:void 0}})}getChartType(e){let t=this.querySelector(e,`c:plotArea`);if(!t)throw Error(`Missing plot area in the chart definition.`);let n;for(let e of t.children){let t=ub(e.tagName);Rg.some(e=>e===t)&&(n?n!==t&&(n=`comboChart`):n=t)}if(n)return n;throw Error(`Unknown chart type`)}};let bb=`oneCellAnchor`,xb=`twoCellAnchor`;var Sb=class extends mb{extractFigures(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`xdr:wsDr`,children:!0},e=>{let t=ub(e.tagName),n=this.extractFigureAnchorsByType(e,t),r=this.querySelector(e,`c:chart`),i=this.querySelector(e,`a:blip`);if(!r&&!i)throw Error(`Only chart and image figures are currently supported.`);return{anchors:n,data:r?this.extractChart(r):this.extractImage(e),figureSize:t===bb?this.extractFigureSizeFromSizeTag(e,`xdr:ext`):void 0}})}extractFigureAnchorsByType(e,t){switch(t){case bb:return[this.extractFigureAnchor(`xdr:from`,e)];case xb:return[this.extractFigureAnchor(`xdr:from`,e),this.extractFigureAnchor(`xdr:to`,e)];default:throw Error(`${t} is not supported for xlsx drawings. `)}}extractFigureSizeFromSizeTag(e,t){let n=this.querySelector(e,t);if(!n)throw Error(`Missing size element '${t}'`);return{cx:this.extractAttr(n,`cx`,{required:!0}).asNum(),cy:this.extractAttr(n,`cy`,{required:!0}).asNum()}}extractFigureAnchor(e,t){let n=this.querySelector(t,e);if(!n)throw Error(`Missing anchor element ${e}`);return{col:Number(this.extractChildTextContent(n,`xdr:col`,{required:!0})),colOffset:Number(this.extractChildTextContent(n,`xdr:colOff`,{required:!0})),row:Number(this.extractChildTextContent(n,`xdr:row`,{required:!0})),rowOffset:Number(this.extractChildTextContent(n,`xdr:rowOff`,{required:!0}))}}extractChart(e){let t=this.extractAttr(e,`r:id`,{required:!0}).asString(),n=new yb(this.getTargetXmlFile(this.relationships[t]),this.xlsxFileStructure,this.warningManager).extractChart();if(!n)throw Error(`Unable to extract chart definition`);return n}extractImage(e){let t=this.querySelector(e,`a:blip`),n=this.extractAttr(t,`r:embed`,{required:!0}).asString(),r=this.getTargetImageFile(this.relationships[n]);if(!r)throw Error(`Unable to extract image`);let i=r.fileName.split(`.`).at(-1),a=ub(e.tagName),o=a===xb?this.querySelector(e,`a:xfrm`):e,s=a===xb?`a:ext`:`xdr:ext`,c=this.extractFigureSizeFromSizeTag(o,s);return{imageSrc:r.imageSrc,mimetype:i?y_[i]:void 0,size:c}}},Cb=class extends mb{getPivotTable(){return this.mapOnElements({query:`:root`,parent:this.rootFile.file.xml},e=>({name:this.extractAttr(e,`name`,{required:!0}).asString(),rowGrandTotals:this.extractAttr(e,`rowGrandTotals`,{default:!0}).asBool(),location:this.extractPivotLocation(e),style:this.extractPivotStyleInfo(e)}))[0]}extractPivotLocation(e){return this.mapOnElements({query:`location`,parent:e},e=>({ref:this.extractAttr(e,`ref`,{required:!0}).asString(),firstHeaderRow:this.extractAttr(e,`firstHeaderRow`,{required:!0}).asNum(),firstDataRow:this.extractAttr(e,`firstDataRow`,{required:!0}).asNum(),firstDataCol:this.extractAttr(e,`firstDataCol`,{required:!0}).asNum()}))[0]}extractPivotStyleInfo(e){return this.mapOnElements({query:`pivotTableStyleInfo`,parent:e},e=>({name:this.extractAttr(e,`name`,{required:!0}).asString(),showRowHeaders:this.extractAttr(e,`showRowHeaders`,{required:!0}).asBool(),showColHeaders:this.extractAttr(e,`showColHeaders`,{required:!0}).asBool(),showRowStripes:this.extractAttr(e,`showRowStripes`,{required:!0}).asBool(),showColStripes:this.extractAttr(e,`showColStripes`,{required:!0}).asBool(),showLastColumn:this.extractAttr(e,`showLastColumn`)?.asBool()}))[0]}},wb=class extends mb{getTable(){return this.mapOnElements({query:`table`,parent:this.rootFile.file.xml},e=>({displayName:this.extractAttr(e,`displayName`,{required:!0}).asString(),name:this.extractAttr(e,`name`)?.asString(),id:this.extractAttr(e,`id`,{required:!0}).asString(),ref:this.extractAttr(e,`ref`,{required:!0}).asString(),headerRowCount:this.extractAttr(e,`headerRowCount`,{default:1}).asNum(),totalsRowCount:this.extractAttr(e,`totalsRowCount`,{default:0}).asNum(),cols:this.extractTableCols(e),style:this.extractTableStyleInfo(e),autoFilter:this.extractTableAutoFilter(e)}))[0]}extractTableCols(e){return this.mapOnElements({query:`tableColumn`,parent:e},e=>({id:this.extractAttr(e,`id`,{required:!0}).asString(),name:this.extractAttr(e,`name`,{required:!0}).asString(),colFormula:this.extractChildTextContent(e,`calculatedColumnFormula`)}))}extractTableStyleInfo(e){return this.mapOnElements({query:`tableStyleInfo`,parent:e},e=>({name:this.extractAttr(e,`name`)?.asString(),showFirstColumn:this.extractAttr(e,`showFirstColumn`)?.asBool(),showLastColumn:this.extractAttr(e,`showLastColumn`)?.asBool(),showRowStripes:this.extractAttr(e,`showRowStripes`)?.asBool(),showColumnStripes:this.extractAttr(e,`showColumnStripes`)?.asBool()}))[0]}extractTableAutoFilter(e){return this.mapOnElements({query:`autoFilter`,parent:e},e=>({columns:this.extractFilterColumns(e),zone:this.extractAttr(e,`ref`,{required:!0}).asString()}))[0]}extractFilterColumns(e){return this.mapOnElements({query:`tableColumn`,parent:e},t=>({colId:this.extractAttr(e,`colId`,{required:!0}).asNum(),hiddenButton:this.extractAttr(e,`hiddenButton`,{default:!1}).asBool(),filters:this.extractSimpleFilter(t)}))}extractSimpleFilter(e){return this.mapOnElements({query:`filter`,parent:e},e=>({val:this.extractAttr(e,`val`,{required:!0}).asString()}))}},Tb=class extends mb{theme;constructor(e,t,n,r){super(e,t,n),this.theme=r}getSheet(){return this.mapOnElements({query:`worksheet`,parent:this.rootFile.file.xml},e=>{let t=this.getSheetWorkbookInfo();return{sheetName:this.extractSheetName(),sheetViews:this.extractSheetViews(e),sheetFormat:this.extractSheetFormat(e),sheetProperties:this.extractSheetProperties(e),cols:this.extractCols(e),rows:this.extractRows(e),sharedFormulas:this.extractSharedFormulas(e),merges:this.extractMerges(e),cfs:this.extractConditionalFormats(),dataValidations:this.extractDataValidations(),figures:this.extractFigures(e),hyperlinks:this.extractHyperLinks(e),tables:this.extractTables(e),pivotTables:this.extractPivotTables(),isVisible:t.state===`visible`,isLocked:this.extractProtection(e)}})[0]}extractSheetViews(e){return this.mapOnElements({parent:e,query:`sheetView`},e=>{let t=this.querySelector(e,`pane`);return{tabSelected:this.extractAttr(e,`tabSelected`,{default:!1}).asBool(),showFormulas:this.extractAttr(e,`showFormulas`,{default:!1}).asBool(),showGridLines:this.extractAttr(e,`showGridLines`,{default:!0}).asBool(),showRowColHeaders:this.extractAttr(e,`showRowColHeaders`,{default:!0}).asBool(),pane:{xSplit:t?this.extractAttr(t,`xSplit`,{default:0}).asNum():0,ySplit:t?this.extractAttr(t,`ySplit`,{default:0}).asNum():0}}})}extractSheetName(){let e=_v(this.xlsxFileStructure.workbook.file.fileName,this.rootFile.file.fileName),t=this.extractRelationships(this.xlsxFileStructure.workbook.rels).find(t=>t.target===e).id;for(let e of this.querySelectorAll(this.xlsxFileStructure.workbook.file.xml,`sheet`))if(e.attributes[`r:id`].value===t)return e.attributes.name.value;throw Error(`Missing sheet name`)}getSheetWorkbookInfo(){let e=_v(this.xlsxFileStructure.workbook.file.fileName,this.rootFile.file.fileName),t=this.extractRelationships(this.xlsxFileStructure.workbook.rels).find(t=>t.target===e).id,n=this.mapOnElements({parent:this.xlsxFileStructure.workbook.file.xml,query:`sheet`},e=>({relationshipId:this.extractAttr(e,`r:id`,{required:!0}).asString(),sheetId:this.extractAttr(e,`sheetId`,{required:!0}).asString(),sheetName:this.extractAttr(e,`name`,{required:!0}).asString(),state:this.extractAttr(e,`state`,{default:`visible`}).asString()})).find(e=>e.relationshipId===t);if(!n)throw Error(`Cannot find corresponding workbook sheet`);return n}extractConditionalFormats(){return new _b(this.rootFile,this.xlsxFileStructure,this.warningManager,this.theme).extractConditionalFormattings()}extractDataValidations(){return new vb(this.rootFile,this.xlsxFileStructure,this.warningManager,this.theme).extractDataValidations()}extractFigures(e){return this.mapOnElements({parent:e,query:`drawing`},e=>{let t=this.extractAttr(e,`r:id`,{required:!0})?.asString();return new Sb(this.getTargetXmlFile(this.relationships[t]),this.xlsxFileStructure,this.warningManager).extractFigures()})[0]||[]}extractTables(e){return this.mapOnElements({query:`tablePart`,parent:e},e=>{let t=this.extractAttr(e,`r:id`,{required:!0})?.asString();return new wb(this.getTargetXmlFile(this.relationships[t]),this.xlsxFileStructure,this.warningManager).getTable()})}extractPivotTables(){try{return Object.values(this.relationships).filter(e=>e.type.endsWith(`pivotTable`)).map(e=>new Cb(this.getTargetXmlFile(e),this.xlsxFileStructure,this.warningManager).getPivotTable())}catch(e){return this.catchErrorOnElement(e),[]}}extractMerges(e){return this.mapOnElements({parent:e,query:`mergeCell`},e=>this.extractAttr(e,`ref`,{required:!0}).asString())}extractSheetFormat(e){let t=this.querySelector(e,`sheetFormatPr`);if(t)return{defaultColWidth:this.extractAttr(t,`defaultColWidth`,{default:`8.43`}).asNum(),defaultRowHeight:this.extractAttr(t,`defaultRowHeight`,{default:`12.75`}).asNum()}}extractSheetProperties(e){let t=this.querySelector(e,`sheetPr`);if(t)return{outlinePr:this.extractSheetOutlineProperties(t),tabColor:this.extractColor(this.querySelector(t,`tabColor`),this.theme)}}extractSheetOutlineProperties(e){let t=this.querySelector(e,`outlinePr`);if(t)return{summaryBelow:this.extractAttr(t,`summaryBelow`,{default:!0}).asBool(),summaryRight:this.extractAttr(t,`summaryRight`,{default:!0}).asBool()}}extractCols(e){return this.mapOnElements({parent:e,query:`cols col`},e=>({width:this.extractAttr(e,`width`)?.asNum(),customWidth:this.extractAttr(e,`customWidth`)?.asBool(),bestFit:this.extractAttr(e,`bestFit`)?.asBool(),hidden:this.extractAttr(e,`hidden`)?.asBool(),min:this.extractAttr(e,`min`,{required:!0})?.asNum(),max:this.extractAttr(e,`max`,{required:!0})?.asNum(),styleIndex:this.extractAttr(e,`style`)?.asNum(),outlineLevel:this.extractAttr(e,`outlineLevel`)?.asNum(),collapsed:this.extractAttr(e,`collapsed`)?.asBool()}))}extractRows(e){let t=new Set;return this.mapOnElements({parent:e,query:`sheetData row`},e=>({index:this.extractAttr(e,`r`,{required:!0})?.asNum(),cells:this.extractCells(e,t),height:this.extractAttr(e,`ht`)?.asNum(),customHeight:this.extractAttr(e,`customHeight`)?.asBool(),hidden:this.extractAttr(e,`hidden`)?.asBool(),styleIndex:this.extractAttr(e,`s`)?.asNum(),outlineLevel:this.extractAttr(e,`outlineLevel`)?.asNum(),collapsed:this.extractAttr(e,`collapsed`)?.asBool()}))}extractCells(e,t){return this.mapOnElements({parent:e,query:`c`},e=>{let n=this.extractAttr(e,`r`,{required:!0})?.asString(),r=this.extractCellFormula(e);if(r?.ref&&r.sharedIndex===void 0){let e=hn(r.ref);for(let{col:r,row:i}of In(e)){let e=E(r,i);e!==n&&t.add(e)}}let i=t.has(n);return{xc:n,styleIndex:this.extractAttr(e,`s`)?.asNum(),type:n_[this.extractAttr(e,`t`,{default:`n`})?.asString()],value:i?void 0:this.extractChildTextContent(e,`v`)??void 0,formula:i?void 0:r}})}extractCellFormula(e){let t=this.querySelector(e,`f`);if(!t)return;let n=this.extractTextContent(t),r=this.extractAttr(t,`si`)?.asNum(),i=this.extractAttr(t,`ref`)?.asString();if(!((n===void 0||n.trim()===``)&&r===void 0))return{content:n,sharedIndex:r,ref:i}}extractHyperLinks(e){return this.mapOnElements({parent:e,query:`hyperlink`},e=>{let t=this.extractAttr(e,`r:id`)?.asString();return{xc:this.extractAttr(e,`ref`,{required:!0})?.asString(),location:this.extractAttr(e,`location`)?.asString(),display:this.extractAttr(e,`display`)?.asString(),relTarget:t?this.relationships[t].target:void 0}})}extractSharedFormulas(e){let t=this.querySelectorAll(e,`f[si][ref]`),n={};for(let e of t){let t=this.extractAttr(e,`si`,{required:!0}).asNum();n[t]=this.extractTextContent(e,{required:!0})}let r=[];for(let e=0;e<Object.keys(n).length;e++)n[e]?r.push(n[e]):(this.warningManager.addParsingWarning(`Missing shared formula ${e}, replacing it by empty formula`),r.push(``));return r}extractProtection(e){let t=this.querySelector(e,`sheetProtection`);return t?this.extractAttr(t,`sheet`,{default:!1}).asBool():!1}},Eb=class extends mb{theme;constructor(e,t,n){super(e.styles,e,t),this.theme=n}getNumFormats(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`numFmt`},e=>this.extractNumFormats(e))}extractNumFormats(e){return{id:this.extractAttr(e,`numFmtId`,{required:!0}).asNum(),format:this.extractAttr(e,`formatCode`,{required:!0,default:``}).asString()}}getFonts(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`font`},e=>this.extractFont(e))}extractFont(e){let t=this.extractChildAttr(e,`name`,`val`,{default:`Arial`}).asString(),n=this.extractChildAttr(e,`sz`,`val`,{default:xe.toString()}).asNum(),r=this.extractColor(this.querySelector(e,`color`),this.theme),i=this.querySelector(e,`i`)||void 0,a=i&&i.attributes.val?.value!==`0`,o=this.querySelector(e,`b`)||void 0,s=o&&o.attributes.val?.value!==`0`,c=this.querySelector(e,`strike`)||void 0,l=c&&c.attributes.val?.value!==`0`,u=this.querySelector(e,`u`)||void 0;return{name:t,size:n,color:r,italic:a,bold:s,underline:u&&u.attributes.val?.value!==`none`,strike:l}}getFills(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`fill`},e=>this.extractFill(e))}extractFill(e){let t=e.children[0];return t.tagName===`patternFill`?{patternType:t.attributes.patternType?.value,bgColor:this.extractColor(this.querySelector(t,`bgColor`),this.theme),fgColor:this.extractColor(this.querySelector(t,`fgColor`),this.theme)}:{patternType:`solid`,fgColor:this.extractColor(this.querySelectorAll(t,`color`)[1],this.theme)}}getBorders(){return this.mapOnElements({parent:this.rootFile.file.xml,query:`border`},e=>this.extractBorder(e))}extractBorder(e){let t={left:this.extractSingleBorder(e,`left`,this.theme),right:this.extractSingleBorder(e,`right`,this.theme),top:this.extractSingleBorder(e,`top`,this.theme),bottom:this.extractSingleBorder(e,`bottom`,this.theme),diagonal:this.extractSingleBorder(e,`diagonal`,this.theme)};return t.diagonal&&(t.diagonalUp=this.extractAttr(e,`diagonalUp`)?.asBool(),t.diagonalDown=this.extractAttr(e,`diagonalDown`)?.asBool()),t}extractSingleBorder(e,t,n){let r=this.querySelector(e,t);if(!(!r||!r.attributes.style))return{style:this.extractAttr(r,`style`,{required:!0,default:`thin`}).asString(),color:this.extractColor(r.children[0],n,`000000`)}}extractAlignment(e){return{horizontal:this.extractAttr(e,`horizontal`,{default:`general`}).asString(),vertical:this.extractAttr(e,`vertical`,{default:`bottom`}).asString(),textRotation:this.extractAttr(e,`textRotation`)?.asNum(),wrapText:this.extractAttr(e,`wrapText`)?.asBool(),indent:this.extractAttr(e,`indent`)?.asNum(),relativeIndent:this.extractAttr(e,`relativeIndent`)?.asNum(),justifyLastLine:this.extractAttr(e,`justifyLastLine`)?.asBool(),shrinkToFit:this.extractAttr(e,`shrinkToFit`)?.asBool(),readingOrder:this.extractAttr(e,`readingOrder`)?.asNum()}}getDxfs(){return this.mapOnElements({query:`dxf`,parent:this.rootFile.file.xml},e=>{let t=this.querySelector(e,`font`),n=this.querySelector(e,`fill`),r=this.querySelector(e,`border`),i=this.querySelector(e,`numFmt`),a=this.querySelector(e,`alignment`);return{font:t?this.extractFont(t):void 0,fill:n?this.extractFill(n):void 0,numFmt:i?this.extractNumFormats(i):void 0,alignment:a?this.extractAlignment(a):void 0,border:r?this.extractBorder(r):void 0}})}getStyles(){return this.mapOnElements({query:`cellXfs xf`,parent:this.rootFile.file.xml},e=>{let t=this.querySelector(e,`alignment`);return{fontId:this.extractAttr(e,`fontId`,{required:!0,default:0}).asNum(),fillId:this.extractAttr(e,`fillId`,{required:!0,default:0}).asNum(),borderId:this.extractAttr(e,`borderId`,{required:!0,default:0}).asNum(),numFmtId:this.extractAttr(e,`numFmtId`,{required:!0,default:0}).asNum(),alignment:t?this.extractAlignment(t):void 0}})}};function Db(e,t){return Ob(kb(e,t),t)}function Ob(e,t){let n=[];for(let r of e){let e=Ab(r,t);n.push({file:{fileName:r,xml:t[r]},rels:e?{fileName:e,xml:t[e]}:void 0})}return n}function kb(e,t){let n=t[`[Content_Types].xml`].querySelectorAll(`Override[ContentType="${e}"]`),r=[];for(let e of n){let t=e?.attributes.PartName.value;r.push(t.substring(1))}return r}function Ab(e,t){if(e===`[Content_Types].xml`)return`_rels/.rels`;let n=``,r=e.split(`/`);for(let e=0;e<r.length-1;e++)n+=r[e]+`/`;return n+=`_rels/`,n+=r[r.length-1]+`.rels`,t[n]||(n=void 0),n}var jb=class{warningManager;xmls;images;constructor(e){this.warningManager=new q_,this.xmls={},this.images=[];for(let t of Object.keys(e))if(t.endsWith(`.xml`)||t.endsWith(`.rels`)){let n=db(e[t]);this.xmls[t]=ab(new Lg(n))}else t.includes(`media/image`)&&this.images.push({fileName:t,imageSrc:e[t].imageSrc})}convertXlsx(){let e=this.getXlsxData();return this.convertImportedData(e)}getXlsxData(){let e=this.buildXlsxFileStructure(),t=e.theme?new gb(e.theme,e,this.warningManager).getTheme():void 0,n=e.sharedStrings?new gb(e.sharedStrings,e,this.warningManager).getSharedStrings():[],r=new gb(e.workbook,e,this.warningManager).getNamedRanges(),i=e.sheets.sort((e,t)=>e.file.fileName.localeCompare(t.file.fileName,void 0,{numeric:!0})).map(n=>new Tb(n,e,this.warningManager,t).getSheet()),a=e.externalLinks.map(t=>new hb(t,e,this.warningManager).getExternalBook()),o=new Eb(e,this.warningManager,t);return{fonts:o.getFonts(),fills:o.getFills(),borders:o.getBorders(),dxfs:o.getDxfs(),numFmts:o.getNumFormats(),styles:o.getStyles(),sheets:i,sharedStrings:n,externalBooks:a,chartIds:[],imageIds:[],namedRanges:r}}buildXlsxFileStructure(){let e={sheets:Db(Jd.sheet,this.xmls),workbook:Db(Jd.workbook,this.xmls)[0]||Db(Jd.macroEnabledWorkbook,this.xmls)[0]||Db(Jd.templateWorkbook,this.xmls)[0]||Db(Jd.macroEnabledTemplateWorkbook,this.xmls)[0]||Db(Jd.excelAddInWorkbook,this.xmls)[0],styles:Db(Jd.styles,this.xmls)[0],sharedStrings:Db(Jd.sharedStrings,this.xmls)[0],theme:Db(Jd.themes,this.xmls)[0],charts:Db(Jd.chart,this.xmls),figures:Db(Jd.drawing,this.xmls),tables:Db(Jd.table,this.xmls),pivots:Db(Jd.pivot,this.xmls),externalLinks:Db(Jd.externalLink,this.xmls),images:this.images};if(!e.workbook.rels)throw Error(A(`Cannot find workbook relations file`));return e}convertImportedData(e){let t={version:`18.4.2`,sheets:yy(e,this.warningManager),styles:Nv(e,this.warningManager),formats:Fv(e,this.warningManager),borders:jv(e,this.warningManager),namedRanges:Ug(e,this.warningManager),revisionId:we};return Jy(t,e),Object.keys(e.styles).map(t=>{e.styles[t]=Ct(e.styles[t])}),t}};function Mb(e){let t=!1,n=!0;return ya(e,e=>(t=!0,n&&=e,n)),{foundBoolean:t,result:n}}function Nb(e){let t=!1,n=!1;return ya(e,e=>(t=!0,n||=e,!n)),{foundBoolean:t,result:n}}function Pb(e,t){return fa(e,(e,t)=>e+t,0,t)}function Fb(e){return da(e,(e,t)=>Aa(t)?e.add(t?.value):e,new Set).size}function Ib(e,t){if(!e)throw new M(t)}function Lb(e,t=A(`Evaluation of function [[FUNCTION_NAME]] caused a divide by zero error.`)){if(e===0)throw new Vi(t)}function Rb(e){return e.length===1||e[0].length===1}function zb(...e){if(e.every(Ue)){let t=e[0].length,n=e[0][0].length;for(let r of e)if(r.length!==t||r[0].length!==n)return!1;return!0}return!e.some(e=>Array.isArray(e)&&(e.length!==1||e[0].length!==1))}function Bb(e){return e.length===e[0].length}let Vb=e=>A(`The function [[FUNCTION_NAME]] expects a number value to be greater than or equal to 1, but receives %s.`,e);function Hb(e){let t=Array(e);for(let n=0;n<e;n++)t[n]=Array(e).fill(0),t[n][n]=1;return t}function Ub(e){if(e.length<1||e[0].length<1)throw Error(`invertMatrix: an empty matrix cannot be inverted.`);if(e.length!==e[0].length)throw Error(`invertMatrix: only square matrices are invertible`);let t=1,n=e.length,r=Hb(n),i=e.map(e=>e.slice());for(let e=0;e<n;e++){let a=i[e][e];if(a===0){for(let a=e+1;a<n;a++)if(i[e][a]!==0){Wb(i,e,a),Wb(r,e,a),t*=-1;break}if(a=i[e][e],a===0)return{determinant:0}}for(let t=0;t<n;t++)i[t][e]=i[t][e]/a,r[t][e]=r[t][e]/a;t*=a;for(let t=0;t<n;t++){if(t===e)continue;let a=i[e][t];for(let o=0;o<n;o++)i[o][t]-=a*i[o][e],r[o][t]-=a*r[o][e]}}return{inverted:r,determinant:t}}function Wb(e,t,n){for(let r=0;r<e.length;r++){let i=e[r][t];e[r][t]=e[r][n],e[r][n]=i}}function Gb(e,t){if(e.length<1||t.length<1)throw Error(`multiplyMatrices: empty matrices cannot be multiplied.`);if(e.length!==t[0].length)throw Error(`multiplyMatrices: incompatible matrices size.`);let n=e[0].length,r=t.length,i=e.length,a=Array(r);for(let o=0;o<r;o++){a[o]=Array(n);for(let r=0;r<n;r++){let n=0;for(let a=0;a<i;a++)n+=e[a][r]*t[o][a];a[o][r]=n}}return a}function Kb(e){if(!Ue(e))return e;if(!qb(e))throw Error(`The value should be a scalar or a 1x1 matrix`);return e[0][0]}function qb(e){return e.length===1&&e[0].length===1}function Jb(e){return Ue(e)&&!qb(e)}function Yb(...e){let t=e[0].length;e.forEach((e,n)=>Ib(e.length===t,A(`[[FUNCTION_NAME]] has mismatched dimensions for argument %s (%s vs %s).`,n.toString(),t.toString(),e.length.toString())))}function Xb(e,t){let n=0,r=fa(e,(e,t)=>(n+=1,e+t),0,t);return Lb(n),r/n}function Zb(e,t){let n=[];la(e,e=>{n.push(e.value)},t),n.sort((e,t)=>e-t);let r=n.length;if(r===0)return;let i=Math.floor(r/2);return r%2==0?(n[i-1]+n[i])/2:n[i]}function Qb(e,t){let n=0;for(let r of e)if(Ue(r))for(let e of r)for(let t of e)typeof t.value==`number`&&(n+=1);else{let e=r?.value;!Gi(e)&&(typeof e!=`string`||Si(e,t)||Kr(e,t))&&(n+=1)}return n}function $b(e){return da(e,(e,t)=>t!==void 0&&t.value!==null?e+1:e,0)}function ex(e,t){let n={value:-1/0};return la(e,e=>{e.value>=n.value&&(n=e)},t),n.value===-1/0?{value:0}:n}function tx(e,t){let n={value:1/0};return la(e,e=>{e.value<=n.value&&(n=e)},t),n.value===1/0?{value:0}:n}function nx(e,t,n){let r=e[0].length?e:[C(1,t.flat().length+1)],i=r.length,a=n[0].length?n:r;return a=a.length===i?_a(a):a,{_X:r,_newX:a}}function rx(e,t,n=!0,r=!1){let i=t.flat(),a=i.length,{_X:o}=nx(e,t,[[]]);o=o.length===a?_a(o):o.slice(),Yb(o[0],i);let s=o.length,c=a-s-+!!n,l=[i],u=_a(o.reverse()),d=[];for(let e=0;e<s;e++)if(d.push(0),n){for(let t of o[e])d[e]+=t;d[e]/=a}let f=0;if(n){for(let e of i)f+=e;f/=a}let p=u.map(e=>e.map((e,t)=>e-d[t]));n&&u.forEach(e=>e.push(1));let m=ax(u,l);if(n||m.push([0]),!r)return m;let{inverted:h}=Ub(Gb(p,_a(p)));if(h===void 0)throw new M(A(`Matrix is not invertible`));let g=0,_=0;for(let e=0;e<a;e++){let t=i[e]-f,n=0;for(let t=0;t<s;t++){let r=p[e][t];n+=r*m[t][0]}let r=t-n;g+=r*r,_+=n*n}let v=Math.sqrt(g/c),y=_/(_+g),b=_/s/(g/c),ee=[];for(let e=0;e<s;e++)ee.push(v*Math.sqrt(h[e][e]));if(n){let e=Gb(h,[d]),t=Gb(_a([d]),e);ee.push(v*Math.sqrt(t[0][0]+1/i.length))}let te=[[m[0][0],ee[0],y,b,_],[m[1][0],ee[1],v,c,g]];for(let e=2;e<s;e++)te.push([m[e][0],ee[e],``,``,``]);return n?te.push([m[s][0],ee[s],``,``,``]):te.push([0,``,``,``,``]),te}function ix(e,t,n,r){Yb(t,e),Ib(n>=1,A(`Function [[FUNCTION_NAME]] A regression of order less than 1 cannot be possible.`));let i=[e],a=t.map(e=>C(0,n).map(t=>e**+(n-t)));r&&a.forEach(e=>e.push(1));let o=ax(a,i);return r||o.push([0]),o}function ax(e,t){let{inverted:n}=Ub(Gb(e,_a(e)));if(n===void 0)throw new M(A(`Matrix is not invertible`));return _a(Gb(n,Gb(e,t)))}function ox(e,t,n){return e.reduce((e,r,i)=>e+r*t**+(n-i),0)}function sx(e){return e.map(e=>e.map(e=>Math.exp(e)))}function cx(e){return e.map(e=>e.map(e=>Math.log(e)))}function lx(e,t,n,r){let{_X:i,_newX:a}=nx(t,e,n),o=rx(i,e,r,!1),s=o.length-1,c=a.map(e=>{let t=0;for(let n=0;n<s;n++)t+=o[n][0]*e[s-n-1];return t+=o[s][0],[t]});return c.length===n.length?c:_a(c)}function ux(e,t,n=2){let r=[];for(let e=0;e<n-1;e++)r.push({x:t[e],y:NaN});for(let i=0;i<=e.length-n;i++){let a=0;for(let t=i;t<i+n;t++)a+=e[t];r.push({x:t[i+n-1],y:a/n})}return r}function dx(e){let[t,n]=e.split(`/`);return Number(n)*100+Number(t)}let fx=new B;function px(e){return fx.get(e)}let mx={normalizeFunctionValue(e){return N(e,L)},toValueAndFormat(e,t){return{value:N(e,L),format:`dd mmm yyyy`}},toFunctionValue(e){let t=aa(e,L);return`DATE(${t.getFullYear()},${t.getMonth()+1},${t.getDate()})`}},hx={normalizeFunctionValue(e){let t=N(e,L);if(t<1||t>31)throw new M(A(`%s is not a valid day of month (it should be a number between 1 and 31)`,t));return t},toValueAndFormat(e){return{value:N(e,L),format:`0`}},toFunctionValue(e){return`${e}`}},gx={normalizeFunctionValue(e){let t=N(e,L);if(t<1||t>7)throw new M(A(`%s is not a valid day of week (it should be a number between 1 and 7)`,t));return t},toValueAndFormat(e,t){return{value:lo[(e-1+(t||L).weekStart)%7].toString(),format:`@`}},toFunctionValue(e){return`${e}`}},_x={normalizeFunctionValue(e){let t=N(e,L);if(t<0||t>53)throw new M(A(`%s is not a valid week (it should be a number between 0 and 53)`,t));return t},toValueAndFormat(e){return{value:N(e,L),format:`0`}},toFunctionValue(e){return`${e}`}},vx={normalizeFunctionValue(e){let t=N(e,L);if(t<1||t>12)throw new M(A(`%s is not a valid month (it should be a number between 1 and 12)`,t));return t},toValueAndFormat(e){return{value:co[N(e,L)-1].toString(),format:`@`}},toFunctionValue(e){return`${e}`}},yx={normalizeFunctionValue(e){return R(N(e,L),{locale:L,format:`mm/yyyy`})},toValueAndFormat(e){return{value:N(e,L),format:`mmmm yyyy`}},toFunctionValue(e){let t=aa(e,L);return`DATE(${t.getFullYear()},${t.getMonth()+1},1)`},toComparableValue(e){return dx(e)}},bx={normalizeFunctionValue(e){let t=N(e,L);if(t<1||t>4)throw new M(A(`%s is not a valid quarter (it should be a number between 1 and 4)`,t));return t},toValueAndFormat(e){return{value:A(`Q%(quarter_number)s`,{quarter_number:e}),format:`@`}},toFunctionValue(e){return`${e}`}},xx={normalizeFunctionValue(e){let t=N(e,L);return t>3e3?aa(t,L).getFullYear():t},toValueAndFormat(e){return{value:N(e,L),format:`0`}},toFunctionValue(e){return`${e}`}},Sx={normalizeFunctionValue(e){let t=N(e,L);if(t<0||t>23)throw new M(A(`%s is not a valid hour (it should be a number between 0 and 23)`,t));return t},toValueAndFormat(e){return{value:A(`%(hour_number)sh`,{hour_number:e}),format:`@`}},toFunctionValue(e){return`${e}`}},Cx={normalizeFunctionValue(e){let t=N(e,L);if(t<0||t>59)throw new M(A(`%s is not a valid minute (it should be a number between 0 and 59)`,t));return t},toValueAndFormat(e){return{value:A(`%(minute_number)s'`,{minute_number:e}),format:`@`}},toFunctionValue(e){return`${e}`}},wx={normalizeFunctionValue(e){let t=N(e,L);if(t<0||t>59)throw new M(A(`%s is not a valid second (it should be a number between 0 and 59)`,t));return t},toValueAndFormat(e){return{value:A(`%(second_number)s''`,{second_number:e}),format:`@`}},toFunctionValue(e){return`${e}`}};function Tx(e){return{normalizeFunctionValue(t){return t===null?null:e.normalizeFunctionValue(t)},toValueAndFormat(t,n){return t===null?{value:A(`(Undefined)`)}:e.toValueAndFormat(t,n)},toFunctionValue(t){return t===null?`false`:e.toFunctionValue(t)},toComparableValue(t){if(t!==null)return e.toComparableValue?.(t)}}}fx.add(`day`,Tx(mx)).add(`year`,Tx(xx)).add(`day_of_month`,Tx(hx)).add(`iso_week_number`,Tx(_x)).add(`month_number`,Tx(vx)).add(`month`,Tx(yx)).add(`quarter_number`,Tx(bx)).add(`day_of_week`,Tx(gx)).add(`hour_number`,Tx(Sx)).add(`minute_number`,Tx(Cx)).add(`second_number`,Tx(wx));let Ex={displayTotals:!0,displayColumnHeaders:!0,displayMeasuresRow:!0,numberOfRows:Number.MAX_VALUE,numberOfColumns:Number.MAX_VALUE,tableStyleId:`None`,bandedRows:!1,bandedColumns:!1,hasFilters:!1,tabularForm:!1},Dx={count:A(`Count`),count_distinct:A(`Count Distinct`),bool_and:A(`Boolean And`),bool_or:A(`Boolean Or`),max:A(`Maximum`),min:A(`Minimum`),avg:A(`Average`),sum:A(`Sum`)},Ox=[`max`,`min`,`avg`,`sum`,`count_distinct`,`count`],kx={integer:Ox,char:Ox,datetime:Ox,boolean:[`count_distinct`,`count`,`bool_and`,`bool_or`]},Ax={};for(let e in kx){Ax[e]={};for(let t of kx[e])Ax[e][t]=Dx[t]}let jx={count:e=>({value:$b([e]),format:`0`}),count_distinct:e=>({value:Fb([e]),format:`0`}),bool_and:e=>({value:Mb([e]).result}),bool_or:e=>({value:Nb([e]).result}),max:(e,t)=>ex([e],t),min:(e,t)=>tx([e],t),avg:(e,t)=>({value:Xb([e],t),format:Wi(e)}),sum:(e,t)=>({value:Pb([e],t),format:Wi(e)})};function Mx(e){let t=Object.keys(e);if(!t.length)return 0;let n=t.map(e=>parseInt(e,10));return Math.max(...n)}let Nx={year:A(`Year`),quarter:A(`Quarter & Year`),month:A(`Month & Year`),week:A(`Week & Year`),day:A(`Day`),quarter_number:A(`Quarter`),month_number:A(`Month`),iso_week_number:A(`Week`),day_of_month:A(`Day of Month`),day_of_week:A(`Day of Week`),hour_number:A(`Hour`),minute_number:A(`Minute`),second_number:A(`Second`)},Px=[`date`,`datetime`];function Fx(e){let[t,n]=e.split(`:`);return n?{fieldName:t,granularity:n}:{fieldName:t}}function Ix(e){return Px.includes(e.type)}function Lx(e,t,n){let r=[e];n&&r.push(`"${n}"`);for(let{field:e,value:n,type:i}of t){if(e===`measure`){r.push(`"measure"`,`"${n}"`);continue}let{granularity:t}=Fx(e),a=Hx(n,{type:i,granularity:t});r.push(`"${e}"`,a)}return r}function Rx(e,t){let n=0,r=0,i=t.columns.map(e=>e.nameWithGranularity),a=t.rows.map(e=>e.nameWithGranularity);for(;e[n]!==void 0&&e[n]===a[r];)n++,r++;for(r=0;e[n]!==void 0&&e[n]===i[r];)n++,r++;return e.length===n}function zx(e,t){switch(t.type){case`HEADER`:return`=PIVOT.HEADER(${Lx(e,t.domain).join(`,`)})`;case`VALUE`:return`=PIVOT.VALUE(${Lx(e,t.domain,t.measure).join(`,`)})`;case`MEASURE_HEADER`:return`=PIVOT.HEADER(${Lx(e,[...t.domain,{field:`measure`,value:t.measure,type:`char`}]).join(`,`)})`}return``}function Bx(e,t){if(t===null||t===`null`)return null;let n=typeof t==`object`?t.value:t;if(Gi(n))return n;if(e.type===`custom`)return oa(t)??null;let r=typeof t==`boolean`?P(t).toLocaleLowerCase():P(t);if(r===`null`)return null;if(!Wx.contains(e.type))throw new M(A(`Field %(field)s is not supported because of its type (%(type)s)`,{field:e.displayName,type:e.type}));return r.toLowerCase()===`false`?!1:Wx.get(e.type)(r,e.granularity)}function Vx(e,t){return px(t??`month`).normalizeFunctionValue(e)}function Hx(e,t){return e===null?`"null"`:Gx.contains(t.type)?Gx.get(t.type)(e,t.granularity):`"${e}"`}function Ux(e,t){return px(t??`month`).toFunctionValue(e)}let Wx=new B;Wx.add(`date`,Vx).add(`datetime`,Vx).add(`integer`,e=>N(e,L)).add(`boolean`,e=>F(e)).add(`char`,e=>P(e)).add(`custom`,e=>e);let Gx=new B;Gx.add(`date`,Ux).add(`datetime`,Ux).add(`integer`,e=>`${N(e,L)}`).add(`boolean`,e=>F(e)?`TRUE`:`FALSE`).add(`char`,e=>`"${P(e).replace(/"/g,`\\"`)}"`).add(`custom`,e=>typeof e==`string`?`"${e}"`:String(e));function Kx(e){return e.displayName+(e.granularity?` (${Nx[e.granularity]})`:``)}function qx(e,t){return e.length===0?t:{...t,format:(t.format||`@`)+`* `}}function Jx(e,t){try{if(!t.getMeasure(e.measure))return!1;let n=t.definition.columns;for(let r=0;r<e.domain.length;r++){if(n[r].nameWithGranularity!==e.domain[r].field)return!1;let i=t.getPossibleFieldValues(n[r]).map(e=>e.value);if(!i.includes(e.domain[r].value)&&!(e.domain[r].value===null&&i.includes(``)))return!1}return!0}catch{return!1}}function Yx(e,t){return Ht(e,t.groups.map(e=>e.name),{compute:(e,t)=>`${e}${t}`,start:2})}function Xx(e,t){return Ht(e,Object.values(t).map(e=>[e?.name,e?.string]).flat().filter(w),{compute:(e,t)=>`${e}${t}`,start:2})}function Zx(e,t){let n={};for(let r of Object.values(e.customFields||{}))t[r.parentField]&&(n[r.name]={type:`custom`,isCustomField:!0,name:r.name,string:r.name,customGroups:r.groups,parentField:r.parentField});return n}function Qx(e,t){t.groups=t.groups.filter(t=>!t.values.some(t=>e.includes(t)))}function $x(e,t,n){let r=e.rows.some(e=>e.fieldName===t)?e.rows:e.columns,i=r.findIndex(e=>e.fieldName===t);return i===-1||r.some(e=>e.fieldName===n)||r.splice(i,0,{fieldName:n}),e}function eS(e,t,n){return Object.values(e.customFields||{}).find(e=>e.parentField===t.name)||{parentField:t.name,name:Xx(t.string,n),groups:[]}}function tS(e,t){let n=t.model.getters.getPivotCellFromPosition(e),r=t.model.getters.getPivotIdFromPosition(e);if(!r||n.type!==`HEADER`)return;let i=t.model.getters.getPivotCoreDefinition(r),a=i.collapsedDomains?.[n.dimension]?[...i.collapsedDomains[n.dimension]]:[],o=a.findIndex(e=>T(e,n.domain));o===-1?a.push(n.domain):a.splice(o,1);let s=i.collapsedDomains?{...i.collapsedDomains}:{COL:[],ROW:[]};s[n.dimension]=a,t.model.dispatch(`UPDATE_PIVOT`,{pivotId:r,pivot:{...i,collapsedDomains:s}})}function nS(e,t,n,r,i,a,o){let s=e.style;return{numberOfRows:t===void 0?s?.numberOfRows??Ex.numberOfRows:N(t,o),numberOfColumns:i===void 0?s?.numberOfColumns??Ex.numberOfColumns:N(i,o),displayTotals:n===void 0?s?.displayTotals??Ex.displayTotals:F(n),displayColumnHeaders:r===void 0?s?.displayColumnHeaders??Ex.displayColumnHeaders:F(r),displayMeasuresRow:a===void 0?s?.displayMeasuresRow??Ex.displayMeasuresRow:F(a),tableStyleId:s?.tableStyleId||Ex.tableStyleId,bandedRows:s?.bandedRows??Ex.bandedRows,bandedColumns:s?.bandedColumns??Ex.bandedColumns,hasFilters:s?.hasFilters??Ex.hasFilters,tabularForm:s?.tabularForm??Ex.tabularForm}}function rS(e,t=`>`){let n=e.indexOf(t),r=e.lastIndexOf(t);return!e||!n||n===r?e:`${e.slice(0,n+1)} … ${e.slice(r)}`}function iS(e,t,n){return n.map(n=>{if(n.id===e.id)return t;if(!n.computedBy||e.id===t.id)return n;let r=Hs(n.computedBy.formula).map(n=>n.type===`SYMBOL`&&n.value===Ze(e.id)?Ze(t.id):n.value).join(``);return{...n,computedBy:{...n.computedBy,formula:r}}})}let aS=[`line`,`bar`,`pie`,`scorecard`,`gauge`,`scatter`,`bubble`,`combo`,`waterfall`,`pyramid`,`radar`,`geo`,`funnel`,`sunburst`,`treemap`,`calendar`];function oS(e){let t=Rd[e];return t===void 0?void 0:{minColor:t[0],midColor:t.length===3?t[1]:void 0,maxColor:t[t.length-1]}}function sS(e){let t=fc(e),n=[];return{text:``.concat(...t.map(e=>{if(e.type===`REFERENCE`&&vs.test(e.value)){let t=e.value.trim();return n.includes(t)||n.push(t),`|${n.indexOf(t)}|`}else return e.value})),dependencies:n}}let cS={am_ET:7,ar_001:6,ar_SY:6,az_AZ:1,eu_ES:1,be_BY:1,bn_IN:1,bs_BA:1,bg_BG:1,ca_ES:1,zh_CN:7,zh_HK:7,zh_TW:7,hr_HR:1,cs_CZ:1,da_DK:1,nl_BE:1,nl_NL:1,en_AU:7,en_CA:7,en_GB:1,en_IN:7,en_NZ:7,et_EE:1,fi_FI:1,fr_BE:1,fr_CA:7,fr_CH:1,fr_FR:1,gl_ES:1,ka_GE:1,de_DE:1,de_CH:1,el_GR:1,gu_IN:7,he_IL:7,hi_IN:7,hu_HU:1,id_ID:7,it_IT:1,ja_JP:7,kab_DZ:6,km_KH:7,ko_KP:1,ko_KR:7,lo_LA:7,lv_LV:1,lt_LT:1,lb_LU:1,mk_MK:1,ml_IN:1,mn_MN:7,ms_MY:1,nb_NO:1,fa_IR:6,pl_PL:1,pt_AO:1,pt_BR:7,pt_PT:1,ro_RO:1,ru_RU:1,sr_RS:7,"sr@latin":7,sk_SK:1,sl_SI:1,es_AR:7,es_BO:1,es_CL:1,es_CO:7,es_CR:1,es_DO:1,es_EC:1,es_GT:7,es_MX:7,es_PA:7,es_PE:7,es_PY:7,es_UY:1,es_VE:7,sw:1,sv_SE:1,th_TH:7,tl_PH:1,tr_TR:1,uk_UA:1,vi_VN:1,sq_AL:1,te_IN:7,en_US:7,my_MM:7,es_ES:1,es_419:1},lS=new hr;lS.add(`0.1`,{migrate(e){return e.sheets&&e.sheets[0]&&(e.activeSheet=e.sheets[0].name),e}}).add(`0.2`,{migrate(e){if(e.sheets&&e.sheets.length)for(let t of e.sheets)t.id=t.id||t.name;return e}}).add(`0.3`,{migrate(e){return e.sheets&&e.activeSheet&&(e.activeSheet=e.sheets.find(t=>t.name===e.activeSheet).id),e}}).add(`0.4`,{migrate(e){for(let t of e.sheets||[])t.figures=t.figures||[];return e}}).add(`0.5`,{migrate(e){for(let t of e.sheets||[])for(let e in t.cells||[]){let n=t.cells[e];n.content&&n.content.startsWith(`=`)&&(n.formula=sS(n.content))}return e}}).add(`0.6`,{migrate(e){for(let t of e.sheets||[])for(let e in t.figures||[]){let{dataSets:n,...r}=t.figures[e].data,i=[];for(let e of n)if(e.labelCell){let t=hn(e.dataRange),n=e.labelCell+`:`+E(t.right,t.bottom);i.push(n)}else i.push(e.dataRange);r.dataSetsHaveTitle=!!n[0].labelCell,r.dataSets=i,t.figures[e].data=r}return e}}).add(`0.7`,{migrate(e){let t=[];for(let n of e.sheets||[]){if(!n.name)continue;let e=n.name,r=Ht(Qe(e,`_`),t,{compute:(e,t)=>`${e}${t}`});n.name=r,t.push(r);let i=t=>{if(t===void 0)return t;let n=t.replace(e,r),i=t;for(;i!==n;)i=n,n=i.replace(e,r);return i};for(let e in n.cells){let t=n.cells[e];t.formula&&(t.formula.dependencies=t.formula.dependencies.map(i))}for(let e of n.figures||[])if(e.tag===`chart`){let t=e.data.dataSets.map(i),n=i(e.data.labelRange);e.data={...e.data,dataSets:t,labelRange:n}}for(let e of n.conditionalFormats||[]){e.ranges=e.ranges.map(i);for(let t of[`minimum`,`maximum`,`midpoint`,`upperInflectionPoint`,`lowerInflectionPoint`])e.rule[t]?.type===`formula`&&(e.rule[t].value=i(e.rule[t].value))}}return e}}).add(`0.8`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[])e.data.background=`#FFFFFF`,e.data.verticalAxisPosition=`left`,e.data.legendPosition=`top`,e.data.stacked=!1;return e}}).add(`0.9`,{migrate(e){for(let t of e.sheets||[])for(let e in t.cells||[]){let n=t.cells[e];if(n.formula){let{text:e,dependencies:t}=n.formula;for(let[n,r]of Object.entries(t)){let t=`\\|${n}\\|`;e=e.replace(new RegExp(t,`g`),r)}n.content=e,delete n.formula}}return e}}).add(`0.10`,{migrate(e){let t={};for(let n of e.sheets||[])for(let e in n.cells||[]){let r=n.cells[e];r.format&&=Kg(r.format,t)}return e.formats=t,e}}).add(`15.4`,{migrate(e){for(let t of e.sheets||[])t.isVisible=!0;return e}}).add(`15.4.1`,{migrate(e){return uS(e)}}).add(`16.3`,{migrate(e){for(let t in e.borders){let n=e.borders[t];for(let e in n)Array.isArray(n[e])&&(n[e]={style:n[e][0],color:n[e][1]})}return e}}).add(`16.4`,{migrate(e){return e.settings||={},e.settings.locale||(e.settings.locale=L),e}}).add(`16.4.1`,{migrate(e){return uS(e)}}).add(`17.2`,{migrate(e){for(let t of e.sheets||[])t.tables=t.tables||t.filterTables||[],delete t.filterTables;return e}}).add(`17.3`,{migrate(e){return e.pivots||={},e.pivotNextId||=Mx(e.pivots)+1,e}}).add(`17.4`,{migrate(e){for(let t of e.sheets||[])for(let e in t.figures||[]){let n=t.figures[e];`title`in n.data&&typeof n.data.title==`string`&&(n.data.title={text:n.data.title});let r=n.data.type;if(![`line`,`bar`,`pie`,`scatter`,`waterfall`,`combo`].includes(r))continue;let{dataSets:i,...a}=t.figures[e].data;a.dataSets=i.map(e=>({dataRange:e})),t.figures[e].data=a}return e}}).add(`18.0`,{migrate(e){return e}}).add(`18.0.1`,{migrate(e){for(let t of Object.values(e.pivots||{}))t.measures=t.measures.map(e=>({id:e.name,fieldName:e.name,aggregator:e.aggregator})),t.columns=t.columns.map(e=>({fieldName:e.name,order:e.order,granularity:e.granularity})),t.rows=t.rows.map(e=>({fieldName:e.name,order:e.order,granularity:e.granularity}));return e}}).add(`18.0.2`,{migrate(e){let t=e.settings?.locale;return t&&(t.weekStart=cS[t.code]||1),e}}).add(`18.0.3`,{migrate(e){for(let t of e.sheets||[]){t.styles={},t.formats={},t.borders={};for(let e in t.cells)t.styles[e]=t.cells[e].style,t.formats[e]=t.cells[e].format,t.borders[e]=t.cells[e].border,delete t.cells[e].style,delete t.cells[e].format,delete t.cells[e].border}return e}}).add(`18.0.4`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[]){if(e.tag!==`chart`||e.data.type!==`gauge`)continue;let t=e.data;t?.sectionRule?.lowerInflectionPoint&&(t.sectionRule.lowerInflectionPoint.operator=`<=`),t?.sectionRule?.upperInflectionPoint&&(t.sectionRule.upperInflectionPoint.operator=`<=`)}return e}}).add(`18.1`,{migrate(e){for(let t of e.sheets||[])for(let e of t.tables||[])e.config||={...Ay,hasFilters:!0};return e}}).add(`18.1.1`,{migrate(e){for(let t of e.sheets||[])for(let e in t.cells){let n=t.cells[e];n&&(t.cells[e]=n.content)}return e}}).add(`18.2`,{migrate(e){return e}}).add(`18.3`,{migrate(e){if(!e.pivots)return e;for(let t of Object.values(e.pivots))t.sortedColumn&&(t.measures.map(e=>e.id).includes(t.sortedColumn.measure)||delete t.sortedColumn);return e}}).add(`18.3.1`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[]){let t=e;e.offset={x:t.x||0,y:t.y||0},e.col=0,e.row=0,delete e.x,delete e.y}return e}}).add(`18.4.1`,{migrate(e){let t={textContains:`containsText`,textNotContains:`notContainsText`,textIs:`isEqualText`,textIsEmail:`isEmail`,textIsLink:`isLink`},n={BeginsWith:`beginsWithText`,Between:`isBetween`,ContainsText:`containsText`,EndsWith:`endsWithText`,Equal:`isEqual`,GreaterThan:`isGreaterThan`,GreaterThanOrEqual:`isGreaterOrEqualTo`,IsEmpty:`isEmpty`,IsNotEmpty:`isNotEmpty`,LessThan:`isLessThan`,LessThanOrEqual:`isLessOrEqualTo`,NotBetween:`isNotBetween`,NotContains:`notContainsText`,NotEqual:`isNotEqual`};for(let t of e.sheets||[])for(let e of t.conditionalFormats||[])e.rule.type===`CellIsRule`&&(e.rule.operator=n[e.rule.operator]);for(let n of e.sheets||[])for(let e of n.dataValidationRules||[])e.criterion.type in t&&(e.criterion.type=t[e.criterion.type]);return e}}).add(`18.4.2`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[]){if(e.tag!==`chart`||e.data.type!==`scorecard`)continue;let t=e.data;t.baselineDescr&&={text:t.baselineDescr}}return e}}).add(`18.4.3`,{migrate(e){if(!e.pivots)return e;for(let t in e.pivots){let n=e.pivots[t];if(n.sortedColumn){let e=n.measures.find(e=>e.fieldName===n.sortedColumn?.measure);e&&(n.sortedColumn.measure=e.id)}}return e}}).add(`18.5.1`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[])e.tag===`chart`&&(e.data.chartId=e.id);return e}}).add(`19.1.0`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[])if(e.tag===`chart`&&e.data.type===`geo`&&`colorScale`in e.data&&typeof e.data.colorScale==`string`&&(e.data.colorScale=oS(e.data.colorScale)),e.tag===`carousel`)for(let t of Object.values(e.data.chartDefinitions)||[])t.type===`geo`&&`colorScale`in t&&typeof t.colorScale==`string`&&(t.colorScale=oS(t.colorScale));return e}}).add(`19.3.1`,{migrate(e){for(let t of e.sheets||[])for(let e of t.figures||[])if(e.tag===`chart`&&!(`humanize`in e.data))e.data.humanize=!0;else if(e.tag===`carousel`)for(let t in e.data.chartDefinitions){let n=e.data.chartDefinitions[t];`humanize`in n||(n.humanize=!0)}return e}}).add(`19.3.2`,{migrate(e){function t(e){if(!(`dataSets`in e))return e;e={...e};let t={};return e.dataSource={type:`range`,dataSetsHaveTitle:e.dataSetsHaveTitle,labelRange:e.labelRange,dataSets:e.dataSets.map((e,n)=>{let r=n.toString(),i=e.dataRange;return delete e.dataRange,Object.keys(e).length&&(t[r]={...e}),{dataRange:i,dataSetId:r}})},delete e.dataSetsHaveTitle,delete e.labelRange,delete e.dataSets,e.dataSetStyles=t,e}for(let n of e.sheets||[])for(let e of n.figures||[])if(e.tag===`chart`&&`dataSets`in e.data)e.data=t(e.data);else if(e.tag===`carousel`)for(let n in e.data.chartDefinitions){let r=e.data.chartDefinitions[n];e.data.chartDefinitions[n]=t(r)}return e}});function uS(e){for(let t of e.sheets||[]){let e=[];for(let n of t.filterTables||[]){let t=hn(n.range),r=e.findIndex(e=>kn(e,t));r===-1?e.push(t):e[r]=t}t.filterTables=e.map(e=>({range:bn(e)}))}return e}function dS(){return fS().at(-1)}function fS(){return lS.getKeys().sort(_S)}let pS=`Sheet1`;function mS(e,t){if(!e)return kS();console.debug(`### Loading data ###`);let n=performance.now();if(e[`[Content_Types].xml`]){let n=new jb(e);if(e=n.convertXlsx(),t)for(let e of n.warningManager.warnings.sort())console.warn(e)}return`version`in e&&(gS(e)&&(e.version=hS[e.version]),e.version!==dS()&&(console.debug(`Migrating data from version`,e.version),e=vS(e))),e=yS(e),console.debug(`Data loaded in`,performance.now()-n,`ms`),console.debug(`###`),e}let hS={25:`18.2`,24:`18.1.1`,23:`18.1`,22:`18.0.4`,21:`18.0.3`,20:`18.0.2`,19:`18.0.1`,18:`18.0`,17:`17.4`,16:`17.3`,15:`17.2`,"14.5":`16.4.1`,14:`16.4`,13:`16.3`,"12.5":`15.4.1`,12:`15.4`,11:`0.10`,10:`0.9`,9:`0.8`,8:`0.7`,7:`0.6`,6:`0.5`,5:`0.4`,4:`0.3`,3:`0.2`,2:`0.1`,1:`0`};function gS(e){return typeof e.version==`number`}function _S(e,t){let n=e.split(`.`).map(Number),r=t.split(`.`).map(Number);for(let e=0;e<Math.max(n.length,r.length);e++){let t=n[e]||0,i=r[e]||0;if(t>i)return 1;if(t<i)return-1}return 0}function vS(e){let t=performance.now(),n=fS(),r=n.findIndex(t=>_S(t,e.version)>=0);if(r===-1)throw Error(`Data version ${e.version} postdates the current version of o-spreadsheet (version ${dS()}). It cannot be loaded.`);for(let t=r+1;t<n.length;t++){let r=n[t];e=lS.get(r).migrate(e)}return console.debug(`Data migrated in`,performance.now()-t,`ms`),e}function yS(e){return e=bS(e),e=xS(e),e}function bS(e){if(e.uniqueFigureIds)return e;let t=new Set,n=new Set;for(let r of e.sheets||[])for(let e of r.figures||[])t.has(e.id)&&(e.id+=G.smallUuid()),t.add(e.id),e.tag===`chart`&&(n.has(e.data?.chartId)&&(e.data.chartId+=G.smallUuid()),n.add(e.data?.chartId));return e.uniqueFigureIds=!0,e}function xS(e){let t=Object.assign(kS(),e,{version:dS()});return t.sheets=t.sheets?t.sheets.map((e,t)=>Object.assign(OS(`Sheet${t+1}`,`Sheet${t+1}`),e)):[],t.sheets.length===0&&t.sheets.push(OS(pS,`Sheet1`)),yg(t.settings.locale)||(t.settings.locale=L),t}function SS(e,t){return t=CS(e,t),t=wS(t,`SORT_CELLS`),t=wS(t,`SET_DECIMAL`),t=TS(e,t),t=ES(e,t),t=DS(e,t),t}function CS(e,t){if(Object.keys(e).length!==0)return t;let n=[],r=[],i=e=>{if(e.type===`CREATE_SHEET`)n.push(e.sheetId);else if(`sheetId`in e&&!n.includes(e.sheetId))return{...e,sheetId:pS};return e};for(let e of t)e.type===`REMOTE_REVISION`?r.push({...e,commands:e.commands.map(i)}):r.push(e);return r}function wS(e,t){let n=[];for(let r of e)r.type===`REMOTE_REVISION`?n.push({...r,commands:r.commands.filter(e=>e.type!==t)}):n.push(r);return n}function TS(e,t){if(!e.version||_S(String(e.version),`18.5.1`)>=0)return t;let n=[],r={};e=mS(x(e));for(let t of e.sheets||[])t.figures?.forEach(e=>{e.tag===`chart`&&(r[e.id]=e.data)});for(let e of t)if(e.type===`REMOTE_REVISION`){let t=[];for(let n of e.commands){let e=n;switch(n.type){case`CREATE_CHART`:r[n.chartId]=n.definition;break;case`UPDATE_CHART`:if(!r[n.chartId]){console.log(`Fix chart definition: chart with id ${n.chartId} not found.`);continue}let t={...r[n.chartId],...n.definition};e={...n,definition:t},delete t.chartId,r[n.chartId]=t;break}t.push(e)}n.push({...e,commands:t})}else n.push(e);return n}function ES(e,t){let n={};for(let t of e.sheets||[])t.figures?.forEach(e=>{n[e.id]=e.offset});for(let e of t)if(e.type===`REMOTE_REVISION`)for(let t of e.commands)switch(t.type){case`UPDATE_FIGURE`:t.offset&&(t.offset.x===void 0&&(t.offset.x=n[t.figureId]||0),t.offset.y===void 0&&(t.offset.y=n[t.figureId]||0),n[t.figureId]=n);break;case`CREATE_IMAGE`:case`CREATE_CHART`:case`CREATE_FIGURE`:n[t.figureId]=t.offset;break}return t}function DS(e,t){let n={};for(let t of e.sheets||[])n[t.id]=t.name;let r=[];for(let e of t)if(e.type===`REMOTE_REVISION`){let t=[];for(let r of e.commands){switch(r.type){case`DUPLICATE_SHEET`:r.sheetNameTo=r.sheetNameTo??tl(n[r.sheetId],Object.values(n));break;case`CREATE_SHEET`:n[r.sheetId]=r.name||el(Object.values(n));break;case`RENAME_SHEET`:n[r.sheetId]=r.newName||el(Object.values(n));break}t.push(r)}r.push({...e,commands:t})}else r.push(e);return t}function OS(e,t){return{id:e,name:t,colNumber:26,rowNumber:100,cells:{},styles:{},formats:{},borders:{},cols:{},rows:{},merges:[],conditionalFormats:[],dataValidationRules:[],figures:[],tables:[],isVisible:!0}}function kS(e=`Sheet1`){return{version:dS(),sheets:[OS(pS,e)],styles:{},formats:{},borders:{},revisionId:we,uniqueFigureIds:!0,settings:{locale:L},pivots:{},pivotNextId:1,customTableStyles:{},namedRanges:{}}}function AS(e,t){return{...OS(e,t),charts:[],images:[],cellValues:{}}}function jS(){return{...kS(),sheets:[AS(pS,`Sheet1`)]}}let MS=(e,t)=>{e.model.dispatch(t.type).isCancelledBecause(H.WillRemoveExistingMerge)&&e.raiseError(dg)},NS={wrongPasteSelection:A(`This operation is not allowed with multiple selections.`),willRemoveExistingMerge:mg.Errors.WillRemoveExistingMerge,wrongFigurePasteOption:A(`Cannot do a special paste of a figure.`),frozenPaneOverlap:A(`This operation is not allowed due to an overlapping frozen pane.`)};function PS(e,t){t.isSuccessful||(t.reasons.includes(H.WrongPasteSelection)?e.raiseError(NS.wrongPasteSelection):t.reasons.includes(H.WillRemoveExistingMerge)?e.raiseError(NS.willRemoveExistingMerge):t.reasons.includes(H.WrongFigurePasteOption)?e.raiseError(NS.wrongFigurePasteOption):t.reasons.includes(H.FrozenPaneOverlap)&&e.raiseError(NS.frozenPaneOverlap))}function FS(e,t,n){PS(e,e.model.dispatch(`PASTE`,{target:t,pasteOption:n}))}async function IS(e,t,n,r){if(n.data&&n.data.version!==dS()&&e.notifyUser({type:`warning`,text:A(`You copied content from a different version of the application. Only text and image content will be pasted.`),sticky:!1}),n.imageBlob){let t=n;try{t.imageData=await e.imageProvider?.uploadFile(n.imageBlob)}catch(t){let n=A(`An error occurred while uploading the image. %s`,t.message);console.error(t),e.raiseError(n)}delete n.imageBlob}PS(e,e.model.dispatch(`PASTE_FROM_OS_CLIPBOARD`,{target:t,clipboardContent:n,pasteOption:r}))}let LS=new B;var RS=class extends fr{mutators=[`open`,`close`];persistentPopover;hoveredCell=this.get(ag);handle(e){switch(e.type){case`ACTIVATE_SHEET`:this.close()}}open({col:e,row:t},n){let r=this.getters.getActiveSheetId();LS.contains(n)&&(this.persistentPopover={col:e,row:t,sheetId:r,type:n})}close(){if(!this.persistentPopover)return`noStateChange`;this.persistentPopover=void 0}get persistentCellPopover(){return this.persistentPopover&&{isOpen:!0,...this.persistentPopover}||{isOpen:!1}}get isOpen(){return this.persistentPopover!==void 0}get cellPopover(){let e=this.getters.getActiveSheetId();if(this.persistentPopover&&this.getters.isVisibleInViewport(this.persistentPopover)){let e=this.getters.getMainCellPosition(this.persistentPopover),t=LS.get(this.persistentPopover.type).onOpen?.(e,this.getters);return t?.isOpen?{...t,anchorRect:this.computePopoverAnchorRect(this.persistentPopover)}:{isOpen:!1}}let{col:t,row:n}=this.hoveredCell;if(t===void 0||n===void 0||!this.getters.isVisibleInViewport({sheetId:e,col:t,row:n}))return{isOpen:!1};let r=this.getters.getMainCellPosition({sheetId:e,col:t,row:n}),i=LS.getAll().map(e=>e.onHover?.(r,this.getters)).find(e=>e?.isOpen);return i?.isOpen?{...i,anchorRect:this.computePopoverAnchorRect(r)}:{isOpen:!1}}computePopoverAnchorRect({col:e,row:t}){let n=this.getters.getActiveSheetId(),r=this.getters.getMerge({sheetId:n,col:e,row:t});return r?this.getters.getVisibleRect(r):this.getters.getVisibleRect(D({col:e,row:t}))}};let zS=function(e){return e.PlainText=`text/plain`,e.Html=`text/html`,e.Image=`image`,e}({}),BS=[`image/avif`,`image/bmp`,`image/gif`,`image/vnd.microsoft.icon`,`image/jpeg`,`image/png`,`image/tiff`,`image/webp`];function VS(e,t){let n=new Set(t.map(e=>e.left)),r=new Set(t.map(e=>e.right)),i=new Set(t.map(e=>e.top)),a=new Set(t.map(e=>e.bottom)),o=i.size===1&&a.size===1||n.size===1&&r.size===1?Vn(t):[t[t.length-1]],s=o.map(e=>In(e)).flat();return{sheetId:e,zones:t,clippedZones:o,columnsIndexes:[...new Set(s.map(e=>e.col))].sort((e,t)=>e-t),rowsIndexes:[...new Set(s.map(e=>e.row))].sort((e,t)=>e-t)}}function HS(e,t,n){let r=Math.max(e.right-t+1,e.left),i=Math.max(e.bottom-n+1,e.top),a=[];for(let o=e.left;o<=r;o+=t)for(let r=e.top;r<=i;r+=n)a.push({left:o,top:r,bottom:r+n-1,right:o+t-1});return a}function US(e,t){if(!t.length||!t[0].length)return e;let n=t[0].length,r=t.length;return e.map(e=>HS(e,n,r)).flat()}function WS(e){let t;e[zS.Html]&&(t=KS(new DOMParser().parseFromString(e[zS.Html],`text/html`)));let n=e[zS.PlainText]||``,r;if(!n.trim()){for(let t of BS)if(e[t]){r=e[t];break}}return{text:n,data:t,imageBlob:r}}function GS(e){return e?.match(/<div data-osheet-clipboard-id=(['"])([^'"]+)\1/)?.[2]}function KS(e){if([...e.documentElement.attributes].some(e=>e.value.includes(`microsoft`)))return;let t=e.querySelector(`div`)?.getAttribute(`data-osheet-clipboard`);return t&&JSON.parse(t)}let qS=(e,t,n,r)=>{e.forEach(({handlerName:e,handler:i})=>{let a=t[e];a&&i.paste(n,a,r)})};function JS(e,t,n,r,i){let a,o=[],s={sheetId:e,zones:t};for(let{handlerName:c,handler:l}of r){let r=n[c];if(!r)continue;let u=l.getPasteTarget(e,t,r,i);u.figureId&&(s.figureId=u.figureId);for(let e of u.zones){if(o.push(e),a===void 0){a=e;continue}a=Tn(a,e)}}return{target:s,zone:a,selectedZones:o}}let YS=(e,t,n)=>{let r={col:t[0].left,row:t[0].top};e.getBackToDefault(),e.selectZone({cell:r,zone:Tn(...n)},{scrollIntoView:!1})},XS={type:`bar`,title:{},dataSource:{type:`range`,dataSets:[],dataSetsHaveTitle:!1},dataSetStyles:{},legendPosition:`none`,stacked:!1,humanize:!0},ZS={type:`line`,title:{},dataSource:{type:`range`,dataSets:[],dataSetsHaveTitle:!1},dataSetStyles:{},legendPosition:`none`,stacked:!1,cumulative:!1,labelsAsText:!1,humanize:!0};function QS(e,t){return bn(e.getUnboundedZone(e.getActiveSheetId(),t))}function $S(e){if(!e.length)return`empty`;let t={number:0,text:0,date:0,percentage:0},n=0,r=`empty`;for(let i of e){let e=null;if(i.type===V.number?e=i.format&&To(i.format)?`date`:i.format?.includes(`%`)?`percentage`:`number`:i.type===V.text&&(e=`text`),e){let i=++t[e];i>n&&(n=i,r=e)}}return r}function eC(e,t){let n=[];for(let r of Qn(e)){let e=t.getEvaluatedCellsInZone(t.getActiveSheetId(),r);n.push({zone:r,type:$S(e)})}return n}function tC(e,t){let n=e.getEvaluatedCellsInZone(e.getActiveSheetId(),t).map(e=>e.value?.toString().trim()||``).filter(e=>e);return{uniqueCount:new Set(n).size,totalCount:n.length}}function nC(e,t){let n=e.getEvaluatedCell({sheetId:e.getActiveSheetId(),col:t.zone.left,row:t.zone.top});return![V.number,V.empty].includes(n.type)}function rC(e,t){let{type:n,zone:r}=e,i=t.getActiveSheetId(),a=nC(t,e),o=QS(t,r),s=t.getEvaluatedCell({sheetId:i,col:r.left,row:r.top});if(Kn(r)===1)return oC(r,t);switch(n){case`percentage`:return{type:`pie`,title:a?{text:String(s.value)}:{},dataSource:{type:`range`,dataSets:[{dataRange:o,dataSetId:`0`}],dataSetsHaveTitle:a},dataSetStyles:{},legendPosition:`none`};case`text`:let e=t.getEvaluatedCellsInZone(i,r).reduce((e,t)=>t.value===s.value?e+1:e,0),n=s.value!==null&&e===1;return{type:`pie`,title:n?{text:String(s.value)}:{},dataSource:{type:`range`,dataSets:[{dataRange:o,dataSetId:`0`}],labelRange:o,dataSetsHaveTitle:n},dataSetStyles:{},aggregated:!0,legendPosition:`top`};case`date`:return{...ZS,type:`line`,title:a?{text:String(s.value)}:{},dataSource:{type:`range`,dataSets:[{dataRange:o,dataSetId:`0`}],dataSetsHaveTitle:a},dataSetStyles:{}}}return{...XS,title:a?{text:String(s.value)}:{},dataSource:{type:`range`,dataSets:[{dataRange:o,dataSetId:`0`}],dataSetsHaveTitle:a},dataSetStyles:{}}}function iC(e,t){if(e.length!==2)throw Error(`buildTwoColumnChart expects exactly two columns`);if(e[1].type===`percentage`)return{type:`pie`,title:{},dataSource:{type:`range`,dataSets:[{dataRange:QS(t,e[1].zone),dataSetId:`0`}],labelRange:QS(t,e[0].zone),dataSetsHaveTitle:nC(t,e[1])},dataSetStyles:{},aggregated:!0,legendPosition:`none`};if(e[0].type===`number`&&e[1].type===`number`)return{type:`scatter`,title:{},dataSource:{type:`range`,dataSets:[{dataRange:QS(t,e[1].zone),dataSetId:`0`}],labelRange:QS(t,e[0].zone),dataSetsHaveTitle:nC(t,e[1])},dataSetStyles:{},labelsAsText:!1,legendPosition:`none`};if(e[0].type===`date`&&e[1].type===`number`)return{...ZS,type:`line`,dataSource:{type:`range`,dataSets:[{dataRange:QS(t,e[1].zone),dataSetId:`0`}],labelRange:QS(t,e[0].zone),dataSetsHaveTitle:nC(t,e[0])},dataSetStyles:{}};if(e[0].type===`text`&&e[1].type===`number`){let n=e[0],r=e[1],{uniqueCount:i,totalCount:a}=tC(t,n.zone),o=nC(t,r);if(i!==a)return{type:`treemap`,title:{},dataSource:{type:`range`,dataSets:[{dataRange:QS(t,n.zone),dataSetId:`0`}],labelRange:QS(t,r.zone),dataSetsHaveTitle:o},dataSetStyles:{},legendPosition:`none`}}return{...XS,dataSource:{type:`range`,dataSets:[{dataRange:QS(t,e[1].zone),dataSetId:`0`}],labelRange:QS(t,e[0].zone),dataSetsHaveTitle:nC(t,e[1])},dataSetStyles:{}}}function aC(e,t){if(e.length<3)throw Error(`buildMultiColumnChart expects at least three columns`);let n=e.some(e=>e.type!==`text`&&nC(t,e)),r=e[e.length-1],i=e.slice(0,e.length-1);if((r.type===`percentage`||r.type===`number`)&&i.every(e=>e.type===`text`)){let e=i.map(({zone:e},n)=>({dataRange:QS(t,e),dataSetId:n.toString()}));return{type:i.length>=3?`sunburst`:`treemap`,title:{},dataSource:{type:`range`,dataSets:e,dataSetsHaveTitle:n,labelRange:QS(t,r.zone)},dataSetStyles:{},legendPosition:`none`}}let a=e[0],o=e.slice(1),s=o.map(({zone:e},n)=>({dataRange:QS(t,e),dataSetId:n.toString()}));return o.every(e=>e.type===`percentage`)?{type:`pie`,title:{},dataSource:{type:`range`,dataSets:s,labelRange:QS(t,a.zone),dataSetsHaveTitle:n},dataSetStyles:{},aggregated:!1,legendPosition:`top`}:a.type===`date`&&o.every(e=>e.type===`number`)?{...ZS,type:`line`,dataSource:{type:`range`,dataSets:s,labelRange:QS(t,a.zone),dataSetsHaveTitle:n},dataSetStyles:{},legendPosition:`top`}:{...XS,dataSource:{type:`range`,dataSets:s,labelRange:QS(t,a.zone),dataSetsHaveTitle:n},dataSetStyles:{},legendPosition:`top`}}function oC(e,t){let n=t.getCell({sheetId:t.getActiveSheetId(),col:e.left,row:e.top});return{type:`scorecard`,title:{},keyValue:QS(t,e),background:n?.style?.fillColor,baselineMode:Te,baselineColorUp:Ee,baselineColorDown:De}}function sC(e,t){let n=eC(e,t);if(n.length===0||n.every(e=>e.type===`empty`)){let e=n.map(({zone:e},n)=>({dataRange:QS(t,e),dataSetId:n.toString()}));return{...XS,dataSource:{type:`range`,dataSets:e,dataSetsHaveTitle:!1}}}let r=n.filter(e=>e.type!==`empty`);switch(r.length){case 1:return{humanize:!0,...rC(r[0],t)};case 2:return{humanize:!0,...iC(r,t)};default:return{humanize:!0,...aC(r,t)}}}function cC(e,t,n=Ay){let r=e.model.getters.getSelectedZones(),i=e.model.getters.canCreateDynamicTableOnZones(t,r);r.length===1&&!i&&Kn(r[0])===1&&(e.model.selection.selectTableAroundSelection(),r=e.model.getters.getSelectedZones(),i=e.model.getters.canCreateDynamicTableOnZones(t,r));let a=r.map(n=>e.model.getters.getRangeDataFromZone(t,n)),o=e.model.dispatch(`CREATE_TABLE`,{ranges:a,sheetId:t,config:n,tableType:i?`dynamic`:`static`});return o.isCancelledBecause(H.TableOverlap)?e.raiseError(gg.Errors.TableOverlap):o.isCancelledBecause(H.NonContinuousTargets)&&e.raiseError(gg.Errors.NonContinuousTargets),o}function lC(e,t){e.model.dispatch(`SET_FORMATTING_WITH_PIVOT`,{sheetId:e.model.getters.getActiveSheetId(),target:e.model.getters.getSelectedZones(),format:t})}function uC(e,t){e.model.dispatch(`SET_FORMATTING`,{sheetId:e.model.getters.getActiveSheetId(),target:e.model.getters.getSelectedZones(),style:t})}let dC=async e=>pC(e),fC=async e=>pC(e,`asValue`);async function pC(e,t){let n=await e.clipboard.read();switch(n.status){case`ok`:let r=e.model.getters.getClipboardId(),i=e.model.getters.getSelectedZones();r===GS(n.content[zS.Html])?FS(e,i,t):await IS(e,i,WS(n.content),t),e.model.getters.isCutOperation()&&t!==`asValue`&&await e.clipboard.write({[zS.PlainText]:``});break;case`notImplemented`:e.raiseError(A(`Pasting from the context menu is not supported in this browser. Use keyboard shortcuts ctrl+c / ctrl+v instead.`));break;case`permissionDenied`:e.raiseError(A(`Access to the clipboard denied by the browser. Please enable clipboard permission for this page in your browser settings.`));break}}let mC=e=>pC(e,`onlyFormat`),hC=e=>{if(e.model.getters.getSelectedZones().length>1)return A(`Clear rows`);let t,n,r=e.model.getters.getActiveRows();if(r.size!==0)t=Rt([...r]),n=Lt([...r]);else{let r=e.model.getters.getSelectedZones()[0];t=r.top,n=r.bottom}return t===n?A(`Clear row %s`,(t+1).toString()):A(`Clear rows %s - %s`,(t+1).toString(),(n+1).toString())},gC=e=>{let t=e.model.getters.getActiveSheetId(),n=[...e.model.getters.getActiveRows()].map(n=>e.model.getters.getRowsZone(t,n,n));e.model.dispatch(`DELETE_CONTENT`,{target:n,sheetId:e.model.getters.getActiveSheetId()})},_C=e=>{if(e.model.getters.getSelectedZones().length>1)return A(`Clear columns`);let t,n,r=e.model.getters.getActiveCols();if(r.size!==0)t=Rt([...r]),n=Lt([...r]);else{let r=e.model.getters.getSelectedZones()[0];t=r.left,n=r.right}return t===n?A(`Clear column %s`,qt(t)):A(`Clear columns %s - %s`,qt(t),qt(n))},vC=e=>{let t=e.model.getters.getActiveSheetId(),n=[...e.model.getters.getActiveCols()].map(n=>e.model.getters.getColsZone(t,n,n));e.model.dispatch(`DELETE_CONTENT`,{target:n,sheetId:e.model.getters.getActiveSheetId()})},yC=e=>{if(e.model.getters.getSelectedZones().length>1)return A(`Delete rows`);let t,n,r=e.model.getters.getActiveRows();if(r.size!==0)t=Rt([...r]),n=Lt([...r]);else{let r=e.model.getters.getSelectedZones()[0];t=r.top,n=r.bottom}return t===n?A(`Delete row %s`,(t+1).toString()):A(`Delete rows %s - %s`,(t+1).toString(),(n+1).toString())},bC=e=>{let t=[...e.model.getters.getActiveRows()];if(!t.length){let n=e.model.getters.getSelectedZones()[0];for(let e=n.top;e<=n.bottom;e++)t.push(e)}e.model.dispatch(`REMOVE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName(),dimension:`ROW`,elements:t})},xC=(e,t)=>{if(e===`COL`&&t.model.getters.getActiveRows().size>0||e===`ROW`&&t.model.getters.getActiveCols().size>0)return!1;let n=t.model.getters.getActiveSheetId(),r=t.model.getters.getElementsFromSelection(e),i=t.model.getters.checkElementsIncludeAllVisibleHeaders(n,e,r),a=t.model.getters.checkElementsIncludeAllNonFrozenHeaders(n,e,r);return!i&&!a},SC=e=>{if(e.model.getters.getSelectedZones().length>1)return A(`Delete columns`);let t,n,r=e.model.getters.getActiveCols();if(r.size!==0)t=Rt([...r]),n=Lt([...r]);else{let r=e.model.getters.getSelectedZones()[0];t=r.left,n=r.right}return t===n?A(`Delete column %s`,qt(t)):A(`Delete columns %s - %s`,qt(t),qt(n))},CC=e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getElementsFromSelection(`ROW`);return!e.model.getters.checkElementsIncludeAllVisibleHeaders(t,`ROW`,n)},wC=e=>{let t=[...e.model.getters.getActiveCols()];if(!t.length){let n=e.model.getters.getSelectedZones()[0];for(let e=n.left;e<=n.right;e++)t.push(e)}e.model.dispatch(`REMOVE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName(),dimension:`COL`,elements:t})},TC=e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getElementsFromSelection(`COL`);return!e.model.getters.checkElementsIncludeAllVisibleHeaders(t,`COL`,n)},EC=e=>{let t=e.model.getters.getActiveRows(),n,r;if(t.size)n=Rt([...t]),r=t.size;else{let t=e.model.getters.getSelectedZones()[0];n=t.top,r=t.bottom-t.top+1}e.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName(),position:`before`,base:n,quantity:r,dimension:`ROW`})},DC=e=>{let t=e.model.getters.getActiveRows(),n,r;if(t.size)n=Lt([...t]),r=t.size;else{let t=e.model.getters.getSelectedZones()[0];n=t.bottom,r=t.bottom-t.top+1}e.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName(),position:`after`,base:n,quantity:r,dimension:`ROW`})},OC=e=>{let t=e.model.getters.getActiveCols(),n,r;if(t.size)n=Rt([...t]),r=t.size;else{let t=e.model.getters.getSelectedZones()[0];n=t.left,r=t.right-t.left+1}e.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName(),position:`before`,dimension:`COL`,base:n,quantity:r})},kC=e=>{let t=e.model.getters.getActiveCols(),n,r;if(t.size)n=Lt([...t]),r=t.size;else{let t=e.model.getters.getSelectedZones()[0];n=t.right,r=t.right-t.left+1}e.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName(),position:`after`,dimension:`COL`,base:n,quantity:r})},AC=e=>{let t=e.model.getters.getElementsFromSelection(`COL`),n=t[0],r=t[t.length-1];return t.length===1?A(`Hide column %s`,qt(n).toString()):r-n+1===t.length?A(`Hide columns %s - %s`,qt(n).toString(),qt(r).toString()):A(`Hide columns`)},jC=e=>{let t=e.model.getters.getElementsFromSelection(`ROW`),n=t[0],r=t[t.length-1];return t.length===1?A(`Hide row %s`,(n+1).toString()):r-n+1===t.length?A(`Hide rows %s - %s`,(n+1).toString(),(r+1).toString()):A(`Hide rows`)},MC=e=>{let t=e.model.getters,n=G.smallUuid(),r=t.getActiveSheetId(),i=t.getSelectedZones();i.length===1&&Kn(i[0])===1&&(e.model.selection.selectTableAroundSelection(),i=t.getSelectedZones());let a={width:536,height:335},{col:o,row:s,offset:c}=ah(t,a);e.model.dispatch(`CREATE_CHART`,{sheetId:r,figureId:n,chartId:G.smallUuid(),col:o,row:s,offset:c,size:a,definition:sC(i,e.model.getters)}).isSuccessful&&(e.model.dispatch(`SELECT_FIGURE`,{figureId:n}),e.openSidePanel(`ChartPanel`))},NC=e=>{let t=e.model.getters,n=G.smallUuid(),r=t.getActiveSheetId(),i={width:536,height:335},{col:a,row:o,offset:s}=ah(t,i);e.model.dispatch(`CREATE_CAROUSEL`,{sheetId:r,figureId:n,col:a,row:o,offset:s,size:i,definition:{items:[]}}).isSuccessful&&(e.model.dispatch(`SELECT_FIGURE`,{figureId:n}),e.openSidePanel(`CarouselPanel`,{figureId:n}))},PC=e=>{let t=G.smallUuid(),n=G.smallUuid();e.model.dispatch(`INSERT_NEW_PIVOT`,{pivotId:t,newSheetId:n}).isSuccessful&&e.openSidePanel(`PivotSidePanel`,{pivotId:t})},FC=e=>e.model.getters.getPivotIds().map((t,n)=>({id:`reinsert_dynamic_pivot_${e.model.getters.getPivotFormulaId(t)}`,name:e.model.getters.getPivotDisplayName(t),sequence:n,execute:e=>{let n=e.model.getters.getSelectedZone(),r=e.model.getters.getPivot(t).getCollapsedTableStructure().export();e.model.dispatch(`INSERT_PIVOT_WITH_TABLE`,{pivotId:t,table:r,col:n.left,row:n.top,sheetId:e.model.getters.getActiveSheetId(),pivotMode:`dynamic`}),e.model.dispatch(`REFRESH_PIVOT`,{id:t})},isVisible:e=>e.model.getters.getPivot(t).isValid()})),IC=e=>e.model.getters.getPivotIds().map((t,n)=>({id:`reinsert_static_pivot_${e.model.getters.getPivotFormulaId(t)}`,name:e.model.getters.getPivotDisplayName(t),sequence:n,execute:e=>{let n=e.model.getters.getSelectedZone(),r=e.model.getters.getPivot(t).getExpandedTableStructure();if(r.numberOfCells>5e5){e.notifyUser({type:`warning`,text:vg(r.numberOfCells,e.model.getters.getLocale()),sticky:!0});return}e.model.dispatch(`INSERT_PIVOT_WITH_TABLE`,{pivotId:t,table:r.export(),col:n.left,row:n.top,sheetId:e.model.getters.getActiveSheetId(),pivotMode:`static`}),e.model.dispatch(`REFRESH_PIVOT`,{id:t})},isVisible:e=>e.model.getters.getPivot(t).isValid()})),LC=async e=>{if(e.imageProvider){let t=e.model.getters.getActiveSheetId(),n=G.smallUuid(),r=await e.imageProvider.requestImage(),i=oh(e.model.getters,r.size),{col:a,row:o,offset:s}=ah(e.model.getters,i);e.model.dispatch(`CREATE_IMAGE`,{sheetId:t,figureId:n,col:a,row:o,offset:s,size:i,definition:r})}},RC=e=>lC(e,`0.00%`),zC=e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getSelectedZones(),r=e.model.getters.getConditionalFormats(t),i=e.model.getters.getRulesSelection(t,n);return i.length===1?e.openSidePanel(`ConditionalFormattingEditor`,{cf:r.find(e=>e.id===i[0]),isNewCf:!1}):e.openSidePanel(`ConditionalFormatting`)},BC=e=>{let{col:t,row:n}=e.model.getters.getActivePosition();e.getStore(RS).open({col:t,row:n},`LinkEditor`)},VC=e=>{let t=e.model.getters.getActiveSheetId(),{col:n,row:r}=e.model.getters.getActivePosition(),i=e.model.getters.getEvaluatedCell({sheetId:t,col:n,row:r});return i&&i.link?A(`Edit link`):A(`Insert link`)},HC=e=>e.model.getters.getFirstTableInSelection()?.config.hasFilters||!1,UC=e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getSelectedZones(),r=e.model.getters.getTablesOverlappingZones(t,n);return r.length===1&&!r[0].isPivotTable},WC=e=>Xn(e.model.getters.getSelectedZones()),GC=e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getFirstTableInSelection();n?e.model.dispatch(`UPDATE_TABLE`,{sheetId:t,zone:n.range.zone,config:{hasFilters:!0}}):cC(e,t,{...Ay,hasFilters:!0,bandedRows:!1,styleId:`TableStyleLight11`})},KC=e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getFirstTableInSelection();n&&e.model.dispatch(`UPDATE_TABLE`,{sheetId:t,zone:n.range.zone,config:{hasFilters:!1}})},qC=e=>{cC(e,e.model.getters.getActiveSheetId()).isSuccessful&&e.openSidePanel(`TableSidePanel`,{})},JC=e=>{let t=e.model.getters.getActivePosition(),n=e.model.getters.getTable(t);n&&e.model.dispatch(`REMOVE_TABLE`,{sheetId:t.sheetId,target:[n.range.zone]})},YC=e=>e.model.getters.getSelectedZones().length===1,XC=(e,t)=>{if(!YC(e))return!1;let n=t===`COL`?e.model.getters.getActiveCols():e.model.getters.getActiveRows(),r=t===`COL`?e.model.getters.getActiveRows():e.model.getters.getActiveCols(),i=e.model.getters.getActiveSheetId(),a=On(e.model.getters.getSelectedZone(),e.model.getters.getSheetZone(i));return kt(n)&&(r.size===0||a)},ZC={name:e=>HC(e)?A(`Remove selected filters`):A(`Add filters`),isEnabled:e=>WC(e),execute:e=>HC(e)?KC(e):GC(e),icon:`o-spreadsheet-Icon.FILTER_ICON_ACTIVE`},QC={name:e=>{let t=Mw(e);return t===1?A(`Insert row`):A(`Insert %s rows`,t.toString())},isVisible:e=>XC(e,`ROW`),icon:`o-spreadsheet-Icon.INSERT_ROW`},$C={name:e=>{let t=Mw(e);return t===1?A(`Insert row above`):A(`Insert %s rows above`,t.toString())},execute:EC,isVisible:e=>XC(e,`ROW`),icon:`o-spreadsheet-Icon.INSERT_ROW_BEFORE`},ew={...$C,name:e=>{let t=Mw(e);return t===1?A(`Row above`):A(`%s Rows above`,t.toString())}},tw={...$C,name:e=>{let t=Mw(e);return t===1?A(`Insert row`):A(`Insert %s rows`,t.toString())},isVisible:YC,icon:`o-spreadsheet-Icon.INSERT_ROW_BEFORE`},nw={execute:DC,name:e=>{let t=Mw(e);return t===1?A(`Insert row below`):A(`Insert %s rows below`,t.toString())},isVisible:e=>XC(e,`ROW`),icon:`o-spreadsheet-Icon.INSERT_ROW_AFTER`},rw={...nw,name:e=>{let t=Mw(e);return t===1?A(`Row below`):A(`%s Rows below`,t.toString())}},iw={name:e=>{let t=Nw(e);return t===1?A(`Insert column`):A(`Insert %s columns`,t.toString())},isVisible:e=>XC(e,`COL`),icon:`o-spreadsheet-Icon.INSERT_COL`},aw={name:e=>{let t=Nw(e);return t===1?A(`Insert column left`):A(`Insert %s columns left`,t.toString())},execute:OC,isVisible:e=>XC(e,`COL`),icon:`o-spreadsheet-Icon.INSERT_COL_BEFORE`},ow={...aw,name:e=>{let t=Nw(e);return t===1?A(`Column left`):A(`%s Columns left`,t.toString())}},sw={...aw,name:e=>{let t=Nw(e);return t===1?A(`Insert column`):A(`Insert %s columns`,t.toString())},isVisible:YC,icon:`o-spreadsheet-Icon.INSERT_COL_BEFORE`},cw={name:e=>{let t=Nw(e);return t===1?A(`Insert column right`):A(`Insert %s columns right`,t.toString())},execute:kC,isVisible:e=>XC(e,`COL`),icon:`o-spreadsheet-Icon.INSERT_COL_AFTER`},lw={...cw,name:e=>{let t=Nw(e);return t===1?A(`Column right`):A(`%s Columns right`,t.toString())},execute:kC},uw={name:A(`Insert cells`),isVisible:e=>YC(e)&&e.model.getters.getActiveCols().size===0&&e.model.getters.getActiveRows().size===0,icon:`o-spreadsheet-Icon.INSERT_CELL`},dw={name:A(`Insert cells and shift down`),execute:e=>{let t=e.model.getters.getSelectedZone();PS(e,e.model.dispatch(`INSERT_CELL`,{zone:t,shiftDimension:`ROW`}))},isVisible:e=>e.model.getters.getActiveRows().size===0&&e.model.getters.getActiveCols().size===0,icon:`o-spreadsheet-Icon.INSERT_CELL_SHIFT_DOWN`},fw={name:A(`Insert cells and shift right`),execute:e=>{let t=e.model.getters.getSelectedZone();PS(e,e.model.dispatch(`INSERT_CELL`,{zone:t,shiftDimension:`COL`}))},isVisible:e=>e.model.getters.getActiveRows().size===0&&e.model.getters.getActiveCols().size===0,icon:`o-spreadsheet-Icon.INSERT_CELL_SHIFT_RIGHT`},pw={name:A(`Chart`),execute:MC,isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.INSERT_CHART`},mw={name:A(`Carousel`),execute:NC,isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.CAROUSEL`},hw={name:A(`Pivot table`),execute:PC,isEnabled:e=>!e.isSmall,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.PIVOT`},gw={name:A(`Image`),shortcut:`Ctrl+O`,execute:LC,isVisible:e=>e.imageProvider!==void 0,isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.INSERT_IMAGE`},_w={name:()=>A(`Table`),description:`Alt+T`,execute:qC,isVisible:e=>WC(e)&&!e.model.getters.getFirstTableInSelection(),isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.PAINT_TABLE`},vw={name:A(`Function`),icon:`o-spreadsheet-Icon.FORMULA`},yw={name:A(`SUM`),execute:e=>e.startCellEdition(`=SUM(`)},bw={name:A(`AVERAGE`),execute:e=>e.startCellEdition(`=AVERAGE(`)},xw={name:A(`COUNT`),execute:e=>e.startCellEdition(`=COUNT(`)},Sw={name:A(`MAX`),execute:e=>e.startCellEdition(`=MAX(`)},Cw={name:A(`MIN`),execute:e=>e.startCellEdition(`=MIN(`)},ww={name:A(`All`),children:[Tw]};function Tw(){return jw(_s.getKeys().filter(e=>!_s.get(e).hidden))}let Ew=()=>{let e=_s.content;return[...new Set(_s.getAll().filter(e=>!e.hidden).map(e=>e.category))].filter(w).sort().map((t,n)=>({name:t,children:jw(Object.keys(e).filter(n=>e[n].category===t&&!e[n].hidden)),sequence:60+n}))},Dw={name:A(`Link`),description:`Ctrl+Shift+K`,execute:BC,icon:`o-spreadsheet-Icon.INSERT_LINK`},Ow={name:A(`Checkbox`),execute:e=>{let t=e.model.getters.getSelectedZones(),n=e.model.getters.getActiveSheetId(),r=t.map(t=>e.model.getters.getRangeDataFromZone(n,t));e.model.dispatch(`ADD_DATA_VALIDATION_RULE`,{ranges:r,sheetId:n,rule:{id:G.smallUuid(),criterion:{type:`isBoolean`,values:[]}}})},icon:`o-spreadsheet-Icon.INSERT_CHECKBOX`},kw={name:A(`Dropdown list`),execute:e=>{let t=e.model.getters.getSelectedZones(),n=e.model.getters.getActiveSheetId(),r=t.map(t=>e.model.getters.getRangeDataFromZone(n,t)),i=G.smallUuid();e.model.dispatch(`ADD_DATA_VALIDATION_RULE`,{ranges:r,sheetId:n,rule:{id:i,criterion:{type:`isValueInList`,values:[],displayStyle:`chip`}}}),e.model.getters.getDataValidationRule(n,i)&&e.openSidePanel(`DataValidationEditor`,{ruleId:i,onCancel:()=>{e.model.dispatch(`REMOVE_DATA_VALIDATION_RULE`,{sheetId:n,id:i})}})},isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.INSERT_DROPDOWN`},Aw={name:A(`Insert sheet`),description:`Shift+F11`,execute:e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getSheetIds().indexOf(t)+1,r=G.smallUuid();e.model.dispatch(`CREATE_SHEET`,{sheetId:r,position:n,name:e.model.getters.getNextSheetName()}),e.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:t,sheetIdTo:r})},icon:`o-spreadsheet-Icon.INSERT_SHEET`};function jw(e){return e.sort().map((e,t)=>({name:e,sequence:t*10,execute:t=>t.startCellEdition(`=${e}(`)}))}function Mw(e){let t=e.model.getters.getActiveRows();if(t.size)return t.size;{let t=e.model.getters.getSelectedZones()[0];return t.bottom-t.top+1}}function Nw(e){let t=e.model.getters.getActiveCols();if(t.size)return t.size;{let t=e.model.getters.getSelectedZones()[0];return t.right-t.left+1}}function Pw(e,t){let n=()=>{window.removeEventListener(`pointerup`,r,{capture:!0}),window.removeEventListener(`dragstart`,i),window.removeEventListener(`pointermove`,e),window.removeEventListener(`wheel`,e)},r=e=>{t(e),n()};function i(e){e.preventDefault()}return window.addEventListener(`pointerup`,r,{capture:!0}),window.addEventListener(`dragstart`,i),window.addEventListener(`pointermove`,e),window.addEventListener(`wheel`,e,{passive:!1}),n}function Fw(){let e,n=document.body.style.cursor,r=[],i=()=>{e=void 0,document.body.style.cursor=n,r.forEach(e=>e()),r=[]},a=(t,a)=>{let s=()=>{document.body.style.cursor=`move`,e&&(Object.assign(o.itemsStyle,e.getItemStyles()),a.onChange?.())};o.cancel=()=>{o.draggedItemId=void 0,o.itemsStyle={},document.body.style.cursor=n,a.onCancel?.(),i()};let c=(e,t)=>{o.draggedItemId=void 0,o.itemsStyle={},document.body.style.cursor=n,a.onDragEnd?.(e,t),i()};document.body.style.cursor=`move`,o.draggedItemId=a.draggedItemId;let l=t===`horizontal`?new zw(a.scrollableContainerEl):new Rw(a.scrollableContainerEl);e=new Iw({...a,container:l,onChange:s,onDragEnd:c,onCancel:o.cancel});let u=Pw(e.onMouseMove.bind(e),e.onMouseUp.bind(e));r.push(u);let d=e.onScroll.bind(e);a.scrollableContainerEl.addEventListener(`scroll`,d),r.push(()=>a.scrollableContainerEl.removeEventListener(`scroll`,d)),r.push(e.destroy.bind(e))};(0,t.onWillUnmount)(()=>{i()});let o=(0,t.useState)({itemsStyle:{},draggedItemId:void 0,start:a,cancel:()=>{}});return o}var Iw=class{draggedItemId;items;container;initialMousePosition;currentMousePosition;initialScroll;minPosition;maxPosition;edgeScrollIntervalId;onChange;onCancel;onDragEnd;deadZone;constructor(e){this.items=e.items.map(e=>({...e,positionAtStart:e.position})),this.draggedItemId=e.draggedItemId,this.container=e.container,this.onChange=e.onChange,this.onCancel=e.onCancel,this.onDragEnd=e.onDragEnd,this.initialMousePosition=e.initialMousePosition,this.currentMousePosition=e.initialMousePosition,this.initialScroll=this.container.scroll,this.minPosition=this.items[0].position,this.maxPosition=this.items[this.items.length-1].position+this.items[this.items.length-1].size}getItemStyles(){let e={};for(let t of this.items)e[t.id]=this.getItemStyle(t.id);return e}getItemStyle(e){let t=this.container.cssPositionProperty,n={};return n.position=`relative`,n[t]=(this.getItemsPositions()[e]||0)+`px`,n.transition=`${t} 0.5s`,n[`pointer-events`]=`none`,this.draggedItemId===e&&(n.transition=`${t} 0s`,n[`z-index`]=`1000`),W(n)}onScroll(){this.moveDraggedItemToPosition(this.currentMousePosition+this.scrollOffset)}onMouseMove(e){if(e.button>1){this.onCancel();return}let t=this.container.getMousePosition(e);if(this.currentMousePosition=t,t<this.container.start||t>this.container.end){this.startEdgeScroll(t<this.container.start?-1:1);return}else this.stopEdgeScroll();this.moveDraggedItemToPosition(t+this.scrollOffset)}moveDraggedItemToPosition(e){let t=this.getHoveredItemIndex(e,this.items),n=this.items.findIndex(e=>e.id===this.draggedItemId),r=this.items[n];if(this.deadZone&&this.isInZone(e,this.deadZone)){this.onChange(this.getItemsPositions());return}else this.isInZone(e,{start:r.position,end:r.position+r.size})&&(this.deadZone=void 0);if(n===t){this.onChange(this.getItemsPositions());return}let i=Math.min(n,t),a=Math.max(n,t),o=Math.sign(t-n),s=0;for(let e=i;e<=a;e++)e!==n&&(this.items[e].position-=o*r.size,s+=this.items[e].size);r.position+=o*s,this.items.sort((e,t)=>e.position-t.position),this.deadZone=o>0?{start:e,end:r.position}:{start:r.position+r.size,end:e},this.onChange(this.getItemsPositions())}onMouseUp(e){e.button!==0&&this.onCancel(),e.stopPropagation(),e.preventDefault();let t=this.items.findIndex(e=>e.id===this.draggedItemId);return this.onDragEnd(this.draggedItemId,t),this.stopEdgeScroll(),!1}startEdgeScroll(e){this.edgeScrollIntervalId||=window.setInterval(()=>{let t=e*3;this.container.scroll+=t},5)}stopEdgeScroll(){window.clearInterval(this.edgeScrollIntervalId),this.edgeScrollIntervalId=void 0}getHoveredItemIndex(e,t){return e<=this.minPosition?0:e>=this.maxPosition?t.length-1:t.findIndex(t=>t.position+t.size>=e)}getItemsPositions(){let e={};for(let t of this.items){if(t.id!==this.draggedItemId){e[t.id]=t.position-t.positionAtStart;continue}let n=this.currentMousePosition-this.initialMousePosition+this.scrollOffset;n=Math.max(this.minPosition-t.positionAtStart,n),n=Math.min(this.maxPosition-t.positionAtStart-t.size,n),e[t.id]=n}return e}isInZone(e,t){return e>=t.start&&e<=t.end}get scrollOffset(){return this.container.scroll-this.initialScroll}destroy(){this.stopEdgeScroll()}},Lw=class{constructor(e){this.el=e}get containerRect(){return this.el.getBoundingClientRect()}},Rw=class extends Lw{get start(){return this.containerRect.top}get end(){return this.containerRect.bottom}get cssPositionProperty(){return`top`}get scroll(){return this.el.scrollTop}set scroll(e){this.el.scrollTop=e}getMousePosition(e){return e.clientY}},zw=class extends Lw{get start(){return this.containerRect.left}get end(){return this.containerRect.right}get cssPositionProperty(){return`left`}get scroll(){return this.el.scrollLeft}set scroll(e){this.el.scrollLeft=e}getMousePosition(e){return e.clientX}};function Bw({refName:e}){let n=(0,t.useRef)(e);(0,t.useEffect)(e=>{e?.focus()},()=>[n.el])}var Vw=class extends t.Component{static props={value:[Number,String],onChange:Function,onFocused:{type:Function,optional:!0},onBlur:{type:Function,optional:!0},onInput:{type:Function,optional:!0},class:{type:String,optional:!0},id:{type:String,optional:!0},placeholder:{type:String,optional:!0},autofocus:{type:Boolean,optional:!0},alwaysShowBorder:{type:Boolean,optional:!0},selectContentOnFocus:{type:Boolean,optional:!0},resetOnBlur:{type:Boolean,optional:!0}};refName=`input`;inputRef;lastOnChangeValue=this.props.value.toString();setup(){this.inputRef=(0,t.useRef)(this.refName),(0,t.useExternalListener)(window,`click`,e=>{let t=this.inputRef.el;!t||e.target===t||t.value===this.props.value.toString()||(this.props.resetOnBlur?t.value=this.props.value.toString():this.save())},{capture:!0}),this.props.autofocus&&Bw({refName:this.refName}),(0,t.onWillUpdateProps)(e=>{document.activeElement!==this.inputRef.el&&this.inputRef.el&&(this.inputRef.el.value=e.value),this.lastOnChangeValue=e.value.toString()}),(0,t.onMounted)(()=>{this.inputRef.el&&(this.inputRef.el.value=this.props.value.toString())})}onKeyDown(e){switch(e.key){case`Enter`:this.save(),e.preventDefault(),e.stopPropagation();break;case`Escape`:this.inputRef.el&&(this.inputRef.el.value=this.props.value.toString(),this.inputRef.el.blur()),e.preventDefault(),e.stopPropagation();break}}save(){let e=(this.inputRef.el?.value||``).trim();e!==this.lastOnChangeValue&&(this.lastOnChangeValue=e,this.props.onChange(e)),document.activeElement===this.inputRef.el&&this.inputRef.el?.blur()}onMouseDown(e){e.target!==document.activeElement&&this.props.selectContentOnFocus&&(e.preventDefault(),e.stopPropagation())}onMouseUp(e){let t=e.target;t!==document.activeElement&&this.props.selectContentOnFocus&&(t.focus(),this.props.selectContentOnFocus&&t.select(),e.preventDefault(),e.stopPropagation())}onFocus(){this.props.onFocused?.()}onBlur(){this.props.onBlur?.(),this.props.resetOnBlur?this.inputRef.el&&(this.inputRef.el.value=this.props.value.toString()):this.save()}onInput(e){let t=e.target;this.props.onInput?.(t.value)}},Hw=class extends Vw{static template=`o-spreadsheet-TextInput`;static components={};static props={...Vw.props,errorMessage:{type:String,optional:!0}};get inputClass(){return[this.props.class,`w-100 os-input`,this.props.alwaysShowBorder?`o-input-border`:void 0,this.props.errorMessage?`o-invalid`:void 0].filter(w).join(` `)}},Uw=class extends t.Component{static template=`o-spreadsheet-ActionButton`;static props={action:Object,hasTriangleDownIcon:{type:Boolean,optional:!0},selectedColor:{type:String,optional:!0},class:{type:String,optional:!0},onClick:{type:Function,optional:!0}};actionButton=h(this.props.action);setup(){(0,t.onWillUpdateProps)(e=>{e.action!==this.props.action&&(this.actionButton=h(e.action))})}get isVisible(){return this.actionButton.isVisible(this.env)}get isEnabled(){let e=this.actionButton.isEnabledOnLockedSheet||!this.env.model.getters.isCurrentSheetLocked();return this.actionButton.isEnabled(this.env)&&e}get isActive(){return this.actionButton.isActive?.(this.env)}get title(){let e=this.actionButton.name(this.env),t=this.actionButton.description(this.env)||this.actionButton.shortcut;return e+(t?` (${t})`:``)}get iconTitle(){return this.actionButton.icon(this.env)}onClick(e){this.isEnabled&&(this.props.onClick?.(e),this.actionButton.execute?.(this.env))}get buttonStyle(){return this.props.selectedColor?W({"border-bottom":`4px solid ${this.props.selectedColor}`,height:`16px`,"margin-top":`2px`}):``}},Ww=class extends t.Component{static template=`o-spreadsheet-ColorPicker`;static props={onColorPicked:Function,currentColor:{type:String,optional:!0},maxHeight:{type:Number,optional:!0},anchorRect:Object,disableNoColor:{type:Boolean,optional:!0}};static defaultProps={currentColor:``};static components={Popover:qh};COLORS=me;state=(0,t.useState)({showGradient:!1,currentHslaColor:td(this.props.currentColor)?{...fd(this.props.currentColor),a:1}:{h:0,s:100,l:100,a:1},customHexColor:td(this.props.currentColor)?ed(this.props.currentColor):``});get colorPickerStyle(){return this.props.maxHeight!==void 0&&this.props.maxHeight<=0?W({display:`none`}):``}get popoverProps(){return{anchorRect:this.props.anchorRect,maxHeight:this.props.maxHeight,positioning:`bottom-left`,verticalOffset:0}}get gradientHueStyle(){return W({background:`hsl(${this.state.currentHslaColor?.h||0} 100% 50%)`})}get sliderStyle(){let e=this.state.currentHslaColor?.h||0;return W({"margin-left":`${S(Math.round(e/360*216),1,216)-18/2}px`})}get pointerStyle(){let{s:e,l:t}=this.state.currentHslaColor||{s:0,l:0},n=Math.round(216*S(e/100,0,1)),r=Math.round(186*S(1-2*t/(200-e),0,1));return W({left:`${-16/2+n}px`,top:`${-16/2+r}px`,background:dd(this.state.currentHslaColor)})}get colorPreviewStyle(){return W({"background-color":dd(this.state.currentHslaColor)})}get checkmarkColor(){return ff(this.props.currentColor)}get isHexColorInputValid(){return!this.state.customHexColor||td(this.state.customHexColor)}setCustomGradient({x:e,y:t}){let n=S(e,0,216),r=S(t,0,186),i=n/216,a=r/186,o=100*i,s=100*(1-a)*(1-.5*i);this.updateColor({s:o,l:s})}setCustomHue(e){let t=Math.round(S(360*e/216,0,359));this.updateColor({h:t})}updateColor(e){this.state.currentHslaColor={...this.state.currentHslaColor,...e},this.state.customHexColor=dd(this.state.currentHslaColor)}onColorClick(e){e&&this.props.onColorPicked(ed(e))}resetColor(){this.props.onColorPicked(``)}toggleColorPicker(){this.state.showGradient=!this.state.showGradient}dragGradientPointer(e){let t={x:e.offsetX,y:e.offsetY};this.setCustomGradient(t);let n={x:e.clientX,y:e.clientY};Pw(e=>{let r={x:e.clientX,y:e.clientY},i=r.x-n.x,a=r.y-n.y,o={x:t.x+i,y:t.y+a};this.setCustomGradient(o)},()=>{})}dragHuePointer(e){let t=e.offsetX,n=e.clientX;this.setCustomHue(t),Pw(e=>{let r=t+(e.clientX-n);this.setCustomHue(r)},()=>{})}setHexColor(e){let t=e.target.value.replace(`##`,`#`).slice(0,7);this.state.customHexColor=t,td(t)&&(this.state.currentHslaColor={...fd(t),a:1})}addCustomColor(e){!nd(this.state.currentHslaColor)||!td(this.state.customHexColor)||this.props.onColorPicked(ed(this.state.customHexColor))}isSameColor(e,t){return hd(e,t)}},Gw=class extends t.Component{static template=`o-spreadsheet-ColorPickerWidget`;static props={currentColor:{type:String,optional:!0},toggleColorPicker:Function,showColorPicker:Boolean,onColorPicked:Function,icon:String,title:{type:String,optional:!0},disabled:{type:Boolean,optional:!0},dropdownMaxHeight:{type:Number,optional:!0},class:{type:String,optional:!0}};static components={ColorPicker:Ww};colorPickerButtonRef=(0,t.useRef)(`colorPickerButton`);get iconStyle(){return this.props.currentColor?`border-color: ${this.props.currentColor}`:`border-bottom-style: hidden`}get colorPickerAnchorRect(){let e=this.colorPickerButtonRef.el.getBoundingClientRect();return{x:e.x,y:e.y,width:e.width,height:e.height}}},Kw=class extends t.Component{static template=`o-spreadsheet-NumberEditor`;static props={currentValue:Number,onValueChange:Function,onToggle:{type:Function,optional:!0},onFocusInput:{type:Function,optional:!0},class:String,valueIcon:{type:String,optional:!0},min:Number,max:Number,title:String,valueList:Array};static defaultProps={onFocusInput:()=>{}};static components={Popover:qh};dropdown=(0,t.useState)({isOpen:!1});inputRef=(0,t.useRef)(`inputNumber`);rootEditorRef=(0,t.useRef)(`NumberEditor`);valueListRef=(0,t.useRef)(`numberList`);DOMFocusableElementStore;setup(){this.DOMFocusableElementStore=O(Ih),(0,t.useExternalListener)(window,`click`,this.onExternalClick,{capture:!0}),(0,t.onWillUpdateProps)(e=>{this.inputRef.el&&document.activeElement!==this.inputRef.el&&(this.inputRef.el.value=e.currentValue)}),(0,t.onMounted)(()=>{this.inputRef.el&&(this.inputRef.el.value=this.props.currentValue.toString())})}get popoverProps(){let{x:e,y:t,width:n,height:r}=this.rootEditorRef.el.getBoundingClientRect();return{anchorRect:{x:e,y:t,width:n,height:r},positioning:`bottom-left`,verticalOffset:0}}onExternalClick(e){!cm(this.valueListRef.el,e)&&!cm(this.rootEditorRef.el,e)&&this.closeList()}toggleList(){this.dropdown.isOpen?this.closeList():(this.props.onToggle?.(),this.inputRef.el.focus())}closeList(){this.dropdown.isOpen=!1}setValue(e){let t=S(Math.floor(parseFloat(e)),this.props.min,this.props.max);this.props.onValueChange(t),this.closeList()}setValueFromInput(e){this.setValue(e.target.value)}setValueFromList(e){this.setValue(e)}get currentValue(){return`${this.props.currentValue}`}onInputFocused(e){this.dropdown.isOpen=!0,e.target.select()}onInputKeydown(e){if(e.key===`Enter`||e.key===`Escape`){this.closeList();let t=e.target;e.key===`Escape`&&(t.value=`${this.props.currentValue}`),this.props.onToggle?.()}if(e.key===`Tab`){e.preventDefault(),e.stopPropagation(),this.closeList(),this.DOMFocusableElementStore.focus();return}}},qw=class extends t.Component{static template=`o-spreadsheet-FontSizeEditor`;static components={NumberEditor:Kw};static props={currentFontSize:Number,onFontSizeChanged:Function,onToggle:{type:Function,optional:!0},onFocusInput:{type:Function,optional:!0},class:String};static defaultProps={onFocusInput:()=>{}};fontSizes=Pe},Jw=class extends t.Component{static template=`o-spreadsheet.TextStyler`;static components={ColorPickerWidget:Gw,ActionButton:Uw,FontSizeEditor:qw};static props={style:Object,updateStyle:{type:Function,optional:!0},defaultStyle:{type:Object,optional:!0},hasVerticalAlign:{type:Boolean,optional:!0},hasHorizontalAlign:{type:Boolean,optional:!0},hasBackgroundColor:{type:Boolean,optional:!0},class:{type:String,optional:!0}};openedEl=null;setup(){(0,t.useExternalListener)(window,`click`,this.onExternalClick)}state=(0,t.useState)({activeTool:``});updateFontSize(e){this.props.updateStyle?.({...this.props.style,fontSize:e})}toggleDropdownTool(e,t){let n=this.state.activeTool===e;this.closeMenus(),this.state.activeTool=n?``:e,this.openedEl=n?null:t.target}onExternalClick(e){this.openedEl!==e.target&&this.closeMenus()}onTextColorChange(e){this.props.updateStyle?.({...this.props.style,color:e}),this.closeMenus()}onFillColorChange(e){this.props.updateStyle?.({...this.props.style,fillColor:e}),this.closeMenus()}updateAlignment(e){this.props.updateStyle?.({...this.props.style,align:e}),this.closeMenus()}updateVerticalAlignment(e){this.props.updateStyle?.({...this.props.style,verticalAlign:e}),this.closeMenus()}toggleBold(){this.props.updateStyle?.({...this.props.style,bold:!this.bold})}toggleItalic(){this.props.updateStyle?.({...this.props.style,italic:!this.italic})}closeMenus(){this.state.activeTool=``,this.openedEl=null}get align(){return this.props.style.align??this.props.defaultStyle?.align}get verticalAlign(){return this.props.style.verticalAlign||this.props.defaultStyle?.verticalAlign}get bold(){return this.props.style.bold??this.props.defaultStyle?.bold}get italic(){return this.props.style.italic??this.props.defaultStyle?.italic}get currentFontSize(){return this.props.style.fontSize??this.props.defaultStyle?.fontSize??ge.fontSize}get boldButtonAction(){return{name:A(`Bold`),execute:()=>this.toggleBold(),isActive:()=>this.bold||!1,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.BOLD`}}get italicButtonAction(){return{name:A(`Italic`),execute:()=>this.toggleItalic(),isActive:()=>this.italic||!1,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ITALIC`}}get horizontalAlignButtonAction(){let e=`o-spreadsheet-Icon.ALIGN_LEFT`;return this.align===`center`?e=`o-spreadsheet-Icon.ALIGN_CENTER`:this.align===`right`&&(e=`o-spreadsheet-Icon.ALIGN_RIGHT`),{name:A(`Horizontal alignment`),icon:e,isEnabledOnLockedSheet:!0}}get horizontalAlignActions(){return[{name:A(`Left`),execute:()=>this.updateAlignment(`left`),isActive:()=>this.align===`left`,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ALIGN_LEFT`},{name:A(`Center`),execute:()=>this.updateAlignment(`center`),isActive:()=>this.align===`center`,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ALIGN_CENTER`},{name:A(`Right`),execute:()=>this.updateAlignment(`right`),isActive:()=>this.align===`right`,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ALIGN_RIGHT`}]}get verticalAlignButtonAction(){let e=`o-spreadsheet-Icon.ALIGN_MIDDLE`;return this.verticalAlign===`top`?e=`o-spreadsheet-Icon.ALIGN_TOP`:this.verticalAlign===`bottom`&&(e=`o-spreadsheet-Icon.ALIGN_BOTTOM`),{name:A(`Vertical alignment`),icon:e,isEnabledOnLockedSheet:!0}}get verticalAlignActions(){return[{name:A(`Top`),execute:()=>this.updateVerticalAlignment(`top`),isActive:()=>this.verticalAlign===`top`,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ALIGN_TOP`},{name:A(`Middle`),execute:()=>this.updateVerticalAlignment(`middle`),isActive:()=>this.verticalAlign===`middle`,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ALIGN_MIDDLE`},{name:A(`Bottom`),execute:()=>this.updateVerticalAlignment(`bottom`),isActive:()=>this.verticalAlign===`bottom`,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.ALIGN_BOTTOM`}]}},Yw=class extends t.Component{static template=`o-spreadsheet-CogWheelMenu`;static components={MenuPopover:Zh};static props={items:Array};buttonRef=(0,t.useRef)(`button`);menuState=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]});menuId=G.uuidv4();toggleMenu(e){e.closedMenuId!==this.menuId&&(this.menuState.isOpen=!this.menuState.isOpen,this.menuState.anchorRect=fm(this.buttonRef.el),this.menuState.menuItems=p(this.props.items))}},Z=class extends t.Component{static template=`o_spreadsheet.Section`;static props={class:{type:String,optional:!0},title:{type:String,optional:!0},slots:Object}},Xw=class extends t.Component{static template=`o-spreadsheet-CarouselPanel`;static props={onCloseSidePanel:Function,figureId:String};static components={Section:Z,TextInput:Hw,TextStyler:Jw,CogWheelMenu:Yw};DEFAULT_CAROUSEL_TITLE_STYLE=Re;dragAndDrop=Fw();previewListRef=(0,t.useRef)(`previewList`);setup(){let e=[...this.carouselItems];(0,t.onWillUpdateProps)(()=>{T(this.carouselItems,e)||this.dragAndDrop.cancel(),e=[...this.carouselItems]})}get carouselItems(){return this.env.model.getters.getCarousel(this.props.figureId).items}get title(){return this.env.model.getters.getCarousel(this.props.figureId).title}get carousel(){return this.env.model.getters.getCarousel(this.props.figureId)}getPreviewDivStyle(e){return this.dragAndDrop.itemsStyle[this.getItemId(e)]||``}getItemId(e){return e.type===`chart`?e.chartId:`transparent-carousel`}addNewChartToCarousel(){this.env.model.dispatch(`ADD_NEW_CHART_TO_CAROUSEL`,{figureId:this.props.figureId,sheetId:this.carouselSheetId})}get hasDataView(){return this.carouselItems.some(e=>e.type===`carouselDataView`)}isCarouselItemActive(e){return T(this.env.model.getters.getSelectedCarouselItem(this.props.figureId),e)}addDataViewToCarousel(){let e=this.env.model.getters.getCarousel(this.props.figureId);this.updateItems([...e.items,{type:`carouselDataView`}])}activateCarouselItem(e){this.env.model.dispatch(`UPDATE_CAROUSEL_ACTIVE_ITEM`,{figureId:this.props.figureId,sheetId:this.carouselSheetId,item:e})}editCarouselItem(e){e.type===`chart`&&(this.activateCarouselItem(e),this.env.model.dispatch(`SELECT_FIGURE`,{figureId:this.props.figureId}),this.env.openSidePanel(`ChartPanel`,{chartId:e.chartId}))}renameCarouselItem(e,t){let n=t.trim();if(!n||n===this.getItemTitle(e).toString())return;let r=[...this.carouselItems],i=this.carouselItems.findIndex(t=>T(t,e));i!==-1&&(r[i]={...e,title:n},this.updateItems(r))}deleteCarouselItem(e){let t=this.env.model.getters.getCarousel(this.props.figureId).items.filter(t=>!T(t,e));this.updateItems(t)}popOutCarouselItem(e){e.type===`chart`&&this.env.model.dispatch(`POPOUT_CHART_FROM_CAROUSEL`,{sheetId:this.carouselSheetId,carouselId:this.props.figureId,chartId:e.chartId})}duplicateCarouselChart(e){e.type===`chart`&&this.env.model.dispatch(`DUPLICATE_CAROUSEL_CHART`,{sheetId:this.carouselSheetId,carouselId:this.props.figureId,chartId:e.chartId,duplicatedChartId:G.smallUuid()})}onDragHandleMouseDown(e,t){if(t.button!==0)return;let n=Array.from(this.previewListRef.el.children).map(e=>fm(e)),r=this.carouselItems.map((e,t)=>({id:this.getItemId(e),size:n[t].height,position:n[t].y}));this.dragAndDrop.start(`vertical`,{draggedItemId:this.getItemId(e),initialMousePosition:t.clientY,items:r,scrollableContainerEl:this.previewListRef.el,onDragEnd:(t,n)=>this.onDragEnd(e,n)})}onDragEnd(e,t){let n=this.carouselItems.findIndex(t=>T(t,e));if(n===-1||n===t)return;let r=[...this.env.model.getters.getCarousel(this.props.figureId).items];r.splice(n,1),r.splice(t,0,e),this.updateItems(r)}getItemTitle(e){return vh(this.env.model.getters,e)}getItemPreview(e){return _h(this.env.model.getters,e)}updateItems(e){this.env.model.dispatch(`UPDATE_CAROUSEL`,{figureId:this.props.figureId,sheetId:this.carouselSheetId,definition:{...this.carousel,items:e}})}updateTitleText(e){let t=this.env.model.getters.getCarousel(this.props.figureId);this.env.model.dispatch(`UPDATE_CAROUSEL`,{figureId:this.props.figureId,sheetId:this.carouselSheetId,definition:{...t,title:{...t.title,text:e}}})}updateTitleStyle(e){let t=this.env.model.getters.getCarousel(this.props.figureId);this.env.model.dispatch(`UPDATE_CAROUSEL`,{figureId:this.props.figureId,sheetId:this.carouselSheetId,definition:{...t,title:{...t.title,...e}}})}get carouselAddChartInfoMessage(){return A(`Add a chart to the carousel. You can also add a chart by dragging and dropping it over the carousel figure.`)}getCogWheelMenuItems(e){let t=[];return e.type===`chart`&&(t.push({name:A(`Edit chart`),execute:()=>this.editCarouselItem(e),icon:`o-spreadsheet-Icon.EDIT`}),t.push({name:A(`Pop out chart`),execute:()=>this.popOutCarouselItem(e),icon:`o-spreadsheet-Icon.EXTERNAL`}),t.push({name:A(`Duplicate chart`),execute:()=>this.duplicateCarouselChart(e),icon:`o-spreadsheet-Icon.COPY`})),t.push({name:A(`Delete item`),execute:()=>this.deleteCarouselItem(e),icon:`o-spreadsheet-Icon.TRASH`}),t}get carouselSheetId(){let e=this.env.model.getters.getFigureSheetId(this.props.figureId);if(!e)throw Error(`Could not find the sheetId of the carousel figure`);return e}get carouselDataViewMessage(){return A(`The data view makes the carousel transparent, revealing the data underneath.`)}};let Zw=new B;var Qw=class extends t.Component{static template=`o-spreadsheet.Checkbox`;static props={label:{type:String,optional:!0},value:{type:Boolean,optional:!0},className:{type:String,optional:!0},name:{type:String,optional:!0},title:{type:String,optional:!0},disabled:{type:Boolean,optional:!0},onChange:Function};static defaultProps={value:!1};onChange(e){let t=e.target.checked;this.props.onChange(t)}};let $w={chartId:String,definition:Object,canUpdateChart:Function,updateChart:Function},eT={ArrowDown:`down`,ArrowLeft:`left`,ArrowRight:`right`,ArrowUp:`up`};function tT(e,t){let n=eT[e.key];e.shiftKey?t.resizeAnchorZone(n,xm(e)?`end`:1):t.moveAnchorCell(n,xm(e)?`end`:1)}function nT(e,t,n){let{anchor:{zone:r,cell:i}}=e.getSelection(),a={...i},o=Kn(r);do a=rT(a,r,n),o--;while(o>0&&!iT(e,a));o>0&&t.updateAnchorCell(a.col,a.row,{scrollIntoView:!0})}function rT(e,t,n){let{col:r,row:i}=e;switch(n){case`right`:r<t.right?r++:(r=t.left,i=i<t.bottom?i+1:t.top);break;case`left`:r>t.left?r--:(r=t.right,i=i>t.top?i-1:t.bottom);break;case`down`:i<t.bottom?i++:(i=t.top,r=r<t.right?r+1:t.left);break;case`up`:i>t.top?i--:(i=t.bottom,r=r>t.left?r-1:t.right);break}return{col:r,row:i}}function iT(e,t){let n=e.getActiveSheetId();if(e.isHeaderHidden(n,`COL`,t.col)||e.isHeaderHidden(n,`ROW`,t.row))return!1;let r=e.getMainCellPosition({sheetId:n,col:t.col,row:t.row});return r.col===t.col&&r.row===t.row}function aT(e,t,n){let{x:r,y:i,width:a,height:o}=n;if(a<0||o<0)return;let s=t.color||`#017E84`,{ctx:c}=e;c.save(),t.noBorder||(t.dashed&&c.setLineDash([5,3]),c.strokeStyle=s,t.thinLine?(c.lineWidth=1,c.strokeRect(r,i,a,o)):(c.lineWidth=2,c.strokeRect(r+.5,i+.5,a,o))),t.noFill||(c.fillStyle=gd(ed(s),t.fillAlpha??.12),c.fillRect(r,i,a,o)),c.restore()}var oT=class extends fr{mutators=[`register`,`unRegister`];providers=[];constructor(e){super(e),this.onDispose(()=>{this.providers=[]})}get renderingLayers(){return[`Highlights`]}get highlights(){let e=this.getters.getActiveSheetId();return this.providers.flatMap(e=>e.highlights).filter(t=>t.range.sheetId===e).map(e=>{let{numberOfRows:t,numberOfCols:n}=Nn(e.range.zone),r=t*n===1?this.getters.expandZone(e.range.sheetId,e.range.zone):e.range.unboundedZone;return{...e,range:this.model.getters.getRangeFromZone(e.range.sheetId,r)}})}register(e){this.providers.push(e)}unRegister(e){this.providers=this.providers.filter(t=>t!==e)}drawLayer(e,t){if(t===`Highlights`)for(let t of this.highlights)aT(e,t,e.viewports.getVisibleRect(e.sheetId,t.range.zone))}},sT=class{mutators=[`focus`,`unfocus`];focusedElement=null;focus(e){this.focusedElement=e}unfocus(e){this.focusedElement&&this.focusedElement===e&&(this.focusedElement=null)}},cT=class extends fr{mutators=[`resetWithRanges`,`focusById`,`unfocus`,`addEmptyRange`,`removeRange`,`changeRange`,`reset`,`confirm`,`updateColors`,`updateDisabledRanges`,`toggleEditMode`];ranges=[];focusedRangeIndex=null;mode=`text-edit`;inputSheetId;focusStore=this.get(sT);highlightStore=this.get(oT);constructor(e,t=[],n=!1,r=[],i=[]){if(super(e),this.initialRanges=t,this.inputHasSingleRange=n,this.colors=r,this.disabledRanges=i,n&&t.length>1)throw Error(`Input with a single range cannot be instantiated with several range references.`);this.inputSheetId=this.getters.getActiveSheetId(),this.resetWithRanges(t),this.highlightStore.register(this),this.onDispose(()=>{this.unfocus(),this.highlightStore.unRegister(this)})}handleEvent(e){if(this.focusedRangeIndex===null)return;let t=this.inputSheetId,n=this.getters.getActiveSheetId(),r=e.options.unbounded?this.getters.getUnboundedZone(n,e.anchor.zone):e.anchor.zone,i=this.getters.getRangeFromZone(n,r);if(e.mode===`newAnchor`&&!this.inputHasSingleRange&&this.ranges[this.focusedRangeIndex].xc.trim()!==``){let e=this.getters.getSelectionRangeString(i,t);this.insertNewRange(this.ranges.length,[e]),this.focusLast()}else{let e=i.parts,n=this.ranges[this.focusedRangeIndex].xc.trim();n&&(e=this.getters.getRangeFromSheetXC(t,n).parts);let r={...i,parts:e},a=this.getters.getSelectionRangeString(r,t);this.setRange(this.focusedRangeIndex,[a])}this.mode=`select-range`}handle(e){switch(e.type){case`ACTIVATE_SHEET`:if(e.sheetIdFrom!==e.sheetIdTo){let{col:t,row:n}=this.getters.getNextVisibleCellPosition({sheetId:e.sheetIdTo,col:0,row:0}),r=this.getters.expandZone(e.sheetIdTo,D({col:t,row:n}));this.model.selection.resetAnchor(this,{cell:{col:t,row:n},zone:r})}break;case`START_CHANGE_HIGHLIGHT`:let t=this.getters.getActiveSheetId(),n=this.getters.expandZone(t,e.zone),r=this.ranges.findIndex(e=>{let{xc:r,sheetName:i}=As(e.xc),a=i||this.getters.getSheetName(this.inputSheetId);if(this.getters.getSheetName(t)!==a)return!1;let o=this.getters.getRangeFromSheetXC(t,r);return On(this.getters.expandZone(t,o.zone),n)});if(r!==-1){this.focus(r);let{left:e,top:t}=n;this.model.selection.resetAnchor(this,{cell:{col:e,row:t},zone:n})}break}}changeRange(e,t){if(this.inputHasSingleRange&&t.split(`,`).length>1)return;let n=this.getIndex(e);if(n!==null&&this.focusedRangeIndex!==n&&this.focus(n),n!==null){let e=t.replace(/^,+/,``).split(`,`).map(e=>e.trim());this.setRange(n,e),this.captureSelection()}}addEmptyRange(){this.inputHasSingleRange&&this.ranges.length===1||(this.insertNewRange(this.ranges.length,[``]),this.focusLast())}removeRange(e){if(this.ranges.length===1)return;let t=this.getIndex(e);t!==null&&this.removeRangeByIndex(t)}updateColors(e){this.colors=e;let t=new Fd(this.ranges.length,this.colors);this.ranges=this.ranges.map(e=>({...e,color:t.next()}))}updateDisabledRanges(e){this.disabledRanges=e}confirm(){for(let e of this.selectionInputs)e.xc===``&&this.removeRange(e.id);let e=this.getters.getActiveSheetId();this.inputSheetId!==e&&this.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:e,sheetIdTo:this.inputSheetId}),this.selectionInputValues.join()!==this.initialRanges.join()&&this.resetWithRanges(this.selectionInputValues),this.initialRanges=this.selectionInputValues,this.unfocus()}reset(){this.resetWithRanges(this.initialRanges),this.confirm()}get selectionInputValues(){return this.cleanInputs(this.ranges.map(e=>e.xc?e.xc:``))}get selectionInputs(){return this.ranges.map((e,t)=>Object.assign({},e,{color:this.hasMainFocus&&this.focusedRangeIndex!==null&&this.getters.isRangeValid(e.xc)?e.color:null,isFocused:this.hasMainFocus&&this.focusedRangeIndex===t,isValidRange:e.xc===``||this.getters.isRangeValid(e.xc),disabled:this.disabledRanges?.[t]}))}get isResettable(){return this.initialRanges.join()!==this.ranges.map(e=>e.xc).join()}get isConfirmable(){return this.selectionInputs.every(e=>e.isValidRange)}get hasFocus(){return this.selectionInputs.some(e=>e.isFocused)}get hasMainFocus(){let e=this.focusStore.focusedElement;return!!e&&e===this}get highlights(){return this.hasMainFocus?this.ranges.map(e=>this.inputToHighlights(e)).flat():[]}focusById(e){let t=this.getIndex(e);if(this.focusedRangeIndex!==t||this.mode===`select-range`){this.focus(t),this.mode=`text-edit`;return}return`noStateChange`}focus(e){this.focusStore.focus(this),this.focusedRangeIndex=e,this.captureSelection()}focusLast(){this.focus(this.ranges.length-1)}unfocus(){this.focusedRangeIndex=null,this.focusStore.unfocus(this),this.model.selection.release(this)}captureSelection(){if(this.focusedRangeIndex===null)return;let e=this.ranges[this.focusedRangeIndex],t=this.getters.getActiveSheetId(),n=this.getters.getRangeFromSheetXC(t,e?.xc||`A1`).zone;this.model.selection.capture(this,{cell:{col:n.left,row:n.top},zone:n},{handleEvent:this.handleEvent.bind(this),release:this.unfocus.bind(this)})}resetWithRanges(e){e.length&&e.every(e=>this.getters.isRangeValid(e))&&(this.initialRanges=e),this.ranges=[],this.insertNewRange(0,e),this.ranges.length===0&&(this.insertNewRange(this.ranges.length,[``]),this.focusLast())}setContent(e,t){this.ranges[e]={...this.ranges[e],xc:t}}insertNewRange(e,t){let n=Math.max(0,...this.ranges.map(e=>Number(e.id))),r=new Fd(this.ranges.length,this.colors);for(let t=0;t<e;t++)r.next();this.ranges.splice(e,0,...t.map((e,t)=>({xc:e,id:n+t+1,color:r.next()})))}setRange(e,t){let[,...n]=t;this.setContent(e,t[0]),this.insertNewRange(e+1,n),n.length&&this.focus(e+n.length)}removeRangeByIndex(e){this.ranges.splice(e,1),this.focusedRangeIndex!==null&&this.focusLast()}inputToHighlights({xc:e,color:t}){return this.cleanInputs([e]).filter(e=>this.getters.isRangeValid(e)).filter(e=>this.shouldBeHighlighted(this.inputSheetId,e)).map(e=>{let{sheetName:n}=As(e),r=n&&this.getters.getSheetIdByName(n)||this.inputSheetId;return{range:this.getters.getRangeFromSheetXC(r,e),color:t,interactive:!0}})}cleanInputs(e){return e.map(e=>e.split(`,`)).flat().map(e=>e.trim()).filter(e=>e!==``)}shouldBeHighlighted(e,t){let{sheetName:n}=As(t),r=this.getters.getSheetIdByName(n),i=this.getters.getActiveSheet().id;return this.getters.isRangeValid(t)&&(r===i||r===void 0&&i===e)}getIndex(e){let t=this.ranges.findIndex(t=>t.id===e);return t>=0?t:null}toggleEditMode(){this.mode=this.mode===`select-range`?`text-edit`:`select-range`}},lT=class extends t.Component{static template=`o-spreadsheet-SelectionInput`;static props={ranges:Array,hasSingleRange:{type:Boolean,optional:!0},required:{type:Boolean,optional:!0},autofocus:{type:Boolean,optional:!0},isInvalid:{type:Boolean,optional:!0},class:{type:String,optional:!0},onSelectionChanged:{type:Function,optional:!0},onSelectionConfirmed:{type:Function,optional:!0},onSelectionReordered:{type:Function,optional:!0},onSelectionRemoved:{type:Function,optional:!0},onInputFocused:{type:Function,optional:!0},colors:{type:Array,optional:!0,default:[]},disabledRanges:{type:Array,optional:!0,default:[]},disabledRangeTitle:{type:String,optional:!0}};state=(0,t.useState)({isMissing:!1});dragAndDrop=Fw();focusedInput=(0,t.useRef)(`focusedInput`);selectionRef=(0,t.useRef)(`o-selection`);DOMFocusableElementStore;store;get ranges(){return this.store.selectionInputs}get canAddRange(){return!this.props.hasSingleRange}get isInvalid(){return this.props.isInvalid||this.state.isMissing}get isConfirmable(){return this.store.isConfirmable}get isResettable(){return this.store.isResettable}get hasDisabledRanges(){return this.store.disabledRanges.some(Boolean)}setup(){(0,t.useEffect)(()=>this.focusedInput.el?.focus(),()=>[this.focusedInput.el]),(0,t.useEffect)(()=>{(this.store.isResettable||this.store.hasFocus)&&this.selectionRef.el?.offsetParent===null&&this.reset()}),this.DOMFocusableElementStore=O(Ih),this.store=wr(cT,this.props.ranges,this.props.hasSingleRange||!1,this.props.colors,this.props.disabledRanges),this.props.autofocus&&(this.store.focusById(this.store.selectionInputs[0]?.id),this.props.onInputFocused?.()),(0,t.onWillUpdateProps)(e=>{e.ranges.join()!==this.store.selectionInputValues.join()&&this.triggerChange(),e.ranges.join()!==this.props.ranges.join()&&e.ranges.join()!==this.store.selectionInputValues.join()&&this.store.resetWithRanges(e.ranges),e.colors?.join()!==this.props.colors?.join()&&e.colors?.join()!==this.store.colors.join()&&this.store.updateColors(e.colors||[]),!T(e.disabledRanges,this.props.disabledRanges)&&!T(e.disabledRanges,this.store.disabledRanges)&&this.store.updateDisabledRanges(e.disabledRanges||[])})}startDragAndDrop(e,t){if(t.button!==0||t.target.tagName===`SELECT`)return;let n=this.getRangeElementsRects(),r=this.ranges.map(e=>e.id),i=r.map((e,t)=>({id:e.toString(),size:n[t].height,position:n[t].y}));this.dragAndDrop.start(`vertical`,{draggedItemId:e.toString(),initialMousePosition:t.clientY,items:i,scrollableContainerEl:this.selectionRef.el,onDragEnd:(t,n)=>{let i=r.findIndex(t=>t===e);if(i===n)return;let a=C(0,r.length);a.splice(i,1),a.splice(n,0,i),this.props.onSelectionReordered?.(a),this.props.onSelectionConfirmed?.(),this.store.confirm()}})}getRangeElementsRects(){return Array.from(this.selectionRef.el.children).map(e=>e.getBoundingClientRect())}getColor(e){let t={};return e.color&&(t.color=e.color),this.store.mode===`select-range`&&(t[`caret-color`]=`transparent`),W(t)}triggerChange(){let e=this.store.selectionInputValues;this.props.onSelectionChanged?.(e)}onKeydown(e){e.key===`F2`?(e.preventDefault(),e.stopPropagation(),this.store.toggleEditMode()):e.key.startsWith(`Arrow`)?(e.stopPropagation(),this.store.mode===`select-range`&&(e.preventDefault(),tT(e,this.env.model.selection))):e.key===`Enter`?(e.target.blur(),this.isConfirmable&&this.confirm()):e.key===`Escape`&&(this.reset(),this.DOMFocusableElementStore.focus())}extractRanges(e){return this.props.hasSingleRange?e.split(`,`)[0]:e}focus(e){this.state.isMissing=!1,this.store.focusById(e),this.props.onInputFocused?.()}addEmptyInput(){this.store.addEmptyRange()}removeInput(e){let t=this.store.selectionInputs.findIndex(t=>t.id===e);this.ranges.find(t=>t.id===e)?.xc&&(this.props.onSelectionRemoved?.(t),this.props.onSelectionConfirmed?.()),this.store.removeRange(e)}onInputChanged(e,t){let n=t.target,r=this.extractRanges(n.value);this.store.changeRange(e,r),this.triggerChange()}reset(){this.store.reset(),this.triggerChange()}confirm(){this.store.confirm();let e=this.store.selectionInputs.some(e=>this.env.model.getters.isRangeValid(e.xc));this.props.required&&!e&&(this.state.isMissing=!0),this.props.onSelectionChanged?.(this.store.selectionInputValues),this.props.onSelectionConfirmed?.()}},uT=class extends t.Component{static template=`o-spreadsheet.ChartDataSeries`;static components={SelectionInput:lT,Section:Z};static props={ranges:Array,dataSetStyles:{type:Object,optional:!0},hasSingleRange:{type:Boolean,optional:!0},onSelectionChanged:Function,onSelectionReordered:{type:Function,optional:!0},onSelectionRemoved:{type:Function,optional:!0},onSelectionConfirmed:Function,title:{type:String,optional:!0},maxNumberOfUsedRanges:{type:Number,optional:!0},datasetOrientation:{type:String,optional:!0},canChangeDatasetOrientation:{type:Boolean,optional:!0},onFlipAxis:{type:Function,optional:!0}};get ranges(){return this.props.ranges.map(e=>e.dataRange)}get disabledRanges(){return this.props.ranges.map((e,t)=>this.props.maxNumberOfUsedRanges?t>=this.props.maxNumberOfUsedRanges:!1)}get colors(){return this.props.ranges.map(e=>this.props.dataSetStyles?.[e.dataSetId]?.backgroundColor)}get title(){return this.props.title?this.props.title:this.props.hasSingleRange?A(`Data range`):A(`Data series`)}},dT=class extends t.Component{static template=`o-spreadsheet.ChartLabelRange`;static components={SelectionInput:lT,Checkbox:Qw,Section:Z};static props={title:{type:String,optional:!0},range:String,class:{type:String,optional:!0},isInvalid:Boolean,onSelectionChanged:Function,onSelectionConfirmed:Function,options:{type:Array,optional:!0}};static defaultProps={title:A(`Categories / Labels`),options:[]};get sectionClass(){return`o-data-labels`+(this.props.class?` ${this.props.class}`:``)}},fT=class extends t.Component{static template=`o-spreadsheet-ChartDataSourceComponent`;static components={ChartDataSeries:uT,ChartLabelRange:dT};static props={chartId:String,definition:Object,updateChart:Function,canUpdateChart:Function,onErrorMessagesChanged:{type:Function,optional:!0},dataSeriesTitle:{type:String,optional:!0},labelRangeTitle:{type:String,optional:!0},getLabelRangeOptions:{type:Function,optional:!0}};get DataSourceComponent(){let e=this.props.definition.dataSource.type;return Zw.get(e)}},pT=class extends t.Component{static template=`o-spreadsheet-ValidationMessages`;static props={messages:Array,msgType:String,singleBox:{type:Boolean,optional:!0}};get divClasses(){return this.props.msgType===`warning`?`o-validation-warning`:this.props.msgType===`info`?`o-validation-info`:`o-validation-error`}get alertBoxes(){return this.props.singleBox?[this.props.messages]:this.props.messages.map(e=>[e])}},mT=class extends t.Component{static template=`o-spreadsheet.ChartErrorSection`;static components={Section:Z,ValidationMessages:pT};static props={messages:{type:Array,element:String}}},hT=class extends t.Component{static template=`o-spreadsheet-GenericChartConfigPanel`;static components={ChartDataSourceComponent:fT,Section:Z,Checkbox:Qw,ChartErrorSection:mT};static props=$w;chartTerms=lg;state=(0,t.useState)({errorMessages:[]});onErrorMessagesChanged(e){this.state.errorMessages=e}get errorMessages(){return this.state.errorMessages}getLabelRangeOptions(){return[this.getAggregateLabelRangeOption()]}getAggregateLabelRangeOption(){return{name:`aggregated`,label:this.chartTerms.AggregatedChart,value:(`aggregated`in this.props.definition?this.props.definition.aggregated:!1)??!1,onChange:e=>{this.props.updateChart(this.props.chartId,{aggregated:e})}}}},gT=class extends hT{static template=`o-spreadsheet-BarConfigPanel`;get stackedLabel(){return this.props.definition.horizontal?this.chartTerms.StackedBarChart:this.chartTerms.StackedColumnChart}onUpdateStacked(e){this.props.updateChart(this.props.chartId,{stacked:e})}getLabelRangeOptions(){return[this.getAggregateLabelRangeOption()]}},_T=class extends t.Component{static template=`o-spreadsheet-Collapse`;static props={isCollapsed:Boolean,slots:Object};contentRef=(0,t.useRef)(`content`);setup(){(0,t.onMounted)(()=>{this.props.isCollapsed&&this.contentRef.el?.classList.add(`d-none`)}),(0,t.onWillUpdateProps)(e=>{e.isCollapsed!==this.props.isCollapsed&&this.startTransition(e.isCollapsed)})}startTransition(e){let t=this.contentRef.el;if(!t)return;t.classList.remove(`d-none`),t.classList.add(`overflow-hidden`);let n=e?t.scrollHeight:0,r=e?0:t.scrollHeight,i=t.animate([{maxHeight:n+`px`},{maxHeight:r+`px`}],{duration:350,easing:`ease`});i.onfinish=()=>{t.classList.remove(`overflow-hidden`),this.props.isCollapsed&&t.classList.add(`d-none`)}}},vT=class extends t.Component{static template=`o-spreadsheet-SidePanelCollapsible`;static props={slots:Object,title:{type:String,optional:!0},isInitiallyCollapsed:{type:Boolean,optional:!0},class:{type:String,optional:!0}};static components={Collapse:_T};state=(0,t.useState)({isCollapsed:this.props.isInitiallyCollapsed});toggle(){this.state.isCollapsed=!this.state.isCollapsed}},yT=class extends Vw{static template=`o-spreadsheet-NumberInput`;static components={};static props={...Vw.props,min:{type:Number,optional:!0},max:{type:Number,optional:!0}};debouncedOnChange=pt(this.props.onChange.bind(this),100,!0);save(){let e=(this.inputRef.el?.value||``).trim();e!==this.props.value.toString()&&this.debouncedOnChange(e)}get inputClass(){return[this.props.class,`o-input`].join(` `)}},bT=class extends yT{static template=`o-spreadsheet-DateInput`},xT=class extends t.Component{static template=`o-spreadsheet.BadgeSelection`;static props={choices:Array,onChange:Function,selectedValue:String}},ST=class extends t.Component{static template=`o-spreadsheet.ChartTitle`;static components={Section:Z,TextStyler:Jw,TextInput:Hw};static props={title:{type:String,optional:!0},placeholder:{type:String,optional:!0},updateTitle:Function,name:{type:String},style:Object,defaultStyle:{type:Object,optional:!0},updateStyle:Function};static defaultProps={title:``,placeholder:``};updateTitle(e){this.props.updateTitle(e)}},CT=class extends t.Component{static template=`o-spreadsheet-AxisDesignEditor`;static components={Section:Z,ChartTitle:ST,BadgeSelection:xT,Checkbox:Qw,NumberInput:yT,DateInput:bT};static props={chartId:String,definition:Object,updateChart:Function,axesList:Array};state=(0,t.useState)({currentAxis:`x`});defaultFontSize=12;get axisTitleStyle(){return this.props.definition.axesDesign?.[this.state.currentAxis]?.title??{}}get badgeAxes(){return this.props.axesList.map(e=>({value:e.id,label:e.name}))}getAxisTitle(){return(this.props.definition.axesDesign??{})[this.state.currentAxis]?.title?.text||``}updateAxisTitle(e){let t=x(this.props.definition.axesDesign)??{};t[this.state.currentAxis]={...t[this.state.currentAxis],title:{...t?.[this.state.currentAxis]?.title,text:e}},this.props.updateChart(this.props.chartId,{axesDesign:t})}updateAxisTitleStyle(e){let t=x(this.props.definition.axesDesign)??{};t[this.state.currentAxis]={...t[this.state.currentAxis],title:e},this.props.updateChart(this.props.chartId,{axesDesign:t})}get axisMin(){let e=this.currentAxisDesign?.min;return(this.isTimeAxis?this.formatAxisBoundary(e):e)??``}get axisMax(){let e=this.currentAxisDesign?.max;return(this.isTimeAxis?this.formatAxisBoundary(e):e)??``}get isMajorGridEnabled(){let e=this.currentAxisDesign?.gridLines;return e===void 0?this.getDefaultMajorGridValue(this.state.currentAxis):e===`major`||e===`both`}get isMinorGridEnabled(){return this.currentAxisDesign?.gridLines===`minor`||this.currentAxisDesign?.gridLines===`both`}get isValueAxis(){return`horizontal`in this.props.definition&&this.props.definition.horizontal?this.state.currentAxis===`x`:this.state.currentAxis!==`x`}get majorGridLabel(){return this.state.currentAxis===`x`?A(`Major vertical gridlines`):A(`Major horizontal gridlines`)}get minorGridLabel(){return this.state.currentAxis===`x`?A(`Minor vertical gridlines`):A(`Minor horizontal gridlines`)}updateAxisMin(e){let t=e===``?void 0:Number(e);if(t===void 0||!isNaN(t)){let e=x(this.props.definition.axesDesign)??{};e[this.state.currentAxis]={...e[this.state.currentAxis],min:t},this.props.updateChart(this.props.chartId,{axesDesign:e})}}updateTimeAxisMin(e){let t=this.parseTimeAxisBoundaryValue(e);if(t===null)return;let n=x(this.props.definition.axesDesign)??{};n[this.state.currentAxis]={...n[this.state.currentAxis],min:t},this.props.updateChart(this.props.chartId,{axesDesign:n})}updateAxisMax(e){let t=e===``?void 0:Number(e);if(t===void 0||!isNaN(t)){let e=x(this.props.definition.axesDesign)??{};e[this.state.currentAxis]={...e[this.state.currentAxis],max:t},this.props.updateChart(this.props.chartId,{axesDesign:e})}}updateTimeAxisMax(e){let t=this.parseTimeAxisBoundaryValue(e);if(t===null)return;let n=x(this.props.definition.axesDesign)??{};n[this.state.currentAxis]={...n[this.state.currentAxis],max:t},this.props.updateChart(this.props.chartId,{axesDesign:n})}toggleMajorGrid(e){let t=x(this.props.definition.axesDesign)??{},n=`none`;n=this.isMinorGridEnabled?e?`both`:`minor`:e?`major`:`none`,t[this.state.currentAxis]={...t[this.state.currentAxis],gridLines:n},this.props.updateChart(this.props.chartId,{axesDesign:t})}toggleMinorGrid(e){let t=x(this.props.definition.axesDesign)??{},n=`none`;n=this.isMajorGridEnabled?e?`both`:`major`:e?`minor`:`none`,t[this.state.currentAxis]={...t[this.state.currentAxis],gridLines:n},this.props.updateChart(this.props.chartId,{axesDesign:t})}get currentAxisDesign(){return this.props.definition.axesDesign?.[this.state.currentAxis]}getDefaultMajorGridValue(e){let{useLeftAxis:t,useRightAxis:n}=vf(this.props.definition);if(e===`x`){if(`horizontal`in this.props.definition&&this.props.definition.horizontal||this.props.definition.type===`scatter`)return!0}else if(e===`y`)return!0;else if(e===`y1`)return!t&&n;return!1}get isCategoricalAxis(){if(this.isValueAxis)return!1;let e=this.getXAxisType();return e===void 0||e===`category`}get isTimeAxis(){return this.state.currentAxis===`x`&&this.getXAxisType()===`time`}get canChangeMinorGridVisibility(){if(this.isValueAxis)return!0;if(this.isCategoricalAxis)return!1;let e=this.props.definition.type;return e===`line`||e===`scatter`}parseTimeAxisBoundaryValue(e){let t=N(e,this.env.model.getters.getLocale());return Number.isNaN(t)?null:t}formatAxisBoundary(e){if(e!==void 0)return R(e,{format:`yyyy-mm-dd`,locale:this.env.model.getters.getLocale()})}getXAxisType(){return this.env.model.getters.getChartRuntime(this.props.chartId)?.chartJsConfig.options?.scales?.x?.type}},wT=class extends t.Component{static template=`o-spreadsheet.RadioSelection`;static props={choices:Array,onChange:Function,selectedValue:{optional:!1},name:String,direction:{type:String,optional:!0}};static defaultProps={direction:`horizontal`}},TT=class extends t.Component{static template=`o-spreadsheet.RoundColorPicker`;static components={Section:Z,ColorPicker:Ww};static props={currentColor:{type:String,optional:!0},title:{type:String,optional:!0},onColorPicked:Function,disableNoColor:{type:Boolean,optional:!0}};colorPickerButtonRef=(0,t.useRef)(`colorPickerButton`);state;setup(){this.state=(0,t.useState)({pickerOpened:!1}),(0,t.useExternalListener)(window,`click`,this.closePicker)}closePicker(){this.state.pickerOpened=!1}togglePicker(){this.state.pickerOpened=!this.state.pickerOpened}onColorPicked(e){this.props.onColorPicked(e),this.state.pickerOpened=!1}get colorPickerAnchorRect(){let e=this.colorPickerButtonRef.el;return fm(e)}get buttonStyle(){return W({background:this.props.currentColor})}},ET=class extends t.Component{static template=`o-spreadsheet-GeneralDesignEditor`;static components={RoundColorPicker:TT,ChartTitle:ST,Section:Z,SidePanelCollapsible:vT,RadioSelection:wT};static props={...$w,defaultChartTitleFontSize:{type:Number,optional:!0},slots:{type:Object,optional:!0}};static defaultProps={defaultChartTitleFontSize:16};state;setup(){this.state=(0,t.useState)({activeTool:``})}get title(){return this.props.definition.title}toggleDropdownTool(e,t){let n=this.state.activeTool===e;this.state.activeTool=n?``:e}updateBackgroundColor(e){this.props.updateChart(this.props.chartId,{background:e})}updateTitle(e){let t={...this.title,text:e};this.props.updateChart(this.props.chartId,{title:t})}updateChartTitleStyle(e){let t={...this.title,...e};this.props.updateChart(this.props.chartId,{title:t}),this.state.activeTool=``}},DT=class extends t.Component{static template=`o-spreadsheet-ChartHumanizeNumbers`;static components={Checkbox:Qw};static props=$w;get title(){let e=this.env.model.getters.getLocale();return A(`E.g. 1234567 -> %(value)s`,{value:R(1234567,{format:zo({value:1234567},void 0,e),locale:e})})}},OT=class extends t.Component{static template=`o-spreadsheet-ChartLegend`;static components={Section:Z,Select:Qh};static props={...$w,isDisabled:{type:Boolean,optional:!0}};static defaultProps={isDisabled:!1};updateLegendPosition(e){this.props.updateChart(this.props.chartId,{legendPosition:e})}get legendValues(){return[{value:`none`,label:A(`None`)},{value:`top`,label:A(`Top`)},{value:`bottom`,label:A(`Bottom`)},{value:`left`,label:A(`Left`)},{value:`right`,label:A(`Right`)}]}},kT=class extends t.Component{static template=`o-spreadsheet-SeriesDesignEditor`;static components={SidePanelCollapsible:vT,Section:Z,RoundColorPicker:TT,Select:Qh};static props={...$w,slots:{type:Object,optional:!0}};state=(0,t.useState)({dataSetId:this.getDataSeries()[0]?.dataSetId||``});getRuntime(){let e=this.env.model.getters.getChartRuntime(this.props.chartId);if(!e||!(`customizableSeries`in e))throw Error(`SeriesDesignEditor: chart runtime is not compatible with series customization.`);return e}getDataSeries(){return this.getRuntime().customizableSeries}updateEditedSeries(e){this.state.dataSetId=e}updateDataSeriesColor(e){let t={...this.props.definition.dataSetStyles};t[this.state.dataSetId]={...t[this.state.dataSetId],backgroundColor:e},this.props.updateChart(this.props.chartId,{dataSetStyles:t})}getDataSeriesColor(){let e=this.props.definition.dataSetStyles?.[this.state.dataSetId]?.backgroundColor,t=this.getDataSeries(),n=t.findIndex(e=>e.dataSetId===this.state.dataSetId);return e?ed(e):Md(n,Nd(t.length))}updateDataSeriesLabel(e){let t=e.target.value,n={...this.props.definition.dataSetStyles};n[this.state.dataSetId]={...n[this.state.dataSetId],label:t},this.props.updateChart(this.props.chartId,{dataSetStyles:n})}getDataSeriesLabel(){return this.props.definition.dataSetStyles?.[this.state.dataSetId]?.label||this.getDataSeries().find(e=>e.dataSetId===this.state.dataSetId)?.label||``}get selectOptions(){return this.getDataSeries().map(({label:e,dataSetId:t})=>({value:t,label:e}))}},AT=class extends t.Component{static template=`o-spreadsheet-SeriesWithAxisDesignEditor`;static components={SeriesDesignEditor:kT,Checkbox:Qw,RadioSelection:wT,Section:Z,RoundColorPicker:TT,NumberInput:yT,Select:Qh};static props={...$w,slots:{type:Object,optional:!0}};axisChoices=xf;updateDataSeriesAxis(e,t){let n={...this.props.definition.dataSetStyles};n[e]={...n[e],yAxisId:t===`left`?`y`:`y1`},this.props.updateChart(this.props.chartId,{dataSetStyles:n})}getDataSerieAxis(e){let t=this.props.definition.dataSetStyles;return t?.[e]&&t[e]?.yAxisId===`y1`?`right`:`left`}get canHaveTwoVerticalAxis(){return!(`horizontal`in this.props.definition&&this.props.definition.horizontal)}toggleDataTrend(e,t){let n={...this.props.definition.dataSetStyles};n[e]={...n[e],trend:{type:`polynomial`,order:1,...n[e]?.trend,display:t}},this.props.updateChart(this.props.chartId,{dataSetStyles:n})}getTrendLineConfiguration(e){return this.props.definition.dataSetStyles?.[e]?.trend}getTrendType(e){return e?e.type===`polynomial`&&e.order===1?`linear`:e.type:``}onChangeTrendType(e,t){let n;switch(t){case`linear`:case`polynomial`:n={type:`polynomial`,order:t===`linear`?1:this.getMaxPolynomialDegree(e)};break;case`exponential`:case`logarithmic`:case`trailingMovingAverage`:n={type:t};break;default:return}this.updateTrendLineValue(e,n)}get trendOptions(){return[{value:`linear`,label:A(`Linear`)},{value:`polynomial`,label:A(`Polynomial`)},{value:`exponential`,label:A(`Exponential`)},{value:`logarithmic`,label:A(`Logarithmic`)},{value:`trailingMovingAverage`,label:A(`Trailing moving average`)}]}getPolynomialDegrees(e){return C(1,this.getMaxPolynomialDegree(e)+1).map(e=>({value:e.toString(),label:e.toString()}))}onChangePolynomialDegree(e,t){this.updateTrendLineValue(e,{order:parseInt(t)})}getMaxPolynomialDegree(e){let t=this.env.model.getters.getChartRuntime(this.props.chartId),n=t.customizableSeries.findIndex(t=>t.dataSetId===e);return Math.min(10,t.chartJsConfig.data.datasets[n].data.length-1)}get defaultWindowSize(){return 2}onChangeMovingAverageWindow(e,t){let n=parseInt(t)||2;n<=1&&(n=2),this.updateTrendLineValue(e,{window:n})}getDataSeriesColor(e){let t=this.props.definition.dataSetStyles;if(!t?.[e])return``;let n=t[e]?.backgroundColor,r=this.env.model.getters.getChartRuntime(this.props.chartId),i=r.customizableSeries.findIndex(t=>t.dataSetId===e);return n?ed(n):Md(i,Nd(r.customizableSeries.length))}getTrendLineColor(e){return this.getTrendLineConfiguration(e)?.color??gd(this.getDataSeriesColor(e),.5)}updateTrendLineColor(e,t){this.updateTrendLineValue(e,{color:t})}updateTrendLineValue(e,t){let n={...this.props.definition.dataSetStyles};n[e]={...n[e],trend:{...n[e]?.trend,...t}},this.props.updateChart(this.props.chartId,{dataSetStyles:n})}},jT=class extends t.Component{static template=`o-spreadsheet-ChartShowValues`;static components={Checkbox:Qw};static props={...$w,defaultValue:{type:Boolean,optional:!0}}},MT=class extends t.Component{static template=`o-spreadsheet-ChartWithAxisDesignPanel`;static components={GeneralDesignEditor:ET,SidePanelCollapsible:vT,Section:Z,AxisDesignEditor:CT,SeriesWithAxisDesignEditor:AT,ChartLegend:OT,ChartShowValues:jT,ChartHumanizeNumbers:DT};static props=$w;get axesList(){let{useLeftAxis:e,useRightAxis:t}=vf(this.props.definition),n=[{id:`x`,name:A(`Horizontal axis`)}];return e&&n.push({id:`y`,name:A(t?`Left axis`:`Vertical axis`)}),t&&n.push({id:`y1`,name:A(e?`Right axis`:`Vertical axis`)}),n}},NT=class extends MT{static template=`o-spreadsheet-GenericZoomableChartDesignPanel`;static components={...MT.components,Checkbox:Qw};onToggleZoom(e){this.props.updateChart(this.props.chartId,{zoomable:e})}},PT=class extends NT{static template=`o-spreadsheet-BarChartDesignPanel`;get isZoomable(){return!this.props.definition.horizontal}},FT=class extends t.Component{static template=`o-spreadsheet-BubbleChartConfigPanel`;static components={ChartDataSeries:uT,ChartLabelRange:dT,ChartErrorSection:mT};static props=$w;state=(0,t.useState)({datasetDispatchResult:void 0,labelsDispatchResult:void 0,xRangeDispatchResult:void 0,sizeRangeDispatchResult:void 0});yRanges=[];labelRange;datasetOrientation;xRange;sizeRange;setup(){let e=this.props.definition;this.yRanges=e.yRanges||[],this.labelRange=e.labelRange,this.xRange=e.xRange,this.sizeRange=e.sizeRange,this.datasetOrientation=this.computeDatasetOrientation()}get errorMessages(){return[...this.state.datasetDispatchResult?.reasons||[],...this.state.xRangeDispatchResult?.reasons||[],...this.state.labelsDispatchResult?.reasons||[],...this.state.sizeRangeDispatchResult?.reasons||[]].filter(e=>e!==H.NoChanges).map(e=>lg.Errors[e]||lg.Errors.Unexpected)}get isLabelInvalid(){return!!this.state.labelsDispatchResult?.isCancelledBecause(H.InvalidLabelRange)}get isXDataInvalid(){return!!this.state.xRangeDispatchResult?.isCancelledBecause(H.InvalidXRange)}get isYDataInvalid(){return!!this.state.datasetDispatchResult?.isCancelledBecause(H.InvalidYRange)}get isBubbleSizeRangeInvalid(){return!!this.state.sizeRangeDispatchResult?.isCancelledBecause(H.InvalidBubbleSizeRange)}get dataSetsHaveTitleLabel(){return this.datasetOrientation===`rows`?A(`Use col %(column_name)s as headers`,{column_name:qt(this.calculateHeaderPosition()||0)}):A(`Use row %(row_position)s as headers`,{row_position:this.calculateHeaderPosition()||``})}getDataSeriesRanges(){return this.yRanges.map((e,t)=>({dataRange:e,dataSetId:`${t}`}))}onDataSeriesRangesChanged(e){this.yRanges=e,this.state.datasetDispatchResult=this.props.canUpdateChart(this.props.chartId,{yRanges:this.yRanges})}onDataSeriesConfirmed(){this.datasetOrientation=this.computeDatasetOrientation(),this.state.datasetDispatchResult=this.props.updateChart(this.props.chartId,{yRanges:this.yRanges})}onDataSeriesReordered(e){this.yRanges=e.map(e=>this.yRanges[e]),this.state.datasetDispatchResult=this.props.updateChart(this.props.chartId,{yRanges:this.yRanges})}onDataSeriesRemoved(e){this.yRanges=this.yRanges.filter((t,n)=>n!==e),this.state.datasetDispatchResult=this.props.updateChart(this.props.chartId,{yRanges:this.yRanges})}onLabelRangeChanged(e){this.labelRange=e[0],this.state.labelsDispatchResult=this.props.canUpdateChart(this.props.chartId,{labelRange:this.labelRange})}onLabelRangeConfirmed(){this.state.labelsDispatchResult=this.props.updateChart(this.props.chartId,{labelRange:this.labelRange})}onUpdateDataSetsHaveTitle(e){this.props.updateChart(this.props.chartId,{dataSetsHaveTitle:e})}onXDataRangeChanged(e){this.xRange=e[0],this.state.xRangeDispatchResult=this.props.canUpdateChart(this.props.chartId,{xRange:this.xRange})}onXDataRangeConfirmed(){this.state.xRangeDispatchResult=this.props.updateChart(this.props.chartId,{xRange:this.xRange})}onBubbleSizeRangeChanged(e){this.sizeRange=e[0],this.state.sizeRangeDispatchResult=this.props.canUpdateChart(this.props.chartId,{sizeRange:this.sizeRange})}onBubbleSizeRangeConfirmed(){this.state.sizeRangeDispatchResult=this.props.updateChart(this.props.chartId,{sizeRange:this.sizeRange})}getLabelRangeOptions(){let e=this.props.definition;return[{name:`dataSetsHaveTitle`,label:this.dataSetsHaveTitleLabel,value:e.dataSetsHaveTitle,onChange:this.onUpdateDataSetsHaveTitle.bind(this)}]}calculateHeaderPosition(){if(this.isYDataInvalid)return;let e=this.yRanges[0]??this.xRange??``,t=this.env.model.getters,n=Rc(t,t.getActiveSheetId(),e||``)?.zone;if(n)return this.datasetOrientation===`rows`?n.left:n.top+1}computeDatasetOrientation(){let e=!1,t=!1;for(let n of this.yRanges){let r=this.env.model.getters,i=Rc(r,r.getActiveSheetId(),n)?.zone;if(!i)return;i.top===i.bottom&&(e=!0),i.left===i.right&&(t=!0)}if(e&&!t)return`rows`;if(!e&&t)return`columns`}},IT=class extends t.Component{static template=`o-spreadsheet-BubbleChartDesignPanel`;static components={GeneralDesignEditor:ET,SidePanelCollapsible:vT,Section:Z,AxisDesignEditor:CT,ChartLegend:OT,ChartShowValues:jT,ChartHumanizeNumbers:DT,RadioSelection:wT,RoundColorPicker:TT,Checkbox:Qw};static props=$w;get axesList(){return[{id:`x`,name:A(`Horizontal axis`)},{id:this.verticalAxisPosition===`right`?`y1`:`y`,name:A(`Vertical axis`)}]}colorModeChoices=[{value:`single`,label:A(`Single color`)},{value:`multiple`,label:A(`Multiple colors`)}];axisChoices=xf;get colorMode(){return this.props.definition.bubbleColor.color===`multiple`?`multiple`:`single`}onColorModeChange(e){this.updateBubbleColor(e===`multiple`?`multiple`:wd)}get verticalAxisPosition(){return this.props.definition.verticalAxisPosition??`left`}updateVerticalAxisPosition(e){this.props.updateChart(this.props.chartId,{verticalAxisPosition:e})}updateBubbleColor(e){let t=this.props.definition.bubbleColor;this.props.updateChart(this.props.chartId,{bubbleColor:{...t,color:e}})}get currentBubbleColor(){return this.colorMode===`multiple`?wd:this.props.definition.bubbleColor.color}get areBubblesTransparent(){return this.props.definition.bubbleColor.transparent||!1}updateBubbleTransparency(e){let t=this.props.definition.bubbleColor;this.props.updateChart(this.props.chartId,{bubbleColor:{...t,transparent:e}})}};function LT(e){return e=ed(e).replace(`#`,``),e.length===8?e.slice(6)+e.slice(0,6):e}let RT=Symbol(`NULL`);function zT(e,t,n){let r=e.granularity||`month`;if(!(r in BT))throw Error(`Unknown date granularity: ${r}`);let i=typeof t==`number`||typeof t==`string`?t:RT;if(!BT[r].set.has(t)){BT[r].set.add(t);let a=null;if(typeof t==`number`||typeof t==`string`){let e=aa(t,n);switch(r){case`year`:a=e.getFullYear();break;case`quarter_number`:a=Math.floor(e.getMonth()/3)+1;break;case`month_number`:a=e.getMonth()+1;break;case`month`:a=Math.floor(N(t,n));break;case`iso_week_number`:a=e.getIsoWeek();break;case`day_of_month`:a=e.getDate();break;case`day`:a=Math.floor(N(t,n));break;case`day_of_week`:a=(e.getDay()+7-n.weekStart)%7+1;break;case`hour_number`:a=e.getHours();break;case`minute_number`:a=e.getMinutes();break;case`second_number`:a=e.getSeconds();break}}BT[r].values[i]=Bx(e,a)}return BT[r].values[i]}let BT={year:{set:new Set,values:{}},quarter_number:{set:new Set,values:{}},month_number:{set:new Set,values:{}},month:{set:new Set,values:{}},iso_week_number:{set:new Set,values:{}},day_of_month:{set:new Set,values:{}},day:{set:new Set,values:{}},day_of_week:{set:new Set,values:{}},hour_number:{set:new Set,values:{}},minute_number:{set:new Set,values:{}},second_number:{set:new Set,values:{}}};function VT(){for(let e in BT)BT[e].set.clear(),BT[e].values={}}let HT=Object.freeze({value:null}),UT=Object.freeze({value:0});function WT(e,{labelValues:t,dataSetsValues:n},r){let i=r.getLocale(),a=t.map(({value:e,format:t})=>R(e,{format:t,locale:i}));({labels:a,dataSetsValues:n}=_E(a,n)),e.aggregated&&({labels:a,dataSetsValues:n}=xE(a,n));let o=CE(e.dataSetStyles,n,`left`),s=CE(e.dataSetStyles,n,`right`),c=e.horizontal?{x:o||s}:{y:o,y1:s},l=[];for(let t in n){let{data:r,dataSetId:i}=n[t],a=e.dataSetStyles?.[i]?.trend;if(!a?.display||e.horizontal){l.push(void 0);continue}let o=rE(a,r);l.push(o)}return{dataSetsValues:n,trendDataSetsValues:l,axisFormats:c,labels:a,locale:r.getLocale(),topPadding:TE(e,r),background:Tf(e,r)}}function GT(e,t){switch(t){case`day_of_week`:return lo[e-1].toString();case`hour_number`:{let t=String(e%12).padStart(2,`0`);return A(e<12?`%(hour)s AM`:`%(hour)s PM`,{hour:t})}case`month_number`:return co[e-1].toString();case`iso_week_number`:return A(`W%(weekNumber)s`,{weekNumber:String(e).padStart(2,`0`)});case`quarter_number`:return A(`Q%(value)s`,{value:e});default:return e.toString()}}function KT(e,t,n,r,i){let a={},o=[],s=[],c=[];for(let l=0;l<e?.length;l++){let u=N(zT({granularity:n,type:`date`,displayName:`date`},e[l].value,L),i);u in a||(o.push(u),a[u]={});let d=N(zT({granularity:r,type:`date`,displayName:`date`},e[l].value,L),i);c.includes(d)||(s.push(d),c.push(d)),d in a[u]||(a[u][d]={value:0});let f=t[l];U(f)&&(a[u][d].value+=f.value)}return o.sort((e,t)=>e-t),s.sort((e,t)=>t-e),{dataSetsValues:s.map(e=>({data:o.map(t=>a?.[t]?.[e]),label:GT(e,r),hidden:!1,dataSetId:`0`})),labels:o.map(e=>({value:GT(e,n)}))}}function qT(e,{labelValues:t,dataSetsValues:n},r){let i=t,a=r.getLocale();({labels:i,dataSetsValues:n}=vE(i,n));let o={y:CE(e.dataSetStyles,n,`left`)};return{labels:i,dataSetsValues:n}=KT(i,n[0]?.data??[],e.horizontalGroupBy??`day_of_week`,e.verticalGroupBy??`hour_number`,a),{dataSetsValues:n,axisFormats:o,labels:i.map(({value:e})=>String(e??``)),locale:r.getLocale(),topPadding:TE(e,r),background:Tf(e,r)}}function JT(e,{labelValues:t,dataSetsValues:n},r){let i=WT(e,{labelValues:t,dataSetsValues:n.slice(0,2)},r),a=i.dataSetsValues.filter(e=>!e.hidden),o=[];if(a[0]){let e=a[0].data.map(e=>U(e)&&e.value>0?e:UT);o.push({...a[0],data:e})}if(a[1]){let e=a[1].data.map(e=>U(e)&&e.value>0?{value:-e.value}:UT);o.push({...a[1],data:e})}return{...i,dataSetsValues:o}}function YT(e,{labelValues:t,dataSetsValues:n},r){let i=sE(e,{labelValues:t,dataSetsValues:n}),a=i===`linear`?t.map(({value:e})=>String(e??``)):t.map(({value:e,format:t})=>R(e,{format:t,locale:r.getLocale()}));({labels:a,dataSetsValues:n}=_E(a,n)),i===`time`&&({labels:a,dataSetsValues:n}=gE(a,n)),e.aggregated&&({labels:a,dataSetsValues:n}=xE(a,n)),e.cumulative&&(n=wE(n,`asc`));let o={y:CE(e.dataSetStyles,n,`left`),y1:CE(e.dataSetStyles,n,`right`),x:SE(t)},s=[];for(let t in n){let{data:o,dataSetId:c}=n[t],l=e.dataSetStyles?.[c]?.trend;if(!l?.display){s.push(void 0);continue}s.push(iE(l,o,a,i,r.getLocale()))}return{dataSetsValues:n,axisFormats:o,labels:a,locale:r.getLocale(),trendDataSetsValues:s,axisType:i,topPadding:TE(e,r),background:Tf(e,r)}}function XT(e,{labelValues:t,dataSetsValues:n},r){let i=t.map(({value:e,format:t})=>R(e,{format:t,locale:r.getLocale()}));({labels:i,dataSetsValues:n}=_E(i,n)),e.aggregated&&({labels:i,dataSetsValues:n}=xE(i,n)),{dataSetsValues:n,labels:i}=hE(i,n);let a=CE(e.dataSetStyles,n,`left`);return{dataSetsValues:n,axisFormats:{y:a},labels:i,locale:r.getLocale(),topPadding:TE(e,r),background:Tf(e,r)}}function ZT(e,{labelValues:t,dataSetsValues:n},r){let i=t.map(({value:e,format:t})=>R(e,{format:t,locale:r.getLocale()}));({labels:i,dataSetsValues:n}=_E(i,n)),e.aggregated&&({labels:i,dataSetsValues:n}=xE(i,n));let a={r:CE(e.dataSetStyles,n,`left`)||CE(e.dataSetStyles,n,`right`)};return{dataSetsValues:n,axisFormats:a,labels:i,locale:r.getLocale(),background:Tf(e,r)}}function QT(e,{labelValues:t,dataSetsValues:n},r){n=n.slice(0,1);let i=t.map(({value:e,format:t})=>R(e,{format:t,locale:r.getLocale()}));({labels:i,dataSetsValues:n}=xE(i,n));let a=CE(e.dataSetStyles,n,`left`)||CE(e.dataSetStyles,n,`right`);return{dataSetsValues:n,axisFormats:{y:a},labels:i,locale:r.getLocale(),availableRegions:r.getGeoChartAvailableRegions(),geoFeatureNameToId:r.geoFeatureNameToId,getGeoJsonFeatures:r.getGeoJsonFeatures,background:Tf(e,r)}}function $T(e,{labelValues:t,dataSetsValues:n},r){let i=t.map(({value:e,format:t})=>R(e,{format:t,locale:r.getLocale()}));({labels:i,dataSetsValues:n}=_E(i,n)),e.aggregated&&({labels:i,dataSetsValues:n}=xE(i,n)),e.cumulative&&(n=wE(n,`desc`));let a=CE(e.dataSetStyles,n,`left`)||CE(e.dataSetStyles,n,`right`);return{dataSetsValues:n,axisFormats:{x:a},labels:i,locale:r.getLocale(),background:Tf(e,r)}}function eE(e,{labelValues:t,dataSetsValues:n},r){let i=t;return{labels:i,dataSetsValues:n}=bE(i,n),{labels:i,dataSetsValues:n}=yE(i,n),{dataSetsValues:n,axisFormats:{y:SE(i)},labels:i.map(({value:e})=>String(e??``)),locale:r.getLocale(),background:Tf(e,r)}}function tE(e,t){let n=nE(e,t),r=YT(e,n,t),i=e.labelRange?t.getVisibleRangeValues(e.labelRange):[],a=e.sizeRange?t.getVisibleRangeValues(e.sizeRange):[];n.shouldRemoveFirstLabel&&(i=i.slice(1),a=a.slice(1));let o=[],s=[],c=SE(a);for(let e=0;e<r.dataSetsValues[0].data.length;e++){let t=a[e]?.value,n=i[e],c=n?R(n.value,{format:n.format,locale:r.locale}):``,l=t===null?void 0:Zi(t,r.locale);l!==void 0&&l<0&&(l=void 0),o.push(c?String(c):``),s.push(l)}let l=C(0,s.length).sort((e,t)=>{let n=s[e],r=s[t];return n===void 0&&r===void 0?0:n===void 0?1:r===void 0?-1:r-n});return r.dataSetsValues[0]={...r.dataSetsValues[0],data:l.map(e=>r.dataSetsValues[0].data[e])},{...r,axisFormats:{...r.axisFormats||{},size:c},labels:l.map(e=>r.labels[e]),bubbleLabels:l.map(e=>o[e]),bubbleSizes:l.map(e=>s[e])}}function nE(e,t){let n=e.yRanges[0],r=e.xRange?t.getVisibleRangeValues(e.xRange):n?Array.from({length:t.getVisibleRangeValues(n).length},()=>HT):[],i=n?t.getVisibleRangeValues(n):[],a=gf(r.length,i.length,e.dataSetsHaveTitle||!1);return{labelValues:a?r.slice(1):r,dataSetsValues:[{dataSetId:`0`,label:``,data:a?i.slice(1):i}],shouldRemoveFirstLabel:a}}function rE(e,t){let n=[],r=[],i=[];for(let e=0;e<t.length;e++){let a=t[e];U(a)&&(n.push(a.value),r.push(e+1)),i.push(e+1)}let a=aE(e,n,r,C(.5,i.length+.55,.2));return a.length?a:void 0}function iE(e,t,n,r,i){let a=[],o=[],s=[],c=t.length;if(c<2)return;switch(r){case`category`:for(let e=0;e<c;e++){let n=t[e];U(n)&&(a.push(n.value),o.push(e+1)),s.push(e+1)}break;case`linear`:for(let e=0;e<t.length;e++){let r=Number(n[e]);if(isNaN(r))continue;let i=t[e];U(i)&&(a.push(i.value),o.push(r)),s.push(r)}break;case`time`:for(let e=0;e<t.length;e++){let r=N({value:n[e]},i),c=t[e];U(c)&&(a.push(c.value),o.push(r)),s.push(r)}break}let l=Math.min(...s),u=Math.max(...s);if(u===l)return;let d=5*s.length,f=(u-l)/d,p=aE(e,a,o,C(l,u+f/2,f));if(p.length)return p}function aE(e,t,n,r){if(t.length<2||n.length<2||r.length===0)return[];let{normalizedLabels:i,normalizedNewLabels:a}=oE(n,r,e);try{switch(e.type){case`polynomial`:{let n=e.order;if(!n)return r.map(e=>({x:e,y:NaN}));if(n===1)return lx([t],[i],[a],!0)[0].map((e,t)=>({x:r[t],y:e}));let o=ix(t,i,n,!0).flat();return a.map((e,t)=>({x:r[t],y:ox(o,e,n)}))}case`exponential`:{let e=[],n=[];for(let r=0;r<t.length;r++)t[r]>0&&(e.push(Math.log(t[r])),n.push(i[r]));return n.length?sx(lx([e],[n],[a],!0))[0].map((e,t)=>({x:r[t],y:e})):r.map(e=>({x:e,y:NaN}))}case`logarithmic`:return lx([t],cx([i]),cx([a]),!0)[0].map((e,t)=>({x:r[t],y:e}));case`trailingMovingAverage`:return ux(t,n,e.window);default:return r.map(e=>({x:e,y:NaN}))}}catch{return r.map(e=>({x:e,y:NaN}))}}function oE(e,t,n){let r=[],i=[];if(n.type===`logarithmic`){let n=Math.max(...e.map(Math.abs));r=e.map(e=>e/n),i=t.map(e=>e/n)}else{let n=Math.max(...e),a=n-Math.min(...e);r=e.map(e=>(e-n)/a),i=t.map(e=>(e-n)/a)}return{normalizedLabels:r,normalizedNewLabels:i}}function sE(e,t){return cE(e,t)&&mE()?`time`:lE(e,t)?`linear`:`category`}function cE(e,t){return!e.labelsAsText&&dE(t)}function lE(e,t){return!e.labelsAsText&&fE(t)}function uE(e){return dE(e)||fE(e)}function dE(e){if(!fE(e))return!1;let t=SE(e.labelValues);return!!(t&&If.test(t))}function fE(e){let t=e.labelValues;return!(t.some(e=>!U(e)&&e.value)||t.every(e=>!e.value))}let pE=!1;function mE(){if(!window.Chart)return!1;let e=new window.Chart._adapters._date({})._id===`luxon`;return!e&&!pE&&(pE=!0,console.warn(`'chartjs-adapter-luxon' time adapter is not installed. Time scale axes are disabled.`)),e}function hE(e,t){let n=C(0,Math.max(e.length,...t.map(e=>e.data?.length||0))).filter(e=>t.some(t=>U(t.data[e])&&t.data[e].value>0));return{labels:n.map(t=>e[t]||``),dataSetsValues:t.map(e=>({...e,data:n.map(t=>U(e.data[t])&&e.data[t].value>0?e.data[t]:HT)}))}}function gE(e,t){if(e.length===0||e.every(e=>!e))return{labels:e,dataSetsValues:t};let n=[...e],r=x(t);for(let e=0;e<n.length;e++)if(!n[e]){n[e]=vt(n,e);for(let t of r)t.data[e]=HT}return{labels:n,dataSetsValues:r}}function _E(e,t){let n=C(0,Math.max(e.length,...t.map(e=>e.data?.length||0))).filter(n=>{let r=e[n],i=t.map(e=>e.data?.[n]);return r||i.some(U)});return{labels:n.map(t=>e[t]||``),dataSetsValues:t.map(e=>({...e,data:n.map(t=>U(e.data[t])?e.data[t]:HT)}))}}function vE(e,t){let n=C(0,Math.max(e.length,...t.map(e=>e.data?.length||0))).filter(n=>{let r=e[n],i=t.map(e=>e.data?.[n]);return U(r)&&U(i[0])});return{labels:n.map(t=>e[t]||``),dataSetsValues:t.map(e=>({...e,data:n.map(t=>U(e.data[t])?e.data[t]:HT)}))}}function yE(e,t){let n=Math.max(e.length,...t.map(e=>e.data?.length||0)),r=e=>e===null||e===``,i=C(0,n).filter(n=>{let i=t.map(e=>e.data?.[n]);if(r(i[0]?.value))return!1;let a=!1;for(let e of i)if(a||=r(e?.value),a&&!r(e?.value))return!1;return e[n]&&U(e[n])});return{labels:i.map(t=>e[t]),dataSetsValues:t.map(e=>({...e,data:i.map(t=>e.data[t])}))}}function bE(e,t){let n=[],r=[];for(let t=0;t<e.length;t++)Number(e[t].value)<=0?r.push(t):Number(e[t].value)>0&&n.push(t);let i=n.length?n:r;return{labels:i.map(t=>e[t]),dataSetsValues:t.map(e=>({...e,data:i.map(t=>e.data[t])}))}}function xE(e,t){let n=e=>typeof e==`number`?e:0,r=new Set(e),i={};r.forEach(e=>{i[e]=Array(t.length)});for(let r of C(0,e.length)){let a=e[r];for(let e of C(0,t.length)){let o=t[e].data[r];i[a][e]?i[a][e].value+=n(o?.value):i[a][e]={...o,value:n(o?.value)}}}return{labels:Array.from(r),dataSetsValues:t.map((e,t)=>({...e,data:Array.from(r).map(e=>i[e][t])}))}}function SE(e){return e.find(({format:e})=>e!==void 0)?.format}function CE(e,t,n){let r=t.filter(t=>n===`right`==(e?.[t.dataSetId]?.yAxisId===`y1`));for(let e of r){let t=e.data.find(({format:e})=>e!==void 0&&!To(e));if(t)return t.format}}function wE(e,t){return e.map(e=>{let n=[],r=0,i=t===`asc`?C(0,e.data.length):C(0,e.data.length).reverse();for(let t of i){let i=e.data[t];U(i)?(r+=i.value,n[t]={...i,value:r}):n[t]=HT}return{...e,data:n}})}function TE(e,t){let{title:n,legendPosition:r}=e,i=n&&n.text||r===`top`;return t.isDashboard()&&!i?30:0}function EE(e,t){return{padding:{left:20,right:20,top:Math.max(15,t.topPadding||0),bottom:10}}}function DE(e,t){let n=e.legendPosition;return{padding:{left:20+(n===`left`?70:0),right:20+(n===`right`?70:0),top:Math.max(15,t.topPadding||0),bottom:10}}}function OE({legendPosition:e}){return{display:e!==`none`,position:e===`none`?void 0:e}}function kE(e,t){return{...RE,...OE(e),...BE(ff(e.background),{pointStyle:`rect`,lineWidth:3})}}function AE(e,t){let n=e.fillArea,r=n?`rect`:`line`,i=n?2:3;return{...RE,...OE(e),...BE(ff(e.background),{pointStyle:r,lineWidth:i})}}function jE(e,t){let{dataSetsValues:n}=t,r=Sf(new Fd(Math.max(0,...n.map(e=>e?.data?.length??0)),e.slicesColors),n),i=ff(e.background);return{...OE(e),labels:{usePointStyle:!0,generateLabels:e=>(e.data.labels?.map((e,t)=>({text:Cf(String(e)),strokeStyle:r[t],fillStyle:r[t],pointStyle:`rect`,lineWidth:2,fontColor:i}))||[]).filter(e=>e.text),filter:(e,t)=>`datasetIndex`in e?!t.datasets[e.datasetIndex].hidden:!0}}}function ME(e,t){return{...RE,...OE(e),...BE(ff(e.background),{pointStyle:`circle`,strokeStyle:e.background||`#ffffff`,lineWidth:8})}}function NE(e,t){return e.bubbleColor.color===`multiple`?{...zE,...OE(e),...VE(ff(e.background),{pointStyle:`circle`,strokeStyle:e.background||`#ffffff`,lineWidth:8},t.bubbleLabels)}:{display:!1}}function PE(e,t){return{...RE,...OE(e),...BE(ff(e.background),{lineWidth:3})}}function FE(e,t){let n=ff(e.background),r=e.negativeValuesColor||`#EA6175`,i=e.positiveValuesColor||`#4EA7F2`,a=e.subTotalValuesColor||`#AAAAAA`;return{...OE(e),labels:{usePointStyle:!0,generateLabels:()=>{let t=[{text:A(`Positive values`),fontColor:n,fillStyle:i,strokeStyle:i,pointStyle:`rect`},{text:A(`Negative values`),fontColor:n,fillStyle:r,strokeStyle:r,pointStyle:`rect`}];return(e.showSubTotals||e.firstValueAsSubtotal)&&t.push({text:A(`Subtotals`),fontColor:n,fillStyle:a,strokeStyle:a,pointStyle:`rect`}),t},filter:(e,t)=>`datasetIndex`in e?!t.datasets[e.datasetIndex].hidden:!0},onClick:()=>{}}}function IE(e,t){let n=e.fillArea??!1,r=n?`rect`:`line`,i=n?2:3;return{...RE,...OE(e),...BE(ff(e.background),{pointStyle:r,lineWidth:i})}}function LE(e,t){let n=ff(e.background);return{...OE(e),labels:{usePointStyle:!0,generateLabels:e=>{let t=e.data.datasets.at(-1);return t?t.groupColors.map(({color:e,label:t})=>({text:Cf(t),fontColor:n,fillStyle:e,strokeStyle:e,pointStyle:`rect`})):[]}}}}let RE={onHover:e=>{let t=e.native?.target;t&&(t.style.cursor=`pointer`)},onLeave:e=>{let t=e.native?.target;t&&(t.style.cursor=`default`)},onClick:(e,t,n)=>{if(e.type!==`click`)return;let r=t.datasetIndex;!n.legendItems||r===void 0||(n.chart.isDatasetVisible(r)?n.chart.hide(r):n.chart.show(r),e.native.preventDefault(),e.native.stopPropagation())}},zE={...RE,onClick:(e,t,n)=>{if(e.type!==`click`)return;let r=t.datasetIndex;if(r===void 0)return;let i=n.chart.getDatasetMeta(0),a=i.data[r].hidden;i.data[r].hidden=!a,n.chart.update(),e.native.preventDefault(),e.native.stopPropagation()}};function BE(e,t){return{labels:{color:e,usePointStyle:!0,generateLabels:n=>n.data.datasets.map((r,i)=>wf(r.xAxisID)?{text:Cf(r.label),fontColor:e,strokeStyle:r.borderColor,hidden:!n.isDatasetVisible(i),pointStyle:`line`,datasetIndex:i,lineWidth:3}:{text:Cf(r.label),fontColor:e,strokeStyle:r.borderColor,fillStyle:r.backgroundColor,hidden:!n.isDatasetVisible(i),pointStyle:r.type===`line`?`line`:`rect`,datasetIndex:i,...t}).filter(e=>e.text),filter:(e,t)=>`datasetIndex`in e?!t.datasets[e.datasetIndex].hidden:!0}}}function VE(e,t,n){return{labels:{color:e,usePointStyle:!0,generateLabels:r=>{if(!r.data.datasets[0])return[];let i=r.data.datasets[0].backgroundColor,a=typeof i==`string`?r.data.datasets[0].data.map(()=>i):i;return r.data.datasets[0].data.map((i,o)=>({text:n[o],fontColor:e,strokeStyle:a?.[o],fillStyle:a?.[o],hidden:r.getDatasetMeta(0).data[o].hidden,pointStyle:`rect`,datasetIndex:o,...t})).filter(e=>e.text)},filter:(e,t)=>!0}}}let HE={showValues:!1,showLabels:!0,valuesDesign:{align:`center`,fontSize:13}};function UE(e,t){let{axisFormats:n,locale:r}=t;return{type:e.type,horizontal:`horizontal`in e&&e.horizontal,showValues:`showValues`in e?!!e.showValues:!1,background:()=>e.background,callback:(t,i)=>{let a=JE(e,i);return yf(n,r,e.humanize)(t,a)}}}function WE(e,t){let{locale:n,axisFormats:r}=t,i=(t,n,r)=>e.background,a=t.dataSetsValues.flat().flatMap(e=>e?.data.filter(U)).map(e=>e.value);if(a.length){let t=Math.min(...a),n=Math.max(...a),r=rp(e.colorScale??oS(`oranges`),t,n);i=(t,n,i)=>{let a=n._dataset.values[i];return a===void 0?e.background:ff(r(a))}}return{type:`calendar`,horizontal:!1,showValues:`showValues`in e?!!e.showValues:!1,background:i,callback:(e,t,i)=>{let a=t._dataset.values[i];return a===void 0?``:Ro({value:a,format:r?.y},n)}}}function GE(e,t){let{axisFormats:n,locale:r}=t;return{callback:yf(n,r,e.humanize),showLabels:e.showLabels??HE.showLabels,showValues:e.showValues??HE.showValues,style:{fontSize:e.valuesDesign?.fontSize??HE.valuesDesign.fontSize,align:e.valuesDesign?.align??HE.valuesDesign.align,bold:e.valuesDesign?.bold??HE.valuesDesign.bold,italic:e.valuesDesign?.italic??HE.valuesDesign.italic,textColor:e.valuesDesign?.color??HE.valuesDesign.color}}}function KE(e,t){let{axisFormats:n,locale:r}=t;return{type:`pyramid`,horizontal:!0,showValues:`showValues`in e?!!e.showValues:!1,background:()=>e.background,callback:(e,t)=>(e=Math.abs(Number(e)),e===0?``:yf(n,r)(e,t.xAxisID||`x`))}}function qE(e,t){let{axisFormats:n,locale:r,dataSetsValues:i}=t,a=i.reduce((e,t)=>(e.push((e.at(-1)||-1)+t.data.length+1),e),[]);return{type:`waterfall`,showValues:`showValues`in e?!!e.showValues:!1,background:()=>e.background,callback:(t,i,o)=>{let s=i._dataset.data[o],c=s[1]-s[0],l=c>=0?`+`:``;return e.showSubTotals&&a.includes(o)&&l===`+`&&(l=``),`${l}${yf(n,r,e.humanize)(c,i.yAxisID)}`}}}function JE(e,t){return t.rAxisID?t.rAxisID:(`horizontal`in e&&e.horizontal?t.xAxisID:t.yAxisID)||`y`}function YE({title:e,legendPosition:t,background:n},r){let i=pf(n);return{display:!!e.text,text:e.text?r.dynamicTranslate(e.text):``,color:e?.color??i,align:e.align===`center`?`center`:e.align===`right`?`end`:`start`,font:{size:e.fontSize??16,weight:e.bold?`bold`:`normal`,style:e.italic?`italic`:`normal`},padding:{bottom:t===`top`?0:20}}}let XE;function ZE(e,t={}){return QE(e,t).innerHTML}function QE(e,n={}){XE||=new t.App(t.Component,{templates:`
40
+ <templates>
41
+ <t t-name="o-spreadsheet-CustomTooltip">
42
+ <div
43
+ class="o-chart-custom-tooltip border rounded px-2 py-1 pe-none mw-100 position-absolute text-nowrap shadow opacity-100">
44
+ <table class="overflow-hidden m-0">
45
+ <thead t-if="title">
46
+ <tr>
47
+ <th class="o-tooltip-title align-baseline border-0 text-truncate" t-out="title" t-attf-style="max-width: {{ labelsMaxWidth }}"/>
48
+ </tr>
49
+ </thead>
50
+ <tbody>
51
+ <tr t-foreach="tooltipItems" t-as="tooltipItem" t-key="tooltipItem_index">
52
+ <td>
53
+ <span
54
+ class="badge ps-2 py-2 rounded-0 align-middle"
55
+ t-attf-style="background-color: {{ tooltipItem.boxColor }}"
56
+ > </span>
57
+ <small
58
+ t-if="tooltipItem.label"
59
+ class="o-tooltip-label d-inline-block text-truncate align-middle smaller ms-2"
60
+ t-out="tooltipItem.label"
61
+ t-attf-style="max-width: {{ labelsMaxWidth }}"
62
+ />
63
+ </td>
64
+ <td class="o-tooltip-value ps-2 fw-bolder text-end">
65
+ <small class="smaller d-inline-block text-truncate align-middle" t-attf-style="max-width: {{ valuesMaxWidth }}">
66
+ <t t-out="tooltipItem.value"/>
67
+ <t t-if="tooltipItem.percentage">
68
+ (
69
+ <t t-out="tooltipItem.percentage"/>
70
+ %)
71
+ </t>
72
+ </small>
73
+ </td>
74
+ </tr>
75
+ </tbody>
76
+ </table>
77
+ </div>
78
+ </t>
79
+ </templates>
80
+ `,translateFn:A});let r=XE.getTemplate(e)(n,{}),i=document.createElement(`div`);return t.blockDom.mount(r,i),i}function $E(e,t){return{enabled:!1,external:fD,callbacks:{title:function(e){return e.some(e=>!wf(e.dataset.xAxisID))?void 0:``},beforeLabel:e=>e.dataset?.label||e.label,label:function(n){let r=e.horizontal,i=r?n.parsed.x:n.parsed.y;i??=n.parsed;let a=r?n.dataset.xAxisID:n.dataset.yAxisID;return yf(t.axisFormats,t.locale,e.humanize)(i,a)}}}}function eD(e,t){let{locale:n,axisFormats:r}=t;return{enabled:!1,filter:e=>e.dataset.values[e.dataIndex]!==void 0,external:fD,callbacks:{title:e=>``,beforeLabel:e=>`${e.dataset?.label}, ${e.label}`,label:function(e){let t=e.dataset.values[e.dataIndex];return Ro({value:t,format:r?.y},n)}}}}function tD(e,t){let{axisType:n,locale:r,axisFormats:i}=t,a=i?.x,o={enabled:!1,external:fD,callbacks:{}};return n===`linear`?o.callbacks.label=t=>{let n=t.parsed.y,o=wf(t.dataset.xAxisID)?``:t.parsed.x;typeof o==`string`&&Si(o,r)&&(o=N(o,r));let s=uo(o,a,r,e.humanize),c=t.dataset.yAxisID||`y`,l=uo(n,i?.[c],r,e.humanize);return s?`(${s}, ${l})`:`${l}`}:o.callbacks.label=function(t){let n=t.parsed.y,a=t.dataset.yAxisID;return yf(i,r,e.humanize)(n,a)},o.callbacks.beforeLabel=e=>e.dataset?.label||e.label,o.callbacks.title=function(e){return n!==`linear`&&e.some(e=>!wf(e.dataset.xAxisID))?void 0:``},o}function nD(e,t){let n=t.bubbleSizes.some(w);return{enabled:!1,external:fD,callbacks:{title:()=>``,beforeLabel:e=>t.bubbleLabels[e.dataIndex]??``,label:n=>{let r=t.locale,i=t.labels[n.dataIndex];typeof i==`string`&&Si(i,r)&&(i=N(i,r));let a=t.dataSetsValues[0].data[n.dataIndex].value,o=t.bubbleSizes[n.dataIndex],s=uo(i,t.axisFormats?.x,r,e.humanize),c=uo(a,t.axisFormats?.y,r,e.humanize),l=o!==void 0&&e.sizeRange?uo(o,t.axisFormats?.size,r,e.humanize):void 0,u=[];return s&&u.push(s),c&&u.push(c),(u.length?`(${u.join(`, `)})`:``)+(l?`→ ${l}`:``)}},filter:e=>!n||t.bubbleSizes[e.dataIndex]!==void 0}}function rD(e,t){let{locale:n,axisFormats:r}=t,i=r?.y||r?.y1;return{enabled:!1,external:fD,callbacks:{title:function(e){return e[0].dataset.label},beforeLabel:e=>e.label||e.dataset.label,label:function(t){let r=t.dataset.data,a=t.dataIndex,o=dD(r,a),s=t.parsed.y??t.parsed;return`${uo(s,!i&&s>=1e3?`#,##`:i,n,e.humanize)} (${o}%)`}}}}function iD(e,t){let{dataSetsValues:n,locale:r,axisFormats:i,labels:a}=t,o=i?.y||i?.y1,s=n.map(e=>e.label);return{enabled:!1,external:fD,callbacks:{beforeLabel:function(e){return s[a.length?Math.floor(e.dataIndex/a.length):0]},label:function(t){let[n,i]=t.raw,a=i-n;return uo(a,!o&&Math.abs(a)>1e3?`#,##`:o,r,e.humanize)}}}}function aD(e,t){let n=$E(e,t);return{...n,callbacks:{...n.callbacks,label:e=>{let t={...e,parsed:{y:e.parsed.y,x:Math.abs(e.parsed.x)}};return(n?.callbacks?.label)(t)}}}}function oD(e,t){let{locale:n,axisFormats:r}=t;return{enabled:!1,external:fD,callbacks:{beforeLabel:e=>e.dataset?.label||e.label,label:function(t){let i=t.parsed.r;return uo(i,r?.r,n,e.humanize)}}}}function sD(e,t){let{locale:n,axisFormats:r}=t,i=r?.y||r?.y1;return{enabled:!1,external:fD,filter:function(e){return e.raw.value!==void 0},callbacks:{beforeLabel:e=>e.raw.feature.properties.name,label:function(t){let r=t.raw.value;return uo(r,!i&&Math.abs(r)>=1e3?`#,##`:i,n,e.humanize)}}}}function cD(e,t){return{enabled:!1,external:fD,position:`funnelTooltipPositioner`,callbacks:{title:()=>``,beforeLabel:e=>e.label,label:function(n){let r=n.parsed.x,i=n.dataset.xAxisID;return yf(t.axisFormats,t.locale,e.humanize)(r,i)}}}}function lD(e,t){let{locale:n,axisFormats:r}=t,i=r?.y||r?.y1;return{enabled:!1,external:fD,filter:function(e){return e.raw?.label!==op},callbacks:{title:()=>``,beforeLabel:e=>e.raw.groups.join(` / `),label:function(t){let r=t.raw.value;return uo(r,!i&&r>=1e3?`#,##`:i,n,e.humanize)}}}}function uD(e,t){let{locale:n,axisFormats:r}=t,i=r?.y;return{enabled:!1,external:fD,filter:(e,t,n)=>t===n.length-1,callbacks:{title:()=>``,beforeLabel:e=>{let t=e.raw._data.children[0];if(!t)return``;let n=[];for(let r=0;r<=e.raw.l;r++)n.push(t[r]);return n.join(` / `)},label:t=>{let r=t.raw.v;return uo(r,!i&&r>=1e3?`#,##`:i,n,e.humanize)}}}}function dD(e,t){let n=e.filter(e=>typeof e==`number`).reduce((e,t)=>e+t,0);return n?(e[t]/n*100).toFixed(2):``}function fD({chart:e,tooltip:t}){if(e.canvas.parentNode.querySelector(`div.o-chart-custom-tooltip`)?.remove(),t.opacity===0||t.dataPoints.length===0)return;let n=t.body.map((e,n)=>{let r=e.before[0],i=e.lines[0];i||(i=r,r=``);let a=t.labelColors[n].backgroundColor;return{label:r,value:i,boxColor:typeof a==`string`?gd(a,1):a}}),r=ZE(`o-spreadsheet-CustomTooltip`,{labelsMaxWidth:Math.floor(e.canvas.clientWidth*.5)+`px`,valuesMaxWidth:Math.floor(e.canvas.clientWidth*.25)+`px`,title:t.title[0],tooltipItems:n}),i=Object.assign(document.createElement(`template`),{innerHTML:r}).content.firstChild;e.canvas.parentNode?.appendChild(i),Object.assign(i.style,{left:pD(e,t,i.clientWidth)+`px`,top:Math.floor(t.caretY-i.clientHeight/2)+`px`})}function pD(e,t,n){let r=t.caretX;return r+n>e.chartArea.right?Math.max(0,r-n):r}let mD={sequence:10,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`horizontal`,`axesDesign`,`stacked`,`aggregated`,`showValues`,`zoomable`],fromStrDefinition:e=>({...e,zoomable:e.horizontal?void 0:e.zoomable}),toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},stacked:e.stacked??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`bar`,axesDesign:e.axesDesign,showValues:e.showValues,horizontal:e.horizontal,zoomable:e.zoomable,humanize:e.humanize}},getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){return{...t,backgroundColor:LT(t.background||`#FFFFFF`),fontColor:LT(ff(t.background)),dataSets:n,labelRange:r,verticalAxis:vf(t)}},getRuntime(e,t,{extractData:n},r,i){let a=WT(t,n(),e);return{chartJsConfig:{type:`bar`,data:{labels:a.labels,datasets:sp(t,a)},options:{...Qm,indexAxis:t.horizontal?`y`:`x`,layout:EE(t,a),scales:Vf(t,a),plugins:{title:YE(t,e),legend:kE(t,a),tooltip:$E(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}},customizableSeries:a.dataSetsValues.map(({label:e,dataSetId:t})=>({dataSetId:t,label:e}))}}};function hD(e){return e.dataRange&&!ws.test(e.dataRange)?H.InvalidGaugeDataRange:H.Success}function gD(e,t){return t(t=>t.sectionRule?e(t.sectionRule.rangeMin,`rangeMin`):H.Success,t=>t.sectionRule?e(t.sectionRule.rangeMax,`rangeMax`):H.Success)}function _D(e,t){return t(t=>t.sectionRule?e(t.sectionRule.lowerInflectionPoint.value,`lowerInflectionPointValue`):H.Success,t=>t.sectionRule?e(t.sectionRule.upperInflectionPoint.value,`upperInflectionPointValue`):H.Success)}function vD(e,t){if(e===``)switch(t){case`rangeMin`:return H.EmptyGaugeRangeMin;case`rangeMax`:return H.EmptyGaugeRangeMax}return H.Success}function yD(e,t){if(e.startsWith(`=`))return H.Success;if(isNaN(e))switch(t){case`rangeMin`:return H.GaugeRangeMinNaN;case`rangeMax`:return H.GaugeRangeMaxNaN;case`lowerInflectionPointValue`:return H.GaugeLowerInflectionPointNaN;case`upperInflectionPointValue`:return H.GaugeUpperInflectionPointNaN}return H.Success}let bD={sequence:50,allowedDefinitionKeys:[...Hp.commonKeys,`dataRange`,`sectionRule`],fromStrDefinition(e,t,n){let r=Rc(n,t,e.dataRange);return{...e,dataRange:r}},toStrDefinition(e,t,n){return{...e,dataRange:e.dataRange?n.getRangeString(e.dataRange,t):void 0}},validateDefinition(e,t){return e.checkValidations(t,hD,e.chainValidations(gD(vD,e.batchValidations),gD(yD,e.batchValidations)),e.chainValidations(_D(yD,e.batchValidations)))},transformDefinition(e,t,{adaptRangeString:n,adaptFormulaString:r}){let i;if(e.dataRange){let{changeType:r,range:a}=n(t,e.dataRange);r!==`REMOVE`&&(i=a)}let a=wD(e.sectionRule,e=>r(t,e));return{...e,dataRange:i,sectionRule:a}},getDefinitionFromContextCreation(e,t){return{background:e.background,title:e.title||{text:``},type:`gauge`,dataRange:e.dataSource?.type===`range`?e.dataSource.dataSets?.[0]?.dataRange:void 0,sectionRule:{colors:{lowerColor:`#EA6175`,middleColor:`#FFD86D`,upperColor:`#43C5B1`},rangeMin:`0`,rangeMax:`100`,lowerInflectionPoint:{type:`percentage`,value:`15`,operator:`<=`},upperInflectionPoint:{type:`percentage`,value:`40`,operator:`<=`}},humanize:e.humanize}},duplicateInDuplicatedSheet(e,t,n,r){let i=of(t,n,e.dataRange),a=wD(e.sectionRule,e=>r.copyFormulaStringForSheet(t,n,e,`moveReference`));return{...e,dataRange:i,sectionRule:a}},copyInSheetId(e,t,n,r){let i=wD(e.sectionRule,e=>r.copyFormulaStringForSheet(t,n,e,`keepSameReference`));return{...e,sectionRule:i}},getDefinitionForExcel:()=>void 0,getContextCreation(e){return{...e,dataSource:{type:`range`,dataSets:e.dataRange?[{dataRange:e.dataRange,dataSetId:`1`}]:[]}}},updateRanges(e,t,n){let{adaptFormulaString:r}=t,i=sf(e.dataRange,t),a=wD(e.sectionRule,e=>r(n,e));return{...e,dataRange:i,sectionRule:a}},getRuntime(e,t,n,r){let i=e.getLocale(),a=t.sectionRule.colors,o,s,c,l=t.dataRange;if(l!==void 0){let t=e.getEvaluatedCell({sheetId:l.sheetId,col:l.zone.left,row:l.zone.top});t.type===V.number&&(o=t.value,s=t.formattedValue,c=t.format)}let u=SD(r,t.sectionRule.rangeMin,e),d=SD(r,t.sectionRule.rangeMax,e);if(u===void 0||d===void 0)return CD(t,e);d<u&&([u,d]=[d,u]);let f=t.sectionRule.lowerInflectionPoint,p=t.sectionRule.upperInflectionPoint,m=xD(r,t.sectionRule.lowerInflectionPoint,u,d,e),h=xD(r,t.sectionRule.upperInflectionPoint,u,d,e),g=[],_=[],v=t.humanize,y=t.title;return m!==void 0&&(g.push({value:m,label:uo(m,c,i,v),operator:f.operator}),_.push(a.lowerColor)),h!==void 0&&h!==m&&(g.push({value:h,label:uo(h,c,i,v),operator:p.operator}),_.push(a.middleColor)),h!==void 0&&m!==void 0&&m>h&&(g.reverse(),_.reverse()),_.push(a.upperColor),{background:e.getStyleOfSingleCellChart(t.background,l).background,title:{...y,text:y.text?e.dynamicTranslate(y.text):``},minValue:{value:u,label:uo(u,c,i,v)},maxValue:{value:d,label:uo(d,c,i,v)},gaugeValue:o!==void 0&&s?{value:o,label:v?Ro({value:o,format:c},i):s}:void 0,inflectionValues:g,colors:_}}};function xD(e,t,n,r,i){let a=SD(e,t.value,i);if(a!==void 0)return S(t.type===`number`?a:n+(r-n)*a/100,n,r)}function SD(e,t,n){let r=n.evaluateFormula(e,t);return Jb(r)?void 0:Zi(Kb(r),n.getLocale())}function CD(e,t){return{background:t.getStyleOfSingleCellChart(e.background,e.dataRange).background,title:e.title??{text:``},minValue:{value:0,label:``},maxValue:{value:100,label:``},gaugeValue:{value:0,label:j.GenericError},inflectionValues:[],colors:[]}}function wD(e,t){return{...e,rangeMin:t(e.rangeMin),rangeMax:t(e.rangeMax),lowerInflectionPoint:{...e.lowerInflectionPoint,value:t(e.lowerInflectionPoint.value)},upperInflectionPoint:{...e.upperInflectionPoint,value:t(e.upperInflectionPoint.value)}}}let TD={sequence:20,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`labelsAsText`,`stacked`,`aggregated`,`cumulative`,`axesDesign`,`fillArea`,`showValues`,`hideDataMarkers`,`zoomable`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},labelsAsText:e.labelsAsText??!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`line`,stacked:e.stacked??!1,aggregated:e.aggregated??!1,cumulative:e.cumulative??!1,axesDesign:e.axesDesign,fillArea:e.fillArea,showValues:e.showValues,hideDataMarkers:e.hideDataMarkers,zoomable:e.zoomable,humanize:e.humanize}},getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){return{...t,backgroundColor:LT(t.background||`#FFFFFF`),fontColor:LT(ff(t.background)),dataSets:n,labelRange:r,verticalAxis:vf(t)}},getRuntime(e,t,{extractData:n},r,i){let a=YT(t,n(),e);return{chartJsConfig:{type:`line`,data:{labels:a.labels,datasets:up(t,a)},options:{...Qm,layout:EE(t,a),scales:Wf(t,a),plugins:{title:YE(t,e),legend:AE(t,a),tooltip:tD(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}},customizableSeries:a.dataSetsValues.map(({dataSetId:e,label:t})=>({dataSetId:e,label:t}))}}},ED={sequence:30,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`aggregated`,`isDoughnut`,`pieHolePercentage`,`showValues`,`slicesColors`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`pie`,aggregated:e.aggregated??!1,isDoughnut:e.isDoughnut,pieHolePercentage:e.pieHolePercentage,showValues:e.showValues,humanize:e.humanize,slicesColors:e.slicesColors}},getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){return{...t,backgroundColor:LT(t.background||`#FFFFFF`),fontColor:LT(ff(t.background)),dataSets:n,labelRange:r}},getRuntime(e,t,{extractData:n},r,i){let a=XT(t,n(),e);return{chartJsConfig:{type:t.isDoughnut?`doughnut`:`pie`,data:{labels:a.labels,datasets:mp(t,a)},options:{...Qm,cutout:t.isDoughnut&&t.pieHolePercentage!==void 0?t.pieHolePercentage+`%`:void 0,layout:EE(t,a),plugins:{title:YE(t,e),legend:jE(t,a),tooltip:rD(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}}}}},DD={sequence:70,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`verticalAxisPosition`,`aggregated`,`showSubTotals`,`showConnectorLines`,`firstValueAsSubtotal`,`positiveValuesColor`,`negativeValuesColor`,`subTotalValuesColor`,`zoomable`,`axesDesign`,`showValues`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles?e.dataSetStyles:{},aggregated:e.aggregated??!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`waterfall`,verticalAxisPosition:`left`,showSubTotals:e.showSubTotals??!1,showConnectorLines:e.showConnectorLines??!0,firstValueAsSubtotal:e.firstValueAsSubtotal??!1,axesDesign:e.axesDesign,showValues:e.showValues,zoomable:e.zoomable??!1,humanize:e.humanize}},getDefinitionForExcel:()=>void 0,getRuntime(e,t,{extractData:n},r,i){let a=WT(t,n(),e),{labels:o,datasets:s}=lp(t,a);return{chartJsConfig:{type:`bar`,data:{labels:o,datasets:s},options:{...Qm,layout:EE(t,a),scales:Yf(t,a),plugins:{title:YE(t,e),legend:FE(t,a),tooltip:iD(t,a),chartShowValuesPlugin:qE(t,a),waterfallLinesPlugin:{showConnectorLines:t.showConnectorLines},background:{color:a.background}},...i}}}}};var OD=l({AbstractChart:()=>Hp,BarChart:()=>mD,CHART_AXIS_CHOICES:()=>xf,CHART_COMMON_OPTIONS:()=>Qm,GaugeChart:()=>bD,LineChart:()=>TD,MOVING_AVERAGE_TREND_LINE_XAXIS_ID:()=>rf,PieChart:()=>ED,SPREADSHEET_TO_EXCEL_TRENDLINE_TYPE_MAPPING:()=>af,ScorecardChart:()=>Qp,TREND_LINE_XAXIS_ID:()=>`x1`,WaterfallChart:()=>DD,adaptChartRange:()=>sf,chartFontColor:()=>ff,chartMutedFontColor:()=>pf,chartToImageFile:()=>eh,chartToImageUrl:()=>$m,checkDataset:()=>mf,checkLabelRange:()=>hf,createDataSets:()=>cf,drawChartOnCanvas:()=>ih,drawScoreChart:()=>$p,duplicateLabelRangeInDuplicatedSheet:()=>of,formatChartDatasetValue:()=>yf,formatTickValue:()=>bf,getChartBackgroundColor:()=>Tf,getChartPositionAtCenterOfViewport:()=>_f,getDefinedAxis:()=>vf,getPieColors:()=>Sf,isTrendLineAxis:()=>wf,shouldRemoveFirstLabel:()=>gf,toExcelDataset:()=>uf,toExcelLabelRange:()=>df,truncateLabel:()=>Cf}),kD=class extends t.Component{static template=`o-spreadsheet-ChartRangeDataSource`;static components={ChartDataSeries:uT,ChartLabelRange:dT};static props={chartId:String,definition:Object,dataSource:Object,updateChart:Function,canUpdateChart:Function,onErrorMessagesChanged:{type:Function,optional:!0},dataSeriesTitle:{type:String,optional:!0},labelRangeTitle:{type:String,optional:!0},getLabelRangeOptions:{type:Function,optional:!0}};state=(0,t.useState)({datasetDispatchResult:void 0,labelsDispatchResult:void 0});dataSets=[];labelRange;datasetOrientation=void 0;chartTerms=lg;setup(){this.dataSets=this.props.dataSource.dataSets??[],this.labelRange=this.props.dataSource.labelRange,this.props.dataSource.type===`range`&&(this.datasetOrientation=this.computeDatasetOrientation())}get errorMessages(){return[...this.state.datasetDispatchResult?.reasons||[],...this.state.labelsDispatchResult?.reasons||[]].filter(e=>e!==H.NoChanges).map(e=>lg.Errors[e]||lg.Errors.Unexpected)}get isDatasetInvalid(){return!!this.state.datasetDispatchResult?.isCancelledBecause(H.InvalidDataSet)}get isLabelInvalid(){return!!this.state.labelsDispatchResult?.isCancelledBecause(H.InvalidLabelRange)}get dataSetsHaveTitleLabel(){return this.datasetOrientation===`rows`?A(`Use col %(column_name)s as headers`,{column_name:qt(this.calculateHeaderPosition()||0)}):A(`Use row %(row_position)s as headers`,{row_position:this.calculateHeaderPosition()||``})}getLabelRangeOptions(){if(this.props.getLabelRangeOptions){let e=this.props.getLabelRangeOptions();return e.push({name:`dataSetsHaveTitle`,label:this.dataSetsHaveTitleLabel,value:this.props.dataSource.dataSetsHaveTitle,onChange:this.onUpdateDataSetsHaveTitle.bind(this)}),e}let e=this.props.definition;return[{name:`aggregated`,label:this.chartTerms.AggregatedChart,value:(`aggregated`in e?e.aggregated:!1)??!1,onChange:this.onUpdateAggregated.bind(this)},{name:`dataSetsHaveTitle`,label:this.dataSetsHaveTitleLabel,value:this.props.dataSource.dataSetsHaveTitle,onChange:this.onUpdateDataSetsHaveTitle.bind(this)}]}onUpdateDataSetsHaveTitle(e){this.props.updateChart(this.props.chartId,{dataSource:{...this.props.dataSource,dataSetsHaveTitle:e}})}get canChangeDatasetOrientation(){let e=new Set,t=[],n=this.env.model.getters.getActiveSheetName(),r=this.dataSets.map(e=>e.dataRange);this.labelRange&&r.push(this.labelRange);for(let i of r){if(!_n(i))return!1;let r=As(i),a=mn(r.xc);if(a.bottom===void 0||a.right===void 0||(t.push(a),e.add(r.sheetName||n),e.size>1))return!1}let i=tr(t);if(i.length!==1)return!1;let{left:a,right:o,top:s,bottom:c}=i[0];return!t.some(e=>(e.top!==s||e.bottom!==c)&&(e.left!==a||e.right!==o))}computeDatasetOrientation(){let e=!1,t=!1;for(let n of this.dataSets){if(!_n(n.dataRange))return;let r=mn(n.dataRange);if(r.bottom===void 0||r.right===void 0)return;r.top===r.bottom&&(e=!0),r.left===r.right&&(t=!0)}if(e&&!t)return`rows`;if(!e&&t)return`columns`}setDatasetOrientation(e){let t=this.props.dataSource,n=t.dataSets.map(e=>e.dataRange),r=this.transposeDataSet([t.labelRange,...n],e);if(r.length===0)return;let i=r.length>1?r.shift().dataRange:``;this.props.updateChart(this.props.chartId,{dataSource:{...t,labelRange:i,dataSets:r}}),this.dataSets=r,this.labelRange=i,this.datasetOrientation=e}onDataSeriesRangesChanged(e){this.dataSets=e.map((e,t)=>({dataSetId:this.dataSets?.[t]?.dataSetId??G.smallUuid(),dataRange:e})),this.state.datasetDispatchResult=this.props.canUpdateChart(this.props.chartId,{dataSource:{...this.props.dataSource,dataSets:this.dataSets}}),this.props.onErrorMessagesChanged?.(this.errorMessages)}onDataSeriesReordered(e){let t=kp(this.props.definition.dataSetStyles,this.dataSets);this.datasetOrientation=void 0;let n={...this.props.definition.dataSetStyles};for(let e of this.dataSets){let r=t.next();n[e.dataSetId]={backgroundColor:r,...n[e.dataSetId]}}this.dataSets=e.map(e=>this.dataSets[e]),this.state.datasetDispatchResult=this.props.updateChart(this.props.chartId,{dataSource:{...this.props.dataSource,dataSets:this.dataSets},dataSetStyles:n}),this.props.onErrorMessagesChanged?.(this.errorMessages)}onDataSeriesRemoved(e){let t=kp(this.props.definition.dataSetStyles,this.dataSets),n={...this.props.definition.dataSetStyles};for(let e of this.dataSets){let r=t.next();n[e.dataSetId]={backgroundColor:r,...n[e.dataSetId]}}let r=this.dataSets[e].dataSetId;delete n[r],this.dataSets=this.dataSets.filter((t,n)=>n!==e),this.state.datasetDispatchResult=this.props.updateChart(this.props.chartId,{dataSource:{...this.props.dataSource,dataSets:this.dataSets},dataSetStyles:n}),this.props.onErrorMessagesChanged?.(this.errorMessages)}onDataSeriesConfirmed(){let{dataSets:e,dataSetStyles:t}=this.splitRanges();if(this.dataSets=e,this.datasetOrientation=this.computeDatasetOrientation(),this.state.datasetDispatchResult=this.props.updateChart(this.props.chartId,{dataSource:{...this.props.dataSource,dataSets:this.dataSets},dataSetStyles:t}),this.state.datasetDispatchResult.isSuccessful){let e=this.env.model.getters.getChartDefinition(this.props.chartId);e.dataSource.type===`range`&&(this.dataSets=e.dataSource.dataSets)}this.props.onErrorMessagesChanged?.(this.errorMessages)}splitRanges(){let e=[],t={},n=this.env.model.getters.getChartDefinition(this.props.chartId).dataSetStyles||{};for(let r of this.dataSets){let i=r.dataRange;if(!this.env.model.getters.isRangeValid(i)){e.push(r);continue}let{sheetName:a}=As(i),o=a?`${a}!`:``,s=mn(i);if(s.bottom!==s.top&&s.left!==s.right){if(this.datasetOrientation!==`rows`){if(s.right!==void 0)for(let i=s.left;i<=s.right;++i){let a=r.dataSetId+`_split`+i;t[a]=i===s.left?n[r.dataSetId]:{yAxisId:n[r.dataSetId]?.yAxisId},e.push({dataSetId:a,dataRange:`${o}${bn({left:i,right:i,top:s.top,bottom:s.bottom})}`})}else if(s.bottom!==void 0)for(let i=s.top;i<=s.bottom;++i){let a=r.dataSetId+`_split`+i;t[a]=i===s.top?n[r.dataSetId]:{yAxisId:n[r.dataSetId]?.yAxisId},e.push({dataSetId:a,dataRange:`${o}${bn({left:s.left,right:s.right,top:i,bottom:i})}`})}}else if(s.bottom!==void 0)for(let i=s.top;i<=s.bottom;++i){let a=r.dataSetId+`_split`+i;t[a]=i===s.top?n[r.dataSetId]:{yAxisId:n[r.dataSetId]?.yAxisId},e.push({dataSetId:a,dataRange:`${o}${bn({left:s.left,right:s.right,top:i,bottom:i})}`})}else if(s.right!==void 0)for(let i=s.left;i<=s.right;++i){let a=r.dataSetId+`_split`+i;t[a]=i===s.left?n[r.dataSetId]:{yAxisId:n[r.dataSetId]?.yAxisId},e.push({dataSetId:a,dataRange:`${o}${bn({left:i,right:i,top:s.top,bottom:s.bottom})}`})}}else e.push(r),t[r.dataSetId]=n[r.dataSetId]}return{dataSets:e,dataSetStyles:t}}getDataSeriesRanges(){return this.dataSets}onLabelRangeChanged(e){this.labelRange=e[0],this.state.labelsDispatchResult=this.props.canUpdateChart(this.props.chartId,{dataSource:{...this.props.dataSource,labelRange:this.labelRange}})}onLabelRangeConfirmed(){this.state.labelsDispatchResult=this.props.updateChart(this.props.chartId,{dataSource:{...this.props.dataSource,labelRange:this.labelRange}})}getLabelRange(){return this.labelRange||``}onUpdateAggregated(e){this.props.updateChart(this.props.chartId,{aggregated:e})}calculateHeaderPosition(){if(this.isDatasetInvalid||this.isLabelInvalid)return;let e=this.env.model.getters,t=e.getActiveSheetId(),n=Rc(e,t,this.labelRange),r=cf(e,t,this.props.dataSource);if(r.length)return this.datasetOrientation===`rows`?r[0].dataRange.zone.left:r[0].dataRange.zone.top+1;if(n)return n.zone.top+1}get maxNumberOfUsedRanges(){return ny.get(this.props.definition.type).dataSeriesLimit}transposeDataSet(e,t){let n=this.env.model.getters;if(t===void 0)return e.filter(w).map(e=>({dataRange:e,dataSetId:G.smallUuid()}));let r={},i=[],a=n.getFigureIdFromChartId(this.props.chartId),o=n.getFigureSheetId(a),s=n.getActiveSheet().name;o&&(s=n.getSheet(o).name);for(let t of e){if(!t)continue;if(!_n(t))return e.filter(w).map(e=>({dataRange:e,dataSetId:G.smallUuid()}));let{sheetName:n,xc:i}=As(t);n??=s,r[n]||(r[n]=[]),r[n]?.push(hn(i))}for(let e in r){let n=r[e],a=tr(n);if(t===`columns`)for(let t of a)for(let n=t.left;n<=t.right;n++){let r=`${e===s?``:e+`!`}${bn({...t,left:n,right:n})}`;i.push({dataRange:r,dataSetId:G.smallUuid()})}else for(let t of a)for(let n=t.top;n<=t.bottom;n++){let r=`${e===s?``:e+`!`}${bn({...t,top:n,bottom:n})}`;i.push({dataRange:r,dataSetId:G.smallUuid()})}}return i}},AD=class e{dataSource;constructor(e,t,n,r,i){this.getters=e,this.sheetId=t,this.definition=n,this.chartTypeBuilder=r,this.dataSourceBuilder=i,this.dataSource=n.dataSource}static fromStrDefinition(t,n,r){let i=ty.get(r.dataSource?.type??`none`),a=ny.get(r.type),o=i.fromExternalDefinition(r.dataSource??{type:`none`},n,t),s={...a.fromStrDefinition(r,n,t),dataSource:o};return new e(t,n,e.deleteInvalidKeys(s),a,i)}static fromDefinition(t,n,r){let i=ty.get(r.dataSource?.type??`none`);return new e(t,n,r,ny.get(r.type),i)}static validate(e,t){let n=ny.get(t.type),r=ty.get(t.dataSource?.type??`none`);return e.batchValidations(()=>n.validateDefinition(e,t),()=>r.validate(t.dataSource??{type:`none`},e))(void 0)}static transformDefinition(e,t,n){let r=ny.get(t.type);if(!t.dataSource)return r.transformDefinition(t,e,n);let i=ty.get(t.dataSource?.type??`none`).transform(t.dataSource,e,n);return{...r.transformDefinition(t,e,n),dataSource:i}}getSupportedChartTypes(){return new Set(this.dataSourceBuilder.supportedChartTypes)}getRangeDefinition(){return{...this.definition,dataSource:this.dataSource}}getDefinition(){return{...this.chartTypeBuilder.toStrDefinition(this.definition,this.sheetId,this.getters),dataSource:this.dataSource&&this.dataSourceBuilder.getDefinition(this.dataSource,this.sheetId,this.getters)}}updateRanges(e){return{...this.chartTypeBuilder.updateRanges(this.definition,e,this.sheetId),dataSource:this.dataSource&&this.dataSourceBuilder.adaptRanges(this.dataSource,e)}}duplicateInDuplicatedSheet(t,n){let r=this.dataSource&&this.dataSourceBuilder.duplicateInDuplicatedSheet(this.dataSource,t,n,this.getters),i={...this.chartTypeBuilder.duplicateInDuplicatedSheet(this.definition,t,n,this.getters),dataSource:r};return e.fromDefinition(this.getters,n,i).getDefinition()}copyInSheetId(e){return{...this.chartTypeBuilder.copyInSheetId(this.definition,this.sheetId,e,this.getters),dataSource:this.dataSource}}getContextCreation(){let e=this.getDefinition();return{...this.dataSourceBuilder.getContextCreation(e.dataSource??{type:`none`}),...this.chartTypeBuilder.getContextCreation(e,this.dataSourceBuilder,e.dataSource)}}getDefinitionForExcel(e){let t=this.definition,n=this.dataSourceBuilder.toExcelDataSets(this.dataSource,`dataSetStyles`in t?t.dataSetStyles:{},e);if(n!==void 0)return this.chartTypeBuilder.getDefinitionForExcel(e,t,n)}getData(e,t){let n=this.dataSource;return n?this.dataSourceBuilder.extractData(n,t,e):{dataSetsValues:[],labelValues:[]}}getRuntime(e,t){let n=this.dataSource,r=n?{extractData:()=>this.dataSourceBuilder.extractData(n,t,e),extractHierarchicalData:()=>this.dataSourceBuilder.extractHierarchicalData(n,t,e)}:{extractData:()=>({dataSetsValues:[],labelValues:[]}),extractHierarchicalData:()=>({dataSetsValues:[],labelValues:[]})};return this.chartTypeBuilder.getRuntime(e,this.definition,r,this.sheetId,{onClick:(n,r,i)=>this.dataSourceBuilder.onDataSetClick?.(this.definition.type,t,n,r,i,e)})}static deleteInvalidKeys(e){e={...e};let t=new Set(ny.get(e.type).allowedDefinitionKeys);for(let n of Object.keys(e))t.has(n)||delete e[n];return e}};let jD=Object.freeze({value:null}),MD=Object.freeze({value:1}),ND={supportedChartTypes:aS,fromExternalDefinition(e,t,n){let r=cf(n,t,e),i=Rc(n,t,e.labelRange);return{...e,dataSets:r,labelRange:i}},fromContextCreation(e){return{type:`range`,dataSets:[],dataSetsHaveTitle:!1,...e.dataSource}},fromHierarchicalContextCreation(e){if(e.dataSource?.type!==`range`||e.hierarchicalDataSource?.type!==`range`)return{type:`range`,dataSets:[],dataSetsHaveTitle:!1};let t={type:`range`,dataSets:[],dataSetsHaveTitle:e.dataSource?.dataSetsHaveTitle??!1,labelRange:e.dataSource?.dataSets?.[0]?.dataRange};return e.hierarchicalDataSource?.dataSets.length?t=e.hierarchicalDataSource:e.auxiliaryRange&&(t={...t,dataSets:[{dataRange:e.auxiliaryRange,dataSetId:`0`}]}),t},validate:(e,t)=>t.checkValidations(e,mf,hf),transform(e,t,{adaptRangeString:n}){let r;if(e.labelRange){let{changeType:i,range:a}=n(t,e.labelRange);i!==`REMOVE`&&(r=a)}let i=[];for(let r of e.dataSets){let e={...r},{changeType:a,range:o}=n(t,r.dataRange);a!==`REMOVE`&&(e.dataRange=o,i.push(e))}return{...e,dataSets:i,labelRange:r}},extractData:(e,t,n)=>PD(n,e),extractHierarchicalData(e,t,n){let r=e.dataSets,i=e.labelRange,a=ID(n,r,i),o=LD(n,r),s={labelValues:a,dataSetsValues:o};return gf(a.length,o[0]?.data.length+(o[0]?.label===void 0?0:1),e.dataSetsHaveTitle||!1)&&a.shift(),s},adaptRanges(e,{applyChange:t}){let n=e.dataSets.map(e=>{let{range:n,changeType:r}=t(e.dataRange);if(r===`REMOVE`)return;let i;if(e.labelCell){let{range:n,changeType:r}=t(e.labelCell);r!==`REMOVE`&&(i=n)}return{...e,dataRange:n,labelCell:i}}).filter(w),r=e.labelRange;if(r){let{range:e,changeType:n}=t(r);r=n===`REMOVE`?void 0:e}let i=n;return{...e,dataSets:i,labelRange:r?.invalidSheetName||r?.invalidXc?void 0:r}},getDefinition(e,t,n){return{labelRange:e.labelRange?n.getRangeString(e.labelRange,t):void 0,type:`range`,dataSets:e.dataSets.map(e=>({dataSetId:e.dataSetId,dataRange:n.getRangeString(e.dataRange,t)})),dataSetsHaveTitle:e.dataSetsHaveTitle}},duplicateInDuplicatedSheet(e,t,n,r){return{...e,labelRange:of(t,n,e.labelRange),dataSets:e.dataSets.map(e=>({...e,dataRange:Lc(t,n,e.dataRange)}))}},getContextCreation:e=>({auxiliaryRange:e.labelRange,dataSource:e}),getHierarchicalContextCreation(e){let t=e.dataSets.at(-1)?.dataRange,n=e.dataSetsHaveTitle;return{auxiliaryRange:t,hierarchicalDataSource:e,dataSource:e.labelRange?{type:`range`,dataSets:[{dataRange:e.labelRange,dataSetId:`0`}],dataSetsHaveTitle:n}:{type:`range`,dataSets:[],dataSetsHaveTitle:n}}},toExcelDataSets(e,t,n){let r=e.dataSets,i=e.labelRange,a=r.map(e=>uf(n,t,e)).filter(e=>e.range!==``&&e.range!==j.InvalidReference),o=r[0]?Kn(r[0].dataRange.zone):void 0;return{dataSets:a,labelRange:df(n,i,gf(i?Kn(i.zone):0,o,e.dataSetsHaveTitle))}}};function PD(e,t){let n=t.dataSets,r=t.labelRange,i=ID(e,n,r),a=FD(e,n),o={labelValues:i,dataSetsValues:a},s=a.length?a[0]?.data.length+(a[0]?.label===void 0?0:1):0;return gf(i.length,s,t.dataSetsHaveTitle||!1)&&i.shift(),o}function FD(e,t){let n=[];for(let[r,i]of Object.entries(t)){let t=`${lg.Series} ${parseInt(r)+1}`,a=e.isColHidden(i.dataRange.sheetId,i.dataRange.zone.left);if(i.labelCell){let{sheetId:n,zone:r}=i.labelCell,a=e.getEvaluatedCell({sheetId:n,col:r.left,row:r.top});a&&(t=a.formattedValue)}let o=i.dataRange?RD(e,i):[];o.every(e=>!e.value||cu(e))&&o.filter(cu).length>1?o=o.map(e=>e.value&&lu(e)?MD:jD):o.every(e=>!U(e))&&(a=!0),n.push({data:o,label:t,hidden:a,dataSetId:i.dataSetId})}return n}function ID(e,t,n){if(n){let{left:t}=n.zone;if(!n.invalidXc&&!n.invalidSheetName&&!e.isColHidden(n.sheetId,t))return e.getVisibleRangeValues(n)}if(t[0]){let n=RD(e,t[0]).length;return Array.from({length:n},()=>({value:``}))}return[]}function LD(e,t){t=t.filter(t=>!e.isColHidden(t.dataRange.sheetId,t.dataRange.zone.left));let n=t.map(e=>({data:[],label:``,dataSetId:e.dataSetId})),r=e.getLocale(),i=t.map(t=>RD(e,t)).map(e=>e.map(({value:e,format:t})=>e===null?jD:{value:R(e,{format:t,locale:r})}));if(!i.length)return n;let a=Math.min(...i.map(e=>e.length)),o=[],s=t.length-1;for(let e=0;e<a;e++)for(let t=0;t<i.length;t++){let r=i[t][e];(r===void 0||r.value===null)&&t!==s&&(r=o[t]),r?.value!==o[t]?.value&&(o=o.slice(0,t),o[t]=r),n[t].data.push(r??jD)}return n.filter(e=>e.data.some(e=>e.value!==null))}function RD(e,t){if(t.dataRange){let n=t.labelCell?[t.labelCell.zone]:[],r=rn([t.dataRange.zone],n)[0];if(r===void 0)return[];let i=e.getRangeFromZone(t.dataRange.sheetId,r);return e.getVisibleRangeValues(i).map(e=>e.value===``?jD:e)}return[]}ty.add(`range`,ND),ty.add(`none`,{supportedChartTypes:[],fromExternalDefinition:()=>({type:`none`}),fromContextCreation:()=>({type:`none`}),fromHierarchicalContextCreation:()=>({type:`none`}),validate:()=>H.Success,transform:()=>({type:`none`}),extractData:()=>({dataSetsValues:[],labelValues:[]}),extractHierarchicalData:()=>({dataSetsValues:[],labelValues:[]}),adaptRanges:e=>e,getDefinition:e=>e,duplicateInDuplicatedSheet:e=>e,getContextCreation:()=>({}),getHierarchicalContextCreation:()=>({}),toExcelDataSets:()=>({dataSets:[],labelRange:void 0})});let zD=[`year`,`quarter_number`,`month_number`,`iso_week_number`,`day_of_month`,`day_of_week`,`hour_number`,`minute_number`,`second_number`];var BD=class extends hT{static template=`o-spreadsheet-CalendarChartConfigPanel`;static components={...hT.components,Select:Qh};groupByChoices=zD.map(e=>({value:e,label:Nx[e]}));getGroupByOptions(){let e=this.env.model.getters.getFigureSheetId(this.env.model.getters.getFigureIdFromChartId(this.props.chartId)),t=AD.fromStrDefinition(this.env.model.getters,e,this.props.definition).getRangeDefinition(),n=WT(t,PD(this.env.model.getters,t.dataSource),this.env.model.getters).labels.filter(e=>Wr(e,L));if(n.length===0)return[];let r=n.map(e=>aa(e,this.env.model.getters.getLocale())),i=new Set,a=new Set,o=new Set,s=new Set,c=new Set,l=new Set;for(let e of r)i.add(e.getFullYear()),a.add(e.getMonth()),o.add(e.getDate()),s.add(e.getHours()),c.add(e.getMinutes()),l.add(e.getSeconds());return this.groupByChoices.filter(e=>{switch(e.value){case`year`:return i.size>1;case`quarter_number`:case`month_number`:return a.size>1;case`iso_week_number`:case`day_of_month`:case`day_of_week`:return o.size>1;case`hour_number`:return s.size>1;case`minute_number`:return c.size>1;case`second_number`:return l.size>1;default:return!1}})}getGroupByType(e){return(e===`horizontal`?this.props.definition.horizontalGroupBy:this.props.definition.verticalGroupBy)||`year`}updateGroupBy(e,t){this.props.updateChart(this.props.chartId,{[e===`horizontal`?`horizontalGroupBy`:`verticalGroupBy`]:t})}},VD=class extends t.Component{static template=`o-spreadsheet-ColorScalePicker`;static components={Section:Z,RoundColorPicker:TT,Popover:qh};static props={definition:Object,onUpdateColorScale:Function};colorScales=zd.map(e=>({value:e,label:lg.ColorScales[e],className:`${e}-color-scale`}));state=(0,t.useState)({popoverProps:void 0,popoverStyle:``});popoverRef=(0,t.useRef)(`popoverRef`);setup(){(0,t.useExternalListener)(window,`click`,this.closePopover)}get currentColorScale(){return this.props.definition.colorScale||oS(`oranges`)}get currentColorScaleStyle(){let e=this.currentColorScale,t=e.minColor||`#fff`,n=e.midColor,r=e.maxColor||`#000`;return n?`background: linear-gradient(90deg, ${t}, ${n}, ${r});`:`background: linear-gradient(90deg, ${t}, ${r});`}colorScalePreviewStyle(e){return`background: linear-gradient(90deg, ${Rd[e].join(`,`)});`}get currentColorScaleLabel(){return lg.ColorScales[this.selectedColorScale]}onColorScaleChange(e){e===`custom`?this.props.onUpdateColorScale(fe):this.props.onUpdateColorScale(oS(e)),this.closePopover()}onPointerDown(e){if(this.state.popoverProps){this.closePopover();return}let{bottom:t,right:n,width:r}=e.currentTarget.getBoundingClientRect();this.state.popoverProps={anchorRect:{x:n,y:t,width:0,height:0},positioning:`top-right`,verticalOffset:0},this.state.popoverStyle=W({width:`${r}px`})}closePopover(){this.state.popoverProps=void 0}get selectedColorScale(){if(!this.props.definition.colorScale)return`oranges`;let{minColor:e,midColor:t,maxColor:n}=this.props.definition.colorScale||{};for(let[r,i]of Object.entries(Rd))if(i[0]===e&&i[2]===n&&i[1]===t)return r;return`custom`}getCustomColorScaleColor(e){return this.props.definition.colorScale?.[e]??``}setCustomColorScaleColor(e,t){!t&&e!==`midColor`&&(t=`#fff`);let n=this.currentColorScale;n&&this.props.onUpdateColorScale({...n,[e]:t})}},HD=class extends t.Component{static template=`o-spreadsheet-CalendarChartDesignPanel`;static components={GeneralDesignEditor:ET,SidePanelCollapsible:vT,Section:Z,AxisDesignEditor:CT,ChartShowValues:jT,ColorScalePicker:VD,RoundColorPicker:TT,Select:Qh};static props=$w;get axesList(){return[{id:`x`,name:A(`Horizontal axis`)},{id:`y`,name:A(`Vertical axis`)}]}onColormapChange(e){this.props.updateChart(this.props.chartId,{colorScale:e})}updateMissingValueColor(e){this.props.updateChart(this.props.chartId,{missingValueColor:e})}get selectedMissingValueColor(){return this.props.definition.missingValueColor}updateLegendPosition(e){this.props.updateChart(this.props.chartId,{legendPosition:e})}get legendValues(){return[{value:`none`,label:A(`None`)},{value:`right`,label:A(`Right`)},{value:`left`,label:A(`Left`)}]}},UD=class extends t.Component{static template=`o-spreadsheet-ChartShowDataMarkers`;static components={Checkbox:Qw};static props=$w},WD=class extends NT{static template=`o-spreadsheet-ComboChartDesignPanel`;static components={...NT.components,ChartShowDataMarkers:UD,RadioSelection:wT};seriesTypeChoices=[{value:`bar`,label:A(`Bar`)},{value:`line`,label:A(`Line`)}];updateDataSeriesType(e,t){let n={...this.props.definition.dataSetStyles};n[e]={...n[e],type:t},this.props.updateChart(this.props.chartId,{dataSetStyles:n})}getDataSeriesType(e){return this.props.definition.dataSetStyles?.[e]?.type||(this.env.model.getters.getChartRuntime(this.props.chartId).customizableSeries.findIndex(t=>t.dataSetId===e)===0?`bar`:`line`)}},GD=class extends hT{getLabelRangeOptions(){let e=this.props.definition;return[this.getAggregateLabelRangeOption(),{name:`cumulative`,label:this.chartTerms.CumulativeData,value:e.cumulative??!1,onChange:this.onUpdateCumulative.bind(this)}]}onUpdateCumulative(e){this.props.updateChart(this.props.chartId,{cumulative:e})}},KD=class extends t.Component{static template=`o-spreadsheet-FunnelChartDesignPanel`;static components={ChartShowValues:jT,GeneralDesignEditor:ET,SidePanelCollapsible:vT,RoundColorPicker:TT,Section:Z,ChartHumanizeNumbers:DT};static props={chartId:String,definition:Object,updateChart:Function,canUpdateChart:Function};getFunnelColorItems(){let e=this.env.model.getters.getChartRuntime(this.props.chartId).chartJsConfig.data.labels||[],t=yp(e,this.props.definition.funnelColors);return e.map((e,n)=>({label:e||A(`Value %s`,n+1),color:t[n]}))}updateFunnelItemColor(e,t){let n=Nt(this.props.definition.funnelColors||[],t,e);this.props.updateChart(this.props.chartId,{funnelColors:n})}},qD=class extends t.Component{static template=`o-spreadsheet-GaugeChartConfigPanel`;static components={ChartErrorSection:mT,ChartDataSeries:uT};static props=$w;state=(0,t.useState)({dataRangeDispatchResult:void 0});dataRange=this.props.definition.dataRange;get configurationErrorMessages(){return[...this.state.dataRangeDispatchResult?.reasons||[]].filter(e=>e!==H.NoChanges).map(e=>lg.Errors[e]||lg.Errors.Unexpected)}get isDataRangeInvalid(){return!!this.state.dataRangeDispatchResult?.isCancelledBecause(H.InvalidGaugeDataRange)}onDataRangeChanged(e){this.dataRange=e[0],this.state.dataRangeDispatchResult=this.props.canUpdateChart(this.props.chartId,{dataRange:this.dataRange})}updateDataRange(){this.state.dataRangeDispatchResult=this.props.updateChart(this.props.chartId,{dataRange:this.dataRange})}getDataRange(){return{dataRange:this.dataRange||``}}},JD=class extends t.Component{static template=`o-spreadsheet-TextValueProvider`;static props={proposals:Array,selectedIndex:{type:Number,optional:!0},onValueSelected:Function,onValueHovered:Function};autoCompleteListRef=(0,t.useRef)(`autoCompleteList`);setup(){(0,t.useEffect)(()=>{let e=this.props.selectedIndex;e!==void 0&&(this.autoCompleteListRef.el?.children[e])?.scrollIntoView?.({block:`nearest`})},()=>[this.props.selectedIndex,this.autoCompleteListRef.el])}getCss(e){return W({color:e.color,background:e.backgroundColor})}},YD=class{el;constructor(e){this.el=e}updateEl(e){this.el=e}selectRange(e,t){let n=window.getSelection(),{start:r,end:i}=this.getCurrentSelection();if(r===e&&i===t)return;if(n.rangeCount===0){let e=document.createRange();n.addRange(e)}let a=n.getRangeAt(0),o;if(this.el.contains(a.startContainer)?o=a:(o=document.createRange(),n.removeAllRanges(),n.addRange(o)),e===t&&e===0)o.setStart(this.el,0),o.setEnd(this.el,0);else{let n=this.getText().length;(e<0||t>n)&&(console.warn(`wrong selection asked start ${e}, end ${t}, text content length ${n}`),e<0&&(e=0),t>n&&(t=n),e>n&&(e=n));let r=this.findChildAtCharacterIndex(e),i=this.findChildAtCharacterIndex(t);e<=t?(o.setStart(r.node,r.offset),o.setEnd(i.node,i.offset)):(o.setStart(i.node,i.offset),o.setEnd(r.node,r.offset))}}findChildAtCharacterIndex(e){let t=pm(this.el),n,r,i=e,a=!0;do n=t.next(),!n.done&&!n.value.hasChildNodes()&&(n.value.textContent&&n.value.textContent.length<i?i-=n.value.textContent.length:n.value.textContent&&n.value.textContent.length>=i&&t.return(n.value),r=n.value),!n.done&&n.value.nodeName===`P`&&(a?a=!1:i--);while(!n.done&&i);return n.value?{node:n.value,offset:i}:{node:r,offset:i}}setText(e){if(e.length===0){this.removeAll();return}let t=Array.from(this.el.childNodes),n=e.length;for(let r=0;r<n;r++){let n=e[r],i=t[r],a=!1,o;i&&i.nodeName===`P`?o=i:(a=!0,o=document.createElement(`p`));let s=n.length,c=Array.from(o.childNodes);for(let e=0;e<s;e++){let t=n[e],r=c[e];if(r&&`tagName`in r&&r.tagName===`SPAN`&&XD(t,r))continue;if(!t.value&&!t.classes?.length){r&&o.removeChild(r);continue}let i=document.createElement(`span`);i.innerText=t.value,i.style.color=t.color||``,i.addEventListener(`mousemove`,()=>{t.onHover?.(fm(i))}),i.addEventListener(`mouseleave`,()=>{t.onStopHover?.()}),i.classList.add(...t.classes||[]),r?o.replaceChild(i,r):o.appendChild(i)}if(c.length>s)for(let e=s;e<c.length;e++)o.removeChild(c[e]);o.hasChildNodes()||o.appendChild(document.createElement(`span`)),a&&(i?this.el.replaceChild(o,i):this.el.appendChild(o))}if(t.length>n)for(let e=n;e<t.length;e++)this.el.removeChild(t[e])}scrollSelectionIntoView(){let e=document.getSelection()?.focusNode;!e||!this.el.contains(e)||(e instanceof HTMLElement?e:e.parentElement)?.scrollIntoView?.({block:`nearest`})}removeSelection(){window.getSelection().removeAllRanges()}removeAll(){if(this.el)for(;this.el.firstChild;)this.el.removeChild(this.el.firstChild)}getCurrentSelection(){return hm(this.el)}getText(){let e=``,t=!0,n=!1,r=pm(this.el);for(let i=r.next();!i.done;i=r.next()){if(i.value.nodeName===`P`||i.value.nodeName===`DIV`&&i.value!==this.el){t?t=!1:e+=`
81
+ `,n=eO(i.value);continue}i.value.hasChildNodes()||(i.value.nodeName===`BR`&&!n&&(e+=`
82
+ `),e+=i.value.textContent)}return e}};function XD(e,t){let n=(e.color?ed(e.color):``)===(t.style?.color?ed(t.style?.color):``),r=T(e.classes,[...t.classList]),i=t.textContent===e.value;return n&&r&&i}let ZD=new DOMParser,QD=ZD.parseFromString(`<br>`,`text/html`).body.firstChild,$D=ZD.parseFromString(`<span><br></span>`,`text/html`).body.firstChild;function eO(e){if(e.childNodes.length>1)return!1;let t=e.firstChild?.cloneNode(!0);return t?t instanceof Element?(t.removeAttribute(`class`),t.removeAttribute(`style`),t.isEqualNode(QD)||t.isEqualNode($D)||!1):!1:!0}var tO=class extends t.Component{static template=`o-spreadsheet-FunctionDescriptionProvider`;static props={functionDescription:Object,argsToFocus:Array,repeatingArgGroupIndex:{type:Number,optional:!0}};static components={Collapse:_T};state=(0,t.useState)({isCollapsed:!0});toggle(){this.state.isCollapsed=!this.state.isCollapsed}getContext(){return this.props}get formulaHeaderContent(){let{functionDescription:e,repeatingArgGroupIndex:t,argsToFocus:n}=this.props,r=this.env.model.getters.getLocale().formulaArgSeparator+` `,i=[{content:e.name+` ( `}];for(let a=0;a<e.args.length;a++){let o=e.args[a],s=o.repeating;if(a>0&&i.push({content:r}),s){let s=o.optional||(t??0)>0,c=e.args.slice(a,a+e.nbrArgRepeating).map(e=>e.name);t&&i.push({content:`... `+r}),s&&i.push({content:`[`});for(let e=0;e<c.length;e++){let o=c[e],s=a+e,l=n.includes(s);i.push({content:o+((t??0)+1),focused:l}),e<c.length-1&&i.push({content:r})}if(s&&i.push({content:`]`}),e.nbrArgRepeating<=1){i.push({content:r+`[`});for(let e=0;e<c.length;e++){let n=c[e];i.push({content:n+((t??0)+2)}),e<c.length-1&&i.push({content:r})}i.push({content:`]`})}i.push({content:r+`... `}),a+=e.nbrArgRepeating-1}else{let e=o.optional||o.default,t=n.includes(a);e&&i.push({content:`[`}),i.push({content:o.name,focused:t}),e&&i.push({content:`]`})}}return i.push({content:` )`}),i}},nO=class extends t.Component{static template=`o-spreadsheet-SpeechBubble`;static props={content:String,anchorRect:Object};static components={};spreadsheetRect=Gh();bubbleRef=(0,t.useRef)(`bubble`);setup(){(0,t.useEffect)(()=>{let e=this.bubbleRef.el;if(!e)return;let t=this.props.anchorRect,n=fm(e),r=t.x+t.width/2-n.width/2-this.spreadsheetRect.x,i=t.y-n.height-7-this.spreadsheetRect.y;e.style.left=`${r}px`,e.style.top=`${i}px`})}};let rO=_s.content;var iO=class extends t.Component{static template=`o-spreadsheet-Composer`;static props={focus:{validate:e=>[`inactive`,`cellFocus`,`contentFocus`].includes(e)},inputStyle:{type:String,optional:!0},rect:{type:Object,optional:!0},delimitation:{type:Object,optional:!0},onComposerCellFocused:{type:Function,optional:!0},onComposerContentFocused:Function,isDefaultFocus:{type:Boolean,optional:!0},onInputContextMenu:{type:Function,optional:!0},composerStore:Object,placeholder:{type:String,optional:!0},inputMode:{type:String,optional:!0},showAssistant:{type:Boolean,optional:!0}};static components={TextValueProvider:JD,FunctionDescriptionProvider:tO,SpeechBubble:nO};static defaultProps={inputStyle:``,isDefaultFocus:!1,inputMode:`text`,showAssistant:!0};DOMFocusableElementStore;composerRef=(0,t.useRef)(`o_composer`);containerRef=(0,t.useRef)(`composerContainer`);contentHelper=new YD(this.composerRef.el);composerState=(0,t.useState)({positionStart:0,positionEnd:0,hoveredRect:void 0});functionDescriptionState=(0,t.useState)({showDescription:!1,functionDescription:{},argsToFocus:[],repeatingArgGroupIndex:0});assistant=(0,t.useState)({forcedClosed:!1});compositionActive=!1;spreadsheetRect=Gh();lastHoveredTokenIndex=void 0;debouncedHover=pt((e,t)=>{let n=this.contentHelper.getCurrentSelection();if(n.start!==n.end)return;let r=this.props.composerStore.hoveredTokens;this.props.composerStore.hoverToken(e),T(r,this.props.composerStore.hoveredTokens)||(this.composerState.hoveredRect=t)},120);get assistantStyleProperties(){let e=this.composerRef.el.getBoundingClientRect(),t={};t[`min-width`]=`${Math.min(this.props.rect?.width||1/0,300)}px`;let n=this.props.composerStore.autoCompleteProposals?.some(e=>e.description);if((this.functionDescriptionState.showDescription||n)&&(t.width=`300px`),this.props.delimitation&&this.props.rect){let{x:e,y:n,height:r}=this.props.rect,i=this.props.delimitation.height-(n+r);t[`max-height`]=`${i}px`,n>i&&(t[`max-height`]=`${n-9}px`,t.top=`-3px`,t.transform=`translate(0, -100%)`),e+300>this.props.delimitation.width&&(t.right=`0px`)}else t[`max-height`]=`${this.spreadsheetRect.height-e.bottom-1}px`,e.left+300+15+9>this.spreadsheetRect.width&&(t.right=`9px`);return t}get assistantStyle(){let e=this.assistantStyleProperties;return W({"max-height":e[`max-height`],width:e.width,"min-width":e[`min-width`]})}get assistantContainerStyle(){let e=this.assistantStyleProperties;return W({top:e.top,right:e.right,transform:e.transform})}shouldProcessInputEvents=!1;tokens=[];keyMapping={Enter:e=>this.processEnterKey(e,`down`),"Shift+Enter":e=>this.processEnterKey(e,`up`),"Alt+Enter":this.processNewLineEvent,"Ctrl+Enter":this.processNewLineEvent,Escape:this.processEscapeKey,F2:e=>this.toggleEditionMode(e),F4:e=>this.processF4Key(e),Tab:e=>this.processTabKey(e,`right`),"Shift+Tab":e=>this.processTabKey(e,`left`)};keyCodeMapping={NumpadDecimal:this.processNumpadDecimal};setup(){this.DOMFocusableElementStore=O(Ih),(0,t.onMounted)(()=>{let e=this.composerRef.el;this.props.isDefaultFocus&&this.DOMFocusableElementStore.setFocusableElement(e),this.contentHelper.updateEl(e)}),(0,t.onWillUnmount)(()=>{this.debouncedHover.stopDebounce()}),(0,t.useEffect)(()=>{this.processContent(),document.activeElement===this.contentHelper.el&&this.props.composerStore.editionMode===`inactive`&&!this.props.isDefaultFocus&&this.DOMFocusableElementStore.focus()}),(0,t.useEffect)(()=>{this.processTokenAtCursor()},()=>[this.props.composerStore.editionMode!==`inactive`]),(0,t.useEffect)(()=>{this.contentHelper.scrollSelectionIntoView()},()=>[this.props.composerStore.composerSelection.start,this.props.composerStore.composerSelection.end])}processArrowKeys(e){let t=this.props.composerStore.tokenAtCursor;if((this.props.composerStore.isSelectingRange||this.props.composerStore.editionMode===`inactive`)&&!([`ArrowUp`,`ArrowDown`].includes(e.key)&&this.props.composerStore.isAutoCompleteDisplayed&&t?.type!==`REFERENCE`)){this.functionDescriptionState.showDescription=!1,this.props.composerStore.hideHelp(),e.preventDefault(),e.stopPropagation(),tT(e,this.env.model.selection);return}let n=this.props.composerStore.currentContent;if(this.props.focus===`cellFocus`&&!this.props.composerStore.isAutoCompleteDisplayed&&!Ut(n)){this.props.composerStore.stopEdition();return}e.stopPropagation(),this.handleArrowKeysForAutocomplete(e)}handleArrowKeysForAutocomplete(e){[`ArrowUp`,`ArrowDown`].includes(e.key)&&this.props.composerStore.isAutoCompleteDisplayed&&(e.preventDefault(),this.props.composerStore.moveAutoCompleteSelection(e.key===`ArrowDown`?`next`:`previous`))}processTabKey(e,t){e.preventDefault(),e.stopPropagation(),this.props.composerStore.autoCompleteOrStop(t,this.assistant.forcedClosed)}processEnterKey(e,t){e.preventDefault(),e.stopPropagation(),this.props.composerStore.autoCompleteOrStop(t,this.assistant.forcedClosed)}processNewLineEvent(e){e.preventDefault(),e.stopPropagation();let t=this.contentHelper.getText(),n=this.contentHelper.getCurrentSelection(),r=Math.min(n.start,n.end),i=Math.max(n.start,n.end);this.props.composerStore.stopComposerRangeSelection(),this.props.composerStore.setCurrentContent(t.slice(0,r)+`
83
+ `+t.slice(i),{start:r+1,end:r+1}),this.processContent()}processEscapeKey(e){this.props.composerStore.cancelEdition(),e.stopPropagation(),e.preventDefault()}processF4Key(e){e.stopPropagation(),this.props.composerStore.cycleReferences(),this.processContent()}toggleEditionMode(e){e.stopPropagation(),this.props.composerStore.toggleEditionMode(),this.processContent()}processNumpadDecimal(e){e.stopPropagation(),e.preventDefault();let t=this.env.model.getters.getLocale(),n=this.contentHelper.getCurrentSelection(),r=this.props.composerStore.currentContent,i=r.slice(0,n.start)+t.decimalSeparator+r.slice(n.end);this.props.composerStore.setCurrentContent(i,{start:n.start+1,end:n.start+1}),this.processContent()}onCompositionStart(){this.compositionActive=!0}onCompositionEnd(){this.compositionActive=!1}onKeydown(e){if(this.props.composerStore.editionMode===`inactive`)return;if(e.key.startsWith(`Arrow`)){this.processArrowKeys(e);return}let t=this.keyMapping[ym(e)]||this.keyCodeMapping[ym(e,`code`)];t?t.call(this,e):e.stopPropagation()}onPaste(e){this.props.composerStore.editionMode===`inactive`?e.preventDefault():e.stopPropagation()}onInput(e){if(!this.shouldProcessInputEvents)return;e.stopPropagation();let t;if(t=this.props.composerStore.editionMode===`inactive`?e.data||``:this.contentHelper.getText(),this.props.focus===`inactive`)return this.props.onComposerCellFocused?.(t);let n=this.contentHelper.getCurrentSelection();this.props.composerStore.stopComposerRangeSelection(),this.props.composerStore.setCurrentContent(t,n),this.processTokenAtCursor()}onKeyup(e){if(this.contentHelper.el===document.activeElement){if(this.props.composerStore.isAutoCompleteDisplayed&&[`ArrowUp`,`ArrowDown`].includes(e.key)||this.props.composerStore.isSelectingRange&&e.key?.startsWith(`Arrow`))return;let{start:t,end:n}=this.props.composerStore.composerSelection,{start:r,end:i}=this.contentHelper.getCurrentSelection();(r!==t||i!==n)&&this.props.composerStore.changeComposerCursorSelection(r,i),this.processTokenAtCursor()}}onBlur(e){if(this.props.composerStore.editionMode===`inactive`)return;let t=e.relatedTarget;if(!t||!(t instanceof HTMLElement)){this.props.composerStore.stopEdition();return}if(!this.containerRef.el?.contains(e.relatedTarget)){if(t.attributes.getNamedItem(`composerFocusableElement`)){this.contentHelper.el.focus();return}t.classList.contains(`o-composer`)||this.props.composerStore.stopEdition()}}onMousedown(e){e.button>0||this.env.isMobile()&&!Dm()||(this.debouncedHover.stopDebounce(),this.contentHelper.removeSelection())}onMouseup(){if(this.env.model.getters.isReadonly())return;let e=this.contentHelper.getCurrentSelection();e.start!==e.end&&this.props.composerStore.hoverToken(void 0)}onClick(){if(this.env.model.getters.isReadonly())return;let e=this.contentHelper.getCurrentSelection(),t=this.props.composerStore.editionMode===`inactive`;this.props.onComposerContentFocused(e),t||this.props.composerStore.changeComposerCursorSelection(e.start,e.end),this.processTokenAtCursor()}onDblClick(){if(this.env.model.getters.isReadonly())return;let e=this.props.composerStore.currentContent;if(Ut(e)){let t=this.props.composerStore.currentTokens,n=this.contentHelper.getCurrentSelection();if(n.start===n.end)return;let r=e.substring(n.start,n.end),i=t.filter(e=>e.value.includes(r)&&e.start<=n.start&&e.end>=n.end)[0];if(!i)return;i.type===`REFERENCE`&&this.props.composerStore.changeComposerCursorSelection(i.start,i.end)}}onContextMenu(e){this.props.composerStore.editionMode===`inactive`&&this.props.onInputContextMenu?.(e)}closeAssistant(){this.props.composerStore.canBeToggled&&(this.assistant.forcedClosed=!0)}openAssistant(){this.props.composerStore.canBeToggled&&(this.assistant.forcedClosed=!1)}onWheel(e){this.composerRef.el&&this.composerRef.el.scrollHeight>this.composerRef.el.clientHeight&&e.stopPropagation()}processContent(){if(this.compositionActive)return;this.shouldProcessInputEvents=!1,this.props.focus!==`inactive`&&document.activeElement!==this.contentHelper.el&&this.contentHelper.el.focus();let e=this.getContentLines();if(this.contentHelper.setText(e),e.length!==0&&e.length[0]!==0&&this.props.focus!==`inactive`){let{start:e,end:t}=this.props.composerStore.composerSelection;this.contentHelper.selectRange(e,t)}this.shouldProcessInputEvents=!0}getContentLines(){let e=this.props.composerStore.currentContent,t=Ut(e);return e===``?[]:t&&this.props.focus!==`inactive`?this.splitHtmlContentIntoLines(this.getHtmlContentFromTokens()):this.splitHtmlContentIntoLines([{value:e,classes:[]}])}getHtmlContentFromTokens(){let e=this.props.composerStore.currentTokens,t=[],{end:n,start:r}=this.props.composerStore.composerSelection;for(let i=0;i<e.length;i++){let a=e[i],o=a.color||`light-dark(#000000, #ffffff)`;a.isBlurred&&(o=gd(o,.5));let s=[];a.type===`REFERENCE`&&this.props.composerStore.tokenAtCursor===a&&this.props.composerStore.editionMode===`selecting`&&s.push(`text-decoration-underline`),n===r&&a.isParenthesisLinkedToCursor&&s.push(`highlight-parenthesis-flag`),a.isInHoverContext&&s.push(`highlight-flag`),this.props.composerStore.showSelectionIndicator&&n===r&&n===a.end&&s.push(`selector-flag`),t.push({value:a.value,color:o,classes:s,onHover:e=>this.onTokenHover(i,e),onStopHover:()=>this.onTokenHover(void 0)})}return t}onTokenHover(e,t){this.lastHoveredTokenIndex!==e&&(this.lastHoveredTokenIndex=e,this.debouncedHover(e,t))}splitHtmlContentIntoLines(e){let t=[],n=[];for(let r of e)if(r.value.includes(`
84
+ `)){let e=r.value.split(`
85
+ `),i=e.pop();for(let i of e)n.push({color:r.color,value:i}),t.push(n),n=[];n.push({...r,value:i})}else n.push(r);n.length&&t.push(n);let r=[];for(let e of t)e.every(this.isContentEmpty)?r.push([e[0]]):r.push(e.filter(e=>!this.isContentEmpty(e)));return r}isContentEmpty(e){return!(e.value||e.classes?.length)}processTokenAtCursor(){let e=this.props.composerStore;this.functionDescriptionState.showDescription=!1;let t=this.props.composerStore.tokenAtCursor;if(Ut(e.currentContent)&&t&&t.type!==`SYMBOL`){let e=t.functionContext,n=e?.parent.toUpperCase();if(e&&n&&n in rO&&t.type!==`UNKNOWN`){let r=rO[n],i=e.argPosition,a=e.args.length;this.functionDescriptionState.functionDescription=r;let o=this.props.composerStore.currentTokens.some(e=>e.type===`RIGHT_PAREN`&&e.parenthesesCode===t.parenthesesCode);this.functionDescriptionState.argsToFocus=this.getArgsToFocus(o,r,a,i),this.functionDescriptionState.showDescription=!0,this.functionDescriptionState.repeatingArgGroupIndex=this.getRepeatingArgGroupIndex(r,a,i)}}}getRepeatingArgGroupIndex(e,t,n){let{minArgRequired:r,maxArgPossible:i,nbrArgRepeating:a}=e;if(!a)return;let o=(a?Math.ceil((t-r)/a):0)*a+r;return rs(e,Math.max(Math.min(i,o),r))[n].repeatingGroupIndex??0}getArgsToFocus(e,t,n,r){let{nbrArgRepeating:i,minArgRequired:a,nbrOptionalNonRepeatingArgs:o,maxArgPossible:s}=t;if(e){let e=rs(t,Math.max(Math.min(s,n),a))[r]?.index;return e===void 0?[]:[e]}let c=Math.max(n,a),l=i?a+Math.ceil((c-a)/i)*i+o:s,u=[];for(let e=c;e<=l;e++){let n=rs(t,e)[r]?.index;n!==void 0&&u.push(n)}return[...new Set(u)]}autoComplete(e){!e?.text||this.assistant.forcedClosed&&this.props.composerStore.canBeToggled||(this.props.composerStore.insertAutoCompleteValue(e),this.processTokenAtCursor())}get displaySpeechBubble(){return!!(this.props.focus!==`inactive`&&this.composerState.hoveredRect&&this.props.composerStore.hoveredContentEvaluation)}};function aO(e){let t=0;return e.map(e=>{let n=e.value.toString().length,r=Object.assign({},e,{start:t,end:t+n,length:n});return t=r.end,r})}function oO(e){let t=[],n=0;return e.map((r,i)=>{if(r.type===`LEFT_PAREN`){t.push(n+1),n=0;for(let n=i-1;n>=0;n--){if(e[n].type===`SPACE`){e[n].parenthesesCode=t.join(`:`);continue}e[n].type===`SYMBOL`&&(e[n].parenthesesCode=t.join(`:`));break}}return r.parenthesesCode=t.join(`:`),r.type===`RIGHT_PAREN`&&t.length&&(n=t.pop()),r})}function sO(e){let t=[],n=``;function r(e){if(t.length===0)return;let n=t.at(-1);if(n&&n.argsTokens){let{argsTokens:t,argPosition:r}=n;t[r]||(t[r]=[]),t[r].push({value:e.value,type:e.type})}}return e.map((e,i)=>{switch([`SPACE`,`LEFT_PAREN`].includes(e.type)||(n=``),e.type){case`SYMBOL`:r(e),n=e.value;break;case`LEFT_PAREN`:t.push({parent:n,argPosition:0,argsTokens:[],args:[]}),r(e),n=``;break;case`RIGHT_PAREN`:t.pop()?.argsTokens?.flat().forEach(r),r(e);break;case`ARG_SEPARATOR`:t.length&&t[t.length-1].argPosition++,r(e);break;default:r(e);break}if(t.length){let n=t[t.length-1];n.parent&&(e.functionContext=Object.assign({},n))}return e})}function cO(e){for(let t of e)if(t.functionContext){let{argsTokens:e,args:n}=t.functionContext;if(delete t.functionContext.argsTokens,n.length||!e)continue;e[0]?.[0]?.type===`LEFT_PAREN`&&(e[0]=e[0].slice(1));for(let t of e){let e=t;e.at(0)?.type===`ARG_SEPARATOR`&&(e=e.slice(1));try{n.push(Tc(e))}catch{n.push(void 0)}}}return e}function lO(e,t){return cO(sO(oO(aO(uO(fc(e,t))))))}function uO(e){let t=[];for(;e.length;)t.push(dO(e)||e.shift());return t}function dO(e){if(e.length<2)return null;let t=e[0],n=e[1];return t.type===`REFERENCE`&&n.type===`OPERATOR`&&n.value===`#`&&!t.value.includes(`:`)?(e.splice(0,2),{type:t.type,value:t.value+`#`}):null}var fO=class{lastId=0;add(e){this.lastId++;let t=this.lastId;return new Promise((n,r)=>{e.then(e=>{this.lastId===t&&n(e)}).catch(e=>{this.lastId===t&&r(e)})})}};function pO(e,t,n){if(Ue(e)){let r=n.decimalSeparator===`,`?`/`:`,`;return`{${_a(e).map(e=>e.map(e=>mO(e,t,n)).join(r)).join(`;`)}}`}return mO(e,t,n)}function mO(e,t,n){let r=e.value;switch(typeof r){case`number`:return R(r,{locale:n,format:e.format});case`string`:return Gi(r)?r:`"${r}"`;case`boolean`:return r?`TRUE`:`FALSE`}return t}function hO(e,t,n){let r=(t.startsWith(`=`)?lO(t,n):[]).filter(t=>t.start<=e.start&&t.end>=e.start||t.start>=e.start&&t.start<e.end),i=r.filter(e=>e.type===`REFERENCE`);if(i.length===0)return;let a=r.map(Ms).map(e=>e.value).join(``),o=r[0].start,s=r[r.length-1].end,c=t.slice(0,o)+a+t.slice(s),l=c.length-t.length,u={start:i[0].start,end:i[i.length-1].end+l};return i.length===1&&e.start===e.end&&(u.start=u.end),{content:c,selection:u}}function gO(e,t){e=e.toLocaleLowerCase(),t=t.toLocaleLowerCase();let n=0,r=0,i=t.length,a=0;for(let o=0;o<i;o++)t[o]===e[a]?(a++,r+=100+r-o/200):r=0,n+=r;return a===e.length?n:0}function _O(e,t,n){let r=[];return t.forEach(t=>{let i=gO(e,n(t));i>0&&r.push({score:i,elem:t})}),r.sort((e,t)=>t.score-e.score),r.map(e=>e.elem)}let vO=new B;var yO=class{mutators=[`notifyUser`,`raiseError`,`askConfirmation`,`updateNotificationCallbacks`];notifyUser=e=>window.alert(e.text);askConfirmation=(e,t,n)=>{window.confirm(e)?t():n?.()};raiseError=(e,t)=>{window.alert(e),t?.()};updateNotificationCallbacks(e){this.notifyUser=e.notifyUser||this.notifyUser,this.raiseError=e.raiseError||this.raiseError,this.askConfirmation=e.askConfirmation||this.askConfirmation}},bO=class extends fr{mutators=[`useProvider`,`moveSelection`,`hide`,`selectIndex`];selectedIndex=void 0;provider;get selectedProposal(){if(!(this.selectedIndex===void 0||this.provider===void 0))return this.provider.proposals[this.selectedIndex]}useProvider(e){this.provider=e,this.selectedIndex=e.autoSelectFirstProposal?0:void 0}hide(){this.provider=void 0,this.selectedIndex=void 0}selectIndex(e){this.selectedIndex=e}moveSelection(e){if(this.provider){if(this.selectedIndex===void 0){this.selectedIndex=0;return}e===`previous`?(this.selectedIndex--,this.selectedIndex<0&&(this.selectedIndex=this.provider.proposals.length-1)):this.selectedIndex=(this.selectedIndex+1)%this.provider.proposals.length}}},xO=class extends fr{mutators=[`startEdition`,`setCurrentContent`,`stopEdition`,`stopComposerRangeSelection`,`cancelEdition`,`cycleReferences`,`hideHelp`,`autoCompleteOrStop`,`insertAutoCompleteValue`,`moveAutoCompleteSelection`,`selectAutoCompleteIndex`,`toggleEditionMode`,`changeComposerCursorSelection`,`replaceComposerCursorSelection`,`hoverToken`];col=0;row=0;editionMode=`inactive`;sheetId=``;_currentContent=``;currentTokens=[];selectionStart=0;selectionEnd=0;initialContent=``;colorIndexByRange={};autoComplete=new bO(this.get);hasSelectedAProposal=!1;hoveredTokens=[];hoveredContentEvaluation=``;autoCompleteKeepLast=new fO;notificationStore=this.get(yO);highlightStore=this.get(oT);constructor(e){super(e),this.highlightStore.register(this),this.onDispose(()=>{this.highlightStore.unRegister(this),this._cancelEdition()})}handleEvent(e){let t=this.getters.getActiveSheetId(),n;switch(n=e.options.unbounded?this.getters.getUnboundedZone(t,e.anchor.zone):e.anchor.zone,e.mode){case`newAnchor`:this.editionMode===`selecting`&&this.insertSelectedRange(n);break;default:this.editionMode===`selecting`?this.replaceSelectedRange(n):this.updateComposerRange(e.previousAnchor.zone,n);break}}changeComposerCursorSelection(e,t){this.isSelectionValid(this._currentContent.length,e,t)&&(this.selectionStart=e,this.selectionEnd=t,this.stopComposerRangeSelection(),this.computeFormulaCursorContext(),this.computeParenthesisRelatedToCursor(),this.updateAutoCompleteProvider())}stopComposerRangeSelection(){this.isSelectingRange&&(this.editionMode=`editing`)}startEdition(e,t){let{col:n,row:r}=this.getters.getActivePosition();this.model.dispatch(`SELECT_FIGURE`,{figureId:null}),this.model.dispatch(`SCROLL_TO_CELL`,{col:n,row:r}),this.editionMode!==`inactive`&&e?this.setContent(e,t):this._startEdition(e,t),this.updateTokenColor(),this.computeFormulaCursorContext(),this.computeParenthesisRelatedToCursor(),this.updateAutoCompleteProvider()}cancelEdition(){this.resetContent(),this.cancelEditionAndActivateSheet()}setCurrentContent(e,t){t&&!this.isSelectionValid(e.length,t.start,t.end)||(this.setContent(e,t,!0),this.updateTokenColor(),this.computeFormulaCursorContext(),this.computeParenthesisRelatedToCursor())}replaceComposerCursorSelection(e){this.replaceSelection(e)}handle(e){switch(e.type){case`SELECT_FIGURE`:e.figureId&&(this.resetContent(),this.cancelEditionAndActivateSheet());break;case`START_CHANGE_HIGHLIGHT`:let{left:t,top:n}=e.zone;this.isSelectingRange&&(this.editionMode=`editing`),this.model.selection.resetAnchor(this,{cell:{col:t,row:n},zone:e.zone});break}}get currentContent(){return this.editionMode===`inactive`?this.getComposerContent(this.getters.getActivePosition()).text:this._currentContent}get composerSelection(){return{start:this.selectionStart,end:this.selectionEnd}}get isSelectingRange(){return this.editionMode===`selecting`}get showSelectionIndicator(){return this.isSelectingRange&&this.canStartComposerRangeSelection()}get tokenAtCursor(){let e=Math.min(this.selectionStart,this.selectionEnd),t=Math.max(this.selectionStart,this.selectionEnd);if(!(e===t&&t===0))return this.currentTokens.find(n=>n.start<=e&&n.end>=t)}get autoCompleteProposals(){return this.autoComplete.provider?.proposals||[]}get autoCompleteSelectedIndex(){return this.autoComplete.selectedIndex}get isAutoCompleteDisplayed(){return!!this.autoComplete.provider}get canBeToggled(){return this.autoComplete.provider?.canBeToggled??!0}cycleReferences(){let e=this.getters.getLocale(),t=hO(this.composerSelection,this._currentContent,e);t!==void 0&&this.setCurrentContent(t.content,t.selection)}toggleEditionMode(){if(this.editionMode===`inactive`)return;let e=Math.min(this.selectionStart,this.selectionEnd),t=Math.max(this.selectionStart,this.selectionEnd),n=[...this.currentTokens].reverse().find(n=>n.end>=e&&t>=n.start&&n.type===`REFERENCE`);if(this.editionMode===`editing`&&n){let e=this.getters.getActiveSheetId(),{sheetName:t,xc:r}=As(n.value),i=this.getters.getSheetIdByName(t);i&&i!==e&&this.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:e,sheetIdTo:i}),this.selectionStart=this.selectionEnd=n.end;let a=this.getFullySpreadRange(this.sheetId,r).zone;this.captureSelection(a),this.editionMode=`selecting`}else this.editionMode=`editing`}hoverToken(e){this.currentTokens.forEach(e=>e.isInHoverContext=void 0);let t=[...this.currentTokens];if(e===void 0||[`ARG_SEPARATOR`,`SPACE`].includes(t[e].type)){this.hoveredContentEvaluation=``,this.hoveredTokens=[];return}let n=this.getMissingSymbols(this.currentTokens);for(let e of n){let n=e===`)`?`RIGHT_PAREN`:`RIGHT_BRACE`,r=t[t.length-1].start+1;t.push({value:e,type:n,start:r,end:r+e.length,length:1})}let r=t;if(e!==0){let n=this.getRelatedTokens(t,e),i=t.filter(e=>!n.includes(e)&&e.type!==`SPACE`);r=i.length===1&&i[0]===t[0]?t:n}r.forEach(e=>e.isInHoverContext=!0);let i=r.map(e=>e.value).join(``);Ut(i)||(i=`=${i}`);let a=bg(i,this.getters.getLocale()),o=this.evaluateCanonicalFormula(a);this.hoveredTokens=r,this.hoveredContentEvaluation=pO(o,`0`,this.getters.getLocale())}evaluateCanonicalFormula(e){return this.getters.evaluateFormulaResult(this.sheetId,e)}getRelatedTokens(e,t){try{let n=Tc(e),r;for(let e of Dc(n))if(t>=e.tokenStartIndex&&t<=e.tokenEndIndex)r=e;else if(t<e.tokenStartIndex)break;return r?e.slice(r.tokenStartIndex,r.tokenEndIndex+1):e}catch(t){if(t instanceof M)return e;throw t}}captureSelection(e,t,n){this.model.selection.capture(this,{cell:{col:t??e.left,row:n??e.top},zone:e},{handleEvent:this.handleEvent.bind(this),release:()=>{this._stopEdition()}})}isSelectionValid(e,t,n){return t>=0&&t<=e&&n>=0&&n<=e}startComposerRangeSelection(){if(this.sheetId===this.getters.getActiveSheetId()){let e=D({col:this.col,row:this.row});this.model.selection.resetAnchor(this,{cell:{col:this.col,row:this.row},zone:e})}this.editionMode=`selecting`}_startEdition(e,t){let n=this.getters.getActiveCell(),r=this.getters.getLocale();e&&n.format?.includes(`%`)&&Si(e,r)&&(t||={start:e.length,end:e.length},e=`${e}%`);let{col:i,row:a,sheetId:o}=this.getters.getActivePosition();this.col=i,this.sheetId=o,this.row=a,this.editionMode=`editing`;let{text:s,adjustedSelection:c}=this.getComposerContent({sheetId:o,col:i,row:a},t);this.initialContent=s,this.hasSelectedAProposal=!1,this.setContent(e||this.initialContent,c??t),this.colorIndexByRange={};let l=D({col:this.col,row:this.row});this.captureSelection(l,i,a)}_stopEdition(){if(this.editionMode!==`inactive`){this.cancelEditionAndActivateSheet();let e=this.getCurrentCanonicalContent();if(this.initialContent===e)return;if(e&&Ut(e)){let t=this.getMissingSymbols(this.currentTokens);e+=gt(t)}this.confirmEdition(e)}}getCurrentCanonicalContent(){return bg(this._currentContent,this.getters.getLocale())}cancelEditionAndActivateSheet(){this.editionMode!==`inactive`&&(this._cancelEdition(),this.getters.getActiveSheetId()!==this.sheetId&&this.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:this.getters.getActiveSheetId(),sheetIdTo:this.sheetId}))}_cancelEdition(){this.editionMode!==`inactive`&&(this.editionMode=`inactive`,this.model.selection.release(this),this.colorIndexByRange={},this.hoveredTokens=[],this.hoveredContentEvaluation=``,this.hideHelp())}resetContent(){this.setContent(this.initialContent||``)}setContent(e,t,n){let r=this._currentContent!==e;if(this._currentContent=e,t?(this.selectionStart=t.start,this.selectionEnd=t.end):this.selectionStart=this.selectionEnd=e.length,r||this.editionMode!==`inactive`){let t=this.getters.getLocale();this.currentTokens=Ut(e)?lO(e,t):[],this.currentTokens.filter(e=>e.type!==`SPACE`).length>1e3&&n&&this.notificationStore.raiseError(A(`This formula has over 1000 parts. It can't be processed properly, consider splitting it into multiple cells`))}this.canStartComposerRangeSelection()&&this.startComposerRangeSelection(),this.updateAutoCompleteProvider()}getAutoCompleteProviders(){return vO.getAll()}insertSelectedRange(e){let t=Math.min(this.selectionStart,this.selectionEnd),n=this.getZoneReference(e);this.canStartComposerRangeSelection()?this.insertText(n,t):this.insertText(`,`+n,t)}replaceSelectedRange(e){let t=this.getZoneReference(e),n=this.tokenAtCursor,r=n?.type===`REFERENCE`?n.start:this.selectionStart;this.replaceText(t,r,this.selectionEnd)}updateComposerRange(e,t){let n=this.getters.getActiveSheetId(),r=this.tokenAtCursor,i=(r?[r,...this.currentTokens]:this.currentTokens).filter(e=>e.type===`REFERENCE`).find(t=>{let{xc:r,sheetName:i}=As(t.value),a=i||this.getters.getSheetName(this.sheetId);if(!rl(this.getters.getSheetName(n),a))return!1;let o=this.getFullySpreadRange(n,r);return On(this.getters.expandZone(n,o.zone),e)});if(!i)return;let a=this.getFullySpreadRange(n,i.value);this.selectionStart=i.start,this.selectionEnd=this.selectionStart+i.value.length;let o=this.getters.getRangeFromZone(n,t),s=this.getRangeReference(o,a.parts);this.replaceSelection(s)}getZoneReference(e){let t=this.sheetId,n=this.getters.getActiveSheetId(),r=this.getters.getRangeFromZone(n,e);return this.getters.getSelectionRangeString(r,t,{allowSpilledReferences:!0})}getRangeReference(e,t){let n=[...t],r={...e,parts:n};return this.getters.getSelectionRangeString(r,this.sheetId,{allowSpilledReferences:!0})}replaceSelection(e){let t=Math.min(this.selectionStart,this.selectionEnd),n=Math.max(this.selectionStart,this.selectionEnd);this.replaceText(e,t,n)}replaceText(e,t,n){this._currentContent=this._currentContent.slice(0,t)+this._currentContent.slice(n,this._currentContent.length),this.insertText(e,t)}insertText(e,t){let n=this._currentContent.slice(0,t)+e+this._currentContent.slice(t),r=t+e.length;this.setCurrentContent(n,{start:r,end:r})}updateTokenColor(){this.updateRangeColor();for(let e=0;e<this.currentTokens.length;e++)this.currentTokens[e].color=this.getTokenColor(this.currentTokens[e])}getTokenColor(e){if(e.type===`REFERENCE`){let{xc:t,sheetName:n}=As(e.value);return this.rangeXCColor(t,n)||`light-dark(#000000, #ffffff)`}if(e.type===`SYMBOL`){let t=this.getters.getNamedRange(e.value);if(t)return this.rangeColor(t.range)||`light-dark(#000000, #ffffff)`;let n=e.value.toUpperCase();if(n===`TRUE`||n===`FALSE`)return Ve.NUMBER;if(n in _s.content)return Ve.FUNCTION}return[`LEFT_PAREN`,`RIGHT_PAREN`].includes(e.type)&&e.parenthesesCode===``?Ve.ORPHAN_RIGHT_PAREN:Ve[e.type]||`light-dark(#000000, #ffffff)`}rangeXCColor(e,t){let n=t?this.model.getters.getSheetIdByName(t):this.sheetId;if(n)return this.rangeColor(this.getFullySpreadRange(n,e))}rangeColor(e){return this.highlights.find(t=>{if(t.range.sheetId!==e.sheetId)return!1;let n=e.zone;return n=Kn(n)===1?this.model.getters.expandZone(e.sheetId,n):n,On(n,t.range.zone)})?.color}computeFormulaCursorContext(){for(let e=0;e<this.currentTokens.length;e++)this.currentTokens[e].isBlurred=!1;if(this.selectionStart!==this.selectionEnd)return;let e=this.getParenthesesCodeAfterCursor(),t=[...this.currentTokens].reverse().find(t=>e.startsWith(t.parenthesesCode)&&t.type===`SYMBOL`);if(t)for(let e=0;e<this.currentTokens.length;e++)(this.currentTokens[e].parenthesesCode||``).startsWith(t.parenthesesCode||``)||(this.currentTokens[e].isBlurred=!0)}getParenthesesCodeAfterCursor(){let e=this.tokenAtCursor?.parenthesesCode||``;return this.tokenAtCursor?.type===`RIGHT_PAREN`?e.slice(0,-1)||``:e}computeParenthesisRelatedToCursor(){for(let e=0;e<this.currentTokens.length;e++)this.currentTokens[e].isParenthesisLinkedToCursor=!1;let e=this.tokenAtCursor;if(!(!e||e.parenthesesCode===``||![`LEFT_PAREN`,`RIGHT_PAREN`].includes(e.type)))for(let t=0;t<this.currentTokens.length;t++){let n=this.currentTokens[t];[`LEFT_PAREN`,`RIGHT_PAREN`].includes(n.type)&&n.parenthesesCode===e.parenthesesCode&&n!==e&&(this.currentTokens[t].isParenthesisLinkedToCursor=!0,this.tokenAtCursor.isParenthesisLinkedToCursor=!0)}}updateRangeColor(){if(!Ut(this._currentContent)||this.editionMode===`inactive`)return;let e=this.sheetId,t=this.getReferencedRanges().map(({range:t})=>this.getters.getRangeString(t,e)),n={};for(let e of t)this.colorIndexByRange[e]!==void 0&&(n[e]=this.colorIndexByRange[e]);let r=new Set(Object.values(n)),i=0,a=()=>{for(;r.has(i);)i++;return r.add(i),i};for(let e of t)n[e]=e in n?n[e]:a();this.colorIndexByRange=n}get highlights(){if(!Ut(this.currentContent)||this.editionMode===`inactive`)return[];let e=this.sheetId,t=e=>Zu[this.colorIndexByRange[e]%Zu.length];return this.getReferencedRanges().map(({type:n,range:r})=>{let i=this.getters.getRangeString(r,e),{numberOfRows:a,numberOfCols:o}=Nn(r.zone),s=a*o===1?this.getters.expandZone(r.sheetId,r.zone):r.unboundedZone;return{range:this.model.getters.getRangeFromZone(r.sheetId,s),color:t(i),interactive:n!==`named_range`}})}getReferencedRanges(){let e=this.sheetId;return this.currentTokens.map(t=>{if(t.type===`REFERENCE`)return{type:`reference`,range:this.getFullySpreadRange(e,t.value)};if(t.type===`SYMBOL`)return{type:`named_range`,range:this.getters.getNamedRange(t.value)?.range}}).filter(e=>e?.range&&!e.range.invalidSheetName&&!e.range.invalidXc)}getFullySpreadRange(e,t){if(!t.endsWith(`#`))return this.getters.getRangeFromSheetXC(e,t);let n=t.slice(0,-1),r=this.getters.getRangeFromSheetXC(e,n),i=this.getters.getSpreadZone({sheetId:r.sheetId,col:r.zone.left,row:r.zone.top});return i?this.getters.getRangeFromZone(e,i):r}updateAutoCompleteProvider(){this.autoComplete.hide(),this.autoCompleteKeepLast.add(this.findAutocompleteProvider()).then(e=>{e&&(this.autoComplete.useProvider(e),this.model.trigger(`update`))})}async findAutocompleteProvider(){let e=this.currentContent,t=Ut(e)?this.tokenAtCursor:{type:`STRING`,value:e};if(this.editionMode===`inactive`||!t||[`TRUE`,`FALSE`].includes(t.value.toUpperCase())||!(this.canStartComposerRangeSelection()||[`SYMBOL`,`STRING`,`UNKNOWN`].includes(t.type)))return;let n={composer:this,getters:this.getters},r=this.getAutoCompleteProviders().sort((e,t)=>(e.sequence??1/0)-(t.sequence??1/0)).map(r=>({...r,getProposals:r.getProposals.bind(n,t,e),selectProposal:r.selectProposal.bind(n,t)}));for(let e of r){let n=await e.getProposals(),r=n?.find(e=>e.text===t.value),i=t.value.replace(/[ ,\(\)]/g,``);if(this._currentContent===this.initialContent&&e.displayAllOnInitialContent&&n?.length)return{proposals:n,selectProposal:e.selectProposal,autoSelectFirstProposal:e.autoSelectFirstProposal??!1,canBeToggled:e.canBeToggled};if(r&&(this._currentContent!==this.initialContent||this.hasSelectedAProposal))return;if(i&&n&&![`ARG_SEPARATOR`,`LEFT_PAREN`,`OPERATOR`].includes(t.type)){let e=_O(i,n,e=>e.fuzzySearchKey||e.text);(!r||e.length)&&(n=e)}if(e.maxDisplayedProposals&&(n=n?.slice(0,e.maxDisplayedProposals)),n?.length)return{proposals:n,selectProposal:e.selectProposal,autoSelectFirstProposal:e.autoSelectFirstProposal??!1,canBeToggled:e.canBeToggled}}}hideHelp(){this.autoComplete.hide()}autoCompleteOrStop(e,t=!1){if(this.editionMode!==`inactive`){let n=this.autoComplete;if(!(t&&this.canBeToggled)&&n.provider&&n.selectedIndex!==void 0){let e=n.provider.proposals[n.selectedIndex];if(e){this.insertAutoCompleteValue(e);return}}this.stopEdition(e)}}insertAutoCompleteValue(e){this.autoComplete.provider?.selectProposal(e),this.hasSelectedAProposal=!0}selectAutoCompleteIndex(e){this.autoComplete.selectIndex(S(0,e,10))}moveAutoCompleteSelection(e){this.autoComplete.moveSelection(e)}canStartComposerRangeSelection(){if(Ut(this._currentContent)){let e=this.tokenAtCursor;if(!e)return!1;let t=this.currentTokens.map(e=>e.start).indexOf(e.start),n=t,r=e;for(;![`ARG_SEPARATOR`,`ARRAY_ROW_SEPARATOR`,`LEFT_PAREN`,`LEFT_BRACE`,`OPERATOR`].includes(r.type)||Bs.includes(r.value);){if(r.type!==`SPACE`||n<1)return!1;n--,r=this.currentTokens[n]}for(n=t+1,r=this.currentTokens[n];r&&![`ARG_SEPARATOR`,`ARRAY_ROW_SEPARATOR`,`RIGHT_PAREN`,`RIGHT_BRACE`,`OPERATOR`].includes(r.type);){if(r.type!==`SPACE`)return!1;n++,r=this.currentTokens[n]}return!0}return!1}getMissingSymbols(e){let t=[];for(let n of e)switch(n.type){case`LEFT_PAREN`:t.push(`)`);break;case`LEFT_BRACE`:t.push(`}`);break;case`RIGHT_PAREN`:case`RIGHT_BRACE`:t.length>0&&t.at(-1)===n.value&&t.pop();break}return t.reverse(),t}},SO=class extends xO{constructor(e,t){super(e),this.args=t,this._currentContent=this.getComposerContent().text}getAutoCompleteProviders(){let e=super.getAutoCompleteProviders(),t=this.args().contextualAutocomplete;return t&&e.push(t),e}getZoneReference(e){let t=super.getZoneReference(e);return this.args().defaultStatic?Ps(t,`colrow`):t}getComposerContent(){let e=this.args().defaultRangeSheetId;return{text:Sg(fc(this.args().content).map(t=>{if(t.type===`REFERENCE`){let n=this.getters.getRangeFromSheetXC(e,t.value);return this.getters.getRangeString(n,this.getters.getActiveSheetId())}return t.value}).join(``),this.getters.getLocale())}}stopEdition(){this._stopEdition()}confirmEdition(e){this.args().onConfirm(e)}getTokenColor(e){if(e.type===`SYMBOL`){let t=this.args().getContextualColoredSymbolToken?.(e);if(t)return t}return super.getTokenColor(e)}hoverToken(){}},CO=class extends t.Component{static template=`o-spreadsheet-StandaloneComposer`;static props={composerContent:{type:String,optional:!0},defaultRangeSheetId:{type:String,optional:!0},defaultStatic:{type:Boolean,optional:!0},onConfirm:Function,contextualAutocomplete:{type:Object,optional:!0},placeholder:{type:String,optional:!0},title:{type:String,optional:!0},class:{type:String,optional:!0},invalid:{type:Boolean,optional:!0},autofocus:{type:Boolean,optional:!0},getContextualColoredSymbolToken:{type:Function,optional:!0}};static components={Composer:iO};static defaultProps={composerContent:``,defaultStatic:!1};composerFocusStore;standaloneComposerStore;composerInterface;spreadsheetRect=Gh();setup(){this.composerFocusStore=O(mr);let e=wr(SO,()=>({onConfirm:this.props.onConfirm,content:this.props.composerContent,defaultStatic:this.props.defaultStatic??!1,contextualAutocomplete:this.props.contextualAutocomplete,defaultRangeSheetId:this.props.defaultRangeSheetId,getContextualColoredSymbolToken:this.props.getContextualColoredSymbolToken}));this.standaloneComposerStore=e,this.composerInterface={id:`standaloneComposer`,get editionMode(){return e.editionMode},startEdition:this.standaloneComposerStore.startEdition,setCurrentContent:this.standaloneComposerStore.setCurrentContent,stopEdition:this.standaloneComposerStore.stopEdition},(0,t.onMounted)(()=>{this.props.autofocus&&this.focus===`inactive`&&(this.composerFocusStore.focusComposer(this.composerInterface,{}),this.composerFocusStore.activeComposer.editionMode)})}get focus(){return this.composerFocusStore.activeComposer===this.composerInterface?this.composerFocusStore.focusMode:`inactive`}get composerStyle(){return this.props.invalid?W({padding:`1px 0px 0px 0px`}):W({padding:`1px 0px`})}get containerClass(){return[this.focus===`inactive`?``:`active`,this.props.invalid?`o-invalid`:``,this.props.class||``].join(` `)}onFocus(e){this.composerFocusStore.focusComposer(this.composerInterface,{selection:e})}},wO=class extends t.Component{static template=`o-spreadsheet-GaugeChartDesignPanel`;static components={SidePanelCollapsible:vT,Section:Z,RoundColorPicker:TT,GeneralDesignEditor:ET,ChartErrorSection:mT,StandaloneComposer:CO,ChartHumanizeNumbers:DT,Select:Qh};static props=$w;state;setup(){this.state=(0,t.useState)({sectionRuleCancelledReasons:new Set(this.checkSectionRuleFormulasAreValid(this.props.definition.sectionRule)),sectionRule:x(this.props.definition.sectionRule)})}get designErrorMessages(){return[...this.state.sectionRuleCancelledReasons||[]].filter(e=>e!==H.NoChanges).map(e=>lg.Errors[e]||lg.Errors.Unexpected)}get isRangeMinInvalid(){return!!(this.state.sectionRuleCancelledReasons?.has(H.EmptyGaugeRangeMin)||this.state.sectionRuleCancelledReasons?.has(H.GaugeRangeMinNaN))}get isRangeMaxInvalid(){return!!(this.state.sectionRuleCancelledReasons?.has(H.EmptyGaugeRangeMax)||this.state.sectionRuleCancelledReasons?.has(H.GaugeRangeMaxNaN))}get isLowerInflectionPointInvalid(){return!!this.state.sectionRuleCancelledReasons?.has(H.GaugeLowerInflectionPointNaN)}get isUpperInflectionPointInvalid(){return!!this.state.sectionRuleCancelledReasons?.has(H.GaugeUpperInflectionPointNaN)}updateSectionColor(e,t){let n=x(this.state.sectionRule);n.colors[e]=t,this.updateSectionRule(n)}updateSectionRuleOperator(e,t){this.state.sectionRule={...this.state.sectionRule,[e]:{...this.state.sectionRule[e],operator:t}},this.updateSectionRule(this.state.sectionRule)}updateSectionRulePointType(e,t){this.state.sectionRule={...this.state.sectionRule,[e]:{...this.state.sectionRule[e],type:t}},this.updateSectionRule(this.state.sectionRule)}updateSectionRule(e){this.state.sectionRuleCancelledReasons=new Set(this.checkSectionRuleFormulasAreValid(this.state.sectionRule));let t=this.props.updateChart(this.props.chartId,{sectionRule:e});if(t.isSuccessful)this.state.sectionRule=x(e);else for(let e of t.reasons)this.state.sectionRuleCancelledReasons.add(e)}onConfirmGaugeRange(e,t){this.state.sectionRule={...this.state.sectionRule,[e]:t},this.updateSectionRule(this.state.sectionRule)}getGaugeInflectionComposerProps(e){let t=e===`lowerColor`?`lowerInflectionPoint`:`upperInflectionPoint`,n=this.state.sectionRule[t];return{onConfirm:e=>{this.state.sectionRule={...this.state.sectionRule,[t]:{...n,value:e}},this.updateSectionRule(this.state.sectionRule)},composerContent:n.value,invalid:e===`lowerColor`?this.isLowerInflectionPointInvalid:this.isUpperInflectionPointInvalid,defaultRangeSheetId:this.sheetId,class:t,placeholder:A(`Value`),title:A(`Value or formula`)}}checkSectionRuleFormulasAreValid(e){let t=new Set;return this.valueIsValidNumber(e.rangeMin)||t.add(H.GaugeRangeMinNaN),this.valueIsValidNumber(e.rangeMax)||t.add(H.GaugeRangeMaxNaN),this.valueIsValidNumber(e.lowerInflectionPoint.value)||t.add(H.GaugeLowerInflectionPointNaN),this.valueIsValidNumber(e.upperInflectionPoint.value)||t.add(H.GaugeUpperInflectionPointNaN),t}valueIsValidNumber(e){let t=this.env.model.getters.getLocale();if(!e.startsWith(`=`))return Zi(e,t)!==void 0;let n=this.env.model.getters.evaluateFormula(this.sheetId,e);return Jb(n)?!1:Zi(Kb(n),t)!==void 0}get sheetId(){let e=this.env.model.getters.getChart(this.props.chartId);if(!e)throw Error(`Chart not found with id `+this.props.chartId);return e.sheetId}get inflectionPointOperators(){return[{value:`<`,label:`<`},{value:`<=`,label:`<=`}]}get inflectionPointTypes(){return[{value:`number`,label:A(`Number`)},{value:`percentage`,label:A(`Percentage`)}]}},TO=class extends t.Component{static template=`o-spreadsheet-GeoChartRegionSelectSection`;static components={Section:Z,Select:Qh};static props={chartId:String,definition:Object,updateChart:Function};updateSelectedRegion(e){this.props.updateChart(this.props.chartId,{region:e})}get availableRegions(){return this.env.model.getters.getGeoChartAvailableRegions()}get selectedRegion(){return this.props.definition.region||this.availableRegions[0]?.id}get regionOptions(){return this.availableRegions.map(e=>({value:e.id,label:e.label}))}},EO=class extends hT{static template=`o-spreadsheet-GeoChartConfigPanel`;static components={...hT.components,GeoChartRegionSelectSection:TO};getLabelRangeOptions(){return[]}},DO=class extends MT{static template=`o-spreadsheet-GeoChartDesignPanel`;static components={...MT.components,RoundColorPicker:TT,ColorScalePicker:VD,Select:Qh};updateColorScale(e){this.props.updateChart(this.props.chartId,{colorScale:e})}updateMissingValueColor(e){this.props.updateChart(this.props.chartId,{missingValueColor:e})}updateLegendPosition(e){this.props.updateChart(this.props.chartId,{legendPosition:e})}get selectedMissingValueColor(){return this.props.definition.missingValueColor||`#ffffff`}get legendValues(){return[{value:`none`,label:A(`None`)},{value:`top`,label:A(`Top left`)},{value:`right`,label:A(`Top right`)},{value:`bottom`,label:A(`Bottom right`)},{value:`left`,label:A(`Bottom left`)}]}},OO=class extends hT{static template=`o-spreadsheet-HierarchicalChartConfigPanel`;static components={...hT.components}},kO=class extends hT{static template=`o-spreadsheet-LineConfigPanel`;get canTreatLabelsAsText(){let e=this.env.model.getters.getChart(this.props.chartId),t=e?.getRangeDefinition();return e?.sheetId&&t?.type===`line`?uE(e.getData(this.env.model.getters,this.props.chartId)):!1}get stackedLabel(){return this.props.definition.fillArea?this.chartTerms.StackedAreaChart:this.chartTerms.StackedLineChart}getLabelRangeOptions(){let e=[this.getAggregateLabelRangeOption()];return this.canTreatLabelsAsText&&e.push({name:`labelsAsText`,value:this.props.definition.labelsAsText,label:this.chartTerms.TreatLabelsAsText,onChange:this.onUpdateLabelsAsText.bind(this)}),e}onUpdateLabelsAsText(e){let t;`axesDesign`in this.props.definition&&(t={...this.props.definition.axesDesign,x:{...this.props.definition.axesDesign?.x,min:void 0,max:void 0}}),this.props.updateChart(this.props.chartId,{labelsAsText:e,axesDesign:t})}onUpdateStacked(e){this.props.updateChart(this.props.chartId,{stacked:e})}onUpdateCumulative(e){this.props.updateChart(this.props.chartId,{cumulative:e})}},AO=class extends NT{static template=`o-spreadsheet-LineChartDesignPanel`;static components={...NT.components,ChartShowDataMarkers:UD}},jO=class extends t.Component{static template=`o-spreadsheet.PieHoleSize`;static components={Section:Z,NumberInput:yT};static props={onValueChange:Function,value:Number};onChange(e){isNaN(Number(e))||this.props.onValueChange(S(Number(e),0,95))}},MO=class extends t.Component{static template=`o-spreadsheet-PieChartDesignPanel`;static components={GeneralDesignEditor:ET,Section:Z,ChartLegend:OT,ChartShowValues:jT,PieHoleSize:jO,Checkbox:Qw,ChartHumanizeNumbers:DT,SidePanelCollapsible:vT,RoundColorPicker:TT,Select:Qh};static props=$w;state=(0,t.useState)({index:0});get runtime(){return this.env.model.getters.getChartRuntime(this.props.chartId)}get isLegendDisabled(){let e=this.runtime.chartJsConfig.data.labels;return!e||e.every(e=>e===``)}get labels(){return this.runtime.chartJsConfig.data.labels?.map((e,t)=>e===``?`Slice ${t+1}`:e)||[]}onPieHoleSizeChange(e){this.props.updateChart(this.props.chartId,{...this.props.definition,pieHolePercentage:e})}get defaultHoleSize(){return 50}updateEditedValues(e){this.state.index=parseInt(e)}updateSliceColor(e){let t=x(this.props.definition.slicesColors);t||=Array(this.labels?.length).fill(``),t[this.state.index]=e,this.props.updateChart(this.props.chartId,{...this.props.definition,slicesColors:t})}get sliceColor(){let e=this.props.definition.slicesColors;return e?.[this.state.index]?e?.[this.state.index]:this.runtime.chartJsConfig.data.datasets[0]?.backgroundColor?.[this.state.index]}get pieSliceOptions(){return this.labels.map((e,t)=>({value:t.toString(),label:e}))}},NO=class extends t.Component{static template=`o-spreadsheet-RadarChartDesignPanel`;static components={GeneralDesignEditor:ET,SeriesDesignEditor:kT,Section:Z,ChartLegend:OT,ChartShowValues:jT,ChartShowDataMarkers:UD,Checkbox:Qw,ChartHumanizeNumbers:DT};static props=$w},PO=class extends hT{static template=`o-spreadsheet-ScatterConfigPanel`;get canTreatLabelsAsText(){let e=this.env.model.getters.getChart(this.props.chartId),t=e?.getRangeDefinition();return e?.sheetId&&t?.type===`scatter`?uE(e.getData(this.env.model.getters,this.props.chartId)):!1}onUpdateLabelsAsText(e){let t;`axesDesign`in this.props.definition&&(t={...this.props.definition.axesDesign,x:{...this.props.definition.axesDesign?.x,min:void 0,max:void 0}}),this.props.updateChart(this.props.chartId,{labelsAsText:e,axesDesign:t})}getLabelRangeOptions(){let e=[this.getAggregateLabelRangeOption()];return this.canTreatLabelsAsText&&e.push({name:`labelsAsText`,value:this.props.definition.labelsAsText,label:this.chartTerms.TreatLabelsAsText,onChange:this.onUpdateLabelsAsText.bind(this)}),e}},FO=class extends t.Component{static template=`o-spreadsheet-ScorecardChartConfigPanel`;static components={SelectionInput:lT,ChartErrorSection:mT,Section:Z,Select:Qh};static props=$w;state=(0,t.useState)({keyValueDispatchResult:void 0,baselineDispatchResult:void 0});keyValue=this.props.definition.keyValue;baseline=this.props.definition.baseline;get errorMessages(){return[...this.state.keyValueDispatchResult?.reasons||[],...this.state.baselineDispatchResult?.reasons||[]].filter(e=>e!==H.NoChanges).map(e=>lg.Errors[e]||lg.Errors.Unexpected)}get isKeyValueInvalid(){return!!this.state.keyValueDispatchResult?.isCancelledBecause(H.InvalidScorecardKeyValue)}get isBaselineInvalid(){return!!this.state.keyValueDispatchResult?.isCancelledBecause(H.InvalidScorecardBaseline)}onKeyValueRangeChanged(e){this.keyValue=e[0],this.state.keyValueDispatchResult=this.props.canUpdateChart(this.props.chartId,{keyValue:this.keyValue})}updateKeyValueRange(){this.state.keyValueDispatchResult=this.props.updateChart(this.props.chartId,{keyValue:this.keyValue})}getKeyValueRange(){return this.keyValue||``}onBaselineRangeChanged(e){this.baseline=e[0],this.state.baselineDispatchResult=this.props.canUpdateChart(this.props.chartId,{baseline:this.baseline})}updateBaselineRange(){this.state.baselineDispatchResult=this.props.updateChart(this.props.chartId,{baseline:this.baseline})}getBaselineRange(){return this.baseline||``}updateBaselineMode(e){this.props.updateChart(this.props.chartId,{baselineMode:e})}get baselineModeOptions(){return[{value:`text`,label:A(`Absolute value`)},{value:`difference`,label:A(`Value change from key value`)},{value:`percentage`,label:A(`Percentage change from key value`)},{value:`progress`,label:A(`Progress bar`)}]}},IO=class extends t.Component{static template=`o-spreadsheet-ScorecardChartDesignPanel`;static components={GeneralDesignEditor:ET,RoundColorPicker:TT,SidePanelCollapsible:vT,Section:Z,Checkbox:Qw,ChartTitle:ST,ChartHumanizeNumbers:DT};static props=$w;get colorsSectionTitle(){return this.props.definition.baselineMode===`progress`?A(`Progress bar colors`):A(`Baseline colors`)}get defaultScorecardTitleFontSize(){return 14}translate(e){return this.env.model.getters.dynamicTranslate(e)}setColor(e,t){switch(t){case`backgroundColor`:this.props.updateChart(this.props.chartId,{background:e});break;case`baselineColorDown`:this.props.updateChart(this.props.chartId,{baselineColorDown:e});break;case`baselineColorUp`:this.props.updateChart(this.props.chartId,{baselineColorUp:e});break}}get keyStyle(){return{align:`center`,fontSize:32,...this.props.definition.keyDescr}}get baselineStyle(){return{align:`center`,fontSize:16,...this.props.definition.baselineDescr}}setKeyText(e){this.props.updateChart(this.props.chartId,{keyDescr:{...this.props.definition.keyDescr,text:e}})}updateKeyStyle(e){let t={...this.keyStyle,...e};this.props.updateChart(this.props.chartId,{keyDescr:t})}setBaselineText(e){this.props.updateChart(this.props.chartId,{baselineDescr:{...this.props.definition.baselineDescr,text:e}})}updateBaselineStyle(e){let t={...this.baselineStyle,...e};this.props.updateChart(this.props.chartId,{baselineDescr:t})}},LO=class extends t.Component{static template=`o-spreadsheet-SunburstChartDesignPanel`;static components={GeneralDesignEditor:ET,Section:Z,SidePanelCollapsible:vT,ChartShowValues:jT,Checkbox:Qw,TextStyler:Jw,RoundColorPicker:TT,ChartLegend:OT,PieHoleSize:jO,ChartHumanizeNumbers:DT};static props=$w;defaults=HE;get showValues(){return this.props.definition.showValues??HE.showValues}get showLabels(){return this.props.definition.showLabels??HE.showLabels}get groupColors(){let e=this.props.chartId;return this.env.model.getters.getChartRuntime(e).chartJsConfig.data.datasets[0]?.groupColors||[]}onGroupColorChanged(e,t){let n=x(this.props.definition.groupColors)??[];n[e]=t,this.props.updateChart(this.props.chartId,{groupColors:n})}onPieHoleSizeChange(e){this.props.updateChart(this.props.chartId,{...this.props.definition,pieHolePercentage:e})}},RO=class extends t.Component{static template=`o-spreadsheet-TreeMapCategoryColors`;static components={Checkbox:Qw,RoundColorPicker:TT};static props={chartId:String,definition:Object,onColorChanged:Function};get coloringOptions(){let e=this.props.definition.coloringOptions??Nf.coloringOptions;if(e.type!==`categoryColor`)throw Error(`Coloring options is not solid color`);return e}getTreeGroupAndColors(){return this.env.model.getters.getChartRuntime(this.props.chartId).chartJsConfig.data.datasets[0]?.groupColors||[]}onGroupColorChanged(e,t){let n=x(this.coloringOptions);n.colors[e]=t||void 0,this.props.onColorChanged(n)}useValueBasedGradient(e){if(this.coloringOptions.type!==`categoryColor`)throw Error(`Coloring options is not solid color`);this.props.onColorChanged({...this.coloringOptions,useValueBasedGradient:e})}},zO=class extends t.Component{static template=`o-spreadsheet-TreeMapColorScale`;static components={RoundColorPicker:TT};static props={chartId:String,definition:Object,onColorChanged:Function};get coloringOptions(){let e=this.props.definition.coloringOptions??Nf.coloringOptions;if(e.type!==`colorScale`)throw Error(`Coloring options is not a color scale`);return e}setColorScaleColor(e,t){this.props.onColorChanged({...this.coloringOptions,[e]:t})}};let BO={type:`colorScale`,minColor:`#FFF5EB`,midColor:`#FD8D3C`,maxColor:`#7F2704`},VO={type:`categoryColor`,colors:[],useValueBasedGradient:!0};var HO=class extends t.Component{static template=`o-spreadsheet-TreeMapChartDesignPanel`;static components={GeneralDesignEditor:ET,Section:Z,SidePanelCollapsible:vT,ChartShowValues:jT,Checkbox:Qw,TextStyler:Jw,RoundColorPicker:TT,BadgeSelection:xT,TreeMapCategoryColors:RO,TreeMapColorScale:zO,ChartHumanizeNumbers:DT};static props=$w;savedColors={categoryColors:VO,colorScale:BO};defaults=Nf;get showHeaders(){return this.props.definition.showHeaders??Nf.showHeaders}get showValues(){return this.props.definition.showValues??Nf.showValues}get showLabels(){return this.props.definition.showLabels??Nf.showLabels}get coloringOptions(){return this.props.definition.coloringOptions??Nf.coloringOptions}changeColoringOption(e){let t=e===`categoryColor`?this.savedColors.categoryColors:this.savedColors.colorScale;this.props.updateChart(this.props.chartId,{coloringOptions:t})}onCategoryColorChange(e){this.savedColors.categoryColors=e,this.props.updateChart(this.props.chartId,{coloringOptions:e})}onColorScaleChange(e){this.savedColors.colorScale=e,this.props.updateChart(this.props.chartId,{coloringOptions:e})}get coloringOptionChoices(){return[{label:A(`Category color`),value:`categoryColor`},{label:A(`Color scale`),value:`colorScale`}]}},UO=class extends t.Component{static template=`o-spreadsheet-WaterfallChartDesignPanel`;static components={GeneralDesignEditor:ET,ChartShowValues:jT,Checkbox:Qw,SidePanelCollapsible:vT,Section:Z,RoundColorPicker:TT,AxisDesignEditor:CT,RadioSelection:wT,ChartLegend:OT,ChartHumanizeNumbers:DT};static props=$w;axisChoices=xf;onUpdateShowSubTotals(e){this.props.updateChart(this.props.chartId,{showSubTotals:e})}onUpdateShowConnectorLines(e){this.props.updateChart(this.props.chartId,{showConnectorLines:e})}onUpdateFirstValueAsSubtotal(e){this.props.updateChart(this.props.chartId,{firstValueAsSubtotal:e})}updateColor(e,t){this.props.updateChart(this.props.chartId,{[e]:t})}get axesList(){return[{id:`x`,name:A(`Horizontal axis`)},{id:`y`,name:A(`Vertical axis`)}]}get positiveValuesColor(){return this.props.definition.positiveValuesColor||`#4EA7F2`}get negativeValuesColor(){return this.props.definition.negativeValuesColor||`#EA6175`}get subTotalValuesColor(){return this.props.definition.subTotalValuesColor||`#AAAAAA`}updateVerticalAxisPosition(e){this.props.updateChart(this.props.chartId,{verticalAxisPosition:e})}onToggleZoom(e){this.props.updateChart(this.props.chartId,{zoomable:e})}};let WO=new B;Zw.add(`range`,kD),WO.add(`line`,{configuration:kO,design:AO}).add(`scatter`,{configuration:PO,design:MT}).add(`bubble`,{configuration:FT,design:IT}).add(`bar`,{configuration:gT,design:PT}).add(`combo`,{configuration:hT,design:WD}).add(`pie`,{configuration:hT,design:MO}).add(`gauge`,{configuration:qD,design:wO}).add(`scorecard`,{configuration:FO,design:IO}).add(`waterfall`,{configuration:hT,design:UO}).add(`pyramid`,{configuration:hT,design:MT}).add(`radar`,{configuration:hT,design:NO}).add(`sunburst`,{configuration:OO,design:LO}).add(`geo`,{configuration:EO,design:DO}).add(`funnel`,{configuration:GD,design:KD}).add(`treemap`,{configuration:OO,design:HO}).add(`calendar`,{configuration:BD,design:HD});let GO={line:A(`Line`),column:A(`Column`),bar:A(`Bar`),area:A(`Area`),pie:A(`Pie`),hierarchical:A(`Hierarchical`),misc:A(`Miscellaneous`)};var KO=class extends t.Component{static template=`o-spreadsheet-ChartTypePicker`;static components={Section:Z,Popover:qh};static props={chartId:String,chartPanelStore:Object};categories=GO;chartTypeByCategories={};popoverRef=(0,t.useRef)(`popoverRef`);selectRef=(0,t.useRef)(`selectRef`);state=(0,t.useState)({popoverProps:void 0,popoverStyle:``});setup(){(0,t.useExternalListener)(window,`pointerdown`,this.onExternalClick,{capture:!0});let e=this.env.model.getters.getChart(this.props.chartId)?.getSupportedChartTypes()??new Set;for(let t of hh.getAll())e.has(t.chartType)&&(this.chartTypeByCategories[t.category]?this.chartTypeByCategories[t.category].push(t):this.chartTypeByCategories[t.category]=[t])}onExternalClick(e){cm(this.popoverRef.el?.parentElement,e)||cm(this.selectRef.el,e)||this.closePopover()}onTypeChange(e){this.props.chartPanelStore.changeChartType(this.props.chartId,e),this.closePopover()}getChartDefinition(e){return this.env.model.getters.getChartDefinition(e)}getSelectedChartSubtypeProperties(){let e=this.getChartDefinition(this.props.chartId);return hh.getAll().find(t=>t.matcher?.(e)||!1)||hh.get(e.type)}onPointerDown(e){if(this.state.popoverProps){this.closePopover();return}let{bottom:t,right:n,width:r}=e.currentTarget.getBoundingClientRect();this.state.popoverProps={anchorRect:{x:n,y:t,width:0,height:0},positioning:`top-right`,verticalOffset:0},this.state.popoverStyle=W({width:`${r}px`})}closePopover(){this.state.popoverProps=void 0}},qO=class extends fr{mutators=[`activatePanel`,`changeChartType`];panel=`configuration`;creationContexts={};activatePanel(e){this.panel=e}changeChartType(e,t){let n=this.getters.getContextCreationChart(e),r=this.creationContexts[e]||{},i=r.dataSetStyles??n?.dataSetStyles,a={...r.dataSource,...n?.dataSource},o=n?.dataSource,s=r.dataSource;if((!o||o?.type===`range`)&&(!s||s?.type===`range`)){let e=o?.dataSets,t=s?.dataSets,c=o?.dataSets;if(c&&t&&this.dataSetsStartWithSameRanges(c,t,n?.dataSetStyles,r.dataSetStyles)){let a=this.mergeDataSetStyles(c,t,n?.dataSetStyles,r.dataSetStyles);e=a.dataSets,i=a.dataSetStyles}a={type:`range`,dataSetsHaveTitle:!1,...r.dataSource,...n?.dataSource,dataSets:e??[]}}this.creationContexts[e]={...r,...n,dataSource:a,dataSetStyles:i};let c=this.getters.getFigureIdFromChartId(e),l=this.getters.getFigureSheetId(c);if(!l)return;let u=this.getDefinitionFromContextCreation(e,t);this.model.dispatch(`UPDATE_CHART`,{definition:u,chartId:e,figureId:c,sheetId:l})}dataSetsStartWithSameRanges(e,t,n,r){return e.every((e,i)=>{let a=t[i];return T(e.dataRange,a.dataRange)&&T(n?.[e.dataSetId],r?.[a.dataSetId])})}mergeDataSetStyles(e,t,n,r){let i=[],a={};for(let o=0;o<t.length;o++){let s=e[o]??t[o],c=n?.[s.dataSetId]??r?.[s.dataSetId],l=o.toString();i.push({...s,dataSetId:l}),c&&(a[l]=c)}return{dataSets:i,dataSetStyles:a}}getDefinitionFromContextCreation(e,t){let n=hh.get(t),r=this.creationContexts[e],i=ny.get(n.chartType),a=ty.get(r.dataSource?.type??`range`),o={...i.getDefinitionFromContextCreation(r,a),...n.subtypeDefinition};return AD.deleteInvalidKeys(o)}},JO=class extends t.Component{static template=`o-spreadsheet-ChartPanel`;static components={Section:Z,ChartTypePicker:KO};static props={onCloseSidePanel:Function,chartId:String};store;get chartId(){return this.props.chartId}setup(){this.store=wr(qO)}switchPanel(e){this.store.activatePanel(e)}updateChart(e,t){let n=this.env.model.getters.getFigureIdFromChartId(e);if(e!==this.chartId)return;let r={...this.getChartDefinition(this.chartId),...t};return this.env.model.dispatch(`UPDATE_CHART`,{definition:r,chartId:e,figureId:n,sheetId:this.env.model.getters.getFigureSheetId(n)})}canUpdateChart(e,t){let n=this.env.model.getters.getFigureIdFromChartId(e);if(e!==this.chartId||!this.env.model.getters.isChartDefined(e))return;let r={...this.getChartDefinition(this.chartId),...t};return this.env.model.canDispatch(`UPDATE_CHART`,{definition:r,chartId:e,figureId:n,sheetId:this.env.model.getters.getFigureSheetId(n)})}onTypeChange(e){this.chartId&&this.store.changeChartType(this.chartId,e)}get chartPanel(){if(!this.chartId)throw Error(`Chart not defined.`);let e=this.env.model.getters.getChartType(this.chartId);if(!e)throw Error(`Chart not defined.`);let t=WO.get(e);if(!t)throw Error(`Component is not defined for type ${e}`);return t}getChartDefinition(e){return this.env.model.getters.getChartDefinition(e)}};function YO(e,...n){(0,t.useEffect)(e=>(e?.addEventListener(...n),()=>e?.removeEventListener(...n)),()=>[e.el])}function XO(e){let n=(0,t.useState)({hovered:!1});YO(e,`mouseenter`,()=>n.hovered=!0),YO(e,`mouseleave`,()=>n.hovered=!1);let r=new ResizeObserver(()=>{n.hovered=!1});return(0,t.useEffect)(()=>(r.observe(e.el),()=>{r.disconnect()}),()=>[e.el]),n}function ZO(e,t){let n=XO(e);QO({get highlights(){return n.hovered?t.highlights:[]}})}function QO(e){let n=Cr(),r=wr(oT);(0,t.onMounted)(()=>{r.register(e)});let i=e.highlights;(0,t.useEffect)(e=>{T(e,i)||(i=e,n.trigger(`store-updated`))},()=>[e.highlights])}function $O(e,t,n){let r={},i=At(e=>{let n=e.split(`,`);return t.filter(e=>n.includes(e.type))});for(let t of e){let e,a=i(t.types.sort().join(`,`));a.length&&(e=_t(()=>t.compute(a,n))),r[t.name]={value:e,format:t.format}}return r}let ek=[{name:A(`Total rows`),types:Object.values(V),compute:(e,t)=>e.length,format:`0`},{name:A(`Unique values`),types:[V.number,V.text,V.boolean,V.error],compute:(e,t)=>{let n=new Set;for(let t of e)n.add(t.value);return n.size},format:`0`},{name:A(`Sum`),types:[V.number],compute:(e,t)=>Pb([[e]],t)},{name:A(`Average`),types:[V.number],compute:(e,t)=>Xb([[e]],t)},{name:A(`Median`),types:[V.number],compute:(e,t)=>Zb([[e]],t)??``},{name:A(`Minimum value`),types:[V.number],compute:(e,t)=>tx([[e]],t).value},{name:A(`Maximum value`),types:[V.number],compute:(e,t)=>ex([[e]],t).value}];function tk(e){let t={};for(let n of e)t[n.name]=void 0;return t}var nk=class extends fr{mutators=[`updateIgnoredRows`,`selectNextColumn`,`selectPreviousColumn`];statisticFnResults=tk(ek);selectedColumn;numericValues=[];values=[];dataFormat;countChartData;histogramData;isDirty=!1;ignoredRows=0;constructor(e){super(e),this.model.selection.observe(this,{handleEvent:this.refreshStatistics.bind(this)}),this.onDispose(()=>{this.model.selection.unobserve(this)}),this.refreshStatistics()}handle(e){switch((Nl.has(e.type)||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e))&&(this.isDirty=!0),e.type){case`HIDE_COLUMNS_ROWS`:case`UNHIDE_COLUMNS_ROWS`:case`GROUP_HEADERS`:case`UNGROUP_HEADERS`:case`ACTIVATE_SHEET`:case`ACTIVATE_NEXT_SHEET`:case`ACTIVATE_PREVIOUS_SHEET`:case`EVALUATE_CELLS`:case`UNDO`:case`REDO`:this.isDirty=!0}}finalize(){this.isDirty&&(this.isDirty=!1,this.refreshStatistics())}get hasSingleColumn(){return this.selectedColumn!==void 0}computeCountChartData(){if(this.selectedColumn===void 0)return;let e=this.numericValues.length?this.numericValues:this.values;if(!e.length)return;let t=new Map;for(let n of e){if(n.value===null||n.value===void 0)continue;let e=typeof n.value==`number`?R(n.value,this.localeFormat):n.value.toString();t.has(e)||t.set(e,{positions:[],count:0,value:n.value}),t.get(e).positions.push({row:n.row,col:n.col}),t.get(e).count+=1}let n=[],r=[],i=[];return Array.from(t.entries()).sort((e,t)=>t[1].count-e[1].count).forEach(([e,t])=>{i.push(e),n.push(t.count),r.push(t.positions)}),{data:n,labels:i,positions:r}}computeHistogramData(){let e=this.numericValues.map(e=>e.value);if(!e.length)return;let t=1+Math.floor(Math.log2(e.length)),n=Math.min(...e),r=Math.max(...e)-n,i=r/t,a=Array(t).fill(0);if(r===0)a[0]=e.length;else for(let i of e){let e=(i-n)/r,o=Math.floor(e*t),s=Math.min(t-1,o);a[s]+=1}let o=this.localeFormat,s=[],c=[];for(let e=0;e<=t;e++)if(s.push(R(n+e*i,o)),e!==0){let t=n+(e-1)*i;c.push(`${R(t,o)}-${R(t+i,o)}`)}return{data:a,tooltipLabels:c,tickLabels:s}}get valueFrequencies(){let e=this.countChartData;return e?e.labels.map((t,n)=>({value:t,count:e.data[n],positions:e.positions[n]})):[]}updateIgnoredRows(e){this.ignoredRows=e,this.refreshStatistics()}refreshStatistics(){let e=this.getters;if(!e.isSingleColSelected()){this.selectedColumn=void 0,this.numericValues=[],this.values=[],this.statisticFnResults=tk(ek),this.dataFormat=void 0,this.countChartData=void 0,this.histogramData=void 0;return}let{sheetId:t,col:n}=e.getActivePosition();this.selectedColumn=n,this.dataFormat=e.getEvaluatedCellsInZone(t,{top:0,left:n,bottom:e.getNumberRows(t)-1,right:n}).map(e=>e.format).find(w)??`0.00`;let r=e.getNumberRows(t),i=[],a=[],o=[],s=0;for(let c=0;c<r;c++){if(e.isRowHidden(t,c)||e.isColHidden(t,n))continue;if(s<this.ignoredRows){s++;continue}let r=e.getEvaluatedCell({sheetId:t,col:n,row:c});i.push(r),r.type!==V.empty&&r.type!==V.error&&(o.push({row:c,col:n,value:r.value}),r.type===V.number&&a.push({row:c,col:n,value:r.value}))}this.statisticFnResults=$O(ek,i,e.getLocale()),this.numericValues=a,this.values=o,this.countChartData=this.computeCountChartData(),this.histogramData=this.computeHistogramData()}selectPreviousColumn(){this.selectedColumn!==void 0&&this.model.selection.moveAnchorCell(`left`,1)}selectNextColumn(){this.selectedColumn!==void 0&&this.model.selection.moveAnchorCell(`right`,1)}get localeFormat(){return{locale:this.getters.getLocale(),format:this.dataFormat}}get statItems(){let e=this.localeFormat;return Object.entries(this.statisticFnResults).map(([t,n])=>n?.value===void 0?{name:t,value:`—`}:{name:t,value:R(n.value(),{locale:e.locale,format:n.format??e.format})})}},rk=class extends t.Component{static template=`o-spreadsheet-ColumnStatsPanel`;static props={onCloseSidePanel:Function};static components={NumberInput:yT,SidePanelCollapsible:vT,BadgeSelection:xT,Section:Z};state=(0,t.useState)({currentChart:`count`,currentFrequencyOrder:`descending`,highlightPositions:[]});store;chartCanvas=(0,t.useRef)(`columnStatsChart`);chart;setup(){this.store=O(nk),QO(this),(0,t.onWillUnmount)(()=>this.destroyChart()),(0,t.useEffect)(()=>{this.updateChart()},()=>[this.store.countChartData,this.store.histogramData,this.state.currentChart])}get columnLabel(){if(this.store.selectedColumn===void 0)return``;let e=this.env.model.getters.getEvaluatedCell({sheetId:this.env.model.getters.getActiveSheetId(),col:this.store.selectedColumn,row:0});return e?.type===`text`&&e.value.trim()!==``?e.value:A(`Column %s`,qt(this.store.selectedColumn))}get charts(){return[{value:`count`,label:A(`Count`),icon:`o-spreadsheet-Icon.COUNT_CHART`},{value:`histogram`,label:A(`Distribution`),icon:`o-spreadsheet-Icon.COUNT_CHART`}]}get frequencyOrders(){return[{value:`descending`,label:A(`Descending`),icon:`o-spreadsheet-Icon.DESCENDING_SORT`},{value:`ascending`,label:A(`Ascending`),icon:`o-spreadsheet-Icon.ASCENDING_SORT`}]}get shouldShowChart(){return this.state.currentChart===`histogram`?this.store.numericValues.length>0:this.state.currentChart===`count`?this.store.values.length>0:!1}get chartErrorMessage(){return this.state.currentChart===`histogram`&&this.store.numericValues.length===0?A(`No numeric values to display.`):this.state.currentChart===`count`&&this.store.values.length===0?A(`No values to display.`):null}getChartConfiguration(){switch(this.state.currentChart){case`histogram`:return this.getHistogramChartConfiguration();case`count`:return this.getCountChartConfiguration()}return null}createChart(){if(!globalThis.Chart)throw Error(`Chart.js library is not loaded`);let e=this.chartCanvas.el;if(!e)return;let t=e.getContext(`2d`);if(!t)return;let n=this.getChartConfiguration();n&&(this.chart=new globalThis.Chart(t,n))}getCountChartConfiguration(){let e=this.store.countChartData;return e?{type:`bar`,data:{labels:e.labels.map(this.clipTextWithEllipsis.bind(this)),datasets:[{type:`bar`,data:e.data,backgroundColor:wd,borderSkipped:!1,borderWidth:1,barPercentage:1,categoryPercentage:1}]},options:{animation:!1,responsive:!0,maintainAspectRatio:!1,plugins:{legend:{display:!1},tooltip:{enabled:!0}},scales:{x:{display:!0,ticks:{maxRotation:90,minRotation:90}},y:{display:!0,beginAtZero:!0}}}}:null}getHistogramChartConfiguration(){let e=this.store.histogramData;return e?{type:`line`,data:{labels:e.tooltipLabels,datasets:[{type:`bar`,data:e.data,backgroundColor:wd,borderSkipped:!1,borderWidth:1,barPercentage:1,categoryPercentage:1}]},options:{animation:!1,responsive:!0,maintainAspectRatio:!1,plugins:{legend:{display:!1},tooltip:{enabled:!0}},scales:{x:{display:!1,stacked:!0,position:`top`},y:{display:!0},x2:{type:`linear`,position:`bottom`,display:!0,min:0,max:e.tooltipLabels.length,ticks:{callback:t=>Math.floor(t)===t?this.clipTextWithEllipsis(e.tickLabels?.[t]):``,maxRotation:90,minRotation:90}}}}}:null}clipTextWithEllipsis(e){if(!e)return``;let t=this.chartCanvas.el;if(!t)return e;let n=t.getContext(`2d`);return n?Ru(n,e,75):e}updateChart(){let e=this.getChartConfiguration();if(!e){this.destroyChart();return}if(!this.chart){this.createChart();return}this.chart.config.options=e.options,this.chart.data=e.data,this.chart.update()}destroyChart(){this.chart?.destroy(),this.chart=void 0}switchChart(e){this.state.currentChart=e}switchFrequencyOrder(e){this.state.currentFrequencyOrder=e}updateIgnoredRows(e){let t=parseInt(e,10);this.store.updateIgnoredRows(isNaN(t)?0:Math.max(0,t))}get valueFrequencies(){let e=this.state.currentFrequencyOrder===`ascending`?(e,t)=>e.count-t.count:(e,t)=>t.count-e.count;return this.store.valueFrequencies.sort(e).slice(0,5)}get highlights(){let e=this.store.selectedColumn;return e===void 0?[]:[{range:this.env.model.getters.getRangeFromZone(this.env.model.getters.getActiveSheetId(),{top:this.store.ignoredRows,left:e,bottom:void 0,right:e}),color:`#a3e9a39a`,interactive:!1},...this.state.highlightPositions.map(e=>({range:this.env.model.getters.getRangeFromZone(this.env.model.getters.getActiveSheetId(),D(e)),color:`#ffeb3b9a`,interactive:!1}))]}highlightFrequencyPositions(e){this.state.highlightPositions=e}clearHighlights(){this.state.highlightPositions=[]}},ik=class extends t.Component{static template=`o-spreadsheet-CellIsRuleEditor`;static components={ColorPickerWidget:Gw,Select:Qh};static props={store:Object};getTextDecoration=Mh;get rule(){return this.props.store.state.rules.cellIs}},ak=class extends t.Component{static props={criterion:Object,onCriterionChanged:Function,disableFormulas:{type:Boolean,optional:!0},autofocus:{type:Boolean,optional:!0}};setup(){let e=O(mr);e.activeComposer.editionMode!==`inactive`&&e.activeComposer.stopEdition()}updateCriterion(e){let t={...this.props.criterion,...e};this.props.onCriterionChanged(t)}};let Q=new B;Q.add(`containsText`,{type:`containsText`,isValueValid:(e,t)=>String(e).toLowerCase().includes(String(t.values[0]).toLowerCase()),getErrorString:e=>A(`The value must be a text that contains "%s"`,String(e.values[0])),isCriterionValueValid:e=>!!e,criterionValueErrorString:hg.CriterionError.notEmptyValue,numberOfValues:()=>1,name:A(`Text contains`),getPreview:e=>A(`Text contains "%s"`,e.values[0])}),Q.add(`notContainsText`,{type:`notContainsText`,isValueValid:(e,t)=>!String(e).toLowerCase().includes(String(t.values[0]).toLowerCase()),getErrorString:e=>A(`The value must be a text that does not contain "%s"`,String(e.values[0])),isCriterionValueValid:e=>!!e,criterionValueErrorString:hg.CriterionError.notEmptyValue,numberOfValues:()=>1,name:A(`Text does not contain`),getPreview:e=>A(`Text does not contain "%s"`,e.values[0])}),Q.add(`isEqualText`,{type:`isEqualText`,isValueValid:(e,t)=>String(e).toLowerCase()===String(t.values[0]).toLowerCase(),getErrorString:e=>A(`The value must be exactly "%s"`,String(e.values[0])),isCriterionValueValid:e=>!!e,criterionValueErrorString:hg.CriterionError.notEmptyValue,numberOfValues:()=>1,name:A(`Text is exactly`),getPreview:e=>A(`Text is exactly "%s"`,e.values[0])});let ok=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,63}$/;Q.add(`isEmail`,{type:`isEmail`,isValueValid:(e,t)=>typeof e==`string`&&ok.test(e),getErrorString:()=>A(`The value must be a valid email address`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Text is valid email`),getPreview:()=>A(`Text is valid email`)}),Q.add(`isLink`,{type:`isLink`,isValueValid:(e,t)=>$l(e)!==void 0,getErrorString:()=>A(`The value must be a valid link`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Text is valid link`),getPreview:()=>A(`Text is valid link`)}),Q.add(`dateIs`,{type:`dateIs`,isValueValid:(e,t)=>{let n=Jv(t,L)[0],r=Ur(e,L);return r===void 0||n===void 0?!1:[`lastWeek`,`lastMonth`,`lastYear`].includes(t.dateValue)?hi(r,Math.floor(ii(k.now())),n):mi(r,n)},getErrorString:(e,t)=>{let n=t.getLocale();return e.dateValue===`exactDate`?A(`The value must be the date %s`,ck(e,n)[0]):A(`The value must be %s`,hg.DateIs[e.dateValue])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:e=>+(e.dateValue===`exactDate`),name:A(`Date is`),getPreview:(e,t)=>e.dateValue===`exactDate`?A(`Date is %s`,Yv(e.values,t.getLocale())[0]):A(`Date is %s`,hg.DateIs[e.dateValue])}),Q.add(`dateIsBefore`,{type:`dateIsBefore`,isValueValid:(e,t)=>{let n=Jv(t,L)[0],r=Ur(e,L);return r!==void 0&&n!==void 0&&gi(r,n)},getErrorString:(e,t)=>{let n=t.getLocale();return e.dateValue===`exactDate`?A(`The value must be a date before %s`,ck(e,n)[0]):A(`The value must be a date before %s`,hg.DateIsBefore[e.dateValue])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:e=>+(e.dateValue===`exactDate`),name:A(`Date is before`),getPreview:(e,t)=>e.dateValue===`exactDate`?A(`Date is before %s`,Yv(e.values,t.getLocale())[0]):A(`Date is before %s`,hg.DateIsBefore[e.dateValue])}),Q.add(`dateIsOnOrBefore`,{type:`dateIsOnOrBefore`,isValueValid:(e,t)=>{let n=Jv(t,L)[0],r=Ur(e,L);return r!==void 0&&n!==void 0&&_i(r,n)},getErrorString:(e,t)=>{let n=t.getLocale();return e.dateValue===`exactDate`?A(`The value must be a date on or before %s`,ck(e,n)[0]):A(`The value must be a date on or before %s`,hg.DateIsBefore[e.dateValue])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:e=>+(e.dateValue===`exactDate`),name:A(`Date is on or before`),getPreview:(e,t)=>e.dateValue===`exactDate`?A(`Date is on or before %s`,Yv(e.values,t.getLocale())[0]):A(`Date is on or before %s`,hg.DateIsBefore[e.dateValue])}),Q.add(`dateIsAfter`,{type:`dateIsAfter`,isValueValid:(e,t)=>{let n=Jv(t,L)[0],r=Ur(e,L);return r!==void 0&&n!==void 0&&vi(r,n)},getErrorString:(e,t)=>{let n=t.getLocale();return e.dateValue===`exactDate`?A(`The value must be a date after %s`,ck(e,n)[0]):A(`The value must be a date after %s`,hg.DateIsBefore[e.dateValue])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:e=>+(e.dateValue===`exactDate`),name:A(`Date is after`),getPreview:(e,t)=>e.dateValue===`exactDate`?A(`Date is after %s`,Yv(e.values,t.getLocale())[0]):A(`Date is after %s`,hg.DateIsBefore[e.dateValue])}),Q.add(`dateIsOnOrAfter`,{type:`dateIsOnOrAfter`,isValueValid:(e,t)=>{let n=Jv(t,L)[0],r=Ur(e,L);return r!==void 0&&n!==void 0&&yi(r,n)},getErrorString:(e,t)=>{let n=t.getLocale();return e.dateValue===`exactDate`?A(`The value must be a date on or after %s`,ck(e,n)[0]):A(`The value must be a date on or after %s`,hg.DateIsBefore[e.dateValue])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:e=>+(e.dateValue===`exactDate`),name:A(`Date is on or after`),getPreview:(e,t)=>e.dateValue===`exactDate`?A(`Date is on or after %s`,Yv(e.values,t.getLocale())[0]):A(`Date is on or after %s`,hg.DateIsBefore[e.dateValue])}),Q.add(`dateIsBetween`,{type:`dateIsBetween`,isValueValid:(e,t)=>{let n=Jv(t,L),r=Ur(e,L);return r===void 0||n[0]===void 0||n[1]===void 0?!1:hi(r,n[0],n[1])},getErrorString:(e,t)=>{let n=ck(e,t.getLocale());return A(`The value must be a date between %s and %s`,n[0],n[1])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:()=>2,name:A(`Date is between`),getPreview:(e,t)=>{let n=Yv(e.values,t.getLocale());return A(`Date is between %s and %s`,n[0],n[1])}}),Q.add(`dateIsNotBetween`,{type:`dateIsNotBetween`,isValueValid:(e,t)=>{let n=Jv(t,L),r=Ur(e,L);return r===void 0||n[0]===void 0||n[1]===void 0?!1:!hi(r,n[0],n[1])},getErrorString:(e,t)=>{let n=ck(e,t.getLocale());return A(`The value must be a date not between %s and %s`,n[0],n[1])},isCriterionValueValid:e=>lk(e),criterionValueErrorString:hg.CriterionError.dateValue,numberOfValues:()=>2,name:A(`Date is not between`),getPreview:(e,t)=>{let n=Yv(e.values,t.getLocale());return A(`Date is not between %s and %s`,n[0],n[1])}}),Q.add(`dateIsValid`,{type:`dateIsValid`,isValueValid:(e,t)=>Ur(e,L)!==void 0,getErrorString:()=>A(`The value must be a valid date`),isCriterionValueValid:e=>lk(e),criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Is valid date`),getPreview:()=>A(`Date is valid`)}),Q.add(`isEqual`,{type:`isEqual`,isValueValid:(e,t)=>e===t.values[0],getErrorString:(e,t)=>A(`The value must be equal to %s`,sk(e,t.getLocale())[0]),isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>1,name:A(`Is equal to`),getPreview:e=>A(`Value is equal to %s`,e.values[0])}),Q.add(`isNotEqual`,{type:`isNotEqual`,isValueValid:(e,t)=>e!==t.values[0],getErrorString:(e,t)=>A(`The value must not be equal to %s`,sk(e,t.getLocale())[0]),isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>1,name:A(`Is not equal to`),getPreview:e=>A(`Value is not equal to %s`,e.values[0])}),Q.add(`isGreaterThan`,{type:`isGreaterThan`,isValueValid:(e,t)=>{if(typeof e!=`number`)return!1;let n=t.values[0];return typeof n==`number`?e>n:!1},getErrorString:(e,t)=>A(`The value must be greater than %s`,sk(e,t.getLocale())[0]),isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>1,name:A(`Is greater than`),getPreview:e=>A(`Value is greater than %s`,e.values[0])}),Q.add(`isGreaterOrEqualTo`,{type:`isGreaterOrEqualTo`,isValueValid:(e,t)=>{if(typeof e!=`number`)return!1;let n=t.values[0];return typeof n==`number`?e>=n:!1},getErrorString:(e,t)=>A(`The value must be greater or equal to %s`,sk(e,t.getLocale())[0]),isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>1,name:A(`Is greater or equal to`),getPreview:e=>A(`Value is greater or equal to %s`,e.values[0])}),Q.add(`isLessThan`,{type:`isLessThan`,isValueValid:(e,t)=>{if(typeof e!=`number`)return!1;let n=t.values[0];return typeof n==`number`?e<n:!1},getErrorString:(e,t)=>A(`The value must be less than %s`,sk(e,t.getLocale())[0]),isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>1,name:A(`Is less than`),getPreview:e=>A(`Value is less than %s`,e.values[0])}),Q.add(`isLessOrEqualTo`,{type:`isLessOrEqualTo`,isValueValid:(e,t)=>{if(typeof e!=`number`)return!1;let n=t.values[0];return typeof n==`number`?e<=n:!1},getErrorString:(e,t)=>A(`The value must be less or equal to %s`,sk(e,t.getLocale())[0]),isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>1,name:A(`Is less or equal to`),getPreview:e=>A(`Value is less or equal to %s`,e.values[0])}),Q.add(`isBetween`,{type:`isBetween`,isValueValid:(e,t)=>typeof e!=`number`||typeof t.values[0]!=`number`||typeof t.values[1]!=`number`?!1:Ft(e,t.values[0],t.values[1]),getErrorString:(e,t)=>{let n=sk(e,t.getLocale());return A(`The value must be between %s and %s`,n[0],n[1])},isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>2,name:A(`Is between`),getPreview:e=>A(`Value is between %s and %s`,e.values[0],e.values[1])}),Q.add(`isNotBetween`,{type:`isNotBetween`,isValueValid:(e,t)=>typeof e!=`number`||typeof t.values[0]!=`number`||typeof t.values[1]!=`number`?!1:!Ft(e,t.values[0],t.values[1]),getErrorString:(e,t)=>{let n=sk(e,t.getLocale());return A(`The value must not be between %s and %s`,n[0],n[1])},isCriterionValueValid:e=>uk(e),criterionValueErrorString:hg.CriterionError.numberValue,numberOfValues:()=>2,name:A(`Is not between`),getPreview:e=>A(`Value is not between %s and %s`,e.values[0],e.values[1])}),Q.add(`isBoolean`,{type:`isBoolean`,isValueValid:(e,t)=>e===``||typeof e==`boolean`,getErrorString:()=>A(`The value must be a boolean`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Checkbox`),getPreview:()=>A(`Checkbox`)}),Q.add(`isValueInList`,{type:`isValueInList`,isValueValid:(e,t)=>e===null?!1:t.values.map(e=>String(e).toLowerCase()).includes(e.toString().toLowerCase()),getErrorString:e=>A(`The value must be one of: %s`,e.values.join(`, `)),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>void 0,allowedValues:`onlyLiterals`,name:A(`Value in list`),getPreview:e=>A(`Value one of: %s`,e.values.join(`, `))}),Q.add(`isValueInRange`,{type:`isValueInRange`,preComputeCriterion:(e,t,n)=>{if(t.length===0)return new Set;let r=t[0].sheetId,i=n.getDataValidationRangeValues(r,e);return new Set(i.map(e=>e.value.toString().toLowerCase()))},isValueValid:(e,t,n)=>e?n.has(e.toString().toLowerCase()):!1,getErrorString:e=>A(`The value must be a value in the range %s`,String(e.values[0])),isCriterionValueValid:e=>ws.test(e),criterionValueErrorString:hg.CriterionError.validRange,numberOfValues:()=>1,allowedValues:`onlyLiterals`,name:A(`Value in range`),getPreview:e=>A(`Value in range %s`,e.values[0])}),Q.add(`customFormula`,{type:`customFormula`,isValueValid:(e,t)=>{let n=t.values[0];return typeof n==`number`||typeof n==`boolean`?!!n:!1},getErrorString:()=>A(`The value does not match the custom formula data validation rule`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>1,allowedValues:`onlyFormulas`,name:A(`Custom formula`),getPreview:e=>A(`Custom formula %s`,e.values[0])}),Q.add(`beginsWithText`,{type:`beginsWithText`,isValueValid:(e,t)=>String(e).toLowerCase().startsWith(String(t.values[0]).toLowerCase()),getErrorString:e=>A(`The value must be a text that begins with "%s"`,String(e.values[0])),isCriterionValueValid:e=>!!e,criterionValueErrorString:hg.CriterionError.notEmptyValue,numberOfValues:()=>1,name:A(`Text begins with`),getPreview:e=>A(`Text begins with "%s"`,e.values[0])}),Q.add(`endsWithText`,{type:`endsWithText`,isValueValid:(e,t)=>String(e).toLowerCase().endsWith(String(t.values[0]).toLowerCase()),getErrorString:e=>A(`The value must be a text that ends with "%s"`,String(e.values[0])),isCriterionValueValid:e=>!!e,criterionValueErrorString:hg.CriterionError.notEmptyValue,numberOfValues:()=>1,name:A(`Text ends with`),getPreview:e=>A(`Text ends with "%s"`,e.values[0])}),Q.add(`isEmpty`,{type:`isEmpty`,isValueValid:(e,t)=>(e??``).toString().trim()===``,getErrorString:()=>A(`The value must be empty`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Is empty`),getPreview:()=>A(`Is empty`)}),Q.add(`isNotEmpty`,{type:`isNotEmpty`,isValueValid:(e,t)=>(e??``).toString().trim()!==``,getErrorString:()=>A(`The value must not be empty`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Is not empty`),getPreview:()=>A(`Is not empty`)}),Q.add(`top10`,{type:`top10`,preComputeCriterion:(e,t,n)=>{let r=Zi(e.values[0],L);if(r===void 0||r<=0)return;let i=[];for(let e of t)for(let{value:t}of n.getVisibleRangeValues(e))typeof t==`number`&&i.push(t);let a=i.sort((e,t)=>e-t);e.isPercent&&(r=S(r,1,100));let o=0;return o=e.isBottom&&!e.isPercent?r-1:e.isBottom&&e.isPercent?Math.floor(a.length*r/100)-1:!e.isBottom&&e.isPercent?a.length-Math.floor(a.length*r/100):a.length-r,o=S(o,0,a.length-1),a[o]},isValueValid:(e,t,n)=>typeof e!=`number`||n===void 0?!1:t.isBottom?e<=n:e>=n,getErrorString:e=>{let t={value:String(e.values[0]),percentSymbol:e.isPercent?`%`:``};return e.isBottom?A(`The value must be in bottom %(value)s%(percentSymbol)s`,t):A(`The value must be in top %(value)s%(percentSymbol)s`,t)},isCriterionValueValid:e=>dk(e),criterionValueErrorString:hg.CriterionError.positiveNumber,numberOfValues:()=>1,name:A(`Is in Top/Bottom ranking`),getPreview:e=>{let t={value:e.values[0],percentSymbol:e.isPercent?`%`:``};return e.isBottom?A(`Value is in bottom %(value)s%(percentSymbol)s`,t):A(`Value is in top %(value)s%(percentSymbol)s`,t)}}),Q.add(`uniqueValues`,{type:`uniqueValues`,preComputeCriterion:(e,t,n)=>{let r=fk(t,n);return new Set(Object.keys(r).filter(e=>r[e]===1))},isValueValid:(e,t,n)=>e===null||n===void 0?!1:n.has(String(e).toLowerCase()),getErrorString:()=>A(`The value must be unique`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Is value unique`),getPreview:()=>A(`Value is unique`)}),Q.add(`duplicateValues`,{type:`duplicateValues`,preComputeCriterion:(e,t,n)=>{let r=fk(t,n);return new Set(Object.keys(r).filter(e=>r[e]!==1))},isValueValid:(e,t,n)=>e===null||n===void 0?!1:n.has(String(e).toLowerCase()),getErrorString:()=>A(`The value must not be unique`),isCriterionValueValid:()=>!0,criterionValueErrorString:``,numberOfValues:()=>0,name:A(`Is value duplicate`),getPreview:()=>A(`Value is duplicate`)});function sk(e,t){return e.values.map(e=>e===void 0?j.InvalidReference:Sg(String(e),t))}function ck(e,t){return Jv(e,L).map(e=>e===void 0?j.InvalidReference:R(e,{locale:t,format:t.dateFormat}))}function lk(e){return Ur(e,L)!==void 0}function uk(e){return Zi(e,L)!==void 0}function dk(e){let t=Zi(e,L);return t!==void 0&&t>0}function fk(e,t){let n={};for(let r of e)for(let e of t.getVisibleRangeValues(r)){let t=P(e).toLowerCase();t&&(n[t]=(n[t]||0)+1)}return n}var pk=class extends t.Component{static template=`o-spreadsheet-CriterionInput`;static props={value:{type:String,optional:!0},criterionType:String,onValueChanged:Function,onKeyDown:{type:Function,optional:!0},focused:{type:Boolean,optional:!0},onBlur:{type:Function,optional:!0},onFocus:{type:Function,optional:!0},disableFormulas:{type:Boolean,optional:!0}};static defaultProps={value:``,onKeyDown:()=>{},focused:!1,onBlur:()=>{}};static components={StandaloneComposer:CO};inputRef=(0,t.useRef)(`input`);setup(){(0,t.useEffect)(()=>{this.props.focused&&this.inputRef.el&&this.inputRef.el.focus()},()=>[this.props.focused,this.inputRef.el])}state=(0,t.useState)({shouldDisplayError:!!this.props.value});get placeholder(){return this.allowedValues===`onlyFormulas`?A(`Formula`):this.allowedValues===`onlyLiterals`?A(`Value`):A(`Value or formula`)}get allowedValues(){let e=Q.get(this.props.criterionType);if(e.allowedValues===`onlyFormulas`&&this.props.disableFormulas)throw Error(`Cannot disable formulas for criterion type ${this.props.criterionType} that accept only formulas`);return(this.props.disableFormulas?`onlyLiterals`:e.allowedValues)??`any`}onInputValueChanged(e){this.state.shouldDisplayError=!0,this.props.onValueChanged(e.target.value)}onChangeComposerValue(e){this.state.shouldDisplayError=!0,this.props.onValueChanged(e)}getDataValidationRuleInputComposerProps(){return{onConfirm:e=>this.onChangeComposerValue(e),composerContent:this.props.value,placeholder:this.placeholder,class:`o-sidePanel-composer`,defaultRangeSheetId:this.env.model.getters.getActiveSheetId(),invalid:this.state.shouldDisplayError&&!!this.errorMessage,defaultStatic:!0,autofocus:this.props.focused}}get errorMessage(){if(this.state.shouldDisplayError)return this.env.model.getters.getDataValidationInvalidCriterionValueMessage(this.props.criterionType,xg(this.props.value,this.env.model.getters.getLocale()))}};let mk={today:A(`today`),yesterday:A(`yesterday`),tomorrow:A(`tomorrow`),lastWeek:A(`in the past week`),lastMonth:A(`in the past month`),lastYear:A(`in the past year`),exactDate:A(`exact date`)};var hk=class extends ak{static template=`o-spreadsheet-DataValidationDateCriterion`;static components={CriterionInput:pk,Select:Qh};get currentDateValue(){return this.props.criterion.dateValue||`exactDate`}onValueChanged(e){this.updateCriterion({values:[e],dateValue:this.currentDateValue})}onDateValueChanged(e){this.updateCriterion({dateValue:e})}get dateValues(){return Object.keys(mk).map(e=>({value:e,label:mk[e]}))}},gk=class extends ak{static template=`o-spreadsheet-DoubleInputCriterionForm`;static components={CriterionInput:pk};onFirstValueChanged(e){let t=this.props.criterion.values;this.updateCriterion({values:[e,t[1]||``]})}onSecondValueChanged(e){let t=this.props.criterion.values;this.updateCriterion({values:[t[0]||``,e]})}},_k=class extends ak{static template=`o-spreadsheet-SingleInputCriterionForm`;static components={CriterionInput:pk};onValueChanged(e){let t=x(this.props.criterion);t.values[0]=e,this.updateCriterion(t)}},vk=class extends ak{static template=`o-spreadsheet-Top10CriterionForm`;static components={CriterionInput:pk,Select:Qh};onValueChanged(e){let t=x(this.props.criterion);t.values[0]=e,this.updateCriterion(t)}updateIsBottom(e){let t=x(this.props.criterion);t.isBottom=e===`bottom`,this.updateCriterion(t)}updateIsPercent(e){let t=x(this.props.criterion);t.isPercent=e===`percent`,this.updateCriterion(t)}get isBottomSelectOptions(){return[{value:`top`,label:A(`Top`)},{value:`bottom`,label:A(`Bottom`)}]}get isPercentSelectOptions(){return[{value:`values`,label:A(`Values`)},{value:`percent`,label:A(`Percent`)}]}},yk=class extends ak{static template=`o-spreadsheet-ListCriterionForm`;static components={CriterionInput:pk,RoundColorPicker:TT,Select:Qh};state=(0,t.useState)({items:[],focusedValueIndex:this.props.autofocus?0:void 0});setup(){super.setup();let e=this.props.criterion.values||[],n=this.props.criterion.colors||{};this.state.items=Array.from({length:Math.max(e.length,2)},(t,r)=>{let i=e[r]??``;return{value:i,color:i?n[i]:void 0}});let r=e=>{e.criterion.displayStyle===void 0&&this.updateCriterion({displayStyle:`chip`})};(0,t.onWillUpdateProps)(r),(0,t.onWillStart)(()=>r(this.props))}syncCriterion(){let e=this.state.items.map(e=>e.value),t={};for(let{value:e,color:n}of this.state.items)e?.trim()!==``&&n&&(t[e]=n);this.updateCriterion({values:e,colors:t})}onValueChanged(e,t){this.state.items[e].value=t,this.syncCriterion()}onColorChanged(e,t){this.state.items[e].color=t,this.syncCriterion()}onAddAnotherValue(){this.state.items.push({value:``})}removeItem(e){this.state.items.splice(e,1),this.syncCriterion()}onChangedDisplayStyle(e){this.updateCriterion({displayStyle:e})}onKeyDown(e,t){(e.key===`Enter`||e.key===`Tab`)&&t===this.state.items.length-1?(this.onAddAnotherValue(),this.state.focusedValueIndex=t+1,e.preventDefault()):e.key===`Enter`&&(this.state.focusedValueIndex=t+1)}onBlurInput(){this.state.focusedValueIndex=void 0}get displayTypeOptions(){return[{value:`chip`,label:A(`Chip`)},{value:`arrow`,label:A(`Arrow`)},{value:`plainText`,label:A(`Plain text`)}]}},bk=class extends ak{static template=`o-spreadsheet-ValueInRangeCriterionForm`;static components={RoundColorPicker:TT,SelectionInput:lT,Select:Qh};setup(){super.setup();let e=e=>{e.criterion.displayStyle===void 0&&this.updateCriterion({displayStyle:`chip`})};(0,t.onWillUpdateProps)(e),(0,t.onWillStart)(()=>e(this.props))}onRangeChanged(e){this.updateCriterion({values:[e]})}onChangedDisplayStyle(e){this.updateCriterion({displayStyle:e})}onColorChanged(e,t){let n={...this.props.criterion.colors};n[t]=e||void 0,this.updateCriterion({colors:n})}get values(){let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getDataValidationRangeValues(e,this.props.criterion);return new Set(t)}get displayTypeOptions(){return[{value:`chip`,label:A(`Chip`)},{value:`arrow`,label:A(`Arrow`)},{value:`plainText`,label:A(`Plain text`)}]}};let xk={list:10,text:20,number:30,date:40,relative:45,misc:50},Sk=new B;Sk.add(`containsText`,{type:`containsText`,component:_k,category:`text`,sequence:10}),Sk.add(`notContainsText`,{type:`notContainsText`,component:_k,category:`text`,sequence:20}),Sk.add(`beginsWithText`,{type:`beginsWithText`,component:_k,category:`text`,sequence:25}),Sk.add(`endsWithText`,{type:`endsWithText`,component:_k,category:`text`,sequence:26}),Sk.add(`isEqualText`,{type:`isEqualText`,component:_k,category:`text`,sequence:30}),Sk.add(`isEmail`,{type:`isEmail`,component:void 0,category:`text`,sequence:40}),Sk.add(`isLink`,{type:`isLink`,component:void 0,category:`text`,sequence:50}),Sk.add(`dateIs`,{type:`dateIs`,component:hk,category:`date`,sequence:20}),Sk.add(`dateIsBefore`,{type:`dateIsBefore`,component:hk,category:`date`,sequence:30}),Sk.add(`dateIsOnOrBefore`,{type:`dateIsOnOrBefore`,component:hk,category:`date`,sequence:40}),Sk.add(`dateIsAfter`,{type:`dateIsAfter`,component:hk,category:`date`,sequence:50}),Sk.add(`dateIsOnOrAfter`,{type:`dateIsOnOrAfter`,component:hk,category:`date`,sequence:60}),Sk.add(`dateIsBetween`,{type:`dateIsBetween`,component:gk,category:`date`,sequence:70}),Sk.add(`dateIsNotBetween`,{type:`dateIsNotBetween`,component:gk,category:`date`,sequence:80}),Sk.add(`dateIsValid`,{type:`dateIsValid`,component:void 0,category:`date`,sequence:10}),Sk.add(`isEqual`,{type:`isEqual`,component:_k,category:`number`,sequence:10}),Sk.add(`isNotEqual`,{type:`isNotEqual`,component:_k,category:`number`,sequence:20}),Sk.add(`isGreaterThan`,{type:`isGreaterThan`,component:_k,category:`number`,sequence:50}),Sk.add(`isGreaterOrEqualTo`,{type:`isGreaterOrEqualTo`,component:_k,category:`number`,sequence:60}),Sk.add(`isLessThan`,{type:`isLessThan`,component:_k,category:`number`,sequence:30}),Sk.add(`isLessOrEqualTo`,{type:`isLessOrEqualTo`,component:_k,category:`number`,sequence:40}),Sk.add(`isBetween`,{type:`isBetween`,component:gk,category:`number`,sequence:70}),Sk.add(`isNotBetween`,{type:`isNotBetween`,component:gk,category:`number`,sequence:80}),Sk.add(`isBoolean`,{type:`isBoolean`,component:void 0,category:`misc`,sequence:10}),Sk.add(`isValueInList`,{type:`isValueInList`,component:yk,category:`list`,sequence:10}),Sk.add(`isValueInRange`,{type:`isValueInRange`,component:bk,category:`list`,sequence:20}),Sk.add(`customFormula`,{type:`customFormula`,component:_k,category:`misc`,sequence:20}),Sk.add(`isEmpty`,{type:`isEmpty`,component:void 0,category:`misc`,sequence:5}),Sk.add(`isNotEmpty`,{type:`isNotEmpty`,component:void 0,category:`misc`,sequence:6}),Sk.add(`top10`,{type:`top10`,component:vk,category:`relative`,sequence:7}),Sk.add(`uniqueValues`,{type:`uniqueValues`,component:void 0,category:`relative`,sequence:8}),Sk.add(`duplicateValues`,{type:`duplicateValues`,component:void 0,category:`relative`,sequence:9});function Ck(e){let t=Sk.getAll().filter(t=>e.has(t.type)).sort((e,t)=>e.category===t.category?e.sequence-t.sequence:xk[e.category]-xk[t.category]);return t.map((e,n)=>({label:Q.get(e.type).name,value:e.type,separator:e.category!==t[n+1]?.category}))}let wk=new Set([`containsText`,`notContainsText`,`isGreaterThan`,`isGreaterOrEqualTo`,`isLessThan`,`isLessOrEqualTo`,`isBetween`,`isNotBetween`,`beginsWithText`,`endsWithText`,`isNotEmpty`,`isEmpty`,`isNotEqual`,`isEqual`,`customFormula`,`dateIs`,`dateIsBefore`,`dateIsAfter`,`dateIsOnOrBefore`,`dateIsOnOrAfter`,`top10`,`uniqueValues`,`duplicateValues`]);var Tk=class extends fr{mutators=[`updateConditionalFormat`,`closeMenus`];icons=pv;iconSets=mv;state;cfId;constructor(e,n,r){switch(super(e),this.cfId=n.id,this.state=(0,t.useState)({errors:[],currentCFType:n.rule.type,ranges:n.ranges,rules:this.getDefaultRules(),hasEditedCf:r}),n.rule.type){case`CellIsRule`:this.state.rules.cellIs=n.rule;break;case`ColorScaleRule`:this.state.rules.colorScale=n.rule;break;case`IconSetRule`:this.state.rules.iconSet=n.rule;break;case`DataBarRule`:this.state.rules.dataBar=n.rule;break}}updateConditionalFormat(e){let t=e.ranges||this.state.ranges;if(this.state.ranges.some(e=>!e.match(ws))){e.suppressErrors||(this.state.errors=[H.InvalidRange]);return}let n=this.model.getters.getActiveSheetId(),r=this.model.getters.getLocale(),i=e.rule||this.getEditedRule(this.state.currentCFType),a=this.model.dispatch(`ADD_CONDITIONAL_FORMAT`,{cf:{id:this.cfId,rule:jg(i,r)},ranges:t.map(e=>this.model.getters.getRangeDataFromXc(n,e)),sheetId:n});a.isSuccessful&&(this.state.hasEditedCf=!0);let o=a.reasons.filter(e=>e!==H.NoChanges);e.suppressErrors||(this.state.errors=o)}get isRangeValid(){return this.state.errors.includes(H.EmptyRange)}get errorMessages(){return this.state.errors.map(e=>cg.Errors[e]||cg.Errors.Unexpected)}onRangeUpdate(e){this.state.ranges=e}onRangeConfirmed(){this.updateConditionalFormat({ranges:this.state.ranges})}changeRuleType(e){this.state.currentCFType!==e&&(this.state.errors=[],this.state.currentCFType=e,this.updateConditionalFormat({rule:this.getEditedRule(e),suppressErrors:!0}))}getEditedRule(e){switch(e){case`CellIsRule`:return this.state.rules.cellIs;case`ColorScaleRule`:return this.state.rules.colorScale;case`IconSetRule`:return this.state.rules.iconSet;case`DataBarRule`:return this.state.rules.dataBar}}get cfCriterions(){return Ck(wk)}get criterionComponent(){return Sk.get(this.state.rules.cellIs.operator).component}get genericCriterion(){return{...this.state.rules.cellIs,type:this.state.rules.cellIs.operator}}onRuleValuesChanged(e){let t={...e,operator:e.type,type:`CellIsRule`,style:this.state.rules.cellIs.style};this.state.rules.cellIs=t,this.updateConditionalFormat({rule:t})}toggleStyle(e){let t=this.state.rules.cellIs.style;t[e]=!t[e],this.updateConditionalFormat({rule:this.state.rules.cellIs}),this.closeMenus()}setColor(e,t){this.state.rules.cellIs.style[e]=t,this.updateConditionalFormat({rule:this.state.rules.cellIs}),this.closeMenus()}editOperator(e){this.state.rules.cellIs.operator=e,e.includes(`date`)&&!this.state.rules.cellIs.dateValue&&(this.state.rules.cellIs.dateValue=`exactDate`),this.updateConditionalFormat({rule:this.state.rules.cellIs,suppressErrors:!0}),this.closeMenus()}get previewGradient(){let e=this.state.rules.colorScale,t=Qu(e.minimum.color),n=Qu(e.midpoint?.color||11982760),r=Qu(e.maximum.color),i=`linear-gradient(to right, `;return W({"background-image":e.midpoint===void 0?i+t+`, `+r+`)`:i+t+`, `+n+`, `+r+`)`,color:`#000`})}onMidpointChange(e){let t=this.state.rules.colorScale;e===`none`?t.midpoint=void 0:t.midpoint={color:ne,value:``,...t.midpoint,type:e},this.updateConditionalFormat({rule:t,suppressErrors:!0})}updateThresholdType(e,t){this.state.rules.colorScale[e].type=t,this.updateConditionalFormat({rule:this.state.rules.colorScale,suppressErrors:!0})}updateThresholdValue(e,t){this.state.rules.colorScale[e].value=t,this.updateConditionalFormat({rule:this.state.rules.colorScale})}setColorScaleColor(e,t){if(!td(t))return;let n=this.state.rules.colorScale[e];n&&(n.color=$u(t)),this.updateConditionalFormat({rule:this.state.rules.colorScale}),this.closeMenus()}reverseIcons(){let e=this.state.rules.iconSet.icons,t=e.upper;e.upper=e.lower,e.lower=t,this.updateConditionalFormat({rule:this.state.rules.iconSet})}setIconSet(e){let t=this.state.rules.iconSet.icons;t.upper=this.iconSets[e].good,t.middle=this.iconSets[e].neutral,t.lower=this.iconSets[e].bad,this.updateConditionalFormat({rule:this.state.rules.iconSet})}setIcon(e,t){this.state.rules.iconSet.icons[e]=t,this.updateConditionalFormat({rule:this.state.rules.iconSet})}setInflectionOperator(e,t){this.state.rules.iconSet[e].operator=t,this.updateConditionalFormat({rule:this.state.rules.iconSet})}setInflectionValue(e,t){this.state.rules.iconSet[e].value=t,this.updateConditionalFormat({rule:this.state.rules.iconSet})}setInflectionType(e,t){this.state.rules.iconSet[e].type=t,this.updateConditionalFormat({rule:this.state.rules.iconSet,suppressErrors:!0})}get rangeValues(){return[this.state.rules.dataBar.rangeValues||``]}updateDataBarColor(e){td(e)&&(this.state.rules.dataBar.color=Number.parseInt(e.slice(1),16),this.updateConditionalFormat({rule:this.state.rules.dataBar}))}onDataBarRangeUpdate(e){this.state.rules.dataBar.rangeValues=e[0]}onDataBarRangeChange(){this.updateConditionalFormat({rule:this.state.rules.dataBar})}toggleMenu(e){let t=this.state.openedMenu===e;this.closeMenus(),t||(this.state.openedMenu=e)}closeMenus(){this.state.openedMenu=void 0}getDefaultRules(){return{cellIs:{type:`CellIsRule`,operator:`isNotEmpty`,values:[],style:{fillColor:`#b6d7a8`}},colorScale:{type:`ColorScaleRule`,minimum:{type:`value`,color:Tv(`EFF7FF`)},midpoint:void 0,maximum:{type:`value`,color:6989903}},iconSet:{type:`IconSetRule`,icons:{upper:`arrowGood`,middle:`arrowNeutral`,lower:`arrowBad`},upperInflectionPoint:{type:`percentage`,value:`66`,operator:`gt`},lowerInflectionPoint:{type:`percentage`,value:`33`,operator:`gt`}},dataBar:{type:`DataBarRule`,color:14281427}}}},Ek=class extends t.Component{static template=`o-spreadsheet-ColorScaleRuleEditorThreshold`;static components={RoundColorPicker:TT,StandaloneComposer:CO,Select:Qh};static props={store:Object,thresholdType:String};get rule(){return this.props.store.state.rules.colorScale}get threshold(){return this.rule[this.props.thresholdType]}getThresholdColor(e){return Qu(e?e.color:ne)}isValueInvalid(){let e=this.props.store.state.errors;switch(this.props.thresholdType){case`minimum`:return e.includes(H.MinInvalidFormula)||e.includes(H.MinBiggerThanMid)||e.includes(H.MinBiggerThanMax)||e.includes(H.MinNaN);case`midpoint`:return e.includes(H.MidInvalidFormula)||e.includes(H.MidNaN)||e.includes(H.MidBiggerThanMax);case`maximum`:return e.includes(H.MaxInvalidFormula)||e.includes(H.MaxNaN);default:return!1}}getColorScaleComposerProps(){let e=this.rule[this.props.thresholdType];if(!e)throw Error(`Threshold not found`);let t=this.isValueInvalid();return{onConfirm:t=>{e.value=t,this.props.store.updateConditionalFormat({rule:this.rule})},composerContent:e.value||``,placeholder:A(`Formula`),defaultStatic:!0,invalid:t,class:`o-sidePanel-composer`,defaultRangeSheetId:this.env.model.getters.getActiveSheetId()}}getThresholdTypeSelectOptions(){let e=[{value:`number`,label:A(`Number`)},{value:`percentage`,label:A(`Percentage`)},{value:`percentile`,label:A(`Percentile`)},{value:`formula`,label:A(`Formula`)}];return this.props.thresholdType===`midpoint`?[{value:`none`,label:A(`None`)},...e]:[{value:`value`,label:A(`Cell values`)},...e]}},Dk=class extends t.Component{static template=`o-spreadsheet-ColorScaleRuleEditor`;static components={ColorScaleRuleEditorThreshold:Ek};static props={store:Object}},Ok=class extends t.Component{static template=`o-spreadsheet-DataBarRuleEditor`;static components={SelectionInput:lT,RoundColorPicker:TT};static props={store:Object};get rule(){return this.props.store.state.rules.dataBar}colorNumberToHex=Qu},kk=class extends t.Component{static template=`o-spreadsheet-IconPicker`;static props={onIconPicked:Function};icons=pv;iconSets=mv;onIconClick(e){e&&this.props.onIconPicked(e)}},Ak=class extends t.Component{static template=`o-spreadsheet-IconSetRuleEditor`;static components={IconPicker:kk,StandaloneComposer:CO,Select:Qh};static props={store:Object};get rule(){return this.props.store.state.rules.iconSet}getIconName(e,t){return this.props.store.iconSets[e][t]}getIconTemplate(e){return`o-spreadsheet-Icon.${this.props.store.icons[e].template}`}isInflectionPointInvalid(e){let t=this.props.store.state.errors;switch(e){case`lowerInflectionPoint`:return t.includes(H.ValueLowerInflectionNaN)||t.includes(H.ValueLowerInvalidFormula)||t.includes(H.LowerBiggerThanUpper);case`upperInflectionPoint`:return t.includes(H.ValueUpperInflectionNaN)||t.includes(H.ValueUpperInvalidFormula)||t.includes(H.LowerBiggerThanUpper);default:return!0}}getColorIconSetComposerProps(e){let t=this.props.store.state.rules.iconSet[e],n=this.isInflectionPointInvalid(e);return{onConfirm:e=>{t.value=e,this.props.store.updateConditionalFormat({rule:this.props.store.state.rules.iconSet})},composerContent:t.value||``,placeholder:A(`Formula`),defaultStatic:!0,invalid:n,class:`o-sidePanel-composer`,defaultRangeSheetId:this.env.model.getters.getActiveSheetId()}}getThresholdTypeSelectOptions(){return[{value:`number`,label:A(`Number`)},{value:`percentage`,label:A(`Percentage`)},{value:`percentile`,label:A(`Percentile`)},{value:`formula`,label:A(`Formula`)}]}getIconSetOperatorSelectOptions(){return[{value:`gt`,label:`>`},{value:`ge`,label:`>=`}]}},jk=class extends t.Component{static template=`o-spreadsheet-ConditionalFormattingEditor`;static components={SelectionInput:lT,Section:Z,BadgeSelection:xT,ValidationMessages:pT,CellIsRuleEditor:ik,ColorScaleRuleEditor:Dk,IconSetRuleEditor:Ak,DataBarRuleEditor:Ok};static props={cf:Object,isNewCf:Boolean,onCloseSidePanel:Function};activeSheetId;store;setup(){this.activeSheetId=this.env.model.getters.getActiveSheetId(),this.store=wr(Tk,x(this.props.cf),this.props.isNewCf),(0,t.useEffect)((e,t)=>{(this.activeSheetId!==e||t)&&this.env.replaceSidePanel(`ConditionalFormatting`,`ConditionalFormattingEditor_${this.props.cf.id}`)},()=>[this.env.model.getters.getActiveSheetId(),this.isEditedCfRemoved]),(0,t.useExternalListener)(window,`click`,()=>this.store.closeMenus())}get isEditedCfRemoved(){return!this.env.model.getters.getConditionalFormats(this.activeSheetId).find(e=>e.id===this.props.cf.id)}get cfTypesValues(){return[{value:`CellIsRule`,label:A(`Single color`)},{value:`ColorScaleRule`,label:A(`Color scale`)},{value:`IconSetRule`,label:A(`Icon set`)},{value:`DataBarRule`,label:A(`Data bar`)}]}onSave(){this.store.updateConditionalFormat({}),this.store.state.errors.length===0&&this.env.replaceSidePanel(`ConditionalFormatting`,`ConditionalFormattingEditor_${this.props.cf.id}`)}onCancel(){this.store.state.hasEditedCf&&(this.props.isNewCf?this.env.model.dispatch(`REMOVE_CONDITIONAL_FORMAT`,{sheetId:this.activeSheetId,id:this.props.cf.id}):this.env.model.dispatch(`ADD_CONDITIONAL_FORMAT`,{cf:this.props.cf,ranges:this.props.cf.ranges.map(e=>this.env.model.getters.getRangeDataFromXc(this.activeSheetId,e)),sheetId:this.activeSheetId})),this.env.replaceSidePanel(`ConditionalFormatting`,`ConditionalFormattingEditor_${this.props.cf.id}`)}},Mk=class extends t.Component{static template=`o-spreadsheet-ConditionalFormatPreview`;static props={conditionalFormat:Object,onMouseDown:Function,class:String};icons=pv;ref=(0,t.useRef)(`cfPreview`);setup(){ZO(this.ref,this)}get previewImageStyle(){let e=this.props.conditionalFormat.rule;if(e.type===`CellIsRule`)return W(Nh(e.style));if(e.type===`ColorScaleRule`){let t=Qu(e.minimum.color),n=e.midpoint?Qu(e.midpoint.color):null,r=Qu(e.maximum.color),i=`background-image: linear-gradient(to right, `;return n?i+t+`, `+n+`, `+r+`)`:i+t+`, `+r+`)`}else if(e.type===`DataBarRule`)return`${`background-image: linear-gradient(to right, ${Qu(e.color)} 50%, white 50%)`}; color: ${ue};`;return``}get description(){let e=this.props.conditionalFormat;switch(e.rule.type){case`CellIsRule`:return Q.get(e.rule.operator).getPreview({...e.rule,type:e.rule.operator},this.env.model.getters);case`ColorScaleRule`:return cg.ColorScale;case`IconSetRule`:return cg.IconSet;case`DataBarRule`:return cg.DataBar}}get highlights(){let e=this.env.model.getters.getActiveSheetId();return this.props.conditionalFormat.ranges.map(t=>({range:this.env.model.getters.getRangeFromSheetXC(e,t),color:ee,fillAlpha:.06}))}editConditionalFormat(){this.env.replaceSidePanel(`ConditionalFormattingEditor`,`ConditionalFormatting`,{cf:this.props.conditionalFormat,isNewCf:!1})}deleteConditionalFormat(){this.env.model.dispatch(`REMOVE_CONDITIONAL_FORMAT`,{id:this.props.conditionalFormat.id,sheetId:this.env.model.getters.getActiveSheetId()})}},Nk=class extends t.Component{static template=`o-spreadsheet-ConditionalFormatPreviewList`;static props={onCloseSidePanel:Function};static components={ConditionalFormatPreview:Mk};dragAndDrop=Fw();cfListRef=(0,t.useRef)(`cfList`);get conditionalFormats(){return this.env.model.getters.getConditionalFormats(this.env.model.getters.getActiveSheetId()).map(e=>({...e,rule:Mg(e.rule,this.env.model.getters.getLocale())}))}getPreviewDivStyle(e){return this.dragAndDrop.itemsStyle[e.id]||``}onPreviewMouseDown(e,t){if(t.button!==0)return;let n=Array.from(this.cfListRef.el.children).map(e=>fm(e)),r=this.conditionalFormats.map((e,t)=>({id:e.id,size:n[t].height,position:n[t].y}));this.dragAndDrop.start(`vertical`,{draggedItemId:e.id,initialMousePosition:t.clientY,items:r,scrollableContainerEl:this.cfListRef.el,onDragEnd:(e,t)=>this.onDragEnd(e,t)})}onAddConditionalFormat(){let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getSelectedZones(),n={id:G.smallUuid(),rule:{type:`CellIsRule`,operator:`isNotEmpty`,style:{fillColor:`#b6d7a8`},values:[]}};return this.env.model.dispatch(`ADD_CONDITIONAL_FORMAT`,{cf:n,ranges:t.map(t=>this.env.model.getters.getRangeDataFromZone(e,t)),sheetId:e}),this.env.replaceSidePanel(`ConditionalFormattingEditor`,`ConditionalFormatting`,{cf:{...n,ranges:t.map(t=>bn(this.env.model.getters.getUnboundedZone(e,t)))},isNewCf:!0})}onDragEnd(e,t){let n=this.conditionalFormats.findIndex(t=>t.id===e)-t;n!==0&&this.env.model.dispatch(`CHANGE_CONDITIONAL_FORMAT_PRIORITY`,{cfId:e,delta:n,sheetId:this.env.model.getters.getActiveSheetId()})}},Pk=class extends t.Component{static template=`o-spreadsheet-DataValidationPreview`;static props={rule:Object};ref=(0,t.useRef)(`dvPreview`);setup(){ZO(this.ref,this)}onPreviewClick(){this.env.replaceSidePanel(`DataValidationEditor`,`DataValidation`,{ruleId:this.props.rule.id})}deleteDataValidation(){let e=this.env.model.getters.getActiveSheetId();this.env.model.dispatch(`REMOVE_DATA_VALIDATION_RULE`,{sheetId:e,id:this.props.rule.id})}get highlights(){return this.props.rule.ranges.map(e=>({range:e,color:ee,fillAlpha:.06}))}get rangesString(){let e=this.env.model.getters.getActiveSheetId();return this.props.rule.ranges.map(t=>this.env.model.getters.getRangeString(t,e)).join(`, `)}get descriptionString(){return Q.get(this.props.rule.criterion.type).getPreview(this.props.rule.criterion,this.env.model.getters)}},Fk=class extends t.Component{static template=`o-spreadsheet-DataValidationPanel`;static props={onCloseSidePanel:Function};static components={DataValidationPreview:Pk};addDataValidationRule(){this.env.replaceSidePanel(`DataValidationEditor`,`DataValidation`,{ruleId:G.smallUuid()})}localizeDVRule(e){return e&&Ng(e,this.env.model.getters.getLocale())}get validationRules(){let e=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getDataValidationRules(e)}};let Ik=new Set([`containsText`,`notContainsText`,`isEqualText`,`isEmail`,`isLink`,`dateIs`,`dateIsBefore`,`dateIsOnOrBefore`,`dateIsAfter`,`dateIsOnOrAfter`,`dateIsBetween`,`dateIsNotBetween`,`dateIsValid`,`isEqual`,`isNotEqual`,`isGreaterThan`,`isGreaterOrEqualTo`,`isLessThan`,`isLessOrEqualTo`,`isBetween`,`isNotBetween`,`isBoolean`,`isValueInList`,`isValueInRange`,`customFormula`]);var Lk=class extends t.Component{static template=`o-spreadsheet-DataValidationEditor`;static components={SelectionInput:lT,Select:Qh,Section:Z,ValidationMessages:pT};static props={ruleId:String,onCancel:{type:Function,optional:!0},onCloseSidePanel:Function};state=(0,t.useState)({rule:this.defaultDataValidationRule,errors:[],isTypeUpdated:!1});editingSheetId;setup(){this.editingSheetId=this.env.model.getters.getActiveSheetId();let e=this.env.model.getters.getDataValidationRule(this.editingSheetId,this.props.ruleId);if(e){let t=this.env.model.getters.getLocale();this.state.rule={...Ng(e,t),ranges:e.ranges.map(e=>this.env.model.getters.getRangeString(e,this.editingSheetId))}}}onCriterionTypeChanged(e){this.state.rule.criterion.type=e,this.state.isTypeUpdated=!0}onRangesChanged(e){this.state.rule.ranges=e}onCriterionChanged(e){this.state.rule.criterion=e}changeRuleIsBlocking(e){this.state.rule.isBlocking=e===`true`}onCancel(){this.props.onCancel?.(),this.env.replaceSidePanel(`DataValidation`,`DataValidationEditor_${this.props.ruleId}`)}onSave(){let e=this.env.model.dispatch(`ADD_DATA_VALIDATION_RULE`,this.dispatchPayload);if(!e.isSuccessful){this.state.errors=e.reasons;return}this.env.replaceSidePanel(`DataValidation`,`DataValidationEditor_${this.props.ruleId}`)}get dispatchPayload(){let e={...this.state.rule,ranges:void 0},t=this.env.model.getters.getLocale(),n=e.criterion,r=Q.get(n.type),i=n.values.slice(0,r.numberOfValues(n)).filter(e=>e&&e.trim()!==``).map(e=>xg(e,t));return e.criterion={...n,values:i},{sheetId:this.editingSheetId,ranges:this.state.rule.ranges.map(e=>this.env.model.getters.getRangeDataFromXc(this.editingSheetId,e)),rule:e}}get dvCriterionOptions(){return Ck(Ik)}get defaultDataValidationRule(){let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getSelectedZones().map(t=>bn(this.env.model.getters.getUnboundedZone(e,t)));return{id:this.props.ruleId,criterion:{type:`containsText`,values:[``]},ranges:t}}get criterionComponent(){return Sk.get(this.state.rule.criterion.type).component}get errorMessages(){return this.state.errors.map(e=>hg.Errors[e]||hg.Errors.Unexpected)}get isRuleBlockingSelectOptions(){return[{value:`false`,label:A(`Show a warning`)},{value:`true`,label:A(`Reject the input`)}]}};let Rk=`#8B008B`;var zk=function(e){return e[e.previous=-1]=`previous`,e[e.current=0]=`current`,e[e.next=1]=`next`,e}(zk||{}),Bk=class extends fr{mutators=[`updateSearchOptions`,`updateSearchContent`,`searchFormulas`,`selectPreviousMatch`,`selectNextMatch`,`replace`];allSheetsMatches=[];activeSheetMatches=[];specificRangeMatches=[];currentSearchRegex=null;initialShowFormulaState;preserveSelectedMatchIndex=!1;irreplaceableMatchCount=0;isSearchDirty=!1;shouldFinalizeUpdateSelection=!1;notificationStore=this.get(yO);selectedMatchIndex=null;toSearch=``;toReplace=``;searchOptions={matchCase:!1,exactMatch:!1,searchFormulas:!1,searchScope:`activeSheet`,specificRange:void 0};constructor(e){super(e),this.initialShowFormulaState=this.model.getters.shouldShowFormulas(),this.searchOptions.searchFormulas=this.initialShowFormulaState;let t=e(oT);t.register(this),this.onDispose(()=>{this.model.dispatch(`SET_FORMULA_VISIBILITY`,{show:this.initialShowFormulaState}),t.unRegister(this)})}get searchMatches(){switch(this.searchOptions.searchScope){case`allSheets`:return this.allSheetsMatches;case`activeSheet`:return this.activeSheetMatches;case`specificRange`:return this.specificRangeMatches}}updateSearchContent(e){this._updateSearch(e,this.searchOptions)}updateSearchOptions(e){this._updateSearch(this.toSearch,{...this.searchOptions,...e})}searchFormulas(e){this.model.dispatch(`SET_FORMULA_VISIBILITY`,{show:e}),this.updateSearchOptions({searchFormulas:e})}selectPreviousMatch(){this.selectNextCell(zk.previous,{jumpToMatchSheet:!0,updateSelection:!0})}selectNextMatch(){this.selectNextCell(zk.next,{jumpToMatchSheet:!0,updateSelection:!0})}handle(e){switch(e.type){case`SET_FORMULA_VISIBILITY`:this.updateSearchOptions({searchFormulas:e.show});break;case`UNDO`:case`REDO`:case`REMOVE_TABLE`:case`UPDATE_FILTER`:case`REMOVE_COLUMNS_ROWS`:case`HIDE_COLUMNS_ROWS`:case`UNHIDE_COLUMNS_ROWS`:case`ADD_COLUMNS_ROWS`:case`EVALUATE_CELLS`:case`UPDATE_CELL`:this.isSearchDirty=!0;break;case`ACTIVATE_SHEET`:this.isSearchDirty=!0,this.shouldFinalizeUpdateSelection=!0,this.searchOptions.specificRange&&(this.searchOptions.specificRange={...this.searchOptions.specificRange,sheetId:this.getters.getActiveSheetId()});break;case`DELETE_SHEET`:this.searchOptions.searchScope===`specificRange`&&this.searchOptions.specificRange?.sheetId===e.sheetId&&(this.searchOptions={...this.searchOptions,specificRange:void 0}),this.isSearchDirty=!0;break;case`REPLACE_SEARCH`:for(let t of e.matches)this.replaceMatch(t,e.searchString,e.replaceWith,e.searchOptions);this.irreplaceableMatchCount>0&&this.showReplaceWarningMessage(e.matches.length,this.irreplaceableMatchCount),this.irreplaceableMatchCount=0;break}}finalize(){this.isSearchDirty&&=(this.refreshSearch({jumpToMatchSheet:!1,updateSelection:this.shouldFinalizeUpdateSelection}),this.shouldFinalizeUpdateSelection=!1,!1)}get allSheetMatchesCount(){return this.allSheetsMatches.length}get activeSheetMatchesCount(){return this.activeSheetMatches.length}get specificRangeMatchesCount(){return this.specificRangeMatches.length}_updateSearch(e,t){this.searchOptions=t,e!==this.toSearch&&(this.selectedMatchIndex=null),this.toSearch=e,this.currentSearchRegex=It(this.toSearch,this.searchOptions),this.refreshSearch({jumpToMatchSheet:!0,updateSelection:!0})}refreshSearch(e){this.preserveSelectedMatchIndex||(this.selectedMatchIndex=null),this.findMatches(),this.selectNextCell(zk.current,e)}getSheetsInSearchOrder(){switch(this.searchOptions.searchScope){case`allSheets`:let e=this.getters.getSheetIds(),t=e.findIndex(e=>e===this.getters.getActiveSheetId());return[e[t],...e.slice(t+1),...e.slice(0,t)];case`activeSheet`:return[this.getters.getActiveSheetId()];case`specificRange`:let n=this.searchOptions.specificRange;return n&&n?[n.sheetId]:[]}}findMatches(){let e=[];if(this.toSearch)for(let t of this.getters.getSheetIds())e.push(...this.findMatchesInSheet(t));if(this.allSheetsMatches=e,this.activeSheetMatches=e.filter(e=>e.sheetId===this.getters.getActiveSheetId()),this.searchOptions.specificRange){let{sheetId:t,zone:n}=this.searchOptions.specificRange;this.specificRangeMatches=e.filter(e=>e.sheetId===t&&jn(e.col,e.row,n))}else this.specificRangeMatches=[]}findMatchesInSheet(e){let t=[],{left:n,right:r,top:i,bottom:a}=this.getters.getSheetZone(e);for(let o=i;o<=a;o++)for(let i=n;i<=r;i++){let n=this.getters.isColHidden(e,i),r=this.getters.isRowHidden(e,o);if(n||r)continue;let a={sheetId:e,col:i,row:o};if(this.currentSearchRegex?.test(this.getSearchableString(a))){let n={sheetId:e,col:i,row:o};t.push(n)}}return t}selectNextCell(e,t){let n=this.searchMatches;if(!n.length){this.selectedMatchIndex=null;return}let r;if(this.selectedMatchIndex===null){let e=-1;for(let t of this.getSheetsInSearchOrder())if(e=n.findIndex(e=>e.sheetId===t),e!==-1)break;r=e}else r=this.selectedMatchIndex+e;r=(r+n.length)%n.length,this.selectedMatchIndex=r;let i=n[r];t.jumpToMatchSheet&&this.getters.getActiveSheetId()!==i.sheetId&&(this.preserveSelectedMatchIndex=!0,this.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:this.getters.getActiveSheetId(),sheetIdTo:i.sheetId}),this.preserveSelectedMatchIndex=!1,this.isSearchDirty=!1),this.model.selection.getBackToDefault(),t.updateSelection&&this.model.selection.selectCell(i.col,i.row)}replace(){this.selectedMatchIndex!==null&&(this.preserveSelectedMatchIndex=!0,this.shouldFinalizeUpdateSelection=!0,this.model.dispatch(`REPLACE_SEARCH`,{searchString:this.toSearch,replaceWith:this.toReplace,matches:[this.searchMatches[this.selectedMatchIndex]],searchOptions:this.searchOptions}),this.preserveSelectedMatchIndex=!1)}replaceAll(){this.model.dispatch(`REPLACE_SEARCH`,{searchString:this.toSearch,replaceWith:this.toReplace,matches:this.searchMatches,searchOptions:this.searchOptions})}showReplaceWarningMessage(e,t){let n=e-t;n===0?this.notificationStore.notifyUser({type:`warning`,sticky:!1,text:A(`Match(es) cannot be replaced as they are part of a formula or inside a locked sheet`)}):this.notificationStore.notifyUser({type:`warning`,sticky:!1,text:A(`%(replaceable_count)s match(es) replaced. %(irreplaceable_count)s match(es) cannot be replaced as they are part of a formula or inside a locked sheet`,{replaceable_count:n,irreplaceable_count:t})})}replaceMatch(e,t,n,r){if(this.getters.isSheetLocked(e.sheetId)){this.irreplaceableMatchCount++;return}let i=this.getters.getCell(e);if(!i?.isFormula&&!i?.content)return;if(i?.isFormula&&!r.searchFormulas){this.irreplaceableMatchCount++;return}let a=It(t,r),o=new RegExp(a.source,a.flags+`g`),s=bg(this.getters.getCellText(e,{showFormula:r.searchFormulas}).replace(o,n),this.getters.getLocale());this.model.dispatch(`UPDATE_CELL`,{...e,content:s})}getSearchableString(e){return this.getters.getCellText(e,{showFormula:this.searchOptions.searchFormulas})}get highlights(){let e=[],t=this.getters.getActiveSheetId();for(let[n,r]of this.searchMatches.entries()){if(r.sheetId!==t)continue;let i=D(r),a=this.getters.expandZone(t,i),{width:o,height:s}=this.getters.getVisibleRect(a);o>0&&s>0&&e.push({range:this.model.getters.getRangeFromZone(t,a),color:Rk,noBorder:n!==this.selectedMatchIndex,thinLine:!0,fillAlpha:.2})}if(this.searchOptions.searchScope===`specificRange`){let n=this.searchOptions.specificRange;n&&n.sheetId===t&&e.push({range:n,color:Rk,noFill:!0,thinLine:!0})}return e}},Vk=class extends t.Component{static template=`o-spreadsheet-FindAndReplacePanel`;static components={SelectionInput:lT,Section:Z,Checkbox:Qw,ValidationMessages:pT,Select:Qh};static props={onCloseSidePanel:Function};searchInput=(0,t.useRef)(`searchInput`);store;state;updateSearchContent;get hasSearchResult(){return this.store.selectedMatchIndex!==null}get searchOptions(){return this.store.searchOptions}get allSheetsMatchesCount(){return A(`%s matches in all sheets`,this.store.allSheetMatchesCount)}get currentSheetMatchesCount(){return A(`%(matches)s matches in %(sheetName)s`,{matches:this.store.activeSheetMatchesCount,sheetName:this.env.model.getters.getSheetName(this.env.model.getters.getActiveSheetId())})}get specificRangeMatchesCount(){let e=this.searchOptions.specificRange;if(!e)return``;let{sheetId:t,zone:n}=e;return A(`%(matches)s matches in range %(range)s of %(sheetName)s`,{matches:this.store.specificRangeMatchesCount,range:bn(n),sheetName:this.env.model.getters.getSheetName(t)})}get searchInfo(){return this.store.toSearch?[this.specificRangeMatchesCount,this.currentSheetMatchesCount,this.allSheetsMatchesCount]:[]}setup(){this.store=wr(Bk),this.state=(0,t.useState)({dataRange:``}),(0,t.onMounted)(()=>this.searchInput.el?.focus()),(0,t.onWillUnmount)(()=>this.updateSearchContent.stopDebounce()),this.updateSearchContent=pt(this.store.updateSearchContent,200),(0,t.useExternalListener)(window,`keydown`,e=>{let t=ym(e);(t===`Ctrl+F`||t===`Ctrl+H`)&&(this.searchInput.el?.focus(),e.preventDefault(),e.stopPropagation())},{capture:!0})}onFocusSearch(){this.updateDataRange()}onSearchInput(e){this.updateSearchContent(e.target.value)}onKeydownPanel(e){e.key===`Escape`&&(e.preventDefault(),e.stopPropagation(),this.props.onCloseSidePanel())}onKeydownSearch(e){e.key===`Enter`&&(e.preventDefault(),e.stopPropagation(),e.shiftKey?this.store.selectPreviousMatch():this.store.selectNextMatch())}onKeydownReplace(e){e.key===`Enter`&&(e.preventDefault(),e.stopPropagation(),this.store.replace())}searchFormulas(e){this.store.searchFormulas(e)}searchExactMatch(e){this.store.updateSearchOptions({exactMatch:e})}searchMatchCase(e){this.store.updateSearchOptions({matchCase:e})}changeSearchScope(e){this.store.updateSearchOptions({searchScope:e})}onSearchRangeChanged(e){this.state.dataRange=e[0]}updateDataRange(){if(!this.state.dataRange||this.searchOptions.searchScope!==`specificRange`)return;let e=this.env.model.getters.getRangeFromSheetXC(this.env.model.getters.getActiveSheetId(),this.state.dataRange);this.store.updateSearchOptions({specificRange:e})}get specificRange(){let e=this.store.searchOptions.specificRange;return e?this.env.model.getters.getRangeString(e,`forceSheetReference`):``}get pendingSearch(){return this.updateSearchContent.isDebouncePending()}get selectionInputKey(){return this.env.model.getters.getActiveSheetId()}get searchScopeOptions(){return[{value:`allSheets`,label:A(`All sheets`)},{value:`activeSheet`,label:A(`Current sheet`)},{value:`specificRange`,label:A(`Specific range`)}]}};let Hk=new B;function Uk({name:e,format:t,descriptionValue:n}){let r=typeof t==`function`?t:()=>t;return{name:e,description:e=>R(n,{format:r(e),locale:e.model.getters.getLocale()}),execute:e=>lC(e,r(e)),isActive:e=>BA(e,r(e)),format:t}}let Wk={name:A(`Automatic`),execute:e=>lC(e,``),isActive:e=>zA(e)},Gk={name:A(`Plain text`),execute:e=>lC(e,`@`),isActive:e=>BA(e,`@`)},Kk=Uk({name:A(`Number`),descriptionValue:1000.12,format:`#,##0.00`}),qk={name:A(`Format as percent`),execute:RC,icon:`o-spreadsheet-Icon.PERCENT`},Jk=Uk({name:A(`Percent`),descriptionValue:.1012,format:`0.00%`}),Yk=Uk({name:A(`Scientific`),descriptionValue:.1012,format:`0.00e`}),Xk=Uk({name:A(`Currency`),descriptionValue:1000.12,format:e=>Mo(e.model.config.defaultCurrency||Le)}),Zk={...Uk({name:A(`Currency rounded`),descriptionValue:1e3,format:e=>Io(Mo(e.model.config.defaultCurrency||Le))}),isVisible:e=>{let t=Mo(e.model.config.defaultCurrency||Le);return t!==Io(t)}},Qk=Uk({name:A(`Accounting`),descriptionValue:-1000.12,format:e=>No(e.model.config.defaultCurrency||Le)}),$k=au(`2023/09/26 10:43:00 PM`,L),eA={name:A(`Custom currency`),isVisible:e=>e.loadCurrencies!==void 0&&!e.isSmall,execute:e=>e.openSidePanel(`MoreFormats`,{category:`currency`})},tA=Uk({name:A(`Date`),descriptionValue:$k,format:e=>e.model.getters.getLocale().dateFormat}),nA=Uk({name:A(`Time`),descriptionValue:$k,format:e=>e.model.getters.getLocale().timeFormat}),rA=Uk({name:A(`Date time`),descriptionValue:$k,format:e=>Ig(e.model.getters.getLocale())}),iA=Uk({name:A(`Duration`),descriptionValue:`27:51:38`,format:`hhhh:mm:ss`}),aA={name:A(`Custom date and time`),isVisible:e=>!e.isSmall,execute:e=>e.openSidePanel(`MoreFormats`,{category:`date`})},oA={name:A(`Custom number format`),isVisible:e=>!e.isSmall,execute:e=>e.openSidePanel(`MoreFormats`,{category:`number`})};Uk({name:A(`Full date time`),format:`dddd d mmmm yyyy hh:mm:ss a`,descriptionValue:$k});let sA={name:A(`Increase decimal places`),icon:`o-spreadsheet-Icon.INCREASE_DECIMAL`,execute:e=>e.model.dispatch(`SET_DECIMAL`,{sheetId:e.model.getters.getActiveSheetId(),target:e.model.getters.getSelectedZones(),step:1})},cA={name:A(`Decrease decimal places`),icon:`o-spreadsheet-Icon.DECRASE_DECIMAL`,execute:e=>e.model.dispatch(`SET_DECIMAL`,{sheetId:e.model.getters.getActiveSheetId(),target:e.model.getters.getSelectedZones(),step:-1})},lA={name:A(`Bold`),shortcut:`Ctrl+B`,execute:e=>uC(e,{bold:!e.model.getters.getCurrentStyle().bold}),icon:`o-spreadsheet-Icon.BOLD`,isActive:e=>!!e.model.getters.getCurrentStyle().bold},uA={name:A(`Italic`),shortcut:`Ctrl+I`,execute:e=>uC(e,{italic:!e.model.getters.getCurrentStyle().italic}),icon:`o-spreadsheet-Icon.ITALIC`,isActive:e=>!!e.model.getters.getCurrentStyle().italic},dA={name:A(`Underline`),shortcut:`Ctrl+U`,execute:e=>uC(e,{underline:!e.model.getters.getCurrentStyle().underline}),icon:`o-spreadsheet-Icon.UNDERLINE`,isActive:e=>!!e.model.getters.getCurrentStyle().underline},fA={name:A(`Rotation`),icon:e=>JA(e)};function pA(e,t){t=Math.trunc(t/_e)*_e,uC(e,{rotation:t})}function mA(e,t){let n=e.model.getters.getCurrentStyle().rotation;return n===void 0?t===0:Math.abs(n-t)<_e}let hA={name:A(`No rotation`),execute:e=>uC(e,{rotation:0}),icon:`o-spreadsheet-Icon.ROTATION-0`,isActive:e=>mA(e,0)},gA={name:A(`45° rotation`),execute:e=>pA(e,Math.PI/4),icon:`o-spreadsheet-Icon.ROTATION-45`,isActive:e=>mA(e,Math.PI/4)},_A={name:A(`90° rotation`),execute:e=>pA(e,Math.PI/2),icon:`o-spreadsheet-Icon.ROTATION-90`,isActive:e=>mA(e,Math.PI/2)},vA={name:A(`-90° rotation`),execute:e=>pA(e,-Math.PI/2),icon:`o-spreadsheet-Icon.ROTATION-270`,isActive:e=>mA(e,-Math.PI/2)},yA={name:A(`-45° rotation`),execute:e=>pA(e,-Math.PI/4),icon:`o-spreadsheet-Icon.ROTATION-315`,isActive:e=>mA(e,-Math.PI/4)},bA={name:A(`Strikethrough`),execute:e=>uC(e,{strikethrough:!e.model.getters.getCurrentStyle().strikethrough}),icon:`o-spreadsheet-Icon.STRIKE`,isActive:e=>!!e.model.getters.getCurrentStyle().strikethrough},xA={name:A(`Font size`),children:RA(),icon:`o-spreadsheet-Icon.FONT_SIZE`},SA={name:A(`Alignment`),icon:`o-spreadsheet-Icon.ALIGN_LEFT`},CA={name:A(`Horizontal align`),icon:e=>GA(e)},wA={name:A(`Left`),shortcut:`Ctrl+Shift+L`,execute:e=>uC(e,{align:`left`}),isActive:e=>HA(e)===`left`,icon:`o-spreadsheet-Icon.ALIGN_LEFT`},TA={name:A(`Center`),shortcut:`Ctrl+Shift+E`,execute:e=>uC(e,{align:`center`}),isActive:e=>HA(e)===`center`,icon:`o-spreadsheet-Icon.ALIGN_CENTER`},EA={name:A(`Right`),shortcut:`Ctrl+Shift+R`,execute:e=>uC(e,{align:`right`}),isActive:e=>HA(e)===`right`,icon:`o-spreadsheet-Icon.ALIGN_RIGHT`},DA={name:A(`Vertical align`),icon:e=>KA(e)},OA={name:A(`Top`),execute:e=>uC(e,{verticalAlign:`top`}),isActive:e=>UA(e)===`top`,icon:`o-spreadsheet-Icon.ALIGN_TOP`},kA={name:A(`Middle`),execute:e=>uC(e,{verticalAlign:`middle`}),isActive:e=>UA(e)===`middle`,icon:`o-spreadsheet-Icon.ALIGN_MIDDLE`},AA={name:A(`Bottom`),execute:e=>uC(e,{verticalAlign:`bottom`}),isActive:e=>UA(e)===`bottom`,icon:`o-spreadsheet-Icon.ALIGN_BOTTOM`},jA={name:A(`Wrapping`),icon:`o-spreadsheet-Icon.WRAPPING_OVERFLOW`},MA={name:A(`Wrapping`),icon:e=>qA(e)},NA={name:A(`Overflow`),execute:e=>uC(e,{wrapping:`overflow`}),isActive:e=>WA(e)===`overflow`,icon:`o-spreadsheet-Icon.WRAPPING_OVERFLOW`},PA={name:A(`Wrap`),execute:e=>uC(e,{wrapping:`wrap`}),isActive:e=>WA(e)===`wrap`,icon:`o-spreadsheet-Icon.WRAPPING_WRAP`},FA={name:A(`Clip`),execute:e=>uC(e,{wrapping:`clip`}),isActive:e=>WA(e)===`clip`,icon:`o-spreadsheet-Icon.WRAPPING_CLIP`};A(`Text Color`),A(`Fill Color`);let IA={name:A(`Conditional formatting`),execute:zC,isEnabled:e=>!e.isSmall,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.CONDITIONAL_FORMAT`},LA={name:A(`Clear formatting`),shortcut:`Ctrl+<`,execute:e=>e.model.dispatch(`CLEAR_FORMATTING`,{sheetId:e.model.getters.getActiveSheetId(),target:e.model.getters.getSelectedZones()}),icon:`o-spreadsheet-Icon.CLEAR_FORMAT`};function RA(){return Pe.map(e=>({name:e.toString(),sequence:e,id:`font_size_${e}`,execute:t=>uC(t,{fontSize:e}),isActive:t=>VA(t,e)}))}function zA(e){let t=e.model.getters.getActivePosition();return e.model.getters.getPivotCellFromPosition(t).type===`VALUE`?!e.model.getters.getEvaluatedCell(t).format:!e.model.getters.getCell(t)?.format}function BA(e,t){let n=e.model.getters.getActivePosition();return e.model.getters.getPivotCellFromPosition(n).type===`VALUE`?e.model.getters.getEvaluatedCell(n).format===t:e.model.getters.getCell(n)?.format===t}function VA(e,t){return(e.model.getters.getCurrentStyle().fontSize||xe)===t}function HA(e){let t=e.model.getters.getCurrentStyle();return t.align?t.align:e.model.getters.getActiveCell().defaultAlign}function UA(e){let t=e.model.getters.getCurrentStyle();return t.verticalAlign?t.verticalAlign:ye}function WA(e){let t=e.model.getters.getCurrentStyle();return t.wrapping?t.wrapping:be}function GA(e){switch(HA(e)){case`right`:return`o-spreadsheet-Icon.ALIGN_RIGHT`;case`center`:return`o-spreadsheet-Icon.ALIGN_CENTER`;default:return`o-spreadsheet-Icon.ALIGN_LEFT`}}function KA(e){switch(UA(e)){case`top`:return`o-spreadsheet-Icon.ALIGN_TOP`;case`middle`:return`o-spreadsheet-Icon.ALIGN_MIDDLE`;default:return`o-spreadsheet-Icon.ALIGN_BOTTOM`}}function qA(e){switch(WA(e)){case`wrap`:return`o-spreadsheet-Icon.WRAPPING_WRAP`;case`clip`:return`o-spreadsheet-Icon.WRAPPING_CLIP`;default:return`o-spreadsheet-Icon.WRAPPING_OVERFLOW`}}function JA(e){return mA(e,Math.PI/2)?`o-spreadsheet-Icon.ROTATION-90`:mA(e,-Math.PI/2)?`o-spreadsheet-Icon.ROTATION-270`:mA(e,Math.PI/4)?`o-spreadsheet-Icon.ROTATION-45`:mA(e,-Math.PI/4)?`o-spreadsheet-Icon.ROTATION-315`:`o-spreadsheet-Icon.ROTATION-0`}let YA={name:ug.Custom,code:``,symbol:``,decimalPlaces:2,position:`after`};var XA=class extends fr{mutators=[`updateFormat`,`changeCategory`,`selectCurrency`,`changeCurrencyCode`,`changeCurrencySymbol`,`updateAvailableCurrencies`];invalidFormat=!1;isApplyingFormatFromPanel=!1;currentFormat=this.formatInSelection;category=this.detectFormatCategory(this.formatInSelection);selectedCurrencyIndex=0;currencyCode=``;currencySymbol=``;isAccountingFormat=!1;availableCurrencies=[YA,...Hk.getAll()];lastFormatInSelection=this.currentFormat;usedFormatForCategory={};constructor(e,t){super(e),t&&(this.category=t),this.model.selection.observe(this,{handleEvent:this.handleSelectionEvent.bind(this)}),this.onDispose(()=>{this.model.selection.unobserve(this)})}handle(){this.isApplyingFormatFromPanel||this.syncActiveFormat()}handleSelectionEvent(){this.getters.isGridSelectionActive()&&this.syncActiveFormat()}syncActiveFormat(){let e=this.formatInSelection;e!==this.lastFormatInSelection&&(this.setActiveFormat(e),this.lastFormatInSelection=e)}setActiveFormat(e){this.currentFormat=e,this.invalidFormat=!Yo(e||``),this.category=this.detectFormatCategory(e)}get categories(){return[{label:A(`Number`),value:`number`},{label:A(`Date`),value:`date`},{label:A(`Currency`),value:`currency`}]}get formatInSelection(){let e=this.getters.getActivePosition();return this.getters.getPivotCellFromPosition(e).type===`VALUE`?this.getters.getEvaluatedCell(e).format:this.getters.getCell(e)?.format}detectFormatCategory(e){return e?To(e)?`date`:e.includes(`$`)||e.includes(`"`)?`currency`:`number`:`number`}get formatProposals(){return this.category===`date`?this.dateFormatProposals:this.category===`currency`?this.currencyFormatProposals:this.category===`number`?this.numberFormatProposals:[]}get numberFormatProposals(){let e=[`0.00`,`0`,`#,##0`,`#,##0.00`,`0%`,`0.00%`,`0.00e`,`0.00;(0.00);-`].map(e=>({label:R(-1234.56,{format:e,locale:this.getters.getLocale()}),format:e}));return[{label:A(`Automatic`),format:void 0},{label:A(`Plain text`),format:`@`},...e]}get dateFormatProposals(){let e=this.getters.getLocale();return[e.dateFormat,e.timeFormat,e.dateFormat+` `+e.timeFormat,`dddd d mmmm yyyy hh:mm:ss a`,`yyyy-mm-dd`,`yyyy-mm-dd hh:mm:ss`,`dddd d mmmm yyyy`,`d mmmm yyyy`,`ddd d mmm yyyy`,`d mmm yyyy`,`mmmm yyyy`,`mmm yyyy`,`hhhh:mm:ss`,`qq yyyy`,`qqqq yyyy`].map(t=>({label:R($k,{format:t,locale:e}),format:t}))}get currencyFormatProposals(){let e=this.availableCurrencies[this.selectedCurrencyIndex],t=e.position,n=e.position===`before`?`after`:`before`,r=this.currencySymbol.trim()?this.currencySymbol:``,i=this.currencyCode.trim()?this.currencyCode:``,a=e.decimalPlaces;if(!r&&!i)return[];let o=[{symbol:r,position:t,decimalPlaces:0},{symbol:r,position:t,decimalPlaces:a},{symbol:r,position:t,decimalPlaces:0,code:i},{symbol:r,position:t,decimalPlaces:a,code:i},{symbol:r,position:n,decimalPlaces:0},{symbol:r,position:n,decimalPlaces:a},{symbol:r,position:n,decimalPlaces:0,code:i},{symbol:r,position:n,decimalPlaces:a,code:i}],s=new Set,c=this.getters.getLocale();return o.map(e=>{let t=this.isAccountingFormat?No(e):Mo(e);if(!(!e.symbol&&!e.code||s.has(t)))return s.add(t),{format:t,label:R(1e3,{format:t,locale:c})}}).filter(w)}get formatExamples(){let e=this.currentFormat,t=this.getters.getLocale();if(!e||!Yo(e))return[];if(this.category===`date`)return[{label:A(`Sample:`),value:R($k,{format:e,locale:t})}];{let n=Xo(e),r=[{label:A(`Positive:`),value:R(1234.56,{format:e,locale:t})},{label:A(`Negative:`),value:R(-1234.56,{format:e,locale:t})},{label:A(`Zero:`),value:R(0,{format:e,locale:t})}];return n===4&&r.push({label:A(`Text:`),value:R(`Text`,{format:e,locale:t})}),r}}updateAvailableCurrencies(){this.availableCurrencies=[YA,...Hk.getAll()]}updateFormat(e){this.currentFormat=e,this.invalidFormat=!Yo(e),this.invalidFormat||(this.lastFormatInSelection=e,this.isApplyingFormatFromPanel=!0,this.model.dispatch(`SET_FORMATTING_WITH_PIVOT`,{sheetId:this.getters.getActiveSheetId(),target:this.getters.getSelectedZones(),format:e||``}),this.isApplyingFormatFromPanel=!1)}changeCategory(e){if(e===this.category)return`noStateChange`;this.usedFormatForCategory[this.category]=this.currentFormat,this.category=e;let t=this.usedFormatForCategory[e]||this.formatProposals[0]?.format||``;this.updateFormat(t)}selectCurrency(e){let t=this.formatProposals.findIndex(e=>e.format===this.currentFormat);this.selectedCurrencyIndex=e;let n=this.availableCurrencies[e];this.currencyCode=n.code,this.currencySymbol=n.symbol,this.updateFormat(this.formatProposals[t]?.format||this.formatProposals[0]?.format||``)}changeCurrencyCode(e){let t=this.formatProposals.findIndex(e=>e.format===this.currentFormat);this.currencyCode=e,this.selectedCurrencyIndex=0,this.updateFormat(this.formatProposals[t]?.format||this.formatProposals[0]?.format||``)}changeCurrencySymbol(e){let t=this.formatProposals.findIndex(e=>e.format===this.currentFormat);this.currencySymbol=e,this.selectedCurrencyIndex=0,this.updateFormat(this.formatProposals[t]?.format||this.formatProposals[0]?.format||``)}toggleAccountingFormat(){let e=this.formatProposals.findIndex(e=>e.format===this.currentFormat);this.isAccountingFormat=!this.isAccountingFormat,this.updateFormat(this.formatProposals[e]?.format||this.formatProposals[0]?.format||``)}get invalidFormatMessage(){return this.invalidFormat?A(`The format entered is not valid.`):void 0}},ZA=class extends t.Component{static template=`o-spreadsheet-MoreFormatsPanel`;static props={onCloseSidePanel:Function,category:{type:String,optional:!0}};static components={BadgeSelection:xT,Section:Z,TextInput:Hw,Checkbox:Qw,Select:Qh};store;setup(){this.store=wr(XA,this.props.category),(0,t.onWillStart)(()=>this.loadCurrencies()),(0,t.onWillUpdateProps)(e=>{e.category&&e.category!==this.props.category&&this.store.changeCategory(e.category)})}async loadCurrencies(){Hk.getAll().length===0&&((await(this.env.loadCurrencies?.()??Promise.resolve([]))).forEach((e,t)=>{Hk.replace(t.toString(),e)}),this.store.updateAvailableCurrencies())}currencyDisplayName(e){return e.name+(e.code?` (${e.code})`:``)}updateSelectCurrency(e){let t=parseInt(e,10);this.store.selectCurrency(t)}isFormatSelected(e){return e===this.store.currentFormat}get availableCurrenciesOptions(){return this.store.availableCurrencies.map((e,t)=>({value:t.toString(),label:this.currencyDisplayName(e)}))}};function QA(e,t){ej(e,e.model.dispatch(`CREATE_NAMED_RANGE`,t))}function $A(e,t){ej(e,e.model.dispatch(`UPDATE_NAMED_RANGE`,t))}function ej(e,t){t.isSuccessful||(t.isCancelledBecause(H.NamedRangeNameAlreadyExists)?e.raiseError(A(`A named range with this name already exists.`)):t.isCancelledBecause(H.NamedRangeInvalidName)?e.raiseError(A(`The named range name is invalid. Valid names can contain letters, digits, underscores, and periods. The name cannot be only a number, TRUE, or FALSE.`)):t.isCancelledBecause(H.NamedRangeNameLooksLikeCellReference)?e.raiseError(A(`A named range name cannot resemble a cell reference.`)):t.isCancelledBecause(H.NamedRangeNotFound)&&e.raiseError(A(`The named range to update was not found.`)))}var tj=class extends t.Component{static template=`o-spreadsheet-NamedRangePreview`;static props={namedRange:Object};static components={SelectionInput:lT,TextInput:Hw};state=(0,t.useState)({});ref=(0,t.useRef)(`namedRangePreview`);setup(){ZO(this.ref,this)}get highlights(){return this.state.isSelectionInputFocused?[]:[{range:this.props.namedRange.range,color:ee,noFill:!0}]}deleteNamedRange(){this.env.model.dispatch(`DELETE_NAMED_RANGE`,{name:this.props.namedRange.name})}updateNamedRangeName(e){e=e.replace(/ /g,`_`),$A(this.env,{oldRangeName:this.props.namedRange.name,newRangeName:e,ranges:[this.env.model.getters.getRangeData(this.props.namedRange.range)]})}onSelectionInputChanged(e){this.state.currentRange=e[0]}onSelectionInputConfirmed(){if(this.state.isSelectionInputFocused=!1,this.state.currentRange){let e=this.env.model.getters.getRangeFromSheetXC(this.env.model.getters.getActiveSheetId(),this.state.currentRange);if(e.invalidSheetName||e.invalidXc)return;$A(this.env,{oldRangeName:this.props.namedRange.name,newRangeName:this.props.namedRange.name,ranges:[this.env.model.getters.getRangeData(e)]})}}onSelectionInputFocused(){this.state.isSelectionInputFocused=!0}get rangeString(){return this.env.model.getters.getRangeString(this.props.namedRange.range,this.env.model.getters.getActiveSheetId())}},nj=class extends t.Component{static template=`o-spreadsheet-NamedRangesPanel`;static props={onCloseSidePanel:Function};static components={NamedRangePreview:tj,SelectionInput:lT,TextInput:Hw};get namedRanges(){return this.env.model.getters.getNamedRanges()}addNewNamedRange(){let e=this.namedRanges.map(e=>e.name),t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getSelectedZone();this.env.model.dispatch(`CREATE_NAMED_RANGE`,{name:Ht(A(`Named_Range`),e,{compute:(e,t)=>`${e}${t}`}),ranges:[this.env.model.getters.getRangeDataFromZone(t,n)]})}},rj=class extends t.Component{static template=`o-spreadsheet-PerfProfilePanel`;static components={Section:Z};static props={onCloseSidePanel:Function};state=(0,t.useState)({selectedIndex:void 0,lastProfiledTime:0});setup(){QO(this)}get perfProfile(){return this.env.model.getters.getPerfProfile()}get highlights(){let e=this.state.selectedIndex;if(e===void 0)return[];let t=this.perfProfile?.entries[e];return t?[{range:t.range,color:`#e28f08`,noFill:!0}]:[]}stringifyRange({range:e}){return this.env.model.getters.getRangeString(e,`forceSheetReference`)}startProfiling(e){e.timeStamp-this.state.lastProfiledTime<50||(this.state.selectedIndex=void 0,this.env.model.dispatch(`EVALUATE_CELLS`,{profiling:!0}),this.state.lastProfiledTime=performance.now())}isSelected(e){return this.state.selectedIndex===e}selectEntry(e){this.state.selectedIndex=e;let t=this.perfProfile?.entries[e];if(!t||!this.env.model.getters.tryGetSheet(t.range.sheetId))return;let n=this.env.model.getters.getActiveSheetId();t.range.sheetId!==n&&this.env.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:n,sheetIdTo:t.range.sheetId});let r=t.range.zone;this.env.model.selection.selectCell(r.right,r.bottom),this.env.model.selection.selectCell(r.left,r.top)}formatTime(e){let t=this.env.model.getters.getLocale();return e>=1e3?A(`%(seconds)s s`,{seconds:R(e/1e3,{format:`0.00`,locale:t})}):A(`%(milliseconds)s ms`,{milliseconds:R(e,{format:`0.00`,locale:t})})}humanize(e){let t=this.env.model.getters.getLocale();return Ro({value:e},t)}formatPercent(e){let t=this.perfProfile?.totalTime;return t?R(e/t,{format:`0.0%`,locale:this.env.model.getters.getLocale()}):`0.0%`}barWidth(e){let t=this.perfProfile?.totalTime??0;return t?e.time/t*100:0}},ij=class extends fr{mutators=[`cancelMeasureDisplayEdition`,`updateMeasureDisplayType`,`updateMeasureDisplayField`,`updateMeasureDisplayValue`];measureDisplay;constructor(e,t,n){super(e),this.pivotId=t,this.initialMeasure=n,this.measureDisplay=n.display||{type:`no_calculations`}}updateMeasureDisplayType(e){this.updatePivotMeasureDisplay(this.getMeasureDisplay(e,this.measureDisplay.fieldNameWithGranularity,this.measureDisplay.value))}updateMeasureDisplayField(e){this.updatePivotMeasureDisplay(this.getMeasureDisplay(this.measureDisplay.type,e,this.measureDisplay.value))}updateMeasureDisplayValue(e){this.updatePivotMeasureDisplay(this.getMeasureDisplay(this.measureDisplay.type,this.measureDisplay.fieldNameWithGranularity,e))}updatePivotMeasureDisplay(e){let t=x(this.model.getters.getPivotCoreDefinition(this.pivotId)),n=this.getMeasureIndex(this.initialMeasure.id,t),r={...t.measures[n],display:e};t.measures[n]=r,this.model.dispatch(`UPDATE_PIVOT`,{pivot:t,pivotId:this.pivotId}).isSuccessful&&(this.measureDisplay=e)}getMeasureDisplay(e,t,n){switch(e){case`no_calculations`:case`%_of_grand_total`:case`%_of_col_total`:case`%_of_row_total`:case`%_of_parent_row_total`:case`%_of_parent_col_total`:case`index`:return{type:e};case`%_of_parent_total`:case`running_total`:case`%_running_total`:case`rank_asc`:case`rank_desc`:return t||=this.fields[0]?.nameWithGranularity,{type:e,fieldNameWithGranularity:t};case`%_of`:case`difference_from`:case`%_difference_from`:t||=this.fields[0]?.nameWithGranularity;let r=this.getPossibleValues(t);return(n===void 0||!r.find(e=>e.value===n))&&(n=og),{type:e,fieldNameWithGranularity:t,value:n??`(previous)`}}}getMeasureIndex(e,t){let n=t.measures.findIndex(t=>t.id===e);if(n===-1)throw Error(`Measure with id ${e} not found in pivot.`);return n}get doesDisplayNeedsField(){return[`%_of_parent_total`,`running_total`,`%_running_total`,`rank_asc`,`rank_desc`].includes(this.measureDisplay.type)||this.doesDisplayNeedsValue}get fields(){let e=this.getters.getPivot(this.pivotId).definition;return[...e.columns,...e.rows].map(e=>({...e,displayName:Kx(e)}))}get doesDisplayNeedsValue(){return this.isDisplayValueDependant(this.measureDisplay)}isDisplayValueDependant(e){return[`%_of`,`difference_from`,`%_difference_from`].includes(e.type)}get values(){let e=this.measureDisplay;return this.isDisplayValueDependant(e)?this.getPossibleValues(e.fieldNameWithGranularity):[]}getPossibleValues(e){let t=[{value:og,label:A(`(previous)`)},{value:sg,label:A(`(next)`)}],n=this.fields.find(t=>t.nameWithGranularity===e);if(!n)return[];let r=this.getters.getPivot(this.pivotId).getPossibleFieldValues(n);return[...t,...r]}cancelMeasureDisplayEdition(){let e=x(this.model.getters.getPivotCoreDefinition(this.pivotId)),t=this.getMeasureIndex(this.initialMeasure.id,e);e.measures[t]={...e.measures[t],display:this.initialMeasure.display},this.model.dispatch(`UPDATE_PIVOT`,{pivot:e,pivotId:this.pivotId})}},aj=class extends t.Component{static template=`o-spreadsheet-PivotMeasureDisplayPanel`;static props={onCloseSidePanel:Function,pivotId:String,measure:Object};static components={Section:Z,Checkbox:Qw,RadioSelection:wT,Select:Qh};measureDisplayTypeLabels=_g.labels;measureDisplayDescription=_g.documentation;store;setup(){this.store=wr(ij,this.props.pivotId,this.props.measure)}onSave(){this.env.replaceSidePanel(`PivotSidePanel`,`pivot_measure_display_${this.props.pivotId}_${this.props.measure.id}`,{pivotId:this.props.pivotId})}onCancel(){this.store.cancelMeasureDisplayEdition(),this.env.replaceSidePanel(`PivotSidePanel`,`pivot_measure_display_${this.props.pivotId}_${this.props.measure.id}`,{pivotId:this.props.pivotId})}get fieldChoices(){return this.store.fields.map(e=>({value:e.nameWithGranularity,label:e.displayName}))}get measureDisplayTypeOptions(){return Object.keys(this.measureDisplayTypeLabels).map(e=>({value:e,label:this.measureDisplayTypeLabels[e]}))}};function oj(e,t){let n=e.getActiveSheetId();return tr(sj(e,t).map(D)).map(t=>({range:e.getRangeFromZone(n,t),noFill:!0,color:ee}))}function sj(e,t){let n=[],r=e.getActiveSheetId();for(let i of e.getSheetViewVisibleCols())for(let a of e.getSheetViewVisibleRows()){let o={sheetId:r,col:i,row:a};t===e.getPivotIdFromPosition(o)&&n.push(o)}return n}var cj=class extends t.Component{static template=`o-spreadsheet-PivotDeferUpdate`;static props={deferUpdate:Boolean,isDirty:Boolean,toggleDeferUpdate:Function,discard:Function,apply:Function};static components={Section:Z,Checkbox:Qw};get deferUpdatesLabel(){return A(`Defer updates`)}get deferUpdatesTooltip(){return A(`Changing the pivot definition requires to reload the data. It may take some time.`)}},lj=class extends t.Component{static template=`o-spreadsheet-PivotCustomGroupsCollapsible`;static props={pivotId:String,customField:Object,onCustomFieldUpdated:Function};static components={SidePanelCollapsible:vT,TextInput:Hw,Checkbox:Qw};get groups(){return this.props.customField.groups.sort((e,t)=>!e.isOtherGroup&&!t.isOtherGroup?0:e.isOtherGroup?1:-1)}get hasOthersGroup(){return this.props.customField.groups.some(e=>e.isOtherGroup)}addOthersGroup(){if(this.hasOthersGroup)return;let e={name:Yx(A(`Others`),this.props.customField),values:[],isOtherGroup:!0},t=[...this.props.customField.groups,e];this.updateCustomField({...this.props.customField,groups:t})}onDeleteGroup(e){let t=[...this.props.customField.groups];t.splice(e,1),this.updateCustomField({...this.props.customField,groups:t})}onRenameGroup(e,t){let n=x(this.props.customField.groups),r=n[e];r&&(r.name=Yx(t,this.props.customField),this.updateCustomField({...this.props.customField,groups:n}))}updateCustomField(e){let t=this.env.model.getters.getPivotCoreDefinition(this.props.pivotId);this.props.onCustomFieldUpdated({customFields:{...t.customFields,[e.name]:e}})}};function uj(e,t,n,r){let i=[];e=e.toLowerCase();for(let a of e){let e=t.toLocaleLowerCase().indexOf(a);e!==-1&&(i.push({value:t.slice(0,e),color:``},{value:t[e],color:n,classes:[r]}),t=t.slice(e+1))}return i.push({value:t}),i.filter(e=>e.value)}var dj=class extends t.Component{static template=`o-spreadsheet-AddDimensionButton`;static components={Popover:qh,TextValueProvider:JD};static props={onFieldPicked:Function,fields:Array,slots:{type:Object,optional:!0}};buttonRef=(0,t.useRef)(`button`);popover=(0,t.useState)({isOpen:!1});search=(0,t.useState)({input:``});autoComplete;setup(){this.autoComplete=wr(bO),this.autoComplete.useProvider(this.getProvider()),(0,t.useExternalListener)(window,`click`,e=>{e.target!==this.buttonRef.el&&(this.popover.isOpen=!1)}),Bw({refName:`autofocus`})}getProvider(){return{proposals:this.proposals,autoSelectFirstProposal:!1,selectProposal:e=>{let t=this.props.fields.find(t=>t.string===e.text);t&&this.pickField(t)}}}get proposals(){let e;return e=this.search.input?_O(this.search.input,this.props.fields,e=>e.string===e.name?e.string:e.string+e.name):this.props.fields,e.map(e=>{let t=e.string;return{text:t,fuzzySearchKey:t,htmlContent:uj(this.search.input,t,ae,`o-semi-bold`)}})}get popoverProps(){let{x:e,y:t,width:n,height:r}=this.buttonRef.el.getBoundingClientRect();return{anchorRect:{x:e,y:t,width:n,height:r},positioning:`bottom-left`}}updateSearch(e){this.search.input=e,this.autoComplete.useProvider(this.getProvider())}pickField(e){this.props.onFieldPicked(e.name),this.togglePopover()}togglePopover(){this.popover.isOpen=!this.popover.isOpen,this.search.input=``,this.autoComplete.useProvider(this.getProvider())}onKeyDown(e){switch(e.key){case`Enter`:let t=this.autoComplete.provider?.proposals;t?.length===1&&this.autoComplete.provider?.selectProposal(t[0]);let n=this.autoComplete.selectedProposal;n&&this.autoComplete.provider?.selectProposal(n);break;case`ArrowUp`:case`ArrowDown`:this.autoComplete.moveSelection(e.key===`ArrowDown`?`next`:`previous`);break;case`Escape`:this.popover.isOpen=!1;break;default:break}}},fj=class extends t.Component{static template=`o-spreadsheet-PivotDimension`;static props={dimension:Object,onRemoved:{type:Function,optional:!0},onNameUpdated:{type:Function,optional:!0},slots:{type:Object,optional:!0}};static components={CogWheelMenu:Yw,TextInput:Hw};updateName(e){this.props.onNameUpdated?.(this.props.dimension,e===``||e.startsWith(`=`)?void 0:e)}get dimensionDisplayName(){let e=this.props.dimension.displayName;return rS(e)}},pj=class extends t.Component{static template=`o-spreadsheet-PivotDimensionGranularity`;static props={dimension:Object,onUpdated:Function,availableGranularities:Set,allGranularities:Array};static components={Select:Qh};periods=Nx;get granularityOptions(){let e=this.props.dimension.granularity||`month`;return this.props.allGranularities.filter(t=>this.props.availableGranularities.has(t)||t===e).map(e=>({value:e,label:this.periods[e]}))}},mj=class extends t.Component{static template=`o-spreadsheet-PivotDimensionOrder`;static props={dimension:Object,onUpdated:Function};static components={Select:Qh};get orderSelectOptions(){let e=[{value:`asc`,label:A(`Ascending`)},{value:`desc`,label:A(`Descending`)}];return this.props.dimension.type===`date`?e:[{value:``,label:A(`Unsorted`)},...e]}};function hj(e,t){return{sequence:0,autoSelectFirstProposal:!0,getProposals(n){let r=e.measures.filter(e=>e!==t).map(e=>{let t=Ze(e.id);return{text:t,description:e.displayName,htmlContent:[{value:t,color:pe}],fuzzySearchKey:e.displayName+t+e.fieldName}}),i=e.rows.concat(e.columns).map(e=>{let t=Ze(e.nameWithGranularity);return{text:t,description:e.displayName,htmlContent:[{value:t,color:pe}],fuzzySearchKey:e.displayName+t+e.fieldName}});return r.concat(i)},selectProposal(e,t){let n=e.end;e.type===`SYMBOL`&&(n=e.start);let r=e.end;this.composer.changeComposerCursorSelection(n,r),this.composer.replaceComposerCursorSelection(t.text)}}}var gj=class extends t.Component{static template=`o-spreadsheet-PivotMeasureEditor`;static components={PivotDimension:fj,StandaloneComposer:CO,Select:Qh};static props={definition:Object,measure:Object,onMeasureUpdated:Function,onRemoved:Function,generateMeasureId:Function,aggregators:Object,pivotId:String};getMeasureAutocomplete(){return hj(this.props.definition,this.props.measure)}updateMeasureFormula(e){this.props.onMeasureUpdated({...this.props.measure,computedBy:{sheetId:this.env.model.getters.getActiveSheetId(),formula:e[0]===`=`?e:`=`+e}})}updateAggregator(e){this.props.onMeasureUpdated({...this.props.measure,aggregator:e,id:this.props.generateMeasureId(this.props.measure.fieldName,e)})}updateName(e,t){this.props.measure.computedBy&&t?this.props.onMeasureUpdated({...this.props.measure,userDefinedName:t,id:this.props.generateMeasureId(t,this.props.measure.aggregator),fieldName:t}):this.props.onMeasureUpdated({...this.props.measure,userDefinedName:t})}toggleMeasureVisibility(){this.props.onMeasureUpdated({...this.props.measure,isHidden:!this.props.measure.isHidden})}openShowValuesAs(){this.env.replaceSidePanel(`PivotMeasureDisplayPanel`,`pivot_key_${this.props.pivotId}`,{pivotId:this.props.pivotId,measure:this.props.measure})}getColoredSymbolToken(e){if(e.type!==`SYMBOL`)return;let t=Xe(e.value,`'`);if(this.props.definition.columns.some(e=>e.nameWithGranularity===t)||this.props.definition.rows.some(e=>e.nameWithGranularity===t)||this.props.definition.measures.some(e=>e.id===t&&e.id!==this.props.measure.id))return pe}get isCalculatedMeasureInvalid(){return bl.IsBadExpression(this.props.measure.computedBy?.formula??``)}get aggregatorOptions(){let e=this.props.aggregators[this.props.measure.type],t=Object.keys(e).map(t=>({value:t,label:e[t]}));return this.props.measure.computedBy?[...t,{value:``,label:A(`Compute from totals`)}]:t}getMeasureDescription(e){let t=e.display;if(!t||t.type===`no_calculations`)return``;let n=this.env.model.getters.getPivot(this.props.pivotId),r=[...n.definition.columns,...n.definition.rows].find(e=>e.nameWithGranularity===t.fieldNameWithGranularity),i=r?Kx(r):``,a=t.value?.toString()||``;return _g.descriptions[t.type](i,a)}},_j=class extends t.Component{static template=`o-spreadsheet-PivotSortSection`;static components={Section:Z};static props={definition:Object,pivotId:String};get hasValidSort(){let e=this.env.model.getters.getPivot(this.props.pivotId);return!!this.props.definition.sortedColumn&&Jx(this.props.definition.sortedColumn,e)}get sortDescription(){return A(`Sorted on column (%(ascOrDesc)s):`,{ascOrDesc:this.props.definition.sortedColumn?.order===`asc`?A(`ascending`):A(`descending`)})}get sortValuesAndFields(){let e=this.props.definition.sortedColumn;if(!e)return[];let t=this.env.model.getters.getPivot(this.props.pivotId),n=this.env.model.getters.getLocale(),r=[],i=[];for(let a of e.domain){r.push(a);let{value:e,format:o}=t.getPivotHeaderValueAndFormat(r),s=R(e,{format:o,locale:n}),c=t.definition.getDimension(a.field);i.push({field:Kx(c),value:s})}e.domain.length===0&&i.push({value:A(`Total`)});let a=t.getMeasure(e.measure).displayName;return i.push({value:a,field:A(`Measure`)}),i}},vj=class extends t.Component{static template=`o-spreadsheet-PivotLayoutConfigurator`;static components={AddDimensionButton:dj,PivotDimension:fj,PivotDimensionOrder:mj,PivotDimensionGranularity:pj,PivotMeasureEditor:gj,PivotSortSection:_j,PivotCustomGroupsCollapsible:lj};static props={definition:Object,onDimensionsUpdated:Function,unusedGroupableFields:Array,measureFields:Array,unusedGranularities:Object,dateGranularities:Array,datetimeGranularities:Array,getScrollableContainerEl:{type:Function,optional:!0},pivotId:String};dimensionsRef=(0,t.useRef)(`pivot-dimensions`);dragAndDrop=Fw();AGGREGATORS=Ax;composerFocus;isDateOrDatetimeField=Ix;setup(){this.composerFocus=O(mr)}startDragAndDrop(e,t){if(t.button!==0||t.target.tagName===`SELECT`)return;let n=this.getDimensionElementsRects(),{columns:r,rows:i}=this.props.definition,a=[...r.map(e=>e.nameWithGranularity),`__rows_title__`,...i.map(e=>e.nameWithGranularity)],o=r.concat(i),s=a.map((e,t)=>({id:e,size:n[t+1].height,position:n[t+1].y}));this.dragAndDrop.start(`vertical`,{draggedItemId:e.nameWithGranularity,initialMousePosition:t.clientY,items:s,scrollableContainerEl:this.props.getScrollableContainerEl?.()||this.dimensionsRef.el,onDragEnd:(e,t)=>{let n=a.findIndex(t=>t===e);if(n===t)return;let r=[...a];r.splice(n,1),r.splice(t,0,e);let i=r.slice(0,r.indexOf(`__rows_title__`)),s=r.slice(r.indexOf(`__rows_title__`)+1);this.props.onDimensionsUpdated({columns:i.map(e=>o.find(t=>t.nameWithGranularity===e)).filter(w),rows:s.map(e=>o.find(t=>t.nameWithGranularity===e)).filter(w)})}})}getGranularitiesFor(e){return Ix(e)?e.type===`date`?this.props.dateGranularities:this.props.datetimeGranularities:[]}startDragAndDropMeasures(e,t){if(t.button!==0||t.target.tagName===`SELECT`||t.target.tagName===`INPUT`||this.composerFocus.focusMode!==`inactive`)return;let n=this.getDimensionElementsRects(),{measures:r,columns:i,rows:a}=this.props.definition,o=r.map(e=>e.id),s=3+i.length+a.length,c=o.map((e,t)=>({id:e,size:n[t+s].height,position:n[t+s].y}));this.dragAndDrop.start(`vertical`,{draggedItemId:e.id,initialMousePosition:t.clientY,items:c,scrollableContainerEl:this.props.getScrollableContainerEl?.()||this.dimensionsRef.el,onDragEnd:(e,t)=>{let n=o.findIndex(t=>t===e);if(n===t)return;let i=[...o];i.splice(n,1),i.splice(t,0,e),this.props.onDimensionsUpdated({measures:i.map(e=>r.find(t=>t.id===e)).filter(w)})}})}getDimensionElementsRects(){return Array.from(this.dimensionsRef.el.children).map(e=>{let t=getComputedStyle(e),n=e.getBoundingClientRect();return{x:n.x,y:n.y,width:n.width+parseInt(t.marginLeft||`0`)+parseInt(t.marginRight||`0`),height:n.height+parseInt(t.marginTop||`0`)+parseInt(t.marginBottom||`0`)}})}removeDimension(e){let{columns:t,rows:n}=this.props.definition;this.props.onDimensionsUpdated({columns:t.filter(t=>t.nameWithGranularity!==e.nameWithGranularity),rows:n.filter(t=>t.nameWithGranularity!==e.nameWithGranularity)})}removeMeasureDimension(e){let{measures:t}=this.props.definition;this.props.onDimensionsUpdated({measures:t.filter(t=>t.id!==e.id)})}addColumnDimension(e){let{columns:t}=this.props.definition;this.props.onDimensionsUpdated({columns:t.concat([{fieldName:e,order:`asc`}])})}addRowDimension(e){let{rows:t}=this.props.definition;this.props.onDimensionsUpdated({rows:t.concat([{fieldName:e,order:`asc`}])})}addMeasureDimension(e){let{measures:t}=this.props.definition,n=this.getDefaultMeasureAggregator(e);this.props.onDimensionsUpdated({measures:t.concat([{id:this.getMeasureId(e,n),fieldName:e,aggregator:n}])})}updateMeasure(e,t){let{measures:n}=this.props.definition,r={measures:iS(e,t,n)};this.props.definition.sortedColumn?.measure===e.id&&(r.sortedColumn={...this.props.definition.sortedColumn,measure:t.id}),this.props.onDimensionsUpdated(r)}getMeasureId(e,t){let n=e.replaceAll(`'`,``)+(t?`:${t}`:``),r=n,i=2;for(;this.props.definition.measures.some(e=>e.id===r);)r=`${n}:${i}`,i++;return r}getDefaultMeasureAggregator(e){let t=this.props.measureFields.find(t=>t.name===e);return t?.aggregator?t.aggregator:`count`}addCalculatedMeasure(){let{measures:e}=this.props.definition,t=this.env.model.getters.generateNewCalculatedMeasureName(e);this.props.onDimensionsUpdated({measures:e.concat([{id:this.getMeasureId(t,`sum`),fieldName:t,aggregator:`sum`,computedBy:{sheetId:this.env.model.getters.getActiveSheetId(),formula:`=0`}}])})}getCustomField(e){return this.env.model.getters.getPivotCoreDefinition(this.props.pivotId).customFields?.[e.nameWithGranularity]}updateOrder(e,t){let{rows:n,columns:r}=this.props.definition;this.props.onDimensionsUpdated({rows:n.map(n=>n.nameWithGranularity===e.nameWithGranularity?{...n,order:t||void 0}:n),columns:r.map(n=>n.nameWithGranularity===e.nameWithGranularity?{...n,order:t||void 0}:n)})}updateGranularity(e,t){let{rows:n,columns:r}=this.props.definition;this.props.onDimensionsUpdated({rows:n.map(n=>n.nameWithGranularity===e.nameWithGranularity?{...n,granularity:t}:n),columns:r.map(n=>n.nameWithGranularity===e.nameWithGranularity?{...n,granularity:t}:n)})}getHugeDimensionErrorMessage(e){let t=this.env.model.getters.getPivot(this.props.pivotId).getPossibleFieldValues(e);return t.length>100?A(`This dimension contains a lot of values (%s), and might slow down the pivot table.`,t.length):void 0}},yj=class extends t.Component{static template=`o-spreadsheet-PivotTitleSection`;static components={CogWheelMenu:Yw,Section:Z,TextInput:Hw};static props={pivotId:String,flipAxis:Function};get cogWheelMenuItems(){return[{name:A(`Flip axes`),icon:`o-spreadsheet-Icon.EXCHANGE`,execute:this.props.flipAxis,isEnabledOnLockedSheet:!0},{name:A(`Duplicate`),icon:`o-spreadsheet-Icon.COPY`,execute:()=>this.duplicatePivot(),isEnabledOnLockedSheet:!0},{name:A(`Delete`),icon:`o-spreadsheet-Icon.TRASH`,execute:()=>this.delete(),isEnabledOnLockedSheet:!0}]}get name(){return this.env.model.getters.getPivotName(this.props.pivotId)}get displayName(){return this.env.model.getters.getPivotDisplayName(this.props.pivotId)}duplicatePivot(){let e=G.smallUuid(),t=G.smallUuid(),n=this.env.model.dispatch(`DUPLICATE_PIVOT_IN_NEW_SHEET`,{pivotId:this.props.pivotId,newPivotId:e,newSheetId:t}),r;r=n.isSuccessful?A(`Pivot duplicated.`):n.isCancelledBecause(H.PivotInError)?A(`Cannot duplicate a pivot in error.`):A(`Pivot duplication failed.`);let i=n.isSuccessful?`success`:`danger`;this.env.notifyUser({text:r,sticky:!1,type:i}),n.isSuccessful&&this.env.openSidePanel(`PivotSidePanel`,{pivotId:e})}delete(){this.env.askConfirmation(A(`Are you sure you want to delete this pivot?`),()=>{this.env.model.dispatch(`REMOVE_PIVOT`,{pivotId:this.props.pivotId})})}onNameChanged(e){let t=this.env.model.getters.getPivotCoreDefinition(this.props.pivotId);this.env.model.dispatch(`UPDATE_PIVOT`,{pivotId:this.props.pivotId,pivot:{...t,name:e}})}},bj=class{measures;columns;rows;sortedColumn;collapsedDomains;customFields;constructor(e,t){this.columns=e.columns.map(e=>this.createPivotDimension(t,e)),this.rows=e.rows.map(e=>this.createPivotDimension(t,e)),this.measures=e.measures.map(e=>this.createMeasure(t,e)),this.sortedColumn=e.sortedColumn,this.collapsedDomains=e.collapsedDomains,this.customFields=e.customFields}getDimension(e){let t=this.columns.find(t=>t.nameWithGranularity===e)||this.rows.find(t=>t.nameWithGranularity===e);if(!t)throw new M(A(`Dimension %s does not exist`,e));return t}getMeasure(e){let t=this.measures.find(t=>t.id===e);if(!t)throw new M(A(`Field %s is not a measure`,e));return t}get invalidAggregatorsForCustomField(){return[]}createMeasure(e,t){let n=t.fieldName,r=n===`__count`?{name:`__count`,string:A(`Count`),type:`integer`,aggregator:`sum`}:e[n],i=t.aggregator,a=!!(r||t.computedBy);for(let t of[...this.rows,...this.columns])if(e[t.fieldName]?.isCustomField&&this.invalidAggregatorsForCustomField.includes(i)){a=!1;break}return{id:t.id,get displayName(){return t.userDefinedName??r?.string??t.fieldName},userDefinedName:t.userDefinedName,fieldName:n,aggregator:i,type:n===`__count`?`integer`:r?.type??`integer`,isValid:a,isHidden:t.isHidden,format:t.format,computedBy:t.computedBy,display:t.display}}createPivotDimension(e,t){let n=e[t.fieldName],r=n?.type??`integer`,i=n&&Ix(n)?t.granularity:void 0;return{displayName:n?.string??t.fieldName,nameWithGranularity:t.fieldName+(i?`:${i}`:``),fieldName:t.fieldName,granularity:i,type:n?.isCustomField?`custom`:r,order:t.order,isValid:!!n,isCustomField:!!n?.isCustomField,customGroups:n?.customGroups,parentField:n?.parentField}}},xj=class extends bj{range;constructor(e,t,n){if(super(e,t),e.dataSet){let{sheetId:t,zone:r}=e.dataSet;this.range=n.getRangeFromZone(t,r)}}};function Sj(e,t){let{colDomain:n,rowDomain:r}=wj(e,t);return[...n,...r.slice(0,r.length-1)]}function Cj(e,t){let{colDomain:n,rowDomain:r}=wj(e,t);return[...n.slice(0,n.length-1),...r]}function wj(e,t){let n=e.definition.rows.map(e=>e.nameWithGranularity),r=t.filter(e=>n.includes(e.field)),i=e.definition.columns.map(e=>e.nameWithGranularity);return{colDomain:t.filter(e=>i.includes(e.field)),rowDomain:r}}function Tj(e,t,n){return t===`column`?wj(e,n).colDomain:wj(e,n).rowDomain}function Ej(e,t){return t.find(t=>t.field===e)?.value}function Dj(e,t){for(let n of t)if(e.definition.rows.find(e=>e.nameWithGranularity===n.field)===void 0&&e.definition.columns.find(e=>e.nameWithGranularity===n.field)===void 0)return!1;let{rowDomain:n,colDomain:r}=wj(e,t);return Oj(n,e.getExpandedTableStructure().getRowTree())&&Oj(r,e.getExpandedTableStructure().getColTree())}function Oj(e,t){return kj(e,t)!==void 0}function kj(e,t,n){let r=t;for(let t of e){let e=r.find(e=>e.value===t.value);if(!e)return;if(e.field===n)return r;r=e.children}return r}function Aj(e,t,n){let{rowDomain:r,colDomain:i}=wj(e,n);if(Nj(e,t)===`row`){let e=r.findIndex(e=>e.field===t);if(e===-1)return n;r=r.slice(0,e+1)}else{let e=i.findIndex(e=>e.field===t);if(e===-1)return n;i=i.slice(0,e+1)}return[...r,...i]}function jj(e,t,n){e=x(e);let r=e.find(e=>e.field===t);return r&&(r.value=n),e}function Mj(e,t){return t.some(t=>t.field===e)}function Nj(e,t){if(e.definition.rows.map(e=>e.nameWithGranularity).includes(t))return`row`;if(e.definition.columns.map(e=>e.nameWithGranularity).includes(t))return`column`;throw Error(`Field ${t} not found in pivot`)}function Pj(e,t,n,r){let i=Nj(e,n),a=i===`row`?e.getExpandedTableStructure().getRowTree():e.getExpandedTableStructure().getColTree(),o=kj(Tj(e,i,t),a,n)?.map(e=>e.value)??[],s=Ej(n,t);if(s===void 0)return;let c=o.indexOf(s);if(!(s===void 0||c===-1))return jj(t,n,o[S(c+(r===`(previous)`?-1:1),0,o.length-1)])}function Fj(e){return e?e.map(Ij).join(`, `):``}function Ij(e){return e?`${e.field}=${e.value}`:``}function Lj(e,t){let n=e.findIndex(e=>e.field===t);if(n===-1)return``;let r=e.slice(0,n),i=e.at(-1);return Fj(i.field===t?r:[...r,i])}function Rj(e,t){let n=e.findIndex(e=>e.field===t);return n===-1?``:Fj([...e.slice(0,n),...e.slice(n+1)])}function zj(e,t,n){let r=[...e],i=[...t];r.sort((e,t)=>n([...i,e],[...i,t]));for(let t of e)t.children=zj(t.children,[...i,t],n);return r}function Bj(e,t){return e.length>t.length&&t.every((t,n)=>T(t,e[n]))}var Vj=class{columns;rows;rowFields;measures;fieldsType;maxIndent;pivotCells={};rowTree;colTree;isSorted=!1;constructor(e,t,n,r,i={COL:[],ROW:[]}){this.measures=n,this.fieldsType=r,i.COL.length&&(e=this.removeCollapsedColumns(e,n,i.COL)),this.columns=e.map(e=>{let t=0;return e.map(e=>(e={...e,offset:t},t+=e.width,e))}),this.rows=t.filter(e=>!this.isParentCollapsed(i.ROW,e));let a=Math.max(...t.map(e=>e.fields.length)),o=t.find(e=>e.fields.length===a);this.rowFields=o?[...o.fields]:[],this.maxIndent=Math.max(...this.rows.map(e=>e.indent)),this.rowTree=_t(()=>this.buildRowsTree()),this.colTree=_t(()=>this.buildColumnsTree())}removeCollapsedColumns(e,t,n){let r=(n,r)=>{let i=this.getDomain(n),a=e[r],o=a.findIndex(e=>Bj(this.getDomain(e),i)),s=a.findLastIndex(e=>Bj(this.getDomain(e),i)),c=r===e.length-1,l=t.map(e=>({fields:c?[...n.fields,`measure`]:[],values:c?[...n.values,e]:[],width:1,offset:0,collapsedHeader:!c}));a.splice(o,s-o+1,...l)};return e.map((i,a)=>{for(let o of i){if(a>=e.length-2)return i;let s=this.getDomain(o);if(n.some(e=>T(s,e))){o.width=t.length;for(let t=a+1;t<e.length;t++)r(o,t)}}return i})}isParentCollapsed(e,t){let n=this.getDomain(t);return e.some(e=>Bj(n,e))}getNumberOfDataColumns(){return this.columns.at(-1)?.length||0}getSkippedRows(e){let t=new Set,n=this.getColHeadersHeight();if(!e.displayColumnHeaders)for(let e=0;e<n-1;e++)t.add(e);if(e.displayMeasuresRow||t.add(n-1),e.tabularForm)for(let e=0;e<this.rows.length;e++){let r=this.rows[e].indent;r!==0&&r!==this.maxIndent&&t.add(e+n)}return t}getPivotCells(e=Ex){let t=JSON.stringify(e);if(!this.pivotCells[t]){let{displayTotals:n}=e,r=this.rows.length,i=this.getNumberOfDataColumns(),a=r+this.getColHeadersHeight(),o=i+this.getRowHeadersWidth(e);!n&&r!==1&&--a,!n&&i!==this.measures.length&&(o-=this.measures.length);let s=[],c=this.getSkippedRows(e);for(let t=0;t<o;t++){s.push([]);for(let n=0;n<a;n++){if(c.has(n))continue;let r=this.getPivotCell(t,n,e);s[t].push(r)}}this.pivotCells[t]=s}return this.pivotCells[t]}getRowTree(){return this.rowTree()}getColTree(){return this.colTree()}isTotalRow(e){return this.rows[e].indent!==this.maxIndent}getPivotCell(e,t,n){let r=this.getColHeadersHeight(),i=this.getRowHeadersWidth(n),a=n.tabularForm,o=t<r-1&&e>=i,s=t===r-1&&e>=i,c=t>r-1&&e<i,l=t>r-1&&e>=i,u=a&&t===r-1&&e<i;if(a&&c){let n=t-r,i=this.getDomain(this.rows[n]).slice(0,e+1);return i.length===0&&e!==0?Hj:{type:`HEADER`,domain:i,dimension:`ROW`}}else if(a&&u)return{type:`ROW_GROUP_NAME`,rowField:this.rowFields[e]};else if(s){let n=e-i,r=this.getColHeaderDomain(n,t);if(!r)return Hj;let a=r.at(-1)?.value?.toString()||``;return{type:`MEASURE_HEADER`,domain:r.slice(0,-1),measure:a}}else if(o){let n=e-i,r=this.getColHeaderDomain(n,t);return r?{type:`HEADER`,domain:r,dimension:`COL`}:Hj}else if(c){let e=t-r;return{type:`HEADER`,domain:this.getDomain(this.rows[e]),dimension:`ROW`}}else if(l){let a=t-r,o=e-i;return!n.displayTotals&&this.isTotalRow(a)?Hj:{type:`VALUE`,domain:[...this.getDomain(this.rows[a]),...this.getColDomain(o)],measure:this.getColMeasure(o)}}return Hj}getColHeaderDomain(e,t){let n=this.columns[t].find(t=>t.offset===e);if(!(!n||n.collapsedHeader))return this.getDomain(n)}getDomain(e){return e.fields.map((t,n)=>{if(t===`measure`)return{type:`char`,field:t,value:Bx({displayName:`measure`,type:`char`},e.values[n])};{let{fieldName:r,granularity:i}=Fx(t),a=this.fieldsType[r]||`char`;return{type:a,field:t,value:Bx({displayName:r,type:a,granularity:i},e.values[n])}}})}getColDomain(e){let t=this.getColHeaderDomain(e,this.getColHeadersHeight()-1);return t?t.slice(0,-1):[]}getColMeasure(e){let t=this.getColHeaderDomain(e,this.getColHeadersHeight()-1)?.at(-1)?.value;if(t==null)throw Error(`Measure is missing`);return t.toString()}getRowHeadersWidth(e){return e.tabularForm?this.rowFields.length:1}getColHeadersHeight(){return this.columns.length}buildRowsTree(){let e=[],t=0,n={};n[0]=e;for(let r of this.rows){if(r.fields.length===0||r.values.length===0)return e;let i=r.fields.length-1,a=r.fields[i],{fieldName:o,granularity:s}=Fx(a),c=Bx({displayName:o,type:this.fieldsType[o]??`char`,granularity:s},r.values[i]);if(i>t){t=i,n[t]=[];let e=n[t-1].at(-1);e&&(e.children=n[t])}t=i;let l={value:c,field:r.fields[i],children:[],type:this.fieldsType[o]||`char`,width:0};n[t].push(l)}return e}buildColumnsTree(){let e=[],t=this.columns.at(-2)||[],n={};n[0]=e;for(let e of t)for(let t=0;t<e.fields.length;t++){let r=e.fields[t],{fieldName:i,granularity:a}=Fx(r),o=Bx({displayName:i,type:this.fieldsType[i]??`char`,granularity:a},e.values[t]),s={value:o,field:e.fields[t],children:[],width:e.width,type:this.fieldsType[i]||`char`};n[t]?.at(-1)?.value!==o&&(n[t+1]=[],s.children=n[t+1],n[t].push(s))}return e}export(){return{cols:this.columns,rows:this.rows,measures:this.measures,fieldsType:this.fieldsType}}sort(e,t,n){if(this.isSorted)return;let r=(e,t)=>{let r=n(e,t).value;return typeof r==`number`?r:-1/0},i=t.domain,a=zj(this.rowTree(),[],(n,a)=>{let o=r(e,[...n,...i]),s=r(e,[...a,...i]);return t.order===`asc`?o-s:s-o});this.rowTree=_t(a),this.rows=[...this.rowTreeToRows(a),this.rows[this.rows.length-1]],this.isSorted=!0}rowTreeToRows(e,t){return e.flatMap(e=>{let n={indent:t?t.indent+1:1,fields:[...t?.fields||[],e.field],values:[...t?.values||[],e.value]};return[n,...this.rowTreeToRows(e.children,n)]})}get numberOfCells(){return this.rows.length*this.getNumberOfDataColumns()}getColumnDomainsAtDepth(e){return e<0||e>=this.getColHeadersHeight()-1?[]:this.columns[e].map(e=>this.getDomain(e)).filter(e=>e.length)}getRowDomainsAtDepth(e){return e<0||e>this.maxIndent?[]:this.rows.filter(t=>t.indent===e+1).map(e=>this.getDomain(e))}getPivotTableDimensions(e){let t=this.getPivotCells(e),n=0;return e.displayColumnHeaders&&(n=this.getColHeadersHeight()-1),e.displayMeasuresRow&&n++,{numberOfCols:Math.min(this.getRowHeadersWidth(e)+e.numberOfColumns,t.length),numberOfRows:Math.min(n+e.numberOfRows,t[0].length),numberOfHeaderRows:n}}getNumberOfRowGroupBys(){return Math.max(...this.rows.map(e=>e.fields.length))}};let Hj={type:`EMPTY`};function Uj(e,t,n){let r=t.measures.filter(e=>!e.isHidden).map(e=>e.id),i=Gj(e,t.columns,0);Kj(i,r.length);let a=qj(i,t),o=Wj(e,0,t.rows,[],[]);o.push({fields:[],values:[],indent:0});let s={};for(let e of t.columns)s[e.fieldName]=e.type;for(let e of t.rows)s[e.fieldName]=e.type;return new Vj(a,o,r,s,n===`collapsed`?t.collapsedDomains:void 0)}function Wj(e,t,n,r,i){if(t>=n.length)return[];let a=n[t],o=a.nameWithGranularity,s=Jj(e,a),c=Xj(s,a),l=[],u=r.concat(o);for(let e of c){let r=i.concat(e);l.push({fields:u,values:r,indent:t+1});let a=s[e];a&&l.push(...Wj(a,t+1,n,u,r))}return l}function Gj(e,t,n){if(n>=t.length)return[];let r=t[n],i=t[n].nameWithGranularity,a=Jj(e,r);return Xj(a,t[n]).map(e=>({value:a[e]?.[0]?.[r.nameWithGranularity]?.value??null,field:i,children:Gj(a[e]||[],t,n+1),type:r.type,width:0}))}function Kj(e,t){for(let n in e){let r=e[n];r.children.length===0?r.width=t:(Kj(r.children,t),r.width=r.children.reduce((e,t)=>e+t.width,0))}}function qj(e,t){let n=t.columns.map(e=>e.nameWithGranularity),r=n.length,i=t.measures.filter(e=>!e.isHidden),a=i.length,o=Array(r).fill(0).map(()=>[]);function s(e,t,i){let a=o[t];for(let o of e){let e=i.concat([o.value]),c={fields:n.slice(0,t+1),values:e,width:o.width,offset:0};a.push(c),t<=r-1&&s(o.children,t+1,e)}}s(e,0,[]);let c=n.length>0,l=[];return c&&o[o.length-1].forEach(e=>{i.forEach(t=>{let n={fields:[...e.fields,`measure`],values:[...e.values,t.id],width:1,offset:0};l.push(n)})}),i.forEach(e=>{let t={fields:[`measure`],values:[e.id],width:1,offset:0};l.push(t)}),o.push(l),o.length===1&&o.unshift([]),o[o.length-2].push({fields:[],values:[],width:a,offset:0}),o}function Jj(e,t){return Object.groupBy(e,Yj(t))}function Yj(e){let t=e.nameWithGranularity;return e=>`${e[t]?.value??null}`}function Xj(e,t){let n=t.order,r=t.customGroups?.find(e=>e.isOtherGroup);return!n&&!r?Object.keys(e):Object.keys(e).sort((e,i)=>r&&e===r.name?1:r&&i===r.name?-1:n?Zj(t,e,i):0)}function Zj(e,t,n){return t===`null`?e.order===`asc`?1:-1:n===`null`?e.order===`asc`?-1:1:e.type===`integer`||e.type===`datetime`?e.order===`asc`?N(t,L)-N(n,L):N(n,L)-N(t,L):e.order===`asc`?t.localeCompare(n):n.localeCompare(t)}var Qj=function(e){return e[e.NONE=0]=`NONE`,e[e.TABLE=1]=`TABLE`,e[e.DATA=2]=`DATA`,e[e.DEFINITION=3]=`DEFINITION`,e[e.ALL=4]=`ALL`,e}(Qj||{}),$j=class{type=`SPREADSHEET`;getters;_definition;coreDefinition;metaData={fields:{},fieldKeys:[]};dataEntries=[];collapsedTable;expandedTable;invalidRangeError;needsReevaluation=!0;constructor(e,t){this.getters=t.getters,this.coreDefinition=t.definition}init(e={}){(!this._definition||e.reload)&&(this.reload(Qj.ALL),this.needsReevaluation=!1)}reload(e){e===Qj.ALL&&(this.metaData=this.loadMetaData()),e>=Qj.DEFINITION&&(this._definition=this.loadRuntimeDefinition()),e>=Qj.DATA&&(this.dataEntries=this.loadData()),e>=Qj.TABLE&&(this.collapsedTable=void 0,this.expandedTable=void 0)}onDefinitionChange(e){let t=this.coreDefinition;if(this.coreDefinition=e,this._definition){let n=Math.max(this.computeShouldReload(t,e),Qj.NONE);this.reload(n)}}computeShouldReload(e,t){return T(e.dataSet,t.dataSet)?Qj.DEFINITION:Qj.ALL}get isInvalidRange(){return!!this.invalidRangeError}get invalidRangeMessage(){return this.invalidRangeError?.message}get definition(){if(this._definition||this.init(),!this._definition)throw Error(`Pivot definition should be defined at this point.`);return this._definition}isValid(){if(this.invalidRangeError||!this.definition)return!1;for(let e of this.definition.measures)if(!e.isValid)return!1;for(let e of this.definition.columns)if(!e.isValid)return!1;for(let e of this.definition.rows)if(!e.isValid)return!1;return!0}assertIsValid({throwOnError:e}){if(!this.isValid()){if(e)throw this.invalidRangeError?this.invalidRangeError:new M(A(`At least one measure and/or dimension is not correct.`));return{value:j.GenericError,message:this.invalidRangeError?.message??A(`At least one measure and/or dimension is not correct.`)}}}areDomainArgsFieldsValid(e){let t=e.filter((e,t)=>t%2==0).map(P);return t.length&&t.at(-1)===`measure`&&(t=t.slice(0,-1)),Rx(t,this.definition)}parseArgsToPivotDomain(e){let t=[];for(let n=0;n<e.length-1;n+=2){let r=P(e[n]),i=this.getTypeOfDimension(r),a=r===`measure`?P(e[n+1]):Bx(this.getDimension(r),e[n+1]);t.push({field:r,value:a,type:i})}return t}markAsDirtyForEvaluation(){this.needsReevaluation=!0}getMeasure(e){return this.definition.getMeasure(e)}getPivotMeasureValue(e){return{value:this.getMeasure(e).displayName}}getPivotHeaderValueAndFormat(e){let t=e.at(-1);if(!t)return{value:A(`Total`)};let n=this.getDimension(t.field),r=this.filterDataEntriesFromDomain(this.dataEntries,e)[0]?.[n.nameWithGranularity];return n.type===`datetime`?px(n.granularity||`month`).toValueAndFormat(t.value,this.getters.getLocale()):r?r.value===null?{value:A(`(Undefined)`)}:r:{value:``}}getPivotCellValueAndFormat(e,t){let n=this.filterDataEntriesFromDomain(this.dataEntries,t);if(n.length===0)return{value:``};let r=this.getMeasure(e),i=n.map(e=>e[r.fieldName]).filter(w),a=i.filter(e=>e.type!==V.empty),o=r.aggregator,s=jx[o];if(!s)throw Error(`Aggregator ${o} does not exist`);try{let e=s([i],this.getters.getLocale());return a.length===0?{...e,value:``}:e}catch(e){return ds(e,o.toUpperCase())}}getPossibleFieldValues(e){let t=[],n=Jj(this.dataEntries,e),r=Xj(n,e);for(let i of r)t.push({value:n[i]?.[0]?.[e.nameWithGranularity]?.value??``,label:n[i]?.[0]?.[e.nameWithGranularity]?.formattedValue||``});return t}getCollapsedTableStructure(){if(!this.isValid())throw Error(`Pivot is not valid !`);return this.coreDefinition.style?.tabularForm?this.getExpandedTableStructure():(this.collapsedTable||=Uj(this.dataEntries,this.definition,`collapsed`),this.collapsedTable)}getExpandedTableStructure(){if(!this.isValid())throw Error(`Pivot is not valid !`);return this.expandedTable||=Uj(this.dataEntries,this.definition,`expanded`),this.expandedTable}getFields(){return this.metaData.fields}get fields(){return this.getFields()}loadMetaData(){if(this.invalidRangeError=void 0,this.coreDefinition.dataSet){let{zone:e,sheetId:t}=this.coreDefinition.dataSet,n=this.getters.getRangeFromZone(t,e);try{let e=this.extractFieldsFromRange(n),t=Zx(this.coreDefinition,e.fields);return{...e,fields:{...e.fields,...t}}}catch(e){return this.invalidRangeError=e,{fields:{},fieldKeys:[]}}}else return this.invalidRangeError=new M(A(`The pivot cannot be created because the dataset is missing.`)),{fields:{},fieldKeys:[]}}loadRuntimeDefinition(){return new xj(this.coreDefinition,this.fields,this.getters)}loadData(){let e=this._definition?.range;return this.isValid()&&e?this.extractDataEntriesFromRange(e):[]}getTypeOfDimension(e){if(e===`measure`)return`char`;let{fieldName:t}=Fx(e),n=this.fields[t]?.type;if(!n)throw Error(`Field ${t} does not exist`);return n}filterDataEntriesFromDomain(e,t){return t.reduce((e,t)=>this.filterDataEntriesFromDomainNode(e,t),e)}filterDataEntriesFromDomainNode(e,t){let{field:n,value:r,type:i}=t,{nameWithGranularity:a}=this.getDimension(n);return e.filter(e=>{let t=e[a]?.value;return i===`char`?String(t)===String(r):t===r})}getDimension(e){return this.definition.getDimension(e)}getTypeFromZone(e,t){let n=this.getters.getEvaluatedCellsInZone(e,t).filter(e=>!(e.type===V.empty||e.value===``));return n.length===0?`integer`:n.every(e=>e.type===V.number&&e.format&&To(e.format))?`datetime`:n.every(e=>e.type===V.boolean)?`boolean`:n.every(e=>e.type===V.number)?`integer`:`char`}assertCellIsValidField(e,t,n){if(n.type===V.error)throw new M(A(`The pivot cannot be created because cell %s contains an error`,E(e,t)));if(n.type===V.empty||n.value===``)throw new M(A(`The pivot cannot be created because cell %s is empty`,E(e,t)));if(n.value===`__count`)throw new M(A(`The pivot cannot be created because cell %s contains a reserved value`,E(e,t)))}extractFieldsFromRange(e){let t={},n=[],r=e.sheetId,i=e.zone.top;for(let a=e.zone.left;a<=e.zone.right;a++){let o=this.getters.getEvaluatedCell({sheetId:r,col:a,row:i});this.assertCellIsValidField(a,i,o);let s=o.value?.toString();if(s){let i=this.getTypeFromZone(r,{top:e.zone.top+1,left:a,bottom:e.zone.bottom,right:a}),o=Xx(s,t);t[o]={name:o,type:i,string:o,aggregator:i===`integer`?`sum`:`count`},n.push(o)}}return{fields:t,fieldKeys:n}}extractDataEntriesFromRange(e){let t=[];for(let n=e.zone.top+1;n<=e.zone.bottom;n++){let r={top:n,bottom:n,left:e.zone.left,right:e.zone.right},i=this.getters.getEvaluatedCellsInZone(e.sheetId,r),a={};for(let e in i){let t=i[e],n=this.fields[this.metaData.fieldKeys[e]];if(!n)throw Error(`Field ${this.metaData.fieldKeys[e]} does not exist`);t.value===``?a[n.name]={value:null,type:V.empty,formattedValue:``}:a[n.name]=t}for(let e in this.definition.customFields||{}){let t=this.definition.customFields?.[e];if(!t)continue;let n=a[t.parentField],r=this.fields[t.parentField];if(!n||!r){a[e]={value:null,type:V.empty,formattedValue:``};continue}let i=t.groups.find(e=>e.values.some(e=>e===n?.value))||t.groups.find(e=>e.isOtherGroup);a[e]={...n,value:i?i.name:n.value}}a.__count={value:1,type:V.number,formattedValue:`1`},t.push(a)}let n=this.definition.columns.concat(this.definition.rows).filter(e=>e.type===`datetime`);if(n.length){let e=this.getters.getLocale();for(let r of t)for(let t of n){let n=zT(t,r[t.fieldName]?.value||null,this.getters.getLocale()),{format:i,value:a}=px(t.granularity||`month`).toValueAndFormat(n,e);r[t.nameWithGranularity]={value:n,type:r[t.fieldName]?.type||V.empty,format:r[t.fieldName]?.format,formattedValue:R(a,{locale:e,format:i})}}}return t}};let eM=new hr,tM=[`year`,`quarter_number`,`month_number`,`month`,`iso_week_number`,`day_of_month`,`day`,`day_of_week`],nM=[...tM,`hour_number`,`minute_number`,`second_number`];eM.add(`SPREADSHEET`,{ui:$j,definition:xj,dateGranularities:[...tM],isMeasureCandidate:e=>e.type!==`boolean`,datetimeGranularities:[...nM],isGroupable:()=>!0,canHaveCustomGroup:e=>e.type===`char`&&!e.isCustomField,isPivotUnused:()=>!0,adaptRanges:(e,t,n)=>{if(t.type!==`SPREADSHEET`||!t.dataSet)return t;let{sheetId:r,zone:i}=t.dataSet,a=e.getRangeFromZone(r,i),o=rM(a,n);if(o===a)return t;let s=o&&{sheetId:o.sheetId,zone:o.zone};return{...t,dataSet:s}}});function rM(e,t){if(!e)return;let n=t(e);switch(n.changeType){case`REMOVE`:return;default:return n.range}}let iM=[`PIVOT.VALUE`,`PIVOT.HEADER`,`PIVOT`];function aM(e,t){return e.getFunctionsFromTokens(iM,t)[0]}function oM(e,t){return e.getFunctionsFromTokens(iM,t).length}function sM(e,t){let n=`"${t?`${e.name}:${t}`:e.name}"`,r=e.string===e.name?n:e.string+n;return{text:n,description:e.string+(e.help?` (${e.help})`:``),htmlContent:[{value:n,color:Ve.STRING}],fuzzySearchKey:r}}function cM(e){let t=`"${e.id}"`,n=e.displayName+e.fieldName+t;return{text:t,description:e.displayName,htmlContent:[{value:t,color:Ve.STRING}],fuzzySearchKey:n}}function lM(e,t){let n=e.end,r=e.end;e.type!==`ARG_SEPARATOR`&&(n=e.start),this.composer.changeComposerCursorSelection(n,r),this.composer.replaceComposerCursorSelection(t.text)}function uM(e,t){let n=e.end,r=e.end;e.type!==`LEFT_PAREN`&&(n=e.start),this.composer.changeComposerCursorSelection(n,r),this.composer.replaceComposerCursorSelection(t.text)}function dM(e){let t=e.functionContext?.args[0];if(!(!t||![`STRING`,`NUMBER`].includes(t.type)))return t.value}var fM=class extends fr{mutators=[`reset`,`deferUpdates`,`applyUpdate`,`discardPendingUpdate`,`update`];_updatesAreDeferred;draft=null;notification=this.get(yO);alreadyNotified=!1;alreadyNotifiedForPivotSize=!1;constructor(e,t,n=`canDefer`){super(e),this.pivotId=t,this.updateMode=n,this._updatesAreDeferred=this.getters.getPivotCoreDefinition(this.pivotId).deferUpdates??!1}handle(e){switch(e.type){case`UPDATE_PIVOT`:e.pivotId===this.pivotId&&this.getters.getPivot(this.pivotId).init()}}get updatesAreDeferred(){return this.updateMode===`neverDefer`?!1:this._updatesAreDeferred}get fields(){return this.pivot.getFields()}get pivot(){return this.getters.getPivot(this.pivotId)}get definition(){let e=eM.get(this.pivot.type).definition;return this.draft?new e(this.draft,this.fields,this.getters):this.pivot.definition}get isDirty(){return!!this.draft}get measureFields(){let e=[{name:`__count`,string:A(`Count`),type:`integer`,aggregator:`sum`}],t=this.fields;for(let n in t){let r=t[n];r&&eM.get(this.pivot.type).isMeasureCandidate(r)&&e.push(r)}return e.sort((e,t)=>e.string.localeCompare(t.string))}get unusedGroupableFields(){let e=[],t=this.fields;for(let n in t){let r=t[n];r&&eM.get(this.pivot.type).isGroupable(r)&&e.push(r)}let{columns:n,rows:r,measures:i}=this.definition,a=i.concat(r).concat(n).map(e=>e.fieldName),o=this.unusedGranularities;return e.filter(e=>Ix(e)?!a.includes(e.name)||o[e.name].size>0:!a.includes(e.name)).sort((e,t)=>e.string.localeCompare(t.string))}get datetimeGranularities(){return eM.get(this.pivot.type).datetimeGranularities}get dateGranularities(){return eM.get(this.pivot.type).dateGranularities}get unusedGranularities(){return this.getUnusedGranularities(this.fields,this.draft??this.getters.getPivotCoreDefinition(this.pivotId))}reset(e){this.pivotId=e,this._updatesAreDeferred=!0,this.draft=null}deferUpdates(e){e===!1&&this.draft?(this.draft.deferUpdates=!1,this.applyUpdate()):this.update({deferUpdates:e}),this._updatesAreDeferred=e}applyUpdate(){if(this.draft){if(this.model.dispatch(`UPDATE_PIVOT`,{pivotId:this.pivotId,pivot:this.draft}),this.draft=null,!this.alreadyNotified&&this.isUpdatedPivotVisibleInViewportOnlyAsStaticPivot()){let e=`=PIVOT(${this.getters.getPivotFormulaId(this.pivotId)})`;this.alreadyNotified=!0,this.notification.notifyUser({type:`info`,text:A(`Pivot updates only work with dynamic pivot tables. Use the formula '%s' or re-insert the static pivot from the Data menu.`,e),sticky:!0})}let e=this.getters.getPivot(this.pivotId),t=e.isValid()?e.getExpandedTableStructure().numberOfCells:0;!this.alreadyNotifiedForPivotSize&&t>5e5&&(this.alreadyNotifiedForPivotSize=!0,this.notification.notifyUser({type:`warning`,text:vg(t,this.getters.getLocale()),sticky:!0}))}}discardPendingUpdate(){this.draft=null}update(e){let t=this.getters.getPivotCoreDefinition(this.pivotId),n={...t,...this.draft,...e},r={...n,columns:n.columns.map(e=>({fieldName:e.fieldName,order:e.order,granularity:e.granularity})),rows:n.rows.map(e=>({fieldName:e.fieldName,order:e.order,granularity:e.granularity})),measures:n.measures.map(e=>({id:e.id,fieldName:e.fieldName,aggregator:e.aggregator,userDefinedName:e.userDefinedName,computedBy:e.computedBy,isHidden:e.isHidden,format:e.format,display:e.display})),sortedColumn:this.shouldKeepSortedColumn(n)?n.sortedColumn:void 0};if(r.collapsedDomains){let{COL:e,ROW:t}=r.collapsedDomains;r.collapsedDomains={COL:e.filter(e=>this.areDomainFieldsValid(e,r.columns)),ROW:t.filter(e=>this.areDomainFieldsValid(e,r.rows))}}!this.draft&&T(t,r)||(this.draft=this.addDefaultDateTimeGranularity(this.fields,r),this.updatesAreDeferred||this.applyUpdate())}isUpdatedPivotVisibleInViewportOnlyAsStaticPivot(){let e=0,t=this.getters.getPivotFormulaId(this.pivotId);for(let n of this.getters.getVisibleCellPositions()){let r=this.getters.getCell(n);if(r?.isFormula){let n=aM(r.compiledFormula,this.getters),i=n?.args[0]?.value;if(n&&t===i.toString()){if(n.functionName===`PIVOT`)return!1;e++}}}return e>0}addDefaultDateTimeGranularity(e,t){let{columns:n,rows:r}=t,i=x(n),a=x(r),o=this.getUnusedGranularities(e,t);for(let t of i.concat(a)){let n=e[t.fieldName]?.type;if((n===`date`||n===`datetime`)&&!t.granularity){let e=o[t.fieldName]?.values().next().value;o[t.fieldName]?.delete(e),t.granularity=e}}return{...t,columns:i,rows:a}}getUnusedGranularities(e,t){let{columns:n,rows:r,measures:i}=t,a=n.concat(r).concat(i).filter(t=>{let n=e[t.fieldName]?.type;return n===`date`||n===`datetime`}),o={};for(let t of a)o[t.fieldName]=new Set(e[t.fieldName]?.type===`date`?this.dateGranularities:this.datetimeGranularities);for(let e of a)o[e.fieldName].delete(e.granularity);return o}shouldKeepSortedColumn(e){let{sortedColumn:t}=e;if(!t)return!0;let n=this.getters.getPivotCoreDefinition(this.pivotId);return e.measures.find(e=>e.id===t.measure)&&T(n.columns,e.columns)}areDomainFieldsValid(e,t){let n=t.map(({fieldName:e,granularity:t})=>e+(t?`:${t}`:``));for(let t=0;t<e.length;t++)if(e[t].field!==n[t])return!1;return!0}},pM=class extends t.Component{static template=`o-spreadsheet-PivotSpreadsheetSidePanel`;static props={pivotId:String,onCloseSidePanel:Function};static components={PivotLayoutConfigurator:vj,Section:Z,SelectionInput:lT,Checkbox:Qw,PivotDeferUpdate:cj,PivotTitleSection:yj};store;state;pivotSidePanelRef=(0,t.useRef)(`pivotSidePanel`);setup(){this.store=wr(fM,this.props.pivotId),this.state=(0,t.useState)({range:void 0,rangeHasChanged:!1})}get shouldDisplayInvalidRangeError(){return this.store.isDirty&&this.state.rangeHasChanged?!1:this.pivot.isInvalidRange}get ranges(){return this.state.range?[this.state.range]:this.definition.range?[this.env.model.getters.getRangeString(this.definition.range,`forceSheetReference`)]:[]}get pivot(){return this.store.pivot}get definition(){return this.store.definition}getScrollableContainerEl(){return this.pivotSidePanelRef.el}onSelectionChanged(e){this.state.rangeHasChanged=!0,this.state.range=e[0]}onSelectionConfirmed(){if(this.state.range){let e=this.env.model.getters.getRangeFromSheetXC(this.env.model.getters.getActiveSheetId(),this.state.range);if(e.invalidSheetName||e.invalidXc)return;let t={sheetId:e.sheetId,zone:e.zone};this.store.update({dataSet:t}),this.store.applyUpdate()}}flipAxis(){let{rows:e,columns:t}=this.definition;this.onDimensionsUpdated({rows:t,columns:e})}onDimensionsUpdated(e){this.store.update(e)}};let mM=new B;mM.add(`SPREADSHEET`,{editor:pM});let hM=e=>({category:`light`,templateName:`pivotLightWithLightBorders`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0},border:{horizontal:{color:e.light,style:`thin`}}},headerRow:{style:{bold:!0},border:{top:{color:e.highlight,style:`thin`},bottom:{color:e.highlight,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0}},firstAlternatingSubHeaderRow:{style:{bold:!0,textColor:e.highlight}},totalRow:{border:{top:{color:e.highlight,style:`thin`},bottom:{color:e.highlight,style:`thin`}},style:{bold:!0,fillColor:`#FFFFFF`}},firstRowStripe:{style:{fillColor:e.light},border:{bottom:{color:e.medium,style:`thin`},top:{color:e.medium,style:`thin`},vertical:{color:e.medium,style:`thin`}}},secondColumnStripe:{style:{fillColor:e.light},border:{left:{color:e.medium,style:`thin`},right:{color:e.medium,style:`thin`},horizontal:{color:e.medium,style:`thin`}}}}),gM=e=>({category:`light`,templateName:`pivotLightWithMediumBorders`,primaryColor:e.highlight,wholeTable:{style:{textColor:e.coloredText,hideGridLines:!0},border:{horizontal:{color:e.light,style:`thin`}}},firstColumn:{border:{right:{color:e.highlight,style:`thin`}}},headerRow:{style:{bold:!0,textColor:`#000000`},border:{top:{color:e.highlight,style:`medium`},bottom:{color:e.highlight,style:`medium`},left:{color:e.highlight,style:`medium`},right:{color:e.highlight,style:`medium`}}},measureHeader:{border:{top:{color:e.light,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0,textColor:`#000000`,fillColor:e.light}},firstAlternatingSubHeaderRow:{style:{bold:!0,textColor:`#000000`}},totalRow:{border:{top:{color:e.highlight,style:`medium`},bottom:{color:e.highlight,style:`medium`},left:{color:e.highlight,style:`medium`},right:{color:e.highlight,style:`medium`}},style:{bold:!0,textColor:`#000000`}},firstRowStripe:{border:{bottom:{color:e.highlight,style:`thin`},top:{color:e.highlight,style:`thin`}}},secondRowStripe:{border:{bottom:{color:e.highlight,style:`thin`}}},firstColumnStripe:{border:{left:{color:e.highlight,style:`thin`},right:{color:e.highlight,style:`thin`}}},secondColumnStripe:{border:{left:{color:e.highlight,style:`thin`},right:{color:e.highlight,style:`thin`}}}}),_M=e=>({category:`light`,templateName:`PivotLightWithGrayBands`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0}},headerRow:{style:{bold:!0,fillColor:e.light},border:{horizontal:{color:e.light,style:`thin`},vertical:{color:e.light,style:`thin`},bottom:{color:e.mediumBorder,style:`thin`}}},measureHeader:{border:{top:{color:`#FFFFFF`,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0},border:{bottom:{color:e.mediumBorder,style:`thin`}}},firstAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{border:{top:{color:e.mediumBorder,style:`medium`}},style:{bold:!0,fillColor:e.light}},firstRowStripe:{style:{fillColor:K.black.light}},secondColumnStripe:{style:{fillColor:K.black.light},border:{left:{color:K.black.medium,style:`thin`},right:{color:K.black.medium,style:`thin`}}}}),vM=e=>({category:`light`,templateName:`pivotLightWithColoredText`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,textColor:e.coloredText},border:{vertical:{color:e.mediumBorder,style:`thin`},top:{color:e.mediumBorder,style:`thin`},bottom:{color:e.mediumBorder,style:`thin`},left:{color:e.mediumBorder,style:`thin`},right:{color:e.mediumBorder,style:`thin`}}},headerRow:{border:{bottom:{color:e.mediumBorder,style:`thin`},vertical:{color:e.mediumBorder,style:`thin`}}},totalRow:{border:{top:{color:e.mediumBorder,style:`thin`}}},firstRowStripe:{style:{fillColor:e.light},border:{top:{color:K.black.medium,style:`thin`},bottom:{color:K.black.medium,style:`thin`}}},secondColumnStripe:{style:{fillColor:e.light}}}),yM=e=>({category:`medium`,templateName:`pivotMediumHeavyColors`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0},border:{horizontal:{color:e.light,style:`thin`}}},headerRow:{style:{fillColor:e.highlight,textColor:`#FFFFFF`}},measureHeader:{border:{top:{color:e.light,style:`thin`}}},mainSubHeaderRow:{style:{fillColor:e.mediumBorder,textColor:`#FFFFFF`}},firstAlternatingSubHeaderRow:{style:{fillColor:e.light},border:{bottom:{color:e.highlight,style:`thin`}}},totalRow:{border:{top:{color:e.highlight,style:`medium`}},style:{bold:!0}},firstRowStripe:{border:{bottom:{color:e.highlight,style:`thin`},top:{color:e.highlight,style:`thin`}}},firstColumnStripe:{border:{left:{color:e.highlight,style:`thin`},right:{color:e.highlight,style:`thin`}}}}),bM=e=>({category:`medium`,templateName:`pivotMediumLightColors`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0},border:{top:{color:e.dark,style:`medium`},bottom:{color:e.dark,style:`medium`}}},headerRow:{style:{fillColor:e.highlight,textColor:`#FFFFFF`,bold:!0}},measureHeader:{border:{top:{color:e.mediumBorder,style:`thin`}}},mainSubHeaderRow:{style:{fillColor:e.light,bold:!0}},firstAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{border:{top:{color:e.dark,style:`thin`}},style:{bold:!0}},firstRowStripe:{border:{bottom:{color:e.mediumBorder,style:`thin`},top:{color:e.mediumBorder,style:`thin`}}},firstColumnStripe:{border:{left:{color:e.mediumBorder,style:`thin`},right:{color:e.mediumBorder,style:`thin`}}}}),xM=e=>({category:`medium`,templateName:`pivotMediumBlackHeaders`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,fillColor:e.light},border:{vertical:{color:e.mediumBorder,style:`thin`}}},headerRow:{style:{fillColor:`#000000`,textColor:`#FFFFFF`}},measureHeader:{border:{top:{color:`#FFFFFF`,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0}},firstAlternatingSubHeaderRow:{style:{bold:!0,textColor:`#808080`}},secondAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{style:{fillColor:`#000000`,textColor:`#FFFFFF`},border:{vertical:null}},firstRowStripe:{border:{bottom:{color:e.mediumBorder,style:`thin`},top:{color:e.mediumBorder,style:`thin`}}}}),SM=e=>({category:`medium`,templateName:`pivotMediumBlackHeaders`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,fillColor:e.light,textColor:e.coloredText},border:{vertical:{color:`#FFFFFF`,style:`thin`}}},headerRow:{style:{bold:!0},border:{vertical:{color:`#FFFFFF`,style:`thin`},bottom:{color:`#FFFFFF`,style:`thin`}}},firstColumn:{style:{fillColor:e.medium}},measureHeader:{border:{top:{color:`#FFFFFF`,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0,textColor:`#000000`}},firstAlternatingSubHeaderRow:{style:{bold:!0}},secondAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{style:{bold:!0}},firstRowStripe:{style:{fillColor:e.medium}},firstColumnStripe:{style:{fillColor:e.medium}}}),CM=e=>({category:`dark`,templateName:`pivotDarkWithDarkHeader`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,fillColor:e.medium},border:{horizontal:{color:e.light,style:`thin`}}},headerRow:{style:{bold:!0,fillColor:e.dark,textColor:`#FFFFFF`}},measureHeader:{border:{top:{color:e.light,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0,fillColor:e.light}},firstAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{style:{bold:!0,fillColor:e.dark,textColor:`#FFFFFF`}},secondRowStripe:{style:{fillColor:e.mediumBorder}},firstColumnStripe:{border:{left:{color:e.light,style:`thin`},right:{color:e.light,style:`thin`}}}}),wM=e=>({category:`dark`,templateName:`pivotDarkWithGrayHeader`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,fillColor:e.light}},headerRow:{style:{bold:!0,fillColor:K.black.dark,textColor:`#FFFFFF`}},measureHeader:{border:{top:{color:e.light,style:`medium`}}},mainSubHeaderRow:{style:{bold:!0,fillColor:e.medium}},firstAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{style:{bold:!0,fillColor:K.black.dark,textColor:`#FFFFFF`}},firstRowStripe:{border:{bottom:{color:e.medium,style:`thin`},top:{color:e.medium,style:`thin`}}},firstColumnStripe:{border:{left:{color:e.mediumBorder,style:`thin`},right:{color:e.mediumBorder,style:`thin`}}}}),TM=e=>({category:`dark`,templateName:`pivotDarkWithBlackHeader`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,fillColor:e.highlight,textColor:`#FFFFFF`}},headerRow:{style:{bold:!0,fillColor:`#000000`}},measureHeader:{border:{top:{color:e.light,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0,fillColor:e.dark}},firstAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{style:{bold:!0,fillColor:`#000000`}},firstRowStripe:{border:{bottom:{color:e.mediumBorder,style:`thin`},top:{color:e.mediumBorder,style:`thin`}}},firstColumnStripe:{border:{left:{color:e.mediumBorder,style:`thin`},right:{color:e.mediumBorder,style:`thin`}}}}),EM=e=>({category:`dark`,templateName:`pivotDarkWithFirstColumn`,primaryColor:e.highlight,wholeTable:{style:{hideGridLines:!0,fillColor:e.highlight,textColor:`#FFFFFF`},border:{vertical:{color:`#FFFFFF`,style:`thin`}}},headerRow:{style:{fillColor:e.dark},border:{bottom:{color:`#FFFFFF`,style:`medium`}}},firstColumn:{style:{fillColor:e.dark}},measureHeader:{border:{top:{color:e.light,style:`thin`}}},mainSubHeaderRow:{style:{bold:!0}},firstAlternatingSubHeaderRow:{style:{bold:!0}},totalRow:{style:{bold:!0,fillColor:e.dark},border:{top:{color:`#FFFFFF`,style:`medium`}}},secondRowStripe:{style:{fillColor:e.mediumBorder}},firstColumnStripe:{style:{fillColor:e.mediumBorder}}}),DM={None:{category:`light`,templateName:`none`,primaryColor:``,displayName:A(`None`)}},OM=[K.black,K.lightBlue,K.red,K.lightGreen,K.purple,K.gray,K.orange];function kM(e,t){let n=1;for(let r of t)for(let t of OM){let i=e+ n++;DM[i]={...r(t),displayName:AM(t.name,e,n-1)}}}function AM(e,t,n){let r=``;return t.includes(`Light`)?r=jy.light:t.includes(`Medium`)?r=jy.medium:t.includes(`Dark`)&&(r=jy.dark),`${r} ${e} ${n}`}kM(`PivotTableStyleLight`,[hM,gM,_M,vM]),kM(`PivotTableStyleMedium`,[yM,bM,xM,SM]),kM(`PivotTableStyleDark`,[CM,wM,TM,EM]),DM.PivotTableStyleDark1={...DM.PivotTableStyleDark1,...CM({...K.black,mediumBorder:Sd(K.black.medium,.1)})},DM.PivotTableStyleDark15={...DM.PivotTableStyleDark15,...TM({...K.black,highlight:K.gray.dark,mediumBorder:K.black.medium})},DM.PivotTableStyleDark22={...DM.PivotTableStyleDark22,...EM({...K.black,highlight:K.gray.dark,mediumBorder:K.black.medium})};function jM(e){let t=DM[e];return t&&Object.keys(Gy).find(e=>{let n=Gy[e];return n.category===t.category&&n.primaryColor===t.primaryColor})||`None`}let MM=[`wholeTable`,`firstColumnStripe`,`secondColumnStripe`,`firstRowStripe`,`secondRowStripe`,`firstColumn`,`lastColumn`,`headerRow`,`measureHeader`,`firstAlternatingSubHeaderRow`,`secondAlternatingSubHeaderRow`,`mainSubHeaderRow`,`totalRow`];function NM(e,t){let n=t.numberOfHeaders,r={...e,top:e.top+n};return r.top<=r.bottom?r:void 0}function PM(e){let t=e.range;return{row:t.zone.top,col:t.zone.left,sheetId:t.sheetId}}function FM(e,t,n,r){let i=t.zone;if(i.left!==i.right)throw Error(`Can only define a filter on a single column`);let a={...i,top:i.top+n.numberOfHeaders},o=r(t.sheetId,a);return{id:e,rangeWithHeaders:t,col:i.left,filteredRange:a.top>a.bottom?void 0:o}}function IM(e){return e.type===`static`||e.type===`forceStatic`}function LM(e,t,n){return{borders:RM(e,t,n),styles:BM(e,t,n)}}function RM(e,t,n){let{numberOfCols:r,numberOfRows:i}=n,a=ma(r,i,()=>({}));for(let o of MM){let s=t[o]?.border;if(!s)continue;let c=VM(o,e,n);for(let t of c)for(let n=t.left;n<=t.right;n++)for(let c=t.top;c<=t.bottom;c++){let l=o===`wholeTable`&&c<=e.numberOfHeaders-1;c===t.top&&s?.top!==void 0?zM(a,`top`,s.top,n,c,r,i):c!==t.top&&!l&&s?.horizontal!==void 0&&zM(a,`top`,s.horizontal,n,c,r,i),c===t.bottom&&s?.bottom!==void 0&&zM(a,`bottom`,s.bottom,n,c,r,i),n===t.left&&s?.left!==void 0&&zM(a,`left`,s.left,n,c,r,i),n===t.right&&s?.right!==void 0?zM(a,`right`,s.right,n,c,r,i):n!==t.right&&!l&&s?.vertical!==void 0&&zM(a,`right`,s.vertical,n,c,r,i)}}return a}function zM(e,t,n,r,i,a,o){switch(t){case`top`:e[r][i].top=n??void 0,i!==0&&(e[r][i-1].bottom=n??void 0);return;case`bottom`:e[r][i].bottom=n??void 0,i!==o-1&&(e[r][i+1].top=n??void 0);return;case`left`:e[r][i].left=n??void 0,r!==0&&(e[r-1][i].right=n??void 0);return;case`right`:e[r][i].right=n??void 0,r!==a-1&&(e[r+1][i].left=n??void 0);return}}function BM(e,t,n){let{numberOfCols:r,numberOfRows:i}=n,a=ma(r,i,()=>({}));for(let r of MM){let i=t[r];if(!i)continue;let o=VM(r,e,n);for(let e of o)for(let t=e.left;t<=e.right;t++)for(let n=e.top;n<=e.bottom;n++)a[t][n]||(a[t][n]={}),a[t][n]={...a[t][n],...i?.style}}return a}function VM(e,t,n){let{numberOfCols:r,numberOfRows:i}=n,a=[],o=Math.min(t.numberOfHeaders,i),s=+!!t.totalRow,c=r-1,l=i-1;switch(e){case`wholeTable`:a.push({top:0,left:0,bottom:l,right:c});break;case`firstColumn`:if(!t.firstColumn)break;a.push({top:0,left:0,bottom:l,right:0});break;case`lastColumn`:if(!t.lastColumn)break;a.push({top:0,left:c,bottom:l,right:c});break;case`headerRow`:if(!t.numberOfHeaders)break;a.push({top:0,left:0,bottom:o-1,right:c});break;case`totalRow`:if(!t.totalRow)break;a.push({top:l,left:0,bottom:l,right:c});break;case`firstRowStripe`:if(!t.bandedRows)break;for(let e=o;e<i-s;e+=2)a.push({top:e,left:0,bottom:e,right:c});break;case`secondRowStripe`:if(!t.bandedRows)break;for(let e=o+1;e<i-s;e+=2)a.push({top:e,left:0,bottom:e,right:c});break;case`firstColumnStripe`:{if(!t.bandedColumns)break;let e=n.mode===`pivot`?l:l-s;for(let t=0;t<r;t+=2)a.push({top:o,left:t,bottom:e,right:t});break}case`secondColumnStripe`:{if(!t.bandedColumns)break;let e=n.mode===`pivot`?l:l-s;for(let t=1;t<r;t+=2)a.push({top:o,left:t,bottom:e,right:t});break}case`mainSubHeaderRow`:if(n.isTabular)for(let e of n.mainSubHeaderRows||[])a.push({top:o,bottom:l-s,left:e,right:e});else for(let e of n.mainSubHeaderRows||[])a.push({top:e,bottom:e,left:0,right:r-1});break;case`firstAlternatingSubHeaderRow`:if(n.isTabular)for(let e of n.firstAlternatingSubHeaderIndexes||[])a.push({top:o,bottom:l-s,left:e,right:e});else for(let e of n.firstAlternatingSubHeaderIndexes||[])a.push({top:e,bottom:e,left:0,right:r-1});break;case`secondAlternatingSubHeaderRow`:if(n.isTabular)for(let e of n.secondAlternatingSubHeaderIndexes||[])a.push({top:o,bottom:l-s,left:e,right:e});else for(let e of n.secondAlternatingSubHeaderIndexes||[])a.push({top:e,bottom:e,left:0,right:r-1});break;case`measureHeader`:if(n.measureRow!==void 0&&r>1){let e=n.measureRow,t=+!n.isTabular;a.push({top:e,bottom:e,left:t,right:r-1})}break}return a}function HM(e,t){return e.model.getters.isTableStyleEditable(t)?p([{id:`editTableStyle`,name:A(`Edit table style`),execute:e=>e.openSidePanel(`TableStyleEditorPanel`,{styleId:t}),isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.EDIT`},{id:`deleteTableStyle`,name:A(`Delete table style`),execute:e=>e.model.dispatch(`REMOVE_TABLE_STYLE`,{tableStyleId:t}),icon:`o-spreadsheet-Icon.TRASH`}]):[]}function UM(e,t,n){e.resetTransform(),WM(e,t,n),GM(e,t,n),KM(e,t,n)}function WM(e,t,n){let{colWidth:r,rowHeight:i,numberOfCols:a,numberOfRows:o}=n;e.save();for(let n=0;n<a;n++)for(let s=0;s<o;s++){let c=t.styles[n][s].fillColor;if(!c)continue;e.fillStyle=c;let l=n===a-1?r+1:r,u=s===o-1?i+1:i;e.fillRect(n*r,s*i,l,u)}e.restore()}function GM(e,t,n){let{colWidth:r,rowHeight:i,numberOfCols:a,numberOfRows:o}=n;e.save(),e.translate(0,.5),e.lineWidth=1;for(let n=0;n<a;n++)for(let a=0;a<o;a++){let o=t.borders[n][a];o.top&&(e.strokeStyle=o.top.color,e.beginPath(),e.moveTo(n*r,a*i),e.lineTo(n*r+r,a*i),e.stroke()),o.bottom&&(e.strokeStyle=o.bottom.color,e.beginPath(),e.moveTo(n*r,a*i+i),e.lineTo(n*r+r,a*i+i),e.stroke())}e.resetTransform(),e.translate(.5,0);for(let n=0;n<a;n++)for(let a=0;a<o;a++){let o=t.borders[n][a];o.left&&(e.strokeStyle=o.left.color,e.beginPath(),e.moveTo(n*r,a*i),e.lineTo(n*r,a*i+i),e.stroke()),o.right&&(e.strokeStyle=o.right.color,e.beginPath(),e.moveTo(n*r+r,a*i),e.lineTo(n*r+r,a*i+i+1),e.stroke())}e.restore()}function KM(e,t,n){let{colWidth:r,rowHeight:i,numberOfCols:a,numberOfRows:o}=n;e.save(),e.translate(0,.5),e.lineWidth=1;let s=Math.floor(r/4),c=Math.floor(i/2);for(let n=0;n<a;n++)for(let a=0;a<o;a++)e.strokeStyle=t.styles[n][a].textColor||`#000`,e.beginPath(),e.moveTo(n*r+s+1,a*i+c),e.lineTo(n*r+r-s,a*i+c),e.stroke();e.restore()}var qM=class extends t.Component{static template=`o-spreadsheet-TableStylePreview`;static components={MenuPopover:Zh};static props={tableConfig:Object,tableStyle:Object,type:String,styleId:{type:String,optional:!0},selected:{type:Boolean,optional:!0},onClick:{type:Function,optional:!0}};canvasRef=(0,t.useRef)(`canvas`);menu=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]});setup(){(0,t.onWillUpdateProps)(e=>{(!T(this.props.tableConfig,e.tableConfig)||!T(this.props.tableStyle,e.tableStyle))&&this.drawTable(e)});let e=new ResizeObserver(()=>{this.drawTable(this.props)});(0,t.useEffect)(()=>(e.observe(this.canvasRef.el),()=>{e.disconnect()}),()=>[this.canvasRef.el])}drawTable(e){let t=this.canvasRef.el.getContext(`2d`),{width:n,height:r}=this.canvasRef.el.getBoundingClientRect();if(!n||!r)return;this.canvasRef.el.width=n,this.canvasRef.el.height=r;let i;i=e.type===`table`?{mode:`table`,numberOfCols:5,numberOfRows:5}:{mode:`pivot`,numberOfCols:5,numberOfRows:8,mainSubHeaderRows:new Set([e.tableConfig.numberOfHeaders,e.tableConfig.numberOfHeaders+3])},UM(t,LM(e.tableConfig,e.tableStyle,i),{...i,colWidth:(n-1)/i.numberOfCols,rowHeight:(r-1)/i.numberOfRows})}onContextMenu(e){this.props.styleId&&(this.menu.menuItems=HM(this.env,this.props.styleId),this.menu.isOpen=!0,this.menu.anchorRect={x:e.clientX,y:e.clientY,width:0,height:0})}closeMenu(){this.menu.isOpen=!1,this.menu.anchorRect=null,this.menu.menuItems=[]}get styleName(){return this.props.styleId?this.props.tableStyle.displayName:``}get isStyleEditable(){return this.props.styleId?this.env.model.getters.isTableStyleEditable(this.props.styleId):!1}editTableStyle(){this.env.openSidePanel(`TableStyleEditorPanel`,{styleId:this.props.styleId})}},JM=class extends t.Component{static template=`o-spreadsheet-TableStylesPopover`;static components={Popover:qh,TableStylePreview:qM};static props={tableConfig:Object,popoverProps:{type:Object,optional:!0},closePopover:Function,onStylePicked:Function,selectedStyleId:{type:String,optional:!0},tableStyles:Object,type:String};tableStyleListRef=(0,t.useRef)(`tableStyleList`);state=(0,t.useState)({selectedCategory:this.initialSelectedCategory});setup(){(0,t.useExternalListener)(window,`click`,this.onExternalClick,{capture:!0})}onExternalClick(e){this.tableStyleListRef.el&&!cm(this.tableStyleListRef.el,e)&&(this.props.closePopover(),e.hasClosedTableStylesPopover=!0)}get displayedStyles(){let e=this.props.tableStyles;return Object.keys(e).filter(t=>e[t].category===this.state.selectedCategory)}get initialSelectedCategory(){return this.props.selectedStyleId?this.props.tableStyles[this.props.selectedStyleId].category:`medium`}get categories(){return this.props.type===`table`?{...jy,custom:A(`Custom`)}:jy}newTableStyle(){this.props.closePopover(),this.env.openSidePanel(`TableStyleEditorPanel`,{onStylePicked:this.props.onStylePicked})}},YM=class extends t.Component{static template=`o-spreadsheet-TableStylePicker`;static components={TableStylesPopover:JM,TableStylePreview:qM};static props={tableConfig:Object,onStylePicked:Function,tableStyles:Object,type:String};state=(0,t.useState)({popoverProps:void 0});getDisplayedTableStyles(){let e=this.props.tableStyles,t=e[this.props.tableConfig.styleId].category,n=Object.keys(e).filter(n=>e[n].category===t),r=n.indexOf(this.props.tableConfig.styleId);if(r===-1)return n;let i=Math.floor(r/4)*4;return n.slice(i)}onStylePicked(e){this.props.onStylePicked(e),this.closePopover()}onArrowButtonClick(e){if(e.hasClosedTableStylesPopover||this.state.popoverProps){this.closePopover();return}let{bottom:t,right:n}=e.currentTarget.getBoundingClientRect();this.state.popoverProps={anchorRect:{x:n,y:t,width:0,height:0},positioning:`top-right`,verticalOffset:0}}closePopover(){this.state.popoverProps=void 0}},XM=class extends t.Component{static template=`o-spreadsheet-PivotDesignPanel`;static props={pivotId:String};static components={Section:Z,Checkbox:Qw,NumberInput:yT,TableStylePicker:YM};store;setup(){this.store=wr(fM,this.props.pivotId,`neverDefer`)}updatePivotStyleNumberProperty(e,t){let n=parseInt(e);this.store.update({style:{...this.pivotStyle,[t]:isNaN(n)?void 0:n}})}updatePivotStyleProperty(e,t){this.store.update({style:{...this.pivotStyle,[e]:t}})}get pivotStyle(){return this.env.model.getters.getPivotCoreDefinition(this.props.pivotId).style||{}}get defaultStyle(){return Ex}get tableConfig(){let e=(this.pivotStyle.displayMeasuresRow??Ex.displayMeasuresRow)||(this.pivotStyle.displayColumnHeaders??Ex.displayColumnHeaders);return{hasFilters:!1,totalRow:this.pivotStyle.displayTotals??Ex.displayTotals,firstColumn:!0,lastColumn:!1,styleId:this.pivotStyle.tableStyleId??Ex.tableStyleId,bandedRows:this.pivotStyle.bandedRows??Ex.bandedRows,bandedColumns:this.pivotStyle.bandedColumns??Ex.bandedColumns,numberOfHeaders:+!!e}}onStylePicked(e){this.updatePivotStyleProperty(`tableStyleId`,e)}get tableStyles(){return DM}},ZM=class extends t.Component{static template=`o-spreadsheet-PivotSidePanel`;static props={pivotId:String,onCloseSidePanel:Function,openTab:{type:String,optional:!0}};static defaultProps={openTab:`configuration`};static components={PivotLayoutConfigurator:vj,Section:Z,PivotDesignPanel:XM};state=(0,t.useState)({panel:this.props.openTab||`configuration`});setup(){QO(this),(0,t.onWillUpdateProps)(e=>{e.openTab&&e.openTab!==this.props.openTab&&this.switchPanel(e.openTab)})}get sidePanelEditor(){let e=this.env.model.getters.getPivotCoreDefinition(this.props.pivotId);if(!e)throw Error(`pivotId does not correspond to a pivot.`);return mM.get(e.type).editor}get highlights(){return this.state.panel===`configuration`?oj(this.env.model.getters,this.props.pivotId):[]}switchPanel(e){this.state.panel=e}},QM=class extends t.Component{static template=`o-spreadsheet-RemoveDuplicatesPanel`;static components={ValidationMessages:pT,Section:Z,Checkbox:Qw};static props={onCloseSidePanel:Function};state=(0,t.useState)({hasHeader:!1,columns:{}});setup(){this.updateColumns(),(0,t.onWillUpdateProps)(()=>this.updateColumns())}toggleHasHeader(){this.state.hasHeader=!this.state.hasHeader}toggleAllColumns(){let e=!this.isEveryColumnSelected;for(let t in this.state.columns)this.state.columns[t]=e}toggleColumn(e){this.state.columns[e]=!this.state.columns[e]}onRemoveDuplicates(){this.env.model.dispatch(`REMOVE_DUPLICATES`,{hasHeader:this.state.hasHeader,columns:this.getColsToAnalyze()})}getColLabel(e){let t=parseInt(e),n=A(`Column %s`,qt(t));if(this.state.hasHeader){let e=this.env.model.getters.getActiveSheetId(),r=this.env.model.getters.getSelectedZone().top,i=this.env.model.getters.getEvaluatedCell({sheetId:e,col:t,row:r});i.type!==`empty`&&(n+=` - ${i.value}`)}return n}get isEveryColumnSelected(){return Object.values(this.state.columns).every(e=>e)}get errorMessages(){let e=this.env.model.canDispatch(`REMOVE_DUPLICATES`,{hasHeader:this.state.hasHeader,columns:this.getColsToAnalyze()}).reasons,t=new Set;for(let n of e)t.add(mg.Errors[n]||mg.Errors.Unexpected);return Array.from(t)}get selectionStatisticalInformation(){let e=Nn(this.env.model.getters.getSelectedZone());return A(`%(row_count)s rows and %(column_count)s columns selected`,{row_count:e.numberOfRows,column_count:e.numberOfCols})}get canConfirm(){return this.errorMessages.length===0}updateColumns(){let e=this.env.model.getters.getSelectedZone(),t=this.state.columns,n={};for(let r=e.left;r<=e.right;r++)n[r]=r in t?t[r]:!0;this.state.columns=n}getColsToAnalyze(){return Object.keys(this.state.columns).filter(e=>this.state.columns[e]).map(e=>parseInt(e))}},$M=class extends t.Component{static template=`o-spreadsheet-SettingsPanel`;static components={Section:Z,ValidationMessages:pT,BadgeSelection:xT,Select:Qh};static props={onCloseSidePanel:Function};loadedLocales=[];setup(){(0,t.onWillStart)(()=>this.loadLocales())}onLocaleChange(e){let t=this.loadedLocales.find(t=>t.code===e);t&&this.env.model.dispatch(`UPDATE_LOCALE`,{locale:t})}async loadLocales(){this.loadedLocales=(await this.env.loadLocales()).filter(e=>{let t=yg(e);return t||console.warn(`Invalid locale: ${e.code} ${e}`),t}).sort((e,t)=>e.name.localeCompare(t.name))}get numberFormatPreview(){return R(1234567.89,{format:`#,##0.00`,locale:this.env.model.getters.getLocale()})}get dateFormatPreview(){let e=this.env.model.getters.getLocale();return R(1.6,{format:e.dateFormat,locale:e})}get dateTimeFormatPreview(){let e=this.env.model.getters.getLocale();return R(1.6,{format:Ig(e),locale:e})}get firstDayOfWeek(){return lo[this.env.model.getters.getLocale().weekStart%7]}get currentLocale(){return this.env.model.getters.getLocale()}get supportedLocales(){let e=this.currentLocale,t=this.loadedLocales.find(t=>t.code===e.code);if(!t)return[...this.loadedLocales,e].sort((e,t)=>e.name.localeCompare(t.name));if(!T(e,t)){let n=this.loadedLocales.indexOf(t),r=[...this.loadedLocales];return r[n]=e,r.sort((e,t)=>e.name.localeCompare(t.name)),r}return this.loadedLocales}get selectOptions(){return this.supportedLocales.map(e=>({label:e.name,value:e.code}))}};let eN={SplitIsDestructive:A(`This will overwrite data in the subsequent columns. Split anyway?`)};function tN(e,t,n){let r=e.model.dispatch(`SPLIT_TEXT_INTO_COLUMNS`,{separator:t,addNewColumns:n});return r.isCancelledBecause(H.SplitWillOverwriteContent)&&e.askConfirmation(eN.SplitIsDestructive,()=>{r=e.model.dispatch(`SPLIT_TEXT_INTO_COLUMNS`,{separator:t,addNewColumns:n,force:!0})}),r}let nN=[{label:A(`Detect automatically`),value:`auto`},{label:A(`Custom separator`),value:`custom`},{label:A(`Space`),value:` `},{label:A(`Comma`),value:`,`},{label:A(`Semicolon`),value:`;`},{label:A(`Line Break`),value:`
86
+ `}];var rN=class extends t.Component{static template=`o-spreadsheet-SplitIntoColumnsPanel`;static components={ValidationMessages:pT,Section:Z,Checkbox:Qw,Select:Qh};static props={onCloseSidePanel:Function};state=(0,t.useState)({separatorValue:`auto`,addNewColumns:!1,customSeparator:``});setup(){let e=O(mr);(0,t.useEffect)(e=>{e!==`inactive`&&this.props.onCloseSidePanel()},()=>[e.focusMode]),(0,t.onMounted)(()=>{e.activeComposer.stopEdition()})}onSeparatorChange(e){this.state.separatorValue=e}updateCustomSeparator(e){e.target&&(this.state.customSeparator=e.target.value)}updateAddNewColumnsCheckbox(e){this.state.addNewColumns=e}confirm(){tN(this.env,this.separatorValue,this.state.addNewColumns).isSuccessful&&this.props.onCloseSidePanel()}get errorMessages(){let e=this.env.model.canDispatch(`SPLIT_TEXT_INTO_COLUMNS`,{separator:this.separatorValue,addNewColumns:this.state.addNewColumns,force:!0}).reasons,t=new Set;for(let n of e)switch(n){case H.SplitWillOverwriteContent:case H.EmptySplitSeparator:break;default:t.add(pg.Errors[n]||pg.Errors.Unexpected)}return Array.from(t)}get warningMessages(){let e=[];return this.env.model.canDispatch(`SPLIT_TEXT_INTO_COLUMNS`,{separator:this.separatorValue,addNewColumns:this.state.addNewColumns,force:!1}).reasons.includes(H.SplitWillOverwriteContent)&&e.push(pg.Errors[H.SplitWillOverwriteContent]),e}get separatorValue(){return this.state.separatorValue===`custom`?this.state.customSeparator:this.state.separatorValue===`auto`?this.env.model.getters.getAutomaticSeparator():this.state.separatorValue}get separators(){return nN}get isConfirmDisabled(){return!this.separatorValue||this.errorMessages.length>0}},iN=class extends t.Component{static template=`o-spreadsheet-TablePanel`;static components={TableStylePicker:YM,SelectionInput:lT,ValidationMessages:pT,Checkbox:Qw,Section:Z,NumberInput:yT};static props={onCloseSidePanel:Function,table:Object};state;setup(){let e=this.env.model.getters.getActiveSheetId();this.state=(0,t.useState)({tableZoneErrors:[],tableXc:this.env.model.getters.getRangeString(this.props.table.range,e),filtersEnabledIfPossible:this.props.table.config.hasFilters})}updateHasFilters(e){this.state.filtersEnabledIfPossible=e,this.updateTableConfig(`hasFilters`,e)}updateTableConfig(e,t){let n=this.env.model.getters.getActiveSheetId();return this.env.model.dispatch(`UPDATE_TABLE`,{sheetId:n,zone:this.props.table.range.zone,config:{[e]:t}})}updateHasHeaders(e){let t=+!!e;this.updateNumberOfHeaders(t)}updateTableIsDynamic(e){let t=e?`dynamic`:`forceStatic`;if(t===this.props.table.type)return;let n=this.env.model.getters.getTable(PM(this.props.table));if(!n)return;let r=this.env.model.getters.getActiveSheetId(),i=this.env.model.dispatch(`UPDATE_TABLE`,{sheetId:r,zone:this.props.table.range.zone,newTableRange:this.env.model.getters.getRangeData(n.range),tableType:t}),a=this.env.model.getters.getCoreTable(PM(this.props.table));if(i.isSuccessful&&a){let e=a.range;this.state.tableXc=this.env.model.getters.getRangeString(e,r),this.state.tableZoneErrors=[]}}onChangeNumberOfHeaders(e){let t=parseInt(e);this.updateNumberOfHeaders(t)}updateNumberOfHeaders(e){let t=e>0&&(this.tableConfig.hasFilters||this.state.filtersEnabledIfPossible);return this.env.model.dispatch(`UPDATE_TABLE`,{sheetId:this.env.model.getters.getActiveSheetId(),zone:this.props.table.range.zone,config:{numberOfHeaders:e,hasFilters:t}})}onRangeChanged(e){let t=this.env.model.getters.getActiveSheetId();this.state.tableXc=e[0];let n=this.env.model.getters.getRangeFromSheetXC(t,this.state.tableXc);this.state.tableZoneErrors=this.env.model.canDispatch(`UPDATE_TABLE`,{sheetId:t,zone:this.props.table.range.zone,newTableRange:this.env.model.getters.getRangeDataFromXc(t,this.state.tableXc),tableType:this.getNewTableType(n.zone)}).reasons}onRangeConfirmed(){let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getRangeFromSheetXC(e,this.state.tableXc);if(Kn(t.zone)===1){let n=this.env.model.getters.getContiguousZone(e,t.zone);t=this.env.model.getters.getRangeFromZone(e,n)}let n=t.zone,r=this.props.table.range.zone,i=n.top===r.top&&n.left===r.left?`RESIZE_TABLE`:`UPDATE_TABLE`,a=this.env.model.dispatch(i,{sheetId:e,zone:this.props.table.range.zone,newTableRange:this.env.model.getters.getRangeData(t),tableType:this.getNewTableType(t.zone)}),o={sheetId:e,col:t.zone.left,row:t.zone.top},s=this.env.model.getters.getCoreTable(o);if(a.isSuccessful&&s){let t=PM(s);this.env.model.selection.selectZone({zone:D(t),cell:t});let n=s.range;this.state.tableXc=this.env.model.getters.getRangeString(n,e)}}onStylePicked(e){let t=this.env.model.getters.getActiveSheetId();this.env.model.dispatch(`UPDATE_TABLE`,{sheetId:t,zone:this.props.table.range.zone,config:{styleId:e}})}deleteTable(){let e=this.env.model.getters.getActiveSheetId();this.env.model.dispatch(`REMOVE_TABLE`,{sheetId:e,target:[this.props.table.range.zone]})}getNewTableType(e){if(this.props.table.type===`forceStatic`)return`forceStatic`;let t=this.env.model.getters.getActiveSheetId();return this.env.model.getters.canCreateDynamicTableOnZones(t,[e])?`dynamic`:`static`}get tableConfig(){return this.props.table.config}get errorMessages(){return(this.state.tableZoneErrors||[]).map(e=>gg.Errors[e]||gg.Errors.Unexpected)}getCheckboxLabel(e){return gg.Checkboxes[e]}get canHaveFilters(){return this.tableConfig.numberOfHeaders>0}get hasFilterCheckboxTooltip(){return this.canHaveFilters?void 0:gg.Tooltips.filterWithoutHeader}get canBeDynamic(){let e=this.env.model.getters.getActiveSheetId();return this.props.table.type===`dynamic`||this.env.model.getters.canCreateDynamicTableOnZones(e,[this.props.table.range.zone])}get dynamicTableTooltip(){return gg.Tooltips.isDynamic}};let aN=`#3C78D8`;var oN=class extends t.Component{static template=`o-spreadsheet-TableStyleEditorPanel`;static components={Section:Z,RoundColorPicker:TT,TableStylePreview:qM};static props={onCloseSidePanel:Function,onStylePicked:{type:Function,optional:!0},styleId:{type:String,optional:!0}};state=(0,t.useState)(this.getInitialState());setup(){(0,t.useExternalListener)(window,`click`,()=>this.state.pickerOpened=!1)}getInitialState(){let e=this.props.styleId?this.env.model.getters.getTableStyle(this.props.styleId):null;return{pickerOpened:!1,primaryColor:e?.primaryColor||aN,selectedTemplateName:e?.templateName||`lightColoredText`,styleName:e?.displayName||this.env.model.getters.getNewCustomTableStyleName()}}togglePicker(){this.state.pickerOpened=!this.state.pickerOpened}onColorPicked(e){this.state.primaryColor=td(e)?e:aN,this.state.pickerOpened=!1}onTemplatePicked(e){this.state.selectedTemplateName=e}onConfirm(){let e=this.props.styleId||G.smallUuid();this.env.model.dispatch(`CREATE_TABLE_STYLE`,{tableStyleId:e,tableStyleName:this.state.styleName,templateName:this.state.selectedTemplateName,primaryColor:this.state.primaryColor}),this.props.onStylePicked?.(e),this.props.onCloseSidePanel()}onCancel(){this.props.onCloseSidePanel()}onDelete(){this.props.styleId&&(this.env.model.dispatch(`REMOVE_TABLE_STYLE`,{tableStyleId:this.props.styleId}),this.props.onCloseSidePanel())}get colorPreviewStyle(){return W({background:this.state.primaryColor})}get tableTemplates(){return Object.keys(Ky).filter(e=>e!==`none`)}get previewTableConfig(){return{bandedColumns:!1,bandedRows:!0,firstColumn:!1,lastColumn:!1,numberOfHeaders:1,totalRow:!0,hasFilters:!0,styleId:``}}get selectedStyle(){return this.computeTableStyle(this.state.selectedTemplateName)}computeTableStyle(e){return qy(this.state.styleName,e,this.state.primaryColor)}};let sN=new B;sN.add(`ConditionalFormatting`,{title:A(`Conditional formatting`),Body:Nk}),sN.add(`ConditionalFormattingEditor`,{title:A(`Conditional formatting`),Body:jk,computeState:(e,t)=>({isOpen:!0,props:t,key:`ConditionalFormattingEditor_${t.cf.id}`})}),sN.add(`ChartPanel`,{title:A(`Chart`),Body:JO,computeState:(e,t)=>{let n=e.getSelectedFigureId(),r=n&&e.getFigureSheetId(n),i=r?e.isSheetLocked(r):!1,a=n?e.getChartIdFromFigureId(n):t.chartId;return!a||!e.isChartDefined(a)||i?{isOpen:!1}:{isOpen:!0,props:{chartId:a}}}}),sN.add(`FindAndReplace`,{title:A(`Find and Replace`),Body:Vk}),sN.add(`SplitToColumns`,{title:A(`Split text into columns`),Body:rN}),sN.add(`Settings`,{title:A(`Spreadsheet settings`),Body:$M}),sN.add(`RemoveDuplicates`,{title:A(`Remove duplicates`),Body:QM}),sN.add(`DataValidation`,{title:A(`Data validation`),Body:Fk}),sN.add(`DataValidationEditor`,{title:A(`Data validation`),Body:Lk,computeState:(e,t)=>({isOpen:!0,props:t,key:`DataValidationEditor_${t.ruleId}`})}),sN.add(`MoreFormats`,{title:A(`More formats`),Body:ZA}),sN.add(`ColumnStats`,{title:A(`Column statistics`),Body:rk}),sN.add(`TableSidePanel`,{title:A(`Edit table`),Body:iN,computeState:e=>{let t=e.getFirstTableInSelection();return!t||t.isPivotTable?{isOpen:!1}:{isOpen:!0,props:{table:e.getCoreTable(PM(t))},key:t.id}}}),sN.add(`TableStyleEditorPanel`,{title:A(`Create custom table style`),Body:oN,computeState:(e,t)=>({isOpen:!0,props:{...t},key:t.styleId??`new`})}),sN.add(`PivotSidePanel`,{title:(e,t)=>A(`Pivot #%s`,e.model.getters.getPivotFormulaId(t.pivotId)),Body:ZM,computeState:(e,t)=>({isOpen:e.isExistingPivot(t.pivotId),props:t,key:`pivot_key_${t.pivotId}`})}),sN.add(`PivotMeasureDisplayPanel`,{title:(e,t)=>A(`Measure "%s" options`,e.model.getters.getPivot(t.pivotId).getMeasure(t.measure.id).displayName),Body:aj,computeState:(e,t)=>{try{return e.getPivot(t.pivotId).getMeasure(t.measure.id),{isOpen:!0,props:t,key:`pivot_measure_display_${t.pivotId}_${t.measure.id}`}}catch{return{isOpen:!1}}}}),sN.add(`CarouselPanel`,{title:A(`Carousel`),Body:Xw,computeState:(e,t)=>{let n=t.figureId||e.getSelectedFigureId(),r=n&&e.getFigureSheetId(n),i=r?e.isSheetLocked(r):!1;return!n||!e.doesCarouselExist(n)||i?{isOpen:!1}:{isOpen:!0,props:{figureId:n}}}}),sN.add(`NamedRangesPanel`,{title:A(`Named Ranges`),Body:nj}),sN.add(`PerfProfile`,{title:A(`Performance`),Body:rj});var cN=class{mutators=[`setSmallThreshhold`];_isSmallCallback=()=>!1;get isSmall(){return this._isSmallCallback()}setSmallThreshhold(e){this._isSmallCallback=e}},lN=class extends fr{mutators=[`open`,`replace`,`toggle`,`close`,`changePanelSize`,`resetPanelSize`,`togglePinPanel`,`closeMainPanel`,`changeSpreadsheetWidth`,`toggleCollapsePanel`];mainPanel=void 0;secondaryPanel;availableWidth=0;screenWidthStore=this.get(cN);get isMainPanelOpen(){return this.mainPanel&&this.mainPanel.componentTag?this.computeState(this.mainPanel).isOpen:!1}get isSecondaryPanelOpen(){return this.secondaryPanel&&this.secondaryPanel.componentTag?this.computeState(this.secondaryPanel).isOpen:!1}get mainPanelProps(){return this.mainPanel?this.getPanelProps(this.mainPanel):void 0}get mainPanelKey(){return this.mainPanel?this.getPanelKey(this.mainPanel):void 0}get secondaryPanelProps(){return this.secondaryPanel?this.getPanelProps(this.secondaryPanel):void 0}get secondaryPanelKey(){return this.secondaryPanel?this.getPanelKey(this.secondaryPanel):void 0}get totalPanelSize(){return(this.mainPanel?.size||0)+(this.secondaryPanel?.size??0)}getPanelProps(e){let t=this.computeState(e);return t.isOpen?(e.currentPanelProps=t.props??e.currentPanelProps,t.props??{}):{}}getPanelKey(e){let t=this.computeState(e);if(t.isOpen)return t.key}open(e,t={}){if(this.screenWidthStore.isSmall)return;let n={currentPanelProps:t,componentTag:e,size:350},r=this.computeState(n);if(!r.isOpen)return;if(!this.mainPanel||!this.mainPanel.isPinned||this.mainPanelKey===r.key){this._openPanel(`mainPanel`,n,r);return}let i=this.mainPanel.isCollapsed?350:this.mainPanel.size;if(!this.secondaryPanel&&i+350>this.availableWidth){this.get(yO).notifyUser({sticky:!1,type:`warning`,text:A(`The window is too small to display multiple side panels.`)});return}this._openPanel(`secondaryPanel`,n,r)}replace(e,t,n={}){let r={currentPanelProps:n,componentTag:e,size:350},i=this.computeState(r);if(!i.isOpen)return;let a=()=>{this.mainPanel?.isCollapsed&&this.toggleCollapsePanel(`mainPanel`)},o=this.mainPanelKey===i.key,s=this.secondaryPanelKey===i.key;if(o&&this.secondaryPanel){this.close(),a();return}if(s){this.closeMainPanel(),this.togglePinPanel(),a();return}let c=this.mainPanelKey===t?`mainPanel`:`secondaryPanel`;this._openPanel(c,r,i)}_openPanel(e,t,n){let r=this[e];r&&t.componentTag!==r.componentTag&&r.currentPanelProps?.onCloseSidePanel?.(),this[e]={currentPanelProps:n.props??{},componentTag:t.componentTag,size:r?.size||350,isCollapsed:r?.isCollapsed||!1,isPinned:r&&`isPinned`in r?r.isPinned:!1},this[e].isCollapsed&&this.toggleCollapsePanel(e)}toggle(e,t){let n=this.mainPanel?.isPinned?this.secondaryPanel:this.mainPanel;n&&e===n.componentTag?this.close():this.open(e,t)}close(){if(this.mainPanel?.isPinned){this.secondaryPanel&&=(this.secondaryPanel.currentPanelProps.onCloseSidePanel?.(),void 0);return}this.mainPanel?.currentPanelProps.onCloseSidePanel?.(),this.mainPanel=void 0}closeMainPanel(){this.mainPanel?.currentPanelProps.onCloseSidePanel?.(),this.mainPanel=this.secondaryPanel||void 0,this.secondaryPanel=void 0}changePanelSize(e,t){let n=this[e];if(!n||`isCollapsed`in n&&n.isCollapsed)return;t=Math.max(t,350);let r=e===`mainPanel`?this.secondaryPanel?.size||0:this.mainPanel?.size||0;t>this.availableWidth-r&&(e===`mainPanel`&&this.secondaryPanel&&(this.secondaryPanel.size=Math.max(this.availableWidth-t,350),r=this.secondaryPanel.size),t=Math.max(this.availableWidth-r,350)),n.size=t}resetPanelSize(e){this[e]&&(this[e].size=350)}togglePinPanel(){this.mainPanel&&(this.mainPanel.isPinned=!this.mainPanel.isPinned,!this.mainPanel.isPinned&&this.secondaryPanel&&(this.secondaryPanel?.currentPanelProps.onCloseSidePanel?.(),this.mainPanel=this.secondaryPanel,this.secondaryPanel=void 0))}toggleCollapsePanel(e){let t=this[e];t&&(t.isCollapsed?(t.isCollapsed=!1,this.changePanelSize(e,350)):(t.isCollapsed=!0,t.size=45))}computeState({componentTag:e,currentPanelProps:t}){let n=sN.get(e).computeState,r=n?n(this.getters,t):{isOpen:!0,props:t};return r.isOpen?{...r,key:r.key||e}:r}changeSpreadsheetWidth(e){this.availableWidth=e-150,this.secondaryPanel&&e-this.totalPanelSize<150&&(this.secondaryPanel?.currentPanelProps.onCloseSidePanel?.(),this.secondaryPanel=void 0),this.mainPanel&&e-this.totalPanelSize<150&&(this.mainPanel.size=Math.max(e-150,350))}};function uN(e,t,n){let r=e.model.getters.getActiveSheetId(),i=t===`COL`?`FREEZE_COLUMNS`:`FREEZE_ROWS`;e.model.dispatch(i,{sheetId:r,quantity:n}).isCancelledBecause(H.MergeOverlap)&&e.raiseError(dg)}var dN=class{map={};constructor(e=[]){for(let[t,n]of e)this.set(t,n)}set({sheetId:e,col:t,row:n},r){let i=this.map;i[e]||(i[e]={}),i[e][t]||(i[e][t]={}),i[e][t][n]=r}setMany(e){for(let[t,n]of e)this.set(t,n)}get({sheetId:e,col:t,row:n}){return this.map[e]?.[t]?.[n]}getSheet(e){return this.map[e]}clearSheet(e){delete this.map[e]}has({sheetId:e,col:t,row:n}){return this.map[e]?.[t]?.[n]!==void 0}delete({sheetId:e,col:t,row:n}){delete this.map[e]?.[t]?.[n]}keys(){let e=this.map,t=[];for(let n in e)for(let r in e[n])for(let i in e[n][r])t.push({sheetId:n,col:parseInt(r),row:parseInt(i)});return t}keysForSheet(e){let t=this.map[e];if(!t)return[];let n=[];for(let r in t)for(let i in t[r])n.push({sheetId:e,col:parseInt(r),row:parseInt(i)});return n}*entries(){let e=this.map;for(let t of this.keys()){let{sheetId:n,col:r,row:i}=t;yield[t,e[n][r][i]]}}},fN=class extends zg{getters;constructor({getters:e,stateObserver:t}){super(t),this.getters=e}},pN=class extends fN{static getters=[`getCellFingerprint`];getCellFingerprint(e){let t=this.getters.getCellPosition(e.id);return e.isFormula?this.computeFormulaFingerprint(t,e):this.getLiteralFingerprint(t)}computeFormulaFingerprint(e,t){let n=t.compiledFormula.rangeDependencies,r=e.col,i=e.row,a=this.getters.getSheetIds().indexOf(e.sheetId),o={dx:0,dy:0,dSheet:0};for(let e of n){let t=e.zone,[n,s]=e.parts;o.dSheet=this.getters.getSheetIds().indexOf(e.sheetId)-a;let c=Fc(e)&&!e.unboundedZone.hasHeader,l=Pc(e)&&!e.unboundedZone.hasHeader,u=c||n?.colFixed?0:r,d=l||n?.rowFixed?0:i,f=!s&&n?.colFixed||s?.colFixed,p=!s&&n?.rowFixed||s?.rowFixed,m=e.unboundedZone.right===void 0,h=e.unboundedZone.bottom===void 0,g=m||f?0:r,_=h||p?0:i,v=Rn({top:t.top-d,left:t.left-u,right:t.right-g,bottom:t.bottom-_});for(let e=v.top;e<=v.bottom;e++)for(let t=v.left;t<=v.right;t++)o.dx+=t,o.dy+=e}let s=t.compiledFormula.normalizedFormula;return mN(o)+s}getLiteralFingerprint(e){switch(this.getters.getEvaluatedCell(e).type){case V.number:case V.boolean:return hN;case V.text:case V.empty:case V.error:return}}};function mN(e){return Object.entries(e).sort(([e],[t])=>e.localeCompare(t)).map(([e,t])=>t).join(`,`)}let hN=`DATA_FINGERPRINT`;var gN=class extends fr{mutators=[`enable`,`disable`];isInvalidated=!1;fingerprintColors={[hN]:`#D9D9D9`};isEnabled=!1;colors=new dN;handle(e){switch(Hl(e)&&this.isEnabled&&(this.isInvalidated=!0),e.type){case`UNDO`:case`REDO`:case`ACTIVATE_SHEET`:this.isEnabled&&(this.isInvalidated=!0);break}}finalize(){this.isInvalidated&&(this.isInvalidated=!1,this.computeFingerprints())}enable(){this.isEnabled=!0,this.computeFingerprints()}disable(){this.isEnabled=!1,this.colors=new dN}computeFingerprints(){this.colors=new dN;let e=new dN,t=new Set,n=this.getters.getActiveSheetId(),r=this.getters.getCells(n);for(let n in r){let i=r[n],a=this.getters.getCellFingerprint(i);if(!a)continue;t.add(a);let o=this.getters.getCellPosition(i.id);e.set(o,a)}this.assignColors(t);for(let[t,n]of e.entries()){let e=this.fingerprintColors[n];this.colors.set(t,e),this.colorSpreadZone(t,e)}}colorSpreadZone(e,t){let n=this.getters.getSpreadZone(e);if(!n)return;let r=e.sheetId;for(let e=n.top;e<=n.bottom;e++)for(let i=n.left;i<=n.right;i++){let n={sheetId:r,col:i,row:e};this.colors.set(n,t)}}assignColors(e){let t=new Id(e.size);Object.keys(this.fingerprintColors).forEach(()=>t.next());for(let n of e)this.fingerprintColors[n]||(this.fingerprintColors[n]=gd(t.next(),.8))}};let _N={name:AC,execute:e=>{let t=e.model.getters.getElementsFromSelection(`COL`);e.model.dispatch(`HIDE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),dimension:`COL`,elements:t})},isVisible:TC,icon:`o-spreadsheet-Icon.HIDE_COL`},vN={name:A(`Unhide columns`),execute:e=>{let t=e.model.getters.getElementsFromSelection(`COL`);e.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),dimension:`COL`,elements:t})},isVisible:e=>{let t=e.model.getters.getHiddenColsGroups(e.model.getters.getActiveSheetId()).flat();return e.model.getters.getElementsFromSelection(`COL`).some(e=>t.includes(e))},icon:`o-spreadsheet-Icon.UNHIDE_COL`},yN={name:A(`Unhide all columns`),execute:e=>{let t=e.model.getters.getActiveSheetId();e.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:t,dimension:`COL`,elements:Array.from(Array(e.model.getters.getNumberCols(t)).keys())})},isVisible:e=>e.model.getters.getHiddenColsGroups(e.model.getters.getActiveSheetId()).length>0,icon:`o-spreadsheet-Icon.UNHIDE_COL`},bN={name:jC,execute:e=>{let t=e.model.getters.getElementsFromSelection(`ROW`);e.model.dispatch(`HIDE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),dimension:`ROW`,elements:t})},isVisible:CC,icon:`o-spreadsheet-Icon.HIDE_ROW`},xN={name:A(`Unhide rows`),execute:e=>{let t=e.model.getters.getElementsFromSelection(`ROW`);e.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId(),dimension:`ROW`,elements:t})},isVisible:e=>{let t=e.model.getters.getHiddenRowsGroups(e.model.getters.getActiveSheetId()).flat();return e.model.getters.getElementsFromSelection(`ROW`).some(e=>t.includes(e))},icon:`o-spreadsheet-Icon.UNHIDE_ROW`},SN={name:A(`Unhide all rows`),execute:e=>{let t=e.model.getters.getActiveSheetId();e.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:t,dimension:`ROW`,elements:Array.from(Array(e.model.getters.getNumberRows(t)).keys())})},isVisible:e=>e.model.getters.getHiddenRowsGroups(e.model.getters.getActiveSheetId()).length>0,icon:`o-spreadsheet-Icon.UNHIDE_ROW`},CN={name:A(`Unfreeze`),isVisible:e=>{let{xSplit:t,ySplit:n}=e.model.getters.getPaneDivisions(e.model.getters.getActiveSheetId());return t+n>0},execute:e=>e.model.dispatch(`UNFREEZE_COLUMNS_ROWS`,{sheetId:e.model.getters.getActiveSheetId()}),icon:`o-spreadsheet-Icon.UNFREEZE`},wN={name:A(`Freeze`),icon:`o-spreadsheet-Icon.FREEZE`},TN={name:A(`No rows`),execute:e=>e.model.dispatch(`UNFREEZE_ROWS`,{sheetId:e.model.getters.getActiveSheetId()}),isVisible:e=>!!e.model.getters.getPaneDivisions(e.model.getters.getActiveSheetId()).ySplit},EN={name:A(`1 row`),execute:e=>uN(e,`ROW`,1)},DN={name:A(`2 rows`),execute:e=>uN(e,`ROW`,2)},ON={name:A(`Up to current row`),execute:e=>{let{bottom:t}=e.model.getters.getSelectedZone();uN(e,`ROW`,t+1)}},kN={name:A(`No columns`),execute:e=>e.model.dispatch(`UNFREEZE_COLUMNS`,{sheetId:e.model.getters.getActiveSheetId()}),isVisible:e=>!!e.model.getters.getPaneDivisions(e.model.getters.getActiveSheetId()).xSplit},AN={name:A(`1 column`),execute:e=>uN(e,`COL`,1)},jN={name:A(`2 columns`),execute:e=>uN(e,`COL`,2)},MN={name:A(`Up to current column`),execute:e=>{let{right:t}=e.model.getters.getSelectedZone();uN(e,`COL`,t+1)}},NN={name:A(`Gridlines`),execute:e=>{let t=e.model.getters.getActiveSheetId();e.model.dispatch(`SET_GRID_LINES_VISIBILITY`,{sheetId:t,areGridLinesVisible:!e.model.getters.getGridLinesVisibility(t)})},isActive:e=>{let t=e.model.getters.getActiveSheetId();return e.model.getters.getGridLinesVisibility(t)}},PN={name:A(`Irregularity map`),execute:e=>{let t=e.getStore(gN);t.isEnabled?t.disable():t.enable()},isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.IRREGULARITY_MAP`};function FN(e){return{name:A(`%(zoom_percentage)s%`,{zoom_percentage:e}),execute:t=>{t.model.dispatch(`SET_ZOOM`,{zoom:e/100})},isActive:t=>t.model.getters.getViewportZoomLevel()===e/100,isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0,sequence:e}}let IN={name:A(`Formulas`),isActive:e=>e.model.getters.shouldShowFormulas(),execute:e=>e.model.dispatch(`SET_FORMULA_VISIBILITY`,{show:!e.model.getters.shouldShowFormulas()}),isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0},LN={name:e=>{let t=e.model.getters.getSelectedZone();return t.left===t.right?A(`Group column %s`,qt(t.left)):A(`Group columns %s - %s`,qt(t.left),qt(t.right))},execute:e=>VN(e,`COL`),isVisible:e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getSelectedZone(),r=e.model.getters.getHeaderGroupsInZone(t,`COL`,n);return YC(e)&&!r.some(e=>e.start===n.left&&e.end===n.right)},icon:`o-spreadsheet-Icon.GROUP_COLUMNS`},RN={name:e=>{let t=e.model.getters.getSelectedZone();return t.top===t.bottom?A(`Group row %s`,String(t.top+1)):A(`Group rows %s - %s`,String(t.top+1),String(t.bottom+1))},execute:e=>VN(e,`ROW`),isVisible:e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getSelectedZone(),r=e.model.getters.getHeaderGroupsInZone(t,`ROW`,n);return YC(e)&&!r.some(e=>e.start===n.top&&e.end===n.bottom)},icon:`o-spreadsheet-Icon.GROUP_ROWS`},zN={name:e=>{let t=e.model.getters.getSelectedZone();return t.left===t.right?A(`Ungroup column %s`,qt(t.left)):A(`Ungroup columns %s - %s`,qt(t.left),qt(t.right))},execute:e=>HN(e,`COL`),icon:`o-spreadsheet-Icon.UNGROUP_COLUMNS`},BN={name:e=>{let t=e.model.getters.getSelectedZone();return t.top===t.bottom?A(`Ungroup row %s`,String(t.top+1)):A(`Ungroup rows %s - %s`,String(t.top+1),String(t.bottom+1))},execute:e=>HN(e,`ROW`),icon:`o-spreadsheet-Icon.UNGROUP_ROWS`};function VN(e,t){let n=e.model.getters.getSelectedZone(),r=e.model.getters.getActiveSheetId();e.model.dispatch(`GROUP_HEADERS`,{sheetId:r,dimension:t,start:t===`COL`?n.left:n.top,end:t===`COL`?n.right:n.bottom})}function HN(e,t){let n=e.model.getters.getSelectedZone(),r=e.model.getters.getActiveSheetId();e.model.dispatch(`UNGROUP_HEADERS`,{sheetId:r,dimension:t,start:t===`COL`?n.left:n.top,end:t===`COL`?n.right:n.bottom})}function UN(e,t){let n=e.model.getters.getActiveSheetId(),r=e.model.getters.getSelectedZones();return r.length===1&&e.model.getters.getHeaderGroupsInZone(n,t,r[0]).length>0}let WN={name:e=>{let t=e.getStore(lN);return t.mainPanel&&t.mainPanel.isPinned?A(`Unpin the side panel`):A(`Pin the side panel`)},isVisible:e=>e.getStore(lN).isMainPanelOpen,execute:e=>{e.getStore(lN).togglePinPanel()},icon:`o-spreadsheet-Icon.THUMB_TACK`};function GN(e){let t=e.model.dispatch(`CUT`);t.isSuccessful||t.isCancelledBecause(H.WrongCutSelection)&&e.raiseError(A(`This operation is not allowed with multiple selections.`))}var KN=class extends B{replace(e,t){return t.id===void 0&&(t.id=e),this.content[e]=t,this}addChild(e,t,n){return this._replaceChild(e,t,n,{force:!1})}replaceChild(e,t,n){return this._replaceChild(e,t,n,{force:!0})}_replaceChild(e,t,n,r={force:!0}){typeof n!=`function`&&n.id===void 0&&(n.id=e);let i=t.splice(0,1)[0],a=this.content[i];if(!a)throw Error(`Path ${i+`:`+t.join(`:`)} not found`);for(let e of t){let n=a.children;if(!n||typeof n==`function`)throw Error(`${e} is either not a node or it's dynamically computed`);if(a=n.find(t=>t.id===e),!a)throw Error(`Path ${i+`:`+t.join(`:`)} not found`)}a.children||=[];let o=a.children;if(!o||typeof o==`function`)throw Error(`${t} is either not a node or it's dynamically computed`);if(`id`in n){let e=o.findIndex(e=>`id`in e&&e.id===n.id);if(e>-1){if(!r.force)throw Error(`A child with the id "${n.id}" already exists.`);return a.children.splice(e,1,n),this}}return a.children.push(n),this}getMenuItems(){return p(this.getAll())}};let qN={MergeIsDestructive:A(`Merging these cells will only preserve the top-leftmost value. Merge anyway?`),MergeInFilter:A(`You can't merge cells inside of an existing filter.`)};function JN(e,t,n){let r=e.model.dispatch(`ADD_MERGE`,{sheetId:t,target:n});r.isCancelledBecause(H.MergeInTable)?e.raiseError(qN.MergeInFilter):r.isCancelledBecause(H.MergeIsDestructive)&&e.askConfirmation(qN.MergeIsDestructive,()=>{e.model.dispatch(`ADD_MERGE`,{sheetId:t,target:n,force:!0})})}let YN={name:A(`Undo`),shortcut:`Ctrl+Z`,execute:e=>e.model.dispatch(`REQUEST_UNDO`),isEnabled:e=>e.model.getters.canUndo(),isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.UNDO`},XN={name:A(`Redo`),shortcut:`Ctrl+Y`,execute:e=>e.model.dispatch(`REQUEST_REDO`),isEnabled:e=>e.model.getters.canRedo(),isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.REDO`},ZN={name:A(`Copy`),shortcut:`Ctrl+C`,isReadonlyAllowed:!0,execute:async e=>{e.model.dispatch(`COPY`),await e.clipboard.write(await e.model.getters.getClipboardTextAndImageContent())},isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.CLIPBOARD`},QN={name:A(`Cut`),shortcut:`Ctrl+X`,execute:async e=>{GN(e),await e.clipboard.write(await e.model.getters.getClipboardTextAndImageContent())},icon:`o-spreadsheet-Icon.CUT`},$N={name:A(`Paste`),shortcut:`Ctrl+V`,execute:dC,icon:`o-spreadsheet-Icon.PASTE`},eP={name:A(`Paste special`),isVisible:e=>!e.model.getters.isCutOperation(),icon:`o-spreadsheet-Icon.PASTE`},tP={name:A(`Paste as value`),shortcut:`Ctrl+Shift+V`,execute:fC},nP={name:A(`Paste format only`),execute:mC},rP={name:A(`Find and replace`),shortcut:`Ctrl+H`,isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0,execute:e=>{e.openSidePanel(`FindAndReplace`,{})},isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.SEARCH`},iP={name:A(`Delete values`),execute:e=>e.model.dispatch(`DELETE_UNFILTERED_CONTENT`,{sheetId:e.model.getters.getActiveSheetId(),target:e.model.getters.getSelectedZones()})},aP={name:yC,execute:bC,isVisible:e=>xC(`ROW`,e)},oP={...aP,isVisible:YC},sP={name:hC,execute:gC},cP={name:SC,execute:wC,isVisible:e=>xC(`COL`,e)},lP={...cP,isVisible:YC},uP={name:_C,execute:vC},dP={name:A(`Delete cells`),isVisible:YC},fP={name:A(`Delete cell and shift up`),execute:e=>{let t=e.model.getters.getSelectedZone();PS(e,e.model.dispatch(`DELETE_CELL`,{zone:t,shiftDimension:`ROW`}))}},pP={name:A(`Delete cell and shift left`),execute:e=>{let t=e.model.getters.getSelectedZone();PS(e,e.model.dispatch(`DELETE_CELL`,{zone:t,shiftDimension:`COL`}))}},mP={name:A(`Merge cells`),isEnabled:e=>!_P(e),isActive:e=>vP(e),execute:e=>yP(e),icon:`o-spreadsheet-Icon.MERGE_CELL`},hP={name:()=>A(`Edit table`),execute:e=>e.openSidePanel(`TableSidePanel`,{}),icon:`o-spreadsheet-Icon.EDIT_TABLE`},gP={name:()=>A(`Delete table`),execute:JC,icon:`o-spreadsheet-Icon.DELETE_TABLE`};function _P(e){let t=e.model.getters.getSelectedZones(),{sheetId:n}=e.model.getters.getActivePosition(),{xSplit:r,ySplit:i}=e.model.getters.getPaneDivisions(n);return t.every(e=>Kn(e)===1)||Jn(t,r,i)||An(t)}function vP(e){if(_P(e))return!1;let t=e.model.getters.getActiveSheetId();return e.model.getters.getSelectedZones().some(n=>e.model.getters.getMergesInZone(t,n).length>0)}function yP(e){if(_P(e))return;let t=e.model.getters.getSelectedZones(),n=e.model.getters.getActiveSheetId();if(vP(e)){let r=t.flatMap(t=>e.model.getters.getMergesInZone(n,t));e.model.dispatch(`REMOVE_MERGE`,{sheetId:n,target:r})}else JN(e,n,t)}let bP={name:A(`See pivot properties`),execute(e){let t=e.model.getters.getActivePosition(),n=e.model.getters.getPivotIdFromPosition(t);e.openSidePanel(`PivotSidePanel`,{pivotId:n})},isVisible:e=>{let t=e.model.getters.getActivePosition(),n=e.model.getters.getPivotIdFromPosition(t);return!e.isSmall&&n&&e.model.getters.isExistingPivot(n)||!1},isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.PIVOT`},xP={name:A(`Ascending`),execute:e=>NP(e,e.model.getters.getActivePosition(),`asc`),isActive:e=>e.model.getters.getPivotCellSortDirection(e.model.getters.getActivePosition())===`asc`},SP={name:A(`Descending`),execute:e=>NP(e,e.model.getters.getActivePosition(),`desc`),isActive:e=>e.model.getters.getPivotCellSortDirection(e.model.getters.getActivePosition())===`desc`},CP={name:A(`No sorting`),execute:e=>NP(e,e.model.getters.getActivePosition(),`none`),isActive:e=>e.model.getters.getPivotCellSortDirection(e.model.getters.getActivePosition())===`none`},wP={name:A(`Convert to individual formulas`),execute(e){let t=e.model.getters.getActivePosition(),n=e.model.getters.getCorrespondingFormulaCell(t),r=e.model.getters.getPivotIdFromPosition(t);if(!n||!r)return;let{sheetId:i,col:a,row:o}=e.model.getters.getCellPosition(n.id),s=e.model.getters.getPivot(r);s.init(),s.isValid()&&e.model.dispatch(`SPLIT_PIVOT_FORMULA`,{sheetId:i,col:a,row:o,pivotId:r})},isVisible:e=>{let t=e.model.getters.getActivePosition(),n=e.model.getters.getPivotIdFromPosition(t);if(!n)return!1;let r=e.model.getters.getPivot(n),i=e.model.getters.getEvaluatedCell(t);return r.isValid()&&e.model.getters.isSpillPivotFormula(t)&&i.type!==V.error},icon:`o-spreadsheet-Icon.PIVOT`},TP={name:A(`Group pivot dimensions`),execute:e=>{let t=PP(e);if(!t)return;let{pivotId:n,values:r,field:i}=t,a=e.model.getters.getPivot(n),o=x(e.model.getters.getPivotCoreDefinition(n));if(!i.isCustomField)FP(o,r,i,a.getFields());else{let e=(o.customFields||{})[i.name];if(!e)return;IP(e,r)}e.model.dispatch(`UPDATE_PIVOT`,{pivotId:n,pivot:o})},isVisible:e=>{let t=PP(e);if(!t)return!1;let{pivotId:n,values:r,field:i}=t,a=e.model.getters.getPivot(n);return r.length>1&&(i.isCustomField||eM.get(a.type).canHaveCustomGroup(i))}},EP={name:A(`Group all remaining dimensions`),execute:e=>{let t=PP(e);if(!t)return;let{pivotId:n,field:r}=t,i=e.model.getters.getPivot(n),a=x(e.model.getters.getPivotCoreDefinition(n)),o=r.isCustomField?(a.customFields||{})[r.name]:eS(a,r,i.getFields());o&&(o.groups.push({name:Yx(A(`Others`),o),values:[],isOtherGroup:!0}),$x(a,r.name,o.name),e.model.dispatch(`UPDATE_PIVOT`,{pivotId:n,pivot:a}))},isVisible:e=>{let t=PP(e);if(!t)return!1;let{pivotId:n,field:r,values:i}=t;return zP(e,n,i,r)}},DP={name:A(`Ungroup pivot dimensions`),execute:e=>{let t=PP(e);if(!t)return;let{pivotId:n,values:r,field:i}=t,a=e.model.getters.getPivot(n),o=x(e.model.getters.getPivotCoreDefinition(n));LP(o,r,i,a.getFields()),e.model.dispatch(`UPDATE_PIVOT`,{pivotId:n,pivot:o})},isVisible:e=>{let t=PP(e);if(!t)return!1;let{pivotId:n,values:r,field:i}=t,a=e.model.getters.getPivot(n),o=e.model.getters.getPivotCoreDefinition(n);if(!i.isCustomField){let e=eS(o,i,a.getFields());if(![...o.rows,...o.columns].some(t=>t.fieldName===e.name))return!1}return RP(o,r,i,a.getFields())}},OP={name:e=>{let t=e.model.getters.getActivePosition(),n=jP(e.model.getters,t);return n.isPivotGroup?n.isCollapsed?A(`Expand`):A(`Collapse`):``},execute(e){tS(e.model.getters.getActivePosition(),e)},isVisible:e=>{let t=e.model.getters.getActivePosition(),n=jP(e.model.getters,t),r=e.model.getters.getPivotStyleAtPosition(t);return n.isPivotGroup&&!r?.pivotStyle.tabularForm}},kP={name:A(`Collapse all`),execute(e){let t=e.model.getters.getActivePosition(),n=jP(e.model.getters,t);if(!n.isPivotGroup)return;let{pivotCell:r,pivotId:i,siblingDomains:a}=n,o=x(e.model.getters.getPivotCoreDefinition(i));o.collapsedDomains=o.collapsedDomains||{COL:[],ROW:[]};let s=[...o.collapsedDomains[r.dimension]||[],...a],c=s.filter((e,t)=>t===s.findIndex(t=>T(t,e)));o.collapsedDomains[r.dimension]=c,e.model.dispatch(`UPDATE_PIVOT`,{pivotId:i,pivot:o})},isVisible:e=>{let t=e.model.getters.getActivePosition(),n=jP(e.model.getters,t),r=e.model.getters.getPivotStyleAtPosition(t);if(!n.isPivotGroup||r?.pivotStyle.tabularForm)return!1;let{pivotCell:i,pivotId:a,siblingDomains:o}=n,s=e.model.getters.getPivotCoreDefinition(a);return!o.every(e=>(s.collapsedDomains?.[i.dimension]||[]).some(t=>T(t,e)))}},AP={name:A(`Expand all`),execute(e){let t=e.model.getters.getActivePosition(),n=jP(e.model.getters,t);if(!n.isPivotGroup)return;let{pivotCell:r,pivotId:i,siblingDomains:a}=n,o=x(e.model.getters.getPivotCoreDefinition(i));o.collapsedDomains=o.collapsedDomains||{COL:[],ROW:[]};let s=(o.collapsedDomains[r.dimension]||[]).filter(e=>!a.find(t=>T(t,e)));o.collapsedDomains[r.dimension]=s,e.model.dispatch(`UPDATE_PIVOT`,{pivotId:i,pivot:o})},isVisible:e=>{let t=e.model.getters.getActivePosition(),n=jP(e.model.getters,t),r=e.model.getters.getPivotStyleAtPosition(t);if(!n.isPivotGroup||r?.pivotStyle.tabularForm)return!1;let{pivotCell:i,pivotId:a,siblingDomains:o}=n;return(e.model.getters.getPivotCoreDefinition(a).collapsedDomains?.[i.dimension]||[]).some(e=>o.some(t=>T(t,e)))}};function jP(e,t){if(!e.isSpillPivotFormula(t))return{isPivotGroup:!1};let n=e.getPivotCellFromPosition(t),r=e.getPivotIdFromPosition(t);if(n.type!==`HEADER`||!r||!n.domain.length)return{isPivotGroup:!1};let i=e.getPivotCoreDefinition(r),a=e.isDashboard(),o=n.dimension===`COL`?i.columns:i.rows;if(!(!a&&n.domain.length!==o.length))return{isPivotGroup:!1};let s=(i.collapsedDomains?.[n.dimension]??[]).some(e=>T(e,n.domain)),c=e.getPivot(r).getExpandedTableStructure(),l=n.domain.length-1;return{isPivotGroup:!0,isCollapsed:s,pivotCell:n,pivotId:r,siblingDomains:n.dimension===`ROW`?c.getRowDomainsAtDepth(l):c.getColumnDomainsAtDepth(l)}}function MP(e,t){let n=e.getPivotIdFromPosition(t);if(!n||!e.isExistingPivot(n)||!e.isSpillPivotFormula(t)||!e.getPivot(n).isValid())return!1;let r=e.getPivotCellFromPosition(t);return r.type===`VALUE`||r.type===`MEASURE_HEADER`}function NP(e,t,n){let r=e.model.getters.getPivotIdFromPosition(t),i=e.model.getters.getPivotCellFromPosition(t);if(i.type===`EMPTY`||i.type===`HEADER`||i.type===`ROW_GROUP_NAME`||!r)return;if(n===`none`){e.model.dispatch(`UPDATE_PIVOT`,{pivotId:r,pivot:{...e.model.getters.getPivotCoreDefinition(r),sortedColumn:void 0}});return}let a=wj(e.model.getters.getPivot(r),i.domain).colDomain;e.model.dispatch(`UPDATE_PIVOT`,{pivotId:r,pivot:{...e.model.getters.getPivotCoreDefinition(r),sortedColumn:{domain:a,order:n,measure:i.measure}}})}function PP(e){let t,n,r=[];for(let i of e.model.getters.getSelectedZones()){let a=e.model.getters.getActiveSheetId();for(let o of Ln(a,i)){let i=e.model.getters.getPivotIdFromPosition(o);if(!t)t=i;else if(i&&t!==i)return;if(!t)continue;let a=e.model.getters.getPivotCellFromPosition(o);if(a.type!==`HEADER`||!e.model.getters.isSpillPivotFormula(o))continue;let s=a.domain.at(-1)?.field;if(!n&&s)n=s;else if(n&&s&&n!==s)return;r.push(a)}}if(!t||!n||r.length===0)return;let i=e.model.getters.getPivot(t).getFields()[n];if(!i)return;let a=r.map(e=>e.domain.at(-1)?.value).filter(e=>e!==void 0);return{pivotId:t,values:a,field:i}}function FP(e,t,n,r){let i=eS(e,n,r);Qx(t,i);let a={name:Yx(A(`Group`),i),values:t};i.groups.push(a),e.customFields||={},e.customFields[i.name]=i,$x(e,n.name,i.name)}function IP(e,t){let n=new Set,r=[];for(let i of t){let t=e.groups.find(e=>e.name===i);t?(r.push(t),t.values.forEach(e=>n.add(e))):n.add(i)}if(r.some(e=>e.isOtherGroup))e.groups=e.groups.filter(e=>e.isOtherGroup||!r.includes(e));else if(r.length===0){let n={name:Yx(A(`Group`),e),values:t};e.groups.push(n)}else{let t=r.slice(1);e.groups=e.groups.filter(e=>!t.includes(e)),r[0].values=Array.from(n)}}function LP(e,t,n,r){let i;if(!n.isCustomField)i=eS(e,n,r),i.groups.some(e=>e.isOtherGroup)&&t.some(e=>!i?.groups.some(t=>t.values.includes(e)))&&(i.groups=i.groups.filter(e=>!e.isOtherGroup)),Qx(t,i);else{if(i=(e.customFields||{})[n.name],!i)return;i.groups=i.groups.filter(e=>!t.includes(e.name))}i.groups.every(e=>e.values.length===0&&!e.isOtherGroup)&&(BP(e,i.name),delete e.customFields?.[i.name])}function RP(e,t,n,r){if(n.isCustomField){let r=(e.customFields||{})[n.name];return r?r.groups.some(e=>t.includes(e.name)):!1}else return eS(e,n,r).groups.some(e=>e.isOtherGroup||t.some(t=>e.values.includes(t)))}function zP(e,t,n,r){let i=e.model.getters.getPivot(t),a=e.model.getters.getPivotCoreDefinition(t),o=r.isCustomField?(a.customFields||{})[r.name]:Object.values(a.customFields||{}).find(e=>e.parentField===r.name),s=i.definition.getDimension(r.name);if(!s||!o||RP(a,n,r,i.getFields()))return!1;let c=new Set(i.getPossibleFieldValues(s).map(e=>e.value)),l=r.isCustomField?o.groups.map(e=>e.name):o.groups.flatMap(e=>e.values);for(let e of[...n,...l])c.delete(e);return c.size===0}function BP(e,t){let n=e.customFields?.[t];if(!n)return;let r=[...e.rows,...e.columns].some(e=>e.fieldName===n.parentField);for(let i of[e.rows,e.columns]){let e=i.findIndex(e=>e.fieldName===t);e!==-1&&(r?i.splice(e,1):i.splice(e,1,{fieldName:n.parentField}))}}let VP=new KN;VP.add(`cut`,{...QN,sequence:10}).add(`copy`,{...ZN,sequence:20}).add(`paste`,{...$N,sequence:30}).add(`paste_special`,{...eP,sequence:40,separator:!0}).addChild(`paste_value_only`,[`paste_special`],{...tP,sequence:10}).addChild(`paste_format_only`,[`paste_special`],{...nP,sequence:20}).add(`add_row_before`,{...tw,sequence:70}).add(`add_column_before`,{...sw,sequence:90}).add(`insert_cell`,{...uw,sequence:100,separator:!0}).addChild(`insert_cell_down`,[`insert_cell`],{...dw,name:A(`Shift down`),sequence:10}).addChild(`insert_cell_right`,[`insert_cell`],{...fw,name:A(`Shift right`),sequence:20}).add(`delete_row`,{...oP,sequence:110,icon:`o-spreadsheet-Icon.TRASH`}).add(`delete_column`,{...lP,sequence:120,icon:`o-spreadsheet-Icon.TRASH`}).add(`delete_cell`,{...dP,sequence:130,separator:!0,icon:`o-spreadsheet-Icon.TRASH`}).addChild(`delete_cell_up`,[`delete_cell`],{...fP,name:A(`Shift up`),sequence:10,icon:`o-spreadsheet-Icon.DELETE_CELL_SHIFT_UP`}).addChild(`delete_cell_left`,[`delete_cell`],{...pP,name:A(`Shift left`),sequence:20,icon:`o-spreadsheet-Icon.DELETE_CELL_SHIFT_LEFT`}).add(`edit_table`,{...hP,isVisible:UC,isEnabled:e=>!e.isSmall,sequence:140}).add(`delete_table`,{...gP,isVisible:UC,sequence:145,separator:!0}).add(`insert_link`,{...Dw,name:VC,sequence:150,separator:!0}).add(`pivot_headers_group`,{sequence:155,icon:`o-spreadsheet-Icon.PLUS_IN_BOX`,...TP}).add(`pivot_group_remaining`,{sequence:155,icon:`o-spreadsheet-Icon.PLUS_IN_BOX`,...EP}).add(`pivot_headers_ungroup`,{sequence:155,icon:`o-spreadsheet-Icon.MINUS_IN_BOX`,...DP}).add(`collapse_pivot`,{sequence:156,name:A(`Expand/Collapse`),icon:`o-spreadsheet-Icon.COLLAPSE`}).addChild(`toggle_collapse_pivot_cell`,[`collapse_pivot`],{sequence:10,...OP}).addChild(`collapse_all_pivot`,[`collapse_pivot`],{sequence:20,...kP}).addChild(`expand_all_pivot`,[`collapse_pivot`],{sequence:30,...AP}).add(`pivot_sorting`,{name:A(`Sort pivot`),sequence:155,icon:`o-spreadsheet-Icon.SORT_RANGE`,isVisible:e=>{let t=e.model.getters.getActivePosition();return MP(e.model.getters,t)}}).add(`pivot_fix_formulas`,{...wP,sequence:160}).add(`pivot_properties`,{...bP,sequence:170,separator:!0}).addChild(`pivot_sorting_asc`,[`pivot_sorting`],{...xP,sequence:10}).addChild(`pivot_sorting_desc`,[`pivot_sorting`],{...SP,sequence:20}).addChild(`pivot_sorting_none`,[`pivot_sorting`],{...CP,sequence:30});function HP(e,t,n,r,i){let a=r.right>r.left;if(e.model.getters.doesIntersectMerge(t,r)){a=!1;let n;for(let i=r.top;i<=r.bottom;i++){n=[];for(let a=r.left;a<=r.right;a++){let r=e.model.getters.getMerge({sheetId:t,col:a,row:i});r&&!n.includes(r.id.toString())&&n.push(r.id.toString())}if(n.length>=2){a=!0;break}}}if(a){UP(e,t,n,r,i);return}let o=e.model.getters.getContiguousZone(t,r);On(o,r)?UP(e,t,n,r,i):e.askConfirmation(A(`We found data next to your selection. Since this data was not selected, it will not be sorted. Do you want to extend your selection?`),()=>UP(e,t,n,o,i),()=>UP(e,t,n,r,i))}function UP(e,t,n,r,i,a){let o=e.model.dispatch(`SORT_CELLS`,{sheetId:t,col:n.col,row:n.row,zone:r,sortDirection:i,sortOptions:a});if(o.isCancelledBecause(H.InvalidSortZone)){let{col:t,row:i}=n;e.model.selection.selectZone({cell:{col:t,row:i},zone:r}),e.raiseError(A(`Cannot sort. To sort, select only cells or only merges that have the same size.`))}if(o.isCancelledBecause(H.SortZoneWithArrayFormulas)){let{col:t,row:i}=n;e.model.selection.selectZone({cell:{col:t,row:i},zone:r}),e.raiseError(A(`Cannot sort a zone with array formulas.`))}}let WP={name:A(`Sort range`),isVisible:YC,icon:`o-spreadsheet-Icon.SORT_RANGE`},GP={name:A(`Ascending (A ⟶ Z)`),execute:e=>{let{anchor:t,zones:n}=e.model.getters.getSelection();HP(e,e.model.getters.getActiveSheetId(),t.cell,n[0],`asc`)},icon:`o-spreadsheet-Icon.SORT_ASCENDING`},KP={name:A(`Data cleanup`),icon:`o-spreadsheet-Icon.DATA_CLEANUP`},qP={name:A(`Remove duplicates`),execute:e=>{Kn(e.model.getters.getSelectedZone())===1&&e.model.selection.selectTableAroundSelection(),e.openSidePanel(`RemoveDuplicates`,{})},isEnabled:e=>!e.isSmall},JP={name:A(`Trim whitespace`),execute:e=>{e.model.dispatch(`TRIM_WHITESPACE`)}},YP={name:A(`Descending (Z ⟶ A)`),execute:e=>{let{anchor:t,zones:n}=e.model.getters.getSelection();HP(e,e.model.getters.getActiveSheetId(),t.cell,n[0],`desc`)},icon:`o-spreadsheet-Icon.SORT_DESCENDING`},XP={...ZC},ZP={...ZC,isActive:e=>HC(e)},QP={name:A(`Split text to columns`),sequence:1,execute:e=>e.openSidePanel(`SplitToColumns`,{}),isEnabled:e=>!e.isSmall&&e.model.getters.isSingleColSelected(),icon:`o-spreadsheet-Icon.SPLIT_TEXT`},$P={name:A(`Column statistics`),execute:e=>e.openSidePanel(`ColumnStats`,{}),icon:`o-spreadsheet-Icon.COLUMN_STATS`},eF={id:`reinsert_dynamic_pivot`,name:A(`Re-insert dynamic pivot`),sequence:60,icon:`o-spreadsheet-Icon.INSERT_PIVOT`,children:[FC],isVisible:e=>e.model.getters.getPivotIds().some(t=>e.model.getters.getPivot(t).isValid())},tF={id:`reinsert_static_pivot`,name:A(`Re-insert static pivot`),sequence:70,icon:`o-spreadsheet-Icon.INSERT_PIVOT`,children:[IC],isVisible:e=>e.model.getters.getPivotIds().some(t=>e.model.getters.getPivot(t).isValid())},nF=new KN;nF.add(`cut`,{...QN,sequence:10}).add(`copy`,{...ZN,sequence:20}).add(`paste`,{...$N,sequence:30}).add(`paste_special`,{...eP,sequence:40,separator:!0}).addChild(`paste_value_only`,[`paste_special`],{...tP,sequence:10}).addChild(`paste_format_only`,[`paste_special`],{...nP,sequence:20}).add(`sort_columns`,{...WP,name:e=>e.model.getters.getActiveCols().size>1?A(`Sort columns`):A(`Sort column`),sequence:50,separator:!0}).addChild(`sort_ascending`,[`sort_columns`],{...GP,sequence:10}).addChild(`sort_descending`,[`sort_columns`],{...YP,sequence:20}).add(`column_statistics`,{...$P,sequence:60,separator:!0}).add(`add_column_before`,{...aw,sequence:70}).add(`add_column_after`,{...cw,sequence:80}).add(`delete_column`,{...cP,sequence:90,icon:`o-spreadsheet-Icon.TRASH`}).add(`clear_column`,{...uP,sequence:100,icon:`o-spreadsheet-Icon.CLEAR`}).add(`hide_columns`,{..._N,sequence:105,separator:!0}).add(`unhide_columns`,{...vN,sequence:106,separator:!0}).add(`conditional_formatting`,{...IA,sequence:110,separator:!0}).add(`edit_table`,{...hP,isVisible:UC,sequence:120}).add(`delete_table`,{...gP,isVisible:UC,sequence:125,separator:!0}).add(`group_columns`,{sequence:150,...LN}).add(`ungroup_columns`,{sequence:155,...zN,isVisible:e=>UN(e,`COL`)});let rF={CannotHideAllRows:A(`Cannot hide all the rows of a sheet.`),CannotHideAllColumns:A(`Cannot hide all the columns of a sheet.`)};function iF(e,t,n,r,i){let a=e.model.getters.getHeaderGroup(t,n,r,i);if(!a)return;let o=a.isFolded?`UNFOLD_HEADER_GROUP`:`FOLD_HEADER_GROUP`,s=e.model.dispatch(o,{sheetId:t,dimension:n,start:a.start,end:a.end});if(!s.isSuccessful&&s.isCancelledBecause(H.NotEnoughElements)){let t=n===`ROW`?rF.CannotHideAllRows:rF.CannotHideAllColumns;e.raiseError(t)}}function aF(e,t){return p([{id:`unfold_all`,name:A(t===`ROW`?`Expand all row groups`:`Expand all column groups`),execute:n=>{n.model.dispatch(`UNFOLD_ALL_HEADER_GROUPS`,{sheetId:e,dimension:t})},icon:`o-spreadsheet-Icon.EXPAND`},{id:`fold_all`,name:A(t===`ROW`?`Collapse all row groups`:`Collapse all column groups`),execute:n=>{n.model.dispatch(`FOLD_ALL_HEADER_GROUPS`,{sheetId:e,dimension:t})},icon:`o-spreadsheet-Icon.COLLAPSE`}])}function oF(e,t,n,r){return[...p([{id:`toggle_group`,name:e=>{let i=e.model.getters.getActiveSheetId();return e.model.getters.isGroupFolded(i,t,n,r)?A(t===`ROW`?`Expand row group`:`Expand column group`):A(t===`ROW`?`Collapse row group`:`Collapse column group`)},execute:e=>{iF(e,e.model.getters.getActiveSheetId(),t,n,r)},icon:e=>{let i=e.model.getters.getActiveSheetId();return e.model.getters.isGroupFolded(i,t,n,r)?`o-spreadsheet-Icon.EXPAND`:`o-spreadsheet-Icon.COLLAPSE`}},{id:`remove_group`,name:A(t===`ROW`?`Remove row group`:`Remove column group`),execute:e=>{let i=e.model.getters.getActiveSheetId();e.model.dispatch(`UNGROUP_HEADERS`,{sheetId:i,dimension:t,start:n,end:r})},icon:`o-spreadsheet-Icon.TRASH`,separator:!0}]),...aF(e,t)]}let sF=new KN;sF.add(`group_columns`,{sequence:10,...LN,isVisible:()=>!0,isEnabled:LN.isVisible}).add(`group_rows`,{sequence:20,...RN,isVisible:()=>!0,isEnabled:RN.isVisible});let cF=new KN;cF.add(`ungroup_columns`,{sequence:10,...zN,isEnabled:e=>UN(e,`COL`)}).add(`ungroup_rows`,{sequence:20,...BN,isEnabled:e=>UN(e,`ROW`)});let lF=new KN;lF.add(`cut`,{...QN,sequence:10}).add(`copy`,{...ZN,sequence:20}).add(`paste`,{...$N,sequence:30}).add(`paste_special`,{...eP,sequence:40,separator:!0}).addChild(`paste_value_only`,[`paste_special`],{...tP,sequence:10}).addChild(`paste_format_only`,[`paste_special`],{...nP,sequence:20}).add(`add_row_before`,{...$C,sequence:50}).add(`add_row_after`,{...nw,sequence:60}).add(`delete_row`,{...aP,sequence:70,icon:`o-spreadsheet-Icon.TRASH`}).add(`clear_row`,{...sP,sequence:80,icon:`o-spreadsheet-Icon.CLEAR`}).add(`hide_rows`,{...bN,sequence:85,separator:!0}).add(`unhide_rows`,{...xN,sequence:86,separator:!0}).add(`conditional_formatting`,{...IA,sequence:90,separator:!0}).add(`group_rows`,{sequence:100,...RN}).add(`ungroup_rows`,{sequence:110,...BN,isVisible:e=>UN(e,`ROW`)});var uF=class extends fr{highlightStore=this.get(oT);constructor(e){super(e),this.highlightStore.register(this)}get highlights(){let e=this.model.getters.getActivePosition(),t=this.model.getters.getArrayFormulaSpreadingOn(e),n=t?this.model.getters.getSpreadZone(t,{ignoreSpillError:!0}):this.model.getters.getSpreadZone(e,{ignoreSpillError:!0});if(!n)return[];let r=this.getters.getPivotStyleAtPosition(e);if(r?.pivotStyle?.tableStyleId&&r.pivotStyle.tableStyleId!==`None`)return[];let i=this.model.getters.isArrayFormulaSpillBlocked(t??e);return[{range:this.model.getters.getRangeFromZone(e.sheetId,n),dashed:i,color:`#17A2B8`,noFill:!0,thinLine:!0}]}},dF=class extends fr{mutators=[`focusClient`,`unfocusClient`,`showClientTag`,`hideClientTag`,`jumpToClient`];_showClientTag=!1;clientFocusTimeout={};constructor(e){super(e),this.onDispose(()=>{for(let e in this.clientFocusTimeout)this.unfocusClient(e)})}get focusedClients(){let e=new Set;return this.model.getters.getConnectedClients().forEach(t=>{(this._showClientTag||this.clientFocusTimeout[t.id]!==void 0)&&e.add(t.id)}),e}jumpToClient(e){let t=this.model.getters.getClient(e);this.focusClient(e),t.position&&(this.model.dispatch(`ACTIVATE_SHEET`,{sheetIdTo:t.position.sheetId,sheetIdFrom:this.getters.getActiveSheetId()}),this.model.dispatch(`SCROLL_TO_CELL`,{col:t.position.col,row:t.position.row}))}showClientTag(){this._showClientTag=!0}hideClientTag(){this._showClientTag=!1}focusClient(e){this.clientFocusTimeout[e]&&clearTimeout(this.clientFocusTimeout[e]),this.clientFocusTimeout[e]=setTimeout(()=>this.unfocusClient(e),3e3)}unfocusClient(e){this.clientFocusTimeout[e]&&clearTimeout(this.clientFocusTimeout[e]),this.clientFocusTimeout[e]=void 0}};function fF(e){return 20+120*Math.exp(-.035*(e-1))}function pF(e){let n=null,r,i,a,o,s=`all`,c=e.model.getters,l=e=>e.preventDefault(),u=()=>removeEventListener(`keydown`,l,{capture:!0}),d=[],f=()=>{clearTimeout(n),n=null,d.forEach(e=>e()),d=[]},p,m,h=t=>{if(r=t,n)return;let l=c.getActiveSheetId(),u=lm(e.model.getters.getViewportZoomLevel()),d=Am(e,r,u),{x:f,y:m}=c.getMainViewportCoordinates(),{top:g,left:_,bottom:v,right:y}=c.getActiveMainViewport(),{scrollX:b,scrollY:ee}=c.getActiveSheetScrollInfo(),{xSplit:te,ySplit:ne}=c.getPaneDivisions(l),re=!1,ie=140,ae=d.clientX-u.x,oe=c.getColIndex(ae);if(s!==`vertical`){let t=i.clientX-u.x,n=c.getEdgeScrollCol(ae,t,a);if(n.canEdgeScroll){re=!0,ie=Math.min(ie,n.delay);let t=oe;switch(n.direction){case`reset`:oe=t=te;break;case 1:oe=y,t=_+1;break;case-1:for(oe=_-1;e.model.getters.isColHidden(l,oe);)oe--;t=oe;break}b=c.getColDimensions(l,t).start-f}}let se=d.clientY-u.y,ce=c.getRowIndex(se);if(s!==`horizontal`){let t=i.clientY-u.y,n=c.getEdgeScrollRow(se,t,o);if(n.canEdgeScroll){re=!0,ie=Math.min(ie,n.delay);let t=ce;switch(n.direction){case`reset`:ce=t=ne;break;case 1:ce=v,t=g+1;break;case-1:for(ce=g-1;e.model.getters.isRowHidden(l,ce);)ce--;t=ce;break}ee=e.model.getters.getRowDimensions(l,t).start-m}}re||(oe=mF(oe,ae,c.getNumberCols(l)-1),ce=mF(ce,se,c.getNumberRows(l)-1)),p?.(oe,ce,r),re&&(e.model.dispatch(`SET_VIEWPORT_OFFSET`,{offsetX:b,offsetY:ee}),n=setTimeout(()=>{n=null,h(r)},Math.round(ie))),i={clientX:d.clientX,clientY:d.clientY}},g=()=>{m?.(),f()};return(0,t.onWillUnmount)(()=>{f()}),(0,t.useEffect)(()=>{f()},()=>[c.getActiveSheetId()]),{start:(t,n,r,c=`all`)=>{f();let _=lm(e.model.getters.getViewportZoomLevel());s=c,a=t.clientX-_.x,o=t.clientY-_.y,i={clientX:t.clientX,clientY:t.clientY},p=n,m=r,addEventListener(`keydown`,l,{capture:!0}),d.push(Pw(h,g),u)}}}function mF(e,t,n){return e===-1?t<0?0:n:e}var hF=class extends t.Component{static template=`o-spreadsheet-Autofill`;static props={position:Object,isVisible:Boolean};state=(0,t.useState)({position:{x:0,y:0},handler:!1});dragNDropGrid=pF(this.env);get style(){let{x:e,y:t}=this.props.position;return W({top:`${t}px`,left:`${e}px`,visibility:this.props.isVisible?`visible`:`hidden`})}get handlerStyle(){let{x:e,y:t}=this.state.handler?this.state.position:this.props.position;return W({top:`${t}px`,left:`${e}px`})}get styleNextValue(){let{x:e,y:t}=this.state.position;return W({top:`${t+5}px`,left:`${e+15}px`})}getTooltip(){let e=this.env.model.getters.getAutofillTooltip();return e&&!e.component&&(e.component=gF),e}onMouseDown(e){this.state.handler=!0;let t=Am(this.env,e),n=this.env.model.getters.getViewportZoomLevel(),r,i,a={x:e.clientX/n-this.props.position.x,y:e.clientY/n-this.props.position.y};this.dragNDropGrid.start(t,(e,t,o)=>{if(this.state.position={x:o.clientX/n-a.x,y:o.clientY/n-a.y},r!==e||i!==t){let n=this.env.model.getters.getActiveSheetId(),a=this.env.model.getters.getNumberCols(n),o=this.env.model.getters.getNumberRows(n);r=e===-1?r:S(e,0,a),i=t===-1?i:S(t,0,o),r!==void 0&&i!==void 0&&this.env.model.dispatch(`AUTOFILL_SELECT`,{col:r,row:i})}},()=>{this.state.handler=!1,this.state.position={...this.props.position},this.env.model.dispatch(`AUTOFILL`)})}onDblClick(){this.env.model.dispatch(`AUTOFILL_AUTO`)}},gF=class extends t.Component{static props={content:String};static template=t.xml`
87
+ <div t-out="props.content"/>
88
+ `},_F=class extends t.Component{static template=`o-spreadsheet-ClientTag`;static props={active:Boolean,name:String,color:String,col:Number,row:Number};get tagStyle(){let{col:e,row:t,color:n}=this.props,{height:r}=this.env.model.getters.getSheetViewDimensionWithHeaders(),i=this.env.model.getters.isVisibleInViewport({sheetId:this.env.model.getters.getActiveSheetId(),col:e,row:t}),{x:a,y:o}=this.env.model.getters.getVisibleRect({left:e,top:t,right:e,bottom:t});return W({bottom:`${r-o+15}px`,left:`${a-1}px`,border:`1px solid ${n}`,"background-color":n,visibility:i?`visible`:`hidden`})}};let vF=[`*`,`+`,`&`];function yF(e,t=60){return`=`+DF(MF(e),t-1)}function bF(){return{type:`insertLine`}}function xF(e,t){return{type:`nest`,indentLevel:e,doc:t}}function SF(e){return{type:`concat`,docs:e}}function CF(e){return wF(TF(e),e)}function wF(e,t){return{type:`chooseBetween`,doc1:e,doc2:t}}function TF(e){return typeof e==`string`?e:e.type===`chooseBetween`?TF(e.doc1):e.type===`concat`?SF(e.docs.map(TF)):e.type===`nest`?{type:`nest`,indentLevel:e.indentLevel,doc:TF(e.doc)}:e.type===`insertLine`?``:e}let EF=At(function(e){return`
89
+ `+` `.repeat(e)});function DF(e,t){return OF(kF(t,e))}function OF(e){let t=``;for(;e;)t+=e.subString,e=e.next;return t}function kF(e,t){return AF(e,0,{indentLevel:0,doc:t,next:null})}function AF(e,t,n){if(n===null)return null;let{indentLevel:r,doc:i,next:a}=n;if(typeof i==`string`)return{subString:i,next:AF(e,t+i.length,a)};if(i.type===`concat`){let n=a;for(let e=i.docs.length-1;e>=0;e--)n={indentLevel:r,doc:i.docs[e],next:n};return AF(e,t,n)}if(i.type===`nest`)return AF(e,t,{indentLevel:r+i.indentLevel,doc:i.doc,next:a});if(i.type===`insertLine`)return{subString:EF(r),next:AF(e,r,a)};if(i.type===`chooseBetween`){let n=AF(e,t,{indentLevel:r,doc:i.doc1,next:a});return jF(e-t,n)?n:AF(e,t,{indentLevel:r,doc:i.doc2,next:a})}return null}function jF(e,t){for(;t;){if(t.subString[0]===`
90
+ `)return!0;if(e-=t.subString.length,e<0)return!1;t=t.next}return!0}function MF(e){let t=e.debug?`?`:``;switch(e.type){case`NUMBER`:return t+String(e.value);case`STRING`:return t+`"${e.value}"`;case`BOOLEAN`:return t+(e.value?`TRUE`:`FALSE`);case`FUNCALL`:let n=_s.get(e.value.toUpperCase()),r=rs(n,e.args.length),i=[],a=0;for(;a<e.args.length;)if(n.args[r[a].index]?.repeating){let t=e.args.slice(a,a+n.nbrArgRepeating).map(e=>MF(e));i.push(CF(SF(NF(t)))),a+=n.nbrArgRepeating}else i.push(MF(e.args[a])),a++;return PF(SF(NF(i)),t+e.value);case`ARRAY`:return FF(SF(e.value.map(e=>SF(e.map((e,t)=>t===0?MF(e):SF([`, `,bF(),MF(e)])))).map((e,t)=>t===0?CF(e):SF([`; `,bF(),CF(e)]))));case`UNARY_OPERATION`:let o=MF(e.operand),s=(e.postfix?LF(e):RF(e))?PF(o):o;return e.postfix?SF([s,t+e.value]):SF([t+e.value,s]);case`BIN_OPERATION`:{let n=MF(e.left),r=LF(e)?PF(n):n,i=MF(e.right),a=RF(e)?PF(i):i;return CF(SF([r,`${t}${e.value}`,xF(1,SF([bF(),a]))]))}default:return t+e.value}}function NF(e){let t=e.length?[e[0]]:[];for(let n=1;n<e.length;n++)t.push(`, `,bF()),t.push(e[n]);return t}function PF(e,t=void 0){let n=[`(`,xF(1,SF([bF(),e])),bF(),`)`];return t&&n.unshift(t),CF(SF(n))}function FF(e){return CF(SF([`{`,xF(1,SF([bF(),e])),bF(),`}`]))}function IF(e){let t=e.debug?`?`:``;switch(e.type){case`FUNCALL`:let n=e.args.map(e=>IF(e));return`${t}${e.value}(${n.join(`,`)})`;case`NUMBER`:return t+e.value.toString();case`STRING`:return t+`"${e.value}"`;case`BOOLEAN`:return t+(e.value?`TRUE`:`FALSE`);case`UNARY_OPERATION`:if(e.postfix)return(LF(e)?`(${IF(e.operand)})`:IF(e.operand))+t+e.value;let r=RF(e)?`(${IF(e.operand)})`:IF(e.operand);return t+e.value+r;case`ARRAY`:return`{`+t+e.value.map(e=>e.map(e=>IF(e)).join(`,`)).join(`;`)+`}`;case`BIN_OPERATION`:let i=LF(e)?`(${IF(e.left)})`:IF(e.left),a=RF(e)?`(${IF(e.right)})`:IF(e.right);return i+t+e.value+a;default:return t+e.value}}function LF(e){let t=e.value,n=`left`in e?e.left:e.operand,r=n.value;return n.type===`BIN_OPERATION`&&_c[r]<_c[t]}function RF(e){let t=e.value,n=`right`in e?e.right:e.operand,r=_c[n.value],i=_c[t];return n.type===`BIN_OPERATION`?r<i?!0:r===i&&!vF.includes(t):!1}let zF=A(`The cell you are trying to edit has been deleted.`);var BF=class extends xO{canStopEdition(){return this.editionMode===`inactive`?!0:this.checkDataValidation()}stopEdition(e){if(this.canStopEdition()){this._stopEdition(),e&&(this.getters.isSingleCellOrMerge(this.sheetId,this.getters.getSelectedZone())?this.model.selection.moveAnchorCell(e,1):nT(this.getters,this.model.selection,e));return}let t=this.currentEditedCell,n=E(t.col,t.row),r=this.getters.getValidationRuleForCell(t);if(!r)return;let i=Q.get(r.criterion.type).getErrorString(r.criterion,this.getters,t.sheetId);this.notificationStore.raiseError(A(`The data you entered in %s violates the data validation rule set on the cell:
91
+ %s`,n,i)),this.cancelEdition()}handle(e){switch(super.handle(e),e.type){case`SET_FORMATTING`:this.cancelEdition();break;case`ADD_COLUMNS_ROWS`:this.onAddElements(e);break;case`REMOVE_COLUMNS_ROWS`:e.dimension===`COL`?this.onColumnsRemoved(e):this.onRowsRemoved(e);break;case`ACTIVATE_SHEET`:if(Ut(this._currentContent)||(this._cancelEdition(),this.resetContent()),e.sheetIdFrom!==e.sheetIdTo){let t=this.getters.getActivePosition(),{col:n,row:r}=this.getters.getNextVisibleCellPosition({sheetId:e.sheetIdTo,col:t.col,row:t.row}),i=this.getters.expandZone(e.sheetIdTo,D({col:n,row:r}));this.model.selection.resetAnchor(this,{cell:{col:n,row:r},zone:i})}break;case`DELETE_SHEET`:case`UNDO`:case`REDO`:!this.getters.tryGetSheet(this.sheetId)&&this.editionMode!==`inactive`&&(this.sheetId=this.getters.getActiveSheetId(),this.resetContent(),this.cancelEditionAndActivateSheet(),this.notificationStore.raiseError(zF));break}}get placeholder(){let e=this.getters.getActivePosition(),t=this.model.getters.getArrayFormulaSpreadingOn(e);if(t)return this.getters.getCellText(t,{showFormula:!0})}get currentEditedCell(){return{sheetId:this.sheetId,col:this.col,row:this.row}}onColumnsRemoved(e){if(e.elements.includes(this.col)&&this.editionMode!==`inactive`){this.cancelEdition(),this.notificationStore.raiseError(zF);return}let{top:t,left:n}=Cn({left:this.col,right:this.col,top:this.row,bottom:this.row},`left`,[...e.elements]);this.col=n,this.row=t}onRowsRemoved(e){if(e.elements.includes(this.row)&&this.editionMode!==`inactive`){this.cancelEdition(),this.notificationStore.raiseError(zF);return}let{top:t,left:n}=Cn({left:this.col,right:this.col,top:this.row,bottom:this.row},`top`,[...e.elements]);this.col=n,this.row=t}onAddElements(e){let{top:t,left:n}=Sn({left:this.col,right:this.col,top:this.row,bottom:this.row},e.dimension===`COL`?`left`:`top`,e.base,e.position,e.quantity);this.col=n,this.row=t}confirmEdition(e){let t;if(e){let n={sheetId:this.getters.getActiveSheetId(),col:this.col,row:this.row},r=this.getters.getEvaluatedCell(n);r.link&&!Ut(e)&&(e=ot(e,r.link.url));let i=this.getters.getCell(n)?.format,a=i===`@`||i&&To(i)?void 0:Ao(e,this.getters.getLocale());this.addHeadersForSpreadingFormula(e),t=this.model.dispatch(`UPDATE_CELL`,{...this.currentEditedCell,content:e,format:a})}else t=this.model.dispatch(`UPDATE_CELL`,{...this.currentEditedCell,content:``});t.isSuccessful&&this.model.dispatch(`AUTOFILL_TABLE_COLUMN`,{...this.currentEditedCell}),this.setContent(``)}getComposerContent(e,t){let n=this.getters.getLocale(),r=this.getters.getCell(e);if(r?.isFormula){let e=this.getPrettifiedFormula(r);function i(t){let n=0,r=0;for(;r<t;){n++;let t=e[n];t!==`
92
+ `&&t!==` `&&r++}return n}let a=t;return t&&(a={start:i(t.start),end:i(t.end)}),{text:Tg(e,n),adjustedSelection:a}}if(this.model.getters.getArrayFormulaSpreadingOn(e))return{text:``};if(r?.content.startsWith(`'`))return{text:r.content};let{format:i,value:a,type:o,formattedValue:s}=this.getters.getEvaluatedCell(e);switch(o){case V.empty:return{text:``};case V.text:case V.error:return{text:a};case V.boolean:return{text:s};case V.number:return i&&To(i)?Kr(s,n)===null?{text:R(a,{locale:n,format:Number.isInteger(a)?n.dateFormat:Ig(n)})}:{text:s}:{text:this.numberComposerContent(a,i,n)}}}getPrettifiedFormula(e){if(e.compiledFormula.isBadExpression)return e.compiledFormula.toFormulaString(this.getters);let t=this.editionMode===`inactive`?1/0:80;return yF(e.compiledFormula.getAst(this.getters),t)}numberComposerContent(e,t,n){return t?.includes(`%`)?`${wo(e*100,n.decimalSeparator)}%`:wo(e,n.decimalSeparator)}addHeadersForSpreadingFormula(e){let t=Kt(this.getters,this.currentEditedCell,e);t&&(t.missingCols>0&&this.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:this.sheetId,sheetName:this.getters.getSheetName(this.sheetId),dimension:`COL`,base:this.getters.getNumberCols(this.sheetId)-1,position:`after`,quantity:t.missingCols+20}),t.missingRows>0&&this.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:this.sheetId,sheetName:this.getters.getSheetName(this.sheetId),dimension:`ROW`,base:this.getters.getNumberRows(this.sheetId)-1,position:`after`,quantity:t.missingRows+50}))}checkDataValidation(){let e={sheetId:this.sheetId,col:this.col,row:this.row},t=this.getCurrentCanonicalContent(),n=Ut(t)?this.getters.evaluateFormula(this.sheetId,t):au(t,this.getters.getLocale());if(Jb(n))return!0;let r=this.getters.getValidationResultForCellValue(Kb(n),e);return!(!r.isValid&&r.rule.isBlocking)}startEdition(e,t){return this.getters.isCurrentSheetLocked()?(this.model.trigger(`command-rejected`,{result:new Wl(H.SheetLocked),command:{sheetId:this.getters.getActiveSheetId()}}),`NoStateChange`):super.startEdition(e,t)}evaluateCanonicalFormula(e){return this.getters.evaluateFormulaResult(this.sheetId,e,{sheetId:this.sheetId,col:this.col,row:this.row})}};let VF=3*.4*globalThis.devicePixelRatio||1;var HF=class extends t.Component{static template=`o-spreadsheet-GridComposer`;static props={gridDims:Object,onInputContextMenu:Function};static components={Composer:iO};rect=this.defaultRect;isEditing=!1;isCellReferenceVisible=!1;currentEditedCell={col:0,row:0,sheetId:this.env.model.getters.getActiveSheetId()};composerStore;composerFocusStore;composerInterface;get defaultRect(){return{x:0,y:0,width:0,height:0}}setup(){let e=O(BF);this.composerStore=e,this.composerFocusStore=O(mr),this.composerInterface={id:`gridComposer`,get editionMode(){return e.editionMode},startEdition:this.composerStore.startEdition,setCurrentContent:this.composerStore.setCurrentContent,stopEdition:this.composerStore.stopEdition},this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`inactive`}),(0,t.onWillUpdateProps)(()=>{this.updateComponentPosition(),this.updateCellReferenceVisibility()})}get shouldDisplayCellReference(){return!this.env.isMobile()&&this.isCellReferenceVisible}get cellReference(){let{col:e,row:t,sheetId:n}=this.composerStore.currentEditedCell;return js(n===this.env.model.getters.getActiveSheetId()?void 0:this.env.model.getters.getSheetName(n),E(e,t))}get cellReferenceStyle(){let{x:e,y:t}=this.rect;return W({left:`${e-VF}px`,top:`${t-28}px`})}get focus(){return this.composerFocusStore.activeComposer===this.composerInterface?this.composerFocusStore.focusMode:`inactive`}get composerProps(){let{width:e,height:t}=this.env.model.getters.getSheetViewDimensionWithHeaders(),n=this.props.gridDims.height-this.rect.y-2*VF;return{rect:{...this.rect},delimitation:{width:e,height:t},focus:this.focus,isDefaultFocus:!0,onComposerContentFocused:e=>this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`contentFocus`,selection:e}),onComposerCellFocused:e=>this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`cellFocus`,content:e}),onInputContextMenu:this.props.onInputContextMenu,composerStore:this.composerStore,inputStyle:`max-height: ${n}px;`,inputMode:this.composerStore.editionMode===`inactive`?`none`:void 0}}get containerStyle(){if(this.composerStore.editionMode===`inactive`||this.env.isMobile())return`z-index: -1000; opacity: 0;`;let e=Ut(this.composerStore.currentContent),t=this.env.model.getters.getActiveCell(),n=this.env.model.getters.getActivePosition(),r=this.env.model.getters.getCellComputedStyle(n),{x:i,y:a,width:o,height:s}=this.rect,c=!e&&r.fillColor||`#ffffff`,l=!e&&r.textColor||`#000000`,u=!e&&r.fontSize||10,d=!e&&r.bold?`bold`:void 0,f=!e&&r.italic?`italic`:`normal`,p=e?`none`:Mh(r),m=`left`;e||(m=r.align||t.defaultAlign);let h=this.props.gridDims.height-this.rect.y,g=this.props.gridDims.width-this.rect.x,_=Math.min(s+1,h),v=Math.min(o+1,g);return W({left:`${i-1}px`,top:`${a}px`,border:`${VF}px solid ${te}`,"min-width":`${v}px`,"min-height":`${_}px`,"max-width":`${g}px`,"max-height":`${h}px`,background:c,color:l,"font-size":`${ku(u)}px`,"font-weight":d,"font-style":f,"text-decoration":p,"text-align":m})}updateComponentPosition(){let e=this.composerFocusStore.activeComposer.editionMode!==`inactive`;!e&&this.composerFocusStore.activeComposer!==this.composerInterface&&this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`inactive`});let t=!T(this.currentEditedCell,this.composerStore.currentEditedCell);if(this.isEditing!==e){if(this.isEditing=e,!e){this.rect=this.defaultRect;return}this.currentEditedCell=this.composerStore.currentEditedCell,t=!0}if(t){let e=this.env.model.getters.getActivePosition(),t=this.env.model.getters.expandZone(e.sheetId,D(e));this.rect=this.env.model.getters.getVisibleRect(t)}}updateCellReferenceVisibility(){if(this.composerStore.editionMode===`inactive`){this.isCellReferenceVisible=!1;return}if(this.isCellReferenceVisible)return;let e=this.env.model.getters.getActiveSheetId(),t=D(this.env.model.getters.getSelection().anchor.cell);(!T(this.env.model.getters.getVisibleRect(t),this.rect)||e!==this.composerStore.currentEditedCell.sheetId)&&(this.isCellReferenceVisible=!0)}onFocus(){this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`contentFocus`})}};function UF({x:e,y:t},{x:n,y:r},i,{maxX:a,maxY:o},{scrollX:s,scrollY:c},{scrollX:l,scrollY:u}){let d=e-n+l-s,f=S(i.x+d,0,a-i.width),p=t-r+u-c,m=S(i.y+p,0,o-i.height);return{...i,x:f,y:m}}function WF(e,t,n,{x:r,y:i},{x:a,y:o},s,c,{scrollX:l,scrollY:u},{scrollX:d,scrollY:f},{maxX:p,maxY:m}){let{x:h,y:g,width:_,height:v}=e;if(s&&t!==0&&n!==0){let e=Math.min(t*(a-r+d-l),_-c),s=Math.min(n*(o-i+f-u),v-c),p=Math.min(e/_,s/v);t<0&&(h+=_*p),n<0&&(g+=v*p),_*=1-p,v*=1-p}else{let e=Math.max(t*(r-a+d-l),c-_),s=Math.max(n*(i-o+f-u),c-v);_+=e,v+=s,t<0&&(h-=e),n<0&&(g-=s)}return h+d<=0?(_=_+h+d,h=-d):h+_>p&&(_=p-h),g+f<=0?(v=v+g+f,g=-f):g+v>m&&(v=m-g),{...e,x:h,y:g,width:_,height:v}}function GF(e,t,n){let r=YF(e,t,[`hCenter`,`right`,`left`],n,[`hCenter`,`right`,`left`]),i=YF(e,t,[`vCenter`,`bottom`,`top`],n,[`vCenter`,`bottom`,`top`]),{y:a,x:o}=e.getMainViewportCoordinates(),{scrollY:s,scrollX:c}=e.getActiveSheetScrollInfo();if(i){t.y-=i.snapOffset;let e=t.y<a,n=t.y<a;e&&!n?t.y+=s:!e&&n&&(t.y-=s)}if(r){t.x-=r.snapOffset;let e=t.x<o,n=t.x<o;e&&!n?t.x+=c:!e&&n&&(t.x-=c)}return{snappedFigure:t,verticalSnapLine:r,horizontalSnapLine:i}}function KF(e,t,n,r,i){let a=YF(e,r,[t===-1?`left`:`right`],i,[`right`,`left`]);a&&(t===1?r.width-=a.snapOffset:t===-1&&(r.x-=a.snapOffset,r.width+=a.snapOffset));let o=YF(e,r,[n===-1?`top`:`bottom`],i,[`bottom`,`top`]);return o&&(n===1?r.height-=o.snapOffset:n===-1&&(r.y-=o.snapOffset,r.height+=o.snapOffset)),r.x=Math.round(r.x),r.y=Math.round(r.y),r.height=Math.round(r.height),r.width=Math.round(r.width),{snappedFigure:r,verticalSnapLine:a,horizontalSnapLine:o}}function qF(e,t,n){return n.map(n=>ZF(e,t,!1,n)).filter(n=>JF(e,t,n))}function JF(e,t,n){let{x:r,y:i}=e.getMainViewportCoordinates(),a=[];switch(n.axisType){case`top`:case`bottom`:case`vCenter`:if(t.y<i)return!0;a.push({x:t.x,y:n.position}),a.push({x:t.x+t.width,y:n.position});break;case`left`:case`right`:case`hCenter`:if(t.x<r)return!0;a.push({x:n.position,y:t.y}),a.push({x:n.position,y:t.y+t.height});break}return a.some(e.isPixelPositionVisible)}function YF(e,t,n,r,i){let a=n.map(n=>ZF(e,t,!0,n)),o;for(let t of r){let n=qF(e,t,i);for(let e of a)for(let r of n){if(!XF(e.position,r.position))continue;let n=e.position-r.position;o&&n===o.snapOffset?o.matchedFigIds.push(t.id):(!o||Math.abs(n)<=Math.abs(o.snapOffset))&&(o={matchedFigIds:[t.id],snapOffset:n,snappedAxisType:e.axisType,position:r.position})}}return o}function XF(e,t){return Math.abs(e-t)<=5}function ZF(e,t,n,r){let i=0,{scrollX:a,scrollY:o}=e.getActiveSheetScrollInfo(),{x:s,y:c}=e.getMainViewportCoordinates(),l=!n&&t.y<c?t.y+o:t.y,u=!n&&t.x<s?t.x+a:t.x;switch(r){case`top`:i=l;break;case`bottom`:i=l+t.height-1;break;case`vCenter`:i=l+Math.floor(t.height/2)-1;break;case`left`:i=u;break;case`right`:i=u+t.width-1;break;case`hCenter`:i=u+Math.floor(t.width/2)-1;break}return{position:i,axisType:r}}var QF=class extends t.Component{static template=`o-spreadsheet-FiguresContainer`;static props={};static components={FigureComponent:ig};dnd=(0,t.useState)({draggedFigure:void 0,horizontalSnap:void 0,verticalSnap:void 0,cancelDnd:void 0,overlappingCarousel:void 0});setup(){(0,t.onMounted)(()=>{this.render()}),(0,t.onWillUpdateProps)(()=>{let e=this.env.model.getters.getActiveSheetId(),t=this.dnd.draggedFigure?.id;t&&!this.env.model.getters.getFigure(e,t)&&(this.dnd.cancelDnd&&this.dnd.cancelDnd(),this.dnd.draggedFigure=void 0,this.dnd.horizontalSnap=void 0,this.dnd.verticalSnap=void 0,this.dnd.overlappingCarousel=void 0,this.dnd.cancelDnd=void 0)})}getVisibleFigures(){let e=this.env.model.getters.getVisibleFigures();return this.dnd.draggedFigure&&!e.some(e=>e.id===this.dnd.draggedFigure?.id)&&this.dnd.draggedFigure&&e.push(this.dnd.draggedFigure),e}get containers(){let e=this.getVisibleFigures(),t=[];for(let n of[`topLeft`,`topRight`,`bottomLeft`,`bottomRight`]){let r=e.filter(e=>this.getFigureContainer(e)===n);r.length>0&&t.push({type:n,figures:r,style:this.getContainerStyle(n),inverseViewportStyle:this.getInverseViewportPositionStyle(n)})}return this.dnd.draggedFigure&&t.push({type:`dnd`,figures:[this.getDndFigure()],style:this.getContainerStyle(`dnd`),inverseViewportStyle:this.getInverseViewportPositionStyle(`dnd`)}),t}getContainerStyle(e){return this.rectToCss(this.getContainerRect(e))}rectToCss(e){return W({left:`${e.x}px`,top:`${e.y}px`,width:`${e.width}px`,height:`${e.height}px`})}getContainerRect(e){let{width:t,height:n}=this.env.model.getters.getSheetViewDimension(),{x:r,y:i}=this.env.model.getters.getMainViewportCoordinates(),a=[`bottomRight`,`topRight`].includes(e)?r:0,o=t-a,s=[`bottomRight`,`bottomLeft`].includes(e)?i:0;return{x:a,y:s,width:o,height:n-s}}getInverseViewportPositionStyle(e){let{scrollX:t,scrollY:n}=this.env.model.getters.getActiveSheetScrollInfo(),{x:r,y:i}=this.env.model.getters.getMainViewportCoordinates(),a=0,o=0;return e===`dnd`&&(a=-t,o=-n),[`bottomRight`,`topRight`].includes(e)&&(a=-t-r),[`bottomRight`,`bottomLeft`].includes(e)&&(o=-n-i),W({left:`${a}px`,top:`${o}px`})}getFigureContainer(e){let{x:t,y:n}=this.env.model.getters.getMainViewportCoordinates();return e.id===this.dnd.draggedFigure?.id?`dnd`:e.x<t&&e.y<n?`topLeft`:e.x<t?`bottomLeft`:e.y<n?`topRight`:`bottomRight`}toBottomRightViewport(e){let t=this.getFigureContainer(e),n=this.env.model.getters.getActiveSheetScrollInfo(),r={...e};return[`bottomLeft`,`topLeft`].includes(t)&&(r.x+=n.scrollX),[`topLeft`,`topRight`].includes(t)&&(r.y+=n.scrollY),r}startDraggingFigure(e,t){if(t.button>0||this.env.model.getters.isReadonly()||!this.env.model.dispatch(`SELECT_FIGURE`,{figureId:e.id}).isSuccessful||this.env.isMobile()||this.env.model.getters.isCurrentSheetLocked())return;let n=this.env.model.getters.getActiveSheetId(),r=this.env.model.getters.getViewportZoomLevel(),i={x:t.clientX/r,y:t.clientY/r},a=this.env.model.getters.getActiveSheetScrollInfo(),o=this.toBottomRightViewport(e),s={maxX:this.env.model.getters.getColDimensions(n,this.env.model.getters.getNumberCols(n)-1).end,maxY:this.env.model.getters.getRowDimensions(n,this.env.model.getters.getNumberRows(n)-1).end},c=!1,l=e=>{let t=this.env.model.getters,n={x:e.clientX/r,y:e.clientY/r},l=Math.abs(n.x-i.x),u=Math.abs(n.y-i.y);if(!c&&l<5&&u<5)return;c=!0;let d=UF(n,i,o,s,a,t.getActiveSheetScrollInfo()),f=this.getOtherFigures(o.id),p=this.getCarouselOverlappingChart(d,f);if(this.dnd.overlappingCarousel=p,p)this.dnd.draggedFigure=d,this.dnd.horizontalSnap=void 0,this.dnd.verticalSnap=void 0;else{let e=GF(t,d,f);this.dnd.draggedFigure=e.snappedFigure,this.dnd.horizontalSnap=this.getSnap(e.horizontalSnapLine),this.dnd.verticalSnap=this.getSnap(e.verticalSnapLine)}},u=t=>{if(!this.dnd.draggedFigure)return;let{col:r,row:i,offset:a}=this.env.model.getters.getPositionAnchorOffset(this.dnd.draggedFigure);this.dnd.overlappingCarousel?this.env.model.dispatch(`ADD_FIGURE_CHART_TO_CAROUSEL`,{sheetId:n,carouselFigureId:this.dnd.overlappingCarousel.id,chartFigureId:e.id}):this.env.model.dispatch(`UPDATE_FIGURE`,{sheetId:n,figureId:e.id,offset:a,col:r,row:i}),this.dnd.draggedFigure=void 0,this.dnd.horizontalSnap=void 0,this.dnd.verticalSnap=void 0,this.dnd.overlappingCarousel=void 0};this.dnd.cancelDnd=Pw(l,u)}startResize(e,t,n,r){r.stopPropagation();let i=this.env.model.getters.getActiveSheetScrollInfo(),a=rg.get(e.tag).keepRatio||!1,o=rg.get(e.tag).minFigSize||80,s=this.env.model.getters.getViewportZoomLevel(),c=this.env.model.getters.getActiveSheetId(),l={x:r.clientX/s,y:r.clientY/s},u={maxX:this.env.model.getters.getColDimensions(c,this.env.model.getters.getNumberCols(c)-1).end,maxY:this.env.model.getters.getRowDimensions(c,this.env.model.getters.getNumberRows(c)-1).end},d=r=>{let c=WF(e,t,n,{x:r.clientX/s,y:r.clientY/s},l,a,o,i,this.env.model.getters.getActiveSheetScrollInfo(),u),d=this.getOtherFigures(e.id),f=KF(this.env.model.getters,t,n,c,d);this.dnd.draggedFigure=f.snappedFigure,this.dnd.horizontalSnap=this.getSnap(f.horizontalSnapLine),this.dnd.verticalSnap=this.getSnap(f.verticalSnapLine)},f=r=>{if(!this.dnd.draggedFigure)return;let i=this.env.model.getters.getPositionAnchorOffset(this.dnd.draggedFigure);t&&(i.width=this.dnd.draggedFigure.width),n&&(i.height=this.dnd.draggedFigure.height),this.env.model.dispatch(`UPDATE_FIGURE`,{sheetId:this.env.model.getters.getActiveSheetId(),figureId:e.id,...i}),this.dnd.draggedFigure=void 0,this.dnd.horizontalSnap=void 0,this.dnd.verticalSnap=void 0,this.dnd.overlappingCarousel=void 0};this.dnd.cancelDnd=Pw(d,f)}getOtherFigures(e){return this.getVisibleFigures().filter(t=>t.id!==e)}getDndFigure(){let e=this.dnd.draggedFigure;if(!e)throw Error(`Dnd figure not found`);return e}getFigureStyle(e){return e.id===this.dnd.draggedFigure?.id?W({opacity:this.dnd.overlappingCarousel?.id?`0.6`:`0.9`,cursor:`grabbing`}):``}getFigureClass(e){return e.id===this.dnd.overlappingCarousel?.id?`o-add-to-carousel`:``}getSnap(e){if(!e||!this.dnd.draggedFigure)return;let{scrollX:t,scrollY:n}=this.env.model.getters.getActiveSheetScrollInfo(),r=e.matchedFigIds.map(e=>this.getVisibleFigures().find(t=>t.id===e)).filter(w).map(e=>({x:e.x-t,y:e.y-n,width:e.width,height:e.height})).filter(w),i=Vh({...this.dnd.draggedFigure,x:this.dnd.draggedFigure.x-t,y:this.dnd.draggedFigure.y-n},...r);return{line:e,containerStyle:this.rectToCss(i),lineStyle:this.getSnapLineStyle(e,i)}}getSnapLineStyle(e,t){if(!e)return``;let{scrollX:n,scrollY:r}=this.env.model.getters.getActiveSheetScrollInfo();return[`top`,`vCenter`,`bottom`].includes(e.snappedAxisType)?W({top:`${e.position-t.y-r}px`,left:`0px`,width:`100%`}):W({top:`0px`,left:`${e.position-t.x-n}px`,height:`100%`})}getCarouselOverlappingChart(e,t){if(e.tag!==`chart`)return;let n=e.x+e.width/2,r=e.y+e.height/2,i,a=1/0;for(let o of t){if(o.tag!==`carousel`)continue;let t=o.x+o.width/2,s=o.y+o.height/2,c=Math.abs(n-t),l=Math.abs(r-s),u=c**2+l**2;c<=e.width/2&&l<=e.height/2&&u<a&&(a=u,i=o)}return i}},$F=class extends t.Component{static template=`o-spreadsheet-GridAddRowsFooter`;static props={};static components={ValidationMessages:pT};DOMFocusableElementStore;inputRef=(0,t.useRef)(`inputRef`);state=(0,t.useState)({inputValue:`100`,errorFlag:!1});setup(){this.DOMFocusableElementStore=O(Ih),(0,t.useExternalListener)(window,`click`,this.onExternalClick,{capture:!0})}get addRowsPosition(){let e=this.env.model.getters.getActiveSheetId(),{numberOfRows:t}=this.env.model.getters.getSheetSize(e),{scrollY:n}=this.env.model.getters.getActiveSheetScrollInfo();return W({top:`${this.env.model.getters.getRowDimensions(e,t-1).end-n}px`})}get errorMessages(){return[A(`Please enter a number between 0 and 10000.`)]}onKeydown(e){e.key.toUpperCase()===`ESCAPE`?this.focusDefaultElement():e.key.toUpperCase()===`ENTER`&&this.onConfirm()}onInput(e){let t=e.target.value;this.state.inputValue=t;let n=Number(t);this.state.errorFlag=Number.isNaN(n)||n<=0||n>1e4}onConfirm(){if(this.state.errorFlag)return;let e=Number(this.state.inputValue),t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getNumberRows(t);this.env.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:t,sheetName:this.env.model.getters.getSheetName(t),position:`after`,base:n-1,quantity:e,dimension:`ROW`}),this.focusDefaultElement();let{scrollX:r}=this.env.model.getters.getActiveSheetScrollInfo(),{end:i}=this.env.model.getters.getRowDimensions(t,n+e-1);this.env.model.dispatch(`SET_VIEWPORT_OFFSET`,{offsetX:r,offsetY:i})}onExternalClick(e){this.inputRef.el!==document.activeElement||e.target===this.inputRef.el||this.focusDefaultElement()}focusDefaultElement(){document.activeElement===this.inputRef.el&&this.DOMFocusableElementStore.focus()}};let eI={figureHandlers:new B,cellHandlers:new B},tI=[`cell`,`border`,`table`,`conditionalFormat`,`merge`];var nI=class extends fr{mutators=[`activate`,`cancel`,`pasteFormat`];highlightStore=this.get(oT);status=`inactive`;copiedData;constructor(e){super(e),this.highlightStore.register(this),this.onDispose(()=>{this.highlightStore.unRegister(this)})}handle(e){switch(e.type){case`PAINT_FORMAT`:this.paintFormat(e.sheetId,e.target);break}}activate(e){this.copiedData=this.copyFormats(),this.status=e.persistent?`persistent`:`oneOff`}cancel(){this.status=`inactive`,this.copiedData=void 0}pasteFormat(e){this.model.dispatch(`PAINT_FORMAT`,{target:e,sheetId:this.getters.getActiveSheetId()})}get isActive(){return this.status!==`inactive`}get clipboardHandlers(){return tI.map(e=>({handlerName:e,handler:new(eI.cellHandlers.get(e))(this.getters,this.model.dispatch)}))}copyFormats(){let e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZones(),n={zones:t,sheetId:e};for(let{handlerName:r,handler:i}of this.clipboardHandlers){let a=i.copy(VS(e,t),!1);a!==void 0&&(n[r]=a)}return n}paintFormat(e,t){if(!this.copiedData)return;let n={isCutOperation:!1,pasteOption:`onlyFormat`},{target:r,selectedZones:i}=JS(e,t,this.copiedData,this.clipboardHandlers,n);qS(this.clipboardHandlers,this.copiedData,r,n),YS(this.model.selection,t,i),this.status===`oneOff`&&this.cancel()}get highlights(){let e=this.copiedData;return e?e.zones.map(t=>({range:this.model.getters.getRangeFromZone(e.sheetId,t),color:te,dashed:!0,sheetId:e.sheetId,noFill:!0,thinLine:!0,interactive:!1})):[]}},rI=class extends fr{mutators=[`clear`,`hover`];col;row;overlayColors=new dN;handle(e){switch(e.type){case`ACTIVATE_SHEET`:this.clear()}}hover(e){if(!this.getters.isDashboard()||e.col===this.col&&e.row===this.row)return`noStateChange`;this.col=e.col,this.row=e.row,this.computeOverlay()}clear(){this.col=void 0,this.row=void 0}computeOverlay(){this.overlayColors=new dN;let{col:e,row:t}=this;if(e===void 0||t===void 0)return;let n=this.getters.getActiveSheetId(),r=this.getters.getTable({sheetId:n,col:e,row:t});if(!r)return;let{left:i,right:a,top:o}=r.range.zone,s=t<o+r.config.numberOfHeaders,c=C(i,a+1).some(e=>!this.getters.isColHidden(n,e)&&this.getters.getEvaluatedCell({sheetId:n,col:e,row:t}).formattedValue);if(!s&&c)for(let e=i;e<=a;e++)this.overlayColors.set({sheetId:n,col:e,row:t},`#017E8414`)}},iI=class extends fr{mutators=[`setHoveredIcon`];hoveredIcon=void 0;setHoveredIcon(e){this.hoveredIcon=e}};function aI(e,n){let r=O(ag),i=O(rI),a={col:void 0,row:void 0},{Date:o}=window,s,c,l=0;function u(){return s===void 0||c===void 0?{col:-1,row:-1}:{col:e.model.getters.getColIndex(s),row:e.model.getters.getRowIndex(c)}}function d(e){let t=fm(n.el);return{x:e.clientX-t.x,y:e.clientY-t.y}}let{pause:f,resume:p}=Lh(m,200);function m(){let{col:e,row:t}=u(),n=o.now()-l;if(n>300&&(e!==a.col||t!==a.row)&&y(void 0,void 0),n>300){if(e<0||t<0)return;y(e,t)}}function h(e){cm(n.el,e.ev)&&({x:s,y:c}=d(e),l=o.now(),i.hover(u()))}function g(){let{col:e,row:t}=u();(e!==a.col||t!==a.row)&&y(void 0,void 0)}function _(t){let r=Am(e,t),{x:i,y:a}=d(r),o=fm(n.el);return a<0||a>o.height||i<0||i>o.width?h(r):f()}YO(n,`pointermove`,t=>!e.isMobile()&&h(Am(e,t))),YO(n,`mouseleave`,_),YO(n,`mouseenter`,p),YO(n,`pointerdown`,g),YO(n,`pointerdown`,t=>e.isMobile()&&h(Am(e,t))),(0,t.useExternalListener)(window,`click`,v);function v(e){let t=e.target;n.el.contains(t)||y(void 0,void 0)}function y(e,t){(e!==a.col||t!==a.row)&&(a.col=e,a.row=t,r.hover({col:e,row:t}))}return a}var oI=class extends t.Component{static template=`o-spreadsheet-GridOverlay`;static props={onCellDoubleClicked:{type:Function,optional:!0},onCellClicked:{type:Function,optional:!0},onCellRightClicked:{type:Function,optional:!0},onGridResized:{type:Function,optional:!0},onGridMoved:Function,gridOverlayDimensions:String,slots:{type:Object,optional:!0}};static components={FiguresContainer:QF,GridAddRowsFooter:$F};static defaultProps={onCellDoubleClicked:()=>{},onCellClicked:()=>{},onCellRightClicked:()=>{},onGridResized:()=>{}};gridOverlay=(0,t.useRef)(`gridOverlay`);cellPopovers;paintFormatStore;hoveredIconStore;setup(){aI(this.env,this.gridOverlay);let e=new ResizeObserver(()=>{this.props.onGridResized()});(0,t.onMounted)(()=>{e.observe(this.gridOverlayEl)}),(0,t.onWillUnmount)(()=>{e.disconnect()}),this.cellPopovers=O(RS),this.paintFormatStore=O(nI),this.hoveredIconStore=O(iI)}get gridOverlayEl(){if(!this.gridOverlay.el)throw Error(`GridOverlay el is not defined.`);return this.gridOverlay.el}get style(){return this.props.gridOverlayDimensions+W({cursor:this.hoveredIconStore.hoveredIcon?`pointer`:`default`})}get isPaintingFormat(){return this.paintFormatStore.isActive}onPointerMove(e){if(this.env.isMobile())return;let t=this.getInteractiveIconAtEvent(Am(this.env,e)),n=t?.type?{id:t.type,position:t.position}:void 0;T(n,this.hoveredIconStore.hoveredIcon)||this.hoveredIconStore.setHoveredIcon(n)}onPointerDown(e){e.button>0||this.env.isMobile()||this.onCellClicked(Am(this.env,e))}onClick(e){e.button>0||!this.env.isMobile()||this.onCellClicked(Am(this.env,e))}onCellClicked(e){let t=this.cellPopovers.persistentCellPopover,[n,r]=this.getCartesianCoordinates(e),i=this.getInteractiveIconAtEvent(e);if(i&&this.env.model.selection.getBackToDefault(),this.props.onCellClicked(n,r,{expandZone:e.ev.shiftKey,addZone:xm(e.ev)},e),i?.onClick&&i.onClick(i.position,this.env),e.ev.target===this.gridOverlay.el&&this.cellPopovers.isOpen&&T(t,this.cellPopovers.persistentCellPopover)){this.cellPopovers.close();return}}onDoubleClick(e){let t=Am(this.env,e);if(this.getInteractiveIconAtEvent(t))return;let[n,r]=this.getCartesianCoordinates(t);this.props.onCellDoubleClicked(n,r)}onContextMenu(e){let[t,n]=this.getCartesianCoordinates(Am(this.env,e));this.props.onCellRightClicked(t,n,{x:e.clientX,y:e.clientY})}getCartesianCoordinates(e){return[this.env.model.getters.getColIndex(e.offsetX),this.env.model.getters.getRowIndex(e.offsetY)]}getInteractiveIconAtEvent(e){let t=dm(this.gridOverlay),n=this.env.model.getters.getGridOffset(),r=e.clientX-t.x+n.x,i=e.clientY-t.y+n.y,[a,o]=this.getCartesianCoordinates(e),s=this.env.model.getters.getActiveSheetId(),c={col:a,row:o,sheetId:s},l=this.env.model.getters.getMerge(c);l&&(c={col:l.left,row:l.top,sheetId:s});let u=this.env.model.getters.getCellIcons(c).find(e=>{let t=this.env.model.getters.getMerge(c)||D(c),n=this.env.model.getters.getRect(t);return Wh(r,i,this.env.model.getters.getCellIconRect(e,n))});return u?.onClick?u:void 0}},sI=class extends t.Component{static template=`o-spreadsheet-GridPopover`;static props={onClosePopover:Function,onMouseWheel:Function,gridRect:Object};static components={Popover:qh};cellPopovers;setup(){this.cellPopovers=O(RS)}get cellPopover(){let e=this.cellPopovers.cellPopover;if(!e.isOpen)return{isOpen:!1};let t=Mm(this.env.model.getters.getViewportZoomLevel(),e.anchorRect);return{...e,anchorRect:{...t,x:t.x+this.props.gridRect.x,y:t.y+this.props.gridRect.y}}}},cI=class extends t.Component{static template=`o-spreadsheet-UnhideRowHeaders`;static props={headersGroups:Array,headerRange:Object,offset:{type:Number,optional:!0}};static defaultProps={offset:0};get sheetId(){return this.env.model.getters.getActiveSheetId()}getUnhidePreviousButtonStyle(e){let t=this.env.model.getters.getRect(D({col:0,row:e}));return W({top:t.y+t.height-26-this.props.offset+`px`,"margin-right":`1px`})}getUnhideNextButtonStyle(e){return W({top:this.env.model.getters.getRect(D({col:0,row:e})).y-26-this.props.offset+`px`,"margin-right":`1px`})}unhide(e){this.env.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:this.sheetId,dimension:`ROW`,elements:e})}isVisible(e){return e>=this.props.headerRange.start&&e<=this.props.headerRange.end}},lI=class extends t.Component{static template=`o-spreadsheet-UnhideColumnHeaders`;static props={headersGroups:Array,headerRange:Object,offset:{type:Number,optional:!0}};static defaultProps={offset:0};get sheetId(){return this.env.model.getters.getActiveSheetId()}getUnhidePreviousButtonStyle(e){let t=this.env.model.getters.getRect(D({col:e,row:0}));return W({left:t.x+t.width-48-this.props.offset+`px`})}getUnhideNextButtonStyle(e){return W({left:this.env.model.getters.getRect(D({col:e,row:0})).x-48-this.props.offset+`px`})}unhide(e){this.env.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:this.sheetId,dimension:`COL`,elements:e})}isVisible(e){return e>=this.props.headerRange.start&&e<=this.props.headerRange.end}},uI=class extends t.Component{static props={onOpenContextMenu:Function};composerFocusStore;PADDING=0;MAX_SIZE_MARGIN=0;MIN_ELEMENT_SIZE=0;lastSelectedElementIndex=null;state=(0,t.useState)({resizerIsActive:!1,isResizing:!1,isMoving:!1,isSelecting:!1,waitingForMove:!1,activeElement:0,draggerLinePosition:0,draggerShadowPosition:0,draggerShadowThickness:0,delta:0,base:0,position:`before`});dragNDropGrid=pF(this.env);setup(){this.composerFocusStore=O(mr)}_computeHandleDisplay(e){let t=this._getEvOffset(e),n=this._getElementIndex(t);if(n<0)return;let r=this._getDimensionsInViewport(n);t-r.start<this.PADDING&&n!==this._getViewportOffset()?(this.state.resizerIsActive=!0,this.state.draggerLinePosition=r.start,this.state.activeElement=this._getPreviousVisibleElement(n)):r.end-t<this.PADDING?(this.state.resizerIsActive=!0,this.state.draggerLinePosition=r.end,this.state.activeElement=n):this.state.resizerIsActive=!1}_computeGrabDisplay(e){if(xm(e.ev)){this.state.waitingForMove=!1;return}let t=this._getElementIndex(this._getEvOffset(e)),n=this._getActiveElements(),r=this._getSelectedZoneStart(),i=this._getSelectedZoneEnd();if(n.has(r)&&r<=t&&t<=i){this.state.waitingForMove=!0;return}this.state.waitingForMove=!1}onMouseMove(e){if(this.env.isMobile()||this.env.model.getters.isReadonly()||this.state.isResizing||this.state.isMoving||this.state.isSelecting)return;let t=Am(this.env,e);this._computeHandleDisplay(t),this._computeGrabDisplay(t)}onMouseLeave(){this.state.resizerIsActive=this.state.isResizing,this.state.waitingForMove=!1}onDblClick(e){let t=Am(this.env,e);this._fitElementSize(this.state.activeElement),this.state.isResizing=!1,this._computeHandleDisplay(t),this._computeGrabDisplay(t)}onMouseDown(e){if(e.button!==0)return;this.state.isResizing=!0,this.state.delta=0;let t=Am(this.env,e),n=this._getClientPosition(t),r=this.state.draggerLinePosition,i=this._getElementSize(this.state.activeElement),a=r-i+this.MIN_ELEMENT_SIZE,o=this._getMaxSize();Pw(e=>{this.state.delta=this._getClientPosition(Am(this.env,e))-n,this.state.draggerLinePosition=r+this.state.delta,this.state.draggerLinePosition<a&&(this.state.draggerLinePosition=a,this.state.delta=this.MIN_ELEMENT_SIZE-i),this.state.draggerLinePosition>o&&(this.state.draggerLinePosition=o,this.state.delta=o-r)},e=>{this.state.isResizing=!1,this.state.delta!==0&&this._updateSize()})}onClick(e){if(!this.env.isMobile()||e.button>0)return;let t=Am(this.env,e),n=this._getElementIndex(this._getEvOffset(t));this._selectElement(n,!1)}select(e){if(this.env.isMobile()||e.button>0)return;let t=Am(this.env,e),n=this._getElementIndex(this._getEvOffset(t));if(!(n<0)){if(this.env.model.getters.isReadonly()){this._selectElement(n,!1);return}if(!xm(e)&&this.state.waitingForMove){this.env.model.getters.isGridSelectionActive()?this.startMovement(e):this._selectElement(n,!1);return}this.composerFocusStore.activeComposer.editionMode===`editing`&&this.env.model.selection.getBackToDefault(),this.startSelection(e,n)}}startMovement(e){this.state.waitingForMove=!1,this.state.isMoving=!0;let t=Am(this.env,e),n=this._getDimensionsInViewport(this._getSelectedZoneStart()),r=this._getDimensionsInViewport(this._getSelectedZoneEnd()),i=n.start;this.state.draggerLinePosition=i,this.state.base=this._getSelectedZoneStart(),this.state.draggerShadowPosition=i,this.state.draggerShadowThickness=r.end-n.start,this.dragNDropGrid.start(t,(e,t)=>{let r=this._getType()===`COL`?e:t;if(r>=0){let e=this._getDimensionsInViewport(r);r<=this._getSelectedZoneStart()?(this.state.draggerLinePosition=e.start,this.state.draggerShadowPosition=e.start,this.state.base=r,this.state.position=`before`):this._getSelectedZoneEnd()<r?(this.state.draggerLinePosition=e.end,this.state.draggerShadowPosition=e.end-this.state.draggerShadowThickness,this.state.base=r,this.state.position=`after`):(this.state.draggerLinePosition=n.start,this.state.draggerShadowPosition=n.start,this.state.base=this._getSelectedZoneStart())}},()=>{this.state.isMoving=!1,this.state.base!==this._getSelectedZoneStart()&&this._moveElements();let t=Am(this.env,e);this._computeGrabDisplay(t)})}startSelection(e,t){if(this.env.isMobile())return;this.state.isSelecting=!0,e.shiftKey?this._increaseSelection(t):this._selectElement(t,xm(e)),this.lastSelectedElementIndex=t;let n=Am(this.env,e);this.dragNDropGrid.start(n,(e,t)=>{let n=this._getType()===`COL`?e:t;n!==this.lastSelectedElementIndex&&n!==-1&&(this._increaseSelection(n),this.lastSelectedElementIndex=n)},()=>{this.env.model.selection.commitSelection(),this.state.isSelecting=!1,this.lastSelectedElementIndex=null,this._computeGrabDisplay(n)})}onContextMenu(e){e.preventDefault();let t=this._getElementIndex(this._getEvOffset(Am(this.env,e)));if(t<0)return;this._getActiveElements().has(t)||this._selectElement(t,!1);let n=this._getType();this.props.onOpenContextMenu(n,e.clientX,e.clientY)}},dI=class extends uI{static props={onOpenContextMenu:Function};static template=`o-spreadsheet-ColResizer`;static components={UnhideColumnHeaders:lI};colResizerRef;setup(){super.setup(),this.colResizerRef=(0,t.useRef)(`colResizer`),this.PADDING=15,this.MAX_SIZE_MARGIN=90,this.MIN_ELEMENT_SIZE=5}get sheetId(){return this.env.model.getters.getActiveSheetId()}_getEvOffset(e){return e.offsetX}_getViewportOffset(){return this.env.model.getters.getActiveMainViewport().left}_getClientPosition(e){return e.clientX}_getElementIndex(e){return this.env.model.getters.getColIndex(e)}_getSelectedZoneStart(){return this.env.model.getters.getSelectedZone().left}_getSelectedZoneEnd(){return this.env.model.getters.getSelectedZone().right}_getEdgeScroll(e){return this.env.model.getters.getEdgeScrollCol(e,e,e)}_getDimensionsInViewport(e){return this.env.model.getters.getColDimensionsInViewport(this.sheetId,e)}_getElementSize(e){return this.env.model.getters.getColSize(this.sheetId,e)}_getMaxSize(){return this.colResizerRef.el.clientWidth}_updateSize(){let e=this.state.activeElement,t=this.state.delta+this._getElementSize(e),n=this.env.model.getters.getActiveCols();this.env.model.dispatch(`RESIZE_COLUMNS_ROWS`,{dimension:`COL`,sheetId:this.sheetId,elements:n.has(e)?[...n]:[e],size:t})}_moveElements(){let e=[],t=this._getSelectedZoneStart(),n=this._getSelectedZoneEnd();for(let r=t;r<=n;r++)e.push(r);let r=this.env.model.dispatch(`MOVE_COLUMNS_ROWS`,{sheetId:this.sheetId,sheetName:this.env.model.getters.getActiveSheetName(),dimension:`COL`,base:this.state.base,elements:e,position:this.state.position});!r.isSuccessful&&r.reasons.includes(H.WillRemoveExistingMerge)&&this.env.raiseError(dg)}_selectElement(e,t){this.env.model.selection.selectColumn(e,t?`newAnchor`:`overrideSelection`)}_increaseSelection(e){this.env.model.selection.selectColumn(e,`updateAnchor`)}_fitElementSize(e){let t=this.env.model.getters.getActiveCols();this.env.model.dispatch(`AUTORESIZE_COLUMNS`,{sheetId:this.sheetId,cols:t.has(e)?[...t]:[e]})}_getType(){return`COL`}_getActiveElements(){return this.env.model.getters.getActiveCols()}_getPreviousVisibleElement(e){let t=this.sheetId,n;for(n=e-1;n>=0&&this.env.model.getters.isColHidden(t,n);n--);return n}unhide(e){this.env.model.dispatch(`UNHIDE_COLUMNS_ROWS`,{sheetId:this.sheetId,elements:e,dimension:`COL`})}get mainUnhideHeadersProps(){let{left:e,right:t}=this.env.model.getters.getActiveMainViewport(),{xSplit:n}=this.env.model.getters.getPaneDivisions(this.sheetId),r=this.env.model.getters.getHiddenColsGroups(this.sheetId),i=r.findIndex(e=>e[0]>=n-1);return{headersGroups:i===-1?[]:r.slice(i),offset:this.env.model.getters.getMainViewportCoordinates().x,headerRange:{start:e,end:t}}}get frozenUnhideHeadersProps(){let{xSplit:e}=this.env.model.getters.getPaneDivisions(this.sheetId),t=this.env.model.getters.getHiddenColsGroups(this.sheetId),n=t.findIndex(t=>t[0]>=e-1);return{headersGroups:n===-1?t:t.slice(0,n+1),headerRange:{start:0,end:e-1}}}get frozenContainerStyle(){return W({width:this.env.model.getters.getMainViewportCoordinates().x+`px`})}get hasFrozenPane(){return this.env.model.getters.getPaneDivisions(this.sheetId).xSplit>0}},fI=class extends uI{static props={onOpenContextMenu:Function};static template=`o-spreadsheet-RowResizer`;static components={UnhideRowHeaders:cI};setup(){super.setup(),this.rowResizerRef=(0,t.useRef)(`rowResizer`),this.PADDING=5,this.MAX_SIZE_MARGIN=60,this.MIN_ELEMENT_SIZE=10}rowResizerRef;get sheetId(){return this.env.model.getters.getActiveSheetId()}_getEvOffset(e){return e.offsetY}_getViewportOffset(){return this.env.model.getters.getActiveMainViewport().top}_getClientPosition(e){return e.clientY}_getElementIndex(e){return this.env.model.getters.getRowIndex(e)}_getSelectedZoneStart(){return this.env.model.getters.getSelectedZone().top}_getSelectedZoneEnd(){return this.env.model.getters.getSelectedZone().bottom}_getEdgeScroll(e){return this.env.model.getters.getEdgeScrollRow(e,e,e)}_getDimensionsInViewport(e){return this.env.model.getters.getRowDimensionsInViewport(this.sheetId,e)}_getElementSize(e){return this.env.model.getters.getRowSize(this.sheetId,e)}_getMaxSize(){return this.rowResizerRef.el.clientHeight}_updateSize(){let e=this.state.activeElement,t=this.state.delta+this._getElementSize(e),n=this.env.model.getters.getActiveRows();this.env.model.dispatch(`RESIZE_COLUMNS_ROWS`,{dimension:`ROW`,sheetId:this.sheetId,elements:n.has(e)?[...n]:[e],size:t})}_moveElements(){let e=[],t=this._getSelectedZoneStart(),n=this._getSelectedZoneEnd();for(let r=t;r<=n;r++)e.push(r);let r=this.env.model.dispatch(`MOVE_COLUMNS_ROWS`,{sheetId:this.sheetId,sheetName:this.env.model.getters.getActiveSheetName(),dimension:`ROW`,base:this.state.base,elements:e,position:this.state.position});r.isSuccessful||(r.reasons.includes(H.WillRemoveExistingMerge)?this.env.raiseError(dg):r.reasons.includes(H.CannotMoveTableHeader)&&this.env.raiseError(fg))}_selectElement(e,t){this.env.model.selection.selectRow(e,t?`newAnchor`:`overrideSelection`)}_increaseSelection(e){this.env.model.selection.selectRow(e,`updateAnchor`)}_fitElementSize(e){let t=this.env.model.getters.getActiveRows();this.env.model.dispatch(`AUTORESIZE_ROWS`,{sheetId:this.sheetId,rows:t.has(e)?[...t]:[e]})}_getType(){return`ROW`}_getActiveElements(){return this.env.model.getters.getActiveRows()}_getPreviousVisibleElement(e){let t=this.sheetId,n;for(n=e-1;n>=0&&this.env.model.getters.isRowHidden(t,n);n--);return n}get mainUnhideHeadersProps(){let{top:e,bottom:t}=this.env.model.getters.getActiveMainViewport(),{ySplit:n}=this.env.model.getters.getPaneDivisions(this.sheetId),r=this.env.model.getters.getHiddenRowsGroups(this.sheetId),i=r.findIndex(e=>e[0]>=n-1);return{headersGroups:i===-1?[]:r.slice(i),offset:this.env.model.getters.getMainViewportCoordinates().y,headerRange:{start:e,end:t}}}get frozenUnhideHeadersProps(){let{ySplit:e}=this.env.model.getters.getPaneDivisions(this.sheetId),t=this.env.model.getters.getHiddenRowsGroups(this.sheetId),n=t.findIndex(t=>t[0]>=e-1);return{headersGroups:n===-1?t:t.slice(0,n+1),headerRange:{start:0,end:e-1}}}get frozenContainerStyle(){return W({height:this.env.model.getters.getMainViewportCoordinates().y+`px`})}get hasFrozenPane(){return this.env.model.getters.getPaneDivisions(this.sheetId).ySplit>0}},pI=class extends t.Component{static props={onOpenContextMenu:Function};static template=`o-spreadsheet-HeadersOverlay`;static components={ColResizer:dI,RowResizer:fI};selectAll(){this.env.model.selection.selectAll()}},mI=class extends or{fingerprints;hoveredTables;hoveredIcon;lastRenderSheetId=void 0;lastRenderBoxes=new Map;preventNewAnimationsInNextFrame=!1;zonesWithPreventedAnimationsInNextFrame={};animations=new Map;getters;constructor(e,t=e(dr)){super(e),this.renderer=t;let n=e(sr);this.getters=n.getters,this.fingerprints=e(gN),this.hoveredTables=e(rI),this.hoveredIcon=e(iI),n.on(`command-dispatched`,this,this.handle),n.on(`command-finalized`,this,this.finalize),this.renderer.register(this),this.onDispose(()=>{n.off(`command-dispatched`,this),n.off(`command-finalized`,this),this.renderer.unRegister(this)})}handle(e){switch(e.type){case`START`:case`ACTIVATE_SHEET`:case`ADD_COLUMNS_ROWS`:case`REMOVE_COLUMNS_ROWS`:this.animations.clear(),this.preventNewAnimationsInNextFrame=!0;break;case`RESIZE_COLUMNS_ROWS`:this.preventNewAnimationsInNextFrame=!0;break;case`REDO`:this.zonesWithPreventedAnimationsInNextFrame={};break;case`UNDO`:for(let t of e.commands)if(t.type===`ADD_COLUMNS_ROWS`||t.type===`REMOVE_COLUMNS_ROWS`||t.type===`RESIZE_COLUMNS_ROWS`){this.animations.clear(),this.preventNewAnimationsInNextFrame=!0;break}break;case`PASTE`:this.preventNewAnimationsInNextFrame=!0;break;case`UPDATE_CELL`:let t=this.getters.getCommandZones(e);this.zonesWithPreventedAnimationsInNextFrame[e.sheetId]||(this.zonesWithPreventedAnimationsInNextFrame[e.sheetId]=[]),this.zonesWithPreventedAnimationsInNextFrame[e.sheetId].push(...t);break}}finalize(){for(let e in this.zonesWithPreventedAnimationsInNextFrame)this.zonesWithPreventedAnimationsInNextFrame[e]=rn(this.zonesWithPreventedAnimationsInNextFrame[e])}get renderingLayers(){return[`Background`,`Headers`]}drawLayer(e,t,n){switch(t){case`Background`:this.drawGlobalBackground(e);let t=e.sheetId===this.lastRenderSheetId?this.lastRenderBoxes:new Map;this.lastRenderSheetId=e.sheetId,this.lastRenderBoxes=new Map;let{sheetId:r,viewports:i}=e;for(let{zone:a,rect:o}of i.getAllSheetViewportsZonesAndRect(r)){let{ctx:s}=e;s.save(),s.beginPath(),s.rect(o.x,o.y,o.width,o.height),s.clip();let c=this.getGridBoxes(i,r,a),l=this.getBoxesWithAnimations(c,t,n);this.drawBackground(e,l),this.drawOverflowingCellBackground(e,l),this.drawCellBackground(e,l),this.drawBorders(e,l),this.drawTexts(e,l),this.drawIcon(e,l),s.restore()}this.drawFrozenPanes(e),this.preventNewAnimationsInNextFrame=!1,this.zonesWithPreventedAnimationsInNextFrame={};break;case`Headers`:this.drawHeaders(e),this.drawFrozenPanesHeaders(e);break}}drawGlobalBackground(e){let{ctx:t,viewports:n}=e,{width:r,height:i}=n.getSheetViewDimensionWithHeaders();t.fillStyle=this.getters.getSpreadsheetTheme().backgroundColor,t.fillRect(0,0,r+b,i+b)}drawBackground(e,t){let{ctx:n,thinLineWidth:r}=e,i=!e.hideGridLines&&this.getters.getGridLinesVisibility(e.sheetId),a=i?.1*r:0;if(i){n.strokeStyle=this.getters.getSpreadsheetTheme().gridBorderColor;for(let e of t)e.style.hideGridLines||(n.lineWidth=r,n.strokeRect(e.x+a,e.y+a,e.width-2*a,e.height-2*a))}}drawCellBackground(e,t){let{ctx:n}=e;for(let e of t){let t=e.style,r=ed(t.fillColor||`#ffffff`);if(r!==`#FFFFFF`&&(n.fillStyle=r,n.fillRect(e.x-b,e.y-b,e.width+b*2,e.height+b*2)),e.dataBarFill){n.fillStyle=e.dataBarFill.color;let t=e.dataBarFill.percentage,r=e.width*(t/100);n.fillRect(e.x,e.y,r,e.height)}if(e.overlayColor&&(n.fillStyle=pd(r,e.overlayColor),n.fillRect(e.x-b,e.y-b,e.width+b*2,e.height+b*2)),e?.chip){n.save(),n.beginPath(),n.rect(e.x,e.y,e.width,e.height),n.clip();let t=e.chip;n.fillStyle=e.overlayColor?pd(t.color,e.overlayColor):t.color,n.beginPath(),n.roundRect(t.x,t.y,t.width,t.height,10),n.fill(),n.restore()}e.isError&&(n.fillStyle=`red`,n.beginPath(),n.moveTo(e.x+e.width-5,e.y),n.lineTo(e.x+e.width,e.y),n.lineTo(e.x+e.width,e.y+5),n.fill())}}drawOverflowingCellBackground(e,t){let{ctx:n,thinLineWidth:r}=e;for(let e of t)if(e.content&&e.isOverflow){let t=e.content.align||`left`,i,a,o=e.y+r/2,s=e.height-r,c=Math.min(e.clipRect?.width||1/0,e.content.width);t===`left`?(i=e.x+r/2,a=c-2*r):t===`right`?(i=e.x+e.width-r/2,a=-c+2*r):(i=(e.clipRect?.x||e.x+e.width/2-e.content.width/2)+r/2,a=c-2*r),n.fillStyle=this.getters.getSpreadsheetTheme().backgroundColor,n.fillRect(i,o,a,s)}}drawBorders(e,t){let{ctx:n}=e;for(let e of t){let t=e.border;if(t){let{x:n,y:i,width:a,height:o}=e;t.left&&r(t.left,n,i,n,i+o),t.top&&r(t.top,n,i,n+a,i),t.right&&r(t.right,n+a,i,n+a,i+o),t.bottom&&r(t.bottom,n,i+o,n+a,i+o)}}function r({color:e,style:t,opacity:r},i,a,o,s){switch(n.globalAlpha=r??1,n.strokeStyle=e,t){case`medium`:n.lineWidth=2,i+=a===s?-.5:.5,o+=a===s?1.5:.5,a+=i===o?-.5:.5,s+=i===o?1.5:.5;break;case`thick`:n.lineWidth=3,a===s&&(i--,o++),i===o&&(a--,s++);break;case`dashed`:n.lineWidth=1,n.setLineDash([1,3]);break;case`dotted`:n.lineWidth=1,a===s&&(i+=.5,o+=.5),i===o&&(a+=.5,s+=.5),n.setLineDash([1,1]);break;default:n.lineWidth=1;break}n.beginPath(),n.moveTo(i,a),n.lineTo(o,s),n.stroke(),n.lineWidth=1,n.setLineDash([]),n.globalAlpha=1}}drawTexts(e,t){let{ctx:n}=e;n.textBaseline=`top`;let r;for(let e of t)if(e.content){n.globalAlpha=e.textOpacity??1;let t=e.content.align||`left`,i=e.chip?0:e.style.rotation,a={...e.style,align:t,rotation:i},o=Au(a);if(o!==r&&(r=o,n.font=o),n.fillStyle=a.textColor||`#000`,n.textAlign=t,e.clipRect){n.save(),n.beginPath();let{x:t,y:r,width:i,height:a}=e.clipRect;n.rect(t,r,i,a),n.clip()}let s=e.content.x,c=e.content.y;a.rotation&&(n.save(),n.rotate(a.rotation),{x:s,y:c}=Vu(e.content,a));for(let t of e.content.textLines)zu(n,t,{x:s,y:c},a.underline,a.strikethrough),c+=4+e.content.fontSizePx;a.rotation&&n.restore(),e.clipRect&&n.restore(),n.globalAlpha=1}}drawIcon(e,t){let{ctx:n}=e;for(let e of t)for(let t of Object.values(e.icons)){if(!t)continue;let r=T({id:t.type,position:t.position},this.hoveredIcon.hoveredIcon)&&t.hoverSvg||t.svg;if(!r)continue;n.save(),n.globalAlpha=t.opacity??1,n.beginPath();let i=t.clipRect||e;n.rect(i.x,i.y,i.width,i.height),n.clip();let a=t.size,{x:o,y:s}=this.getters.getCellIconRect(t,e);n.translate(o,s),n.scale(a/r.width,a/r.height);for(let e of r.paths)n.fillStyle=e.fillColor,n.fill(gv(e.path));n.restore()}}drawHeaders(e){let{ctx:t,thinLineWidth:n,viewports:r,sheetId:i}=e,a=r.getSheetViewVisibleCols(i),o=a[0],s=r.getSheetViewVisibleRows(i),c=s[0],{width:l,height:u}=r.getSheetViewDimensionWithHeaders(),d=e.selectedZones,f=Zn(d),p=$n(d),m=this.getters.getNumberCols(i),h=this.getters.getNumberRows(i),g=e.activeCols,_=e.activeRows,v=this.getters.getSpreadsheetTheme();t.font=`400 11px ${Se}`,t.textAlign=`center`,t.textBaseline=`middle`,t.lineWidth=n,t.strokeStyle=v.headerTextColor;for(let e of a){let n={left:e,right:e,top:0,bottom:h-1},{x:a,width:o}=r.getVisibleRect(i,n),s=g.has(e),c=f.has(e);s?t.fillStyle=v.headerActiveBackgroundColor:c?t.fillStyle=v.headerSelectedBackgroundColor:t.fillStyle=v.headerBackgroundColor,t.fillRect(a,0,o,26)}for(let e of s){let n={top:e,bottom:e,left:0,right:m-1},{y:a,height:o}=r.getVisibleRect(i,n),s=_.has(e),c=p.has(e);s?t.fillStyle=v.headerActiveBackgroundColor:c?t.fillStyle=v.headerSelectedBackgroundColor:t.fillStyle=v.headerBackgroundColor,t.fillRect(0,a,48,o)}t.beginPath(),t.moveTo(48,0),t.lineTo(48,u),t.moveTo(0,26),t.lineTo(l,26),t.strokeStyle=v.headerBorderColor,t.stroke();for(let e of a){let n=qt(e);t.fillStyle=g.has(e)?`#fff`:v.headerTextColor;let a={left:e,right:e,top:c,bottom:c},{x:o,width:s}=r.getRect(i,a),{x:l,width:u}=r.getVisibleRect(i,a);t.save(),t.beginPath(),t.rect(l,0,u,26),t.clip(),t.fillText(n,o+s/2,26/2),t.restore(),t.beginPath(),t.moveTo(o+s,0),t.lineTo(o+s,26),t.stroke()}for(let e of s){t.fillStyle=_.has(e)?`#fff`:v.headerTextColor;let n={top:e,bottom:e,left:o,right:o},{y:a,height:s}=r.getRect(i,n),{y:c,height:l}=r.getVisibleRect(i,n);t.save(),t.beginPath(),t.rect(0,c,48,l),t.clip(),t.fillText(String(e+1),48/2,a+s/2),t.restore(),t.beginPath(),t.moveTo(0,a+s),t.lineTo(48,a+s),t.stroke()}}drawFrozenPanesHeaders(e){let{ctx:t,thinLineWidth:n,sheetId:r,viewports:i}=e,{x:a,y:o}=i.getMainViewportCoordinates(r),s=i.getGridOffsetX(),c=i.getGridOffsetY();t.lineWidth=6*n,t.strokeStyle=this.getters.getSpreadsheetTheme().frozenPaneHeaderBorderColor,t.beginPath(),a&&(t.moveTo(s+a,0),t.lineTo(s+a,c)),o&&(t.moveTo(0,c+o),t.lineTo(s,c+o)),t.stroke()}drawFrozenPanes(e){let{ctx:t,thinLineWidth:n,sheetId:r,viewports:i}=e,{x:a,y:o}=i.getMainViewportCoordinates(r),s=i.getSheetViewVisibleCols(r),c=s[0],l=s[s.length-1],u=i.getSheetViewVisibleRows(r),d={left:c,right:l,top:u[0],bottom:u[u.length-1]},f=e.viewports.getVisibleRect(e.sheetId,d),p=i.getGridOffsetX(),m=i.getGridOffsetY();t.lineWidth=6*n,t.strokeStyle=this.getters.getSpreadsheetTheme().frozenPaneBorderColor,t.beginPath(),a&&(t.moveTo(p+a,m),t.lineTo(p+a,f.height+m)),o&&(t.moveTo(p,m+o),t.lineTo(f.width+p,m+o)),t.stroke()}findNextEmptyCol(e,t,n,r){let i=t;for(;i<n;){let t={sheetId:e,col:i+1,row:r},n=this.getters.getEvaluatedCell(t),a=this.getters.getCellComputedBorder(t),o=this.getters.doesCellHaveGridIcon(t);if(n.type!==V.empty||this.getters.isInMerge(t)||a?.left||o)return i;i++}return i}findPreviousEmptyCol(e,t,n,r){let i=t;for(;i>n;){let t={sheetId:e,col:i-1,row:r},n=this.getters.getEvaluatedCell(t),a=this.getters.getCellComputedBorder(t),o=this.getters.doesCellHaveGridIcon(t);if(n.type!==V.empty||this.getters.isInMerge(t)||a?.right||o)return i;i--}return i}computeCellAlignment(e,t){if(this.getters.getCell(e)?.isFormula&&this.getters.shouldShowFormulas())return`left`;let{align:n}=this.getters.getCellStyle(e),r=this.getters.getEvaluatedCell(e);return!n&&Jo(r.value,r.format)?`left`:t&&r.type===V.number?n===`center`?n:`left`:n||r.defaultAlign}createZoneBox(e,t,n,r){let{left:i,right:a}=r,o=n.left,s=n.top,c={sheetId:t,col:o,row:s},l=this.getters.getEvaluatedCell(c),u=this.getters.shouldShowFormulas(),{x:d,y:f,width:p,height:m}=e.getRect(t,n),h=this.getters.getDataValidationChipStyle(c),g=this.getters.getCellComputedStyle(c);if(this.fingerprints.isEnabled){let e=this.fingerprints.colors.get(c);g={...g,fillColor:e}}h?.textColor&&(g={...g,textColor:h.textColor});let _=this.fingerprints.isEnabled?void 0:this.getters.getConditionalDataBar(c),v=this.getters.getCellIcons(c),y={left:v.find(e=>e?.horizontalAlign===`left`),right:v.find(e=>e?.horizontalAlign===`right`),center:v.find(e=>e?.horizontalAlign===`center`)},b={id:bn(n),x:d,y:f,width:p,height:m,border:this.getters.getCellComputedBorder(c)||void 0,style:g,dataBarFill:_,overlayColor:this.hoveredTables.overlayColors.get(c),isError:l.type===V.error&&!!l.message||this.getters.isDataValidationInvalid(c),icons:y,disabledAnimation:this.zonesWithPreventedAnimationsInNextFrame[t]?.some(e=>Mn(n,e)||kn(n,e))},ee=ju(b.style);if(l.type===V.empty||b.icons.center)return b;let te=g.wrapping||`overflow`,ne=te===`wrap`&&!u,re=p-8,ie=g.align?0:re,ae=ne?re:void 0,oe=this.getters.getCellMultiLineText(c,{maxWidth:ie,wrapWidth:ae}),se={...g,align:`left`,rotation:0},ce=Math.max(...oe.map(e=>this.getters.getTextWidth(e,se)))+4,le=this.getters.getMultilineTextSize(oe,g),ue=h?5:0,de=(b.icons.left?b.icons.left.size+b.icons.left.margin:0)+ue,fe=(b.icons.right?b.icons.right.size+b.icons.right.margin:0)+ue,pe=de+le.width+fe+4,me=this.computeCellAlignment(c,pe>p),he=oe.length,ge=Math.round(this.getters.computeTextYCoordinate(b,ee,g.verticalAlign,he)),_e=b.x;me===`left`?_e+=4+de:me===`right`?_e+=b.width-4-fe:_e+=b.width/2,_e=Math.round(_e);let ve=vu(ee,he);if(b.content={textLines:oe,width:te===`overflow`?ce:p,textHeight:ve,textWidth:ce,align:me,x:_e,y:ge,fontSizePx:ee},h?.fillColor){let e=de;b.chip={color:h.fillColor,width:b.width-e-5,height:ve+2,x:b.x+e,y:ge-2}}let ye=pe>p||le.height>m;if(b.icons.left||b.icons.right||b.chip)b.clipRect={x:b.x+de,y:b.y,width:Math.max(0,p-de-fe),height:m};else if(ye&&te===`overflow`){let r,l;switch(this.getters.isInMerge(c)?(r=this.getters.getMerge(c).right,l=o):(r=b.border?.right?n.right:this.findNextEmptyCol(t,o,a,s),l=b.border?.left?n.left:this.findPreviousEmptyCol(t,o,i,s),b.isOverflow=!0),me){case`left`:{let i=D({col:r,row:s}),{x:a,y:o,width:c,height:l}=e.getVisibleRect(t,Tn(n,i));(c<pe||ee>l||oe.length>1)&&(b.clipRect={x:a,y:o,width:c,height:l});break}case`right`:{let r=D({col:l,row:s}),{x:i,y:a,width:o,height:c}=e.getVisibleRect(t,Tn(n,r));(o<pe||ee>c||oe.length>1)&&(b.clipRect={x:i,y:a,width:o,height:c});break}case`center`:{let i={...n,left:l,right:r},{x:a,y:o,height:s,width:c}=e.getVisibleRect(t,i),u=pe/2,d=b.x+b.width/2;if(a+c<d+u||a>d-u||ee>s||oe.length>1){let e=a>d-u?a:d-u;b.clipRect={x:e,y:o,width:a+c-e,height:s}}break}}}else (te===`clip`||te===`wrap`||oe.length>1)&&(b.clipRect={x:b.x,y:b.y,width:p,height:m});return b}getGridBoxes(e,t,n){let r=[],i=e.getSheetViewVisibleCols(t).filter(e=>e>=n.left&&e<=n.right),a=i[0],o=i[i.length-1],s=e.getSheetViewVisibleRows(t).filter(e=>e>=n.top&&e<=n.bottom),c={left:a,right:o,top:s[0],bottom:s[s.length-1]};for(let n of s)for(let a of i){let i={sheetId:t,col:a,row:n};this.getters.isInMerge(i)||r.push(this.createZoneBox(e,t,D(i),c))}for(let n of this.getters.getMerges(t))if(!this.getters.isMergeHidden(t,n)&&kn(n,c)){let i=this.createZoneBox(e,t,n,c),a=this.getters.getCellComputedBorder({sheetId:t,col:n.right,row:n.bottom});i.border={...i.border,bottom:a?a.bottom:void 0,right:a?a.right:void 0},i.isMerge=!0,r.push(i)}return r}getBoxesWithAnimations(e,t,n){return this.updateAnimationsProgress(n),this.addNewAnimations(e,t,n),this.animations.size>0?(this.renderer.startAnimation(`grid_renderer_animation`),this.updateBoxesWithAnimations(e)):(this.renderer.stopAnimation(`grid_renderer_animation`),e)}updateBoxesWithAnimations(e){let t=[];for(let n of e){let e=this.animations.get(n.id);if(!e){t.push(n);continue}let r=x(n);t.push(r);for(let i of e.animationTypes){let a=Ch.get(i).updateAnimation(e.progress,r,e.oldBox,n);a&&t.push(...a.newBoxes)}}return t}updateAnimationsProgress(e){if(e!==void 0)for(let t of this.animations.keys()){let n=this.animations.get(t);if(n.startTime===void 0){n.startTime=e;continue}let r=e-n.startTime,i=Math.min(1,r/200);i>=1&&this.animations.delete(t),n.progress=i}}addNewAnimations(e,t,n){for(let r of e){this.lastRenderBoxes.set(r.id,r);let e=t.get(r.id);if(this.preventNewAnimationsInNextFrame||!e||r.disabledAnimation)continue;let i=[];for(let t of Ch.getAll())t.hasAnimation(e,r)&&i.push(t.id);let a=i.length>0?{animationTypes:i,oldBox:e,progress:0,startTime:n}:void 0;a&&this.animations.set(r.id,a)}}};function hI({refName:e,renderingCtx:n,rendererStore:r,changeCanvasSizeOnZoom:i}){let a=(0,t.useRef)(e);(0,t.useEffect)(s);let o=r||O(dr);wr(mI,o);function s(){let e=a.el,t=e.getContext(`2d`,{alpha:!1}),r={ctx:t,thinLineWidth:.4,...n()},s=r.dpr,c=r.viewports.getZoomLevel();i||(c=Math.max(c,1));let{width:l,height:u}=r.viewports.getSheetViewDimensionWithHeaders();e.width=l*s*c,e.height=u*s*c;let d=W({width:i?`${l*c}px`:`${l}px`,height:i?`${u*c}px`:`${u}px`});e.setAttribute(`style`,d),!(l===0||u===0)&&(t.translate(-b,-b),t.scale(s*c,s*c),o.draw(r))}}let gI=.95;function _I(e,{updateScroll:n,canMoveUp:r,canMoveDown:i,getZoom:a,setZoom:o}){let s=0,c=0,l=0,u=0,d=!1,f=0,p=null,m=!1,h=[],g=-1;YO(e,`touchstart`,_,{capture:!1}),YO(e,`touchmove`,v,{capture:!1}),YO(e,`touchend`,y,{capture:!1}),YO(e,`pointerdown`,ee,{passive:!1,capture:!1}),YO(e,`pointermove`,ne,{passive:!1,capture:!1}),(0,t.useExternalListener)(window,`pointerup`,te,{passive:!1,capture:!0}),YO(e,`pointercancel`,te,{passive:!1});function _(e){d=!0,{clientX:s,clientY:c}=e.touches[0],l=0,u=0}function v(e){if(!d||m){e.cancelable&&e.preventDefault(),e.stopPropagation();return}p&&=(clearTimeout(p),null);let t=Date.now(),{clientX:a,clientY:o}=e.touches[0],h=s-a,g=c-o,_=t-f;_&&(l=h/_,u=g/_,s=a,c=o,f=t,(g<0&&r()||g>0&&i())&&(e.cancelable&&e.preventDefault(),e.stopPropagation()),p=setTimeout(()=>{l=0,u=0},100),n(h*1,g*1))}function y(e){d=!1,s=c=0,p&&clearTimeout(p),l*=1.2,u*=1.2,requestAnimationFrame(b)}function b(){if(Math.abs(l)<.05&&(l=0),Math.abs(u)<.05&&(u=0),!l&&!u)return;let e=Date.now(),t=Math.abs(e-f),r=l*t,i=u*t;n(r*1,i*1),f=e,l*=gI,u*=gI,requestAnimationFrame(b)}function ee(e){e.button===0&&h.findIndex(t=>t.pointerId===e.pointerId)===-1&&(h.push(e),h.length<2?g=-1/0:h.length===2&&(g=vI(h[0],h[1])))}function te(e){let t=h.findIndex(t=>t.pointerId===e.pointerId);t!==-1&&(h.splice(t,1),h.length<2&&(g=-1/0,m=!1))}function ne(e){let t=h.findIndex(t=>t.pointerId===e.pointerId);if(t!==-1&&(h[t]=e,h.length===2)){let e=vI(h[0],h[1]);if(!m&&Math.abs(e-g)>=30&&(m=!0,g=e),m){let t=(e/g)**.5;o(Math.round(a()*t*1e3)/1e3),g=e}}}}function vI(e,t){let n=e.clientX-t.clientX,r=e.clientY-t.clientY;return Math.sqrt(n*n+r*r)}function yI(e){function t(e,t){return e*(t===0?1:23)}return n=>{e(t(n.shiftKey&&!bm()?n.deltaY:n.deltaX,n.deltaMode),t(n.shiftKey&&!bm()?n.deltaX:n.deltaY,n.deltaMode))}}var bI=class extends t.Component{static template=`o-spreadsheet-Border`;static props={zone:Object,orientation:String,isMoving:Boolean,onMoveHighlight:Function};get style(){let e=[`n`,`w`,`e`].includes(this.props.orientation),t=[`n`,`w`,`s`].includes(this.props.orientation),n=[`n`,`s`].includes(this.props.orientation),r=[`w`,`e`].includes(this.props.orientation),i=this.props.zone,a=this.env.model.getters.getVisibleRect(i),o=a.x,s=a.x+a.width-4,c=a.y,l=a.y+a.height-4,u=t?o:s,d=e?c:l,f=n?s-o:4,p=r?l-c:4;return W({left:`${u}px`,top:`${d}px`,width:`${f}px`,height:`${p}px`})}onMouseDown(e){this.props.onMoveHighlight(e)}},xI=class extends t.Component{static template=`o-spreadsheet-Corner`;static props={zone:Object,color:String,orientation:String,isResizing:Boolean,onResizeHighlight:Function};dirX;dirY;setup(){let{dirX:e,dirY:t}=SI(this.props.orientation);this.dirX=e,this.dirY=t}get handlerStyle(){let e=this.props.zone,t=this.env.model.getters.getVisibleRect({left:this.dirX===1?e.right:e.left,right:this.dirX===-1?e.left:e.right,top:this.dirY===1?e.bottom:e.top,bottom:this.dirY===-1?e.top:e.bottom});if(t.width*t.height===0)return`display: none !important;`;let n=t.x+t.width/2+this.dirX*t.width/2,r=t.y+t.height/2+this.dirY*t.height/2,i=this.getHandlerEdgeLength(),a={left:`${n-i/2}px`,top:`${r-i/2}px`,height:`${i}px`,width:`${i}px`};return this.env.isMobile()&&(a[`border-radius`]=`${i/2}px`),W(a)}getHandlerEdgeLength(){return this.env.isMobile()?40:8}get buttonLook(){let e={"background-color":this.props.color,cursor:`${this.props.orientation}-resize`};return this.env.isMobile()&&(e[`border-radius`]=`${8/2}px`),W(e)}onMouseDown(e){this.props.onResizeHighlight(e,this.dirX,this.dirY)}};function SI(e){return{dirX:e.includes(`w`)?-1:+!!e.includes(`e`),dirY:e.includes(`n`)?-1:+!!e.includes(`s`)}}var CI=class extends t.Component{static template=`o-spreadsheet-Highlight`;static props={range:Object,color:String};static components={Corner:xI,Border:bI};highlightState=(0,t.useState)({shiftingMode:`none`});dragNDropGrid=pF(this.env);get cornerOrientations(){if(!this.env.isMobile())return[`nw`,`ne`,`sw`,`se`];let e=this.props.range.unboundedZone;return e.bottom===void 0?[`w`,`e`]:e.right===void 0?[`n`,`s`]:[`nw`,`se`]}onResizeHighlight(e,t,n){let r=this.env.model.getters.getActiveSheetId(),i=Am(this.env,e);this.highlightState.shiftingMode=`isResizing`;let a=this.props.range.zone,o=t===1?a.left:a.right,s=n===1?a.top:a.bottom,c=t===1?a.right:a.left,l=n===1?a.bottom:a.top,u=a,d=`all`;this.env.isMobile()&&(d=t===0?`vertical`:n===0?`horizontal`:`all`),this.env.model.dispatch(`START_CHANGE_HIGHLIGHT`,{zone:u}),this.dragNDropGrid.start(i,(e,t)=>{if(c!==e||l!==t){let{left:n,right:i,top:a,bottom:f}=u;d!==`horizontal`&&(l=l=S(t===-1?l:t,0,this.env.model.getters.getNumberRows(r)-1),a=Math.min(s,l),f=Math.max(s,l)),d!==`vertical`&&(c=S(e===-1?c:e,0,this.env.model.getters.getNumberCols(r)-1),n=Math.min(o,c),i=Math.max(o,c));let p={left:n,right:i,top:a,bottom:f};On(p,u)||(this.env.model.selection.selectZone({cell:{col:p.left,row:p.top},zone:p},{unbounded:!0}),u=p)}},()=>{this.highlightState.shiftingMode=`none`},d)}onMoveHighlight(e){this.highlightState.shiftingMode=`isMoving`;let t=this.props.range.zone,n=lm(this.env.model.getters.getViewportZoomLevel()),r=Am(this.env,e,n),i=this.env.model.getters.getActiveSheetId(),a=this.env.model.getters.getColIndex(r.clientX-n.x),o=this.env.model.getters.getRowIndex(r.clientY-n.y),s=-t.left,c=this.env.model.getters.getNumberCols(i)-t.right-1,l=-t.top,u=this.env.model.getters.getNumberRows(i)-t.bottom-1,d=t;this.env.model.dispatch(`START_CHANGE_HIGHLIGHT`,{zone:d});let f=a,p=o;this.dragNDropGrid.start(r,(e,n)=>{if(f!==e||p!==n){f=e===-1?f:e,p=n===-1?p:n;let r=S(f-a,s,c),i=S(p-o,l,u),m={left:t.left+r,top:t.top+i,right:t.right+r,bottom:t.bottom+i};On(m,d)||(this.env.model.selection.selectZone({cell:{col:m.left,row:m.top},zone:m},{unbounded:!0}),d=m)}},()=>{this.highlightState.shiftingMode=`none`})}},wI=class{direction;el;constructor(e,t){this.el=e,this.direction=t}get scroll(){return this.direction===`horizontal`?this.el.scrollLeft:this.el.scrollTop}set scroll(e){this.direction===`horizontal`?this.el.scrollLeft=e:this.el.scrollTop=e}},TI=class extends t.Component{static props={width:{type:Number,optional:!0},height:{type:Number,optional:!0},direction:String,position:Object,offset:Number,onScroll:Function};static template=t.xml`
93
+ <div
94
+ t-attf-class="o-scrollbar {{props.direction}}"
95
+ t-on-scroll="onScroll"
96
+ t-ref="scrollbar"
97
+ t-att-style="positionCss">
98
+ <div t-att-style="sizeCss"/>
99
+ </div>
100
+ `;static defaultProps={width:1,height:1};scrollbarRef;scrollbar;setup(){this.scrollbarRef=(0,t.useRef)(`scrollbar`),this.scrollbar=new wI(this.scrollbarRef.el,this.props.direction),(0,t.onMounted)(()=>{this.scrollbar.el=this.scrollbarRef.el}),(0,t.useEffect)(()=>{this.scrollbar.scroll!==this.props.offset&&(this.scrollbar.scroll=this.props.offset)},()=>[this.scrollbar.scroll,this.props.offset])}get sizeCss(){return W({width:`${this.props.width}px`,height:`${this.props.height}px`})}get positionCss(){return W(this.props.position)}onScroll(e){this.props.offset!==this.scrollbar.scroll&&this.props.onScroll(this.scrollbar.scroll)}},EI=class extends t.Component{static props={leftOffset:{type:Number,optional:!0}};static components={ScrollBar:TI};static template=t.xml`
101
+ <ScrollBar
102
+ t-if="isDisplayed"
103
+ width="width"
104
+ position="position"
105
+ offset="offset"
106
+ direction="'horizontal'"
107
+ onScroll.bind="onScroll"
108
+ />`;static defaultProps={leftOffset:0};get offset(){return this.env.model.getters.getActiveSheetScrollInfo().scrollX}get width(){return this.env.model.getters.getMainViewportRect().width}get isDisplayed(){let{xRatio:e}=this.env.model.getters.getFrozenSheetViewRatio(this.env.model.getters.getActiveSheetId());return e<1}get position(){let{x:e}=this.env.model.getters.getMainViewportRect(),t=this.env.model.getters.getScrollBarWidth();return{left:`${this.props.leftOffset+e}px`,bottom:`0px`,height:`${t}px`,right:wm()?`${t}px`:`0`}}onScroll(e){let{scrollY:t}=this.env.model.getters.getActiveSheetScrollInfo();this.env.model.dispatch(`SET_VIEWPORT_OFFSET`,{offsetX:e,offsetY:t})}},DI=class extends t.Component{static props={topOffset:{type:Number,optional:!0}};static components={ScrollBar:TI};static template=t.xml`
109
+ <ScrollBar
110
+ t-if="isDisplayed"
111
+ height="height"
112
+ position="position"
113
+ offset="offset"
114
+ direction="'vertical'"
115
+ onScroll.bind="onScroll"
116
+ />`;static defaultProps={topOffset:0};get offset(){return this.env.model.getters.getActiveSheetScrollInfo().scrollY}get height(){return this.env.model.getters.getMainViewportRect().height}get isDisplayed(){let{yRatio:e}=this.env.model.getters.getFrozenSheetViewRatio(this.env.model.getters.getActiveSheetId());return e<1}get position(){let{y:e}=this.env.model.getters.getMainViewportRect(),t=this.env.model.getters.getScrollBarWidth();return{top:`${this.props.topOffset+e}px`,right:`0px`,width:`${t}px`,bottom:wm()?`${t}px`:`0`}}onScroll(e){let{scrollX:t}=this.env.model.getters.getActiveSheetScrollInfo();this.env.model.dispatch(`SET_VIEWPORT_OFFSET`,{offsetX:t,offsetY:e})}},OI=class extends t.Component{static template=`o-spreadsheet-Selection`;static props={};static components={Highlight:CI};get highlightProps(){let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getUnboundedZone(e,this.env.model.getters.getSelectedZone());return{range:this.env.model.getters.getRangeFromZone(e,t),color:te}}},kI=class extends t.Component{static template=`o-spreadsheet-TableResizer`;static props={table:Object};state=(0,t.useState)({highlightZone:void 0});dragNDropGrid=pF(this.env);setup(){QO(this)}get containerStyle(){let e=this.props.table.range.zone,t=this.props.table.range.sheetId;if(this.env.model.getters.isReadonly()||this.env.model.getters.isSheetLocked(t))return W({display:`none`});let n={...e,left:e.right,top:e.bottom},r=this.env.model.getters.getVisibleRect(n);return r.height===0||r.width===0?W({display:`none`}):W({top:`${r.y+r.height-6}px`,left:`${r.x+r.width-6}px`})}onMouseDown(e){let t=this.props.table.range.zone,n={col:t.left,row:t.top};document.body.style.cursor=`nwse-resize`;let r=Am(this.env,e);this.dragNDropGrid.start(r,(e,t,r)=>{this.state.highlightZone={left:n.col,top:n.row,right:Math.max(e,n.col),bottom:Math.max(t,n.row)}},()=>{document.body.style.cursor=``;let e=this.state.highlightZone;if(!e)return;let t=this.props.table.range.sheetId;this.env.model.dispatch(`RESIZE_TABLE`,{sheetId:t,zone:this.props.table.range.zone,newTableRange:this.env.model.getters.getRangeDataFromZone(t,e)}),this.state.highlightZone=void 0})}get highlights(){return this.state.highlightZone?[{range:this.env.model.getters.getRangeFromZone(this.props.table.range.sheetId,this.state.highlightZone),color:`#777`,noFill:!0}]:[]}};let AI={ROW:lF,COL:nF,CELL:VP,GROUP_HEADERS:sF,UNGROUP_HEADERS:cF};var jI=class extends t.Component{static template=`o-spreadsheet-Grid`;static props={exposeFocus:Function,getGridSize:Function};static components={GridComposer:HF,GridOverlay:oI,GridPopover:sI,HeadersOverlay:pI,MenuPopover:Zh,Autofill:hF,ClientTag:_F,Highlight:CI,Popover:qh,VerticalScrollBar:DI,HorizontalScrollBar:EI,TableResizer:kI,Selection:OI};HEADER_HEIGHT=26;HEADER_WIDTH=48;menuState;gridRef;highlightStore;cellPopovers;composerFocusStore;DOMFocusableElementStore;paintFormatStore;clientFocusStore;dragNDropGrid=pF(this.env);onMouseWheel;hoveredCell;sidePanel;setup(){this.highlightStore=O(oT),this.menuState=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]}),this.gridRef=(0,t.useRef)(`grid`),this.hoveredCell=O(ag),this.composerFocusStore=O(mr),this.DOMFocusableElementStore=O(Ih),this.sidePanel=O(lN),this.paintFormatStore=O(nI),this.clientFocusStore=O(dF),O(uF),(0,t.useChildSubEnv)({getPopoverContainerRect:()=>this.getGridRect()}),(0,t.useExternalListener)(document.body,`cut`,this.copy.bind(this,!0)),(0,t.useExternalListener)(document.body,`copy`,this.copy.bind(this,!1)),(0,t.useExternalListener)(document.body,`paste`,this.paste),(0,t.onMounted)(()=>this.focusDefaultElement()),this.props.exposeFocus(()=>this.focusDefaultElement()),hI({refName:`canvas`,renderingCtx:()=>({dpr:window.devicePixelRatio||1,viewports:this.env.model.getters.getViewportCollection(),...this.env.model.getters.getSelectionState()})}),this.onMouseWheel=yI((e,t)=>{this.moveCanvas(e,t),this.hoveredCell.clear()}),this.cellPopovers=O(RS),(0,t.useEffect)((e,t)=>{!e&&!t&&this.DOMFocusableElementStore.focus()},()=>[this.sidePanel.isMainPanelOpen,this.sidePanel.isSecondaryPanelOpen]),_I(this.gridRef,{updateScroll:this.moveCanvas.bind(this),canMoveUp:()=>{let{scrollY:e}=this.env.model.getters.getActiveSheetScrollInfo();return e>0},canMoveDown:()=>{let{maxOffsetY:e}=this.env.model.getters.getMaximumSheetOffset(),{scrollY:t}=this.env.model.getters.getActiveSheetScrollInfo();return t<e},getZoom:()=>this.env.model.getters.getViewportZoomLevel(),setZoom:e=>this.env.model.dispatch(`SET_ZOOM`,{zoom:e})})}get highlights(){return this.highlightStore.highlights}get gridOverlayDimensions(){let e=this.env.model.getters.getScrollBarWidth();return W({top:`26px`,left:`48px`,height:`calc(100% - ${26+e}px)`,width:`calc(100% - ${48+e}px)`})}onClosePopover(){this.cellPopovers.isOpen&&this.cellPopovers.close(),this.focusDefaultElement()}keyDownMapping={Enter:()=>this.editOrMoveInSelection(`down`),"Shift+Enter":()=>this.editOrMoveInSelection(`up`),Tab:()=>this.moveInSelection(`right`),"Shift+Tab":()=>this.moveInSelection(`left`),F2:()=>{this.focusComposerFromActiveCell()},Delete:()=>{this.env.model.dispatch(`DELETE_UNFILTERED_CONTENT`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()})},Backspace:()=>{this.env.model.dispatch(`DELETE_UNFILTERED_CONTENT`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()})},Escape:()=>{this.cellPopovers.isOpen?this.cellPopovers.close():this.menuState.isOpen?this.closeMenu():this.paintFormatStore.isActive?this.paintFormatStore.cancel():this.env.model.dispatch(`CLEAN_CLIPBOARD_HIGHLIGHT`)},"Ctrl+A":()=>this.env.model.selection.loopSelection(),"Ctrl+Z":()=>this.env.model.dispatch(`REQUEST_UNDO`),"Ctrl+Y":()=>this.env.model.dispatch(`REQUEST_REDO`),F4:()=>this.env.model.dispatch(`REQUEST_REDO`),"Ctrl+B":()=>this.env.model.dispatch(`SET_FORMATTING`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{bold:!this.env.model.getters.getCurrentStyle().bold}}),"Ctrl+I":()=>this.env.model.dispatch(`SET_FORMATTING`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{italic:!this.env.model.getters.getCurrentStyle().italic}}),"Ctrl+U":()=>this.env.model.dispatch(`SET_FORMATTING`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{underline:!this.env.model.getters.getCurrentStyle().underline}}),"Ctrl+O":()=>LC(this.env),"Alt+=":()=>{let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getSelectedZone(),{anchor:n}=this.env.model.getters.getSelection(),r=this.env.model.getters.getAutomaticSums(e,t,n.cell);if(this.env.model.getters.isSingleCellOrMerge(e,t)||this.env.model.getters.isEmpty(e,t)&&r.length<=1){let t=r[0]?.zone?this.env.model.getters.zoneToXC(e,r[0].zone):``,n=`=SUM(${t})`;this.onComposerCellFocused(n,{start:5,end:5+t.length})}else this.env.model.dispatch(`SUM_SELECTION`)},"Alt+Enter":()=>{let e=this.env.model.getters.getActiveCell();e.link&&Ql(e.link,this.env)},"Ctrl+Home":()=>{let e=this.env.model.getters.getActiveSheetId(),{col:t,row:n}=this.env.model.getters.getNextVisibleCellPosition({sheetId:e,col:0,row:0});this.env.model.selection.selectCell(t,n)},"Ctrl+End":()=>{let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.findVisibleHeader(e,`COL`,this.env.model.getters.getNumberCols(e)-1,0),n=this.env.model.getters.findVisibleHeader(e,`ROW`,this.env.model.getters.getNumberRows(e)-1,0);this.env.model.selection.selectCell(t,n)},"Shift+ ":()=>{let e=this.env.model.getters.getActiveSheetId(),t={...this.env.model.getters.getSelectedZone(),left:0,right:this.env.model.getters.getNumberCols(e)-1},n=this.env.model.getters.getActivePosition();this.env.model.selection.selectZone({cell:n,zone:t})},"Ctrl+ ":()=>{let e=this.env.model.getters.getActiveSheetId(),t={...this.env.model.getters.getSelectedZone(),top:0,bottom:this.env.model.getters.getNumberRows(e)-1},n=this.env.model.getters.getActivePosition();this.env.model.selection.selectZone({cell:n,zone:t})},"Ctrl+D":()=>{MS(this.env,{type:`COPY_PASTE_CELLS_ABOVE`})},"Ctrl+R":()=>{MS(this.env,{type:`COPY_PASTE_CELLS_ON_LEFT`})},"Ctrl+Enter":()=>{MS(this.env,{type:`COPY_PASTE_CELLS_ON_ZONE`})},"Ctrl+H":()=>this.sidePanel.open(`FindAndReplace`,{}),"Ctrl+F":()=>this.sidePanel.open(`FindAndReplace`,{}),"Ctrl+Shift+E":()=>this.setHorizontalAlign(`center`),"Ctrl+Shift+L":()=>this.setHorizontalAlign(`left`),"Ctrl+Shift+R":()=>this.setHorizontalAlign(`right`),"Ctrl+Shift+V":()=>fC(this.env),"Ctrl+Shift+<":()=>this.clearFormatting(),"Ctrl+<":()=>this.clearFormatting(),"Ctrl+Shift+ ":()=>{this.env.model.selection.selectAll()},"Ctrl+Alt+=":()=>{let e=this.env.model.getters.getActiveCols(),t=this.env.model.getters.getActiveRows(),n=this.env.model.getters.getSelectedZones().length===1,r=e.size>0&&n,i=t.size>0&&n;r&&!i?OC(this.env):i&&!r&&EC(this.env)},"Ctrl+Alt+-":()=>{let e=[...this.env.model.getters.getActiveCols()],t=[...this.env.model.getters.getActiveRows()];e.length>0&&t.length===0?this.env.model.dispatch(`REMOVE_COLUMNS_ROWS`,{sheetId:this.env.model.getters.getActiveSheetId(),sheetName:this.env.model.getters.getActiveSheetName(),dimension:`COL`,elements:e}):t.length>0&&e.length===0&&this.env.model.dispatch(`REMOVE_COLUMNS_ROWS`,{sheetId:this.env.model.getters.getActiveSheetId(),sheetName:this.env.model.getters.getActiveSheetName(),dimension:`ROW`,elements:t})},"Shift+PageDown":()=>{this.env.model.dispatch(`ACTIVATE_NEXT_SHEET`)},"Shift+PageUp":()=>{this.env.model.dispatch(`ACTIVATE_PREVIOUS_SHEET`)},"Shift+F11":()=>{Aw.execute?.(this.env)},"Alt+T":()=>{_w.execute?.(this.env)},PageDown:()=>this.env.model.dispatch(`SHIFT_VIEWPORT_DOWN`),PageUp:()=>this.env.model.dispatch(`SHIFT_VIEWPORT_UP`),"Ctrl+Shift+K":()=>{this.closeMenu(),BC(this.env)},"Alt+Shift+ArrowRight":()=>this.processHeaderGroupingKey(`right`),"Alt+Shift+ArrowLeft":()=>this.processHeaderGroupingKey(`left`),"Alt+Shift+ArrowUp":()=>this.processHeaderGroupingKey(`up`),"Alt+Shift+ArrowDown":()=>this.processHeaderGroupingKey(`down`)};focusComposerFromActiveCell(){this.env.model.getters.getActiveCell().type===V.empty?this.onComposerCellFocused():this.onComposerContentFocused()}editOrMoveInSelection(e){if(this.isSingleCellOrMergeSelection()){this.focusComposerFromActiveCell();return}nT(this.env.model.getters,this.env.model.selection,e)}moveInSelection(e){if(this.isSingleCellOrMergeSelection()){this.env.model.selection.moveAnchorCell(e,1);return}nT(this.env.model.getters,this.env.model.selection,e)}isSingleCellOrMergeSelection(){let e=this.env.model.getters.getActiveSheetId(),t=this.env.model.getters.getSelectedZone();return this.env.model.getters.isSingleCellOrMerge(e,t)}focusDefaultElement(){!this.env.model.getters.getSelectedFigureId()&&this.composerFocusStore.activeComposer.editionMode===`inactive`&&this.DOMFocusableElementStore.focus()}get gridEl(){if(!this.gridRef.el)throw Error(`Grid el is not defined.`);return this.gridRef.el}getAutofillPosition(){let e=this.env.model.getters.getSelectedZone(),t=this.env.model.getters.getVisibleRect(e);return{x:t.x+t.width-8/2,y:t.y+t.height-8/2}}get isAutofillVisible(){if(this.env.model.getters.isCurrentSheetLocked())return!1;let e=this.env.model.getters.getSelectedZone(),t=this.env.model.getters.getVisibleRect({left:e.right,right:e.right,top:e.bottom,bottom:e.bottom});return!(t.width===0||t.height===0)}onGridResized(){let{height:e,width:t}=this.props.getGridSize();this.env.model.dispatch(`RESIZE_SHEETVIEW`,{width:t-48,height:e-26,gridOffsetX:48,gridOffsetY:26})}moveCanvas(e,t){let{scrollX:n,scrollY:r}=this.env.model.getters.getActiveSheetScrollInfo();this.env.model.dispatch(`SET_VIEWPORT_OFFSET`,{offsetX:n+e,offsetY:r+t})}processSpaceKey(e){this.env.model.getters.hasBooleanValidationInZones(this.env.model.getters.getSelectedZones())&&(e.preventDefault(),e.stopPropagation(),this.env.model.dispatch(`TOGGLE_CHECKBOX`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()}))}getClientPositionKey(e){return`${e.id}-${e.position?.sheetId}-${e.position?.col}-${e.position?.row}`}isCellHovered(e,t){return this.hoveredCell.col===e&&this.hoveredCell.row===t}get focusedClients(){return this.clientFocusStore.focusedClients}getGridRect(){let e=this.env.model.getters.getViewportZoomLevel(),{width:t,height:n}=this.env.model.getters.getSheetViewDimensionWithHeaders();return{...dm(this.gridRef),width:t*e,height:n*e}}onCellClicked(e,t,n,r){if(r.ev.preventDefault(),this.composerFocusStore.activeComposer.editionMode===`editing`&&this.composerFocusStore.activeComposer.stopEdition(),n.expandZone?this.env.model.selection.setAnchorCorner(e,t):n.addZone?this.env.model.selection.addCellToSelection(e,t):this.env.model.selection.selectCell(e,t),this.env.isMobile())return;let i=e,a=t;this.dragNDropGrid.start(r,(e,t,n)=>{n.preventDefault(),(e!==i&&e!==-1||t!==a&&t!==-1)&&(i=e===-1?i:e,a=t===-1?a:t,this.env.model.selection.setAnchorCorner(i,a))},()=>{this.env.model.selection.commitSelection(),this.paintFormatStore.isActive&&this.paintFormatStore.pasteFormat(this.env.model.getters.getSelectedZones())})}onCellDoubleClicked(e,t){let n=this.env.model.getters.getActiveSheetId();({col:e,row:t}=this.env.model.getters.getMainCellPosition({sheetId:n,col:e,row:t})),this.env.model.getters.getEvaluatedCell({sheetId:n,col:e,row:t}).type===V.empty?this.onComposerCellFocused():this.onComposerContentFocused()}processArrows(e){e.preventDefault(),e.stopPropagation(),this.cellPopovers.isOpen&&this.cellPopovers.close(),tT(e,this.env.model.selection),this.paintFormatStore.isActive&&this.paintFormatStore.pasteFormat(this.env.model.getters.getSelectedZones())}onKeydown(e){let t=ym(e),n=this.keyDownMapping[t];if(n){e.preventDefault(),e.stopPropagation(),n();return}if(t===` `){this.processSpaceKey(e);return}if(e.key.startsWith(`Arrow`)){this.processArrows(e);return}}onInputContextMenu(e){e.preventDefault();let t=this.env.model.getters.getSelectedZone(),{left:n,top:r}=t,i=`CELL`;this.composerFocusStore.activeComposer.stopEdition(),this.env.model.getters.getActiveCols().has(n)?i=`COL`:this.env.model.getters.getActiveRows().has(r)&&(i=`ROW`);let{x:a,y:o,width:s}=this.env.model.getters.getVisibleRectWithZoom(t),c=this.getGridRect();this.toggleContextMenu(i,c.x+a+s,c.y+o)}onCellRightClicked(e,t,{x:n,y:r}){let i=this.env.model.getters.getSelectedZones(),a=i[i.length-1],o=`CELL`;jn(e,t,a)?this.env.model.getters.getActiveCols().has(e)?o=`COL`:this.env.model.getters.getActiveRows().has(t)&&(o=`ROW`):(this.env.model.selection.getBackToDefault(),this.env.model.selection.selectCell(e,t)),this.toggleContextMenu(o,n,r)}toggleContextMenu(e,t,n){this.cellPopovers.isOpen&&this.cellPopovers.close(),this.menuState.isOpen=!0,this.menuState.anchorRect={x:t,y:n,width:0,height:0},this.menuState.menuItems=AI[e].getMenuItems()}async copy(e,t){if(!this.gridEl.contains(document.activeElement)||this.composerFocusStore.activeComposer.editionMode!==`inactive`)return;e?GN(this.env):this.env.model.dispatch(`COPY`);let n=await this.env.model.getters.getClipboardTextAndImageContent();await this.env.clipboard.write(n),t.preventDefault()}async paste(e){if(!this.gridEl.contains(document.activeElement))return;e.preventDefault();let t=e.clipboardData;if(!t)return;let n=[...t.files]?.find(e=>BS.includes(e.type)),r={content:{[zS.PlainText]:t?.getData(zS.PlainText),[zS.Html]:t?.getData(zS.Html)}};n&&(r.content[n.type]=n);let i=this.env.model.getters.getSelectedZones(),a=this.env.model.getters.isCutOperation();if(this.env.model.getters.getClipboardId()===GS(r.content[zS.Html]))FS(this.env,i);else{let e=WS(r.content);await IS(this.env,i,e)}a&&await this.env.clipboard.write({[zS.PlainText]:``})}clearFormatting(){this.env.model.dispatch(`CLEAR_FORMATTING`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones()})}setHorizontalAlign(e){this.env.model.dispatch(`SET_FORMATTING`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),style:{align:e}})}closeMenu(){this.menuState.isOpen=!1,this.focusDefaultElement()}processHeaderGroupingKey(e){if(this.env.model.getters.getSelectedZones().length!==1)return;let t=this.env.model.getters.getActiveRows().size>0,n=this.env.model.getters.getActiveCols().size>0;n&&t?this.processHeaderGroupingEventOnWholeSheet(e):n?this.processHeaderGroupingEventOnHeaders(e,`COL`):t?this.processHeaderGroupingEventOnHeaders(e,`ROW`):this.processHeaderGroupingEventOnGrid(e)}processHeaderGroupingEventOnHeaders(e,t){let n=this.env.model.getters.getActiveSheetId(),r=this.env.model.getters.getSelectedZone(),i=t===`COL`?r.left:r.top,a=t===`COL`?r.right:r.bottom;switch(e){case`right`:this.env.model.dispatch(`GROUP_HEADERS`,{sheetId:n,dimension:t,start:i,end:a});break;case`left`:this.env.model.dispatch(`UNGROUP_HEADERS`,{sheetId:n,dimension:t,start:i,end:a});break;case`down`:this.env.model.dispatch(`UNFOLD_HEADER_GROUPS_IN_ZONE`,{sheetId:n,dimension:t,zone:r});break;case`up`:this.env.model.dispatch(`FOLD_HEADER_GROUPS_IN_ZONE`,{sheetId:n,dimension:t,zone:r});break}}processHeaderGroupingEventOnWholeSheet(e){let t=this.env.model.getters.getActiveSheetId();e===`up`?(this.env.model.dispatch(`FOLD_ALL_HEADER_GROUPS`,{sheetId:t,dimension:`ROW`}),this.env.model.dispatch(`FOLD_ALL_HEADER_GROUPS`,{sheetId:t,dimension:`COL`})):e===`down`&&(this.env.model.dispatch(`UNFOLD_ALL_HEADER_GROUPS`,{sheetId:t,dimension:`ROW`}),this.env.model.dispatch(`UNFOLD_ALL_HEADER_GROUPS`,{sheetId:t,dimension:`COL`}))}processHeaderGroupingEventOnGrid(e){let t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getSelectedZone();switch(e){case`down`:this.env.model.dispatch(`UNFOLD_HEADER_GROUPS_IN_ZONE`,{sheetId:t,dimension:`ROW`,zone:n}),this.env.model.dispatch(`UNFOLD_HEADER_GROUPS_IN_ZONE`,{sheetId:t,dimension:`COL`,zone:n});break;case`up`:this.env.model.dispatch(`FOLD_HEADER_GROUPS_IN_ZONE`,{sheetId:t,dimension:`ROW`,zone:n}),this.env.model.dispatch(`FOLD_HEADER_GROUPS_IN_ZONE`,{sheetId:t,dimension:`COL`,zone:n});break;case`right`:{let{x:e,y:t,width:r}=this.env.model.getters.getVisibleRectWithZoom(n),i=this.getGridRect();this.toggleContextMenu(`GROUP_HEADERS`,e+r+i.x,t+i.y);break}case`left`:{if(!UN(this.env,`COL`)&&!UN(this.env,`ROW`))return;let{x:e,y:t,width:r}=this.env.model.getters.getVisibleRectWithZoom(n),i=this.getGridRect();this.toggleContextMenu(`UNGROUP_HEADERS`,e+r+i.x,t+i.y);break}}}onComposerCellFocused(e,t){this.composerFocusStore.focusActiveComposer({content:e,selection:t,focusMode:`cellFocus`})}onComposerContentFocused(){this.composerFocusStore.focusActiveComposer({focusMode:`contentFocus`})}get staticTables(){let e=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getCoreTables(e).filter(IM)}get displaySelectionHandler(){return this.env.isMobile()&&this.composerFocusStore.activeComposer.editionMode===`inactive`}};let MI=new B;MI.add(`SPREADSHEET`,!1);var NI=class extends t.Component{static template=`o-spreadsheet-ClickableCellSortIcon`;static props={position:Object,sortDirection:String};hoveredTableStore;setup(){this.hoveredTableStore=O(rI)}get style(){let e=this.env.model.getters.getCellComputedStyle(this.props.position),t=ju(e);return W({height:`${t}px`,width:`${t}px`,color:e.textColor||`#374151C2`,"background-color":this.getBackgroundColor(e)})}get verticalJustifyClass(){switch(this.env.model.getters.getCellComputedStyle(this.props.position).verticalAlign){case`top`:return`justify-content-start`;case`middle`:return`justify-content-center`;default:return`justify-content-end`}}getBackgroundColor(e){let t=this.hoveredTableStore.overlayColors.get(this.props.position);return t?pd(e.fillColor||`#FFFFFF`,t):e.fillColor||`#FFFFFF`}},PI=class extends t.Component{static template=`o-spreadsheet-FullScreenFigure`;static props={};static components={ChartFigure:tg};fullScreenFigureStore;ref=(0,t.useRef)(`fullScreenFigure`);spreadsheetRect=Gh();figureRegistry=rg;setup(){this.fullScreenFigureStore=O(jh);let e=O(Or),n;(0,t.onWillUpdateProps)(()=>{n!==this.figureUI?.id&&e.enableAnimationForChart(this.chartId+`-fullscreen`),n=this.figureUI?.id}),(0,t.useEffect)(e=>e?.focus(),()=>[this.ref.el])}get figureUI(){return this.fullScreenFigureStore.fullScreenFigure}get chartId(){if(this.figureUI)return this.env.model.getters.getChartIdFromFigureId(this.figureUI?.id)}exitFullScreen(){this.figureUI&&this.fullScreenFigureStore.toggleFullScreenFigure(this.figureUI.id)}onKeyDown(e){e.key===`Escape`&&this.exitFullScreen()}get figureComponent(){if(this.figureUI)return rg.get(this.figureUI.tag).Component}},FI=class extends t.Component{static template=`o_spreadsheet.PivotHTMLRenderer`;static components={Checkbox:Qw};static props={pivotId:String,onCellClicked:Function};pivot=this.env.model.getters.getPivot(this.props.pivotId);data={columns:[],rows:[],values:[]};state=(0,t.useState)({showMissingValuesOnly:!1});setup(){let e=this.pivot.getExpandedTableStructure(),t=this.env.model.getters.getPivotFormulaId(this.props.pivotId);this.data={columns:this._buildColHeaders(t,e),rows:this._buildRowHeaders(t,e),values:this._buildValues(t,e)}}get tracker(){return this.env.model.getters.getPivotPresenceTracker(this.props.pivotId)}getTableData(){if(!this.state.showMissingValuesOnly)return this.data;let e=this.getColumnsIndexes(),t=this.getRowsIndexes();return{columns:this.buildColumnsMissing(e),rows:this.buildRowsMissing(t),values:this.buildValuesMissing(e,t)}}addRecursiveRow(e){let t=this.pivot.getExpandedTableStructure().rows,n=[...t[e].values];if(n.length<=1)return[e];n.pop();let r=t.findIndex(e=>JSON.stringify(e.values)===JSON.stringify(n));return[e].concat(this.addRecursiveRow(r))}buildColumnsMissing(e){let t=[];for(let e of this.data.columns){let n=[];for(let t in e)for(let r=0;r<e[t].span;r++)n.push(parseInt(t,10));t.push(n)}for(let n=t[t.length-1].length;n>=0;n--)if(!e.includes(n))for(let e of t)e.splice(n,1);let n=[];for(let e in t){let r=[],i,a=1;for(let n=0;n<t[e].length;n++)i===t[e][n]?a++:(i!==void 0&&r.push(Object.assign({},this.data.columns[e][i],{span:a})),i=t[e][n],a=1);i!==void 0&&r.push(Object.assign({},this.data.columns[e][i],{span:a})),n.push(r)}return n}buildRowsMissing(e){return e.map(e=>this.data.rows[e])}buildValuesMissing(e,t){let n=e.map(()=>[]);for(let r of t)for(let t in e)n[t].push(this.data.values[e[t]][r]);return n}getColumnsIndexes(){let e=new Set;for(let t=0;t<this.data.columns.length;t++){let n=[];for(let e=0;e<this.data.columns[t].length;e++)for(let r=0;r<this.data.columns[t][e].span;r++)n.push(this.data.columns[t][e]);for(let t=0;t<n.length;t++)n[t].isMissing&&e.add(t)}for(let t=0;t<this.data.columns[this.data.columns.length-1].length;t++)this.data.values[t].find(e=>e.isMissing)&&e.add(t);return Array.from(e).sort((e,t)=>e-t)}getRowsIndexes(){let e=new Set;for(let t=0;t<this.data.rows.length;t++){this.data.rows[t].isMissing&&e.add(t);for(let n of this.data.values)n[t].isMissing&&this.addRecursiveRow(t).forEach(t=>e.add(t))}return Array.from(e).sort((e,t)=>e-t)}_buildColHeaders(e,t){let n=[];for(let r of t.columns){let t=[];for(let n of r){let r=[];for(let e=0;e<n.fields.length;e++)r.push({value:n.fields[e]},{value:n.values[e]});let i=this.pivot.parseArgsToPivotDomain(r),a=this.env.model.getters.getLocale();if(i.at(-1)?.field===`measure`){let{value:r,format:o}=this.pivot.getPivotMeasureValue(P(i.at(-1).value),i);t.push({formula:`=PIVOT.HEADER(${Lx(e,i).join(`,`)})`,value:R(r,{format:o,locale:a}),span:n.width,isMissing:!this.tracker?.isHeaderPresent(i)})}else{let{value:r,format:o}=this.pivot.getPivotHeaderValueAndFormat(i);t.push({formula:`=PIVOT.HEADER(${Lx(e,i).join(`,`)})`,value:R(r,{format:o,locale:a}),span:n.width,isMissing:!this.tracker?.isHeaderPresent(i)})}}n.push(t)}let r=n[n.length-1];return n[n.length-1]=r.map(e=>(e.isMissing||(e.style=`color: #756f6f;`),e)),n}_buildRowHeaders(e,t){let n=[];for(let r of t.rows){let t=[];for(let e=0;e<r.fields.length;e++)t.push({value:r.fields[e]},{value:r.values[e]});let i=this.pivot.parseArgsToPivotDomain(t),{value:a,format:o}=this.pivot.getPivotHeaderValueAndFormat(i),s=this.env.model.getters.getLocale(),c={formula:`=PIVOT.HEADER(${Lx(e,i).join(`,`)})`,value:R(a,{format:o,locale:s}),isMissing:!this.tracker?.isHeaderPresent(i)};r.indent>1&&(c.style=`padding-left: ${r.indent-10}px`),n.push(c)}return n}_buildValues(e,t){let n=[];for(let r of t.columns.at(-1)||[]){let i=[],a=P(r.values[r.values.length-1]);for(let n of t.rows){let t=[];for(let e=0;e<n.fields.length;e++)t.push({value:n.fields[e]},{value:n.values[e]});for(let e=0;e<r.fields.length-1;e++)t.push({value:r.fields[e]},{value:r.values[e]});let o=this.pivot.parseArgsToPivotDomain(t),{value:s,format:c}=this.pivot.getPivotCellValueAndFormat(a,o),l=this.env.model.getters.getLocale();i.push({formula:`=PIVOT.VALUE(${Lx(e,o,a).join(`,`)})`,value:R(s,{format:c,locale:l}),isMissing:!this.tracker?.isValuePresent(a,o)})}n.push(i)}return n}},II=l({GHOST_SUNBURST_VALUE:()=>op,canChartParseLabels:()=>uE,getBarChartData:()=>WT,getBarChartDatasets:()=>sp,getBarChartLegend:()=>kE,getBarChartScales:()=>Vf,getBarChartTooltip:()=>$E,getBubbleChartData:()=>tE,getBubbleChartDatasets:()=>fp,getBubbleChartLegend:()=>NE,getBubbleChartScales:()=>Jf,getBubbleChartTooltip:()=>nD,getCalendarChartData:()=>qT,getCalendarChartDatasetAndLabels:()=>cp,getCalendarChartLayout:()=>DE,getCalendarChartScales:()=>Hf,getCalendarChartShowValues:()=>WE,getCalendarChartTooltip:()=>eD,getCalendarColorScale:()=>Uf,getChartColorsGenerator:()=>kp,getChartLabelFormat:()=>SE,getChartLayout:()=>EE,getChartShowValues:()=>UE,getChartTitle:()=>YE,getComboChartDatasets:()=>hp,getComboChartLegend:()=>PE,getFunnelChartData:()=>$T,getFunnelChartDatasets:()=>vp,getFunnelChartScales:()=>$f,getFunnelChartTooltip:()=>cD,getFunnelLabelColors:()=>yp,getGeoChartData:()=>QT,getGeoChartDatasets:()=>_p,getGeoChartScales:()=>Qf,getGeoChartTooltip:()=>sD,getHierarchalChartData:()=>eE,getLineChartData:()=>YT,getLineChartDatasets:()=>up,getLineChartLegend:()=>AE,getLineChartScales:()=>Wf,getLineChartTooltip:()=>tD,getPieChartData:()=>XT,getPieChartDatasets:()=>mp,getPieChartLegend:()=>jE,getPieChartTooltip:()=>rD,getPyramidChartData:()=>JT,getPyramidChartScales:()=>Xf,getPyramidChartShowValues:()=>KE,getPyramidChartTooltip:()=>aD,getRadarChartData:()=>ZT,getRadarChartDatasets:()=>gp,getRadarChartLegend:()=>IE,getRadarChartScales:()=>Zf,getRadarChartTooltip:()=>oD,getRuntimeColorScale:()=>rp,getScatterChartDatasets:()=>dp,getScatterChartLegend:()=>ME,getScatterChartScales:()=>qf,getSunburstChartDatasets:()=>bp,getSunburstChartLegend:()=>LE,getSunburstChartTooltip:()=>lD,getSunburstShowValues:()=>GE,getTopPaddingForDashboard:()=>TE,getTreeMapChartDatasets:()=>Tp,getTreeMapChartTooltip:()=>uD,getTrendDatasetForBarChart:()=>rE,getTrendDatasetForLineChart:()=>iE,getWaterfallChartLegend:()=>FE,getWaterfallChartScales:()=>Yf,getWaterfallChartShowValues:()=>qE,getWaterfallChartTooltip:()=>iD,getWaterfallDatasetAndLabels:()=>lp,makeDatasetsCumulative:()=>wE}),LI=class extends Bg{static getters=[`getCellBorder`,`getBordersColors`];borders={};allowDispatch(e){switch(e.type){case`SET_BORDER`:return this.checkBordersUnchanged(e);default:return H.Success}}handle(e){switch(e.type){case`ADD_MERGE`:for(let t of e.target)this.addBordersToMerge(e.sheetId,t);break;case`DUPLICATE_SHEET`:let t=this.borders[e.sheetId];if(t){let n=t.slice().map(e=>e?.slice().map(e=>x(e)));this.history.update(`borders`,e.sheetIdTo,n)}break;case`DELETE_SHEET`:let n={...this.borders};delete n[e.sheetId],this.history.update(`borders`,n);break;case`SET_BORDER`:this.setBorder(e.sheetId,e.col,e.row,e.border);break;case`SET_BORDERS_ON_TARGET`:for(let t of e.target)for(let n=t.top;n<=t.bottom;n++)for(let r=t.left;r<=t.right;r++)this.setBorder(e.sheetId,r,n,e.border);break;case`SET_ZONE_BORDERS`:if(e.border){let t=e.target.map(t=>this.getters.expandZone(e.sheetId,t));this.setBorders(e.sheetId,t,e.border.position,e.border.color===``?void 0:{style:e.border.style||Ce.style,color:e.border.color||Ce.color})}break;case`CLEAR_FORMATTING`:this.clearBorders(e.sheetId,e.target);break;case`REMOVE_COLUMNS_ROWS`:let r=[...e.elements].sort((e,t)=>t-e);for(let t of $e(r))if(e.dimension===`COL`){let n=this.getters.getColsZone(e.sheetId,t[t.length-1],t[0]);this.clearInsideBorders(e.sheetId,[n]),this.shiftBordersHorizontally(e.sheetId,t[0]+1,-t.length)}else{let n=this.getters.getRowsZone(e.sheetId,t[t.length-1],t[0]);this.clearInsideBorders(e.sheetId,[n]),this.shiftBordersVertically(e.sheetId,t[0]+1,-t.length)}break;case`ADD_COLUMNS_ROWS`:e.dimension===`COL`?this.handleAddColumns(e):this.handleAddRows(e);break}}handleAddColumns(e){let t,n;e.position===`before`?(this.shiftBordersHorizontally(e.sheetId,e.base,e.quantity),t=e.base-1,n=e.base+e.quantity):(this.shiftBordersHorizontally(e.sheetId,e.base+1,e.quantity),t=e.base,n=e.base+e.quantity+1),this.ensureColumnBorderContinuity(e.sheetId,t,n)}handleAddRows(e){let t,n;e.position===`before`?(this.shiftBordersVertically(e.sheetId,e.base,e.quantity),t=e.base-1,n=e.base+e.quantity):(this.shiftBordersVertically(e.sheetId,e.base+1,e.quantity),t=e.base,n=e.base+e.quantity+1),this.ensureRowBorderContinuity(e.sheetId,t,n)}getCellBorder({sheetId:e,col:t,row:n}){let r=this.borders[e]?.[t]?.[n];return r?.top||r?.bottom||r?.left||r?.right?x(r):null}getBordersColors(e){let t=[],n=this.borders[e];if(n){for(let e of n.filter(w))for(let n of e)if(n)for(let e of[`top`,`bottom`,`left`,`right`]){let r=n[e]?.color;r&&t.push(r)}}return t}ensureColumnBorderContinuity(e,t,n){let r=C(t+1,n);for(let i=0;i<this.getters.getNumberRows(e);i++){let a=this.getCellBorder({sheetId:e,col:t,row:i}),o=this.getCellBorder({sheetId:e,col:n,row:i});if(a&&o){let t=this.getCommonSides(a,o);for(let n of r)this.addBorder(e,n,i,t)}}}ensureRowBorderContinuity(e,t,n){let r=C(t+1,n);for(let i=0;i<this.getters.getNumberCols(e);i++){let a=this.getCellBorder({sheetId:e,col:i,row:t}),o=this.getCellBorder({sheetId:e,col:i,row:n});if(a&&o){let t=this.getCommonSides(a,o);for(let n of r)this.addBorder(e,i,n,t)}}}getCommonSides(e,t){let n={};for(let r of[`top`,`bottom`,`left`,`right`])e[r]&&T(e[r],t[r])&&(n[r]=e[r]);return n}getColumnsWithBorders(e){let t=this.borders[e];return t?Object.keys(t).map(e=>parseInt(e,10)):[]}getRowsWithBorders(e){let t=this.borders[e]?.filter(w);if(!t)return[];let n=new Set;for(let e of t)for(let t in e)n.add(parseInt(t,10));return Array.from(n)}getRowsRange(e){return this.borders[e]?C(0,this.getters.getNumberRows(e)+1):[]}shiftBordersHorizontally(e,t,n){this.borders[e]&&this.getColumnsWithBorders(e).filter(e=>e>=t).sort((e,t)=>n<0?e-t:t-e).forEach(t=>{this.moveBordersOfColumn(e,t,n)})}shiftBordersVertically(e,t,n){this.borders[e]&&(n<0&&this.moveBordersOfRow(e,t,n,{destructive:!1}),this.getRowsWithBorders(e).filter(e=>e>=t).sort((e,t)=>n<0?e-t:t-e).forEach(t=>{this.moveBordersOfRow(e,t,n)}))}moveBordersOfRow(e,t,n,{destructive:r}={destructive:!0}){let i=this.borders[e];i&&this.getColumnsWithBorders(e).forEach(a=>{let o=i[a]?.[t+n],s=i[a]?.[t];this.history.update(`borders`,e,a,t+n,r?s:s||o),this.history.update(`borders`,e,a,t,void 0)})}moveBordersOfColumn(e,t,n,{destructive:r}={destructive:!0}){let i=this.borders[e];i&&this.getRowsRange(e).forEach(a=>{let o=i[t+n]?.[a],s=i[t]?.[a];this.history.update(`borders`,e,t+n,a,r?s:s||o),r&&this.history.update(`borders`,e,t,a,void 0)})}setBorder(e,t,n,r,i=!0){let a=this.getters.getNumberCols(e)-1,o=this.getters.getNumberRows(e)-1;(i||!this.borders[e]?.[t]?.[n]?.left)&&(this.history.update(`borders`,e,t,n,`left`,r?.left),r?.left&&t>0&&!T(this.borders[e]?.[t-1]?.[n]?.right,r?.left)&&this.history.update(`borders`,e,t-1,n,`right`,void 0)),(i||!this.borders[e]?.[t]?.[n]?.top)&&(this.history.update(`borders`,e,t,n,`top`,r?.top),r?.top&&n>0&&!T(this.borders[e]?.[t]?.[n-1]?.bottom,r?.top)&&this.history.update(`borders`,e,t,n-1,`bottom`,void 0)),(i||!this.borders[e]?.[t]?.[n]?.right)&&(this.history.update(`borders`,e,t,n,`right`,r?.right),r?.right&&t<a&&!T(this.borders[e]?.[t+1]?.[n]?.left,r?.right)&&this.history.update(`borders`,e,t+1,n,`left`,void 0)),(i||!this.borders[e]?.[t]?.[n]?.bottom)&&(this.history.update(`borders`,e,t,n,`bottom`,r?.bottom),r?.bottom&&n<o&&!T(this.borders[e]?.[t]?.[n+1]?.top,r?.bottom)&&this.history.update(`borders`,e,t,n+1,`top`,void 0))}clearBorders(e,t,n=!1){let r=this.getters.getNumberCols(e)-1,i=this.getters.getNumberRows(e)-1;for(let a of rn(t))for(let t=a.top;t<=a.bottom;t++){n&&(a.left>0&&this.history.update(`borders`,e,a.left-1,t,`right`,void 0),a.right<r&&this.history.update(`borders`,e,a.right+1,t,`left`,void 0));for(let r=a.left;r<=a.right;r++)this.history.update(`borders`,e,r,t,void 0),n&&(a.top>0&&this.history.update(`borders`,e,r,a.top-1,`bottom`,void 0),a.bottom<i&&this.history.update(`borders`,e,r,a.bottom+1,`top`,void 0))}}clearInsideBorders(e,t){for(let n of t)for(let t=n.top;t<=n.bottom;t++)for(let r=n.left;r<=n.right;r++)this.history.update(`borders`,e,r,t,void 0)}addBorder(e,t,n,r){this.setBorder(e,t,n,{...this.getCellBorder({sheetId:e,col:t,row:n}),...r})}setBorders(e,t,n,r){if(n===`clear`)return this.clearBorders(e,t,!0);for(let i of rn(t)){if(n===`all`)for(let t=i.top;t<=i.bottom;t++)for(let n=i.left;n<=i.right;n++)this.addBorder(e,n,t,{top:r,right:r,bottom:r,left:r});if(n===`h`||n===`hv`){if(i.top===i.bottom)continue;for(let t=i.left;t<=i.right;t++){this.addBorder(e,t,i.top,{bottom:r});for(let n=i.top+1;n<i.bottom;n++)this.addBorder(e,t,n,{top:r,bottom:r});this.addBorder(e,t,i.bottom,{top:r})}}if(n===`v`||n===`hv`){if(i.left===i.right)continue;for(let t=i.top;t<=i.bottom;t++){this.addBorder(e,i.left,t,{right:r});for(let n=i.left+1;n<i.right;n++)this.addBorder(e,n,t,{left:r,right:r});this.addBorder(e,i.right,t,{left:r})}}if(n===`left`||n===`external`)for(let t=i.top;t<=i.bottom;t++)this.addBorder(e,i.left,t,{left:r});if(n===`right`||n===`external`)for(let t=i.top;t<=i.bottom;t++)this.addBorder(e,i.right,t,{right:r});if(n===`top`||n===`external`)for(let t=i.left;t<=i.right;t++)this.addBorder(e,t,i.top,{top:r});if(n===`bottom`||n===`external`)for(let t=i.left;t<=i.right;t++)this.addBorder(e,t,i.bottom,{bottom:r})}}addBordersToMerge(e,t){let{left:n,right:r,top:i,bottom:a}=t,o=this.getCellBorder({sheetId:e,col:n,row:i}),s=this.getCellBorder({sheetId:e,col:r,row:a});this.clearBorders(e,[t]),o?.top&&this.setBorders(e,[{...t,bottom:i}],`top`,o.top),o?.left&&this.setBorders(e,[{...t,right:n}],`left`,o.left),s?.bottom?this.setBorders(e,[{...t,top:a}],`bottom`,s.bottom):o?.bottom&&this.setBorders(e,[{...t,top:a}],`bottom`,o.bottom),s?.right?this.setBorders(e,[{...t,left:r}],`right`,s.right):o?.right&&this.setBorders(e,[{...t,left:r}],`right`,o.right)}checkBordersUnchanged(e){let t=this.getCellBorder(e),n=!e.border?.bottom&&!e.border?.left&&!e.border?.right&&!e.border?.top;return!t&&n||T(t,e.border)?H.NoChanges:H.Success}import(e){if(Object.keys(e.borders||{}).length)for(let t of e.sheets)for(let[n,r]of Jg(t.id,t.borders)){let{sheetId:t,col:i,row:a}=n,o=e.borders[r];this.setBorder(t,i,a,o,!1)}for(let t of e.sheets)if(t.merges)for(let e of t.merges)this.addBordersToMerge(t.id,hn(e))}export(e){let t={};for(let n of e.sheets){let e={};for(let r=0;r<n.colNumber;r++)for(let i=0;i<n.rowNumber;i++){let a=this.getCellBorder({sheetId:n.id,col:r,row:i});if(a){let o=Kg(a,t),s={sheetId:n.id,col:r,row:i};e[o]??=[],e[o].push(s)}}n.borders=qg(e)}e.borders=t}exportForExcel(e){this.export(e)}},RI=class extends Bg{static getters=[`getCarousel`,`doesCarouselExist`];carousels={};allowDispatch(e){switch(e.type){case`CREATE_CAROUSEL`:return this.getters.getFigure(e.sheetId,e.figureId)?H.DuplicatedFigureId:H.Success;case`UPDATE_CAROUSEL`:return this.carousels[e.sheetId]?.[e.figureId]?H.Success:H.InvalidFigureId}return H.Success}handle(e){switch(e.type){case`CREATE_CAROUSEL`:this.getters.getFigure(e.sheetId,e.figureId)||this.dispatch(`CREATE_FIGURE`,{...e,tag:`carousel`}),this.history.update(`carousels`,e.sheetId,e.figureId,e.definition);break;case`UPDATE_CAROUSEL`:this.removeDeletedCharts(e,this.getters.getCarousel(e.figureId).items),this.history.update(`carousels`,e.sheetId,e.figureId,e.definition);break;case`DUPLICATE_SHEET`:{let t=this.getters.getFigures(e.sheetId);for(let n of t)if(n.tag===`carousel`){let t=n.id.split(`??`).pop(),r=`${e.sheetIdTo}??${t}`,i=this.getCarousel(n.id);if(i){let t={width:n.width,height:n.height};this.dispatch(`CREATE_CAROUSEL`,{sheetId:e.sheetIdTo,figureId:r,offset:n.offset,col:n.col,row:n.row,size:t,definition:{items:i.items.map(t=>{if(t.type===`carouselDataView`)return{...t};let n=t.chartId.split(`??`).pop(),r=`${e.sheetIdTo}??${n}`;return{...t,chartId:r}})}})}}break}case`DELETE_FIGURE`:this.history.update(`carousels`,e.sheetId,e.figureId,void 0);break;case`DELETE_SHEET`:this.history.update(`carousels`,e.sheetId,void 0);break}}doesCarouselExist(e){for(let t in this.carousels)if(this.carousels[t]?.[e])return!0;return!1}getCarousel(e){for(let t in this.carousels)if(this.carousels[t]?.[e])return this.carousels[t][e];throw Error(`There is no carousel with the given figureId: ${e}`)}removeDeletedCharts(e,t){let n=new Set(e.definition.items.filter(e=>e.type===`chart`).map(e=>e.chartId));for(let r of t)r.type===`chart`&&!n.has(r.chartId)&&this.dispatch(`DELETE_CHART`,{chartId:r.chartId,sheetId:e.sheetId})}import(e){for(let t of e.sheets){let e=(t.figures||[]).filter(e=>e.tag===`carousel`);for(let n of e)this.history.update(`carousels`,t.id,n.id,{items:n.data.items,title:n.data.title})}}export(e){for(let t of e.sheets){let e=t.figures.filter(e=>e.tag===`carousel`);for(let n of e)this.carousels[t.id]?.[n.id]&&(n.data={...n.data,...this.carousels[t.id]?.[n.id]})}}},zI=class{getters;baseFormula;alreadyAppliedNumberOffsets=[];previousStrings=[];baseFormulaWasTransformed=!1;baseNumber=void 0;constructor(e){this.getters=e}buildResult(e,t,n){let r={};if(e.length&&(r.N=e.join(`|`)),t.length&&(r.S=t),n.length){let e;e=n.some(e=>e.includes(`|`))?n:n.join(`|`),r.R=e}return r}resetBaseTo(e){this.baseFormula=bl.CopyWithDependenciesAndLiteral(e,e.sheetId,x(e.rangeDependencies),e.literalValues.numbers,e.literalValues.strings),this.alreadyAppliedNumberOffsets=e.literalValues.numbers.map(e=>0),this.previousStrings=e.literalValues.strings.map(e=>e.value),this.baseFormulaWasTransformed=!1,this.baseNumber=void 0}resetBaseFormula(){this.baseFormula&&(this.baseFormula=void 0,this.alreadyAppliedNumberOffsets=[],this.previousStrings=[],this.baseFormulaWasTransformed=!1)}squish(e,t){if(e.isFormula){let n=[],r=[],i=[];return!this.baseFormula||this.baseFormula.normalizedFormula!==e.compiledFormula.normalizedFormula?(this.resetBaseTo(e.compiledFormula),e.compiledFormula.toFormulaString(this.getters)):!this.baseFormulaWasTransformed&&T(e.compiledFormula.literalValues,this.baseFormula.literalValues)&&T(e.compiledFormula.rangeDependencies,this.baseFormula.rangeDependencies)?e.compiledFormula.toFormulaString(this.getters):(n=this.squishNumbers(e.compiledFormula.literalValues.numbers),r=this.squishStrings(e.compiledFormula.literalValues.strings),i=this.squishReferences(e.compiledFormula.rangeDependencies,t),this.baseFormulaWasTransformed=!0,this.buildResult(n,r,i))}if(typeof e.parsedValue==`number`&&e.parsedValue%1==0){this.resetBaseFormula();let t=e.parsedValue;if(this.baseNumber===void 0)return this.baseNumber=t,e.content;let n=t-this.baseNumber;return n===0?e.content:(this.baseNumber=t,{N:(n>0?`+`:``)+n.toString()})}return this.resetBaseFormula(),this.baseNumber=void 0,e.content}squishCommand(e){if(e.content){let t=tu(this.getters,-1,e.content,e.format,e.style??void 0,e.sheetId),n=this.squish(t,e.sheetId);return typeof n==`string`?e.content:n}return e.content}squishSheet(e,t){let n=Object.keys(e),r={};for(let i=0;i<n.length;i++){let a=nn(n[i]),o=0;for(o=0;o+i+1<n.length;o++){let t=nn(n[o+i+1]);if(t.col!==a.col||t.row!==a.row+o+1||!T(e[n[o+i+1]],e[n[i]]))break}if(o>0){let t=`${n[i]}:${E(a.col,a.row+o)}`;r[t]=e[n[i]],i+=o}else{let o=this.getters.getCell({sheetId:t,col:a.col,row:a.row});!o?.isFormula&&typeof o?.parsedValue==`number`?r[n[i]]=o.content:r[n[i]]=e[n[i]]}}return r}squishReferences(e,t){if(!this.baseFormula)throw Error(`No previous cell to squish against`);return e.map((e,n)=>this.squishOneReference(e,this.baseFormula.rangeDependencies,n,t))}squishOneReference(e,t,n,r){let i=t[n];if(T(i,e))return`=`;if(i.sheetId!==e.sheetId||i.prefixSheet!==e.prefixSheet||i.invalidSheetName!==e.invalidSheetName||i.invalidXc!==e.invalidXc||i.unboundedZone.bottom===void 0||i.unboundedZone.right===void 0||e.unboundedZone.bottom===void 0||e.unboundedZone.right===void 0)return t[n]=x(e),Ic(e,r,this.getters.getSheetName);for(let a=0;a<e.parts.length;a++)if(i.parts[a].colFixed!==e.parts[a].colFixed||i.parts[a].rowFixed!==e.parts[a].rowFixed)return t[n]=x(e),Ic(e,r,this.getters.getSheetName);let a=e.zone,o=i.zone;if(a.top!==a.bottom||a.left!==a.right||o.top!==o.bottom||o.left!==o.right)return t[n]=x(e),Ic(e,r,this.getters.getSheetName);let s=e.zone.left-i.zone.left,c=e.zone.top-i.zone.top;return i.zone=x(e.zone),i.unboundedZone=x(e.unboundedZone),s!==0&&c===0?`${s>0?`+`:`-`}C${Math.abs(s)}`:c!==0&&s===0?`${c>0?`+`:`-`}R${Math.abs(c)}`:Ic(e,r,this.getters.getSheetName)}squishNumbers(e){let t=e.map(e=>`=`);for(let n=0;n<e.length;n++){let r=this.baseFormula.literalValues.numbers[n].value,i=e[n].value,a=this.alreadyAppliedNumberOffsets[n]||0,o=i-(r+a);o!==0&&(t[n]=`+`+o.toString(),this.alreadyAppliedNumberOffsets[n]=a+o)}return t}squishStrings(e){let t=e.map(e=>`=`);for(let n=0;n<e.length;n++){let r=e[n].value;r!==this.previousStrings[n]&&(t[n]=r,this.previousStrings[n]=r)}return t}};function BI(e){return[nn(e)]}function*VI(e,t){let n=nn(e),r=nn(t);for(let e=Math.min(n.col,r.col);e<=Math.max(n.col,r.col);e++)for(let t=Math.min(n.row,r.row);t<=Math.max(n.row,r.row);t++)yield{col:e,row:t}}var HI=class{previousFormula;alreadyAppliedNumberOffset=[];previousString=[];alreadyAppliedReferenceOffset=[];previousOffset=void 0;previousNumber=void 0;previousNumberFormat;rebase(){this.previousFormula=void 0,this.alreadyAppliedNumberOffset=[],this.previousString=[],this.alreadyAppliedReferenceOffset=[],this.previousOffset=void 0,this.previousNumber=void 0,this.previousNumberFormat=void 0}*unsquishCommands(e,t){let n;for(let r of e){if(r.type!==`UPDATE_CELL`&&r.type!==`SQUISHED_UPDATE_CELL`){yield r;continue}let e=r.content;n=e==null||e===``?`NOT_A_FORMULA`:this.chooseStrategy(e,n,r.sheetId,t);let i;if(r.type===`SQUISHED_UPDATE_CELL`&&`targetRange`in r){let[e,t]=r.targetRange.split(`:`);i=VI(e,t)}else i=[{row:r.row,col:r.col}];for(let{position:a,compiled:o,content:s}of this.applyStrategy(n,i,e,r.sheetId,t)){let e=o?o.toFormulaString(t):s,n={type:`UPDATE_CELL`,sheetId:r.sheetId,row:a.row,col:a.col};(`content`in r||o)&&(n.content=e),`style`in r&&(n.style=r.style),`format`in r&&(n.format=r.format),yield n}}}*unsquishSheet(e,t,n){let r=Object.keys(e).map(e=>({cartesian:nn(e.split(`:`)[0]),key:e})).sort((e,t)=>e.cartesian.col===t.cartesian.col?e.cartesian.row-t.cartesian.row:e.cartesian.col-t.cartesian.col),i;for(let{key:a}of r){let r=e[a];if(r==null||r===``)continue;i=this.chooseStrategy(r,i,t,n);let o=a.split(`:`),s=o.length===1?BI(a):VI(o[0],o[1]);yield*this.applyStrategy(i,s,r,t,n)}}chooseStrategy(e,t,n,r){let i=t;if(typeof e==`string`)if(e.startsWith(`=`)){i=`NEW_FORMULA`;let t=bl.Compile(e,n,r);this.previousFormula=t,this.alreadyAppliedNumberOffset=t.literalValues.numbers.map(e=>e.value),this.previousString=t.literalValues.strings.map(e=>e.value),this.alreadyAppliedReferenceOffset=[...t.rangeDependencies],this.previousOffset=void 0,this.previousNumber=void 0,this.previousNumberFormat=void 0}else{let t=this.parseSquishableLiteral(e,r);t?(i=`NEW_NUMBER`,this.rebase(),this.previousNumber=t.value,this.previousNumberFormat=t.format):(this.rebase(),i=`NOT_A_FORMULA`)}else if(e.N||e.S||e.R){if(!i)throw Error(`Incorrect order of commands, cannot unsquish`);switch(i){case`NEW_FORMULA`:i=`FIRST_OFFSET`;break;case`NEW_NUMBER`:if(e.R||e.S)throw Error(`Invalid squished format: cannot have string or reference offsets for a number`);i=`OFFSET_NUMBER`;break;case`FIRST_OFFSET`:i=`COMBINE_OFFSET`;break}}return i}*applyStrategy(e,t,n,r,i){let a=n;switch(e){case`NEW_FORMULA`:for(let e of t)yield{position:e,compiled:this.previousFormula};break;case`NOT_A_FORMULA`:for(let e of t)yield{position:e,content:a};break;case`FIRST_OFFSET`:{let e=a;this.previousOffset=e;for(let n of t)yield{position:n,compiled:this.unsquishFormula(e,r,i)};break}case`COMBINE_OFFSET`:{if(!this.previousOffset)throw Error(`No previous offset to combine with`);let e=a;this.previousOffset.N=e.N??this.previousOffset.N,this.previousOffset.S=e.S??this.previousOffset.S,this.previousOffset.R=e.R??this.previousOffset.R;for(let e of t)yield{position:e,compiled:this.unsquishFormula(this.previousOffset,r,i)};break}case`NEW_NUMBER`:for(let e of t)yield{position:e,content:a};break;case`OFFSET_NUMBER`:{let e=a.N;if(e===void 0||this.previousNumber===void 0)throw Error(`No ${e} provided for OFFSET_NUMBER strategy, previous ${this.previousNumber} for ${r}!${JSON.stringify(a)} `);let n=parseFloat(e),o={format:this.previousNumberFormat,locale:i.getLocale()};for(let e of t)this.previousNumber+=n,yield{position:e,content:R(this.previousNumber,o)};break}}}parseSquishableLiteral(e,t){let n=nu(t,-1,e,void 0,void 0);if(!(typeof n.parsedValue!=`number`||n.parsedValue%1!=0))return{value:n.parsedValue,format:n.format}}unsquishFormula(e,t,n){if(typeof e==`object`&&this.previousFormula){let r={numbers:[],strings:[],dependencies:[]};if(e.N!==void 0&&e.N.length>0?r.numbers=e.N.split(`|`).map(this.adjustNumbers):r.numbers=this.previousFormula.literalValues.numbers,e.S!==void 0&&e.S.length>0?r.strings=e.S.map(this.adjustStrings):r.strings=this.previousFormula.literalValues.strings,e.R!==void 0&&this.previousFormula){let i;i=typeof e.R==`string`?e.R.split(`|`):e.R,r.dependencies=i.map((e,r)=>{if(e===`=`)return{...this.alreadyAppliedReferenceOffset[r]};if(e.startsWith(`+`)||e.startsWith(`-`)){let t=parseInt(e.slice(2),10),n=e[0]===`+`?1:-1;if(e[1]===`R`){let e=this.alreadyAppliedReferenceOffset[r].zone.top+t*n,i={...this.alreadyAppliedReferenceOffset[r]};return i.zone=i.unboundedZone={...i.zone,top:e,bottom:e},this.alreadyAppliedReferenceOffset[r]=i,i}else if(e[1]===`C`){let e=this.alreadyAppliedReferenceOffset[r].zone.left+t*n,i=Object.assign({},this.alreadyAppliedReferenceOffset[r]);return i.zone=i.unboundedZone=Object.assign({},i.zone,{left:e,right:e}),this.alreadyAppliedReferenceOffset[r]=i,i}else throw Error(`Invalid reference offset format: ${e}`)}else{let i=n.getRangeFromSheetXC(t,e);return this.alreadyAppliedReferenceOffset[r]=i,i}})}else r.dependencies=this.previousFormula.rangeDependencies;return bl.CopyWithDependenciesAndLiteral(this.previousFormula,t,r.dependencies,r.numbers,r.strings)}throw Error(`Invalid squished element or no previous cell to unsquish against`)}adjustStrings=(e,t)=>e===`=`?{value:this.previousString[t]}:(this.previousString[t]=e,{value:e});adjustNumbers=(e,t)=>{if(e===`=`)return{value:this.alreadyAppliedNumberOffset[t]};{let n=parseFloat(e.slice(1)),r=(this.alreadyAppliedNumberOffset[t]||0)+n;return this.alreadyAppliedNumberOffset[t]=r,{value:r}}}},UI=class extends Bg{static getters=[`zoneToXC`,`getCells`,`getTranslatedCellFormula`,`getCellStyle`,`getCellById`,`getFormulaString`,`getFormulaMovedInSheet`];nextId=1;cells={};adaptRanges(e){for(let t of Object.keys(this.cells))for(let n of Object.values(this.cells[t]||{}))if(n.isFormula){let r=e.adaptCompiledFormula(n.compiledFormula);r!==n.compiledFormula&&this.history.update(`cells`,t,n.id,`compiledFormula`,r)}}allowDispatch(e){switch(e.type){case`UPDATE_CELL`:return this.checkValidations(e,this.checkCellOutOfSheet,this.checkUselessUpdateCell);case`CLEAR_CELL`:return this.checkValidations(e,this.checkCellOutOfSheet,this.checkUselessClearCell);case`UPDATE_CELL_POSITION`:return!e.cellId||this.cells[e.sheetId]?.[e.cellId]?H.Success:H.InvalidCellId;case`SET_FORMATTING`:return this.checkUselessSetFormatting(e);default:return H.Success}}handle(e){switch(e.type){case`SET_FORMATTING`:this.setStyleFormat(e.sheetId,e.target,e.style,e.format);break;case`CLEAR_FORMATTING`:this.clearFormatting(e.sheetId,e.target);break;case`ADD_COLUMNS_ROWS`:e.dimension===`COL`?this.handleAddColumnsRows(e,this.copyColumnStyle.bind(this)):this.handleAddColumnsRows(e,this.copyRowStyle.bind(this));break;case`UPDATE_CELL`:this.updateCell(e.sheetId,e.col,e.row,e);break;case`CLEAR_CELL`:this.dispatch(`UPDATE_CELL`,{sheetId:e.sheetId,col:e.col,row:e.row,content:``,style:null,format:``});break;case`CLEAR_CELLS`:this.clearCells(e.sheetId,e.target);break;case`DELETE_CONTENT`:this.clearZones(e.sheetId,e.target);break;case`DELETE_SHEET`:this.history.update(`cells`,e.sheetId,void 0)}}clearZones(e,t){for(let n of rn(t))for(let t=n.left;t<=n.right;t++)for(let r=n.top;r<=n.bottom;r++){let n=this.getters.getCell({sheetId:e,col:t,row:r});(n?.isFormula||n?.content)&&this.dispatch(`UPDATE_CELL`,{sheetId:e,content:``,col:t,row:r})}}clearFormatting(e,t){for(let n of rn(t))for(let t=n.left;t<=n.right;t++)for(let r=n.top;r<=n.bottom;r++)this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t,row:r,style:null,format:``})}clearCells(e,t){for(let n of t)for(let t=n.left;t<=n.right;t++)for(let r=n.top;r<=n.bottom;r++)this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t,row:r,content:``,style:null,format:``})}handleAddColumnsRows(e,t){let n,r;e.position===`before`?(n=C(e.base,e.base+e.quantity),r=e.base+e.quantity):(n=C(e.base+1,e.base+e.quantity+1),r=e.base),t(e.sheetId,r,n)}import(e){let t=performance.now();for(let t of e.sheets){let n=t.id,r=new dN,i=new HI;for(let e of i.unsquishSheet(t.cells,t.id,this.getters))if(e.content||e.compiled){let n={sheetId:t.id,col:e.position.col,row:e.position.row};e.compiled?r.set(n,{compiledFormula:e.compiled}):r.set(n,{content:e.content})}for(let[e,n]of[[`style`,t.styles],[`format`,t.formats]])for(let[i,a]of Jg(t.id,n)){let t=r.get(i);t?t[e]=a:r.set(i,{[e]:a})}for(let i of r.keysForSheet(n)){let n=r.get(i);if(n?.content||n?.format||n?.style||n?.compiledFormula){let r=this.importCell(t.id,n?.content,n?.style?e.styles[n?.style]:void 0,n?.format?e.formats[n?.format]:void 0,n?.compiledFormula);this.history.update(`cells`,t.id,r.id,r),this.dispatch(`UPDATE_CELL_POSITION`,{cellId:r.id,...i})}}}console.debug(`cells imported in`,performance.now()-t,`ms`)}export(e,t){let n={},r={};for(let i of e.sheets){let e=new zI(this.getters),a=[],o=[],s={},c=Object.values(this.cells[i.id]||{}).map(e=>this.getters.getCellPosition(e.id)).sort((e,t)=>e.col===t.col?e.row-t.row:e.col-t.col);for(let l of c){let c=this.getters.getCell(l),u=this.extractCustomStyle(c);if(Object.keys(u).length){let e=Kg(u,n);a[e]??=[],a[e].push(l)}if(c.format){let e=Kg(c.format,r);o[e]??=[],o[e].push(l)}let d=E(l.col,l.row);c.isFormula?s[d]=t?e.squish(c,i.id):c.compiledFormula.toFormulaString(this.getters):c.content&&(s[d]=t?e.squish(c,i.id):c.content)}i.styles=qg(a),i.formats=qg(o),i.cells=t?e.squishSheet(s,i.id):s}e.styles=n,e.formats=r}importCell(e,t,n,r,i){let a=this.getNextCellId();return i?iu(a,i,r,n):tu(this.getters,a,t||``,r,n,e,{avoidAutomaticDateFormat:!0})}exportForExcel(e){this.export(e,!1);let t=[];for(let n in e.formats||[])Ko(e.formats[n])||(t.push(Number(n)),delete e.formats[n]);if(t.length)for(let n of e.sheets)for(let e in n.formats){let r=n.formats[e];r&&t.includes(r)&&delete n.formats[e]}}extractCustomStyle(e){let t={...e.style},n=!e.isFormula&&Si(e.content,L)?ve:ge;for(let r in t)(r!==`align`||!e.isFormula)&&t[r]===n[r]&&delete t[r];return t}getCells(e){return Object.values(this.cells[e]||{})}getCellById(e){let t=this.getters.getCellPosition(e);return this.cells[t.sheetId][e]}getFormulaString(e,t,n,r=!1){return bl.CopyWithDependencies(t,e,n).toFormulaString(this.getters,{useBoundedReference:r})}getTranslatedCellFormula(e,t,n,r){r instanceof bl||(r=bl.CompileForSerializedFormula(e,r));let i=this.getters.createAdaptedRanges(r.rangeDependencies,t,n,e);return this.getFormulaString(e,r,i)}getFormulaMovedInSheet(e,t){let n=this.getters.removeRangesSheetPrefix(e,t.rangeDependencies);return bl.CopyWithDependencies(t,e,n).toFormulaString(this.getters)}getCellStyle(e){return this.getters.getCell(e)?.style||{}}zoneToXC(e,t,n=[{colFixed:!1,rowFixed:!1}]){t=this.getters.expandZone(e,t);let r=E(t.left,t.top,n[0]),i=E(t.right,t.bottom,n.length>1?n[1]:n[0]),a=this.getters.getMainCellPosition({sheetId:e,col:t.left,row:t.top}),o=this.getters.getMainCellPosition({sheetId:e,col:t.right,row:t.bottom}),s=a.col===o.col&&a.row===o.row;return r!==i&&!s?r+`:`+i:r}setStyleFormat(e,t,n,r){if(!(n===void 0&&r===void 0))for(let i of rn(t))for(let t=i.left;t<=i.right;t++)for(let a=i.top;a<=i.bottom;a++){let i=this.getters.getCell({sheetId:e,col:t,row:a});this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t,row:a,style:n?{...i?.style,...n}:void 0,format:r})}}copyColumnStyle(e,t,n){for(let r=0;r<this.getters.getNumberRows(e);r++){let i=this.getFormat(e,t,r);if(i.style||i.format)for(let t of n)this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t,row:r,...i})}}copyRowStyle(e,t,n){for(let r=0;r<this.getters.getNumberCols(e);r++){let i=this.getFormat(e,r,t);if(i.style||i.format)for(let t of n)this.dispatch(`UPDATE_CELL`,{sheetId:e,col:r,row:t,...i})}}getFormat(e,t,n){let r={},i=this.getters.getMainCellPosition({sheetId:e,col:t,row:n}),a=this.getters.getCell(i);return a&&(a.style&&(r.style=a.style),a.format&&(r.format=a.format)),r}getNextCellId(){let e=this.nextId;return this.history.update(`nextId`,this.nextId+1),e}updateCell(e,t,n,r){let i=this.getters.getCell({sheetId:e,col:t,row:n}),a=r.content!==void 0||`formula`in r,o;o=a?Ot(r?.content):i?.isFormula?i.compiledFormula.toFormulaString(this.getters):i?.content||``;let s;s=r.style===void 0?i?i.style:void 0:r.style||void 0;let c=r.format===void 0?i&&i.format:r.format;if((a&&!o&&!r.formula||!a&&(!i||!i.isFormula&&i.content===``))&&!s&&!c){i&&(this.history.update(`cells`,e,i.id,void 0),this.dispatch(`UPDATE_CELL_POSITION`,{cellId:void 0,col:t,row:n,sheetId:e}));return}let l=i?.id||this.getNextCellId(),u=tu(this.getters,l,o,c,s,e);this.history.update(`cells`,e,u.id,u),this.dispatch(`UPDATE_CELL_POSITION`,{cellId:u.id,col:t,row:n,sheetId:e})}checkCellOutOfSheet(e){let{sheetId:t,col:n,row:r}=e;return this.getters.tryGetSheet(t)?jn(n,r,this.getters.getSheetZone(t))?H.Success:H.TargetOutOfSheet:H.InvalidSheetId}checkUselessClearCell(e){let t=this.getters.getCell(e);return!t||!t.isFormula&&!t.content&&!t.style&&!t.format?H.NoChanges:H.Success}checkUselessUpdateCell(e){let t=this.getters.getCell(e),n=`content`in e||`formula`in e,r=`style`in e,i=`format`in e;return(!n||t?.isFormula&&t.compiledFormula.toFormulaString(this.getters)===e.content||!t?.isFormula&&t?.content===e.content)&&(!r||T(t?.style,e.style))&&(!i||t?.format===e.format)?H.NoChanges:H.Success}checkUselessSetFormatting(e){let{sheetId:t,target:n}=e,r=`style`in e,i=`format`in e;if(!r&&!i)return H.NoChanges;for(let a of rn(n))for(let n=a.left;n<=a.right;n++)for(let o=a.top;o<=a.bottom;o++){let a={sheetId:t,col:n,row:o},s=this.getters.getCell(a);if(r&&!T(s?.style,e.style)||i&&s?.format!==e.format)return H.Success}return H.NoChanges}},WI=class extends Bg{static getters=[`isChartDefined`,`getChartDefinition`,`getChartType`,`getChartIds`,`getChart`,`getFigureIdFromChartId`,`getContextCreationChart`];charts={};adaptRanges(e){for(let[t,n]of Object.entries(this.charts)){if(!n)continue;let r=AD.fromDefinition(this.getters,n.chart.sheetId,n.chart.updateRanges(e));this.history.update(`charts`,t,r?{figureId:n.figureId,chart:r}:void 0)}}allowDispatch(e){switch(e.type){case`CREATE_CHART`:return this.checkValidations(e,this.chainValidations(this.checkFigureArguments,this.checkChartDefinition,this.checkChartDuplicate));case`UPDATE_CHART`:return this.checkValidations(e,this.chainValidations(this.checkChartDefinition,this.checkChartExists,this.checkChartChanged));case`DELETE_CHART`:return H.SubCommandOnly;default:return H.Success}}handle(e){switch(e.type){case`CREATE_CHART`:let{col:t,row:n,offset:r,size:i,sheetId:a,figureId:o}=e;!this.getters.getFigure(a,o)&&r!==void 0&&t!==void 0&&n!==void 0&&this.addFigure(o,a,t,n,r,i),this.addChart(e.figureId,e.chartId,e.definition);break;case`UPDATE_CHART`:this.addChart(e.figureId,e.chartId,e.definition);break;case`DUPLICATE_SHEET`:for(let t of this.getChartIds(e.sheetId)){let{chart:n,figureId:r}=this.charts[t]||{};if(!n||!r)continue;let i=this.getters.getFigure(e.sheetId,r);if(!i)continue;let a=r.split(`??`).pop(),o=`${e.sheetIdTo}??${a}`,s=t.split(`??`).pop(),c=`${e.sheetIdTo}??${s}`,l=n.duplicateInDuplicatedSheet(e.sheetId,e.sheetIdTo);this.dispatch(`CREATE_CHART`,{figureId:o,chartId:c,col:i.col,row:i.row,offset:i.offset,size:{width:i.width,height:i.height},definition:l,sheetId:e.sheetIdTo})}break;case`DELETE_FIGURE`:for(let t in this.charts)this.charts[t]?.figureId===e.figureId&&this.dispatch(`DELETE_CHART`,{chartId:t,sheetId:e.sheetId});break;case`DELETE_CHART`:this.isChartDefined(e.chartId)&&this.history.update(`charts`,e.chartId,void 0);break;case`DELETE_SHEET`:for(let t of this.getChartIds(e.sheetId))this.history.update(`charts`,t,void 0);break}}getContextCreationChart(e){return this.charts[e]?.chart.getContextCreation()}getChart(e){return this.charts[e]?.chart}getFigureIdFromChartId(e){if(!this.charts[e])throw Error(`Chart with id ${e} does not exist.`);return this.charts[e].figureId}getChartType(e){let t=this.charts[e]?.chart.getRangeDefinition().type;if(!t)throw Error(`Chart not defined.`);return t}isChartDefined(e){return e in this.charts&&this.charts!==void 0}getChartIds(e){return Object.entries(this.charts).filter(([,t])=>t?.chart.sheetId===e).map(([e])=>e)}getChartDefinition(e){let t=this.charts[e]?.chart.getDefinition();if(!t)throw Error(`There is no chart with the given id: ${e}`);return t}import(e){for(let t of e.sheets)if(t.figures){for(let e of t.figures)if(e.tag===`chart`){let n=e.data.chartId,r={...e.data};delete r.chartId;let i=AD.fromStrDefinition(this.getters,t.id,r);this.charts[n]={chart:i,figureId:e.id}}else if(e.tag===`carousel`)for(let n in e.data.chartDefinitions||{}){let r=e.data.chartDefinitions[n],i=AD.fromStrDefinition(this.getters,t.id,r);this.charts[n]={chart:i,figureId:e.id}}}}export(e){if(e.sheets)for(let t of e.sheets){let e=this.getters.getFigures(t.id),n=[];for(let t of e){let e=t,r=Object.keys(this.charts).find(e=>this.charts[e]?.figureId===t.id);if(e&&e.tag===`chart`&&r){let t=this.charts[r]?.chart.getDefinition();t&&(e.data={...t,chartId:r},n.push(e))}else if(e&&e.tag===`carousel`){let r=Object.keys(this.charts).filter(e=>this.charts[e]?.figureId===t.id),i={};for(let e of r)i[e]=this.charts[e]?.chart.getDefinition();e.data={chartDefinitions:i},n.push(e)}else n.push(e)}t.figures=n}}addFigure(e,t,n,r,i,a={width:536,height:335}){this.dispatch(`CREATE_FIGURE`,{sheetId:t,figureId:e,col:n,row:r,offset:i,size:a,tag:`chart`})}addChart(e,t,n){let r=this.getters.getFigureSheetId(e);if(r){let i=AD.fromStrDefinition(this.getters,r,n);this.history.update(`charts`,t,{figureId:e,chart:i})}}checkChartDuplicate(e){return this.isChartDefined(e.chartId)?H.DuplicatedChartId:H.Success}checkChartDefinition(e){return AD.validate(this,e.definition)}checkChartExists(e){return this.isChartDefined(e.chartId)?H.Success:H.ChartDoesNotExist}checkChartChanged(e){return e.figureId===this.charts[e.chartId]?.figureId&&T(this.getChartDefinition(e.chartId),e.definition)?H.NoChanges:H.Success}checkFigureArguments(e){return this.getters.getFigure(e.sheetId,e.figureId)||e.offset!==void 0&&e.col!==void 0&&e.row!==void 0?H.Success:H.MissingFigureArguments}};function GI(e){return e===``?NaN:Number(e)}var KI=class extends Bg{static getters=[`getConditionalFormats`,`getRulesSelection`,`getRulesByCell`,`getAdaptedCfRanges`];cfRules={};adaptCFFormulas({applyChange:e,adaptFormulaString:t}){for(let n in this.cfRules)for(let r of this.cfRules[n])if(r.rule.type===`DataBarRule`&&r.rule.rangeValues){let t=e(r.rule.rangeValues);switch(t.changeType){case`REMOVE`:this.history.update(`cfRules`,n,this.cfRules[n].indexOf(r),`rule`,`rangeValues`,void 0);break;case`RESIZE`:case`MOVE`:case`CHANGE`:this.history.update(`cfRules`,n,this.cfRules[n].indexOf(r),`rule`,`rangeValues`,t.range);break}}else if(r.rule.type===`CellIsRule`)for(let e=0;e<r.rule.values.length;e++)this.history.update(`cfRules`,n,this.cfRules[n].indexOf(r),`rule`,`values`,e,t(n,r.rule.values[e]));else if(r.rule.type===`IconSetRule`)for(let e of[`lowerInflectionPoint`,`upperInflectionPoint`])r.rule[e].type===`formula`&&this.history.update(`cfRules`,n,this.cfRules[n].indexOf(r),`rule`,e,`value`,t(n,r.rule[e].value));else if(r.rule.type===`ColorScaleRule`)for(let e of[`minimum`,`maximum`,`midpoint`]){let i=r.rule[e];i?.type===`formula`&&i?.value&&this.history.update(`cfRules`,n,this.cfRules[n].indexOf(r),`rule`,e,`value`,t(n,i.value))}}adaptCFRanges(e,{applyChange:t}){for(let n of this.cfRules[e])for(let r of n.ranges){let i=t(r);switch(i.changeType){case`REMOVE`:let t=n.ranges.slice();t.splice(n.ranges.indexOf(r),1),t.length>=1?this.history.update(`cfRules`,e,this.cfRules[e].indexOf(n),`ranges`,t):this.removeConditionalFormatting(n.id,e);break;case`RESIZE`:case`MOVE`:case`CHANGE`:this.history.update(`cfRules`,e,this.cfRules[e].indexOf(n),`ranges`,n.ranges.indexOf(r),i.range);break}}}adaptRanges(e){for(let t of Object.keys(this.cfRules))this.adaptCFRanges(t,e);this.adaptCFFormulas(e)}allowDispatch(e){switch(e.type){case`ADD_CONDITIONAL_FORMAT`:return e.ranges.some(e=>!this.getters.tryGetSheet(e._sheetId))?H.InvalidSheetId:this.checkValidations(e,this.checkCFRule,this.checkEmptyRange,this.checkCFHasChanged);case`CHANGE_CONDITIONAL_FORMAT_PRIORITY`:return this.checkValidPriorityChange(e.cfId,e.delta,e.sheetId)}return H.Success}handle(e){switch(e.type){case`CREATE_SHEET`:this.cfRules[e.sheetId]=[];break;case`DUPLICATE_SHEET`:this.history.update(`cfRules`,e.sheetIdTo,[]);for(let t of this.getConditionalFormats(e.sheetId))this.addConditionalFormatting(t,e.sheetIdTo);break;case`DELETE_SHEET`:let t=Object.assign({},this.cfRules);delete t[e.sheetId],this.history.update(`cfRules`,t);break;case`ADD_CONDITIONAL_FORMAT`:let n={...e.cf,ranges:e.ranges.map(t=>this.getters.getRangeString(this.getters.getRangeFromRangeData(t),e.sheetId))};this.addConditionalFormatting(n,e.sheetId);break;case`REMOVE_CONDITIONAL_FORMAT`:this.removeConditionalFormatting(e.id,e.sheetId);break;case`CHANGE_CONDITIONAL_FORMAT_PRIORITY`:this.changeCFPriority(e.cfId,e.delta,e.sheetId);break}}import(e){for(let t of e.sheets)this.cfRules[t.id]=t.conditionalFormats.map(e=>this.mapToConditionalFormatInternal(t.id,e))}export(e){if(e.sheets)for(let t of e.sheets)this.cfRules[t.id]&&(t.conditionalFormats=this.cfRules[t.id].map(e=>this.mapToConditionalFormat(t.id,e)))}exportForExcel(e){if(e.sheets)for(let t of e.sheets)this.cfRules[t.id]&&(t.conditionalFormats=this.cfRules[t.id].map(e=>this.mapToConditionalFormat(t.id,e,{useBoundedReference:!0})))}getConditionalFormats(e){return this.cfRules[e]?.map(t=>this.mapToConditionalFormat(e,t))||[]}getRulesSelection(e,t){let n=new Set;return t.forEach(t=>{this.getRulesByZone(e,t).forEach(e=>{n.add(e)})}),Array.from(n)}getRulesByZone(e,t){let n=new Set;for(let r=t.top;r<=t.bottom;r++)for(let i=t.left;i<=t.right;i++)this.getRulesByCell(e,i,r).forEach(e=>{n.add(e.id)});return n}getRulesByCell(e,t,n){let r=[];for(let i of this.cfRules[e])for(let e of i.ranges)jn(t,n,e.zone)&&r.push(i);return new Set(r.map(t=>this.mapToConditionalFormat(e,t)))}getAdaptedCfRanges(e,t,n,r){if(n.length===0&&r.length===0)return;let i=this.getters.getConditionalFormats(e),a=i.findIndex(e=>e.id===t.id),o=[];a>-1&&(o=i[a].ranges.map(mn));let s=rn(o,r);return rn([...n,...s],[]).map(t=>this.getters.getRangeDataFromZone(e,t))}mapToConditionalFormat(e,t,{useBoundedReference:n}={useBoundedReference:!1}){let r=t.ranges.map(t=>this.getters.getRangeString(t,e,{useBoundedReference:n}));return t.rule.type===`DataBarRule`?{...t,rule:{...t.rule,rangeValues:t.rule.rangeValues&&this.getters.getRangeString(t.rule.rangeValues,e,{useBoundedReference:n})},ranges:r}:{...t,rule:{...t.rule},ranges:r}}mapToConditionalFormatInternal(e,t){let n=t.ranges.map(t=>this.getters.getRangeFromSheetXC(e,t));return t.rule.type===`DataBarRule`?{...t,rule:{...t.rule,rangeValues:t.rule.rangeValues?this.getters.getRangeFromSheetXC(e,t.rule.rangeValues):void 0},ranges:n}:{...t,rule:{...t.rule},ranges:n}}addConditionalFormatting(e,t){let n=this.cfRules[t].slice(),r=n.findIndex(t=>t.id===e.id),i=this.mapToConditionalFormatInternal(t,e);r>-1?n.splice(r,1,i):n.push(i),this.history.update(`cfRules`,t,n)}checkValidPriorityChange(e,t,n){if(!this.cfRules[n])return H.InvalidSheetId;let r=this.cfRules[n].findIndex(t=>t.id===e);if(r===-1)return H.InvalidConditionalFormatId;let i=r-t;return i<0||i>=this.cfRules[n].length?H.InvalidConditionalFormatId:H.Success}checkEmptyRange(e){return e.ranges.length?H.Success:H.EmptyRange}checkCFRule(e){let t=e.cf.rule;switch(t.type){case`CellIsRule`:return wk.has(t.operator)?this.checkValidations(t,this.checkOperatorArgsNumber,this.checkCFValues):H.InvalidConditionalFormatType;case`ColorScaleRule`:return this.checkValidations(t,this.chainValidations(this.checkThresholds(this.checkFormulaCompilation)),this.chainValidations(this.checkThresholds(this.checkNaN),this.batchValidations(this.checkMinBiggerThanMax,this.checkMinBiggerThanMid,this.checkMidBiggerThanMax)));case`IconSetRule`:return this.checkValidations(t,this.chainValidations(this.checkInflectionPoints(this.checkNaN),this.checkLowerBiggerThanUpper),this.chainValidations(this.checkInflectionPoints(this.checkFormulaCompilation)));case`DataBarRule`:return H.Success}return H.InvalidConditionalFormatType}checkCFHasChanged(e){let t=this.mapToConditionalFormatInternal(e.sheetId,{...e.cf,ranges:e.ranges.map(t=>this.getters.getRangeString(this.getters.getRangeFromRangeData(t),e.sheetId))}),n=this.cfRules[e.sheetId]?.find(t=>t.id===e.cf.id);return n&&T(t,n)?H.NoChanges:H.Success}checkOperatorArgsNumber(e){let t=Q.get(e.operator).numberOfValues({type:e.operator,values:e.values});if(t===void 0||t>2)throw Error(`Checking more than 2 arguments is currently not supported. Add the appropriate CommandResult if you want to.`);let n=[],r=e=>e===void 0||e===``;return t>=1&&r(e.values[0])&&n.push(H.FirstArgMissing),t>=2&&r(e.values[1])&&n.push(H.SecondArgMissing),n.length?n:H.Success}checkNaN(e,t){if([`number`,`percentage`,`percentile`].includes(e.type)&&(e.value===``||isNaN(e.value)))switch(t){case`min`:return H.MinNaN;case`max`:return H.MaxNaN;case`mid`:return H.MidNaN;case`upperInflectionPoint`:return H.ValueUpperInflectionNaN;case`lowerInflectionPoint`:return H.ValueLowerInflectionNaN}return H.Success}checkFormulaCompilation(e,t){if(e.type!==`formula`)return H.Success;if(bl.IsBadExpression(e.value||``))switch(t){case`min`:return H.MinInvalidFormula;case`max`:return H.MaxInvalidFormula;case`mid`:return H.MidInvalidFormula;case`upperInflectionPoint`:return H.ValueUpperInvalidFormula;case`lowerInflectionPoint`:return H.ValueLowerInvalidFormula}return H.Success}checkThresholds(e){return this.batchValidations(t=>e(t.minimum,`min`),t=>e(t.maximum,`max`),t=>t.midpoint?e(t.midpoint,`mid`):H.Success)}checkInflectionPoints(e){return this.batchValidations(t=>e(t.lowerInflectionPoint,`lowerInflectionPoint`),t=>e(t.upperInflectionPoint,`upperInflectionPoint`))}checkLowerBiggerThanUpper(e){let t=e.lowerInflectionPoint.value,n=e.upperInflectionPoint.value;return[`number`,`percentage`,`percentile`].includes(e.lowerInflectionPoint.type)&&e.lowerInflectionPoint.type===e.upperInflectionPoint.type&&Number(t)>Number(n)?H.LowerBiggerThanUpper:H.Success}checkMinBiggerThanMax(e){let t=e.minimum.value,n=e.maximum.value;return[`number`,`percentage`,`percentile`].includes(e.minimum.type)&&e.minimum.type===e.maximum.type&&GI(t)>=GI(n)?H.MinBiggerThanMax:H.Success}checkMidBiggerThanMax(e){let t=e.midpoint?.value,n=e.maximum.value;return e.midpoint&&[`number`,`percentage`,`percentile`].includes(e.midpoint.type)&&e.midpoint.type===e.maximum.type&&GI(t)>=GI(n)?H.MidBiggerThanMax:H.Success}checkMinBiggerThanMid(e){let t=e.minimum.value,n=e.midpoint?.value;return e.midpoint&&[`number`,`percentage`,`percentile`].includes(e.midpoint.type)&&e.minimum.type===e.midpoint.type&&GI(t)>=GI(n)?H.MinBiggerThanMid:H.Success}checkCFValues(e){for(let t of e.values)if(t.startsWith(`=`)&&bl.IsBadExpression(t))return H.ValueCellIsInvalidFormula;return H.Success}removeConditionalFormatting(e,t){let n=this.cfRules[t].findIndex(t=>t.id===e);if(n!==-1){let e=this.cfRules[t].slice();e.splice(n,1),this.history.update(`cfRules`,t,e)}}changeCFPriority(e,t,n){let r=this.cfRules[n].findIndex(t=>t.id===e),i=this.cfRules[n][r],a=r-t,o=[...this.cfRules[n]];o.splice(r,1),o.splice(a,0,i),this.history.update(`cfRules`,n,o)}},qI=class extends Bg{static getters=[`cellHasListDataValidationIcon`,`getDataValidationRule`,`getDataValidationRules`,`getValidationRuleForCell`];rules={};adaptRanges(e){for(let t in this.rules)this.adaptDVRanges(t,e);this.adaptDVFormulas(e)}adaptDVFormulas({adaptFormulaString:e}){for(let t in this.rules){let n=this.rules[t];for(let r=n.length-1;r>=0;r--){let n=this.rules[t][r];for(let i=0;i<n.criterion.values.length;i++){let a=e(t,n.criterion.values[i]);this.history.update(`rules`,t,r,`criterion`,`values`,i,a)}}}}adaptDVRanges(e,{applyChange:t}){let n=this.rules[e];for(let r=n.length-1;r>=0;r--){let n=this.rules[e][r];for(let i=n.ranges.length-1;i>=0;i--){let a=n.ranges[i],o=t(a);switch(o.changeType){case`REMOVE`:if(n.ranges.length===1)this.removeDataValidationRule(e,n.id);else{let t=n.ranges.slice();t.splice(i,1),this.history.update(`rules`,e,r,`ranges`,t)}break;case`RESIZE`:case`MOVE`:case`CHANGE`:this.history.update(`rules`,e,r,`ranges`,i,o.range);break}}}}allowDispatch(e){switch(e.type){case`ADD_DATA_VALIDATION_RULE`:return!this.getters.tryGetSheet(e.sheetId)||e.ranges.some(e=>!this.getters.tryGetSheet(e._sheetId))?H.InvalidSheetId:this.checkValidations(e,this.chainValidations(this.checkEmptyRange,this.checkValidRange,this.checkCriterionTypeIsValid,this.checkCriterionHasValidNumberOfValues,this.checkCriterionValuesAreValid));case`REMOVE_DATA_VALIDATION_RULE`:if(!this.getters.tryGetSheet(e.sheetId))return H.InvalidSheetId;if(!this.rules[e.sheetId].find(t=>t.id===e.id))return H.UnknownDataValidationRule;break}return H.Success}handle(e){switch(e.type){case`CREATE_SHEET`:this.history.update(`rules`,e.sheetId,[]);break;case`DUPLICATE_SHEET`:{let t=x(this.rules[e.sheetId]).map(t=>({...t,ranges:t.ranges.map(t=>Lc(e.sheetId,e.sheetIdTo,t))}));this.history.update(`rules`,e.sheetIdTo,t);break}case`DELETE_SHEET`:{let t={...this.rules};delete t[e.sheetId],this.history.update(`rules`,t);break}case`REMOVE_DATA_VALIDATION_RULE`:this.removeDataValidationRule(e.sheetId,e.id);break;case`ADD_DATA_VALIDATION_RULE`:{let t=e.ranges.map(e=>this.getters.getRangeFromRangeData(e));this.addDataValidationRule(e.sheetId,{...e.rule,ranges:t});break}case`DELETE_CONTENT`:{let t=rn(e.target),n=e.sheetId;for(let e of t)for(let t=e.top;t<=e.bottom;t++)for(let r=e.left;r<=e.right;r++){let e=this.getValidationRuleForCell({sheetId:n,col:r,row:t});if(!e)continue;let i=this.getters.getCell({sheetId:n,col:r,row:t});if(e.criterion.type===`isBoolean`||e.criterion.type===`isValueInList`&&!i?.isFormula&&!i?.content){let e=this.rules[n],i=[this.getters.getRangeFromSheetXC(n,E(r,t))],a=this.removeRangesFromRules(n,i,e);this.history.update(`rules`,n,a)}}}}}getDataValidationRules(e){return this.rules[e]}getDataValidationRule(e,t){return this.rules[e].find(e=>e.id===t)}getValidationRuleForCell({sheetId:e,col:t,row:n}){if(this.rules[e]){for(let r of this.rules[e])for(let e of r.ranges)if(jn(t,n,e.zone))return r}}cellHasListDataValidationIcon(e){let t=this.getValidationRuleForCell(e);return t?(t.criterion.type===`isValueInList`||t.criterion.type===`isValueInRange`)&&(t.criterion.displayStyle===`arrow`||t.criterion.displayStyle===`chip`):!1}addDataValidationRule(e,t){let n=this.rules[e];t.criterion.type===`isBoolean`?this.setCenterStyleToBooleanCells(t):t.criterion.type===`isValueInList`&&(t.criterion.values=Array.from(new Set(t.criterion.values)));let r=this.removeRangesFromRules(e,t.ranges,n,t.id),i=r.findIndex(e=>e.id===t.id);i===-1?this.history.update(`rules`,e,[...r,t]):(r[i]=t,this.history.update(`rules`,e,r))}removeRangesFromRules(e,t,n,r){n=x(n);for(let e of n)e.id!==r&&(e.ranges=this.getters.recomputeRanges(e.ranges,t));return n.filter(e=>e.ranges.length>0)}removeDataValidationRule(e,t){let n=this.rules[e].filter(e=>e.id!==t);this.history.update(`rules`,e,n)}setCenterStyleToBooleanCells(e){for(let t of zc(e.ranges)){let e=this.getters.getCell(t),n={...e?.style,align:e?.style?.align??`center`,verticalAlign:e?.style?.verticalAlign??`middle`};this.dispatch(`UPDATE_CELL`,{...t,style:n})}}checkEmptyRange(e){return e.ranges.length?H.Success:H.EmptyRange}import(e){for(let t of e.sheets)if(this.rules[t.id]=[],t.dataValidationRules)for(let e of t.dataValidationRules)this.rules[t.id].push({...e,ranges:e.ranges.map(e=>this.getters.getRangeFromSheetXC(t.id,e))})}export(e){if(e.sheets)for(let t of e.sheets){t.dataValidationRules=[];for(let e of this.rules[t.id])t.dataValidationRules.push({...e,ranges:e.ranges.map(e=>this.getters.getRangeString(e,t.id))})}}exportForExcel(e){if(e.sheets)for(let t of e.sheets){t.dataValidationRules=[];for(let e of this.rules[t.id]){let n={...x(e),ranges:e.ranges.map(e=>this.getters.getRangeString(e,t.id,{useBoundedReference:!0}))};e.criterion.type===`isValueInRange`&&(n.criterion.values=e.criterion.values.map(e=>{let n=this.getters.getRangeFromSheetXC(t.id,e);return this.getters.getRangeString(n,t.id,{useBoundedReference:!0,useFixedReference:!0})})),t.dataValidationRules.push(n)}}}checkCriterionTypeIsValid(e){return Q.contains(e.rule.criterion.type)?H.Success:H.UnknownDataValidationCriterionType}checkCriterionHasValidNumberOfValues(e){let t=e.rule.criterion,n=Q.get(t.type).numberOfValues(t);return n!==void 0&&t.values.length!==n?H.InvalidNumberOfCriterionValues:H.Success}checkCriterionValuesAreValid(e){let t=e.rule.criterion,n=Q.get(t.type);return t.values.some(e=>n.allowedValues===`onlyFormulas`&&!e.startsWith(`=`)?!0:e.startsWith(`=`)?n.allowedValues===`onlyLiterals`||bl.IsBadExpression(e):!n.isCriterionValueValid(e))?H.InvalidDataValidationCriterionValue:H.Success}checkValidRange(e){return e.ranges.map(e=>this.getters.getRangeFromRangeData(e)).map(t=>this.getters.getRangeString(t,e.sheetId)).some(e=>!this.getters.isRangeValid(e))?H.InvalidRange:H.Success}},JI=class extends Bg{static getters=[`getFigures`,`getFigure`,`getFigureSheetId`];figures={};insertionOrders=[];adaptRanges(e){for(let t in this.figures)this.adaptRangesOnSheet(e,t)}adaptRangesOnSheet({applyChange:e},t){for(let n of this.getFigures(t)){let r=e(this.getters.getRangeFromZone(t,{left:n.col,right:n.col,top:n.row,bottom:n.row}));if(r.changeType===`MOVE`)this.history.update(`figures`,t,n.id,`col`,r.range.zone.right),this.history.update(`figures`,t,n.id,`row`,r.range.zone.bottom);else if(r.changeType===`REMOVE`){let r=e(this.getters.getRangeFromZone(t,{left:0,right:n.col-1,top:0,bottom:n.row-1})),{offset:i,col:a,row:o}=n;r.changeType!==`NONE`&&(a=r.range.zone.right+1,o=r.range.zone.bottom+1),{offset:i,col:a,row:o}=this.getPositionInSheet(t,{...n,col:a,row:o}),this.history.update(`figures`,t,n.id,`offset`,i),this.history.update(`figures`,t,n.id,`col`,a),this.history.update(`figures`,t,n.id,`row`,o)}}}allowDispatch(e){switch(e.type){case`CREATE_FIGURE`:return this.checkValidations(e,this.checkFigureDuplicate,this.checkFigureAnchorOffset);case`UPDATE_FIGURE`:return this.checkValidations(e,this.checkFigureExists,this.checkFigureAnchorOffset);case`DELETE_FIGURE`:return this.checkFigureExists(e);default:return H.Success}}beforeHandle(e){switch(e.type){case`DELETE_SHEET`:this.getters.getFigures(e.sheetId).forEach(t=>{this.dispatch(`DELETE_FIGURE`,{figureId:t.id,sheetId:e.sheetId})});break}}handle(e){switch(e.type){case`CREATE_SHEET`:this.figures[e.sheetId]={};break;case`DELETE_SHEET`:this.deleteSheet(e.sheetId);break;case`CREATE_FIGURE`:let t={id:e.figureId,col:e.col,row:e.row,offset:e.offset,width:e.size.width,height:e.size.height,tag:e.tag};this.addFigure(t,e.sheetId);break;case`UPDATE_FIGURE`:this.updateFigure(e);break;case`DELETE_FIGURE`:this.removeFigure(e.figureId,e.sheetId);break;case`REMOVE_COLUMNS_ROWS`:e.dimension===`COL`?this.onColRemove(e.sheetId):this.onRowRemove(e.sheetId);break;case`DUPLICATE_SHEET`:for(let t of this.getFigures(e.sheetId)){let n=t.id,r=this.figures[e.sheetId]?.[n];if(!r)continue;let i=n.split(`??`).pop(),a=`${e.sheetIdTo}??${i}`;this.dispatch(`CREATE_FIGURE`,{figureId:a,...r,size:{width:r.width,height:r.height},sheetId:e.sheetIdTo})}break}}onColRemove(e){let t=this.getters.getNumberCols(e),n=Array(t+1);n[t]=0;for(let r=t-1;r>=0;r--)n[r]=n[r+1]+this.getters.getColSize(e,r);for(let t of this.getFigures(e))if(t.offset.x+t.width>n[t.col]){let r=t.offset.x,i=t.col;for(r=Math.min(r,n[i]-t.width);r<0&&i>0;)i--,r=n[i]-t.width;r!==t.offset.x&&this.history.update(`figures`,e,t.id,`offset`,{x:Math.max(r,0),y:t.offset.y}),i!==t.col&&this.history.update(`figures`,e,t.id,`col`,i)}}onRowRemove(e){let t=this.getters.getNumberRows(e),n=Array(t+1);n[t]=0;for(let r=t-1;r>=0;r--)n[r]=n[r+1]+(this.getters.getUserRowSize(e,r)??23);for(let t of this.getFigures(e))if(t.offset.y+t.height>n[t.row]){let r=t.offset.y,i=t.row;for(let t=this.getters.getUserRowSize(e,i)??23;t<r;t=this.getters.getUserRowSize(e,i)??23)i+=1,r-=t;for(r=Math.min(r,n[i]-t.height);r<0&&i>0;)i--,r=n[i]-t.height;r!==t.offset.y&&this.history.update(`figures`,e,t.id,`offset`,{x:t.offset.x,y:Math.max(0,r)}),i!==t.row&&this.history.update(`figures`,e,t.id,`row`,i)}else t.offset.y+t.height>n[0]&&this.history.update(`figures`,e,t.id,`offset`,{x:t.offset.x,y:Math.max(n[0]-t.height,0)})}getPositionInSheet(e,t){let{numberOfRows:n,numberOfCols:r}=this.getters.getSheetSize(e),i=0,a=0,o,s,{col:c,row:l}=t,u={...t.offset};for(o=n;i<t.height&&o>0;o--)i+=this.getters.getUserRowSize(e,o-1)??23;for(l>o?(l=o,u.y=Math.max(i-t.height,0)):l===o&&(u.y=S(u.y,0,Math.max(i-t.height,0))),s=r;a<t.width&&s>0;s--)a+=this.getters.getColSize(e,s-1);return c>s?(c=s,u.x=Math.max(a-t.width,0)):s===c&&(u.x=S(u.x,0,Math.max(a-t.width,0))),{col:c,row:l,offset:u}}updateFigure(e){if(!(`figureId`in e)||!(`sheetId`in e))return;let{figureId:t,sheetId:n,...r}=e,i={...this.getFigure(n,t),...r};for(let[e,t]of Object.entries(r))switch(e){case`tag`:this.history.update(`figures`,n,i.id,e,t);break;case`offset`:this.history.update(`figures`,n,i.id,e,t);break;case`col`:case`row`:case`width`:case`height`:t!==void 0&&this.history.update(`figures`,n,i.id,e,t);break}}addFigure(e,t){this.history.update(`figures`,t,e.id,e),this.history.update(`insertionOrders`,this.insertionOrders.length,e.id)}deleteSheet(e){this.history.update(`insertionOrders`,this.insertionOrders.filter(t=>!this.figures[e]?.[t])),this.history.update(`figures`,e,void 0)}removeFigure(e,t){this.history.update(`insertionOrders`,this.insertionOrders.filter(t=>t!==e)),this.history.update(`figures`,t,e,void 0)}checkFigureExists(e){return this.figures[e.sheetId]?.[e.figureId]===void 0?H.FigureDoesNotExist:H.Success}checkFigureDuplicate(e){return Object.values(this.figures).find(t=>t?.[e.figureId])?H.DuplicatedFigureId:H.Success}checkFigureAnchorOffset(e){return e.col<0||e.row<0||e.offset&&(e.offset.x<0||e.offset.y<0)?H.WrongSheetPosition:H.Success}getFigures(e){let t=[];for(let n of this.insertionOrders){let r=this.figures[e]?.[n];r&&t.push(r)}return t}getFigure(e,t){return this.figures[e]?.[t]}getFigureSheetId(e){return Object.keys(this.figures).find(t=>this.figures[t]?.[e]!==void 0)}import(e){for(let t of e.sheets)for(let e of t.figures)this.addFigure(e,t.id)}export(e){for(let t of e.sheets)for(let e of this.getFigures(t.id))t.figures.push({...e,data:void 0})}exportForExcel(e){return this.export(e)}},YI=class extends Bg{static getters=[`getHeaderGroups`,`getGroupsLayers`,`getVisibleGroupLayers`,`getHeaderGroup`,`getHeaderGroupsInZone`,`isGroupFolded`,`isRowFolded`,`isColFolded`];groups={};allowDispatch(e){switch(e.type){case`GROUP_HEADERS`:{let{start:t,end:n,sheetId:r}=e;if(!this.getters.tryGetSheet(r))return H.InvalidSheetId;if(!this.getters.doesHeadersExist(e.sheetId,e.dimension,[t,n])||t>n)return H.InvalidHeaderGroupStartEnd;if(this.findGroupWithStartEnd(e.sheetId,e.dimension,t,n))return H.HeaderGroupAlreadyExists;break}case`UNGROUP_HEADERS`:{let{start:t,end:n,sheetId:r}=e;if(!this.getters.tryGetSheet(r))return H.InvalidSheetId;if(!this.getters.doesHeadersExist(e.sheetId,e.dimension,[t,n])||t>n)return H.InvalidHeaderGroupStartEnd;break}case`UNFOLD_HEADER_GROUP`:case`FOLD_HEADER_GROUP`:if(!this.getters.tryGetSheet(e.sheetId))return H.InvalidSheetId;let t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);if(!t)return H.UnknownHeaderGroup;if(C(0,this.getters.getNumberHeaders(e.sheetId,e.dimension)).every(n=>n>=t.start&&n<=t.end||this.getters.isHeaderHiddenByUser(e.sheetId,e.dimension,n)))return H.NotEnoughElements;break}return H.Success}handle(e){switch(e.type){case`CREATE_SHEET`:this.history.update(`groups`,e.sheetId,{ROW:[],COL:[]});break;case`GROUP_HEADERS`:this.groupHeaders(e.sheetId,e.dimension,e.start,e.end);break;case`UNGROUP_HEADERS`:this.unGroupHeaders(e.sheetId,e.dimension,e.start,e.end);break;case`DUPLICATE_SHEET`:{let t=x(this.groups[e.sheetId]);this.history.update(`groups`,e.sheetIdTo,t);break}case`DELETE_SHEET`:{let t={...this.groups};delete t[e.sheetId],this.history.update(`groups`,t);break}case`ADD_COLUMNS_ROWS`:let t=yt(e.position,e.base);this.moveGroupsOnHeaderInsertion(e.sheetId,e.dimension,t,e.quantity);break;case`REMOVE_COLUMNS_ROWS`:this.moveGroupsOnHeaderDeletion(e.sheetId,e.dimension,e.elements);break;case`UNFOLD_HEADER_GROUP`:{let t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);t&&this.unfoldHeaderGroup(e.sheetId,e.dimension,t);break}case`FOLD_HEADER_GROUP`:{let t=this.findGroupWithStartEnd(e.sheetId,e.dimension,e.start,e.end);t&&this.foldHeaderGroup(e.sheetId,e.dimension,t);break}case`UNFOLD_ALL_HEADER_GROUPS`:{let t=this.getters.getHeaderGroups(e.sheetId,e.dimension);for(let n of t)this.unfoldHeaderGroup(e.sheetId,e.dimension,n);break}case`FOLD_ALL_HEADER_GROUPS`:{let t=this.getters.getHeaderGroups(e.sheetId,e.dimension);for(let n of t)this.foldHeaderGroup(e.sheetId,e.dimension,n);break}case`FOLD_HEADER_GROUPS_IN_ZONE`:case`UNFOLD_HEADER_GROUPS_IN_ZONE`:{let t=e.type===`UNFOLD_HEADER_GROUPS_IN_ZONE`?`unfold`:`fold`,n=this.getGroupsLayers(e.sheetId,e.dimension);t===`fold`&&n.reverse();let r=n.flat(),i=e.dimension===`ROW`?e.zone.top:e.zone.left,a=e.dimension===`ROW`?e.zone.bottom:e.zone.right,o=new Set;for(let e=i;e<=a;e++){let n=r.filter(t=>t.start-1<=e&&e<=t.end);for(let e of n)if(!(t===`fold`&&e.isFolded||t===`unfold`&&!e.isFolded)){o.add(e);break}}for(let n of o)t===`unfold`?this.unfoldHeaderGroup(e.sheetId,e.dimension,n):this.foldHeaderGroup(e.sheetId,e.dimension,n);break}}}getHeaderGroups(e,t){return this.groups[e][t]}getHeaderGroup(e,t,n,r){return this.getHeaderGroups(e,t).find(e=>e.start===n&&e.end===r)}getHeaderGroupsInZone(e,t,n){return this.getHeaderGroups(e,t).filter(e=>{let r=t===`ROW`?n.top:n.left,i=t===`ROW`?n.bottom:n.right;return this.doGroupOverlap(e,r,i)})}getGroupsLayers(e,t){let n=this.getHeaderGroups(e,t);return this.bricksFallingAlgorithm(n,0,0)}getVisibleGroupLayers(e,t){let n=this.getGroupsLayers(e,t);for(let r of n)for(let n=r.length-1;n>=0;n--){let i=r[n];i.start!==0&&C(i.start-1,i.end+1).every(n=>this.getters.isHeaderHiddenByUser(e,t,n))&&r.splice(n,1)}return n.filter(e=>e.length>0)}isGroupFolded(e,t,n,r){return this.getHeaderGroup(e,t,n,r)?.isFolded||!1}isRowFolded(e,t){return this.getters.getHeaderGroups(e,`ROW`).some(e=>e.start<=t&&t<=e.end&&e.isFolded)}isColFolded(e,t){return this.getters.getHeaderGroups(e,`COL`).some(e=>e.start<=t&&t<=e.end&&e.isFolded)}getGroupId(e){return`${e.start}-${e.end}}`}bricksFallingAlgorithm(e,t,n,r=0){let i={};for(let t of e)i[this.getGroupId(t)]=t.isFolded;let a={};for(let t of e)for(let e=t.start;e<=t.end;e++)a[e]=a[e]?a[e]+1:1;for(let e=t;e<=n;e++)a[e]=a[e]?a[e]+r:r;let o=Math.max(...Object.values(a),0),s=Array.from({length:o},()=>[]),c=Math.max(n,...e.map(e=>e.end)),l=Math.min(t,...e.map(e=>e.start));for(let e=l;e<=c;e++){let t=a[e]||0;for(let n=0;n<t;n++){let t=s[n].at(-1);if(t&&kt([t.end,e]))t.end++;else{let t={start:e,end:e};s[n].push(t)}}}for(let e of s)for(let t of e)t.isFolded=i[this.getGroupId(t)];return s}groupHeaders(e,t,n,r){let i=this.getHeaderGroups(e,t),a=this.bricksFallingAlgorithm(i,n,r,1).flat();this.history.update(`groups`,e,t,this.removeDuplicateGroups(a))}unGroupHeaders(e,t,n,r){let i=this.getHeaderGroups(e,t),a=this.bricksFallingAlgorithm(i,n,r,-1).flat();this.history.update(`groups`,e,t,this.removeDuplicateGroups(a))}moveGroupsOnHeaderInsertion(e,t,n,r){let i=this.groups[e][t];for(let a=0;a<i.length;a++){let o=i[a],[s,c]=Qc(n,r,[o.start,o.end]);(s!==o.start||c!==o.end)&&this.history.update(`groups`,e,t,a,{...o,start:s,end:c})}}moveGroupsOnHeaderDeletion(e,t,n){let r=this.getHeaderGroups(e,t),i=[];for(let e of r){let t=$c(n,C(e.start,e.end+1));t.length!==0&&i.push({...e,start:Math.min(...t),end:Math.max(...t)})}this.history.update(`groups`,e,t,this.bricksFallingAlgorithm(i,0,0).flat())}doGroupOverlap(e,t,n){return e.start<=n&&e.end>=t}removeDuplicateGroups(e){let t={};for(let n of e)t[this.getGroupId(n)]=n;return Object.values(t)}findGroupWithStartEnd(e,t,n,r){return this.getHeaderGroups(e,t).find(e=>e.start===n&&e.end===r)}foldHeaderGroup(e,t,n){let r=this.getGroupIndex(e,t,n.start,n.end);if(r===void 0)return;this.history.update(`groups`,e,t,r,`isFolded`,!0);let i=this.getters.getHeaderGroups(e,t);for(let r=0;r<i.length;r++){let a=i[r];a.start===n.start&&a.end<=n.end&&this.history.update(`groups`,e,t,r,`isFolded`,!0)}}unfoldHeaderGroup(e,t,n){let r=this.getGroupIndex(e,t,n.start,n.end);if(r===void 0)return;this.history.update(`groups`,e,t,r,`isFolded`,!1);let i=this.getters.getHeaderGroups(e,t);for(let r=0;r<i.length;r++){let a=i[r];a.start===n.start&&a.end>=n.end&&this.history.update(`groups`,e,t,r,`isFolded`,!1)}}getGroupIndex(e,t,n,r){let i=this.groups[e][t].findIndex(e=>e.start===n&&e.end===r);return i===-1?void 0:i}import(e){for(let t of e.sheets)if(this.groups[t.id]={ROW:[],COL:[]},t.headerGroups)for(let e of[`ROW`,`COL`])for(let n of t.headerGroups[e]||[])this.groups[t.id][e].push({...n})}export(e){for(let t of e.sheets)t.headerGroups=this.groups[t.id]}exportForExcel(e){for(let t of e.sheets)for(let e of[`ROW`,`COL`]){let n=this.getGroupsLayers(t.id,e);for(let r=0;r<n.length;r++){let i=n[r];for(let n of i){for(let i=n.start;i<=n.end;i++){let a=bv(t,e,i);a.outlineLevel=r+1,n.isFolded&&(a.isHidden=!0)}if(n.isFolded){let r=bv(t,e,n.end+1);r.collapsed=!0}}}}}},XI=class extends Bg{static getters=[`getUserRowSize`,`getColSize`];sizes={};handle(e){switch(e.type){case`CREATE_SHEET`:this.history.update(`sizes`,e.sheetId,{COL:Array(this.getters.getNumberCols(e.sheetId)).fill(void 0),ROW:Array(this.getters.getNumberRows(e.sheetId)).fill(void 0)});break;case`DUPLICATE_SHEET`:this.history.update(`sizes`,e.sheetIdTo,x(this.sizes[e.sheetId]));break;case`DELETE_SHEET`:let t={...this.sizes};delete t[e.sheetId],this.history.update(`sizes`,t);break;case`REMOVE_COLUMNS_ROWS`:{let t=this.sizes[e.sheetId][e.dimension],n=jt(t,e.elements);this.history.update(`sizes`,e.sheetId,e.dimension,n);break}case`ADD_COLUMNS_ROWS`:{let t=this.sizes[e.sheetId][e.dimension],n=yt(e.position,e.base),r=t[e.base],i=Mt(t,Array(e.quantity).fill(r),n);this.history.update(`sizes`,e.sheetId,e.dimension,i);break}case`RESIZE_COLUMNS_ROWS`:if(e.dimension===`ROW`)for(let t of e.elements)this.history.update(`sizes`,e.sheetId,e.dimension,t,e.size||void 0);else for(let t of e.elements)this.history.update(`sizes`,e.sheetId,e.dimension,t,e.size||void 0);break}}getColSize(e,t){return Math.round(this.sizes[e]?.COL[t]||96)}getUserRowSize(e,t){let n=this.sizes[e]?.ROW[t];return n?Math.round(n):void 0}import(e){for(let t of e.sheets){let e={COL:Array(t.colNumber).fill(void 0),ROW:Array(t.rowNumber).fill(void 0)};for(let[n,r]of Object.entries(t.rows))r.size&&(e.ROW[n]=r.size);for(let[n,r]of Object.entries(t.cols))r.size&&(e.COL[n]=r.size);this.sizes[t.id]=e}}exportForExcel(e){this.exportData(e,!0)}export(e){this.exportData(e)}exportData(e,t=!1){for(let n of e.sheets){n.rows===void 0&&(n.rows={});for(let e of C(0,this.getters.getNumberRows(n.id)))(t||this.sizes[n.id].ROW[e])&&(n.rows[e]={...n.rows[e],size:this.getUserRowSize(n.id,e)??23});n.cols===void 0&&(n.cols={});for(let e of C(0,this.getters.getNumberCols(n.id)))(t||this.sizes[n.id].COL[e])&&(n.cols[e]={...n.cols[e],size:this.getColSize(n.id,e)})}}},ZI=class extends Bg{static getters=[`checkElementsIncludeAllVisibleHeaders`,`getHiddenColsGroups`,`getHiddenRowsGroups`,`isHeaderHiddenByUser`,`isRowHiddenByUser`,`isColHiddenByUser`];hiddenHeaders={};allowDispatch(e){switch(e.type){case`HIDE_COLUMNS_ROWS`:{if(!this.getters.tryGetSheet(e.sheetId))return H.InvalidSheetId;let t=e.dimension===`COL`?this.getHiddenColsGroups(e.sheetId):this.getHiddenRowsGroups(e.sheetId),n=e.dimension===`COL`?this.getters.getNumberCols(e.sheetId):this.getters.getNumberRows(e.sheetId);return new Set((t||[]).flat().concat(e.elements)).size>=n?H.TooManyHiddenElements:Rt(e.elements)<0||Lt(e.elements)>n?H.InvalidHeaderIndex:H.Success}case`REMOVE_COLUMNS_ROWS`:return this.getters.tryGetSheet(e.sheetId)?this.checkElementsIncludeAllVisibleHeaders(e.sheetId,e.dimension,e.elements)?H.NotEnoughElements:H.Success:H.InvalidSheetId}return H.Success}handle(e){switch(e.type){case`CREATE_SHEET`:let t={COL:Array(this.getters.getNumberCols(e.sheetId)).fill(!1),ROW:Array(this.getters.getNumberRows(e.sheetId)).fill(!1)};this.history.update(`hiddenHeaders`,e.sheetId,t);break;case`DUPLICATE_SHEET`:this.history.update(`hiddenHeaders`,e.sheetIdTo,x(this.hiddenHeaders[e.sheetId]));break;case`DELETE_SHEET`:this.history.update(`hiddenHeaders`,e.sheetId,void 0);break;case`REMOVE_COLUMNS_ROWS`:{let t=[...this.hiddenHeaders[e.sheetId][e.dimension]];for(let n of[...e.elements].sort((e,t)=>t-e))t.splice(n,1);this.history.update(`hiddenHeaders`,e.sheetId,e.dimension,t);break}case`ADD_COLUMNS_ROWS`:{let t=yt(e.position,e.base),n=Mt([...this.hiddenHeaders[e.sheetId][e.dimension]],Array(e.quantity).fill(!1),t);this.history.update(`hiddenHeaders`,e.sheetId,e.dimension,n);break}case`HIDE_COLUMNS_ROWS`:for(let t of e.elements)this.history.update(`hiddenHeaders`,e.sheetId,e.dimension,t,!0);break;case`UNHIDE_COLUMNS_ROWS`:for(let t of e.elements)this.history.update(`hiddenHeaders`,e.sheetId,e.dimension,t,!1);break}}checkElementsIncludeAllVisibleHeaders(e,t,n){return St(n,this.getAllVisibleHeaders(e,t))}isHeaderHiddenByUser(e,t,n){return t===`COL`?this.isColHiddenByUser(e,n):this.isRowHiddenByUser(e,n)}isRowHiddenByUser(e,t){return this.hiddenHeaders[e].ROW[t]||this.getters.isRowFolded(e,t)}isColHiddenByUser(e,t){return this.hiddenHeaders[e].COL[t]||this.getters.isColFolded(e,t)}getHiddenColsGroups(e){let t=[[]],n=this.hiddenHeaders[e].COL;for(let e=0;e<n.length;e++)n[e]?t[t.length-1].push(e):t[t.length-1].length!==0&&t.push([]);return t[t.length-1].length===0&&t.pop(),t}getHiddenRowsGroups(e){let t=[[]],n=this.hiddenHeaders[e].ROW;for(let e=0;e<n.length;e++)n[e]?t[t.length-1].push(e):t[t.length-1].length!==0&&t.push([]);return t[t.length-1].length===0&&t.pop(),t}getAllVisibleHeaders(e,t){let n=C(0,this.getters.getNumberHeaders(e,t)),r=[];return this.getters.getHeaderGroups(e,t).forEach(e=>{e.isFolded&&r.push(...C(e.start,e.end+1))}),n.filter(n=>!this.hiddenHeaders[e][t][n]&&!r.includes(n))}import(e){for(let t of e.sheets){this.hiddenHeaders[t.id]={COL:[],ROW:[]};for(let e=0;e<t.rowNumber;e++)this.hiddenHeaders[t.id].ROW[e]=!!t.rows[e]?.isHidden;for(let e=0;e<t.colNumber;e++)this.hiddenHeaders[t.id].COL[e]=!!t.cols[e]?.isHidden}}exportForExcel(e){this.exportData(e,!0)}export(e){this.exportData(e)}exportData(e,t=!1){for(let n of e.sheets){n.rows===void 0&&(n.rows={});for(let e=0;e<this.getters.getNumberRows(n.id);e++)(t||this.hiddenHeaders[n.id].ROW[e])&&(n.rows[e]===void 0&&(n.rows[e]={}),n.rows[e].isHidden||=this.hiddenHeaders[n.id].ROW[e]);n.cols===void 0&&(n.cols={});for(let e=0;e<this.getters.getNumberCols(n.id);e++)(t||this.hiddenHeaders[n.id].COL[e])&&(n.cols[e]===void 0&&(n.cols[e]={}),n.cols[e].isHidden||=this.hiddenHeaders[n.id].COL[e])}}},QI=class extends Bg{static getters=[`getImage`,`getImagePath`,`getImageSize`];fileStore;images={};syncedImages=new Set;constructor(e){super(e),this.fileStore=e.external.fileStore}allowDispatch(e){switch(e.type){case`CREATE_IMAGE`:return this.getters.getFigure(e.sheetId,e.figureId)?H.InvalidFigureId:H.Success;default:return H.Success}}handle(e){switch(e.type){case`CREATE_IMAGE`:this.getters.getFigure(e.sheetId,e.figureId)||this.addFigure(e.figureId,e.sheetId,e.col,e.row,e.offset,e.size),this.history.update(`images`,e.sheetId,e.figureId,e.definition),this.syncedImages.add(e.definition.path);break;case`DUPLICATE_SHEET`:{let t=this.getters.getFigures(e.sheetId);for(let n of t)if(n.tag===`image`){let t=n.id.split(`??`).pop(),r=`${e.sheetIdTo}??${t}`,i=this.getImage(n.id);if(i){let t={width:n.width,height:n.height};this.dispatch(`CREATE_IMAGE`,{sheetId:e.sheetIdTo,figureId:r,offset:n.offset,col:n.col,row:n.row,size:t,definition:x(i)})}}break}case`DELETE_FIGURE`:this.history.update(`images`,e.sheetId,e.figureId,void 0);break;case`DELETE_SHEET`:this.history.update(`images`,e.sheetId,void 0);break}}getImage(e){for(let t of Object.values(this.images))if(t&&t[e])return t[e];throw Error(`There is no image with the given figureId: ${e}`)}getImagePath(e){return this.getImage(e).path}getImageSize(e){return this.getImage(e).size}addFigure(e,t,n,r,i,a){this.dispatch(`CREATE_FIGURE`,{sheetId:t,figureId:e,col:n,row:r,offset:i,size:a,tag:`image`})}import(e){for(let t of e.sheets){let e=(t.figures||[]).filter(e=>e.tag===`image`);for(let n of e)this.history.update(`images`,t.id,n.id,n.data),this.syncedImages.add(n.data.path)}}export(e){for(let t of e.sheets){let e=t.figures.filter(e=>e.tag===`image`);for(let n of e)n.data=this.images[t.id]?.[n.id]}}exportForExcel(e){for(let t of e.sheets){t.images||=[];let e=this.getters.getFigures(t.id),n=[];for(let t of e)if(t?.tag===`image`){let e=this.getImage(t.id);e&&n.push({...t,data:x(e)})}t.images=[...t.images,...n]}}},$I=class extends Bg{static getters=[`isInMerge`,`isInSameMerge`,`isMergeHidden`,`getMainCellPosition`,`expandZone`,`doesIntersectMerge`,`doesColumnsHaveCommonMerges`,`doesRowsHaveCommonMerges`,`getMerges`,`getMerge`,`getMergesInZone`,`isSingleCellOrMerge`,`isMainCellPosition`];nextId=1;merges={};mergeCellMap={};allowDispatch(e){let t=`force`in e?!!e.force:!1;switch(e.type){case`ADD_MERGE`:return t?this.checkValidations(e,this.checkFrozenPanes):this.checkValidations(e,this.checkDestructiveMerge,this.checkOverlap,this.checkFrozenPanes);case`UPDATE_CELL`:return this.checkMergedContentUpdate(e);case`REMOVE_MERGE`:return this.checkMergeExists(e);default:return H.Success}}handle(e){switch(e.type){case`CREATE_SHEET`:this.history.update(`merges`,e.sheetId,{}),this.history.update(`mergeCellMap`,e.sheetId,{});break;case`DELETE_SHEET`:this.history.update(`merges`,e.sheetId,{}),this.history.update(`mergeCellMap`,e.sheetId,{});break;case`DUPLICATE_SHEET`:let t=this.merges[e.sheetId];if(!t)break;for(let n of Object.values(t).filter(w))this.addMerge(e.sheetIdTo,n.zone);break;case`ADD_MERGE`:for(let t of e.target)this.addMerge(e.sheetId,t);break;case`REMOVE_MERGE`:for(let t of e.target)this.removeMerge(e.sheetId,t);break}}adaptRanges(e){for(let t in this.merges)this.applyRangeChangeOnSheet(t,e)}getMerges(e){return Object.keys(this.merges[e]||{}).map(t=>this.getMergeById(e,parseInt(t,10))).filter(w)}getMerge({sheetId:e,col:t,row:n}){let r=this.mergeCellMap[e],i=r?t in r&&r[t]?.[n]:void 0;return i?this.getMergeById(e,i):void 0}getMergesInZone(e,t){let n=this.mergeCellMap[e];if(!n)return[];let r=new Set;for(let e=t.left;e<=t.right;e++)for(let i=t.top;i<=t.bottom;i++){let t=n[e]?.[i];t&&r.add(t)}return Array.from(r).map(t=>this.getMergeById(e,t)).filter(w)}doesIntersectMerge(e,t){for(let n of this.getMerges(e))if(kn(t,n))return!0;return!1}doesColumnsHaveCommonMerges(e,t,n){let r=this.getters.getSheet(e);for(let i=0;i<this.getters.getNumberRows(e);i++)if(this.isInSameMerge(r.id,t,i,n,i))return!0;return!1}doesRowsHaveCommonMerges(e,t,n){let r=this.getters.getSheet(e);for(let i=0;i<=this.getters.getNumberCols(e);i++)if(this.isInSameMerge(r.id,i,t,i,n))return!0;return!1}expandZone(e,t){let{left:n,right:r,top:i,bottom:a}=t,o={left:n,right:r,top:i,bottom:a};for(let t in this.merges[e]){let n=this.getMergeById(e,parseInt(t));n&&kn(n,o)&&(o=Tn(n,o))}return On(o,t)?o:this.expandZone(e,o)}isInSameMerge(e,t,n,r,i){let a=this.getMerge({sheetId:e,col:t,row:n}),o=this.getMerge({sheetId:e,col:r,row:i});return!a||!o?!1:On(a,o)}isInMerge({sheetId:e,col:t,row:n}){let r=this.mergeCellMap[e];return r?t in r&&!!r[t]?.[n]:!1}getMainCellPosition(e){let t=this.getMerge(e);return t?{sheetId:e.sheetId,col:t.left,row:t.top}:e}isMergeHidden(e,t){let n=this.getters.getHiddenColsGroups(e),r=this.getters.getHiddenRowsGroups(e);for(let e of n)if(t.left>=e[0]&&t.right<=e[e.length-1])return!0;for(let e of r)if(t.top>=e[0]&&t.bottom<=e[e.length-1])return!0;return!1}isSingleCellOrMerge(e,t){let n=this.getMerge({sheetId:e,col:t.left,row:t.top});if(n)return On(t,n);let{numberOfCols:r,numberOfRows:i}=Nn(t);return r===1&&i===1}isMainCellPosition(e){return T(this.getMainCellPosition(e),e)}isMergeDestructive(e,t){let{left:n,right:r,top:i,bottom:a}=t;r=S(r,0,this.getters.getNumberCols(e)-1),a=S(a,0,this.getters.getNumberRows(e)-1);for(let t=i;t<=a;t++)for(let a=n;a<=r;a++)if(a!==n||t!==i){let n=this.getters.getCell({sheetId:e,col:a,row:t});if(n&&(n.isFormula||n.content!==``))return!0}return!1}getMergeById(e,t){let n=this.merges[e]?.[t];return n===void 0?void 0:tL(t,n)}checkDestructiveMerge({sheetId:e,target:t}){return this.getters.tryGetSheet(e)&&t.some(t=>this.isMergeDestructive(e,t))?H.MergeIsDestructive:H.Success}checkOverlap({target:e}){for(let t of e)for(let n of e)if(t!==n&&kn(t,n))return H.MergeOverlap;return H.Success}checkFrozenPanes({sheetId:e,target:t}){if(!this.getters.tryGetSheet(e))return H.Success;let{xSplit:n,ySplit:r}=this.getters.getPaneDivisions(e);return Jn(t,n,r)?H.FrozenPaneOverlap:H.Success}checkMergedContentUpdate(e){let{col:t,row:n,content:r}=e;if(r===void 0)return H.Success;let{col:i,row:a}=this.getMainCellPosition(e);return i===t&&a===n?H.Success:H.CellIsMerged}checkMergeExists(e){let{sheetId:t,target:n}=e;for(let e of n){let{left:n,top:r}=e,i=this.getMerge({sheetId:t,col:n,row:r});if(i===void 0||!On(e,i))return H.InvalidTarget}return H.Success}addMerge(e,t){let{left:n,right:r,top:i,bottom:a}=t;if(r=S(r,0,this.getters.getNumberCols(e)-1),a=S(a,0,this.getters.getNumberRows(e)-1),E(n,i)===E(r,a))return;let o=this.getters.getCell({sheetId:e,col:n,row:i}),s=this.nextId++;this.history.update(`merges`,e,s,this.getters.getRangeFromSheetXC(e,bn({left:n,top:i,right:r,bottom:a})));let c=new Set;for(let t=i;t<=a;t++)for(let a=n;a<=r;a++){(a!==n||t!==i)&&this.dispatch(`UPDATE_CELL`,{sheetId:e,col:a,row:t,style:o?o.style:null,content:``});let r=this.getMerge({sheetId:e,col:a,row:t});r&&c.add(r.id),this.history.update(`mergeCellMap`,e,a,t,s)}for(let t of c){let{top:n,bottom:r,left:i,right:a}=this.getMergeById(e,t);for(let t=n;t<=r;t++)for(let n=i;n<=a;n++){let r={sheetId:e,col:n,row:t},i=this.getMerge(r);(!i||i.id!==s)&&(this.history.update(`mergeCellMap`,e,n,t,void 0),this.dispatch(`CLEAR_CELL`,r))}this.history.update(`merges`,e,t,void 0)}}removeMerge(e,t){let{left:n,top:r,bottom:i,right:a}=t,o=this.getMerge({sheetId:e,col:n,row:r});if(!(o===void 0||!On(t,o))){this.history.update(`merges`,e,o.id,void 0);for(let t=r;t<=i;t++)for(let r=n;r<=a;r++)this.history.update(`mergeCellMap`,e,r,t,void 0)}}applyRangeChangeOnSheet(e,{applyChange:t}){let n=Object.entries(this.merges[e]||{});for(let[r,i]of n)if(i){let n=i.zone,a=t(i);switch(a.changeType){case`NONE`:break;case`REMOVE`:this.removeMerge(e,n);break;default:let{numberOfCols:t,numberOfRows:i}=Nn(a.range.zone);t===1&&i===1?this.removeMerge(e,n):this.history.update(`merges`,e,parseInt(r,10),a.range);break}}this.history.update(`mergeCellMap`,e,{});for(let t of this.getMerges(e))for(let{col:n,row:r}of In(t))this.history.update(`mergeCellMap`,e,n,r,t.id)}import(e){let t=e.sheets||[];for(let e of t)this.history.update(`merges`,e.id,{}),this.history.update(`mergeCellMap`,e.id,{}),e.merges&&this.importMerges(e.id,e.merges)}importMerges(e,t){for(let n of t)this.addMerge(e,hn(n))}export(e){for(let t of e.sheets){let e=this.merges[t.id];e&&t.merges.push(...eL(e))}}exportForExcel(e){this.export(e)}};function eL(e){return Object.entries(e).map(([e,t])=>t?tL(parseInt(e,10),t):void 0).filter(w).map(e=>E(e.left,e.top)+`:`+E(e.right,e.bottom))}function tL(e,t){return{...t.zone,id:e}}var nL=class extends Bg{static getters=[`getPivotCoreDefinition`,`getPivotDisplayName`,`getPivotId`,`getPivotFormulaId`,`getPivotIds`,`getMeasureCompiledFormula`,`getPivotName`,`isExistingPivot`,`getMeasureFullDependencies`];nextFormulaId=1;pivots={};formulaIds={};compiledMeasureFormulas={};allowDispatch(e){switch(e.type){case`ADD_PIVOT`:return e.pivotId in this.pivots?H.PivotIdTaken:this.checkValidations(e.pivot,this.checkDuplicatedMeasureIds,this.checkSortedColumnInMeasures,this.checkCustomFieldsAreValid);case`UPDATE_PIVOT`:return e.pivotId in this.pivots?T(e.pivot,this.pivots[e.pivotId]?.definition)?H.NoChanges:e.pivot.name===``?H.EmptyName:this.checkValidations(e.pivot,this.checkDuplicatedMeasureIds,this.checkSortedColumnInMeasures,this.checkCustomFieldsAreValid):H.PivotIdNotFound;case`RENAME_PIVOT`:if(!(e.pivotId in this.pivots))return H.PivotIdNotFound;if(e.name===``)return H.EmptyName;break;case`REMOVE_PIVOT`:case`DUPLICATE_PIVOT`:case`INSERT_PIVOT`:if(!(e.pivotId in this.pivots))return H.PivotIdNotFound;break;case`DUPLICATE_PIVOT`:if(!(e.pivotId in this.pivots))return H.PivotIdNotFound}return H.Success}handle(e){switch(e.type){case`ADD_PIVOT`:{let{pivotId:t,pivot:n}=e;this.addPivot(t,n);break}case`INSERT_PIVOT`:{let{sheetId:t,col:n,row:r,pivotId:i,table:a}=e,o={sheetId:t,col:n,row:r},{cols:s,rows:c,measures:l,fieldsType:u}=a,d=new Vj(s,c,l,u||{}),f=this.getPivotFormulaId(i);this.insertPivot(o,f,d);break}case`RENAME_PIVOT`:this.history.update(`pivots`,e.pivotId,`definition`,`name`,e.name);break;case`REMOVE_PIVOT`:{let t={...this.pivots};delete t[e.pivotId];let n=this.getPivotFormulaId(e.pivotId);this.history.update(`formulaIds`,n,void 0),this.history.update(`pivots`,t);break}case`DUPLICATE_PIVOT`:{let{pivotId:t,newPivotId:n}=e,r=x(this.getPivotCore(t).definition);r.name=e.duplicatedPivotName??r.name+` (copy)`,this.addPivot(n,r);break}case`UPDATE_PIVOT`:this.history.update(`pivots`,e.pivotId,`definition`,x(e.pivot)),this.compileCalculatedMeasures(e.pivotId,e.pivot.measures);break;case`CREATE_NAMED_RANGE`:case`UPDATE_NAMED_RANGE`:case`DELETE_NAMED_RANGE`:for(let e in this.pivots){let t=this.pivots[e];t&&this.compileCalculatedMeasures(e,t.definition.measures)}}}adaptRanges(e){let{applyChange:t,adaptFormulaString:n}=e;for(let e in this.pivots){let n=x(this.pivots[e]?.definition);if(!n)continue;let r=eM.get(n.type)?.adaptRanges?.(this.getters,n,t);r&&!T(n,r)&&this.history.update(`pivots`,e,`definition`,r)}for(let r in this.compiledMeasureFormulas)for(let i in this.compiledMeasureFormulas[r]){let a=this.pivots[r]?.definition.measures.find(e=>e.id===i);if(!a||!a.computedBy)continue;let o=a.computedBy.sheetId,{formula:s,dependencies:c}=this.compiledMeasureFormulas[r][i],l=e.adaptCompiledFormula(s);l!==s&&this.history.update(`compiledMeasureFormulas`,r,i,`formula`,l),this.history.update(`compiledMeasureFormulas`,r,a.id,`dependencies`,c.map(e=>t(e).range));let u=a.computedBy.formula,d=n(o,u);d!==u&&this.replaceMeasureFormula(r,a,d)}}getPivotDisplayName(e){return`(#${this.getPivotFormulaId(e)}) ${this.getPivotName(e)}`}getPivotName(e){return this.getPivotCore(e).definition.name}getPivotCoreDefinition(e){return this.getPivotCore(e).definition}getPivotId(e){return this.formulaIds[e]}getPivotFormulaId(e){return this.getPivotCore(e).formulaId}getPivotIds(){return Object.keys(this.pivots)}isExistingPivot(e){return e in this.pivots}getMeasureCompiledFormula(e,t){if(!t.computedBy)throw Error(`Measure ${t.fieldName} is not computed by formula`);return this.compiledMeasureFormulas[e][t.id].formula}getMeasureFullDependencies(e,t){if(!t.computedBy)throw Error(`Measure ${t.fieldName} is not computed by formula`);return this.compiledMeasureFormulas[e][t.id].dependencies}addPivot(e,t,n=this.nextFormulaId.toString()){this.history.update(`pivots`,e,{definition:x(t),formulaId:n}),this.compileCalculatedMeasures(e,t.measures),this.history.update(`formulaIds`,n,e),this.history.update(`nextFormulaId`,this.nextFormulaId+1)}compileCalculatedMeasures(e,t){for(let n of t)if(n.computedBy){let t=bl.Compile(n.computedBy.formula,n.computedBy.sheetId,this.getters);this.history.update(`compiledMeasureFormulas`,e,n.id,`formula`,t)}for(let n of t)if(n.computedBy){let t=this.computeMeasureFullDependencies(e,n);this.history.update(`compiledMeasureFormulas`,e,n.id,`dependencies`,t)}}computeMeasureFullDependencies(e,t,n=new Set){let r=[],i=this.getPivotCoreDefinition(e),a=this.getMeasureCompiledFormula(e,t);n.add(t.id);for(let o of a.symbols){let a=i.measures.find(e=>Ze(e.id)===o&&t.id!==e.id);!a||n.has(a.id)||!a.computedBy||r.push(...this.computeMeasureFullDependencies(e,a,n))}return r.push(...a.rangeDependencies.filter(e=>!e.invalidXc)),r.push(...a.getNamedRangesInFormula(this.getters).map(e=>e.range)),r}insertPivot(e,t,n){this.resizeSheet(e.sheetId,e,n);let r=n.getPivotCells();for(let n=0;n<r.length;n++)for(let i=0;i<r[n].length;i++){let a=r[n][i];this.dispatch(`UPDATE_CELL`,{sheetId:e.sheetId,col:e.col+n,row:e.row+i,content:zx(t,a)})}}resizeSheet(e,{col:t,row:n},r){let i=r.getNumberOfDataColumns()+1,a=this.getters.getNumberCols(e),o=a-t;o<i&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`COL`,base:a-1,sheetId:e,sheetName:this.getters.getSheetName(e),quantity:i-o,position:`after`});let s=r.columns.length+r.rows.length,c=this.getters.getNumberRows(e),l=c-n;l<s&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`ROW`,base:c-1,sheetId:e,sheetName:this.getters.getSheetName(e),quantity:s-l,position:`after`})}getPivotCore(e){let t=this.pivots[e];if(!t)throw Error(`Pivot with id ${e} not found`);return t}replaceMeasureFormula(e,t,n){let r=this.pivots[e];if(!r)return;let i=r.definition.measures.indexOf(t);this.history.update(`pivots`,e,`definition`,`measures`,i,`computedBy`,{formula:n,sheetId:t.computedBy.sheetId})}checkSortedColumnInMeasures(e){let t=e.measures.map(e=>e.id);return e.sortedColumn&&!t.includes(e.sortedColumn.measure)?H.InvalidDefinition:H.Success}checkDuplicatedMeasureIds(e){let t=new Set(e.measures.map(e=>e.id));return e.measures.length===t.size?H.Success:H.InvalidDefinition}checkCustomFieldsAreValid(e){for(let t in e.customFields){let n=e.customFields[t],r=new Set,i=new Set,a=!1;for(let e of n.groups){if(!e.name||i.has(e.name)||e.values.some(e=>r.has(e))||e.isOtherGroup&&a)return H.InvalidPivotCustomField;e.values.forEach(e=>r.add(e)),i.add(e.name),a||=!!e.isOtherGroup}}return H.Success}import(e){if(e.pivots)for(let[t,n]of Object.entries(e.pivots))this.addPivot(t,n,n.formulaId);this.history.update(`nextFormulaId`,e.pivotNextId||Mx(this.pivots)+1)}export(e){e.pivots={};for(let t in this.pivots)e.pivots[t]={...this.getPivotCoreDefinition(t),formulaId:this.getPivotFormulaId(t)};e.pivotNextId=this.nextFormulaId}},rL=class extends Bg{static getters=[`getLocale`];locale=L;allowDispatch(e){switch(e.type){case`UPDATE_LOCALE`:return yg(e.locale)?H.Success:H.InvalidLocale}return H.Success}handle(e){switch(e.type){case`UPDATE_LOCALE`:let t=this.locale,n=e.locale;this.history.update(`locale`,n),this.changeCellsDateFormatWithLocale(t,n);break}}getLocale(){return this.locale}changeCellsDateFormatWithLocale(e,t){for(let n of this.getters.getSheetIds())for(let r of this.getters.getCells(n)){let n;if(r.format===e.dateFormat&&(n=t.dateFormat),r.format===e.timeFormat&&(n=t.timeFormat),r.format===Ig(e)&&(n=Ig(t)),n){let{col:e,row:t,sheetId:i}=this.getters.getCellPosition(r.id);this.dispatch(`UPDATE_CELL`,{col:e,row:t,sheetId:i,format:n})}}}import(e){this.locale=e.settings?.locale??L}export(e){e.settings={locale:this.locale}}},iL=class extends Bg{static getters=`getSheetName.tryGetSheetName.getSheet.tryGetSheet.getSheetIdByName.getSheetIds.getVisibleSheetIds.isSheetVisible.doesHeaderExist.doesHeadersExist.getCell.getCellPosition.getColsZone.getRowCellIds.getRowsZone.getNumberCols.getNumberRows.getNumberHeaders.getGridLinesVisibility.getNextSheetName.getSheetSize.getSheetZone.getPaneDivisions.checkZonesExistInSheet.getCommandZones.getUnboundedZone.checkElementsIncludeAllNonFrozenHeaders.getDuplicateSheetName.tryGetCellPosition.isSheetLocked`.split(`.`);sheetIdsMapName={};orderedSheetIds=[];sheets={};cellPosition={};allowDispatch(e){let t=this.chainValidations(this.checkSheetExists,this.checkZonesAreInSheet)(e);if(t!==H.Success)return t;let n=!1;switch(e.type){case`CREATE_SHEET`:e.name===void 0&&(n=!0);break;case`DELETE_SHEET`:case`ADD_COLUMNS_ROWS`:case`REMOVE_COLUMNS_ROWS`:case`MOVE_RANGES`:e.sheetName===void 0&&(n=!0);break}switch(n&&console.warn(`Deprecation Warning: Sheet name is missing in the command %s payload.`,e.type),e.type){case`HIDE_SHEET`:return this.getVisibleSheetIds().length===1?H.NotEnoughSheets:H.Success;case`CREATE_SHEET`:return this.checkValidations(e,this.createSheetHasName,this.checkSheetName,this.checkSheetPosition);case`DUPLICATE_SHEET`:return this.sheets[e.sheetIdTo]?H.DuplicatedSheetId:this.orderedSheetIds.map(this.getSheetName.bind(this)).includes(e.sheetNameTo)?H.DuplicatedSheetName:H.Success;case`MOVE_SHEET`:try{let t=this.orderedSheetIds.findIndex(t=>t===e.sheetId);return this.findIndexOfTargetSheet(t,e.delta),H.Success}catch{return H.WrongSheetMove}case`RENAME_SHEET`:return this.isRenameAllowed(e);case`COLOR_SHEET`:return!e.color||td(e.color)?H.Success:H.InvalidColor;case`DELETE_SHEET`:return this.getVisibleSheetIds().length>1?H.Success:H.NotEnoughSheets;case`ADD_COLUMNS_ROWS`:return this.doesHeaderExist(e.sheetId,e.dimension,e.base)?e.quantity<=0?H.InvalidQuantity:H.Success:H.InvalidHeaderIndex;case`REMOVE_COLUMNS_ROWS`:{let t=Rt(e.elements),n=Lt(e.elements);return t<0||!this.doesHeaderExist(e.sheetId,e.dimension,n)?H.InvalidHeaderIndex:this.checkElementsIncludeAllNonFrozenHeaders(e.sheetId,e.dimension,e.elements)?H.NotEnoughElements:H.Success}case`FREEZE_ROWS`:return this.checkValidations(e,this.checkRowFreezeQuantity,this.checkRowFreezeOverlapMerge);case`FREEZE_COLUMNS`:return this.checkValidations(e,this.checkColFreezeQuantity,this.checkColFreezeOverlapMerge);default:return H.Success}}handle(e){switch(e.type){case`SET_GRID_LINES_VISIBILITY`:this.setGridLinesVisibility(e.sheetId,e.areGridLinesVisible);break;case`CREATE_SHEET`:let t=this.createSheet(e.sheetId,e.name||this.getNextSheetName(),e.cols||26,e.rows||100,e.position);this.history.update(`sheetIdsMapName`,nl(t.name),t.id);break;case`MOVE_SHEET`:this.moveSheet(e.sheetId,e.delta);break;case`RENAME_SHEET`:this.renameSheet(this.sheets[e.sheetId],e.newName);break;case`COLOR_SHEET`:this.history.update(`sheets`,e.sheetId,`color`,e.color);break;case`HIDE_SHEET`:this.hideSheet(e.sheetId);break;case`SHOW_SHEET`:this.showSheet(e.sheetId);break;case`DUPLICATE_SHEET`:this.duplicateSheet(e.sheetId,e.sheetIdTo,e.sheetNameTo);break;case`DELETE_SHEET`:this.deleteSheet(this.sheets[e.sheetId]);break;case`REMOVE_COLUMNS_ROWS`:e.dimension===`COL`?this.removeColumns(this.sheets[e.sheetId],[...e.elements]):this.removeRows(this.sheets[e.sheetId],[...e.elements]);break;case`ADD_COLUMNS_ROWS`:e.dimension===`COL`?this.addColumns(this.sheets[e.sheetId],e.base,e.position,e.quantity):this.addRows(this.sheets[e.sheetId],e.base,e.position,e.quantity);break;case`UPDATE_CELL_POSITION`:this.updateCellPosition(e);break;case`FREEZE_COLUMNS`:this.setPaneDivisions(e.sheetId,e.quantity,`COL`);break;case`FREEZE_ROWS`:this.setPaneDivisions(e.sheetId,e.quantity,`ROW`);break;case`UNFREEZE_ROWS`:this.setPaneDivisions(e.sheetId,0,`ROW`);break;case`UNFREEZE_COLUMNS`:this.setPaneDivisions(e.sheetId,0,`COL`);break;case`UNFREEZE_COLUMNS_ROWS`:this.setPaneDivisions(e.sheetId,0,`COL`),this.setPaneDivisions(e.sheetId,0,`ROW`);break;case`LOCK_SHEET`:this.history.update(`sheets`,e.sheetId,`isLocked`,!0);break;case`UNLOCK_SHEET`:this.history.update(`sheets`,e.sheetId,`isLocked`,!1);break}}import(e){for(let t of e.sheets)this.sheetIdsMapName[nl(t.name)]=t.id;for(let t of e.sheets){let e=t.name||`Sheet`+(Object.keys(this.sheets).length+1),{colNumber:n,rowNumber:r}=this.getImportedSheetSize(t),i={id:t.id,name:e,numberOfCols:n,rows:Zc(r),areGridLinesVisible:t.areGridLinesVisible===void 0?!0:t.areGridLinesVisible,isVisible:t.isVisible,panes:{xSplit:t.panes?.xSplit||0,ySplit:t.panes?.ySplit||0},color:t.color,isLocked:t.isLocked};this.orderedSheetIds.push(i.id),this.sheets[i.id]=i}}exportSheets(e){e.sheets=this.orderedSheetIds.filter(w).map(e=>{let t=this.sheets[e],n={id:t.id,name:t.name,colNumber:t.numberOfCols,rowNumber:this.getters.getNumberRows(t.id),rows:{},cols:{},merges:[],cells:{},styles:{},formats:{},borders:{},conditionalFormats:[],dataValidationRules:[],figures:[],tables:[],areGridLinesVisible:t.areGridLinesVisible===void 0?!0:t.areGridLinesVisible,isVisible:t.isVisible,isLocked:t.isLocked,color:t.color};return(t.panes.xSplit||t.panes.ySplit)&&(n.panes=t.panes),n})}export(e){this.exportSheets(e)}exportForExcel(e){this.exportSheets(e)}getGridLinesVisibility(e){return this.getSheet(e).areGridLinesVisible}isSheetLocked(e){return this.tryGetSheet(e)?.isLocked||!1}tryGetSheet(e){return this.sheets[e]}getSheet(e){let t=this.sheets[e];if(!t)throw Error(`Sheet ${e} not found.`);return t}isSheetVisible(e){return this.getSheet(e).isVisible}getSheetName(e){return this.getSheet(e).name}tryGetSheetName(e){return this.tryGetSheet(e)?.name}getSheetIdByName(e){if(e)return this.sheetIdsMapName[nl(e)]}getSheetIds(){return this.orderedSheetIds}getVisibleSheetIds(){return this.orderedSheetIds.filter(this.isSheetVisible.bind(this))}doesHeaderExist(e,t,n){return t===`COL`?n>=0&&n<this.getNumberCols(e):n>=0&&n<this.getNumberRows(e)}doesHeadersExist(e,t,n){return n.every(n=>this.doesHeaderExist(e,t,n))}getCell({sheetId:e,col:t,row:n}){let r=this.tryGetSheet(e)?.rows[n]?.cells[t];if(r!==void 0)return this.getters.getCellById(r)}getColsZone(e,t,n){return{top:0,bottom:this.getNumberRows(e)-1,left:t,right:n}}getRowCellIds(e,t){return Object.values(this.getSheet(e).rows[t]?.cells).filter(w)}getRowsZone(e,t,n){return{top:t,bottom:n,left:0,right:this.getSheet(e).numberOfCols-1}}getCellPosition(e){let t=this.cellPosition[e];if(!t)throw Error(`asking for a cell position that doesn't exist, cell id: ${e}`);return t}tryGetCellPosition(e){return this.cellPosition[e]}getNumberCols(e){return this.getSheet(e).numberOfCols}getNumberRows(e){return this.getSheet(e).rows.length}getNumberHeaders(e,t){return t===`COL`?this.getNumberCols(e):this.getNumberRows(e)}getNextSheetName(e=`Sheet`){return el(this.orderedSheetIds.map(this.getSheetName.bind(this)),e)}getSheetSize(e){return{numberOfRows:this.getNumberRows(e),numberOfCols:this.getNumberCols(e)}}getSheetZone(e){return{top:0,left:0,bottom:this.getNumberRows(e)-1,right:this.getNumberCols(e)-1}}getUnboundedZone(e,t){if(t.bottom===void 0||t.right===void 0)return t;let n=t.left===0&&t.right===this.getNumberCols(e)-1,r=t.top===0&&t.bottom===this.getNumberRows(e)-1;return{...t,bottom:r?void 0:t.bottom,right:n&&!r?void 0:t.right}}getPaneDivisions(e){return this.getSheet(e).panes}setPaneDivisions(e,t,n){let r={...this.getPaneDivisions(e)};n===`COL`?r.xSplit=t:n===`ROW`&&(r.ySplit=t),this.history.update(`sheets`,e,`panes`,r)}checkElementsIncludeAllNonFrozenHeaders(e,t,n){let r=this.getters.getPaneDivisions(e),i=t===`ROW`?r.ySplit:r.xSplit,a=this.getters.getNumberHeaders(e,t);return i?St(n,C(i,a)):!1}getCommandZones(e){let t=[];return`zone`in e&&t.push(e.zone),`target`in e&&t.push(...e.target),`ranges`in e&&t.push(...e.ranges.map(e=>this.getters.getRangeFromRangeData(e).zone)),`col`in e&&e.col!==void 0&&`row`in e&&e.row!==void 0&&t.push({top:e.row,left:e.col,bottom:e.row,right:e.col}),t}checkZonesExistInSheet(e,t){if(!t.every(vn))return H.InvalidRange;if(t.length){let n=this.getSheetZone(e);return t.every(e=>Mn(e,n))?H.Success:H.TargetOutOfSheet}return H.Success}updateCellPosition(e){let{sheetId:t,cellId:n,col:r,row:i}=e;n?this.setNewPosition(n,t,r,i):this.clearPosition(t,r,i)}setNewPosition(e,t,n,r){let i=this.cellPosition[e];i&&this.clearPosition(t,i.col,i.row),this.history.update(`cellPosition`,e,{row:r,col:n,sheetId:t}),this.history.update(`sheets`,t,`rows`,r,`cells`,n,e)}clearPosition(e,t,n){let r=this.sheets[e]?.rows[n].cells[t];r&&(this.history.update(`cellPosition`,r,void 0),this.history.update(`sheets`,e,`rows`,n,`cells`,t,void 0))}setGridLinesVisibility(e,t){this.history.update(`sheets`,e,`areGridLinesVisible`,t)}createSheet(e,t,n,r,i){let a={id:e,name:t,numberOfCols:n,rows:Zc(r),areGridLinesVisible:!0,isVisible:!0,panes:{xSplit:0,ySplit:0},isLocked:!1},o=this.orderedSheetIds.slice();o.splice(i,0,a.id);let s=this.sheets;return this.history.update(`orderedSheetIds`,o),this.history.update(`sheets`,Object.assign({},s,{[a.id]:a})),a}moveSheet(e,t){let n=this.orderedSheetIds.slice(),r=n.findIndex(t=>t===e),i=n.splice(r,1),a=this.findIndexOfTargetSheet(r,t);n.splice(a,0,i[0]),this.history.update(`orderedSheetIds`,n)}findIndexOfTargetSheet(e,t){for(;t!==0&&0<=e&&e<=this.orderedSheetIds.length;)t>0?(e++,this.isSheetVisible(this.orderedSheetIds[e])&&t--):t<0&&(e--,this.isSheetVisible(this.orderedSheetIds[e])&&t++);if(t===0)return e;throw Error(`There is not enough visible sheets`)}createSheetHasName(e){return e.name!==void 0&&!e.name.trim()?H.MissingSheetName:H.Success}checkSheetName(e){let t=this.getters.tryGetSheetName(e.sheetId),n=e.type===`RENAME_SHEET`?e.newName:e.name;if(t!==void 0&&n===t)return H.UnchangedSheetName;let{orderedSheetIds:r,sheets:i}=this,a=n&&n.trim().toLowerCase();return r.find(t=>rl(i[t]?.name,a)&&t!==e.sheetId)?H.DuplicatedSheetName:Ae.test(a)?H.ForbiddenCharactersInSheetName:H.Success}checkSheetPosition(e){let{orderedSheetIds:t}=this;return e.position>t.length||e.position<0?H.WrongSheetPosition:H.Success}checkRowFreezeQuantity(e){return e.quantity>=1&&e.quantity<this.getNumberRows(e.sheetId)?H.Success:H.InvalidFreezeQuantity}checkColFreezeQuantity(e){return e.quantity>=1&&e.quantity<this.getNumberCols(e.sheetId)?H.Success:H.InvalidFreezeQuantity}checkRowFreezeOverlapMerge(e){let t=this.getters.getMerges(e.sheetId);for(let n of t)if(n.top<e.quantity&&e.quantity<=n.bottom)return H.MergeOverlap;return H.Success}checkColFreezeOverlapMerge(e){let t=this.getters.getMerges(e.sheetId);for(let n of t)if(n.left<e.quantity&&e.quantity<=n.right)return H.MergeOverlap;return H.Success}isRenameAllowed(e){return e.newName&&e.newName.trim().toLowerCase()?this.checkSheetName(e):H.MissingSheetName}renameSheet(e,t){let n=e.name;this.history.update(`sheets`,e.id,`name`,t.trim());let r=Object.assign({},this.sheetIdsMapName);delete r[nl(n)],r[nl(t)]=e.id,this.history.update(`sheetIdsMapName`,r)}hideSheet(e){this.history.update(`sheets`,e,`isVisible`,!1)}showSheet(e){this.history.update(`sheets`,e,`isVisible`,!0)}duplicateSheet(e,t,n){let r=x(this.getSheet(e));r.id=t,r.name=n,r.isLocked=!1;for(let e=0;e<=r.numberOfCols;e++)for(let t=0;t<=r.rows.length;t++)r.rows[t]&&(r.rows[t].cells[e]=void 0);let i=this.orderedSheetIds.slice(),a=i.indexOf(e);i.splice(a+1,0,r.id),this.history.update(`orderedSheetIds`,i),this.history.update(`sheets`,Object.assign({},this.sheets,{[r.id]:r}));for(let t of Object.values(this.getters.getCells(e))){let{col:e,row:n}=this.getCellPosition(t.id);this.dispatch(`UPDATE_CELL`,{sheetId:r.id,col:e,row:n,content:t.isFormula?t.compiledFormula.toFormulaString(this.getters):t.content,format:t.format,style:t.style})}let o=Object.assign({},this.sheetIdsMapName);o[nl(r.name)]=r.id,this.history.update(`sheetIdsMapName`,o)}getDuplicateSheetName(e){return tl(e,this.orderedSheetIds.map(this.getSheetName.bind(this)))}deleteSheet(e){let t=e.name,n=Object.assign({},this.sheets);delete n[e.id],this.history.update(`sheets`,n);let r=this.orderedSheetIds.slice(),i=r.indexOf(e.id);r.splice(i,1),this.history.update(`orderedSheetIds`,r);let a=Object.assign({},this.sheetIdsMapName);delete a[nl(t)],this.history.update(`sheetIdsMapName`,a)}removeColumns(e,t){t.sort((e,t)=>t-e);for(let n of t)this.moveCellOnColumnsDeletion(e,n);let n=this.sheets[e.id].numberOfCols;this.history.update(`sheets`,e.id,`numberOfCols`,n-t.length);let r=t.filter(t=>t<e.panes.xSplit).length;r&&this.setPaneDivisions(e.id,e.panes.xSplit-r,`COL`)}removeRows(e,t){t.sort((e,t)=>t-e);for(let n of $e(t)){let t=n[n.length-1],r=n[0];this.moveCellOnRowsDeletion(e,t,r),this.updateRowsStructureOnDeletion(e,t,r)}let n=t.filter(t=>t<e.panes.ySplit).length;n&&this.setPaneDivisions(e.id,e.panes.ySplit-n,`ROW`)}addColumns(e,t,n,r){let i=n===`before`?t:t+1;this.moveCellsOnAddition(e,i,r,`columns`);let a=this.sheets[e.id].numberOfCols;this.history.update(`sheets`,e.id,`numberOfCols`,a+r),i<e.panes.xSplit&&this.setPaneDivisions(e.id,e.panes.xSplit+r,`COL`)}addRows(e,t,n,r){let i=n===`before`?t:t+1;this.addEmptyRows(e,r),this.moveCellsOnAddition(e,i,r,`rows`),i<e.panes.ySplit&&this.setPaneDivisions(e.id,e.panes.ySplit+r,`ROW`)}moveCellOnColumnsDeletion(e,t){this.dispatch(`CLEAR_CELLS`,{sheetId:e.id,target:[{left:t,top:0,right:t,bottom:e.rows.length-1}]});for(let n=0;n<e.rows.length;n++){let r=e.rows[n];for(let i in r.cells){let a=Number(i),o=r.cells[i];o&&a>t&&this.setNewPosition(o,e.id,a-1,n)}}}moveCellsOnAddition(e,t,n,r){let i=[];for(let a=0;a<e.rows.length;a++){let o=e.rows[a];if(r!==`rows`||a>=t)for(let s in o.cells){let c=Number(s),l=o.cells[s];l&&(r===`rows`||c>=t)&&i.push({sheetId:e.id,cellId:l,col:c+(r===`columns`?n:0),row:a+(r===`rows`?n:0),type:`UPDATE_CELL_POSITION`})}}for(let e of i.reverse())this.updateCellPosition(e)}moveCellOnRowsDeletion(e,t,n){this.dispatch(`CLEAR_CELLS`,{sheetId:e.id,target:[{left:0,top:t,right:this.getters.getNumberCols(e.id),bottom:n}]});let r=n-t+1;for(let t=0;t<e.rows.length;t++){let i=e.rows[t];if(t>n)for(let n in i.cells){let a=Number(n),o=i.cells[n];o&&this.setNewPosition(o,e.id,a,t-r)}}}updateRowsStructureOnDeletion(e,t,n){let r=[],i=e.rows.map(e=>e.cells).reverse();for(let a in e.rows){let e=Number(a);e>=t&&e<=n||r.push({cells:i.pop()})}this.history.update(`sheets`,e.id,`rows`,r)}addEmptyRows(e,t){let n=e.rows.slice();for(let e=0;e<t;e++)n.push({cells:{}});this.history.update(`sheets`,e.id,`rows`,n)}getImportedSheetSize(e){let t=Object.keys(e.cells).map(hn),n=e.rowNumber,r=e.colNumber;for(let{right:e,bottom:i}of t)n=Math.max(n,i+1),r=Math.max(r,e+1);return{rowNumber:n,colNumber:r}}checkSheetExists(e){return e.type!==`CREATE_SHEET`&&`sheetId`in e&&this.sheets[e.sheetId]===void 0?H.InvalidSheetId:e.type===`CREATE_SHEET`&&this.sheets[e.sheetId]!==void 0?H.DuplicatedSheetId:H.Success}checkZonesAreInSheet(e){return Al(e)&&e.ranges.length===0?H.EmptyRange:`sheetId`in e?`ranges`in e&&e.ranges.some(e=>e._sheetId!==``&&!this.getters.tryGetSheet(e._sheetId))?H.InvalidSheetId:kl(e)&&e.target.length===0?H.EmptyTarget:this.checkZonesExistInSheet(e.sheetId,this.getCommandZones(e)):H.Success}},aL=class extends Bg{allowDispatch(e){switch(e.type){case`ADD_PIVOT`:case`UPDATE_PIVOT`:let t=e.pivot;return this.checkDataSetValidity(t)}return H.Success}checkDataSetValidity(e){if(e.type===`SPREADSHEET`&&e.dataSet){let{zone:t,sheetId:n}=e.dataSet;return!n||!this.getters.tryGetSheet(n)||!t||!vn(t)?H.InvalidDataSet:this.getters.checkZonesExistInSheet(n,[t])}return H.Success}},oL=class extends Bg{static getters=[`getNewCustomTableStyleName`,`getTableStyle`,`getTableStyles`,`isTableStyleEditable`];styles={};allowDispatch(e){switch(e.type){case`CREATE_TABLE`:case`UPDATE_TABLE`:if(e.config?.styleId&&!this.styles[e.config.styleId])return H.InvalidTableConfig;break;case`CREATE_TABLE_STYLE`:if(!Ky[e.templateName])return H.InvalidTableStyle;try{ed(e.primaryColor)}catch{return H.InvalidTableStyle}break}return H.Success}handle(e){switch(e.type){case`CREATE_TABLE_STYLE`:let t=qy(e.tableStyleName,e.templateName,e.primaryColor);this.history.update(`styles`,e.tableStyleId,t);break;case`REMOVE_TABLE_STYLE`:let n={...this.styles};delete n[e.tableStyleId],this.history.update(`styles`,n);for(let t of this.getters.getSheetIds())for(let n of this.getters.getCoreTables(t))n.config.styleId===e.tableStyleId&&this.dispatch(`UPDATE_TABLE`,{sheetId:t,zone:n.range.zone,config:{styleId:Ay.styleId}});break}}getTableStyle(e){if(DM[e])return DM[e];if(!this.styles[e])throw Error(`Table style ${e} does not exist`);return this.styles[e]}getTableStyles(){return this.styles}getNewCustomTableStyleName(){return Ht(A(`Custom Table Style`),Object.values(this.styles).map(e=>e.displayName),{compute:(e,t)=>`${e} ${t}`,start:2})}isTableStyleEditable(e){return!Gy[e]&&!DM[e]}import(e){for(let e in Gy)this.styles[e]=Gy[e];for(let t in e.customTableStyles){let n=e.customTableStyles[t];this.styles[t]=qy(n.displayName,n.templateName,n.primaryColor)}}export(e){let t={};for(let e in this.styles)Gy[e]||(t[e]={displayName:this.styles[e].displayName,templateName:this.styles[e].templateName,primaryColor:this.styles[e].primaryColor});e.customTableStyles=t}},sL=class extends Bg{static getters=[`getCoreTable`,`getCoreTables`,`getCoreTableMatchingTopLeft`];tables={};nextTableId=1;adaptRanges({applyChange:e}){for(let t in this.tables)for(let n of this.getCoreTables(t))this.applyRangeChangeOnTable(t,n,e)}allowDispatch(e){switch(e.type){case`CREATE_TABLE`:if(e.ranges.some(t=>!this.getters.tryGetSheet(t._sheetId)||t._sheetId!==e.sheetId))return H.InvalidSheetId;let t=e.ranges.map(e=>this.getters.getRangeFromRangeData(e).zone);return Xn(t)?this.checkValidations(e,e=>this.getTablesOverlappingZones(e.sheetId,t).length?H.TableOverlap:H.Success,e=>this.checkTableConfigUpdateIsValid(e.config)):H.NonContinuousTargets;case`UPDATE_TABLE`:return this.getCoreTableMatchingTopLeft(e.sheetId,e.zone)?this.checkValidations(e,this.checkUpdatedTableZoneIsValid,e=>this.checkTableConfigUpdateIsValid(e.config)):H.TableNotFound;case`ADD_MERGE`:for(let t of this.getCoreTables(e.sheetId)){let n=t.range.zone;for(let t of e.target)if(kn(n,t))return H.MergeInTable}break}return H.Success}handle(e){switch(e.type){case`CREATE_SHEET`:this.history.update(`tables`,e.sheetId,{});break;case`DELETE_SHEET`:{let t={...this.tables};delete t[e.sheetId],this.history.update(`tables`,t);break}case`DUPLICATE_SHEET`:{let t={};for(let n of this.getCoreTables(e.sheetId))t[n.id]=n.type===`dynamic`?this.copyDynamicTableForSheet(e.sheetIdTo,n):this.copyStaticTableForSheet(e.sheetIdTo,n);this.history.update(`tables`,e.sheetIdTo,t);break}case`CREATE_TABLE`:{let t=e.ranges.map(e=>this.getters.getRangeFromRangeData(e)),n=this.getters.getRangesUnion(t),r=this.getters.getMergesInZone(e.sheetId,n.zone);r.length&&this.dispatch(`REMOVE_MERGE`,{sheetId:e.sheetId,target:r});let i=this.consumeNextId(),a=e.config||Ay,o=e.tableType===`dynamic`?this.createDynamicTable(i,n,a):this.createStaticTable(i,e.tableType,n,a);this.history.update(`tables`,e.sheetId,o.id,o);break}case`REMOVE_TABLE`:{let t={};for(let n of this.getCoreTables(e.sheetId))e.target.every(e=>!Dn(n.range.zone,e))&&(t[n.id]=n);this.history.update(`tables`,e.sheetId,t);break}case`UPDATE_TABLE`:this.updateTable(e);break;case`UPDATE_CELL`:{let t=e.sheetId;for(let n of this.getCoreTables(t)){if(n.type===`dynamic`)continue;let r=this.canUpdateCellCmdExtendTable(e,n);r===`down`?this.extendTableDown(t,n):r===`right`&&this.extendTableRight(t,n)}break}case`DELETE_CONTENT`:{let t={...this.tables[e.sheetId]};for(let n in t){let r=t[n];r&&e.target.some(e=>Mn(r.range.zone,e))&&this.dispatch(`REMOVE_TABLE`,{sheetId:e.sheetId,target:[r.range.zone]})}break}}}getCoreTables(e){return this.tables[e]?Object.values(this.tables[e]).filter(w):[]}getCoreTable({sheetId:e,col:t,row:n}){return this.getCoreTables(e).find(e=>jn(t,n,e.range.zone))}getTablesOverlappingZones(e,t){return this.getCoreTables(e).filter(e=>t.some(t=>kn(e.range.zone,t)))}extendTableDown(e,t){let n=this.getters.extendRange(t.range,`ROW`,1);this.history.update(`tables`,e,t.id,this.updateStaticTable(t,n))}extendTableRight(e,t){let n=this.getters.extendRange(t.range,`COL`,1);this.history.update(`tables`,e,t.id,this.updateStaticTable(t,n))}canUpdateCellCmdExtendTable({content:e,sheetId:t,col:n,row:r},i){if(!e||this.isPivotFormula(e,t))return`none`;let a=i.range.zone,o=`none`;if(a.bottom+1===r&&n>=a.left&&n<=a.right?o=`down`:a.right+1===n&&r>=a.top&&r<=a.bottom&&(o=`right`),o===`none`)return`none`;let s=o===`down`?{...a,bottom:a.bottom+1,top:a.bottom+1}:{...a,right:a.right+1,left:a.right+1};for(let e=s.top;e<=s.bottom;e++)for(let n=s.left;n<=s.right;n++){let r={sheetId:t,col:n,row:e},i=this.getters.getCell(r);if(i?.isFormula||i?.content||this.getters.isInMerge(r)||this.getTablesOverlappingZones(t,[D(r)]).length)return`none`}return o}isPivotFormula(e,t){return e.startsWith(`=`)?aM(bl.Compile(e,t,this.getters),this.getters)?.functionName===`PIVOT`:!1}getCoreTableMatchingTopLeft(e,t){for(let n of this.getCoreTables(e)){let e=n.range.zone;if(e.left===t.left&&e.top===t.top)return n}}checkUpdatedTableZoneIsValid(e){if(!e.newTableRange)return H.Success;let t=this.getters.getRangeFromRangeData(e.newTableRange).zone,n=this.getters.checkZonesExistInSheet(e.sheetId,[t]);if(n!==H.Success)return n;let r=this.getCoreTableMatchingTopLeft(e.sheetId,e.zone);return r?this.getTablesOverlappingZones(e.sheetId,[t]).filter(e=>e.id!==r.id).length?H.TableOverlap:H.Success:H.TableNotFound}checkTableConfigUpdateIsValid(e){return e&&(e.numberOfHeaders!==void 0&&e.numberOfHeaders<0||e.hasFilters&&e.numberOfHeaders===0)?H.InvalidTableConfig:H.Success}createStaticTable(e,t,n,r,i){let a=n.zone;if(!i){i=[];for(let e of C(a.left,a.right+1)){let t={...a,left:e,right:e},o=this.consumeNextId();i.push(this.createFilterFromZone(o,n.sheetId,t,r))}}return{id:e,range:n,filters:i,config:r,type:t}}createDynamicTable(e,t,n){let r=Un(t.zone);return{id:e,range:this.getters.getRangeFromZone(t.sheetId,r),config:n,type:`dynamic`}}updateTable(e){let t=this.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!t)return;let n=e.newTableRange?this.getters.getRangeFromRangeData(e.newTableRange):void 0;if(n){let t=this.getters.getMergesInZone(e.sheetId,n.zone);this.dispatch(`REMOVE_MERGE`,{sheetId:e.sheetId,target:t})}let r=n||t.range,i=this.updateTableConfig(e.config,t.config),a=e.tableType??t.type;if(a===`dynamic`&&t.type!==`dynamic`||a!==`dynamic`&&t.type===`dynamic`){let n=a===`dynamic`?this.createDynamicTable(t.id,r,i):this.createStaticTable(t.id,a,r,i);this.history.update(`tables`,e.sheetId,t.id,n)}else{let n=t.type===`dynamic`?this.updateDynamicTable(t,r,i):this.updateStaticTable(t,r,i,a);this.history.update(`tables`,e.sheetId,t.id,n)}}updateStaticTable(e,t,n,r=e.type){if(r===`dynamic`)throw Error(`Cannot use updateStaticTable to update a dynamic table`);let i=t||e.range,a=i.zone,o=this.updateTableConfig(n,e.config),s=o||e.config,c=[];if(t||o&&`numberOfHeaders`in o)for(let t of C(a.left,a.right+1)){let n=a.top===e.range.zone.top?e.filters.find(e=>e.col===t):void 0,r={...a,left:t,right:t},o=n?.id||this.consumeNextId();c.push(this.createFilterFromZone(o,i.sheetId,r,s))}return{...e,range:i,config:s,filters:c.length?c:e.filters,type:r}}updateDynamicTable(e,t,n){let r=t?this.getters.getRangeFromZone(t.sheetId,Un(t.zone)):e.range,i=n||e.config;return{...e,range:r,config:i}}updateTableConfig(e,t){if(!e)return t;let n={...t,...e};return e.numberOfHeaders===0?n.hasFilters=!1:e.hasFilters===!0&&(n.numberOfHeaders||=1),n}createFilterFromZone(e,t,n,r){return FM(e,this.getters.getRangeFromZone(t,n),r,this.getters.getRangeFromZone)}copyStaticTableForSheet(e,t){let n=this.getters.getRangeFromZone(e,t.range.zone),r=t.filters.map(n=>{let r=this.getters.getRangeFromZone(e,n.rangeWithHeaders.zone);return FM(n.id,r,t.config,this.getters.getRangeFromZone)});return{id:t.id,range:n,filters:r,config:x(t.config),type:t.type}}copyDynamicTableForSheet(e,t){let n=this.getters.getRangeFromZone(e,t.range.zone);return{id:t.id,range:n,config:x(t.config),type:`dynamic`}}applyRangeChangeOnTable(e,t,n){let r=n(t.range),i;switch(r.changeType){case`REMOVE`:this.history.update(`tables`,e,t.id,void 0);return;case`NONE`:return;default:i=r.range}if(t.type===`dynamic`){let n=this.updateDynamicTable(t,i);this.history.update(`tables`,e,t.id,n);return}let a=[];for(let e of t.filters){let r=n(e.rangeWithHeaders);switch(r.changeType){case`REMOVE`:continue;case`NONE`:a.push(e);break;default:let n=r.range,i=FM(e.id,n,t.config,this.getters.getRangeFromZone);a.push(i)}}let o=i.zone;if(a.length<Nn(o).numberOfCols){for(let n=o.left;n<=o.right;n++)if(!a.find(e=>e.col===n)){let r=this.consumeNextId(),i={...o,left:n,right:n};a.push(this.createFilterFromZone(r,e,i,t.config))}a.sort((e,t)=>e.col-t.col)}let s=this.createStaticTable(t.id,t.type,i,t.config,a);this.history.update(`tables`,e,t.id,s)}consumeNextId(){let e=`${this.nextTableId}`;return this.history.update(`nextTableId`,this.nextTableId+1),e}import(e){for(let t of e.sheets)for(let e of t.tables||[]){let n=this.consumeNextId(),r=e.config||Ay,i=this.getters.getRangeFromSheetXC(t.id,e.range),a=e.type||`static`,o=a===`dynamic`?this.createDynamicTable(n,i,r):this.createStaticTable(n,a,i,r);this.history.update(`tables`,t.id,o.id,o)}}export(e){for(let t of e.sheets)for(let e of this.getCoreTables(t.id)){let n={range:bn(e.range.zone),type:e.type};T(e.config,Ay)||(n.config=e.config),t.tables.push(n)}}exportForExcel(e){for(let t of e.sheets)for(let e of this.getCoreTables(t.id)){let n=bn(e.range.zone);t.tables.push({range:n,filters:[],config:e.config})}}};let cL=_s.mapping;function lL(e,t,n){return new uL(e,t,n).getParameters()}var uL=class{evalContext;rangeCache={};constructor(e,t,n){this.getters=t,this.computeCell=n,this.evalContext=Object.assign(Object.create(cL),e,{getters:this.getters,locale:this.getters.getLocale(),getFormulaResult:this.getFormulaResult.bind(this)})}getParameters(){return{referenceDenormalizer:this.refFn.bind(this),ensureRange:this.range.bind(this),evalContext:this.evalContext}}refFn(e){let t=this.getRangeError(e);if(t)return t;let n={sheetId:e.sheetId,col:e.zone.left,row:e.zone.top},r=this.computeCell(n);return r.position?r:{...r,position:n}}range(e){let t=this.getRangeError(e);if(t)return[[t]];let n=e.sheetId,r=e.zone,i=Dn(r,this.getters.getSheetZone(n));if(!i)return[[]];let{top:a,left:o,bottom:s,right:c}=r,l=`${n}-${a}-${o}-${s}-${c}`;if(l in this.rangeCache)return this.rangeCache[l];let u=i.bottom-i.top+1,d=i.right-i.left+1,f=Array(d);for(let e=i.left;e<=i.right;e++){let t=e-i.left;f[t]=Array(u);for(let r=i.top;r<=i.bottom;r++){let a=r-i.top;f[t][a]=this.getFormulaResult({sheetId:n,col:e,row:r})}}return this.rangeCache[l]=f,f}getFormulaResult(e){let t=this.computeCell(e);return t.position?t:{...t,position:e}}getRangeError(e){if(!vn(e.zone))return new Li;if(e.invalidSheetName)return new Li(A(`Invalid sheet name: %s`,e.invalidSheetName))}},dL=class{max;constructor(e,t=null,n=null){this.interval=e,this.left=t,this.right=n,this.max=e.bottom}},fL=class{root=null;buffer=[];insert(e){this.buffer.push(e)}query(e){this.buffer.length&&this.rebuild();let t=[];return this.searchTree(this.root,e,t),t}rebuild(){let e=[];this.inOrderTraversal(this.root,e);let t=this.buffer.sort(pL),n=this.mergeSortedIntervals(e,t);this.bulkLoad(n),this.buffer=[]}compactSortedIntervals(e){let t=e[0],n=[];for(let r=1;r<e.length;r++){let i=e[r];if(i.top===t.top&&i.bottom===t.bottom&&i.dependents.zone.left===t.dependents.zone.left&&i.dependents.zone.right===t.dependents.zone.right&&i.dependents.sheetId===t.dependents.sheetId)if(i.dependents.zone.top-1===t.dependents.zone.bottom)t.dependents.zone.bottom=i.dependents.zone.bottom;else if(i.dependents.zone.top===t.dependents.zone.top&&i.dependents.zone.bottom===t.dependents.zone.bottom)continue;else n.push(t),t=i;else n.push(t),t=i}return n.push(t),n}mergeSortedIntervals(e,t){let n=[],r=0,i=0;for(;r<e.length&&i<t.length;)pL(e[r],t[i])<=0?n.push(e[r++]):n.push(t[i++]);return n.concat(r<e.length?e.slice(r):t.slice(i))}bulkLoad(e){let t=this.compactSortedIntervals(e);this.root=this.buildBalancedTree(t)}buildBalancedTree(e,t=0,n=e.length){if(t>=n)return null;let r=t+(n-t>>1),i=new dL(e[r]);return i.left=this.buildBalancedTree(e,t,r),i.right=this.buildBalancedTree(e,r+1,n),i.max=Math.max(i.interval.bottom,i.left?i.left.max:-1,i.right?i.right.max:-1),i}searchTree(e,t,n){!e||t.top>e.max||(this.isOverlapping(e.interval,t)&&n.push(e.interval),e.left&&e.left.max>=t.top&&this.searchTree(e.left,t,n),e.right&&t.bottom>=e.interval.top&&this.searchTree(e.right,t,n))}inOrderTraversal(e,t){e&&(this.inOrderTraversal(e.left,t),t.push(e.interval),this.inOrderTraversal(e.right,t))}isOverlapping(e,t){return e.top<=t.bottom&&e.bottom>=t.top}};function pL(e,t){if(e.top!==t.top)return e.top-t.top;if(e.bottom!==t.bottom)return e.bottom-t.bottom;let{zone:n,sheetId:r}=e.dependents,{zone:i,sheetId:a}=t.dependents;return r===a?n.left-i.left||n.right-i.right||n.top-i.top||n.bottom-i.bottom:r>a?1:-1}var mL=class e{profilesStartingPosition=[0];profiles=new Map([[0,[]]]);constructor(e=[]){for(let t of e)this.add(t)}isEmpty(){return this.profiles.size===1&&this.profiles.get(0)?.length===0}add(e){an(this.profilesStartingPosition,this.profiles,[e])}delete(e){an(this.profilesStartingPosition,this.profiles,[e],!0)}has(e){return on(this.profilesStartingPosition,this.profiles,e)}difference(e){let t=this.copy();for(let n of e)t.delete(n);return t}copy(){let t=new e;t.profilesStartingPosition=[...this.profilesStartingPosition],t.profiles=new Map;for(let[e,n]of this.profiles)t.profiles.set(e,[...n]);return t}[Symbol.iterator](){return un(this.profilesStartingPosition,this.profiles)[Symbol.iterator]()}},hL=class e{setsBySheetId={};constructor(e=[]){for(let t of e)this.add(t)}add(e){this.setsBySheetId[e.sheetId]||(this.setsBySheetId[e.sheetId]=new mL),this.setsBySheetId[e.sheetId].add(e.zone)}addMany(e){for(let t of e)this.add(t)}addPosition(e){this.add(Vc(e))}addManyPositions(e){for(let t of e)this.addPosition(t)}has(e){return this.setsBySheetId[e.sheetId]?this.setsBySheetId[e.sheetId].has(e.zone):!1}hasPosition(e){return this.has(Vc(e))}delete(e){this.setsBySheetId[e.sheetId]&&this.setsBySheetId[e.sheetId].delete(e.zone)}deleteMany(e){for(let t of e)this.delete(t)}deleteManyPositions(e){for(let t of e)this.delete(Vc(t))}difference(t){let n=new e;for(let e in this.setsBySheetId)n.setsBySheetId[e]=this.setsBySheetId[e];for(let e in t.setsBySheetId)n.setsBySheetId[e]&&(n.setsBySheetId[e]=n.setsBySheetId[e].difference(t.setsBySheetId[e]));return n}copy(){let t=new e;for(let e in this.setsBySheetId)t.setsBySheetId[e]=this.setsBySheetId[e].copy();return t}clear(){this.setsBySheetId={}}isEmpty(){for(let e in this.setsBySheetId)if(!this.setsBySheetId[e].isEmpty())return!1;return!0}[Symbol.iterator](){let e=[];for(let t in this.setsBySheetId)for(let n of this.setsBySheetId[t])e.push({sheetId:t,zone:n});return e[Symbol.iterator]()}},gL=class{forest={};removeAllDependencies(e){}addDependencies(e,t){let n={zone:D(e),sheetId:e.sheetId};for(let e of t){if(e.invalidSheetName||e.invalidXc)continue;let{zone:t,sheetId:r}=e;for(let e=t.left;e<=t.right;e++)this.getOrCreateIntervalTree(r,e).insert({top:t.top,bottom:t.bottom,dependents:n})}}getCellsDependingOn(e,t=new hL){t=t.copy();let n=Array.from(e).reverse();for(;n.length>0;){let e=n.pop();t.add(e);let r=e.zone,i=this.forest[e.sheetId];if(!i)continue;let a=new hL;for(let e=r.left;e<=r.right;e++){let t=i[e];if(!t)continue;let n=t.query(r);for(let e of n)a.add(e.dependents)}n.push(...a.difference(t))}for(let n of e)t.delete(n);return t}getOrCreateIntervalTree(e,t){let n=this.forest[e]?.[t];return n||(this.forest[e]||(this.forest[e]={}),n=new fL,this.forest[e][t]=n),n}},_L=class extends Uint32Array{columnOffset=0;cols=0;rows=0;static create(e,t){let n=vL(t),r=e<<n>>5,i=new this(r+1);return i.columnOffset=n,i.cols=t,i.rows=e,i}getValue(e){let[t,n]=this.getCoordinates(e);return this[t]>>n&1}setValue(e,t){let[n,r]=this.getCoordinates(e),i=(this[n]>>r&1)==0&&t===1;return this[n]=this[n]&~(1<<r)|t<<r,i}isEmpty(){return!this.some(e=>e!==0)}fillAllPositions(){this.fill(-1>>>0)}clear(){this.fill(0)}getCoordinates(e){let{row:t,col:n}=e,r=(t<<this.columnOffset)+n,i=r>>5;return[i,r-(i<<5)]}};function vL(e){return e===0?-1/0:e<0?NaN:32-Math.clz32(--e)}var yL=class{sheets={};insertions=[];maxSize=0;constructor(e){for(let t in e){let n=e[t].cols,r=e[t].rows;this.maxSize+=n*r,this.sheets[t]=_L.create(r,n)}}add(e){this.sheets[e.sheetId].setValue(e,1)&&this.insertions.push(e)}addMany(e){for(let t of e)this.add(t)}delete(e){this.sheets[e.sheetId].setValue(e,0)}deleteMany(e){for(let t of e)this.delete(t)}has(e){return this.sheets[e.sheetId].getValue(e)===1}clear(){let e=[...this];this.insertions=[];for(let e in this.sheets)this.sheets[e].clear();return e}isEmpty(){if(this.insertions.length===0)return!0;for(let e in this.sheets)if(!this.sheets[e].isEmpty())return!1;return!0}fillAllPositions(){this.insertions=Array(this.maxSize);let e=0;for(let t in this.sheets){let n=this.sheets[t];n.fillAllPositions();for(let r=0;r<n.rows;r++)for(let i=0;i<n.cols;i++)this.insertions[e++]={sheetId:t,row:r,col:i}}}*[Symbol.iterator](){for(let e of this.insertions)this.sheets[e.sheetId].getValue(e)===1&&(yield e)}},bL=d(c(((e,t)=>{(function(n,r){typeof e==`object`&&t!==void 0?t.exports=r():typeof define==`function`&&define.amd?define(r):(n||=self).RBush=r()})(e,function(){"use strict";function e(e,r,i,a,o){(function e(n,r,i,a,o){for(;a>i;){if(a-i>600){var s=a-i+1,c=r-i+1,l=Math.log(s),u=.5*Math.exp(2*l/3),d=.5*Math.sqrt(l*u*(s-u)/s)*(c-s/2<0?-1:1);e(n,r,Math.max(i,Math.floor(r-c*u/s+d)),Math.min(a,Math.floor(r+(s-c)*u/s+d)),o)}var f=n[r],p=i,m=a;for(t(n,i,r),o(n[a],f)>0&&t(n,i,a);p<m;){for(t(n,p,m),p++,m--;o(n[p],f)<0;)p++;for(;o(n[m],f)>0;)m--}o(n[i],f)===0?t(n,i,m):t(n,++m,a),m<=r&&(i=m+1),r<=m&&(a=m-1)}})(e,r,i||0,a||e.length-1,o||n)}function t(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function n(e,t){return e<t?-1:+(e>t)}var r=function(e){e===void 0&&(e=9),this._maxEntries=Math.max(4,e),this._minEntries=Math.max(2,Math.ceil(.4*this._maxEntries)),this.clear()};function i(e,t,n){if(!n)return t.indexOf(e);for(var r=0;r<t.length;r++)if(n(e,t[r]))return r;return-1}function a(e,t){o(e,0,e.children.length,t,e)}function o(e,t,n,r,i){i||=m(null),i.minX=1/0,i.minY=1/0,i.maxX=-1/0,i.maxY=-1/0;for(var a=t;a<n;a++){var o=e.children[a];s(i,e.leaf?r(o):o)}return i}function s(e,t){return e.minX=Math.min(e.minX,t.minX),e.minY=Math.min(e.minY,t.minY),e.maxX=Math.max(e.maxX,t.maxX),e.maxY=Math.max(e.maxY,t.maxY),e}function c(e,t){return e.minX-t.minX}function l(e,t){return e.minY-t.minY}function u(e){return(e.maxX-e.minX)*(e.maxY-e.minY)}function d(e){return e.maxX-e.minX+(e.maxY-e.minY)}function f(e,t){return e.minX<=t.minX&&e.minY<=t.minY&&t.maxX<=e.maxX&&t.maxY<=e.maxY}function p(e,t){return t.minX<=e.maxX&&t.minY<=e.maxY&&t.maxX>=e.minX&&t.maxY>=e.minY}function m(e){return{children:e,height:1,leaf:!0,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0}}function h(t,n,r,i,a){for(var o=[n,r];o.length;)if(!((r=o.pop())-(n=o.pop())<=i)){var s=n+Math.ceil((r-n)/i/2)*i;e(t,s,n,r,a),o.push(n,s,s,r)}}return r.prototype.all=function(){return this._all(this.data,[])},r.prototype.search=function(e){var t=this.data,n=[];if(!p(e,t))return n;for(var r=this.toBBox,i=[];t;){for(var a=0;a<t.children.length;a++){var o=t.children[a],s=t.leaf?r(o):o;p(e,s)&&(t.leaf?n.push(o):f(e,s)?this._all(o,n):i.push(o))}t=i.pop()}return n},r.prototype.collides=function(e){var t=this.data;if(!p(e,t))return!1;for(var n=[];t;){for(var r=0;r<t.children.length;r++){var i=t.children[r],a=t.leaf?this.toBBox(i):i;if(p(e,a)){if(t.leaf||f(e,a))return!0;n.push(i)}}t=n.pop()}return!1},r.prototype.load=function(e){if(!e||!e.length)return this;if(e.length<this._minEntries){for(var t=0;t<e.length;t++)this.insert(e[t]);return this}var n=this._build(e.slice(),0,e.length-1,0);if(this.data.children.length)if(this.data.height===n.height)this._splitRoot(this.data,n);else{if(this.data.height<n.height){var r=this.data;this.data=n,n=r}this._insert(n,this.data.height-n.height-1,!0)}else this.data=n;return this},r.prototype.insert=function(e){return e&&this._insert(e,this.data.height-1),this},r.prototype.clear=function(){return this.data=m([]),this},r.prototype.remove=function(e,t){if(!e)return this;for(var n,r,a,o=this.data,s=this.toBBox(e),c=[],l=[];o||c.length;){if(o||(o=c.pop(),r=c[c.length-1],n=l.pop(),a=!0),o.leaf){var u=i(e,o.children,t);if(u!==-1)return o.children.splice(u,1),c.push(o),this._condense(c),this}a||o.leaf||!f(o,s)?r?(n++,o=r.children[n],a=!1):o=null:(c.push(o),l.push(n),n=0,r=o,o=o.children[0])}return this},r.prototype.toBBox=function(e){return e},r.prototype.compareMinX=function(e,t){return e.minX-t.minX},r.prototype.compareMinY=function(e,t){return e.minY-t.minY},r.prototype.toJSON=function(){return this.data},r.prototype.fromJSON=function(e){return this.data=e,this},r.prototype._all=function(e,t){for(var n=[];e;)e.leaf?t.push.apply(t,e.children):n.push.apply(n,e.children),e=n.pop();return t},r.prototype._build=function(e,t,n,r){var i,o=n-t+1,s=this._maxEntries;if(o<=s)return a(i=m(e.slice(t,n+1)),this.toBBox),i;r||(r=Math.ceil(Math.log(o)/Math.log(s)),s=Math.ceil(o/s**(r-1))),(i=m([])).leaf=!1,i.height=r;var c=Math.ceil(o/s),l=c*Math.ceil(Math.sqrt(s));h(e,t,n,l,this.compareMinX);for(var u=t;u<=n;u+=l){var d=Math.min(u+l-1,n);h(e,u,d,c,this.compareMinY);for(var f=u;f<=d;f+=c){var p=Math.min(f+c-1,d);i.children.push(this._build(e,f,p,r-1))}}return a(i,this.toBBox),i},r.prototype._chooseSubtree=function(e,t,n,r){for(;r.push(t),!t.leaf&&r.length-1!==n;){for(var i=1/0,a=1/0,o=void 0,s=0;s<t.children.length;s++){var c=t.children[s],l=u(c),d=(f=e,p=c,(Math.max(p.maxX,f.maxX)-Math.min(p.minX,f.minX))*(Math.max(p.maxY,f.maxY)-Math.min(p.minY,f.minY))-l);d<a?(a=d,i=l<i?l:i,o=c):d===a&&l<i&&(i=l,o=c)}t=o||t.children[0]}var f,p;return t},r.prototype._insert=function(e,t,n){var r=n?e:this.toBBox(e),i=[],a=this._chooseSubtree(r,this.data,t,i);for(a.children.push(e),s(a,r);t>=0&&i[t].children.length>this._maxEntries;)this._split(i,t),t--;this._adjustParentBBoxes(r,i,t)},r.prototype._split=function(e,t){var n=e[t],r=n.children.length,i=this._minEntries;this._chooseSplitAxis(n,i,r);var o=this._chooseSplitIndex(n,i,r),s=m(n.children.splice(o,n.children.length-o));s.height=n.height,s.leaf=n.leaf,a(n,this.toBBox),a(s,this.toBBox),t?e[t-1].children.push(s):this._splitRoot(n,s)},r.prototype._splitRoot=function(e,t){this.data=m([e,t]),this.data.height=e.height+1,this.data.leaf=!1,a(this.data,this.toBBox)},r.prototype._chooseSplitIndex=function(e,t,n){for(var r,i,a,s,c,l,d,f=1/0,p=1/0,m=t;m<=n-t;m++){var h=o(e,0,m,this.toBBox),g=o(e,m,n,this.toBBox),_=(i=h,a=g,s=void 0,c=void 0,l=void 0,d=void 0,s=Math.max(i.minX,a.minX),c=Math.max(i.minY,a.minY),l=Math.min(i.maxX,a.maxX),d=Math.min(i.maxY,a.maxY),Math.max(0,l-s)*Math.max(0,d-c)),v=u(h)+u(g);_<f?(f=_,r=m,p=v<p?v:p):_===f&&v<p&&(p=v,r=m)}return r||n-t},r.prototype._chooseSplitAxis=function(e,t,n){var r=e.leaf?this.compareMinX:c,i=e.leaf?this.compareMinY:l;this._allDistMargin(e,t,n,r)<this._allDistMargin(e,t,n,i)&&e.children.sort(r)},r.prototype._allDistMargin=function(e,t,n,r){e.children.sort(r);for(var i=this.toBBox,a=o(e,0,t,i),c=o(e,n-t,n,i),l=d(a)+d(c),u=t;u<n-t;u++){var f=e.children[u];s(a,e.leaf?i(f):f),l+=d(a)}for(var p=n-t-1;p>=t;p--){var m=e.children[p];s(c,e.leaf?i(m):m),l+=d(c)}return l},r.prototype._adjustParentBBoxes=function(e,t,n){for(var r=n;r>=0;r--)s(t[r],e)},r.prototype._condense=function(e){for(var t=e.length-1,n=void 0;t>=0;t--)e[t].children.length===0?t>0?(n=e[t-1].children).splice(n.indexOf(e[t]),1):this.clear():a(e[t],this.toBBox)},r})}))(),1),xL=class{rTrees={};constructor(e=[]){let t={};for(let n of e){let e=n.boundingBox.sheetId;t[e]||(t[e]=[]),t[e].push(n)}for(let e in t)this.rTrees[e]=new SL,this.rTrees[e].load(t[e])}insert(e){let t=e.boundingBox.sheetId;this.rTrees[t]||(this.rTrees[t]=new SL),this.rTrees[t].insert(e)}search({zone:e,sheetId:t}){return this.rTrees[t]?this.rTrees[t].search({minX:e.left,minY:e.top,maxX:e.right,maxY:e.bottom}):[]}remove(e){let t=e.boundingBox.sheetId;this.rTrees[t]&&this.rTrees[t].remove(e,this.rtreeItemComparer)}rtreeItemComparer(e,t){return e.boundingBox.sheetId===t.boundingBox.sheetId&&e.boundingBox?.zone.left===t.boundingBox.zone.left&&e.boundingBox?.zone.top===t.boundingBox.zone.top&&e.boundingBox?.zone.right===t.boundingBox.zone.right&&e.boundingBox?.zone.bottom===t.boundingBox.zone.bottom&&T(e.data,t.data)}},SL=class extends bL.default{toBBox({boundingBox:e}){let t=e.zone;return{minX:t.left,minY:t.top,maxX:t.right,maxY:t.bottom}}compareMinX(e,t){return e.boundingBox.zone.left-t.boundingBox.zone.left}compareMinY(e,t){return e.boundingBox.zone.top-t.boundingBox.zone.top}},CL=class{resultsToArrayFormulas=new xL;arrayFormulasToResults=new dN;searchFormulaPositionsSpreadingOn(e,t){return this.resultsToArrayFormulas.search({sheetId:e,zone:t}).map(e=>e.data)||wL}getArrayResultZone(e){return this.arrayFormulasToResults.get(e)}removeNode(e){let t=this.arrayFormulasToResults.get(e);t&&(this.resultsToArrayFormulas.remove({boundingBox:{sheetId:e.sheetId,zone:t},data:e}),this.arrayFormulasToResults.delete(e))}addRelation({arrayFormulaPosition:e,resultZone:t}){this.resultsToArrayFormulas.insert({boundingBox:{sheetId:e.sheetId,zone:t},data:e}),this.arrayFormulasToResults.set(e,t)}isArrayFormula(e){return this.arrayFormulasToResults.has(e)}};let wL=[],TL=new B;TL.add(`pivots`,e=>{for(let t of e.getPivotIds())e.getPivot(t).markAsDirtyForEvaluation?.()});let EL=Object.freeze(ou({value:null})),DL={};for(let[e,t]of Object.entries(gl))DL[t]=e;for(let[e,t]of Object.entries(_l))DL[t]=e;var OL=class{getters;compilationParams;evaluatedCells=new dN;formulaDependencies=_t(new gL);blockedArrayFormulas=new yL({});spreadingRelations=new CL;perfProfile;constructor(e,t){this.context=e,this.getters=t,this.compilationParams=lL(this.context,this.getters,this.computeAndSave.bind(this))}getPerfProfile(){return this.perfProfile}getEvaluatedCell(e){return this.evaluatedCells.get(e)||EL}getSpreadZone(e,t={ignoreSpillError:!1}){let n=this.spreadingRelations.getArrayResultZone(e);if(!n)return;let r=this.evaluatedCells.get(e);return r?.type===V.error&&!(t.ignoreSpillError&&r?.value===j.SpilledBlocked)?D(e):Tn(D(e),n)}getEvaluatedPositions(){return this.evaluatedCells.keys()}getEvaluatedPositionsInSheet(e){return this.evaluatedCells.keysForSheet(e)}getArrayFormulaSpreadingOn(e){if(this.getEvaluatedCell(e).type!==V.empty)return this.spreadingRelations.searchFormulaPositionsSpreadingOn(e.sheetId,D(e)).find(e=>!this.blockedArrayFormulas.has(e))}isArrayFormulaSpillBlocked(e){return this.blockedArrayFormulas.has(e)}updateDependencies(e){this.formulaDependencies().removeAllDependencies(e);let t=this.getDirectDependencies(e);this.formulaDependencies().addDependencies(e,t)}addDependencies(e,t){this.formulaDependencies().addDependencies(e,t),this.computeDependencies(t)}computeDependencies(e){for(let t of e)this.compilationParams.ensureRange(t)}updateCompilationParametersForIsolatedFormula(e){this.compilationParams=lL(this.context,this.getters,this.computeAndSave.bind(this)),this.compilationParams.evalContext.__originCellPosition=e,this.compilationParams.evalContext.updateDependencies=void 0,this.compilationParams.evalContext.addDependencies=void 0,this.compilationParams.evalContext.lookupCaches=this.compilationParams.evalContext.lookupCaches||{forwardSearch:new Map,reverseSearch:new Map}}updateCompilationParameters(e){this.compilationParams=lL(this.context,this.getters,this.computeAndSave.bind(this)),this.compilationParams.evalContext.updateDependencies=this.updateDependencies.bind(this),this.compilationParams.evalContext.addDependencies=this.addDependencies.bind(this),this.compilationParams.evalContext.__timingEntries=e,this.compilationParams.evalContext.lookupCaches={forwardSearch:new Map,reverseSearch:new Map}}createEmptyPositionSet(){let e={};for(let t of this.getters.getSheetIds())e[t]={rows:this.getters.getNumberRows(t),cols:this.getters.getNumberCols(t)};return new yL(e)}evaluateCells(e){let t=performance.now(),n=new hL;n.addManyPositions(e);let r=this.getArrayFormulasImpactedByChangesOf(e);n.addMany(this.getCellsDependingOn(n)),n.addMany(r),n.addMany(this.getCellsDependingOn(r)),this.evaluate(n),console.debug(`evaluate Cells`,performance.now()-t,`ms`)}getArrayFormulasImpactedByChangesOf(e){let t=new hL;for(let n of e){let e=this.getters.getCell(n),r=this.getArrayFormulaSpreadingOn(n);r!==void 0&&t.addPosition(r),!e?.isFormula&&!e?.content&&t.addPosition(n)}for(let e of[...t])t.addMany(this.getArrayFormulasBlockedBy(e.sheetId,e.zone));return t}buildDependencyGraph(){this.blockedArrayFormulas=this.createEmptyPositionSet(),this.spreadingRelations=new CL,this.formulaDependencies=_t(()=>{let e=new gL;for(let t of this.getters.getSheetIds())for(let n of this.getters.getCells(t))if(n.isFormula){let t=this.getters.getCellPosition(n.id);e.addDependencies(t,n.compiledFormula.rangeDependencies)}return e})}evaluateAllCells(e){let t=performance.now();this.evaluatedCells=new dN;let n=[];for(let e of this.getters.getSheetIds()){let t=this.getters.getSheetZone(e);n.push({sheetId:e,zone:t})}this.evaluate(n,e),console.debug(`evaluate all cells`,performance.now()-t,`ms`)}evaluateFormulaResult(e,t,n){let r=bl.Compile(t,e,this.getters);return this.updateCompilationParametersForIsolatedFormula(n),this.evaluateCompiledFormula(e,r)}evaluateCompiledFormula(e,t,n){try{let r=ML(t,this.compilationParams,e,this.buildSafeGetSymbolValue(n),this.compilationParams.evalContext.__originCellPosition);return Ue(r)?ha(r,AL):AL(r)}catch(e){return ds(e,``)}}getArrayFormulasBlockedBy(e,t){let n=new hL,r=this.spreadingRelations.searchFormulaPositionsSpreadingOn(e,t);n.addManyPositions(r);let i=[...r].filter(e=>!this.blockedArrayFormulas.has(e));return i.length&&n.deleteManyPositions(i),n.addMany(this.getCellsDependingOn(n)),n}nextRangesToUpdate=new hL;cellsBeingComputed=new Set;symbolsBeingComputed=new Set;evaluate(e,t){t&&(this.perfProfile=void 0),this.cellsBeingComputed=new Set,this.nextRangesToUpdate=new hL(e);let n=0,r=t?[]:void 0;for(;!this.nextRangesToUpdate.isEmpty()&&n++<30;){this.updateCompilationParameters(r);let e=[...this.nextRangesToUpdate];this.nextRangesToUpdate.clear(),this.clearEvaluatedRanges(e);for(let t of e){let{left:e,bottom:n,right:r,top:i}=t.zone;for(let a=e;a<=r;a++)for(let e=i;e<=n;e++){let n={sheetId:t.sheetId,col:a,row:e};if(this.nextRangesToUpdate.hasPosition(n))continue;let r=this.computeCell(n);(r.value!==null||r.format!==void 0)&&this.evaluatedCells.set(n,r)}}TL.getAll().forEach(e=>e(this.getters))}n>=30&&console.warn(`Maximum iteration reached while evaluating cells`),t&&this.processPerfProfile()}clearEvaluatedRanges(e){for(let t of e){let{left:e,bottom:n,right:r,top:i}=t.zone;for(let a=e;a<=r;a++)for(let e=i;e<=n;e++)this.evaluatedCells.delete({sheetId:t.sheetId,col:a,row:e})}}computeCell(e){let t=this.evaluatedCells.get(e);if(t)return t;this.blockedArrayFormulas.has(e)||this.invalidateSpreading(e),this.spreadingRelations.isArrayFormula(e)&&this.spreadingRelations.removeNode(e);let n=this.getters.getCell(e);if(n===void 0)return{...EL,position:e};let r=n.id,i={format:n.format,locale:this.getters.getLocale()};try{return this.cellsBeingComputed.has(r)?NL(e):(this.cellsBeingComputed.add(r),n.isFormula?this.computeFormulaCell(e,n):eu(n,i,e))}catch(t){return t.value=t?.value||j.GenericError,t.message=t?.message||ms,t.origin=e,t.errorOriginPosition=t?.errorOriginPosition,ou(t,i.locale,e)}finally{this.cellsBeingComputed.delete(r)}}computeAndSave(e){let t=this.computeCell(e);return this.evaluatedCells.has(e)||this.evaluatedCells.set(e,t),t}computeFormulaCell(e,t){let n=ML(t.compiledFormula,this.compilationParams,e.sheetId,this.buildSafeGetSymbolValue(),e),r=this.compilationParams.evalContext.__timingEntries,i=r&&Ue(n)?performance.now():0,a=this.postProcessFormulaReturn(e,t,n);if(i){let t=r?.at(-1);t&&t.position.sheetId===e.sheetId&&t.position.col===e.col&&t.position.row===e.row&&(t.time+=performance.now()-i)}return a}postProcessFormulaReturn(e,t,n){if(!Ue(n)){let r=ou(jL(n),this.getters.getLocale(),e,t);return r.type===V.error&&(r.errorOriginPosition=n.errorOriginPosition??e),r}this.assertSheetHasEnoughSpaceToSpreadFormulaResult(e,n);let r=n.length,i=n[0].length;if(i===0)return ou({value:0},this.getters.getLocale(),e,t);if(i===1&&r===1)return ou(jL(n[0][0]),this.getters.getLocale(),e,t);let a={top:e.row,bottom:e.row+i-1,left:e.col,right:e.col+r-1};return this.spreadingRelations.addRelation({resultZone:a,arrayFormulaPosition:e}),this.assertNoMergedCellsInSpreadZone(e,n),kL(r,i,this.checkCollision(e)),kL(r,i,this.spreadValues(e,n)),this.invalidatePositionsDependingOnSpread(e.sheetId,a),ou(jL(n[0][0]),this.getters.getLocale(),e,t)}invalidatePositionsDependingOnSpread(e,t){let n=this.getCellsDependingOn(Fn(t).map(t=>({sheetId:e,zone:t})));n.delete({sheetId:e,zone:t}),this.nextRangesToUpdate.addMany(n)}assertSheetHasEnoughSpaceToSpreadFormulaResult({sheetId:e,col:t,row:n},r){let i=this.getters.getNumberCols(e),a=this.getters.getNumberRows(e),o=t+r.length<=i,s=n+r[0].length<=a;if(!(o&&s))throw new Bi(A(`Result couldn't be automatically expanded.`))}assertNoMergedCellsInSpreadZone({sheetId:e,col:t,row:n},r){if(this.getters.getMergesInZone(e,{top:n,bottom:n+r[0].length-1,left:t,right:t+r.length-1}).length!==0)throw new Bi(A(`Merged cells found in the spill zone. Please unmerge cells before using array formulas.`))}checkCollision(e){let{sheetId:t,col:n,row:r}=e;return(i,a)=>{let o={sheetId:t,col:i+n,row:a+r},s=this.getters.getCell(o);if(s?.isFormula||s?.content||this.getters.getEvaluatedCell(o).type!==V.empty)throw this.blockedArrayFormulas.add(e),new Bi(A(`Array result was not expanded because it would overwrite data.`),o);this.blockedArrayFormulas.delete(e)}}spreadValues({sheetId:e,col:t,row:n},r){return(i,a)=>{let o={sheetId:e,col:i+t,row:a+n},s=this.getters.getCell(o),c=ou(jL(r[i][a]),this.getters.getLocale(),o,s);c.type===V.error&&(c.errorOriginPosition=r[i][a].errorOriginPosition??o),this.evaluatedCells.set(o,c)}}invalidateSpreading(e){let t=this.spreadingRelations.getArrayResultZone(e);if(!t)return;for(let n=t.left;n<=t.right;n++)for(let r=t.top;r<=t.bottom;r++){let t={sheetId:e.sheetId,col:n,row:r},i=this.getters.getCell(t);i?.isFormula||i?.content||this.evaluatedCells.delete(t)}let n=e.sheetId;this.invalidatePositionsDependingOnSpread(n,t),this.nextRangesToUpdate.addMany(this.getArrayFormulasBlockedBy(n,t))}buildSafeGetSymbolValue(e){return(t,n)=>{if(this.symbolsBeingComputed.has(t))return NL(this.compilationParams.evalContext.__originCellPosition);this.symbolsBeingComputed.add(t);try{let r=this.getters.getNamedRange(t);if(r){let e=this.compilationParams.evalContext;return e.__originCellPosition?this.addDependencies(e.__originCellPosition,[r.range]):this.computeDependencies([r.range]),Kn(r.range.zone)>1||n?this.compilationParams.ensureRange(r.range):this.compilationParams.referenceDenormalizer(r.range)}return e?.(t,n)||new Fi(A(`Invalid formula`))}finally{this.symbolsBeingComputed.delete(t)}}}processPerfProfile(){let e=this.compilationParams.evalContext.__timingEntries??[],t=Object.groupBy(e,e=>e.functionName),n=0,r=[];for(let e in t){let i=DL[e]??e,a=Object.groupBy(t[e],({position:e})=>{let t=this.getters.getCell(e);return(t?this.getters.getCellFingerprint(t):void 0)??``});for(let e in a)for(let t of this.mergeIntoRangeTimings(i,a[e]))n+=t.time,r.push(t)}r.sort((e,t)=>t.time-e.time),this.perfProfile={totalTime:n,totalCells:this.evaluatedCells.keys().length,totalFunctionCalls:e.length,entries:r}}mergeIntoRangeTimings(e,t){let n=new dN,r=new hL;for(let{position:e,time:i}of t)n.set(e,(n.get(e)??0)+i),r.addPosition(e);let i=[];for(let{sheetId:t,zone:a}of r){let r=0;for(let e=a.left;e<=a.right;e++)for(let i=a.top;i<=a.bottom;i++)r+=n.get({sheetId:t,col:e,row:i})??0;i.push({functionName:e,range:this.getters.getRangeFromZone(t,a),time:r})}return i}getDirectDependencies(e){let t=this.getters.getCell(e);return t?.isFormula?t.compiledFormula.rangeDependencies:[]}getCellsDependingOn(e){return this.formulaDependencies().getCellsDependingOn(e,this.nextRangesToUpdate)}};function kL(e,t,n){for(let r=0;r<e;++r)for(let e=0;e<t;++e)r===0&&e===0||n(r,e)}function AL(e){return e.value===null||e.value===void 0?{...e,value:0}:e}function jL(e){return typeof e.value==`number`&&Math.abs(e.value)>Number.MAX_VALUE?new Hi:AL(e)}function ML(e,t,n,r,i){let a=t.evalContext,o=a.__originCellPosition,s=a.__originSheetId;a.__originCellPosition=i,a.__originSheetId=n;let c=e.execute(e.rangeDependencies,t.referenceDenormalizer,t.ensureRange,r,a);return a.__originCellPosition=o,a.__originSheetId=s,c}function NL(e){return ou({...new Ii,origin:void 0},void 0,e)}var PL=class extends fN{static getters=[`evaluateFormula`,`evaluateFormulaResult`,`evaluateCompiledFormula`,`getCorrespondingFormulaCell`,`getVisibleRangeValues`,`getEvaluatedCell`,`getEvaluatedCells`,`getEvaluatedCellsInZone`,`getEvaluatedCellsPositions`,`getSpreadZone`,`getArrayFormulaSpreadingOn`,`isArrayFormulaSpillBlocked`,`isEmpty`,`getPerfProfile`];shouldRebuildDependenciesGraph=!0;evaluator;positionsToUpdate=[];constructor(e){super(e),this.evaluator=new OL(e.custom,this.getters)}beforeHandle(e){(Nl.has(e.type)||Fl.has(e.type))&&(this.shouldRebuildDependenciesGraph=!0)}handle(e){switch(e.type){case`UPDATE_CELL`:if(!(`content`in e||`format`in e)||this.shouldRebuildDependenciesGraph)return;let t={sheetId:e.sheetId,row:e.row,col:e.col};this.positionsToUpdate.push(t),`content`in e&&this.evaluator.updateDependencies(t);break;case`EVALUATE_CELLS`:if(e.cellIds)for(let t=0;t<e.cellIds.length;t++)this.positionsToUpdate.push(this.getters.getCellPosition(e.cellIds[t]));else this.evaluator.evaluateAllCells(e.profiling);break}}finalize(){this.shouldRebuildDependenciesGraph?(this.evaluator.buildDependencyGraph(),this.evaluator.evaluateAllCells(),this.shouldRebuildDependenciesGraph=!1):this.positionsToUpdate.length&&this.evaluator.evaluateCells(this.positionsToUpdate),this.positionsToUpdate=[]}evaluateFormula(e,t,n){let r=this.evaluateFormulaResult(e,t,n);return Ue(r)?ha(r,e=>e.value):r.value}evaluateFormulaResult(e,t,n){return this.evaluator.evaluateFormulaResult(e,t,n)}evaluateCompiledFormula(e,t,n){return this.evaluator.evaluateCompiledFormula(e,t,n)}getVisibleRangeValues(e){return this.getters.tryGetSheet(e.sheetId)===void 0?[]:this.mapVisiblePositions(e,e=>this.getters.getEvaluatedCell(e))}getEvaluatedCell(e){return this.evaluator.getEvaluatedCell(e)}getEvaluatedCells(e){return this.evaluator.getEvaluatedPositionsInSheet(e).map(e=>this.getEvaluatedCell(e))}getEvaluatedCellsPositions(e){return this.evaluator.getEvaluatedPositionsInSheet(e)}getEvaluatedCellsInZone(e,t){return In(t).map(({col:t,row:n})=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:n}))}getSpreadZone(e,t={ignoreSpillError:!1}){return this.evaluator.getSpreadZone(e,t)}getArrayFormulaSpreadingOn(e){return this.evaluator.getArrayFormulaSpreadingOn(e)}isArrayFormulaSpillBlocked(e){return this.evaluator.isArrayFormulaSpillBlocked(e)}isEmpty(e,t){return In(t).map(({col:t,row:n})=>this.getEvaluatedCell({sheetId:e,col:t,row:n})).every(e=>e.type===V.empty)}getPerfProfile(){return this.evaluator.getPerfProfile()}mapVisiblePositions(e,t){let{sheetId:n,zone:r}=e;return In(r).reduce((e,r)=>{let{col:i,row:a}=r;return!this.getters.isColHidden(n,i)&&!this.getters.isRowHidden(n,a)&&e.push(t({sheetId:n,...r})),e},[])}exportForExcel(e){for(let t of e.sheets)t.cellValues={},t.formulaSpillRanges={};for(let t of this.evaluator.getEvaluatedPositions()){let n=this.evaluator.getEvaluatedCell(t),r=E(t.col,t.row),i=n.value,a=!1,o,s=!0,c=e.sheets.find(e=>e.id===t.sheetId),l=this.getCorrespondingFormulaCell(t);if(l){let u=this.getters.getCell(t);if(s=l.compiledFormula.areAllFunctionsExportableToExcel(),a=s&&(u?.isFormula?u.compiledFormula.toFormulaString(this.getters):u?.content)===l.compiledFormula.toFormulaString(this.getters),!s&&i!==``){o=(i??``).toString();let t=n.format;if(t){let n=Kg(t,e.formats);c.formats[r]=n}}}let u=c.cells[r],d;d=s&&a&&l?.isFormula?l.compiledFormula.toFormulaString(this.getters,{useBoundedReference:!0}):s?u:o,c.cells[r]=d,c.cellValues[r]=i===j.BadExpression?void 0:i;let f=this.getSpreadZone(t);f&&(c.formulaSpillRanges[r]=this.getters.getRangeString(this.getters.getRangeFromZone(t.sheetId,f),t.sheetId))}}getCorrespondingFormulaCell(e){let t=this.getters.getCell(e);if(t&&t.isFormula)return t.compiledFormula.isBadExpression?void 0:t;if(t&&t.content)return;let n=this.getArrayFormulaSpreadingOn(e);if(n===void 0)return;let r=this.getters.getCell(n);if(r?.isFormula)return r}};let FL=new B;FL.add(`data_validation_checkbox`,(e,t)=>{if(e.isCellValidCheckbox(t)){let n=!!e.getEvaluatedCell(t).value,r=e.isDarkMode(),i,a;return n?(i=uv(r),a=uv(r)):(i=cv(r),a=lv(r)),{svg:i,hoverSvg:a,priority:2,horizontalAlign:`center`,size:17,margin:2,position:t,type:`data_validation_checkbox`,onClick:(e,t)=>{let r=t.model.getters.getCell(e);if(t.model.getters.isReadonly()||r?.isFormula)return;let i=n?`FALSE`:`TRUE`;t.model.dispatch(`UPDATE_CELL`,{...e,content:i})}}}}),FL.add(`data_validation_list_chip_icon`,(e,t)=>{if(e.isReadonly())return;let n=e.getDataValidationChipStyle(t);if(!e.cellHasListDataValidationIcon(t)&&!n)return;let r=e.getCellComputedStyle(t),i=n||r;return{svg:av(i),hoverSvg:sv(i),priority:2,horizontalAlign:`right`,size:ju(r),margin:4,position:t,onClick:(e,t)=>{let{col:n,row:r}=e;t.model.selection.selectCell(n,r),t.startCellEdition()},type:`data_validation_list_chip_icon`}}),FL.add(`conditional_formatting`,(e,t)=>{let n=e.getConditionalIcon(t);if(n){let r=e.getCellStyle(t);return{type:`conditional_formatting`,svg:pv[n].svg,priority:1,horizontalAlign:`left`,size:ju(r),margin:4,position:t}}}),FL.add(`pivot_collapse`,(e,t)=>{let n=e.getPivotIdFromPosition(t);if(!e.isSpillPivotFormula(t)||!n)return;let r=e.getPivotCellFromPosition(t),i=e.getPivotCoreDefinition(n);if(!(i.style?.tabularForm??Ex.tabularForm)&&r.type===`HEADER`&&n&&r.domain.length){let n=e.isDashboard(),a=r.dimension===`COL`?i.columns:i.rows,o=!n&&r.domain.length!==a.length,s=(i.collapsedDomains?.[r.dimension]??[]).some(e=>T(e,r.domain)),c=r.dimension===`ROW`?(r.domain.length-1)*15:0;return{type:`pivot_collapse`,priority:4,horizontalAlign:`left`,size:o||!n&&r.dimension===`ROW`&&i.rows.length>1?12:0,margin:o?4+c:c,svg:o?dv(s,!1):void 0,hoverSvg:o?dv(s,!0):void 0,position:t,onClick:tS}}}),FL.add(`pivot_dashboard_sorting`,(e,t)=>{if(!e.isDashboard()||e.getPivotCellFromPosition(t).type!==`MEASURE_HEADER`)return;let n=e.getPivotCellSortDirection(t);if(n!==`asc`&&n!==`desc`)return;let r=e.getCellComputedStyle(t);return{type:`pivot_dashboard_sorting_${n}`,priority:5,horizontalAlign:`right`,size:ju(r),margin:0,svg:n===`asc`?ov(r):av(r),position:t,onClick:void 0}});var IL=class extends fN{static getters=[`doesCellHaveGridIcon`,`getCellIcons`,`getCellIconRect`];cellIconsCache={};handle(e){e.type!==`SET_VIEWPORT_OFFSET`&&(this.cellIconsCache={})}getCellIcons(e){return this.cellIconsCache[e.sheetId]||(this.cellIconsCache[e.sheetId]={}),this.cellIconsCache[e.sheetId][e.col]||(this.cellIconsCache[e.sheetId][e.col]={}),this.cellIconsCache[e.sheetId][e.col][e.row]||(this.cellIconsCache[e.sheetId][e.col][e.row]=this.computeCellIcons(e)),this.cellIconsCache[e.sheetId][e.col][e.row]}getCellIconRect(e,t){let n=e.position,r=this.getters.getCell(n);return{x:this.getIconHorizontalPosition(t,e.horizontalAlign,e),y:this.getters.computeTextYCoordinate(t,e.size,r?.style?.verticalAlign),width:e.size,height:e.size}}getIconHorizontalPosition(e,t,n){let r=e.x,i=e.x+e.width;switch(t){case`right`:return i-n.margin-n.size;case`left`:return r+n.margin;default:let e=Math.floor((i-r-n.size)/2);return i-n.size-e}}computeCellIcons(e){let t={left:void 0,right:void 0,center:void 0},n=FL.getAll();for(let r of n){let n=r(this.getters,e);n&&(!t[n.horizontalAlign]||n.priority>t[n.horizontalAlign].priority)&&(t[n.horizontalAlign]=n)}if(t.center&&(t.left||t.right)){let e=Math.max(t.left?.priority||0,t.right?.priority||0);t.center.priority<e?t.center=void 0:(t.left=void 0,t.right=void 0)}return Object.values(t).filter(w)}doesCellHaveGridIcon(e){return!!this.getCellIcons(e).length}};let LL=/"(#[0-9a-fA-F]{6})"/g;function RL(e){let t=[{leadColor:id(255,0,0),colors:[]},{leadColor:id(255,128,0),colors:[]},{leadColor:id(128,128,0),colors:[]},{leadColor:id(128,255,0),colors:[]},{leadColor:id(0,255,0),colors:[]},{leadColor:id(0,255,128),colors:[]},{leadColor:id(0,255,255),colors:[]},{leadColor:id(0,127,255),colors:[]},{leadColor:id(0,0,255),colors:[]},{leadColor:id(127,0,255),colors:[]},{leadColor:id(128,0,128),colors:[]},{leadColor:id(255,0,128),colors:[]}];for(let n of e.map(cd)){let e=500,r=0;t.forEach((t,i)=>{let a=zL(n,t.leadColor);e>a&&(e=a,r=i)}),t[r].colors.push(n)}return t.map(e=>e.colors.sort((e,t)=>ud(e).s-ud(t).s)).flat().map(sd)}function zL(e,t){return Math.sqrt((e.r-t.r)**2+(e.g-t.g)**2+(e.b-t.b)**2)}var BL=class extends fN{customColors={};shouldUpdateColors=!0;static getters=[`getCustomColors`];constructor(e){super(e),this.tryToAddColors(e.customColors??[])}handle(e){switch(e.type){case`START`:for(let e of this.getters.getSheetIds())for(let t of this.getters.getChartIds(e))this.tryToAddColors(this.getChartColors(t));break;case`UPDATE_CHART`:case`CREATE_CHART`:this.tryToAddColors(this.getChartColors(e.chartId));break;case`UPDATE_CELL`:case`ADD_CONDITIONAL_FORMAT`:case`SET_BORDER`:case`SET_ZONE_BORDERS`:case`SET_FORMATTING`:case`CREATE_TABLE`:case`UPDATE_TABLE`:this.history.update(`shouldUpdateColors`,!0);break}}finalize(){this.shouldUpdateColors&&(this.history.update(`shouldUpdateColors`,!1),this.tryToAddColors(this.computeCustomColors()))}getCustomColors(){return RL(Object.keys(this.customColors))}computeCustomColors(){let e=[];for(let t of this.getters.getSheetIds())e=e.concat(this.getColorsFromCells(t),this.getFormattingColors(t),this.getTableColors(t));return[...new Set([...e])]}getColorsFromCells(e){let t=Object.values(this.getters.getCells(e)),n=new Set;for(let e of t)e.style?.textColor&&n.add(e.style.textColor),e.style?.fillColor&&n.add(e.style.fillColor);for(let t of this.getters.getBordersColors(e))n.add(t);return[...n]}getFormattingColors(e){let t=this.getters.getConditionalFormats(e),n=[];for(let e of t){let t=e.rule;t.type===`CellIsRule`?(n.push(t.style.textColor),n.push(t.style.fillColor)):t.type===`ColorScaleRule`&&(n.push(Qu(t.minimum.color)),n.push(t.midpoint?Qu(t.midpoint.color):void 0),n.push(Qu(t.maximum.color)))}return n.filter(w)}getChartColors(e){let t=this.getters.getChart(e);return t===void 0?[]:[...JSON.stringify(t.getRangeDefinition()).matchAll(LL)].map(e=>e[1])}getTableColors(e){return this.getters.getTables(e).flatMap(e=>{let t=e.config,n=this.getters.getTableStyle(t.styleId);return[this.getTableStyleElementColors(n.wholeTable),t.numberOfHeaders>0?this.getTableStyleElementColors(n.headerRow):[],t.totalRow?this.getTableStyleElementColors(n.totalRow):[],t.bandedColumns?this.getTableStyleElementColors(n.firstColumnStripe):[],t.bandedColumns?this.getTableStyleElementColors(n.secondColumnStripe):[],t.bandedRows?this.getTableStyleElementColors(n.firstRowStripe):[],t.bandedRows?this.getTableStyleElementColors(n.secondRowStripe):[],t.firstColumn?this.getTableStyleElementColors(n.firstColumn):[],t.lastColumn?this.getTableStyleElementColors(n.lastColumn):[]].flat()})}getTableStyleElementColors(e){return e?[e.style?.fillColor,e.style?.textColor,e.border?.bottom?.color,e.border?.top?.color,e.border?.left?.color,e.border?.right?.color,e.border?.horizontal?.color,e.border?.vertical?.color].filter(w):[]}tryToAddColors(e){for(let t of e){if(!td(t))continue;let e=ed(t);t&&!me.includes(e)&&this.history.update(`customColors`,e,!0)}}},VL=class extends fN{static getters=[`canCreateDynamicTableOnZones`,`doesZonesContainFilter`,`getFilter`,`getFilters`,`getTable`,`getTables`,`getTablesOverlappingZones`,`getFilterId`,`getFilterHeaders`,`isFilterHeader`];tables={};handle(e){if(Nl.has(e.type)||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e)||e.type===`EVALUATE_CELLS`){this.tables={};return}switch(e.type){case`CREATE_TABLE`:case`REMOVE_TABLE`:case`UPDATE_TABLE`:case`DELETE_CONTENT`:case`REFRESH_PIVOT`:this.tables={};break}}finalize(){for(let e of this.getters.getSheetIds())this.tables[e]||(this.tables[e]=this.computeTables(e))}computeTables(e){let t=[],n=[...this.getters.getCoreTables(e)].filter(e=>e.type!==`dynamic`);t.push(...n);for(let r of this.getDynamicTables(e)){let i=this.coreTableToTable(e,r),a=i.range.zone,o=a.left,s=a.top;if(!n.some(e=>jn(o,s,e.range.zone))){for(let e of n){let t=e.range.zone;kn(a,t)&&(a=t.left>a.left?{...a,right:Math.min(a.right,t.left-1)}:{...a,bottom:Math.min(a.bottom,t.top-1)})}t.push({...i,range:this.getters.getRangeFromZone(e,a)})}}return t}getDynamicTables(e){let t=this.getters.getCoreTables(e).filter(e=>e.type===`dynamic`),n=this.getTablesFromPivots(e),r=new Set(n.map(t=>this.getters.getRangeString(t.range,e))),i=t.filter(t=>!r.has(this.getters.getRangeString(t.range,e)));return[...n,...i]}getTablesFromPivots(e){let t=[];for(let{position:n,pivotStyle:r,pivotId:i}of this.getters.getAllPivotArrayFormulas()){if(!this.getters.getPivot(i).isValid())continue;let a=this.getters.getSpreadZone(n),o=this.getters.getCell(n);n.sheetId!==e||!a||!o||r.tableStyleId===`None`||t.push({type:`dynamic`,id:`pivot_table_`+i+`_`+o.id,range:this.getters.getRangeFromZone(e,D(n)),config:this.getTableConfigFromPivotStyle(i,r),isPivotTable:!0})}return t}getTableConfigFromPivotStyle(e,t){let n=this.getters.getPivot(e).getCollapsedTableStructure(),{numberOfRows:r,numberOfHeaderRows:i}=n.getPivotTableDimensions(t),a=n.getPivotCells(t)[0]?.[r-1],o=t.displayTotals&&a?.type===`HEADER`&&a.domain.length===0;return{hasFilters:t.hasFilters,totalRow:o,firstColumn:!0,lastColumn:!0,numberOfHeaders:i,bandedRows:t.bandedRows,bandedColumns:t.bandedColumns,styleId:t.tableStyleId}}getFilters(e){return this.getTables(e).filter(e=>e.config.hasFilters).map(e=>e.filters).flat()}getTables(e){return this.tables[e]||[]}getFilter(e){let t=this.getTable(e);if(!(!t||!t.config.hasFilters))return t.filters.find(t=>t.col===e.col)}getFilterId(e){return this.getFilter(e)?.id}getTable({sheetId:e,col:t,row:n}){return this.getTables(e).find(e=>jn(t,n,e.range.zone))}getTablesOverlappingZones(e,t){return this.getTables(e).filter(e=>t.some(t=>kn(e.range.zone,t)))}doesZonesContainFilter(e,t){return this.getTablesOverlappingZones(e,t).some(e=>e.config.hasFilters)}getFilterHeaders(e){let t=[];for(let n of this.getTables(e)){if(!n.config.hasFilters)continue;let r=n.range.zone,i=r.top;for(let n=r.left;n<=r.right;n++)t.push({sheetId:e,col:n,row:i})}return t}isFilterHeader({sheetId:e,col:t,row:n}){return this.getFilterHeaders(e).some(e=>e.col===t&&e.row===n)}canCreateDynamicTableOnZones(e,t){if(!Xn(t))return!1;let n=Tn(...t),r={col:n.left,row:n.top,sheetId:e},i=this.getters.getArrayFormulaSpreadingOn(r);if(!i){let e=this.getters.getEvaluatedCell(r);return e.value===j.SpilledBlocked&&!e.errorOriginPosition}else if(T(i,r)&&Kn(n)===1)return!0;return T(n,this.getters.getSpreadZone(i))}coreTableToTable(e,t){if(t.type!==`dynamic`)return t;let n=t.range.zone,r={sheetId:e,col:n.left,row:n.top},i=this.getters.getSpreadZone(r)??t.range.zone,a=this.getters.getRangeFromZone(e,i),o=this.getDynamicTableFilters(e,t,i);return{id:t.id,range:a,filters:o,config:t.config,isPivotTable:t.isPivotTable}}getDynamicTableFilters(e,t,n){let r=[],{top:i,bottom:a,left:o,right:s}=n;for(let n=o;n<=s;n++){let s=n-o,c={left:n,right:n,top:i,bottom:a},l=FM(this.getDynamicTableFilterId(t.id,s),this.getters.getRangeFromZone(e,c),t.config,this.getters.getRangeFromZone);r.push(l)}return r}getDynamicTableFilterId(e,t){return e+`_`+t}isTableExcelExportable(e,t){return t.type===`dynamic`?!1:!In(t.range.zone).some(t=>this.getters.getArrayFormulaSpreadingOn({sheetId:e,...t}))}exportForExcel(e){for(let t of e.sheets){let n=[];for(let r of t.tables){let i=hn(r.range),a={sheetId:t.id,col:i.left,row:i.top},o=this.getters.getCoreTable(a),s=this.getTable(a);if(!o||!s||this.isTableExcelExportable(t.id,o)){n.push(r);continue}t.styles=t.styles||{},t.borders=t.borders||{};for(let n of In(s.range.zone)){let r={sheetId:t.id,...n},i=this.getters.getCellComputedStyle(r),a=this.getters.getCellComputedBorder(r),o=E(n.col,n.row);if(!ft(i)){let n=Kg(i,e.styles);t.styles[o]=n}if(a){let n=Kg(a,e.borders);t.borders[o]=n}}}t.tables=n}}};function HL(e){return{...e,data:{...e.data,datasets:e.data.datasets.filter(e=>!wf(e.xAxisID)).map(e=>({...e,pointRadius:e.showLine===!1?2:0}))},options:{...e.options,hover:{mode:null},plugins:{...e.options.plugins,title:{display:!1},legend:{display:!1},tooltip:{enabled:!1},chartShowValuesPlugin:void 0},layout:{padding:{...e.options.layout?.padding,top:5,bottom:10}},scales:{y:{...e.options.scales?.y,display:!1},y1:{...e.options.scales?.y1,display:!1},x:{...e.options.scales?.x,title:void 0,ticks:{...e.options.scales?.x?.ticks,callback:function(t){return Cf(e.options.scales?.x?.ticks?.callback?.call(this,t),5)},padding:0,font:{size:9}}}}}}}var UL=class extends fN{static getters=[`getChartRuntime`,`getStyleOfSingleCellChart`];charts={};handle(e){if(Nl.has(e.type)||Il.has(e.type)||Pl.has(e.type))for(let e in this.charts)this.charts[e]=void 0;switch(e.type){case`UPDATE_CHART`:case`CREATE_CHART`:this.charts[e.chartId]=void 0;break;case`DELETE_CHART`:this.charts[e.chartId]=void 0;break;case`DELETE_SHEET`:for(let e in this.charts)this.getters.isChartDefined(e)||(this.charts[e]=void 0);break}}getChartRuntime(e){if(!this.charts[e]){let t=this.getters.getChart(e);if(!t)throw Error(`No chart for the given id: ${e}`);this.charts[e]=this.createRuntimeChart(e,t)}return this.charts[e]}getStyleOfSingleCellChart(e,t){let n=this.getters.getSpreadsheetTheme().backgroundColor;if(e)return{background:e,fontColor:ff(e)};if(!t)return{background:n,fontColor:ff(n)};let r=t.zone.left,i=t.zone.top,a=t.sheetId,o=this.getters.getCellComputedStyle({sheetId:a,col:r,row:i}),s=o.fillColor||n;return{background:s,fontColor:o.textColor||ff(s)}}async exportForExcel(e){for(let t of e.sheets){t.images||=[];let e=this.getters.getFigures(t.id),n=[];for(let r of e){if(!r||r.tag!==`chart`)continue;let e=this.getters.getChartIds(t.id).find(e=>this.getters.getFigureIdFromChartId(e)===r.id);if(!e)continue;let i=this.getters.getChart(e),a=i?.getDefinitionForExcel(this.getters);if(a)n.push({...r,data:a});else{if(!i)continue;let n=this.getters.getChartType(e),a=await $m(this.getters.getChartRuntime(e),r,n);a&&t.images.push({...r,tag:`image`,data:{mimetype:`image/png`,path:a,size:{width:r.width,height:r.height}}})}}t.charts=n}}createRuntimeChart(e,t){let n=t.getRangeDefinition(),r=t.getRuntime(this.getters,e);if(`chartJsConfig`in r&&/line|combo|bar|scatter|waterfall/.test(n.type)){let e=r.chartJsConfig;r.masterChartConfig=HL(e)}return r}},WL=class extends fN{static getters=[`getConditionalIcon`,`getCellConditionalFormatStyle`,`getConditionalDataBar`];isStale=!0;computedStyles={};computedIcons={};computedDataBars={};handle(e){(Nl.has(e.type)||Il.has(e.type)||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e))&&(this.isStale=!0)}finalize(){if(this.isStale){for(let e of this.getters.getSheetIds())this.computedStyles[e]=_t(()=>this.getComputedStyles(e)),this.computedIcons[e]=_t(()=>this.getComputedIcons(e)),this.computedDataBars[e]=_t(()=>this.getComputedDataBars(e));this.isStale=!1}}getCellConditionalFormatStyle(e){let{sheetId:t,col:n,row:r}=e,i=this.computedStyles[t]?.();return i&&i[n]?.[r]}getConditionalIcon({sheetId:e,col:t,row:n}){let r=this.computedIcons[e]?.();return r&&r[t]?.[n]}getConditionalDataBar({sheetId:e,col:t,row:n}){let r=this.computedDataBars[e]?.();return r&&r[t]?.[n]}getComputedStyles(e){let t={};for(let n of this.getters.getConditionalFormats(e).reverse())switch(n.rule.type){case`ColorScaleRule`:for(let r of n.ranges)this.applyColorScale(e,r,n.rule,t);break;case`CellIsRule`:let r=n.rule.values.map(t=>{if(t.startsWith(`=`))return bl.Compile(t,e,this.getters)}),i=Q.get(n.rule.operator),a={...n.rule,type:n.rule.operator},o=n.ranges.map(t=>this.getters.getRangeFromSheetXC(e,t)),s=i.preComputeCriterion?.(a,o,this.getters);for(let i of n.ranges){let a=this.getters.getRangeFromSheetXC(e,i).zone;for(let i=a.top;i<=a.bottom;i++)for(let o=a.left;o<=a.right;o++){let c={sheetId:e,col:o,row:i},l=n.rule.values.map((t,n)=>{let s=r[n];return s?this.getters.getTranslatedCellFormula(e,o-a.left,i-a.top,s):t});this.getRuleResultForTarget(c,{...n.rule,values:l},s)&&(t[o]||(t[o]=[]),t[o][i]=Object.assign(t[o]?.[i]||{},n.rule.style))}}break}return t}getComputedIcons(e){let t={};for(let n of this.getters.getConditionalFormats(e).reverse())if(n.rule.type===`IconSetRule`)for(let r of n.ranges)this.applyIcon(e,r,n.rule,t);return t}getComputedDataBars(e){let t={};for(let n of this.getters.getConditionalFormats(e).reverse())if(n.rule.type===`DataBarRule`)for(let r of n.ranges)this.applyDataBar(e,r,n.rule,t);return t}parsePoint(e,t,n,r){let i=this.getters.getRangeFromSheetXC(e,t).zone,a=this.getters.getEvaluatedCellsInZone(e,i).filter(e=>e.type===V.number).map(e=>e.value);switch(n.type){case`value`:return r===`max`?Lt(a):Rt(a);case`number`:return Number(n.value);case`percentage`:let t=Rt(a);return t+(Lt(a)-t)*Number(n.value)/100;case`percentile`:return Ti(a,Number(n.value)/100,!0);case`formula`:let i=n.value&&this.getters.evaluateFormula(e,n.value);return typeof i==`number`?i:null;default:return null}}applyIcon(e,t,n,r){let i=this.parsePoint(e,t,n.lowerInflectionPoint),a=this.parsePoint(e,t,n.upperInflectionPoint);if(i===null||a===null||i>a)return;let o=this.getters.getRangeFromSheetXC(e,t).zone,s=[n.icons.upper,n.icons.middle,n.icons.lower];for(let t=o.top;t<=o.bottom;t++)for(let c=o.left;c<=o.right;c++){let o=this.getters.getEvaluatedCell({sheetId:e,col:c,row:t});if(o.type!==V.number)continue;let l=this.computeIcon(o.value,a,n.upperInflectionPoint.operator,i,n.lowerInflectionPoint.operator,s);r[c]||(r[c]=[]),r[c][t]=l}}computeIcon(e,t,n,r,i,a){return n===`ge`&&e>=t||n===`gt`&&e>t?a[0]:i===`ge`&&e>=r||i===`gt`&&e>r?a[1]:a[2]}applyDataBar(e,t,n,r){let i=this.getters.getRangeFromSheetXC(e,n.rangeValues||t),a=Lt(this.getters.getEvaluatedCellsInZone(e,i.zone).filter(e=>e.type===V.number).map(e=>e.value));if(a<=0)return;let o=n.color,s=this.getters.getRangeFromSheetXC(e,t).zone,c=i.zone;for(let t=s.top;t<=s.bottom;t++)for(let n=s.left;n<=s.right;n++){let i=n-s.left+c.left,l=t-s.top+c.top,u=this.getters.getEvaluatedCell({sheetId:e,col:i,row:l});!jn(i,l,c)||u.type!==V.number||u.value<=0||(r[n]||(r[n]=[]),r[n][t]={color:Qu(o),percentage:u.value*100/a})}}applyColorScale(e,t,n,r){let i=this.parsePoint(e,t,n.minimum,`min`),a=n.midpoint?this.parsePoint(e,t,n.midpoint):null,o=this.parsePoint(e,t,n.maximum,`max`);if(i===null||o===null||i>=o||a&&(i>=a||a>=o))return;let s=this.getters.getRangeFromSheetXC(e,t).zone,c=[{value:i,color:n.minimum.color}];n.midpoint&&a&&c.push({value:a,color:n.midpoint.color}),c.push({value:o,color:n.maximum.color});let l=Bd(c);for(let t=s.top;t<=s.bottom;t++)for(let n=s.left;n<=s.right;n++){let a=this.getters.getEvaluatedCell({sheetId:e,col:n,row:t});if(a.type===V.number){let e=S(a.value,i,o);r[n]||(r[n]=[]),r[n][t]=r[n]?.[t]||{},r[n][t].fillColor=l(e)}}}getRuleResultForTarget(e,t,n){let r=this.getters.getEvaluatedCell(e);if(r.type===V.error)return!1;let{sheetId:i}=e,a=Q.get(t.operator),o=t.values.map(t=>t.startsWith(`=`)?this.getters.evaluateFormula(i,t,e)??``:au(t,L));if(o.some(Jb))return!1;let s={...t,type:t.operator,values:o.map(Kb),dateValue:t.dateValue||`exactDate`};return a.isValueValid(r.value??``,s,n)}};let GL={isValid:!0};var KL=class extends fN{static getters=[`getDataValidationInvalidCriterionValueMessage`,`getInvalidDataValidationMessage`,`getValidationResultForCellValue`,`getDataValidationRangeValues`,`isCellValidCheckbox`,`getDataValidationCellStyle`,`getDataValidationChipStyle`,`isDataValidationInvalid`];validationResults={};criterionPreComputeResult={};handle(e){if(Nl.has(e.type)||e.type===`EVALUATE_CELLS`||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e)){this.validationResults={},this.criterionPreComputeResult={};return}switch(e.type){case`ADD_DATA_VALIDATION_RULE`:case`REMOVE_DATA_VALIDATION_RULE`:delete this.validationResults[e.sheetId],delete this.criterionPreComputeResult[e.sheetId];break}}isDataValidationInvalid(e){return!this.getValidationResultForCell(e).isValid}getDataValidationCellStyle(e){if(!this.hasChip(e))return this.getDataValidationStyle(e)}getDataValidationChipStyle(e){if(this.hasChip(e))return this.getDataValidationStyle(e)??{fillColor:`#E7E9ED`}}getInvalidDataValidationMessage(e){let t=this.getValidationResultForCell(e);return t.isValid?void 0:t.error}getDataValidationInvalidCriterionValueMessage(e,t){let n=Q.get(e);return t.startsWith(`=`)?n.allowedValues===`onlyLiterals`?A(`The value must not be a formula`):this.isValidFormula(t)?void 0:hg.CriterionError.validFormula:n.allowedValues===`onlyFormulas`?A(`The value must be a formula`):n.isCriterionValueValid(t)?void 0:n.criterionValueErrorString}getDataValidationRangeValues(e,t){let n=this.getters.getRangeFromSheetXC(e,String(t.values[0])),r=[],i=new Set;for(let e of In(n.zone)){let t=this.getters.getEvaluatedCell({...e,sheetId:n.sheetId});t.formattedValue&&!i.has(t.formattedValue)&&(i.add(t.formattedValue),r.push({label:t.formattedValue,value:t.value?.toString()||``}))}return r}isCellValidCheckbox(e){if(!this.getters.isMainCellPosition(e))return!1;let t=this.getters.getValidationRuleForCell(e);return!t||t.criterion.type!==`isBoolean`?!1:this.getValidationResultForCell(e).isValid}getValidationResultForCellValue(e,t){let n=this.getters.getValidationRuleForCell(t);if(!n)return GL;let r=this.getRuleErrorForCellValue(e,t,n);return r?{error:r,rule:n,isValid:!1}:GL}hasChip(e){let t=this.getters.getValidationRuleForCell(e);return(t?.criterion.type===`isValueInList`||t?.criterion.type===`isValueInRange`)&&t.criterion.displayStyle===`chip`}getDataValidationStyle(e){let t=this.getters.getValidationRuleForCell(e);if(!t||this.isDataValidationInvalid(e))return;let n=this.getters.getEvaluatedCell(e),r=this.getValueColor(t,n.value);if(r)return{fillColor:r,textColor:Cd(r)}}getValueColor(e,t){if(!(e.criterion.type!==`isValueInList`&&e.criterion.type!==`isValueInRange`)){for(let n in e.criterion.colors)if(n.toLowerCase()===String(t).toLowerCase())return e.criterion.colors[n]}}isValidFormula(e){return!bl.IsBadExpression(e)}getValidationResultForCell(e){let{col:t,row:n,sheetId:r}=e;return this.validationResults[r]||(this.validationResults[r]=this.computeSheetValidationResults(r)),this.validationResults[r][t]?.[n]?.()||GL}computeSheetValidationResults(e){let t={},n=this.getters.getDataValidationRules(e).map(e=>e.ranges);for(let e of zc(n.flat())){let{col:n,row:r}=e;t[n]||(t[n]=[]),t[n][r]=_t(()=>{let t=this.getters.getEvaluatedCell(e);return t.type===V.empty?GL:this.getValidationResultForCellValue(t.value,e)})}return t}getRuleErrorForCellValue(e,t,n){let{sheetId:r}=t,i=n.criterion,a=Q.get(i.type),o=this.getCellOffsetInRule(t,n),s=this.getEvaluatedCriterionValues(r,t,o,i);if(s.some(Jb))return;let c={...i,values:s.map(Kb)};this.criterionPreComputeResult[r]||(this.criterionPreComputeResult[r]={});let l=this.criterionPreComputeResult[r][n.id];if(l===void 0&&(l=a.preComputeCriterion?.(n.criterion,n.ranges,this.getters),this.criterionPreComputeResult[r][n.id]=l),!a.isValueValid(e,c,l))return a.getErrorString(c,this.getters,r)}getCellOffsetInRule(e,t){let n=t.ranges.find(t=>jn(e.col,e.row,t.zone));if(!n)throw Error(`The cell is not in any range of the rule`);return{col:e.col-n.zone.left,row:e.row-n.zone.top}}getEvaluatedCriterionValues(e,t,n,r){return r.values.map(r=>{if(!r.startsWith(`=`))return au(r,L);let i=bl.Compile(r,e,this.getters),a=this.getters.getTranslatedCellFormula(e,n.col,n.row,i);return this.getters.evaluateFormula(e,a,t)})}};let qL=[`SUBTOTAL`,`PIVOT`];var JL=class extends fN{static getters=[`getCellsWithTrackedFormula`];trackedCells={};handle(e){switch(e.type){case`START`:for(let e of qL)this.trackedCells[e]={};for(let e of this.getters.getSheetIds())for(let t of this.getters.getCells(e))for(let e of qL)Gt(t,e)&&this.history.update(`trackedCells`,e,t.id,t.id);break;case`UPDATE_CELL`:{if(!(`content`in e))return;let t=this.getters.getCell(e);if(!t)return;for(let e of qL)Gt(t,e)?this.history.update(`trackedCells`,e,t.id,t.id):this.trackedCells[e][t.id]&&this.history.update(`trackedCells`,e,t.id,void 0);break}}}getCellsWithTrackedFormula(e){return Object.values(this.trackedCells[e]||{}).filter(t=>t!==void 0&&this.trackedCells[e][t]&&this.getters.tryGetCellPosition(t))}},YL=class extends fN{static getters=[`getRowSize`,`getHeaderSize`,`getMaxAnchorOffset`];tallestCellInRow={};ctx=yu();beforeHandle(e){switch(e.type){case`ADD_COLUMNS_ROWS`:if(e.dimension===`COL`)return;let t=yt(e.position,e.base),n=Array(e.quantity).fill(void 0),r=Mt(this.tallestCellInRow[e.sheetId],n,t);this.history.update(`tallestCellInRow`,e.sheetId,r);break}}handle(e){switch(e.type){case`START`:case`UPDATE_LOCALE`:for(let e of this.getters.getSheetIds())this.initializeSheet(e);break;case`CREATE_SHEET`:this.initializeSheet(e.sheetId);break;case`DUPLICATE_SHEET`:{let t=x(this.tallestCellInRow[e.sheetId]);this.history.update(`tallestCellInRow`,e.sheetIdTo,t);break}case`DELETE_SHEET`:let t={...this.tallestCellInRow};delete t[e.sheetId],this.history.update(`tallestCellInRow`,t);break;case`REMOVE_COLUMNS_ROWS`:{if(e.dimension===`COL`)return;let t=jt(this.tallestCellInRow[e.sheetId],e.elements);this.history.update(`tallestCellInRow`,e.sheetId,t);break}case`RESIZE_COLUMNS_ROWS`:{let t=e.sheetId;if(e.dimension===`ROW`)for(let n of e.elements){let e=this.getRowTallestCell(t,n);this.history.update(`tallestCellInRow`,t,n,e)}else for(let n of C(0,this.getters.getNumberRows(t)))for(let r of e.elements)this.updateRowSizeForCellChange(t,n,r)}break;case`SET_FORMATTING`:if(e.style&&(`fontSize`in e.style||`wrapping`in e.style||`rotation`in e.style))for(let t of e.target)this.updateRowSizeForZoneChange(e.sheetId,t);break;case`UPDATE_CELL`:this.updateRowSizeForCellChange(e.sheetId,e.row,e.col);break;case`ADD_MERGE`:case`REMOVE_MERGE`:for(let t of e.target)for(let n of In(t))this.updateRowSizeForCellChange(e.sheetId,n.row,n.col)}}getRowSize(e,t){return Math.round(this.getters.getUserRowSize(e,t)??this.tallestCellInRow[e][t]?.size??23)}getMaxAnchorOffset(e,t,n){let{numberOfRows:r,numberOfCols:i}=this.getters.getSheetSize(e),a=0;for(;a<t&&r>0;r--)a+=this.getRowSize(e,r-1);let o=0;for(;o<n&&i>0;i--)o+=this.getters.getColSize(e,i-1);return{col:i,row:r,offset:{x:o-n,y:a-t}}}getHeaderSize(e,t,n){return this.getters.isHeaderHidden(e,t,n)?0:t===`ROW`?this.getRowSize(e,n):this.getters.getColSize(e,n)}updateRowSizeForZoneChange(e,t){for(let n=t.top;n<=t.bottom;n++){let t=this.getRowTallestCell(e,n);this.history.update(`tallestCellInRow`,e,n,t)}}updateRowSizeForCellChange(e,t,n){let r=this.tallestCellInRow[e]?.[t];if(r?.cell.col===n){let n=this.getRowTallestCell(e,t);this.history.update(`tallestCellInRow`,e,t,n)}let i=this.getCellHeight({sheetId:e,col:n,row:t});if(!(i<=23)&&(!r&&i>23||r&&i>r.size)){let r={cell:{sheetId:e,col:n,row:t},size:i};this.history.update(`tallestCellInRow`,e,t,r)}}initializeSheet(e){let t=[];for(let n=0;n<this.getters.getNumberRows(e);n++){let r=this.getRowTallestCell(e,n);t.push(r)}this.history.update(`tallestCellInRow`,e,t)}getCellHeight(e){if(this.isInMultiRowMerge(e))return 23;let t=this.getters.getCell(e),n=this.getters.getColSize(e.sheetId,e.col);return bu(this.ctx,t,this.getters.getLocale(),n)}isInMultiRowMerge(e){let t=this.getters.getMerge(e);return!!t&&t.bottom!==t.top}getRowTallestCell(e,t){if(this.getters.getUserRowSize(e,t)!==void 0)return;let n=this.getters.getRowCellIds(e,t),r=0,i;for(let e=0;e<n.length;e++){let t=this.getters.getCellById(n[e]);if(!t)continue;let a=this.getters.getCellPosition(t.id),o=this.getCellHeight(a);o>r&&o>23&&(r=o,i={cell:a,size:o})}if(i&&i.size>23)return i}};let XL=`0.00%`;function ZL(e){class t extends e{getters;pivotId;cache={};rankAsc={};rankDesc={};runningTotal={};runningTotalInPercent={};constructor(e,t,n){super(t,n),this.getters=n.getters,this.pivotId=e}markAsDirtyForEvaluation(){this.cache={},this.rankAsc={},this.rankDesc={},this.runningTotal={},this.runningTotalInPercent={},super.markAsDirtyForEvaluation?.()}getPivotCellValueAndFormat(e,t){return this.getMeasureDisplayValue(e,t)}_getPivotCellValueAndFormat(e,t){let n=`${e}-${t.map(e=>e.field+`=`+e.value).join(`,`)}`;if(this.cache[n])return this.cache[n];let r=this.getMeasure(e),i=r.computedBy?this.computeMeasure(r,t):super.getPivotCellValueAndFormat(e,t);return r.format?this.cache[n]={...i,format:r.format}:this.cache[n]=i,this.cache[n]}computeMeasure(e,t){if(!e.computedBy)return{value:0};let{columns:n,rows:r}=super.definition;if(e.aggregator&&n.length+r.length!==t.length){let n=this.getValuesToAggregate(e,t),r=jx[e.aggregator];if(!r)return{value:0};try{return r([n],this.getters.getLocale())}catch(t){return ds(t,e.aggregator.toUpperCase())}}let i=this.getters.getMeasureCompiledFormula(this.pivotId,e),a=this.getters.evaluateCompiledFormula(e.computedBy.sheetId,i,e=>{let{columns:n,rows:r}=this.definition;if(n.find(t=>t.nameWithGranularity===e)){let{colDomain:n}=wj(this,t),r=n.findIndex(t=>t.field===e);return r===-1?new Ri:this.getPivotHeaderValueAndFormat(n.slice(0,r+1))}if(r.find(t=>t.nameWithGranularity===e)){let{rowDomain:n}=wj(this,t),r=n.findIndex(t=>t.field===e);return r===-1?new Ri:this.getPivotHeaderValueAndFormat(n.slice(0,r+1))}return this.getPivotCellValueAndFormat(e,t)});return Ue(a)?a[0][0]:a}getValuesToAggregate(e,t){let{rowDomain:n,colDomain:r}=wj(this,t),i=super.getExpandedTableStructure(),a=[];if(r.length===0&&n.length<this.definition.rows.length&&this.definition.rows.length&&this.definition.columns.length){let t=this.treeToLeafDomains(i.getColTree()),r=this.getSubTreeMatchingDomain(i.getRowTree(),n),o=this.treeToLeafDomains(r);for(let r of t)for(let t of o)a.push(this._getPivotCellValueAndFormat(e.id,n.concat(t).concat(r)));return a}else if(n.length===this.definition.rows.length&&r.length===0){let t=i.getColTree(),o=this.getSubTreeMatchingDomain(t,r),s=this.treeToLeafDomains(o,r);for(let t of s)a.push(this._getPivotCellValueAndFormat(e.id,n.concat(t)));return a}else if(n.length===this.definition.rows.length&&r.length&&r.length<this.definition.columns.length){let t=this.getSubTreeMatchingDomain(i.getColTree(),r),o=this.treeToLeafDomains(t,r);for(let t of o)a.push(this._getPivotCellValueAndFormat(e.id,n.concat(t)));return a}else{let t=i.getRowTree(),o=this.getSubTreeMatchingDomain(t,n),s=this.treeToLeafDomains(o,n);for(let t of s)a.push(this._getPivotCellValueAndFormat(e.id,t.concat(r)));return a}}getSubTreeMatchingDomain(e,t,n=0){if(n>t.length)return[];if(t.length===n)return e;for(let r of e){let e=Bx(this.definition.getDimension(r.field),t[n]?.value);if(r.field===t[n]?.field&&r.value===e)return this.getSubTreeMatchingDomain(r.children,t,n+1)}return[]}treeToLeafDomains(e,t=[]){let n=[];for(let r of e){let e=this.definition.getDimension(r.field),i=[...t,{field:r.field,value:r.value,type:e.type}];r.children.length===0?n.push(i):n.push(...this.treeToLeafDomains(r.children,i))}return n}getMeasureDisplayValue(e,t){let n=this.getMeasure(e),r=this._getPivotCellValueAndFormat(e,t);if(!n.display||n.display.type===`no_calculations`||r.message)return r;let i=n.display.fieldNameWithGranularity;if(i&&!this.isFieldInPivot(i))return{value:j.NotAvailable,message:A(`Field "%s" not found in pivot for measure display calculation`,i)};try{let e=n.display;switch(e.type){case`%_of_grand_total`:return this.asPercentOfGrandTotal(r,n);case`%_of_col_total`:return this.asPercentOfColumnTotal(r,n,t);case`%_of_row_total`:return this.asPercentOfRowTotal(r,n,t);case`%_of_parent_row_total`:return this.asPercentOfParentRowTotal(r,n,t);case`%_of_parent_col_total`:return this.asPercentOfParentColumnTotal(r,n,t);case`index`:return this.asIndex(r,n,t);case`%_of_parent_total`:return this.asPercentOfParentTotal(r,n,t,e);case`running_total`:return this.asRunningTotal(r,n,t,e,`running_total`);case`%_running_total`:return this.asRunningTotal(r,n,t,e,`%_running_total`);case`rank_asc`:return this.asRank(r,n,t,e,`asc`);case`rank_desc`:return this.asRank(r,n,t,e,`desc`);case`%_of`:return this.asPercentOf(r,n,t,e);case`difference_from`:return this.asDifferenceFrom(r,n,t,e);case`%_difference_from`:return this.asDifferenceFromInPercent(r,n,t,e)}return r}catch(e){return ds(e,`COMPUTE_MEASURE_DISPLAY_VALUE`)}}asPercentOfGrandTotal(e,t){let n=this.getGrandTotal(t.id);return n===0?{value:j.DivisionByZero}:{value:this.measureValueToNumber(e)/n,format:XL}}asPercentOfRowTotal(e,t,n){let r=this.getRowTotal(t.id,n);return r===0?{value:j.DivisionByZero}:{value:this.measureValueToNumber(e)/r,format:XL}}asPercentOfColumnTotal(e,t,n){let r=this.getColumnTotal(t.id,n);return r===0?{value:j.DivisionByZero}:{value:this.measureValueToNumber(e)/r,format:XL}}asPercentOfParentRowTotal(e,t,n){let r=Sj(this,n),i=this.measureValueToNumber(this._getPivotCellValueAndFormat(t.id,r));return i===0?{value:``}:{value:this.measureValueToNumber(e)/i,format:XL}}asPercentOfParentColumnTotal(e,t,n){let r=Cj(this,n),i=this.measureValueToNumber(this._getPivotCellValueAndFormat(t.id,r));return i===0?{value:``}:{value:this.measureValueToNumber(e)/i,format:XL}}asPercentOfParentTotal(e,t,n,r){let{fieldNameWithGranularity:i}=r;if(!i)return e;if(!Mj(i,n))return{value:``};let a=Aj(this,i,n),o=this._getPivotCellValueAndFormat(t.id,a),s=this.measureValueToNumber(o);return s===0?{value:``}:{value:this.measureValueToNumber(e)/s,format:XL}}asIndex(e,t,n){let r=this.measureValueToNumber(e),i=this.getRowTotal(t.id,n),a=this.getColumnTotal(t.id,n),o=this.getGrandTotal(t.id);return i===0||a===0?{value:j.DivisionByZero}:{value:r*o/(a*i),format:void 0}}asRunningTotal(e,t,n,r,i){let{fieldNameWithGranularity:a}=r;if(!a)return e;let o=i===`running_total`?this.runningTotal:this.runningTotalInPercent,s=o[t.id]?.[a];s||(s=this.computeRunningTotal(t,a,i),o[t.id]||(o[t.id]={}),o[t.id][a]=s);let{rowDomain:c,colDomain:l}=wj(this,n),u=Fj(l),d=Fj(c),f=s[u]?.[d];return f===void 0&&(f=this.getPreviousRunningTotalValue(a,n,s)),{value:f??``,format:i===`running_total`?e.format:XL}}asPercentOf(e,t,n,r){let{fieldNameWithGranularity:i,value:a}=r;if(a===void 0||!i)return e;if(!Mj(i,n))return{value:``};let o=this.getComparisonValue(t,n,i,a),s=this.strictMeasureValueToNumber(e);return o===0||o===`sameValue`&&s===0?{value:j.DivisionByZero}:!o||o===`sameValue`&&!s?{value:``}:o===`sameValue`?{value:1,format:XL}:s===void 0?{value:j.NullError}:{value:s/o,format:XL}}asDifferenceFrom(e,t,n,r){let{fieldNameWithGranularity:i,value:a}=r;if(a===void 0||!i)return e;if(!Mj(i,n))return{value:``};let o=this.getComparisonValue(t,n,i,a)||0;return o===`sameValue`?{value:``}:{value:this.measureValueToNumber(e)-o,format:e.format}}asDifferenceFromInPercent(e,t,n,r){let{fieldNameWithGranularity:i,value:a}=r;if(a===void 0||!i)return e;if(!Mj(i,n))return{value:``};let o=this.getComparisonValue(t,n,i,a),s=this.strictMeasureValueToNumber(e);return o===0?{value:j.DivisionByZero}:!o||o===`sameValue`?{value:``}:s===void 0?{value:j.NullError}:{value:(s-o)/o,format:XL}}asRank(e,t,n,r,i){let{fieldNameWithGranularity:a}=r;if(!a)return e;if(!Mj(a,n))return{value:``};let o=i===`asc`?this.rankAsc:this.rankDesc,s=o[t.id]?.[a];s||(s=this.computeRank(t,a,i),o[t.id]||(o[t.id]={}),o[t.id][a]=s);let{rowDomain:c,colDomain:l}=wj(this,n),u=Fj(l),d=Fj(c);return{value:s[u]?.[d]??``}}computeRank(e,t,n){let r={},i=Nj(this,t),a=i===`row`?`column`:`row`,o=this.getPivotValueCells(e.id);i===`column`&&(o=_a(o));for(let s of o){let o=Fj(Tj(this,a,s[0].domain)),c=s.map(t=>({...t,value:this.strictMeasureValueToNumber(this._getPivotCellValueAndFormat(e.id,t.domain)),rowDomain:Tj(this,i,t.domain)})).filter(e=>Mj(t,e.rowDomain)),l=Object.groupBy(c,e=>Lj(e.rowDomain,t));for(let e in l)l[e]=Bt(l[e]||[],e=>e.value).filter(e=>e.value!==void 0).sort((e,t)=>n===`asc`?e.value-t.value:t.value-e.value);r[o]={};for(let e of c){let n=Fj(Tj(this,i,e.domain)),a=l[Lj(e.rowDomain,t)];if(!a)continue;let s=a.findIndex(t=>t.value===e.value);s!==-1&&(r[o][n]=s+1)}}return i===`row`?r:Vt(r)}computeRunningTotal(e,t,n){let r={},i=Nj(this,t),a=i===`row`?`column`:`row`,o=this.getPivotValueCells(e.id);i===`column`&&(o=_a(o));for(let s of o){let o=Fj(Tj(this,a,s[0].domain));r[o]={};let c={},l=s.map(t=>({...t,rowDomain:Tj(this,i,t.domain),value:this.measureValueToNumber(this._getPivotCellValueAndFormat(e.id,t.domain))})).filter(e=>Mj(t,e.rowDomain));for(let e of l){let n=Fj(e.rowDomain),i=Rj(e.rowDomain,t),a=(c[i]||0)+e.value;c[i]=a,r[o][n]=a}if(n===`%_running_total`)for(let e of l){let n=e.rowDomain,i=Fj(n),a=Rj(n,t),s=r[o][i]||0,l=c[a];r[o][i]=l?s/l:void 0}}return i===`row`?r:Vt(r)}getPreviousRunningTotalValue(e,t,n){let r=this.definition.getDimension(e);if(r.type!==`date`&&r.type!==`datetime`)return;let i=Nj(this,e),{rowDomain:a,colDomain:o}=wj(this,t),s=i===`row`?a:o,c=i===`row`?o:a,l=s.find(t=>t.field===e)?.value;if(l===void 0)return;let u=Fj(c),d=Rj(s,e),f,p,m=this.getCollapsedTableStructure(),h=i===`row`?m.getRowTree():m.getColTree(),g=(t,n=[])=>{for(let i of t){let t=[...n,{field:i.field,value:i.value,type:i.type}];i.children.length&&g(i.children,t);let a=t.find(t=>t.field===e)?.value,o=Rj(t,e);a===void 0||o!==d||this.compareRunningTotalValues(a,l,r)>=0||(p===void 0||this.compareRunningTotalValues(p,a,r)<0)&&(p=a,f=Fj(t))}};if(g(h),f)return i===`row`?n[u]?.[f]:n[f]?.[u]}compareRunningTotalValues(e,t,n){let r=n.order??`asc`,i=e===null,a=t===null;if(i&&a)return 0;if(i)return r===`asc`?1:-1;if(a)return r===`asc`?-1:1;let o=this.getRunningTotalComparableValue(e,n)-this.getRunningTotalComparableValue(t,n);return r===`asc`?o:-o}getRunningTotalComparableValue(e,t){let n=t.granularity;if(n&&fx.contains(n)){let t=px(n).toComparableValue?.(e);if(t!==void 0)return t}return N(e,L)}getGrandTotal(e){let t=this._getPivotCellValueAndFormat(e,[]);return this.measureValueToNumber(t)}getRowTotal(e,t){let n=wj(this,t).rowDomain,r=this._getPivotCellValueAndFormat(e,n);return this.measureValueToNumber(r)}getColumnTotal(e,t){let n=wj(this,t).colDomain,r=this._getPivotCellValueAndFormat(e,n);return this.measureValueToNumber(r)}isFieldInPivot(e){return this.definition.columns.some(t=>t.nameWithGranularity===e)||this.definition.rows.some(t=>t.nameWithGranularity===e)}getComparisonValue(e,t,n,r){let i=r===`(previous)`||r===`(next)`?Pj(this,t,n,r):jj(t,n,r);if(T(i,t))return`sameValue`;if(!i||!Dj(this,i))throw new Ri;let a=this._getPivotCellValueAndFormat(e.id,i);return this.strictMeasureValueToNumber(a)}getPivotValueCells(e){return this.getCollapsedTableStructure().getPivotCells().map(t=>t.filter(t=>t.type===`VALUE`&&t.measure===e)).filter(e=>e.length>0)}measureValueToNumber(e){if(typeof e.value==`number`)return e.value;if(!e.value)return 0;throw Error(`Value ${e.value} is not a number`)}strictMeasureValueToNumber(e){if(typeof e.value==`number`)return e.value;if(e.value)throw Error(`Value ${e.value} is not a number`)}getCollapsedTableStructure(){let e=super.getCollapsedTableStructure();return this.sortTableStructure(e),e}getExpandedTableStructure(){let e=super.getExpandedTableStructure();return this.sortTableStructure(e),e}sortTableStructure(e){if(!this.definition.sortedColumn||e.isSorted)return;let t=this.definition.sortedColumn.measure;Jx(this.definition.sortedColumn,this)&&e.sort(t,this.definition.sortedColumn,(e,t)=>this._getPivotCellValueAndFormat(e,t))}}return t}let QL=[`ADD_PIVOT`,`UPDATE_PIVOT`,`REMOVE_PIVOT`];function $L(e){return QL.includes(e.type)}var eR=class extends fN{static getters=[`getPivot`,`getFirstPivotFunction`,`getPivotCellSortDirection`,`getPivotIdFromPosition`,`getPivotCellFromPosition`,`generateNewCalculatedMeasureName`,`isPivotUnused`,`isSpillPivotFormula`,`getAllPivotArrayFormulas`,`getPivotStyleAtPosition`];pivots={};unusedPivotsInFormulas;custom;constructor(e){super(e),this.custom=e.custom}beforeHandle(e){switch(e.type){case`START`:for(let e of this.getters.getPivotIds())this.setupPivot(e)}}handle(e){if(Nl.has(e.type))for(let e of this.getters.getPivotIds())this.setupPivot(e,{recreate:!0});switch(e.type){case`REFRESH_PIVOT`:this.refreshPivot(e.id);break;case`ADD_PIVOT`:this.setupPivot(e.pivotId);break;case`DUPLICATE_PIVOT`:this.setupPivot(e.newPivotId);break;case`UPDATE_PIVOT`:this.setupPivot(e.pivotId,{recreate:!0});break;case`DELETE_SHEET`:case`UPDATE_CELL`:this.unusedPivotsInFormulas=void 0;break;case`UNDO`:case`REDO`:{this.unusedPivotsInFormulas=void 0;let t=e.commands.filter($L);for(let e of t){let t=e.pivotId;this.getters.isExistingPivot(t)&&this.setupPivot(t,{recreate:!0})}break}case`UPDATE_LOCALE`:VT();break}}getPivotIdFromPosition(e){let t=this.getters.getCorrespondingFormulaCell(e);if(t&&t.isFormula){let n=this.getFirstPivotFunction(e.sheetId,t.compiledFormula);if(n){let e=n.args[0]?.toString();return e&&this.getters.getPivotId(e)}}}isSpillPivotFormula(e){let t=this.getters.getCorrespondingFormulaCell(e);return t&&t.isFormula?this.getFirstPivotFunction(e.sheetId,t.compiledFormula)?.functionName===`PIVOT`:!1}getFirstPivotFunction(e,t){let n=aM(t,this.getters);if(!n)return;let{functionName:r,args:i}=n;return{functionName:r,args:i.map(t=>{if(t.type===`EMPTY`)return;if(t.type===`STRING`||t.type===`BOOLEAN`||t.type===`NUMBER`)return t.value;let n=IF(t);return this.getters.evaluateFormula(e,n)})}}getPivotCellFromPosition(e){let t=this.getters.getCorrespondingFormulaCell(e);if(!t||!t.isFormula||oM(t.compiledFormula,this.getters)===0)return Hj;let n=this.getters.getCellPosition(t.id),r=this.getters.getFirstPivotFunction(e.sheetId,t.compiledFormula);if(!r)return Hj;let{functionName:i,args:a}=r,o=a[0];if(!o)return Hj;let s=this.getters.getPivotId(o.toString());if(!s)return Hj;let c=this.getPivot(s);if(!c.isValid()||i===`PIVOT`&&!this.isMainFunctionPivotSpreadFunction(t))return Hj;try{if(i===`PIVOT`){let t=nS(this.getters.getPivotCoreDefinition(s),Kb(a[1]),Kb(a[2]),Kb(a[3]),Kb(a[4]),Kb(a[5]),this.getters.getLocale()),r=c.getCollapsedTableStructure().getPivotCells(t),i=e.col-n.col,o=e.row-n.row;return r[i][o]}let t=e.row-n.row,r=e.col-n.col;if(a=a.map(e=>Ue(e)?e[r][t]:e),i===`PIVOT.HEADER`&&a.at(-2)===`measure`)return{type:`MEASURE_HEADER`,domain:c.parseArgsToPivotDomain(a.slice(1,-2).map(e=>({value:e}))),measure:a.at(-1)?.toString()||``};if(i===`PIVOT.HEADER`){let e=c.parseArgsToPivotDomain(a.slice(1).map(e=>({value:e})));return{type:`HEADER`,domain:e,dimension:wj(c,e).colDomain.length?`COL`:`ROW`}}let[o,...l]=a.slice(1);return{type:`VALUE`,domain:c.parseArgsToPivotDomain(l.map(e=>({value:e}))),measure:o?.toString()||``}}catch{return Hj}}generateNewCalculatedMeasureName(e){let t=e.map(e=>e.fieldName);return Ht(A(`Calculated measure 1`),t,{compute:(e,t)=>A(`Calculated measure %s`,t)})}getPivot(e){if(!this.getters.isExistingPivot(e))throw Error(`pivot ${e} not found`);return this.pivots[e]}isPivotUnused(e){let{type:t}=this.getters.getPivot(e);return this._getUnusedPivotsInFormulas().includes(e)&&eM.get(t).isPivotUnused(this.getters,e)}getPivotCellSortDirection(e){let t=this.getters.getPivotIdFromPosition(e),n=this.getters.getPivotCellFromPosition(e);if(n.type===`EMPTY`||n.type===`HEADER`||n.type===`ROW_GROUP_NAME`||!t)return;let r=this.getters.getPivot(t),i=wj(r,n.domain).colDomain,a=r.definition.sortedColumn;return a?.measure===n.measure&&T(a.domain,i)?a.order:`none`}refreshPivot(e){this.getters.getPivot(e).init({reload:!0})}setupPivot(e,{recreate:t}={recreate:!1}){let n=x(this.getters.getPivotCoreDefinition(e));if(e in this.pivots)t&&this.pivots[e].onDefinitionChange(n);else{let t=ZL(eM.get(n.type).ui);this.pivots[e]=new t(e,this.custom,{definition:n,getters:this.getters})}}_getUnusedPivotsInFormulas(){if(this.unusedPivotsInFormulas!==void 0)return this.unusedPivotsInFormulas;let e=new Set(this.getters.getPivotIds());for(let t of this.getters.getSheetIds())for(let n of this.getters.getCells(t)){let t=this.getters.getCellPosition(n.id),r=this.getPivotIdFromPosition(t);if(r&&(e.delete(r),!e.size))return this.unusedPivotsInFormulas=[],[]}return this.unusedPivotsInFormulas=[...e],this.unusedPivotsInFormulas}getAllPivotArrayFormulas(){let e=[];for(let t of this.getters.getCellsWithTrackedFormula(`PIVOT`)){let n=this.getters.getCellPosition(t);if(this.getters.getEvaluatedCell(n).type===V.error)continue;let r=this.getPivotStyleAtPosition(n);r&&e.push({position:n,...r})}return e}getPivotStyleAtPosition(e){e=this.getters.getArrayFormulaSpreadingOn(e)||e;let t=this.getters.getCell(e);if(!t||!t.isFormula||!this.isMainFunctionPivotSpreadFunction(t))return;let n=this.getFirstPivotFunction(e.sheetId,t.compiledFormula);if(!n||n.functionName!==`PIVOT`)return;let r=n.args[0];if(!r)return;let i=this.getters.getPivotId(r.toString());if(i)return{pivotStyle:nS(this.getters.getPivotCoreDefinition(i),Kb(n.args[1]),Kb(n.args[2]),Kb(n.args[3]),Kb(n.args[4]),Kb(n.args[5]),this.getters.getLocale()),pivotId:i}}isMainFunctionPivotSpreadFunction(e){return e.compiledFormula.isFirstNonWhitespaceSymbol(`PIVOT`)}};let tR=new B;tR.add(`ALPHANUMERIC_INCREMENT_MODIFIER`,{apply:(e,t)=>{e.current+=e.increment;let n=Math.abs(e.current).toString();n=`0`.repeat(Math.max(e.numberPostfixLength-n.length,0))+n;let r=`${e.prefix}${n}`;return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:r},tooltip:{props:{content:r}}}}}).add(`INCREMENT_MODIFIER`,{apply:(e,t,n)=>{e.current+=e.increment;let r=e.current.toString(),i=n.getLocale(),a=R(e.current,{format:t.cell?.format,locale:i});return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:r},tooltip:r?{props:{content:a}}:void 0}}}).add(`DATE_INCREMENT_MODIFIER`,{apply:(e,t,n)=>{let r=aa(e.current,n.getLocale());r.setFullYear(r.getFullYear()+e.increment.years||0),r.setMonth(r.getMonth()+e.increment.months||0),r.setDate(r.getDate()+e.increment.days||0);let i=ii(r);e.current=i;let a=n.getLocale(),o=R(i,{format:t.cell?.format,locale:a});return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:i.toString()},tooltip:i?{props:{content:o}}:void 0}}}).add(`COPY_MODIFIER`,{apply:(e,t,n)=>{let r=t.cell?.isFormula?t.cell?.compiledFormula.toFormulaString(n):t.cell?.content||``,i={locale:n.getLocale(),format:t.cell?.format},a={sheetId:t.sheetId,col:t.col,row:t.row};return{cellData:{border:t.border,style:t.cell&&t.cell.style,format:t.cell&&t.cell.format,content:r},tooltip:r?{props:{content:t.cell?eu(t.cell,i,a).formattedValue:``}}:void 0}}}).add(`FORMULA_MODIFIER`,{apply:(e,t,n,r)=>{e.current+=e.increment;let i=0,a=0;switch(r){case We.UP:i=0,a=-e.current;break;case We.DOWN:i=0,a=e.current;break;case We.LEFT:i=-e.current,a=0;break;case We.RIGHT:i=e.current,a=0;break}let o=t.cell;if(!o||!o.isFormula)return{cellData:{}};let s=t.sheetId,c=n.getTranslatedCellFormula(s,i,a,o.compiledFormula);return{cellData:{border:t.border,style:o.style,format:o.format,content:c},tooltip:c?{props:{content:c}}:void 0}}});let nR=new B,rR=/(\d+)$/,iR=/^(.*\D+)/,aR=/^(.*\D+)(\d+)$/,oR=/^0*/;function sR(e,t,n){let r=[],i=!1;for(let a of t){a===e&&(i=!0);let t=a===void 0||a.isFormula?void 0:eu(a,{locale:L,format:a.format});if(t&&n(t))r.push(t);else{if(i)return r;r=[]}}return r}function cR(e){let t=[],n=e[0];for(let r=1;r<e.length;r++){let i=e[r];t.push(i-n),n=i}return t.reduce((e,t)=>e+t,0)/t.length}function lR(e){let t=1;return e.length>=2&&(t=cR(e)*e.length),t}function uR(e){return e.length<2?e[0]||{years:0,months:0,days:0}:e.every(t=>t.years===e[0].years&&t.months===e[0].months&&t.days===e[0].days)?e[0]:void 0}function dR(e){if(e.length<2)return 1;let t=e.map(e=>aa(e,L)),n=uR(fR(t));if(n===void 0)return;let r=Object.values(n).filter(e=>e!==0).length===1,i=Object.values(n).every(e=>e===0);if(!r||i){let n=t.map((e,n)=>{if(n===0)return 0;let r=t[n-1];return Math.floor(e.getTime())-Math.floor(r.getTime())}).slice(1);if(n.every(e=>e===n[0]))return e.length*(e[1]-e[0])}return{years:n.years*e.length,months:n.months*e.length,days:n.days*e.length}}nR.add(`simple_value_copy`,{condition:(e,t)=>t.length===1&&!e.isFormula&&!(e.format&&To(e.format)),generateRule:()=>({type:`COPY_MODIFIER`}),sequence:10}).add(`increment_alphanumeric_value`,{condition:e=>!e.isFormula&&eu(e,{locale:L}).type===V.text&&aR.test(e.content),generateRule:(e,t,n)=>{let r=parseInt(e.content.match(rR)[0]),i=e.content.match(iR)[0],a=sR(e,t,e=>e.type===V.text&&aR.test(e.value)).filter(e=>i===(e.value??``).toString().match(iR)[0]).map(e=>(e.value??``).toString().match(rR)[0]),o=a.reduce((e,t)=>{let n=t.match(oR)[0].length;return n>e[1]?[t,n]:e},[a[0],0]),s=o[1]?o[0].length:0,c=lR(a.map(e=>parseInt(e)));return[`up`,`left`].includes(n)&&a.length===1&&(c=-c),{type:`ALPHANUMERIC_INCREMENT_MODIFIER`,prefix:i,current:r,increment:c,numberPostfixLength:s}},sequence:15}).add(`copy_text`,{condition:e=>!e.isFormula&&eu(e,{locale:L}).type===V.text,generateRule:()=>({type:`COPY_MODIFIER`}),sequence:20}).add(`update_formula`,{condition:e=>e.isFormula,generateRule:(e,t)=>({type:`FORMULA_MODIFIER`,increment:t.length,current:0}),sequence:30}).add(`increment_dates`,{condition:(e,t)=>!e.isFormula&&eu(e,{locale:L}).type===V.number&&!!e.format&&To(e.format),generateRule:(e,t)=>{let n=dR(sR(e,t,e=>e.type===V.number&&!!e.format&&To(e.format)).map(e=>Number(e.value)));if(n===void 0)return{type:`COPY_MODIFIER`};let r=eu(e,{locale:L});return typeof n==`object`?{type:`DATE_INCREMENT_MODIFIER`,increment:n,current:r.type===V.number?r.value:0}:{type:`INCREMENT_MODIFIER`,increment:n,current:r.type===V.number?r.value:0}},sequence:25}).add(`increment_number`,{condition:e=>!e.isFormula&&eu(e,{locale:L}).type===V.number,generateRule:(e,t,n)=>{let r=sR(e,t,e=>e.type===V.number&&!To(e.format||``)).map(e=>Number(e.value)),i=lR(r);[`up`,`left`].includes(n)&&r.length===1&&(i=-i);let a=eu(e,{locale:L});return{type:`INCREMENT_MODIFIER`,increment:i,current:a.type===V.number?a.value:0}},sequence:40});function fR(e){return e.length<2?[{years:0,months:0,days:0}]:e.map((t,n)=>{if(n===0)return{years:0,months:0,days:0};let r=k.fromTimestamp(e[n-1].getTime()),i=fi(r,t),a=ui(r,t)%12;return r.setFullYear(r.getFullYear()+i),r.setMonth(r.getMonth()+a),{years:i,months:a,days:di(r,t)}}).slice(1)}var pR=class extends zg{static layers=[];getters;ui;selection;dispatch;canDispatch;constructor({getters:e,stateObserver:t,dispatch:n,canDispatch:r,uiActions:i,selection:a}){super(t),this.getters=e,this.ui=i,this.selection=a,this.dispatch=n,this.canDispatch=r}drawLayer(e,t){}},mR=class{cells;getters;index=0;direction;constructor(e,t,n){this.cells=e,this.getters=t,this.direction=n}next(){let e=this.cells[this.index++%this.cells.length],t=e.rule,{cellData:n,tooltip:r}=tR.get(t.type).apply(t,e.data,this.getters,this.direction);return{cellData:n,tooltip:r,origin:{col:e.data.col,row:e.data.row}}}},hR=class extends pR{static layers=[`Autofill`];static getters=[`getAutofillTooltip`];autofillZone;steps;lastCellSelected={};direction;tooltip;allowDispatch(e){switch(e.type){case`AUTOFILL_SELECT`:let t=this.getters.getActiveSheetId();return this.lastCellSelected.col=e.col===-1?this.lastCellSelected.col:S(e.col,0,this.getters.getNumberCols(t)),this.lastCellSelected.row=e.row===-1?this.lastCellSelected.row:S(e.row,0,this.getters.getNumberRows(t)),this.lastCellSelected.col!==void 0&&this.lastCellSelected.row!==void 0?H.Success:H.InvalidAutofillSelection}return H.Success}handle(e){switch(e.type){case`AUTOFILL`:this.autofill(!0);break;case`AUTOFILL_SELECT`:this.select(e.col,e.row);break;case`AUTOFILL_AUTO`:this.autofillAuto();break}}getAutofillTooltip(){return this.tooltip}autofill(e){if(!this.autofillZone||!this.steps||this.direction===void 0){this.tooltip=void 0;return}let t=this.getters.getSelectedZone(),n=this.autofillZone,r=[];switch(this.direction){case We.DOWN:for(let e=t.left;e<=t.right;e++){let i=[];for(let n=t.top;n<=t.bottom;n++)i.push(E(e,n));let a=this.createGenerator(i);for(let t=n.top;t<=n.bottom;t++)r.push(this.computeNewCell(a,e,t))}break;case We.UP:for(let e=t.left;e<=t.right;e++){let i=[];for(let n=t.bottom;n>=t.top;n--)i.push(E(e,n));let a=this.createGenerator(i);for(let t=n.bottom;t>=n.top;t--)r.push(this.computeNewCell(a,e,t))}break;case We.LEFT:for(let e=t.top;e<=t.bottom;e++){let i=[];for(let n=t.right;n>=t.left;n--)i.push(E(n,e));let a=this.createGenerator(i);for(let t=n.right;t>=n.left;t--)r.push(this.computeNewCell(a,t,e))}break;case We.RIGHT:for(let e=t.top;e<=t.bottom;e++){let i=[];for(let n=t.left;n<=t.right;n++)i.push(E(n,e));let a=this.createGenerator(i);for(let t=n.left;t<=n.right;t++)r.push(this.computeNewCell(a,t,e))}break}if(e){let e={},t={},n={},i=this.getters.getActiveSheetId();for(let a of r)this.collectBordersData(a,e),this.autofillMerge(i,a),this.autofillCell(i,a),this.collectConditionalFormatsData(i,a,t),this.collectDataValidationsData(i,a,n);this.autofillBorders(i,e),this.autofillConditionalFormats(i,t),this.autofillDataValidations(i,n),this.autofillZone=void 0,this.selection.resizeAnchorZone(this.direction,this.steps),this.lastCellSelected={},this.direction=void 0,this.steps=0,this.tooltip=void 0}}collectBordersData(e,t){let n=JSON.stringify(e.border);n in t||(t[n]=[]),t[n].push(D({col:e.col,row:e.row}))}collectConditionalFormatsData(e,t,n){let{originCol:r,originRow:i,col:a,row:o}=t,s=this.getters.getRulesByCell(e,r,i),c=E(a,o);for(let e of s)e.id in n||(n[e.id]=[]),n[e.id].push(c)}collectDataValidationsData(e,t,n){let{originCol:r,originRow:i,col:a,row:o}=t,s={sheetId:e,col:r,row:i},c=this.getters.getValidationRuleForCell(s);c&&(c.id in n||(n[c.id]=[]),n[c.id].push(D({col:a,row:o})))}autofillCell(e,t){this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t.col,row:t.row,content:t.content||``,style:t.style||null,format:t.format||``}),this.dispatch(`AUTOFILL_CELL`,t)}autofillBorders(e,t){for(let n in t){let r=n===`undefined`?void 0:JSON.parse(n);this.dispatch(`SET_BORDERS_ON_TARGET`,{sheetId:e,border:r,target:rn(t[n])})}}autofillConditionalFormats(e,t){for(let n in t){let r=t[n],i=this.getters.getConditionalFormats(e).find(e=>e.id===n);if(!i)continue;let a=this.getters.getAdaptedCfRanges(e,i,r.map(hn),[]);a&&this.dispatch(`ADD_CONDITIONAL_FORMAT`,{cf:{id:i.id,rule:i.rule,stopIfTrue:i.stopIfTrue},ranges:a,sheetId:e})}}autofillDataValidations(e,t){for(let n in t){let r=t[n],i=this.getters.getDataValidationRule(e,n);if(!i)continue;let a=rn(i.ranges.map(e=>e.zone).concat(r),[]);this.dispatch(`ADD_DATA_VALIDATION_RULE`,{rule:i,ranges:a.map(t=>this.getters.getRangeDataFromZone(e,t)),sheetId:e})}}select(e,t){let n=this.getters.getSelectedZone();if(jn(e,t,n)){this.autofillZone=void 0;return}switch(this.direction=this.getDirection(e,t),this.direction){case We.UP:this.saveZone(t,n.top-1,n.left,n.right),this.steps=n.top-t;break;case We.DOWN:this.saveZone(n.bottom+1,t,n.left,n.right),this.steps=t-n.bottom;break;case We.LEFT:this.saveZone(n.top,n.bottom,e,n.left-1),this.steps=n.left-e;break;case We.RIGHT:this.saveZone(n.top,n.bottom,n.right+1,e),this.steps=e-n.right;break}this.autofill(!1)}autofillAuto(){let e=this.getters.getActivePosition(),t=this.getters.getTable(e),n=t?t.range.zone.bottom:this.getAutofillAutoLastRow(),r=this.getters.getSelectedZone();for(let t=r.bottom+1;t<=n;t++)if(this.getters.getEvaluatedCell({...e,row:t}).type!==V.empty){n=t-1;break}n>r.bottom&&(this.select(e.col,n),this.autofill(!0))}getAutofillAutoLastRow(){let e=this.getters.getSelectedZone(),t=this.getters.getActiveSheetId(),n=e.left,r=e.bottom;if(n>0){let e={sheetId:t,col:n-1,row:r};for(;this.getters.getEvaluatedCell(e).type!==V.empty;)r+=1,e={sheetId:t,col:n-1,row:r}}if(r===e.bottom&&(n=e.right,n<=this.getters.getNumberCols(t))){let e={sheetId:t,col:n+1,row:r};for(;this.getters.getEvaluatedCell(e).type!==V.empty;)r+=1,e={sheetId:t,col:n+1,row:r}}return r-1}computeNewCell(e,t,n){let{cellData:r,tooltip:i,origin:a}=e.next(),{content:o,style:s,border:c,format:l}=r;return this.tooltip=i,{originCol:a.col,originRow:a.row,col:t,row:n,content:o,style:s,border:c,format:l}}getRule(e,t){let n=nR.getAll().sort((e,t)=>e.sequence-t.sequence).find(n=>n.condition(e,t));return n&&this.direction&&n.generateRule(e,t,this.direction)}createGenerator(e){let t=[],n=[],r=this.getters.getActiveSheetId();for(let t of e){let{col:e,row:i}=nn(t),a=this.getters.getCell({sheetId:r,col:e,row:i});n.push({col:e,row:i,cell:a,sheetId:r})}let i=n.map(e=>e.cell);for(let e of n){let n={type:`COPY_MODIFIER`};e&&e.cell&&(n=this.getRule(e.cell,i)||n);let r=this.getters.getCellBorder(e)??void 0;t.push({data:{...e,border:r},rule:n})}return new mR(t,this.getters,this.direction)}saveZone(e,t,n,r){this.autofillZone={top:e,bottom:t,left:n,right:r}}getDirection(e,t){let n=this.getters.getSelectedZone(),r={up:{number:n.top-t,value:We.UP},down:{number:t-n.bottom,value:We.DOWN},left:{number:n.left-e,value:We.LEFT},right:{number:e-n.right,value:We.RIGHT}};if(Object.values(r).map(e=>+(e.number>0)).reduce((e,t)=>e+t)===1)return Object.values(r).find(e=>+(e.number>0)).value;let i=r.up.number>0?`up`:`down`,a=r.left.number>0?`left`:`right`;return Math.abs(r[i].number)>=Math.abs(r[a].number)?r[i].value:r[a].value}autofillMerge(e,t){let{originCol:n,originRow:r,col:i,row:a}=t,o={sheetId:e,col:i,row:a},s={sheetId:e,col:n,row:r};if(this.getters.isInMerge(o)&&!this.getters.isInMerge(s)){let t=this.getters.getMerge(o);t&&this.dispatch(`REMOVE_MERGE`,{sheetId:e,target:[t]})}let c=this.getters.getMerge(s);c?.left===n&&c?.top===r&&this.dispatch(`ADD_MERGE`,{sheetId:e,target:[{top:a,bottom:a+c.bottom-c.top,left:i,right:i+c.right-c.left}]})}drawLayer(e){if(!this.autofillZone)return;let{ctx:t,thinLineWidth:n,viewports:r,sheetId:i}=e,{x:a,y:o,width:s,height:c}=r.getVisibleRect(i,this.autofillZone);s>0&&c>0&&(t.strokeStyle=`black`,t.lineWidth=n,t.setLineDash([3]),t.strokeRect(a,o,s,c),t.setLineDash([]))}},gR=class extends pR{static getters=[`getAutomaticSums`];handle(e){switch(e.type){case`SUM_SELECTION`:let e=this.getters.getActiveSheetId(),{zones:t,anchor:n}=this.getters.getSelection();for(let r of t){let t=this.getAutomaticSums(e,r,n.cell);this.dispatchCellUpdates(e,t)}break}}getAutomaticSums(e,t,n){return this.shouldFindData(e,t)?this.sumAdjacentData(e,t,n):this.sumData(e,t)}sumData(e,t){let n=this.dimensionsToSum(e,t),r=this.sumDimensions(e,t,n).filter(({zone:t})=>!this.getters.isEmpty(e,t));return n.has(`ROW`)&&n.has(`COL`)&&r.push(this.sumTotal(t)),r}sumAdjacentData(e,t,n){let{col:r,row:i}=jn(n.col,n.row,t)?n:{col:t.left,row:t.top},a=this.findAdjacentData(e,r,i);return a?this.getters.isSingleCellOrMerge(e,t)||Pn(Tn(a,t))?[{position:{col:r,row:i},zone:a}]:this.sumDimensions(e,Tn(a,t),this.transpose(this.dimensionsToSum(e,t))):[]}findAdjacentData(e,t,n){let r=this.getters.getSheet(e),i=this.getters.getMainCellPosition({sheetId:e,col:t,row:n}),a=this.findSuitableZoneToSum(r,i.col,i.row);if(a)return this.getters.expandZone(e,a)}findSuitableZoneToSum(e,t,n){let r=this.getters.getEvaluatedCell({sheetId:e.id,col:t,row:n-1}),i=this.getters.getEvaluatedCell({sheetId:e.id,col:t-1,row:n});if(this.isNumber(i)&&!this.isNumber(r))return this.findHorizontalZone(e,t,n);let a=this.findVerticalZone(e,t,n);if(this.isZoneValid(a))return a;let o=this.findHorizontalZone(e,t,n);if(this.isZoneValid(o))return o}findVerticalZone(e,t,n){let r={top:0,bottom:n-1,left:t,right:t},i=this.reduceZoneStart(e,r,r.bottom);return{...r,top:i}}findHorizontalZone(e,t,n){let r={top:n,bottom:n,left:0,right:t-1},i=this.reduceZoneStart(e,r,r.right);return{...r,left:i}}reduceZoneStart(e,t,n){let r=this.getters.getEvaluatedCellsInZone(e.id,t),i=C(n,-1,-1),a=Lt(i.filter(e=>r[e]&&!r[e].isAutoSummable)),o=$e(i.filter(e=>this.isNumber(r[e])))[0]||[];return Lt(o)<a?1/0:Rt(o)}shouldFindData(e,t){return this.getters.isEmpty(e,t)||this.getters.isSingleCellOrMerge(e,t)}isNumber(e){return e.type===V.number&&!(e.format&&To(e.format))}isZoneValid(e){return e.bottom>=e.top&&e.right>=e.left}lastColIsEmpty(e,t){return this.getters.isEmpty(e,{...t,left:t.right})}lastRowIsEmpty(e,t){return this.getters.isEmpty(e,{...t,top:t.bottom})}dimensionsToSum(e,t){let n=new Set;return Pn(t)?(n.add(Nn(t).numberOfCols===1?`COL`:`ROW`),n):(this.lastColIsEmpty(e,t)&&n.add(`ROW`),this.lastRowIsEmpty(e,t)&&n.add(`COL`),n.size===0&&n.add(`COL`),n)}sumDimensions(e,t,n){return[...n.has(`COL`)?this.sumColumns(t,e):[],...n.has(`ROW`)?this.sumRows(t,e):[]]}sumTotal(e){let{bottom:t,right:n}=e;return{position:{col:n,row:t},zone:{...e,top:t,right:n-1}}}sumColumns(e,t){let n=this.nextEmptyRow(t,{...e,bottom:e.bottom-1});return e={...e,bottom:Math.min(e.bottom,n.bottom-1)},In(n).map(t=>({position:t,zone:{...e,right:t.col,left:t.col}}))}sumRows(e,t){let n=this.nextEmptyCol(t,{...e,right:e.right-1});return e={...e,right:Math.min(e.right,n.right-1)},In(n).map(t=>({position:t,zone:{...e,top:t.row,bottom:t.row}}))}dispatchCellUpdates(e,t){for(let n of t){let{col:t,row:r}=n.position;this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t,row:r,content:`=SUM(${this.getters.zoneToXC(e,n.zone)})`})}}nextEmptyRow(e,t){let n=t.bottom+1,{left:r,right:i}=t;for(;!this.getters.isEmpty(e,{bottom:n,top:n,left:r,right:i});)n++;return{...t,top:n,bottom:n}}nextEmptyCol(e,t){let n=t.right+1,{top:r,bottom:i}=t;for(;!this.getters.isEmpty(e,{left:n,right:n,top:r,bottom:i});)n++;return{...t,left:n,right:n}}transpose(e){return new Set([...e.values()].map(e=>e===`COL`?`ROW`:`COL`))}},_R=class extends pR{static getters=[`getCellTableStyle`,`getCellTableBorder`];tableStyles={};handle(e){if(Nl.has(e.type)||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e)||e.type===`EVALUATE_CELLS`){this.tableStyles={};return}if(yR(e)){`sheetId`in e?delete this.tableStyles[e.sheetId]:this.tableStyles={};return}}finalize(){for(let e of this.getters.getSheetIds()){this.tableStyles[e]||(this.tableStyles[e]={});for(let t of this.getters.getTables(e))this.tableStyles[e][t.id]||(this.tableStyles[e][t.id]=this.computeTableStyle(e,t))}}getCellTableStyle(e){let t=this.getters.getTable(e);if(t)return this.tableStyles[e.sheetId][t.id]().styles[e.col]?.[e.row]}getCellTableBorder(e){let t=this.getters.getTable(e);if(t)return this.tableStyles[e.sheetId][t.id]().borders[e.col]?.[e.row]}computeTableStyle(e,t){return _t(()=>{let n=this.getters.getTableStyle(t.config.styleId),{tableMetaData:r,config:i}=this.getTableMetaData(e,t),a=LM(i,n,r),o=this.getTableMapping(e,t),s={borders:{},styles:{}};for(let e=0;e<r.numberOfCols;e++){let t=o.colMapping[e];s.borders[t]={},s.styles[t]={};for(let n=0;n<r.numberOfRows;n++){let r=o.rowMapping[n];s.borders[t][r]=a.borders[e][n],s.styles[t][r]=a.styles[e][n]}}return s})}getTableMetaData(e,t){let{config:n,numberOfCols:r,numberOfRows:i}=this.getTableRuntimeConfig(e,t);if(!t.isPivotTable)return{tableMetaData:{numberOfCols:r,numberOfRows:i,mode:`table`},config:n};let a={sheetId:e,col:t.range.zone.left,row:t.range.zone.top},o=this.getters.getPivotStyleAtPosition(a);if(!o)throw Error(`No dynamic pivot info found at pivot table position`);let s=this.getters.getPivot(o.pivotId),c=o.pivotStyle,l=s.getExpandedTableStructure().getNumberOfRowGroupBys(),u=s.getCollapsedTableStructure(),d=u.getPivotCells(c),f=new Set,p=new Set,m=new Set,h=u.getNumberOfRowGroupBys();if(c.tabularForm){let n=0;for(let r=0;r<h;r++){if(this.getters.isColHidden(e,r+t.range.zone.left)){n++;continue}r===0&&l>1?f.add(0):r%2==1?p.add(r-n):r%2==0&&m.add(r-n)}}else{let n=0;for(let r=0;r<d[0].length;r++){if(this.getters.isRowHidden(e,r+t.range.zone.top)){n++;continue}let i=d[0][r];i.type!==`HEADER`||i.domain.length===0||(i.domain.length===1&&l>1?f.add(r-n):i.domain.length%2==0&&l>i.domain.length?p.add(r-n):i.domain.length%2==1&&l>i.domain.length&&m.add(r-n))}}return{tableMetaData:{mode:`pivot`,numberOfCols:r,numberOfRows:i,mainSubHeaderRows:f,firstAlternatingSubHeaderIndexes:p,secondAlternatingSubHeaderIndexes:m,measureRow:n.numberOfHeaders&&c.displayMeasuresRow&&!this.getters.isRowHidden(e,n.numberOfHeaders-1+t.range.zone.top)?n.numberOfHeaders-1:void 0,isTabular:c.tabularForm},config:n}}getTableRuntimeConfig(e,t){let n=t.range.zone,r={...t.config},i=n.right-n.left+1,a=n.bottom-n.top+1;for(let i=n.top;i<=n.bottom;i++)this.getters.isRowHidden(e,i)&&(a--,i-n.top<t.config.numberOfHeaders&&(r.numberOfHeaders--,r.numberOfHeaders<0&&(r.numberOfHeaders=0)),i===n.bottom&&(r.totalRow=!1));for(let t=n.left;t<=n.right;t++)this.getters.isColHidden(e,t)&&(i--,t===n.left&&(r.firstColumn=!1),t===n.right&&(r.lastColumn=!1));return{config:r,numberOfCols:i,numberOfRows:a}}getTableMapping(e,t){let n={},r={},i=0,a=0,o=t.range.zone;for(let t=o.left;t<=o.right;t++)if(!this.getters.isColHidden(e,t)){n[i]=t,i++;for(let t=o.top;t<=o.bottom;t++)this.getters.isRowHidden(e,t)||(r[a]=t,a++)}return{colMapping:n,rowMapping:r}}};let vR=new Set([`HIDE_COLUMNS_ROWS`,`UNHIDE_COLUMNS_ROWS`,`UNFOLD_HEADER_GROUP`,`UNGROUP_HEADERS`,`FOLD_HEADER_GROUP`,`FOLD_ALL_HEADER_GROUPS`,`UNFOLD_ALL_HEADER_GROUPS`,`FOLD_HEADER_GROUPS_IN_ZONE`,`UNFOLD_HEADER_GROUPS_IN_ZONE`,`CREATE_TABLE`,`UPDATE_TABLE`,`UPDATE_FILTER`,`REMOVE_TABLE`,`RESIZE_TABLE`,`CREATE_TABLE_STYLE`,`REMOVE_TABLE_STYLE`]);function yR(e){return vR.has(e.type)}var bR=class extends pR{static getters=[`getCellComputedBorder`,`getCellComputedStyle`];styles=new dN;borders=new dN;handle(e){if(Nl.has(e.type)||e.type===`UPDATE_CELL`||e.type===`SET_FORMATTING`||e.type===`CLEAR_FORMATTING`||e.type===`ADD_DATA_VALIDATION_RULE`||e.type===`REMOVE_DATA_VALIDATION_RULE`||e.type===`EVALUATE_CELLS`){this.styles=new dN,this.borders=new dN;return}if(yR(e)){`sheetId`in e?(this.styles.clearSheet(e.sheetId),this.borders.clearSheet(e.sheetId)):(this.styles=new dN,this.borders=new dN);return}if(Il.has(e.type)){this.styles=new dN;return}if(Ll.has(e.type)){this.borders=new dN;return}}getCellComputedBorder(e){let t=this.borders.get(e);return t===void 0&&(t=this.computeCellBorder(e),this.borders.set(e,t)),t}getCellComputedStyle(e){let t=this.styles.get(e);return t===void 0&&(t=this.computeCellStyle(e),this.styles.set(e,t)),t}computeCellStyle(e){let t=this.getters.getEvaluatedCell(e),n=this.getComputedStyle(e);return t.link&&!n.textColor&&(n.textColor=re),n}getComputedStyle(e){let t=this.getters.getCell(e),n=this.getters.getCellConditionalFormatStyle(e),r=this.getters.getCellTableStyle(e),i=this.getters.getDataValidationCellStyle(e);return{...Ct(r),...Ct(i),...Ct(t?.style),...Ct(n)}}exportForExcel(e){for(let t of e.sheets){let n={},r=[];for(let e in t.cells){let i={sheetId:t.id,...nn(e)},a=this.getters.getEvaluatedCell(i),o=this.getComputedStyle(i);if(!a.link||o.textColor)continue;let s=Object.keys(t.styles).find(t=>Mn(hn(e),hn(t)));s?(n[s]||(n[s]=[]),n[s].push(e)):r.push(e)}for(let[r,i]of Object.entries(n)){let n=t.styles[r];if(e.styles[n].textColor)continue;let a=e.styles[n],o=i.map(hn),s=rn([hn(r)],o);delete t.styles[r];for(let e of s)t.styles[bn(e)]=n;let c=Kg({...a,textColor:re},e.styles);for(let e of i)t.styles[e]=c}for(let n of r){let r=this.getters.getCell({sheetId:t.id,...nn(n)});t.styles[n]=Kg({...r?.style,textColor:re},e.styles)}}}computeCellBorder(e){let t=this.getters.getCellBorder(e)||{},n={...Ct(this.getters.getCellTableBorder(e)||{}),...Ct(t)};return ft(n)?null:n}},xR=class extends pR{static getters=[`hasBooleanValidationInZones`];handle(e){switch(e.type){case`TOGGLE_CHECKBOX`:this.toggleCheckbox(e.sheetId,e.target);break}}hasBooleanValidationInZones(e){let t=this.getters.getActiveSheetId();for(let n of e)for(let e=n.left;e<=n.right;e++)for(let r=n.top;r<=n.bottom;r++)if(this.getters.isCellValidCheckbox({col:e,row:r,sheetId:t}))return!0;return!1}toggleCheckbox(e,t){for(let n of t)for(let t=n.left;t<=n.right;t++)for(let r=n.top;r<=n.bottom;r++){let n={col:t,row:r,sheetId:e};if(this.getters.isCellValidCheckbox(n)){let e=this.getters.getEvaluatedCell(n).value?`FALSE`:`TRUE`;this.dispatch(`UPDATE_CELL`,{...n,content:e})}}}};function SR(e){let t=Uc.get(e.type)?.(e),n=TR(e);if(!t&&!n)return;let r=t||wR(),i=n||(e=>e),a=CR(r.applyChange);return{applyChange:a,adaptRangeString:(e,t)=>ol(e,t,r),adaptFormulaString:(e,t)=>il(e,t,r,i),adaptCompiledFormula:e=>e.adaptCompiledFormula(a,i)}}function CR(e){return t=>{let n=e(t);return n.changeType!==`NONE`&&!vn(n.range.zone)?{range:n.range,changeType:`REMOVE`}:n}}function wR(){return{applyChange:e=>({changeType:`NONE`,range:e}),sheetId:`ignoredSheetId`,sheetName:{old:`ignoredSheetName`,current:`ignoredSheetName`}}}function TR(e){if(e.type!==`UPDATE_NAMED_RANGE`)return;let t=e.oldRangeName.toLowerCase();return n=>n.toLowerCase()===t?e.newRangeName:n}let ER=new class extends B{addTransformation(e,t,n){this.content[e]||(this.content[e]=new Map);for(let r of t)this.content[e].set(r,n);return this}getTransformation(e,t){return this.content[t]&&this.content[t].get(e)}},DR=new class extends B{add(e,t){return super.add(e,t),this}replace(e,t){return super.replace(e,t),this}get(e){return this.content[e]}};ER.addTransformation(`ADD_COLUMNS_ROWS`,[`ADD_COLUMNS_ROWS`],BR),ER.addTransformation(`REMOVE_COLUMNS_ROWS`,[`ADD_COLUMNS_ROWS`],BR),ER.addTransformation(`DELETE_SHEET`,[`MOVE_RANGES`],jR),ER.addTransformation(`DELETE_FIGURE`,[`UPDATE_FIGURE`,`UPDATE_CHART`,`UPDATE_CAROUSEL`],MR),ER.addTransformation(`DELETE_CHART`,[`UPDATE_CHART`],NR),ER.addTransformation(`DELETE_CHART`,[`UPDATE_CAROUSEL`],PR),ER.addTransformation(`CREATE_SHEET`,[`CREATE_SHEET`],FR),ER.addTransformation(`ADD_MERGE`,[`ADD_MERGE`,`REMOVE_MERGE`],IR),ER.addTransformation(`ADD_COLUMNS_ROWS`,[`FREEZE_COLUMNS`,`FREEZE_ROWS`],LR),ER.addTransformation(`REMOVE_COLUMNS_ROWS`,[`FREEZE_COLUMNS`,`FREEZE_ROWS`],LR),ER.addTransformation(`ADD_COLUMNS_ROWS`,[`UPDATE_TABLE`],RR),ER.addTransformation(`REMOVE_COLUMNS_ROWS`,[`UPDATE_TABLE`],RR),ER.addTransformation(`REMOVE_TABLE_STYLE`,[`CREATE_TABLE`,`UPDATE_TABLE`],zR),ER.addTransformation(`ADD_COLUMNS_ROWS`,[`GROUP_HEADERS`,`UNGROUP_HEADERS`,`FOLD_HEADER_GROUP`,`UNFOLD_HEADER_GROUP`],VR),ER.addTransformation(`REMOVE_COLUMNS_ROWS`,[`GROUP_HEADERS`,`UNGROUP_HEADERS`,`FOLD_HEADER_GROUP`,`UNFOLD_HEADER_GROUP`],VR),ER.addTransformation(`REMOVE_PIVOT`,[`RENAME_PIVOT`,`DUPLICATE_PIVOT`,`INSERT_PIVOT`,`UPDATE_PIVOT`],AR),ER.addTransformation(`DELETE_SHEET`,[`ADD_PIVOT`,`UPDATE_PIVOT`],kR),ER.addTransformation(`ADD_COLUMNS_ROWS`,[`ADD_PIVOT`,`UPDATE_PIVOT`],OR),ER.addTransformation(`REMOVE_COLUMNS_ROWS`,[`ADD_PIVOT`,`UPDATE_PIVOT`],OR),ER.addTransformation(`UPDATE_NAMED_RANGE`,[`UPDATE_NAMED_RANGE`,`DELETE_NAMED_RANGE`],HR);function OR(e,t){if(e.pivot.type!==`SPREADSHEET`||e.pivot.dataSet?.sheetId!==t.sheetId)return e;let n=rr(e.pivot.dataSet.zone,t),r=n?{...e.pivot.dataSet,zone:n}:void 0;return{...e,pivot:{...e.pivot,dataSet:r}}}function kR(e,t){return e.pivot.type===`SPREADSHEET`&&e.pivot.dataSet?.sheetId===t.sheetId?{...e,pivot:{...e.pivot,dataSet:void 0}}:e}function AR(e,t){if(e.pivotId!==t.pivotId)return e}function jR(e,t){let n=t.sheetId;if(!(e.targetSheetId===n||e.sheetId===n))return e}function MR(e,t){if(e.figureId!==t.figureId)return e}function NR(e,t){if(e.chartId!==t.chartId)return e}function PR(e,t){return{...e,definition:{...e.definition,items:e.definition.items.filter(e=>!(e.type===`chart`&&e.chartId===t.chartId))}}}function FR(e,t){return e.sheetId===t.sheetId&&(e={...e,sheetId:`${e.sheetId}~`}),e.name===t.name?{...e,name:e.name?.match(/\d+/)?e.name.replace(/\d+/,e=>(parseInt(e)+1).toString()):`${e.name}~`,position:e.position+1}:e}function IR(e,t){if(e.sheetId!==t.sheetId)return e;let n=[];for(let r of e.target)t.target.every(e=>!kn(r,e))&&n.push(r);if(n.length)return{...e,target:n}}function LR(e,t){if(e.sheetId!==t.sheetId||(e.type===`FREEZE_COLUMNS`?`COL`:`ROW`)!==t.dimension)return e;let n=e.quantity;if(t.type===`REMOVE_COLUMNS_ROWS`){let e=[...t.elements].sort((e,t)=>t-e);for(let t of e)n>t&&n--}if(t.type===`ADD_COLUMNS_ROWS`){let e=t.position===`before`?t.base-1:t.base;n=n>e?n+t.quantity:n}return n>0?{...e,quantity:n}:void 0}function RR(e,t){if(e.sheetId!==t.sheetId)return e;let n=rr(e.zone,t);if(!n)return;let r=e.newTableRange?ir(e.newTableRange,t):void 0;return{...e,newTableRange:r,zone:n}}function zR(e,t){return e.config?.styleId===t.tableStyleId?{...e,config:{...e.config,styleId:Ay.styleId}}:e}function BR(e,t){if(e.sheetId!==t.sheetId||e.dimension!==t.dimension)return e;let n;if(t.type===`REMOVE_COLUMNS_ROWS`?n=$c(t.elements,[e.base])[0]:t.type===`ADD_COLUMNS_ROWS`&&(n=Qc(yt(t.position,t.base),t.quantity,[e.base])[0]),n!==void 0)return{...e,base:n}}function VR(e,t){if(e.sheetId!==t.sheetId||e.dimension!==t.dimension)return e;let n=C(e.start,e.end+1),r=[];if(t.type===`REMOVE_COLUMNS_ROWS`?r=$c(t.elements,n):t.type===`ADD_COLUMNS_ROWS`&&(r=Qc(yt(t.position,t.base),t.quantity,n)),r.length!==0)return{...e,start:Math.min(...r),end:Math.max(...r)}}function HR(e,t){return t.newRangeName===t.oldRangeName?e:e.type===`DELETE_NAMED_RANGE`&&e.name===t.oldRangeName?{...e,name:t.newRangeName}:e.type===`UPDATE_NAMED_RANGE`&&e.oldRangeName===t.oldRangeName?{...e,oldRangeName:t.newRangeName}:e}function UR(e,{adaptFormulaString:t}){let n=e.content&&t(e.sheetId,e.content);return{...e,content:n}}DR.add(`UPDATE_CELL`,UR);function WR(e,{adaptRangeString:t,adaptFormulaString:n}){let r=e.cf.rule;if(e={...e,cf:{...e.cf}},r.type===`CellIsRule`)e.cf.rule={...r,values:r.values.map(t=>n(e.sheetId,t))};else if(r.type===`ColorScaleRule`){let{minimum:t,maximum:i,midpoint:a}=r;e.cf.rule={...r,minimum:{...t,value:t.value&&n(e.sheetId,t.value)},maximum:{...i,value:i.value&&n(e.sheetId,i.value)},midpoint:a?{...a,value:n(e.sheetId,a.value)}:void 0}}else if(r.type===`IconSetRule`){let{upperInflectionPoint:t,lowerInflectionPoint:i}=r;e.cf.rule={...r,upperInflectionPoint:{...t,value:n(e.sheetId,t.value)},lowerInflectionPoint:{...i,value:n(e.sheetId,i.value)}}}else r.type===`DataBarRule`&&(e.cf.rule={...r,rangeValues:r.rangeValues?t(e.sheetId,r.rangeValues).range:void 0});return e}DR.add(`ADD_CONDITIONAL_FORMAT`,WR);function GR(e,{adaptFormulaString:t}){return e={...e,rule:{...e.rule,criterion:{...e.rule.criterion}}},e.rule.criterion.values=e.rule.criterion.values.map(n=>t(e.sheetId,n)),e}DR.add(`ADD_DATA_VALIDATION_RULE`,GR);function KR(e,{adaptFormulaString:t}){return e=x(e),e.pivot.measures.map(e=>{e.computedBy&&(e.computedBy.formula=t(e.computedBy.sheetId,e.computedBy.formula))}),e}DR.add(`ADD_PIVOT`,KR),DR.add(`UPDATE_PIVOT`,KR),DR.add(`CREATE_CHART`,qR),DR.add(`UPDATE_CHART`,qR);function qR(e,t){return{...e,definition:AD.transformDefinition(e.sheetId,e.definition,t)}}let JR=[{match:Dl,fn:$R},{match:kl,fn:ez},{match:Ml,fn:tz},{match:jl,fn:iz},{match:Ol,fn:rz},{match:Al,fn:nz}];function YR(e,t){let n=ER.getTransformation(e.type,t.type),r=n?n(e,t):QR(e,t);return r&&XR(r,t)}function XR(e,t){let n=DR.get(e.type);if(!n)return e;let r=SR(t);return r?n(e,r):e}function ZR(e,t){let n=[...e],r=new Set(ER.getKeys());for(let e of t)(r.has(e.type)||Uc.contains(e.type))&&(n=n.reduce((t,n)=>{let r=YR(n,e);return r&&t.push(r),t},[]));return n}function QR(e,t){for(let{match:n,fn:r}of JR)if(n(e)){let n=r(e,t);if(n===`SKIP_TRANSFORMATION`)continue;if(n===`IGNORE_COMMAND`)return;e=n}return e}function $R(e,t){if(!(`sheetId`in t))return e;let n=t.type===`DELETE_SHEET`&&t.sheetId,r=t.type===`LOCK_SHEET`&&t.sheetId;return e.sheetId===n||e.sheetId===r?`IGNORE_COMMAND`:e.type===`CREATE_SHEET`||t.type===`CREATE_SHEET`||e.sheetId!==t.sheetId?e:`SKIP_TRANSFORMATION`}function ez(e,t){let n=$R(e,t);if(n!==`SKIP_TRANSFORMATION`)return n===`IGNORE_COMMAND`?`IGNORE_COMMAND`:e;let r=[];for(let n of e.target){let e=rr(n,t);e&&r.push(e)}return r.length?{...e,target:r}:`IGNORE_COMMAND`}function tz(e,t){let n=$R(e,t);if(n!==`SKIP_TRANSFORMATION`)return n===`IGNORE_COMMAND`?`IGNORE_COMMAND`:e;let r=rr(e.zone,t);return r?{...e,zone:r}:`IGNORE_COMMAND`}function nz(e,t){if(!(`sheetId`in t))return e;let n=e.ranges.map(e=>ir(e,t)).filter(w);return n.length?{...e,ranges:n}:`IGNORE_COMMAND`}function rz(e,t){let n=$R(e,t);if(n!==`SKIP_TRANSFORMATION`)return n===`IGNORE_COMMAND`?`IGNORE_COMMAND`:e;if(t.type!==`ADD_COLUMNS_ROWS`&&t.type!==`REMOVE_COLUMNS_ROWS`)return`SKIP_TRANSFORMATION`;if(t.dimension!==e.dimension)return e;let r=[];return t.type===`REMOVE_COLUMNS_ROWS`?r=$c(t.elements,e.elements):t.type===`ADD_COLUMNS_ROWS`&&(r=Qc(yt(t.position,t.base),t.quantity,e.elements)),r.length===0?`IGNORE_COMMAND`:{...e,elements:r}}function iz(e,t){let n=$R(e,t);return n===`SKIP_TRANSFORMATION`?t.type===`ADD_COLUMNS_ROWS`||t.type===`REMOVE_COLUMNS_ROWS`?az(e,t):t.type===`ADD_MERGE`?oz(e,t):`SKIP_TRANSFORMATION`:n===`IGNORE_COMMAND`?`IGNORE_COMMAND`:e}function az(e,t){let n=t.dimension===`COL`?`col`:`row`,r=e[n];if(t.type===`REMOVE_COLUMNS_ROWS`){let e=[...t.elements].sort((e,t)=>t-e);if(e.includes(r))return`IGNORE_COMMAND`;for(let t of e)r>=t&&r--}return t.type===`ADD_COLUMNS_ROWS`&&(r>t.base||r===t.base&&t.position===`before`)&&(r+=t.quantity),{...e,[n]:r}}function oz(e,t){for(let n of t.target)if(!(e.col===n.left&&e.row===n.top)&&jn(e.col,e.row,n))return`IGNORE_COMMAND`;return e}var sz=class{id;clientId;_commands=[];_changes=[];constructor(e,t,n,r,i,a){this.rootCommand=r,this.timestamp=a,this.id=e,this.clientId=t,this._commands=[...n],this._changes=i?[...i]:[]}setChanges(e){this._changes=e}get commands(){return this._commands}get changes(){return this._changes}},cz=class extends Error{},lz=class extends br{clients={};clientId=`local`;pendingMessages=[];awaitingClientPosition;waitingAck=!1;waitingUndoRedoAck=!1;isReplayingInitialRevisions=!1;processedRevisions=new Set;lastRevisionMessage=void 0;lastLocalOperation;constructor(e,t,n=we,r){super(),this.revisions=e,this.transportService=t,this.serverRevisionId=n,this.commandSquisher=r}canApplyOptimisticUpdate(){return!this.waitingUndoRedoAck}save(e,t,n){if(!t.length||!n.length||!this.canApplyOptimisticUpdate())return;let r=new sz(G.uuidv4(),this.clientId,t,e,n,Date.now());this.revisions.append(r.id,r),e.type!==`REQUEST_REDO`&&(this.lastLocalOperation=r),this.trigger(`new-local-state-update`,{id:r.id}),this.sendUpdateMessage({type:`REMOTE_REVISION`,version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:r.id,clientId:r.clientId,commands:r.commands})}undo(e){this.waitingUndoRedoAck=!0,this.sendUpdateMessage({type:`REVISION_UNDONE`,version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:G.uuidv4(),undoneRevisionId:e})}redo(e){this.waitingUndoRedoAck=!0,this.sendUpdateMessage({type:`REVISION_REDONE`,version:1,serverRevisionId:this.serverRevisionId,nextRevisionId:G.uuidv4(),redoneRevisionId:e})}join(e){e?(this.clients[e.id]=e,this.clientId=e.id):(this.clients.local={id:`local`,name:`local`},this.clientId=`local`),this.transportService.onNewMessage(this.clientId,this.onMessageReceived.bind(this)),this.awaitingClientPosition&&=(this.move(this.awaitingClientPosition),void 0)}loadInitialMessages(e){let t=performance.now(),n=e.reduce((e,t)=>e+(t.type===`REMOTE_REVISION`?t.commands.length:1),0);this.isReplayingInitialRevisions=!0;for(let t of e)this.onMessageReceived(t);this.isReplayingInitialRevisions=!1,console.debug(`Replayed`,n,`commands in`,performance.now()-t,`ms`)}async leave(e){e&&Object.keys(this.clients).length===1&&this.lastRevisionMessage&&this.lastRevisionMessage?.type!==`SNAPSHOT_CREATED`&&await this.snapshot(e()),delete this.clients[this.clientId],this.transportService.leave(this.clientId),await this.sendToTransport({type:`CLIENT_LEFT`,clientId:this.clientId,version:1})}async snapshot(e){if(this.pendingMessages.length!==0)return;let t=G.uuidv4();await this.sendToTransport({type:`SNAPSHOT`,nextRevisionId:t,serverRevisionId:this.serverRevisionId,data:{...e,revisionId:t},version:1})}getCurrentClient(){return this.getClient(this.clientId)}getClient(e){let t=this.clients[e];if(!t)throw new cz(`The client left the session`);return t}getConnectedClients(){return new Set(Object.values(this.clients).filter(w))}getRevisionId(){return this.serverRevisionId}isFullySynchronized(){return this.pendingMessages.length===0}getLastLocalNonEmptyRevision(){return this.lastLocalOperation}move(e){if(!this.clients[this.clientId]){this.awaitingClientPosition=e;return}let t=this.clients[this.clientId]?.position;if(t?.col===e.col&&t.row===e.row&&t.sheetId===e.sheetId)return;let n=t?`CLIENT_MOVED`:`CLIENT_JOINED`,r=this.getCurrentClient();this.clients[this.clientId]={...r,position:e},this.sendToTransport({type:n,version:1,client:{...r,position:e}}).then(()=>{this.pendingMessages.length>0&&!this.waitingAck&&this.sendPendingMessage()})}onMessageReceived(e){if(!this.isAlreadyProcessed(e)){if(this.isWrongServerRevisionId(e)){this.trigger(`unexpected-revision-id`);return}switch(e.type){case`CLIENT_MOVED`:this.onClientMoved(e);break;case`CLIENT_JOINED`:this.onClientJoined(e);break;case`CLIENT_LEFT`:this.onClientLeft(e);break;case`REVISION_REDONE`:this.revisions.redo(e.redoneRevisionId,e.nextRevisionId,e.serverRevisionId),this.trigger(`revision-redone`,{revisionId:e.redoneRevisionId,commands:this.revisions.get(e.redoneRevisionId).commands});break;case`REVISION_UNDONE`:this.revisions.undo(e.undoneRevisionId,e.nextRevisionId,e.serverRevisionId),this.trigger(`revision-undone`,{revisionId:e.undoneRevisionId,commands:this.revisions.get(e.undoneRevisionId).commands});break;case`REMOTE_REVISION`:let{clientId:t,timestamp:n}=e,r=this.commandSquisher.unsquish(e.commands),i=new sz(e.nextRevisionId,t,r,void 0,void 0,n);if(i.clientId!==this.clientId){this.revisions.insert(i.id,i,e.serverRevisionId);let t=this.pendingMessages.filter(e=>e.type===`REMOTE_REVISION`).map(e=>e.commands).flat();this.trigger(`remote-revision-received`,{commands:ZR(r,t)})}break;case`SNAPSHOT_CREATED`:{let t=new sz(e.nextRevisionId,`server`,[],void 0,void 0,Date.now());this.revisions.insert(t.id,t,e.serverRevisionId),this.dropPendingHistoryMessages(),this.trigger(`snapshot`),this.lastLocalOperation=void 0;break}}this.acknowledge(e),this.trigger(`collaborative-event-received`)}}onClientMoved(e){e.client.id!==this.clientId&&(this.clients[e.client.id]=e.client)}onClientJoined(e){if(e.client.id!==this.clientId){this.clients[e.client.id]=e.client;let t=this.clients[this.clientId];if(t){let{position:e}=t;e&&this.sendToTransport({type:`CLIENT_MOVED`,version:1,client:{...t,position:e}})}}}onClientLeft(e){e.clientId!==this.clientId&&delete this.clients[e.clientId]}sendUpdateMessage(e){this.pendingMessages.push(e),!this.waitingAck&&this.sendPendingMessage()}async sendToTransport(e){return this.transportService.sendMessage(e)}sendPendingMessage(){let e=this.pendingMessages[0];if(e){if(e.type===`REMOTE_REVISION`){let t=this.revisions.get(e.nextRevisionId);t.commands.length===0&&(this.revisions.rebase(t.id),t=this.revisions.get(e.nextRevisionId)),e={...e,commands:this.commandSquisher.squish(t.commands)}}if(this.isReplayingInitialRevisions)throw Error(`Trying to send a new revision while replaying initial revision. This can lead to endless dispatches every time the spreadsheet is open.
117
+ ${JSON.stringify(e)}`);this.waitingAck=!0,this.sendToTransport({...e,serverRevisionId:this.serverRevisionId}).catch(e=>{if(!(e instanceof cz))throw e.cause||e;this.waitingAck=!1})}}acknowledge(e){switch((e.type===`REVISION_UNDONE`||e.type===`REVISION_REDONE`)&&(this.waitingUndoRedoAck=!1),e.type){case`REMOTE_REVISION`:case`REVISION_REDONE`:case`SNAPSHOT_CREATED`:this.waitingAck=!1,this.pendingMessages=this.pendingMessages.filter(t=>t.nextRevisionId!==e.nextRevisionId),this.serverRevisionId=e.nextRevisionId,this.processedRevisions.add(e.nextRevisionId),this.lastRevisionMessage=e,this.sendPendingMessage();break;case`REVISION_UNDONE`:{this.waitingAck=!1,this.pendingMessages=this.pendingMessages.filter(t=>t.nextRevisionId!==e.nextRevisionId);let t=this.pendingMessages.findIndex(e=>e.type===`REMOTE_REVISION`);t!==-1&&this.revisions.rebase(this.pendingMessages[t].nextRevisionId),this.serverRevisionId=e.nextRevisionId,this.processedRevisions.add(e.nextRevisionId),this.sendPendingMessage();break}}}isAlreadyProcessed(e){if(e.type===`CLIENT_MOVED`&&e.client.id===this.clientId)return!0;switch(e.type){case`REMOTE_REVISION`:case`REVISION_REDONE`:case`REVISION_UNDONE`:case`SNAPSHOT_CREATED`:return this.processedRevisions.has(e.nextRevisionId);default:return!1}}isWrongServerRevisionId(e){switch(e.type){case`REMOTE_REVISION`:case`REVISION_REDONE`:case`REVISION_UNDONE`:case`SNAPSHOT_CREATED`:return e.serverRevisionId!==this.serverRevisionId;default:return!1}}dropPendingHistoryMessages(){this.waitingUndoRedoAck=!1,this.pendingMessages=this.pendingMessages.filter(({type:e})=>e!==`REVISION_REDONE`&&e!==`REVISION_UNDONE`)}},uz=class extends pR{static getters=[`getClientsToDisplay`,`getClient`,`getCurrentClient`,`getConnectedClients`,`isFullySynchronized`];static layers=[`Selection`];colors=new Ld(12);session;constructor(e){super(e),this.session=e.session}isPositionValid(e){return e.row<this.getters.getNumberRows(e.sheetId)&&e.col<this.getters.getNumberCols(e.sheetId)}getClient(e){return this.session.getClient(e)}getCurrentClient(){return this.session.getCurrentClient()}getConnectedClients(){return[...this.session.getConnectedClients()].map(e=>({...e,color:this.colors.get(e.id)}))}isFullySynchronized(){return this.session.isFullySynchronized()}getClientsToDisplay(){try{this.getters.getCurrentClient()}catch(e){if(e instanceof cz)return[];throw e}let e=this.getters.getActiveSheetId(),t=[];for(let n of this.getters.getConnectedClients())n.id!==this.getters.getCurrentClient().id&&n.position&&n.position.sheetId===e&&this.isPositionValid(n.position)&&t.push({...n,position:n.position});return t}drawLayer(e){if(this.getters.isDashboard())return;let{ctx:t,thinLineWidth:n,viewports:r,sheetId:i}=e;for(let e of this.getClientsToDisplay()){let{row:a,col:o}=e.position,s=this.getters.expandZone(i,{top:a,bottom:a,left:o,right:o}),{x:c,y:l,width:u,height:d}=r.getVisibleRect(i,s);if(u<=0||d<=0)continue;let f=e.color;t.fillStyle=`${f}10`,t.lineWidth=4*n,t.strokeStyle=f,t.globalCompositeOperation=`multiply`,t.fillRect(c,l,u,d),t.globalCompositeOperation=`source-over`,t.strokeRect(c,l,u,d),t.font=`bold ${xe+1}px ${Se}`}}};let dz={light:{backgroundColor:`#FFFFFF`,gridBorderColor:`#E2E3E3`,headerBackgroundColor:`#F8F9FA`,headerActiveBackgroundColor:`#595959`,headerSelectedBackgroundColor:`#E8EAED`,headerTextColor:`#666666`,headerBorderColor:`#C0C0C0`,frozenPaneBorderColor:`#DADFE8`,frozenPaneHeaderBorderColor:`#BCBCBC`,singleCellSelectionBackgroundColor:`#F3F7FE`,multipleCellsSelectionBackgroundColor:`#E9F0FF`},dark:{backgroundColor:xd(`#1A1C2E`),gridBorderColor:xd(`#4A4E55`),headerBackgroundColor:xd(`#262A36`),headerActiveBackgroundColor:xd(`#3A4052`),headerSelectedBackgroundColor:xd(`#4E566E`),headerTextColor:xd(`#A1A6B3`),headerBorderColor:xd(`#7A7F91`),frozenPaneBorderColor:xd(`#7A7F91`),frozenPaneHeaderBorderColor:xd(`#9FA5BD`),singleCellSelectionBackgroundColor:xd(`#696E8044`),multipleCellsSelectionBackgroundColor:xd(`#828AA044`)}};var fz=class extends pR{static getters=[`isDarkMode`,`getSpreadsheetTheme`];colorScheme;constructor(e){super(e),this.colorScheme=e.colorScheme}handle(e){e.type===`UPDATE_COLOR_SCHEME`&&(this.colorScheme=e.colorScheme)}isDarkMode(){return this.colorScheme===`dark`}getSpreadsheetTheme(){switch(this.colorScheme){case`dark`:return dz.dark;default:return dz.light}}},pz=class{constructor(e,t){this.getters=e,this.dispatch=t}copy(e,t,n=`copyPaste`){}paste(e,t,n){}isPasteAllowed(e,t,n,r){return H.Success}isCutAllowed(e){return H.Success}getPasteTarget(e,t,n,r){return{zones:[],sheetId:e}}convertTextToClipboardData(e){}},mz=class extends pz{copy(e,t,n=`copyPaste`){}pasteFromCopy(e,t,n,r){if(t.length===1)for(let i of US(t,n))this.pasteZone(e,i.left,i.top,n,r);else for(let i of rn(t))for(let t=i.left;t<=i.right;t++)for(let a=i.top;a<=i.bottom;a++)this.pasteZone(e,t,a,n,r)}pasteZone(e,t,n,r,i){}},hz=class extends mz{isCutAllowed(e){return e.zones.length===1?H.Success:H.WrongCutSelection}copy(e,t,n=`copyPaste`){let r=e.sheetId,{clippedZones:i,rowsIndexes:a,columnsIndexes:o}=e,s=[],c=a.length===1&&o.length===1;for(let t of a){let i=[];for(let s of o){let l={col:s,row:t,sheetId:r},u=this.getters.getCell(l),d=this.getters.getEvaluatedCell(l),f=this.getters.getPivotIdFromPosition(l),p=this.getters.getArrayFormulaSpreadingOn(l);if(n!==`shiftCells`&&f&&p){let t=this.getters.getSpreadZone(p);if((!T(p,l)||!c)&&t&&!e.zones.some(e=>Mn(t,e))){let e=this.getters.getPivotCellFromPosition(l),t=zx(this.getters.getPivotFormulaId(f),e);u={id:u?.id??0,style:u?.style,format:u?.format,content:t,isFormula:!1,parsedValue:d.value}}}else if(n!==`shiftCells`&&p&&!T(p,l)){let e=a.includes(p.row)&&o.includes(p.col)?``:R(d.value,{locale:this.getters.getLocale()});u={id:u?.id??0,style:u?.style,format:d.format,content:e,isFormula:!1,parsedValue:d.value}}i.push({content:u?.isFormula?u.compiledFormula.toFormulaString(this.getters):u?.content??``,style:u?.style,format:u?.format,compiledFormula:u?.isFormula?u?.compiledFormula:void 0,border:this.getters.getCellBorder(l)||void 0,evaluatedCell:d,position:l})}s.push(i)}return{cells:s,zones:i,sheetId:e.sheetId}}isPasteAllowed(e,t,n,r){if(!n.cells)return H.Success;if(r?.isCutOperation&&r?.pasteOption!==void 0)return H.WrongPasteOption;if(t.length>1&&(n.cells.length>1||n.cells[0].length>1))return H.WrongPasteSelection;let i=n.cells.length,a=n.cells[0].length;for(let r of US(t,n.cells))if(this.getters.doesIntersectMerge(e,r)&&(t.length>1||!this.getters.isSingleCellOrMerge(e,t[0])||i*a!==1))return H.WillRemoveExistingMerge;return H.Success}paste(e,t,n){let r=e.zones,i=e.sheetId;n.isCutOperation?this.pasteFromCut(i,r,t,n):this.pasteFromCopy(i,r,t.cells,n)}getPasteTarget(e,t,n,r){let i=n.cells[0].length,a=n.cells.length;return r?.isCutOperation?{sheetId:e,zones:[{left:t[0].left,top:t[0].top,right:t[0].left+i-1,bottom:t[0].top+a-1}]}:i===1&&a===1?{zones:[],sheetId:e}:{sheetId:e,zones:US(t,n.cells)}}pasteFromCut(e,t,n,r){this.clearClippedZones(n);let i=t[0];this.pasteZone(e,i.left,i.top,n.cells,r)}clearClippedZones(e){this.dispatch(`CLEAR_CELLS`,{sheetId:e.sheetId,target:e.zones}),this.dispatch(`CLEAR_FORMATTING`,{sheetId:e.sheetId,target:e.zones})}pasteZone(e,t,n,r,i){for(let[a,o]of r.entries())for(let[r,s]of o.entries()){if(!s)continue;let o={col:t+r,row:n+a,sheetId:e};this.pasteCell(s,o,i)}}pasteCell(e,t,n){let{sheetId:r,col:i,row:a}=t,o=this.getters.getEvaluatedCell(t),s=e?.format||e.evaluatedCell.format;if(n?.pasteOption===`asValue`){this.dispatch(`UPDATE_CELL`,{...t,content:e.evaluatedCell.value?.toString()||``});return}if(n?.pasteOption===`onlyFormat`){this.dispatch(`UPDATE_CELL`,{...t,style:e?.style??null,format:s??o.format});return}let c=e?.content;e?.compiledFormula?.hasDependencies&&!n?.isCutOperation?c=this.getters.getTranslatedCellFormula(r,i-e.position.col,a-e.position.row,e.compiledFormula):e?.compiledFormula?.hasDependencies&&(c=this.getters.getFormulaMovedInSheet(r,e.compiledFormula)),c!==``||e?.format||e?.style?this.dispatch(`UPDATE_CELL`,{...t,content:c,style:e?.style||null,format:e?.format}):o&&this.dispatch(`CLEAR_CELL`,t)}convertTextToClipboardData(e){let t=this.getters.getLocale(),n={cells:[]},r=[],i=0;for(let[t,n]of e.replace(/\r/g,``).split(`
118
+ `).entries())r.push(n.split(` `)),r[t].length>i&&(i=r[t].length);for(let e of r){let r=[];for(let n=0;n<i;n++){let i=Cg(e[n]||``,t);r.push({content:i,evaluatedCell:{formattedValue:i}})}n.cells.push(r)}return n}},gz=class extends pR{allowDispatch(e){switch(e.type){case`REMOVE_DUPLICATES`:return this.checkValidations(e,this.chainValidations(this.checkSingleRangeSelected,this.checkNoMergeInZone,this.checkRangeContainsValues,this.checkColumnsIncludedInZone),this.chainValidations(this.checkNoColumnProvided,this.checkColumnsAreUnique))}return H.Success}handle(e){switch(e.type){case`REMOVE_DUPLICATES`:this.removeDuplicates(e.columns,e.hasHeader);break;case`TRIM_WHITESPACE`:this.trimWhitespace();break}}removeDuplicates(e,t){let n=this.getters.getActiveSheetId(),r=this.getters.getSelectedZone();t&&(r.top+=1);let i=this.getUniqueRowsIndexes(n,r.top,r.bottom,e),a=i.length;if(a===Nn(r).numberOfRows){this.notifyRowsRemovedAndRemaining(0,a);return}let o=i.map(e=>({left:r.left,top:e,right:r.right,bottom:e})),s=new hz(this.getters,this.dispatch),c=s.copy(VS(n,o),!1);if(!c)return;this.dispatch(`CLEAR_CELLS`,{target:[r],sheetId:n});let l={left:r.left,top:r.top,right:r.left,bottom:r.top};s.paste({zones:[l],sheetId:n},c,{isCutOperation:!1});let u={left:r.left,top:r.top-+!!t,right:r.right,bottom:r.top+a-1};this.selection.selectZone({cell:{col:u.left,row:u.top},zone:u});let d=r.bottom-r.top+1-a;this.notifyRowsRemovedAndRemaining(d,a)}getUniqueRowsIndexes(e,t,n,r){let i=new Map;for(let a of C(t,n+1)){let t=r.map(t=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:a}).value);Object.values(i).some(e=>T(e,t))||(i[a]=t)}return Object.keys(i).map(e=>parseInt(e))}notifyRowsRemovedAndRemaining(e,t){this.ui.notifyUI({type:`info`,text:A(`%s duplicate rows found and removed.
119
+ %s unique rows remain.`,e.toString(),t.toString()),sticky:!1})}checkSingleRangeSelected(){return this.getters.getSelectedZones().length===1?H.Success:H.MoreThanOneRangeSelected}checkNoMergeInZone(){let e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZone();return this.getters.getMergesInZone(e,t).length>0?H.WillRemoveExistingMerge:H.Success}checkRangeContainsValues(e){let t=this.getters.getActiveSheetId(),n=this.getters.getSelectedZone();return e.hasHeader&&(n.top+=1),this.getters.getEvaluatedCellsInZone(t,n).every(e=>e.type===`empty`)?H.EmptySelectedRange:H.Success}checkNoColumnProvided(e){return e.columns.length===0?H.NoColumnsProvided:H.Success}checkColumnsIncludedInZone(e){let t=this.getters.getSelectedZone();return e.columns.some(e=>e<t.left||e>t.right)?H.ColumnsNotIncludedInZone:H.Success}checkColumnsAreUnique(e){return e.columns.length===new Set(e.columns).size?H.Success:H.DuplicatesColumnsSelected}trimWhitespace(){let e=rn(this.getters.getSelectedZones()),t=this.getters.getActiveSheetId(),n=0;for(let{col:r,row:i}of e.map(In).flat()){let e=this.getters.getCell({col:r,row:i,sheetId:t});if(!e)continue;let a=e.isFormula?e.compiledFormula.toFormulaString(this.getters):e.content,o=Pt(a);o!==a&&(n+=1,this.dispatch(`UPDATE_CELL`,{sheetId:t,col:r,row:i,content:o}))}let r=n?A(`Trimmed whitespace from %s cells.`,n):A(`No selected cells had whitespace trimmed.`);this.ui.notifyUI({type:`info`,text:r,sticky:!1})}},_z=class extends pR{handle(e){switch(e.type){case`ADD_DATA_VALIDATION_RULE`:if(e.rule.criterion.type===`isBoolean`){let t=e.ranges.map(e=>this.getters.getRangeFromRangeData(e));for(let e of zc(t)){let t=this.getters.getCell(e),n=this.getters.getEvaluatedCell(e);if(!t?.isFormula&&!t?.content)this.dispatch(`UPDATE_CELL`,{...e,content:`FALSE`});else if((t?.isFormula||t?.content)&&n.type===V.empty){let n;if(t.isFormula){let r=this.getters.evaluateCompiledFormula(e.sheetId,t.compiledFormula);n=(Ue(r)?r[0][0]:r)?.toString()}else n=t.content;(!n||!tt(n))&&this.dispatch(`UPDATE_CELL`,{...e,content:`FALSE`})}else n.type!==V.boolean&&this.dispatch(`UPDATE_CELL`,{...e,content:`FALSE`})}}}}},vz=class extends pR{static getters=[`dynamicTranslate`];dynamicTranslate(e){return e}},yz=class extends pR{handle(e){switch(e.type){case`SET_DECIMAL`:this.setDecimal(e.sheetId,e.target,e.step);break;case`SET_FORMATTING_WITH_PIVOT`:this.setContextualFormat(e.sheetId,e.target,e.format);break}}setContextualFormat(e,t,n){let r=[],i={};for(let n of rn(t))for(let t=n.left;t<=n.right;t++)for(let a=n.top;a<=n.bottom;a++){let n={sheetId:e,col:t,row:a},o=this.getters.getPivotCellFromPosition(n);if(this.isSpilledPivotValueFormula(n,o)){r.push(n);let e=this.getters.getPivotIdFromPosition(n)||``;i[e]??=new Set,i[e].add(o.measure)}}let a=rn(r.map(D));for(let e in i){let t=i[e],r=this.getters.getPivotCoreDefinition(e);this.dispatch(`UPDATE_PIVOT`,{pivotId:e,pivot:{...r,measures:r.measures.map(e=>t.has(e.id)?{...e,format:n}:e)}})}this.dispatch(`SET_FORMATTING`,{sheetId:e,target:a,format:``}),this.dispatch(`SET_FORMATTING`,{sheetId:e,target:rn(t,a),format:n})}isSpilledPivotValueFormula(e,t){let n=this.getters.getCell(e);return t.type===`VALUE`&&!n?.isFormula}setDecimal(e,t,n){let r={};for(let i of rn(t))for(let t of In(i)){let i=this.getCellNumberFormat({sheetId:e,...t});if(i!==void 0){let e=Ho(i,n);r[e]=r[e]||[],r[e].push(t)}}for(let t in r){let n=rn(r[t].map(e=>D(e)));this.setContextualFormat(e,n,t)}}getCellNumberFormat(e){for(let t of[e]){let e=this.getters.getEvaluatedCell(t);if(e.type===V.number&&!(e.format&&To(e.format)))return e.format||ko(e.value)}}},bz=class extends pR{static getters=[`getGeoJsonFeatures`,`geoFeatureNameToId`,`getGeoChartAvailableRegions`,`getAvailableChartRegions`];geoJsonService;geoJsonCache={};initialRegions={};constructor(e){super(e),this.geoJsonService=e.external.geoJsonService}handle(e){switch(e.type){case`START`:for(let e of this.getters.getSheetIds())for(let t of this.getters.getChartIds(e))this.trackInitialRegion(t);break;case`CREATE_CHART`:this.trackInitialRegion(e.chartId);break;case`UPDATE_CHART_REGION`:{let t=this.getters.getChart(e.chartId),n=this.getters.getChartDefinition(e.chartId);if(!t||n.type!==`geo`)break;this.dispatch(`UPDATE_CHART`,{chartId:e.chartId,sheetId:t.sheetId,figureId:this.getters.getFigureIdFromChartId(e.chartId),definition:{...n,region:e.region}});break}}}trackInitialRegion(e){let t=this.getters.getChartDefinition(e);if(t?.type===`geo`){let n=this.getGeoChartAvailableRegions();this.initialRegions[e]=t.region||n[0]?.id||``}}getGeoChartAvailableRegions(){return this.geoJsonService?this.geoJsonService.getAvailableRegions()||[]:(console.error(`No geoJsonService provided to the model`),[])}getAvailableChartRegions(e){if(!this.geoJsonService)return[];let t=this.getters.getChartDefinition(e);if(!t||t.type!==`geo`)return[];let n=this.initialRegions[e];return n&&this.geoJsonService.getAlternativeRegions?.(n)||[]}getGeoJsonFeatures(e){if(!this.geoJsonService){console.error(`No geoJsonService provided to the model`);return}let t=this.geoJsonCache[e];if(!(t instanceof Promise)){if(t!==void 0)return t??void 0;this.geoJsonCache[e]=new Promise(async t=>{let n=await this.geoJsonService?.getTopoJson(e);this.geoJsonCache[e]=this.convertToGeoJson(n),this.dispatch(`EVALUATE_CHARTS`),t()})}}geoFeatureNameToId(e,t){if(!this.geoJsonService){console.error(`No geoJsonService provided to the model`);return}return this.geoJsonService.geoFeatureNameToId(e,t)}convertToGeoJson(e){if(!e)return null;if(e.type===`Topology`){let t=globalThis.ChartGeo.topojson.feature(e,Object.values(e.objects)[0]);return t.type===`FeatureCollection`?t.features:[t]}else if(e.type===`FeatureCollection`)return e.features;throw Error(`Invalid TopoJSON`)}},xz=class extends pR{static getters=[`getNextVisibleCellPosition`,`findVisibleHeader`,`findLastVisibleColRowIndex`,`findFirstVisibleColRowIndex`,`isRowHidden`,`isColHidden`,`isHeaderHidden`];isRowHidden(e,t){return this.getters.isRowHiddenByUser(e,t)||this.getters.isRowFiltered(e,t)}isColHidden(e,t){return this.getters.isColHiddenByUser(e,t)}isHeaderHidden(e,t,n){return t===`COL`?this.isColHidden(e,n):this.isRowHidden(e,n)}getNextVisibleCellPosition({sheetId:e,col:t,row:n}){return{sheetId:e,col:this.findVisibleHeader(e,`COL`,t,this.getters.getNumberCols(e)-1),row:this.findVisibleHeader(e,`ROW`,n,this.getters.getNumberRows(e)-1)}}findVisibleHeader(e,t,n,r){if(n<=r){for(let i=n;i<=r;i++)if(this.getters.doesHeaderExist(e,t,i)&&!this.isHeaderHidden(e,t,i))return i}if(n>r){for(let i=n;i>=r;i--)if(this.getters.doesHeaderExist(e,t,i)&&!this.isHeaderHidden(e,t,i))return i}}findLastVisibleColRowIndex(e,t,{last:n,first:r}){return C(n,r,-1).find(n=>!this.isHeaderHidden(e,t,n))||r}findFirstVisibleColRowIndex(e,t){let n=this.getters.getNumberHeaders(e,t);for(let r=0;r<n;r++)if(t===`COL`&&!this.isColHidden(e,r)||t===`ROW`&&!this.isRowHidden(e,r))return r}exportForExcel(e){for(let t of e.sheets)for(let[e,n]of Object.entries(t.rows))n.isHidden=this.isRowHidden(t.id,Number(e))}},Sz=class extends pR{static getters=[];allowDispatch(e){switch(e.type){case`DUPLICATE_PIVOT_IN_NEW_SHEET`:if(!this.getters.isExistingPivot(e.pivotId))return H.PivotIdNotFound;if(!this.getters.getPivot(e.pivotId).isValid())return H.PivotInError;break}return H.Success}handle(e){switch(e.type){case`INSERT_NEW_PIVOT`:this.insertNewPivot(e.pivotId,e.newSheetId);break;case`DUPLICATE_PIVOT_IN_NEW_SHEET`:this.duplicatePivotInNewSheet(e.pivotId,e.newPivotId,e.newSheetId);break;case`INSERT_PIVOT_WITH_TABLE`:this.insertPivotWithTable(e.sheetId,e.col,e.row,e.pivotId,e.table,e.pivotMode);break;case`SPLIT_PIVOT_FORMULA`:this.splitPivotFormula(e.sheetId,e.col,e.row,e.pivotId)}}insertNewPivot(e,t){Kn(this.getters.getSelectedZone())===1&&this.selection.selectTableAroundSelection();let n=this.getters.getActiveSheetId();this.dispatch(`ADD_PIVOT`,{pivotId:e,pivot:{dataSet:{zone:this.getters.getSelectedZone(),sheetId:n},columns:[],rows:[],measures:[],name:A(`New pivot`),type:`SPREADSHEET`,style:{tableStyleId:Ie}}});let r=this.getters.getSheetIds().findIndex(e=>e===n)+1,i=this.getters.getPivotFormulaId(e);this.dispatch(`CREATE_SHEET`,{sheetId:t,name:A(`Pivot #%(formulaId)s`,{formulaId:i}),position:r}),this.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:n,sheetIdTo:t});let a=this.getters.getPivot(e);this.insertPivotWithTable(t,0,0,e,a.getCollapsedTableStructure().export(),`dynamic`)}duplicatePivotInNewSheet(e,t,n){this.dispatch(`DUPLICATE_PIVOT`,{pivotId:e,newPivotId:t,duplicatedPivotName:A(`%s (copy)`,this.getters.getPivotCoreDefinition(e).name)});let r=this.getters.getActiveSheetId(),i=this.getters.getSheetIds().indexOf(r)+1,a=this.getters.getPivotFormulaId(t),o=this.getters.getPivotName(t);if(this.dispatch(`CREATE_SHEET`,{sheetId:n,name:this.getPivotDuplicateSheetName(A(`%(newPivotName)s (Pivot #%(formulaId)s)`,{newPivotName:o,formulaId:a})),position:i}).isSuccessful){this.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:r,sheetIdTo:n});let i=this.getters.getPivot(e);this.insertPivotWithTable(n,0,0,t,i.getCollapsedTableStructure().export(),`dynamic`)}}getPivotDuplicateSheetName(e){let t=this.getters.getSheetIds().map(e=>this.getters.getSheetName(e));return Ht(Qe(e),t)}insertPivotWithTable(e,t,n,r,i,a){let{cols:o,rows:s,measures:c,fieldsType:l}=i,u=new Vj(o,s,c,l||{}),d=u.columns.length-1;if(this.resizeSheet(e,t,n,u),a===`dynamic`)this.dispatch(`UPDATE_CELL`,{sheetId:e,col:t,row:n,content:`=PIVOT(${this.getters.getPivotFormulaId(r)})`});else{this.dispatch(`INSERT_PIVOT`,{sheetId:e,col:t,row:n,pivotId:r,table:u.export()});let i={left:t,right:t+u.getNumberOfDataColumns(),top:n,bottom:n+d+u.rows.length};this.dispatch(`CREATE_TABLE`,{tableType:`static`,sheetId:e,ranges:[this.getters.getRangeDataFromZone(e,i)],config:{...Fe,numberOfHeaders:d}})}}resizeSheet(e,t,n,r){let i=r.getNumberOfDataColumns()+1,a=this.getters.getNumberCols(e),o=a-t;o<i&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`COL`,base:a-1,sheetId:e,sheetName:this.getters.getSheetName(e),quantity:i-o,position:`after`});let s=r.columns.length+r.rows.length,c=this.getters.getNumberRows(e),l=c-n;l<s&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`ROW`,base:c-1,sheetId:e,sheetName:this.getters.getSheetName(e),quantity:s-l,position:`after`})}splitPivotFormula(e,t,n,r){let i={sheetId:e,col:t,row:n},a=this.getters.getSpreadZone(i),o=this.getters.getTable(i);if(!a)return;let s=this.getters.getPivotFormulaId(r),c=this.getters.getPivotStyleAtPosition(i);if(!c)return;let l={...c.pivotStyle,tabularForm:!1},u=this.getters.getPivot(r).getCollapsedTableStructure(),d=u.getPivotCells(l),{numberOfCols:f,numberOfRows:p}=u.getPivotTableDimensions(l);if(!(p===0||f===0)){for(let t of C(0,f))for(let n of C(0,p)){let r=d[t][n];if(r){let i={sheetId:e,col:a.left+t,row:a.top+n};this.dispatch(`UPDATE_CELL`,{...i,content:zx(s,r)})}}if(this.getters.getCoreTable(i)&&this.dispatch(`REMOVE_TABLE`,{sheetId:e,target:[D(i)]}),o?.isPivotTable){let t=this.getters.getRangeDataFromZone(e,{left:a.left,right:a.left+f-1,top:a.top,bottom:a.top+p-1});this.dispatch(`CREATE_TABLE`,{tableType:`static`,sheetId:e,ranges:[t],config:{...o.config,styleId:jM(o.config.styleId)}})}}}};let Cz=new B,wz=new B;function Tz(e,t){if(t&&Cz.contains(t.type))return Cz.get(t.type)(e,t)}function Ez(e,t,n){if(wz.contains(t.type))return wz.get(t.type)(e,t,n)}function Dz(e){return!e||!e.rootCommand||typeof e.rootCommand!=`object`?!1:Hl(e.rootCommand)?Cz.contains(e.rootCommand.type):wz.contains(e.rootCommand.type)}function Oz(e,t){if(!(!e.rootCommand||typeof e.rootCommand!=`object`))return Hl(e.rootCommand)?Tz(t,e.rootCommand):Ez(t,e.rootCommand,e.commands)}var kz=class extends pR{static getters=[`canUndo`,`canRedo`];undoStack=[];redoStack=[];session;constructor(e){super(e),this.session=e.session,this.session.on(`new-local-state-update`,this,this.onNewLocalStateUpdate),this.session.on(`snapshot`,this,()=>{this.undoStack=[],this.redoStack=[]})}allowDispatch(e){switch(e.type){case`REQUEST_UNDO`:if(!this.canUndo())return H.EmptyUndoStack;break;case`REQUEST_REDO`:if(!this.canRedo())return H.EmptyRedoStack;break}return H.Success}handle(e){switch(e.type){case`REQUEST_UNDO`:case`REQUEST_REDO`:this.requestHistoryChange(e.type===`REQUEST_UNDO`?`UNDO`:`REDO`)}}finalize(){}requestHistoryChange(e){let t=e===`UNDO`?this.undoStack.pop():this.redoStack.pop();if(!t){let e=this.getPossibleRevisionToRepeat();if(!e)return;let t=Oz(e,this.getters);if(!t)return;if(!Array.isArray(t)){this.dispatch(t.type,t);return}for(let e of t)this.dispatch(e.type,e);return}e===`UNDO`?(this.session.undo(t),this.redoStack.push(t)):(this.session.redo(t),this.undoStack.push(t))}canUndo(){return this.undoStack.length>0}canRedo(){return this.redoStack.length>0?!0:Dz(this.getPossibleRevisionToRepeat())}onNewLocalStateUpdate({id:e}){this.undoStack.push(e),this.redoStack=[],this.undoStack.length>99&&this.undoStack.shift()}getPossibleRevisionToRepeat(){return this.session.getLastLocalNonEmptyRevision()}},Az=class extends pR{static getters=[`isCurrentSheetLocked`];allowDispatch(e){return Bl.has(e.type)||this.getters.isDashboard()?H.Success:`sheetId`in e&&this.getters.isSheetLocked(e.sheetId)||!Hl(e)&&this.isCurrentSheetLocked()?H.SheetLocked:H.Success}isCurrentSheetLocked(){return this.getters.isSheetLocked(this.getters.getActiveSheetId())}},jz=class{trackedValues=new Set;domainToArray(e){return e.flatMap(e=>[e.field,P(e.value)])}isValuePresent(e,t){let n=JSON.stringify({measure:e,domain:this.domainToArray(t)});return this.trackedValues.has(n)}isHeaderPresent(e){let t=JSON.stringify({domain:this.domainToArray(e)});return this.trackedValues.has(t)}trackValue(e,t){let n=JSON.stringify({measure:e,domain:this.domainToArray(t)});this.trackedValues.add(n)}trackHeader(e){let t=JSON.stringify({domain:this.domainToArray(e)});this.trackedValues.add(t)}},Mz=class extends pR{static getters=[`getPivotPresenceTracker`];trackPresencePivotId;tracker;handle(e){switch(e.type){case`PIVOT_START_PRESENCE_TRACKING`:this.tracker=new jz,this.trackPresencePivotId=e.pivotId;break;case`PIVOT_STOP_PRESENCE_TRACKING`:this.trackPresencePivotId=void 0;break}}getPivotPresenceTracker(e){if(this.trackPresencePivotId===e){if(!this.tracker)throw Error(`Tracker not initialized`);return this.tracker}}};let Nz=[V.number,V.error,V.text,V.boolean];function Pz(e){let t=e===`asc`?1:-1;return(e,n)=>{if(e.type===V.empty)return n.type===V.empty?0:1;if(n.type===V.empty)return-1;let r=Nz.indexOf(e.type)-Nz.indexOf(n.type);return r===0&&(r=e.type===V.text||e.type===V.error?e.value.localeCompare(n.value):e.value-n.value),t*r}}function Fz(e,t,n){let r=e.map((e,t)=>({index:t,type:e.type,value:e.value}));return(n?r.map(e=>e.type===V.empty?{...e,type:V.number,value:0}:e):r).sort(Pz(t))}var Iz=class extends pR{allowDispatch(e){switch(e.type){case`SORT_CELLS`:return jn(e.col,e.row,e.zone)?this.checkValidations(e,this.checkMerge,this.checkMergeSizes,this.checkArrayFormulaInSortZone):H.InvalidSortAnchor}return H.Success}handle(e){switch(e.type){case`SORT_CELLS`:this.sortZone(e.sheetId,e,e.zone,e.sortDirection,e.sortOptions||{});break}}checkMerge({sheetId:e,zone:t}){return this.getters.doesIntersectMerge(e,t)&&In(t).some(({col:t,row:n})=>!this.getters.isInMerge({sheetId:e,col:t,row:n}))?H.InvalidSortZone:H.Success}checkMergeSizes({sheetId:e,zone:t}){if(!this.getters.doesIntersectMerge(e,t))return H.Success;let n=this.getters.getMerges(e).filter(e=>kn(e,t)),r=Nn(n[0]),[i,a]=[r.numberOfCols,r.numberOfRows];return n.every(e=>{let[t,n]=[e.right-e.left+1,e.bottom-e.top+1];return t===i&&n===a})?H.Success:H.InvalidSortZone}checkArrayFormulaInSortZone({sheetId:e,zone:t}){return In(t).some(({col:t,row:n})=>{let r=this.getters.getArrayFormulaSpreadingOn({sheetId:e,col:t,row:n});return r&&!T(r,{sheetId:e,col:t,row:n})})?H.SortZoneWithArrayFormulas:H.Success}hasHeader(e,t){if(t[0].length===1)return!1;let n=t.map(t=>t.map(({col:t,row:n})=>this.getters.getEvaluatedCell({sheetId:e,col:t,row:n}).type));return n[0][0]===V.empty&&(n=n.slice(1)),n.some(e=>e[0]===V.empty)?!1:!!n.some(e=>e[1]!==V.empty&&e[0]!==e[1])}sortZone(e,t,n,r,i){let[a,o]=this.mainCellsSteps(e,n),s=this.getters.getMainCellPosition({sheetId:e,col:t.col,row:t.row}).col,c=Object.assign({},n),l=this.mainCells(e,n);!i.sortHeaders&&this.hasHeader(e,l)&&(c.top+=o),l=this.mainCells(e,c);let u=l[s-c.left],d=Fz(u.map(e=>this.getters.getEvaluatedCell(e)),r,!!i.emptyCellAsZero).map(e=>e.index),[f,p]=[l.length,l[0].length],m=[];for(let e=0;e<f;e++)for(let t=0;t<p;t++){let{col:n,row:r,sheetId:i}=l[e][d[t]],s=this.getters.getCell({sheetId:i,col:n,row:r}),u=c.left+e*a,f=c.top+t*o,p={sheetId:i,col:u,row:f,content:``};if(s){let e;if(s.isFormula){let t=this.getters.getCellPosition(s.id);e=this.getters.getTranslatedCellFormula(i,0,f-t.row,s.compiledFormula)}else e=s.content;p.style=s.style,p.content=e,p.format=s.format}m.push(p)}m.forEach(e=>this.dispatch(`UPDATE_CELL`,e))}mainCellsSteps(e,t){let n=this.getters.getMerge({sheetId:e,col:t.left,row:t.top});return[n?n.right-n.left+1:1,n?n.bottom-n.top+1:1]}mainCells(e,t){let[n,r]=this.mainCellsSteps(e,t),i=[],a=C(t.left,t.right+1,n),o=C(t.top,t.bottom+1,r);for(let t of a){let n=[];i.push(n);for(let r of o)n.push({sheetId:e,col:t,row:r})}return i}},Lz=class extends pR{static getters=[`getAutomaticSeparator`];allowDispatch(e){switch(e.type){case`SPLIT_TEXT_INTO_COLUMNS`:return this.chainValidations(this.batchValidations(this.checkSingleColSelected,this.checkNonEmptySelector),this.batchValidations(this.checkNotOverwritingContent,this.checkSeparatorInSelection))(e)}return H.Success}handle(e){switch(e.type){case`SPLIT_TEXT_INTO_COLUMNS`:this.splitIntoColumns(e);break}}getAutomaticSeparator(){let e=this.getters.getSelectedCells();for(let t of e)if(t.value&&t.type===V.text){let e=this.getAutoSeparatorForString(t.value);if(e)return e}return` `}getAutoSeparatorForString(e){for(let t of[`
120
+ `,`;`,`,`,` `,`.`])if(e.includes(t))return t}splitIntoColumns({separator:e,addNewColumns:t}){let n=this.getters.getSelectedZone(),r=this.getters.getActiveSheetId(),i=this.getSplittedCols(n,e);t&&this.addColsToAvoidCollisions(n,i),this.removeMergesInSplitZone(n,i),this.addColumnsToNotOverflowSheet(n,i);for(let e=0;e<i.length;e++){let t=n.top+e,a=i[e],o=n.left,s=this.getters.getCell({sheetId:r,col:o,row:t});if(!(a.length===1&&!s?.isFormula&&a[0]===s?.content))for(let[e,n]of a.entries())this.dispatch(`UPDATE_CELL`,{sheetId:r,col:o+e,row:t,content:bg(n,this.getters.getLocale()),format:``,style:s?.style||null})}}getSplittedCols(e,t){if(!t)throw Error(`Separator cannot be empty`);let n=this.getters.getActiveSheetId(),r=[];for(let i of C(e.top,e.bottom+1)){let a=this.getters.getEvaluatedCell({sheetId:n,col:e.left,row:i}).formattedValue;r.push(this.splitAndRemoveTrailingEmpty(a,t))}return r}splitAndRemoveTrailingEmpty(e,t){let n=e.split(t);for(;n.length>1&&n[n.length-1]===``;)n.pop();return n}willSplittedColsOverwriteContent(e,t){let n=this.getters.getActiveSheetId();for(let r of C(e.top,e.bottom+1)){let i=t[r-e.top];for(let t=1;t<i.length;t++){let i=this.getters.getCell({sheetId:n,col:e.left+t,row:r});if(i?.isFormula||i?.content)return!0}}return!1}removeMergesInSplitZone(e,t){let n=this.getters.getActiveSheetId(),r=Math.max(...t.map(e=>e.length)),i={...e,right:e.left+r-1},a=this.getters.getMergesInZone(n,i);this.dispatch(`REMOVE_MERGE`,{sheetId:n,target:a})}addColsToAvoidCollisions(e,t){let n=this.getters.getActiveSheetId(),r=0;for(let i of C(e.top,e.bottom+1)){let a={sheetId:n,col:e.left,row:i},o=t[i-e.top],s=this.getColsToAddToAvoidCollision(a,o);r=Math.max(r,s)}r&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`COL`,base:e.left,sheetId:n,sheetName:this.getters.getSheetName(n),quantity:r,position:`after`})}getColsToAddToAvoidCollision(e,t){let n=t.length;for(let t=1;t<n;t++){let r=e.col+t,i=this.getters.getCell({...e,col:r});if(i?.isFormula||i?.content)return n-t}return 0}addColumnsToNotOverflowSheet(e,t){let n=this.getters.getActiveSheetId(),r=Math.max(...t.map(e=>e.length-1)),i=this.getters.getNumberCols(n)-1;e.left+r>i&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`COL`,base:i,sheetId:n,sheetName:this.getters.getSheetName(n),quantity:e.left+r-i,position:`after`})}checkSingleColSelected(){return this.getters.isSingleColSelected()?H.Success:H.MoreThanOneColumnSelected}checkNonEmptySelector(e){return e.separator===``?H.EmptySplitSeparator:H.Success}checkNotOverwritingContent(e){if(e.addNewColumns||e.force)return H.Success;let t=this.getters.getSelectedZones()[0],n=this.getSplittedCols(t,e.separator);return this.willSplittedColsOverwriteContent(t,n)?H.SplitWillOverwriteContent:H.Success}checkSeparatorInSelection({separator:e}){let t=this.getters.getSelectedCells();for(let n of t)if(n.formattedValue.includes(e))return H.Success;return H.NoSplitSeparatorInSelection}},Rz=class extends pR{handle(e){Rl.has(e.type)&&this.dispatch(`EVALUATE_CELLS`,{cellIds:this.getters.getCellsWithTrackedFormula(`SUBTOTAL`)})}},zz=class extends pR{handle(e){switch(e.type){case`AUTOFILL_TABLE_COLUMN`:let t=this.getters.getCoreTable(e),n=this.getters.getCell(e);if(!t?.config.automaticAutofill||t.type===`dynamic`||!n?.isFormula)return;let{col:r,row:i}=e,a=NM(t.range.zone,t.config);if(a&&jn(r,i,a)){let t=e.autofillRowStart??a.top,n=e.autofillRowEnd??a.bottom,r={...a,top:t,bottom:n};this.autofillTableZone(e,r)}break}}autofillTableZone(e,t){if(t.top===t.bottom)return;let{col:n,row:r,sheetId:i}=e;for(let e=t.top;e<=t.bottom;e++)if(e!==r&&this.getters.getEvaluatedCell({col:n,row:e,sheetId:i}).type!==V.empty)return;let a={zone:this.getters.getSelectedZone(),cell:this.getters.getActivePosition()};this.selection.selectCell(n,r),this.dispatch(`AUTOFILL_SELECT`,{col:n,row:t.bottom}),this.dispatch(`AUTOFILL`),this.selection.selectCell(n,r),this.dispatch(`AUTOFILL_SELECT`,{col:n,row:t.top}),this.dispatch(`AUTOFILL`),this.selection.selectZone(a)}},Bz=class extends pR{allowDispatch(e){switch(e.type){case`RESIZE_TABLE`:let t=this.getters.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(!t)return H.TableNotFound;let n=t.range.zone,r=this.getters.getRangeFromRangeData(e.newTableRange).zone;return r.top!==n.top||r.left!==n.left?H.InvalidTableResize:this.canDispatch(`UPDATE_TABLE`,{...e}).reasons}return H.Success}handle(e){switch(e.type){case`RESIZE_TABLE`:{let t=this.getters.getCoreTableMatchingTopLeft(e.sheetId,e.zone);if(this.dispatch(`UPDATE_TABLE`,{...e}),!t)return;let n=this.getters.getRangeFromRangeData(e.newTableRange).zone;if(this.selection.selectCell(n.right,n.bottom),!t.config.automaticAutofill)return;let r=t.range.zone;if(n.bottom>=r.bottom){for(let t=n.left;t<=n.right;t++){let i={col:t,row:r.bottom,sheetId:e.sheetId};this.getters.getCell(i)?.isFormula&&this.dispatch(`AUTOFILL_TABLE_COLUMN`,{...i,autofillRowStart:r.bottom,autofillRowEnd:n.bottom})}break}}}}},Vz=class extends pR{static getters=[`shouldShowFormulas`];showFormulas=!1;handle(e){switch(e.type){case`SET_FORMULA_VISIBILITY`:this.showFormulas=e.show;break}}shouldShowFormulas(){return this.showFormulas}},Hz=class extends pR{static getters=[`getCellWidth`,`getTextWidth`,`getCellText`,`getCellMultiLineText`,`getMultilineTextSize`,`getContiguousZone`,`computeTextYCoordinate`];ctx=yu();allowDispatch(e){return this.chainValidations(this.checkSheetExists,this.checkZonesAreInSheet)(e)}handle(e){switch(e.type){case`AUTORESIZE_COLUMNS`:for(let t of e.cols){let n=this.getColMaxWidth(e.sheetId,t);n!==0&&this.dispatch(`RESIZE_COLUMNS_ROWS`,{elements:[t],dimension:`COL`,size:n,sheetId:e.sheetId})}break;case`AUTORESIZE_ROWS`:this.autoResizeRows(e.sheetId,e.rows);break;case`DELETE_UNFILTERED_CONTENT`:let t=[];for(let n of e.target){let r=$e(C(n.top,n.bottom+1).filter(t=>!this.getters.isRowFiltered(e.sheetId,t)));for(let e of r)t.push({...n,top:e[0],bottom:e[e.length-1]})}this.dispatch(`DELETE_CONTENT`,{sheetId:e.sheetId,target:t});break}}getCellWidth(e){let t=this.getters.getCellComputedStyle(e),n=0,r=this.getters.getEvaluatedCell(e).formattedValue;if(r){let e=Nu(this.ctx,r,t,void 0);n+=Cu(this.ctx,e,t).width}for(let t of this.getters.getCellIcons(e))n+=t.margin+t.size;if(this.getters.getDataValidationChipStyle(e)&&(n+=10),n===0)return 0;if(n+=8,t.wrapping===`wrap`){let t=this.getters.getColSize(this.getters.getActiveSheetId(),e.col);return Math.min(t,n)}return n}getTextWidth(e,t){return wu(this.ctx,e,t)}getMultilineTextSize(e,t){return Cu(this.ctx,e,t)}getCellText(e,t){let n=this.getters.getCell(e),r=this.getters.getLocale();if(t?.showFormula){if(n?.isFormula)return Tg(n.compiledFormula.toFormulaString(this.getters),r);if(!n?.content)return``}let i=this.getters.getEvaluatedCell(e),a=t?.availableWidth?{availableWidth:t.availableWidth,measureText:e=>wu(this.ctx,e,n?.style||{})}:void 0;return R(i.value,{format:i.format,locale:r,formatWidth:a})}getCellMultiLineText(e,t){let n=this.getters.getCellStyle(e),r=this.getters.getCellText(e,{showFormula:this.getters.shouldShowFormulas(),availableWidth:t.maxWidth});return Nu(this.ctx,r,n,t.wrapWidth)}computeTextYCoordinate(e,t,n=ye,r=1){let i=e.y+1,a=vu(t,r);if(e.height>a+8){if(n===`middle`)return Math.ceil(i+(e.height-a)/2);if(n===`bottom`)return i+e.height-a-4}return i+4}getContiguousZone(e,t){let n=t=>{for(let n of C(t.left,t.right+1)){if(!this.isCellEmpty({sheetId:e,col:n,row:t.top-1}))return{...t,top:t.top-1};if(!this.isCellEmpty({sheetId:e,col:n,row:t.bottom+1}))return{...t,bottom:t.bottom+1}}for(let n of C(t.top,t.bottom+1)){if(!this.isCellEmpty({sheetId:e,col:t.left-1,row:n}))return{...t,left:t.left-1};if(!this.isCellEmpty({sheetId:e,col:t.right+1,row:n}))return{...t,right:t.right+1}}return t},r=!1,i=t;do{r=!1;let e=n(i);On(i,e)||(r=!0,i=e)}while(r);return i}isCellEmpty(e){let t=this.getters.getMainCellPosition(e);return this.getters.getEvaluatedCell(t).type===V.empty}getColMaxWidth(e,t){let n=In(this.getters.getColsZone(e,t,t)).map(t=>this.getCellWidth({sheetId:e,...t}));return Math.max(0,Lt(n))}checkSheetExists(e){return`sheetId`in e&&this.getters.tryGetSheet(e.sheetId)===void 0&&e.type!==`CREATE_SHEET`?H.InvalidSheetId:H.Success}checkZonesAreInSheet(e){let t=`sheetId`in e?e.sheetId:this.getters.tryGetActiveSheetId();if(`ranges`in e&&e.ranges.some(e=>!this.getters.tryGetSheet(e._sheetId)))return H.InvalidSheetId;let n=this.getters.getCommandZones(e);return!t&&n.length>0?H.NoActiveSheet:t&&n.length>0?this.getters.checkZonesExistInSheet(t,n):H.Success}autoResizeRows(e,t){let n=[];for(let r of t){let t=0;for(let n of this.getters.getRowCellIds(e,r)){let r=this.getters.getCellById(n);if(!r)continue;let i=this.getters.getCellPosition(r.id),a=this.getters.getColSize(e,i.col);if(r.isFormula||this.getters.getArrayFormulaSpreadingOn(i)){let e=this.getters.getEvaluatedCell(i).formattedValue,n=xu(this.ctx,e,r?.style,a);n>t&&n>23&&(t=n)}else{let e=r.content,n=xu(this.ctx,e,r?.style,a);n>=t&&n>23&&(t=0)}}n.push(t||null)}let r=new Map(n.map(e=>[e,[]]));for(let e=0;e<n.length;e++)r.get(n[e])?.push(t[e]);for(let[t,n]of r)this.dispatch(`RESIZE_COLUMNS_ROWS`,{elements:n,dimension:`ROW`,size:t,sheetId:e})}},Uz=class extends pR{static getters=[`getSelectedCarouselItem`,`getChartFromFigureId`,`getChartIdFromFigureId`];carouselStates={};allowDispatch(e){switch(e.type){case`ADD_FIGURE_CHART_TO_CAROUSEL`:return!this.getters.doesCarouselExist(e.carouselFigureId)||this.getters.getFigure(e.sheetId,e.chartFigureId)?.tag!==`chart`?H.InvalidFigureId:H.Success;case`DUPLICATE_CAROUSEL_CHART`:return!this.getters.doesCarouselExist(e.carouselId)||!this.getters.getCarousel(e.carouselId).items.some(t=>t.type===`chart`&&t.chartId===e.chartId)||this.getters.getChart(e.duplicatedChartId)?H.InvalidFigureId:H.Success;case`ADD_NEW_CHART_TO_CAROUSEL`:return this.getters.doesCarouselExist(e.figureId)?H.Success:H.InvalidFigureId;case`UPDATE_CAROUSEL_ACTIVE_ITEM`:return this.getters.doesCarouselExist(e.figureId)?this.getters.getCarousel(e.figureId).items.some(t=>T(t,e.item))?H.Success:H.InvalidCarouselItem:H.InvalidFigureId}return H.Success}handle(e){switch(e.type){case`ADD_NEW_CHART_TO_CAROUSEL`:this.addNewChartToCarousel(e.figureId,e.sheetId);break;case`ADD_FIGURE_CHART_TO_CAROUSEL`:this.addFigureChartToCarousel(e.carouselFigureId,e.chartFigureId,e.sheetId);break;case`DUPLICATE_CAROUSEL_CHART`:this.duplicateCarouselChart(e);break;case`UPDATE_CAROUSEL_ACTIVE_ITEM`:this.carouselStates[e.figureId]=this.getCarouselItemId(e.item);break;case`POPOUT_CHART_FROM_CAROUSEL`:this.popOutChartFromCarousel(e.carouselId,e.chartId,e.sheetId);break;case`DELETE_FIGURE`:delete this.carouselStates[e.figureId];break;case`UPDATE_CAROUSEL`:this.fixWrongCarouselState(e.figureId);break;case`DELETE_CHART`:case`UNDO`:case`REDO`:case`DELETE_SHEET`:for(let e in this.carouselStates)this.fixWrongCarouselState(e);break}}popOutChartFromCarousel(e,t,n){let r=this.getters.getCarousel(e);if(!r)return;let i=this.getters.getFigure(n,e),a=this.getters.getChartDefinition(t);if(!a||!i)return;let o=this.getters.getFigureUI(n,i),s=this.getters.getPositionAnchorOffset({x:o.x+50,y:o.y+50}),c=G.smallUuid();this.dispatch(`CREATE_CHART`,{...s,chartId:G.smallUuid(),figureId:c,sheetId:n,size:{width:i.width,height:i.height},definition:{...a}});let l=r.items.filter(e=>e.type!==`chart`||e.chartId!==t);this.dispatch(`UPDATE_CAROUSEL`,{sheetId:n,figureId:e,definition:{...r,items:l}}),this.dispatch(`SELECT_FIGURE`,{figureId:c})}getSelectedCarouselItem(e){let t=this.getters.getCarousel(e);if(t.items.length)return this.carouselStates[e]?t.items.find(t=>this.getCarouselItemId(t)===this.carouselStates[e]):t.items[0]}getChartFromFigureId(e){if(!this.getters.getFigureSheetId(e))return;let t=this.getChartIdFromFigureId(e);return t?this.getters.getChart(t):void 0}getChartIdFromFigureId(e){let t=this.getters.getFigureSheetId(e);if(!t)return;let n=this.getters.getFigure(t,e);if(!(!n||n.tag!==`chart`&&n.tag!==`carousel`)){if(n.tag===`carousel`){let t=this.getSelectedCarouselItem(e);return t?.type===`chart`?t.chartId:void 0}return this.getters.getChartIds(t).find(t=>this.getters.getFigureIdFromChartId(t)===e)}}fixWrongCarouselState(e){if(!this.getters.doesCarouselExist(e)){delete this.carouselStates[e];return}let t=this.getters.getCarousel(e);t.items.length===0?delete this.carouselStates[e]:this.carouselStates[e]&&t.items.some(t=>this.getCarouselItemId(t)===this.carouselStates[e])||(this.carouselStates[e]=this.getCarouselItemId(t.items[0]))}addNewChartToCarousel(e,t){let n=this.getters.getCarousel(e),r=G.smallUuid();this.dispatch(`CREATE_CHART`,{chartId:r,figureId:e,sheetId:t,definition:gh});let i={...n,items:[...n.items,{type:`chart`,chartId:r}]};this.dispatch(`UPDATE_CAROUSEL`,{sheetId:t,figureId:e,definition:i})}addFigureChartToCarousel(e,t,n){let r=this.getChartIdFromFigureId(t);if(!r)return;let i=this.getters.getCarousel(e),a={...i,items:[...i.items,{type:`chart`,chartId:r}]};this.dispatch(`UPDATE_CAROUSEL`,{sheetId:n,figureId:e,definition:a}),this.dispatch(`UPDATE_CHART`,{sheetId:n,chartId:r,figureId:e,definition:this.getters.getChartDefinition(r)}),this.dispatch(`DELETE_FIGURE`,{sheetId:n,figureId:t})}duplicateCarouselChart({carouselId:e,chartId:t,sheetId:n,duplicatedChartId:r}){let i=this.getters.getChart(t);if(!i)return;let a=this.getters.getCarousel(e),o=a.items.findIndex(e=>e.type===`chart`&&e.chartId===t);if(o===-1)return;this.dispatch(`CREATE_CHART`,{chartId:r,figureId:e,sheetId:n,definition:i.getDefinition()});let s=Mt(a.items,[{type:`chart`,chartId:r}],o+1);this.dispatch(`UPDATE_CAROUSEL`,{sheetId:n,figureId:e,definition:{...a,items:s}})}getCarouselItemId(e){return e.type===`chart`?e.chartId:`carouselDataView`}};async function Wz(e){return new Promise((t,n)=>{let r=new Image;r.addEventListener(`load`,()=>{let e=document.createElement(`canvas`);e.width=r.width,e.height=r.height,e.getContext(`2d`)?.drawImage(r,0,0),e.toBlob(t,`image/png`)}),r.addEventListener(`error`,n),r.src=e})}var Gz=class extends pR{static layers=[`Clipboard`];static getters=[`getClipboardTextAndImageContent`,`getClipboardId`,`getClipboardTextContent`,`isCutOperation`];status=`invisible`;originSheetId;copiedData;_isCutOperation=!1;clipboardId=G.uuidv4();fileStore;constructor(e){super(e),this.fileStore=e.external.fileStore}allowDispatch(e){switch(e.type){case`CUT`:let t=this.getters.getSelectedZones();return this.isCutAllowedOn(t);case`PASTE_FROM_OS_CLIPBOARD`:{let t=this.convertTextToClipboardData(e.clipboardContent.text??``),n=e.pasteOption;return this.isPasteAllowed(e.target,t,{pasteOption:n,isCutOperation:!1})}case`PASTE`:{if(!this.copiedData)return H.EmptyClipboard;let t=e.pasteOption;return this.isPasteAllowed(e.target,this.copiedData,{pasteOption:t,isCutOperation:this._isCutOperation})}case`COPY_PASTE_CELLS_ABOVE`:{let e=this.getters.getSelectedZones();if(e.length>1||e[0].top===0&&e[0].bottom===0)return H.InvalidCopyPasteSelection;let t=this.getters.getSelectedZone(),n=this.getCopiedDataAbove(t);return this.isPasteAllowed(e,n,{isCutOperation:!1})}case`COPY_PASTE_CELLS_ON_LEFT`:{let e=this.getters.getSelectedZones();if(e.length>1||e[0].left===0&&e[0].right===0)return H.InvalidCopyPasteSelection;let t=this.getters.getSelectedZone(),n=this.getCopiedDataOnLeft(t);return this.isPasteAllowed(e,n,{isCutOperation:!1})}case`COPY_PASTE_CELLS_ON_ZONE`:{let e=this.getters.getSelectedZones();if(e.length>1)return H.InvalidCopyPasteSelection;let t=this.getters.getSelectedZone(),n=this.getCopiedDataOnLeft(t);return this.isPasteAllowed(e,n,{isCutOperation:!1})}case`INSERT_CELL`:{let{cut:t,paste:n}=this.getInsertCellsTargets(e.zone,e.shiftDimension),r=this.copy(t,`shiftCells`);return this.isPasteAllowed(n,r,{isCutOperation:!0})}case`DELETE_CELL`:{let{cut:t,paste:n}=this.getDeleteCellsTargets(e.zone,e.shiftDimension),r=this.copy(t,`shiftCells`);return this.isPasteAllowed(n,r,{isCutOperation:!0})}}return H.Success}handle(e){switch(e.type){case`COPY`:case`CUT`:let t=this.getters.getSelectedZones();this.status=`visible`,this.originSheetId=this.getters.getActiveSheetId(),this._isCutOperation=e.type===`CUT`,this.copiedData=this.copy(t);break;case`PASTE_FROM_OS_CLIPBOARD`:{this._isCutOperation=!1;let t=e.clipboardContent;if(t.data?.version!==dS()&&(t={...t},delete t.data),t.imageData){let n=this.getters.getActiveSheetId(),r=G.uuidv4(),i=t.imageData,a=oh(this.getters,i.size);this.dispatch(`CREATE_IMAGE`,{definition:i,size:a,col:e.target[0].left,row:e.target[0].top,offset:{x:0,y:0},sheetId:n,figureId:r})}t.data?this.copiedData=t.data:this.copiedData=this.convertTextToClipboardData(t.text??``);let n=e.pasteOption;this.paste(e.target,this.copiedData,{pasteOption:n,selectTarget:!0,isCutOperation:!1}),this.status=`invisible`,this.copiedData=void 0;break}case`PASTE`:{let t=e.pasteOption;this.paste(e.target,this.copiedData,{pasteOption:t,selectTarget:!0,isCutOperation:this._isCutOperation}),this.status=`invisible`,this._isCutOperation&&=(this.copiedData=void 0,!1);break}case`COPY_PASTE_CELLS_ABOVE`:{let e=this.getters.getSelectedZone();this.originSheetId=this.getters.getActiveSheetId();let t=this.getCopiedDataAbove(e);this.paste([e],t,{isCutOperation:!1,selectTarget:!0})}break;case`COPY_PASTE_CELLS_ON_LEFT`:{let e=this.getters.getSelectedZone();this.originSheetId=this.getters.getActiveSheetId();let t=this.getCopiedDataOnLeft(e);this.paste([e],t,{isCutOperation:!1,selectTarget:!0})}break;case`COPY_PASTE_CELLS_ON_ZONE`:{let e=this.getters.getSelectedZone();this.originSheetId=this.getters.getActiveSheetId();let t=this.getCopiedDataAboveOnLeft(e);this.paste([e],t,{isCutOperation:!1,selectTarget:!0})}break;case`CLEAN_CLIPBOARD_HIGHLIGHT`:this.status=`invisible`;break;case`DELETE_CELL`:{let{cut:t,paste:n}=this.getDeleteCellsTargets(e.zone,e.shiftDimension);if(!vn(t[0])){this.dispatch(`CLEAR_CELLS`,{target:[e.zone],sheetId:this.getters.getActiveSheetId()});break}let r=this.copy(t,`shiftCells`);this.paste(n,r,{isCutOperation:!0});break}case`INSERT_CELL`:{let{cut:t,paste:n}=this.getInsertCellsTargets(e.zone,e.shiftDimension),r=this.copy(t,`shiftCells`);this.paste(n,r,{isCutOperation:!0});break}case`ADD_COLUMNS_ROWS`:if(this.status=`invisible`,!this._isCutOperation||e.sheetId!==this.copiedData?.sheetId)return;this.isColRowDirtyingClipboard(e.position===`before`?e.base:e.base+1,e.dimension)&&(this.copiedData=void 0);break;case`REMOVE_COLUMNS_ROWS`:if(this.status=`invisible`,!this._isCutOperation||e.sheetId!==this.copiedData?.sheetId)return;for(let t of e.elements)if(this.isColRowDirtyingClipboard(t,e.dimension)){this.copiedData=void 0;break}this.status=`invisible`;break;case`REPEAT_PASTE`:this.paste(e.target,this.copiedData,{isCutOperation:!1,pasteOption:e.pasteOption,selectTarget:!0});break;case`DELETE_SHEET`:if(!this._isCutOperation)return;this.originSheetId===e.sheetId&&(this.copiedData=void 0,this.status=`invisible`);break;default:Hl(e)&&(this.status=`invisible`)}}getCopiedDataAbove(e){let t=e.top!==e.bottom,n={...e,bottom:t?e.top:e.top-1,top:t?e.top:e.top-1};return this.copy([n])}getCopiedDataOnLeft(e){let t=e.left!==e.right,n={...e,right:t?e.left:e.left-1,left:t?e.left:e.left-1};return this.copy([n])}getCopiedDataAboveOnLeft(e){let t={...e,right:e.left,bottom:e.top};return this.copy([t])}convertTextToClipboardData(e){let t=this.selectClipboardHandlers({figureId:!0}).concat(this.selectClipboardHandlers({})),n={};for(let{handlerName:r,handler:i}of t){let t=i.convertTextToClipboardData(e);n[r]=t;for(let e of[`sheetId`,`cells`,`zones`,`figureId`])t&&e in t&&(n[e]=t[e])}return n}selectClipboardHandlers(e){let t=`figureId`in e?eI.figureHandlers:eI.cellHandlers;return t.getKeys().map(e=>({handlerName:e,handler:new(t.get(e))(this.getters,this.dispatch)}))}isCutAllowedOn(e){let t=this.getClipboardData(e);for(let{handler:e}of this.selectClipboardHandlers(t)){let n=e.isCutAllowed(t);if(n!==H.Success)return n}return H.Success}isPasteAllowed(e,t,n){for(let{handler:r}of this.selectClipboardHandlers(t)){let i=r.isPasteAllowed(this.getters.getActiveSheetId(),e,t,{...n});if(i!==H.Success)return i}return H.Success}isColRowDirtyingClipboard(e,t){if(!this.copiedData||!this.copiedData.zones)return!1;let{zones:n}=this.copiedData;for(let r of n)if(t===`COL`&&e<=r.right||t===`ROW`&&e<=r.bottom)return!0;return!1}copy(e,t=`copyPaste`){let n={},r=this.getClipboardData(e);for(let{handlerName:e,handler:i}of this.selectClipboardHandlers(r)){let a=i.copy(r,this._isCutOperation,t);n[e]=a;for(let e of[`sheetId`,`cells`,`zones`,`figureId`])a&&e in a&&(n[e]=a[e])}return n}paste(e,t,n){if(!t)return;let r=this.getters.getActiveSheetId(),i=this.selectClipboardHandlers(t),{target:a,zone:o,selectedZones:s}=JS(r,e,t,i,n);o!==void 0&&this.addMissingDimensions(r,o.right-o.left+1,o.bottom-o.top+1,o.left,o.top),qS(i,t,a,n),n?.selectTarget&&YS(this.selection,e,s)}addMissingDimensions(e,t,n,r,i){let a=n+i-this.getters.getNumberRows(e);a>0&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`ROW`,base:this.getters.getNumberRows(e)-1,sheetId:e,sheetName:this.getters.getSheetName(e),quantity:a,position:`after`});let o=t+r-this.getters.getNumberCols(e);o>0&&this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:`COL`,base:this.getters.getNumberCols(e)-1,sheetId:e,sheetName:this.getters.getSheetName(e),quantity:o,position:`after`})}getClipboardTextContent(){return this.getPlainTextContent()}getClipboardId(){return this.clipboardId}async getClipboardTextAndImageContent(){let e=await this.getImageContent(),t=e?.type,n={[zS.PlainText]:``,[zS.Html]:``};try{n[zS.PlainText]=this.getPlainTextContent(),n[zS.Html]=await this.getHTMLContent()}catch{this.ui.notifyUI({type:`danger`,text:`Your selection was too large for the browser to copy it.
121
+ Please select a smaller zone.`,sticky:!0})}return t&&e&&(n[t]=e),n}getSheetData(){let e={version:dS()};return this.copiedData&&`figureId`in this.copiedData?e:{...e,...this.copiedData}}getPlainTextContent(){return this.copiedData?.cells&&this.copiedData.cells.map(e=>e.map(e=>this.getters.shouldShowFormulas()&&e?.compiledFormula?e?.content||``:e.evaluatedCell?.formattedValue||``).join(` `)).join(`
122
+ `)||` `}async getHTMLContent(){let e=``,t=this.copiedData?.cells;if(!t)if(this.copiedData?.figureId){let t=this.copiedData.figureId,n=this.getters.getFigureSheetId(t);e=this.getters.getFigure(n,t).tag===`image`?await this.craftImageHTML(t):` `}else e=` `;else if(t.length===1&&t[0].length===1)e=`${this.getters.getCellText(t[0][0].position)}`;else if(t[0][0]){let n=`<table border="1" style="border-collapse:collapse">`;for(let e of t){n+=`<tr>`;for(let t of e){if(!t)continue;let e=W(Nh(this.getters.getCellComputedStyle(t.position))),r=this.getters.getCellText(t.position);n+=`<td style="${e}">`+ib(r)+`</td>`}n+=`</tr>`}n+=`</table>`,e=n}else return``;let n=JSON.stringify(this.getSheetData());return`<div data-osheet-clipboard-id='${this.clipboardId}' data-osheet-clipboard='${ib(n)}'>${e}</div>`}readFileAsDataURL(e){return new Promise(t=>{let n=new FileReader;n.onload=()=>t(n.result),n.readAsDataURL(e)})}async craftImageHTML(e){if(!this.fileStore)return` `;let t=this.getters.getImage(e).path,n=await this.fileStore?.getFile(t)||null;return n?`<img src="${ib(await this.readFileAsDataURL(n))}" />`:` `}async getImageContent(){let e=this.copiedData?.figureId;if(!e)return;let t=this.getters.getFigureSheetId(e),n=this.getters.getFigure(t,e),r;if(n.tag===`image`){if(!this.fileStore)return;let t=this.getters.getImage(e).path;if(r=await this.fileStore?.getFile(t),r.type!==`image/png`){if(r.size>5242880){this.ui.notifyUI({text:A(`The file you are trying to copy is too large (>%sMB).
123
+ It will not be added to your OS clipboard.
124
+ You can download it directly instead.`,5),sticky:!1,type:`warning`});return}r=await Wz(t)}}if(r)return r instanceof File?r:new File([r],`image.png`,{type:`image/png`})}isCutOperation(){return this._isCutOperation??!1}getDeleteCellsTargets(e,t){let n=this.getters.getActiveSheetId(),r;return r=t===`COL`?{...e,left:e.right+1,right:this.getters.getNumberCols(n)-1}:{...e,top:e.bottom+1,bottom:this.getters.getNumberRows(n)-1},{cut:[r],paste:[e]}}getInsertCellsTargets(e,t){let n=this.getters.getActiveSheetId(),r,i;return t===`COL`?(r={...e,right:this.getters.getNumberCols(n)-1},i={...e,left:e.right+1,right:e.right+1}):(r={...e,bottom:this.getters.getNumberRows(n)-1},i={...e,top:e.bottom+1,bottom:this.getters.getNumberRows(n)-1}),{cut:[r],paste:[i]}}getClipboardData(e){let t=this.getters.getActiveSheetId(),n=this.getters.getSelectedFigureId();if(n)return{figureId:n,sheetId:t};let r=VS(t,e);return this._isCutOperation||(r.rowsIndexes=r.rowsIndexes.filter(e=>!this.getters.isRowFiltered(t,e))),r}drawLayer(e){if(this.status!==`visible`||!this.copiedData)return;let{sheetId:t,zones:n}=this.copiedData,{ctx:r,thinLineWidth:i,viewports:a,sheetId:o}=e;if(!(o!==t||!n||!n.length)){r.setLineDash([8,5]),r.strokeStyle=te,r.lineWidth=3.3*i;for(let e of n){let{x:t,y:n,width:i,height:s}=a.getVisibleRect(o,e);i>0&&s>0&&r.strokeRect(t,n,i,s)}}}};let Kz={filterType:`criterion`,type:`none`,values:[]};var qz=class extends pR{static getters=[`getFilterValue`,`getFilterHiddenValues`,`getFilterCriterionValue`,`getFirstTableInSelection`,`isRowFiltered`,`isFilterActive`];filterValues={};hiddenRows={};isEvaluationDirty=!1;allowDispatch(e){switch(e.type){case`UPDATE_FILTER`:if(!this.getters.getFilterId(e))return H.FilterNotFound;break}return H.Success}handle(e){switch(e.type){case`UNDO`:case`REDO`:case`UPDATE_CELL`:case`EVALUATE_CELLS`:case`ACTIVATE_SHEET`:case`REMOVE_TABLE`:case`ADD_COLUMNS_ROWS`:case`REMOVE_COLUMNS_ROWS`:case`UPDATE_TABLE`:this.isEvaluationDirty=!0;break;case`START`:for(let e of this.getters.getSheetIds())this.filterValues[e]={};break;case`CREATE_SHEET`:this.filterValues[e.sheetId]={};break;case`HIDE_COLUMNS_ROWS`:case`UNHIDE_COLUMNS_ROWS`:case`GROUP_HEADERS`:case`UNGROUP_HEADERS`:case`FOLD_HEADER_GROUP`:case`UNFOLD_HEADER_GROUP`:case`FOLD_ALL_HEADER_GROUPS`:case`UNFOLD_ALL_HEADER_GROUPS`:case`FOLD_HEADER_GROUPS_IN_ZONE`:case`UNFOLD_HEADER_GROUPS_IN_ZONE`:this.updateHiddenRows(e.sheetId);break;case`UPDATE_FILTER`:this.updateFilter(e),this.updateHiddenRows(e.sheetId);break;case`DUPLICATE_SHEET`:this.filterValues[e.sheetIdTo]=x(this.filterValues[e.sheetId]);break}}finalize(){if(this.isEvaluationDirty){for(let e of this.getters.getSheetIds())this.updateHiddenRows(e);this.isEvaluationDirty=!1}}isRowFiltered(e,t){return!!this.hiddenRows[e]?.has(t)}getFilterValue(e){let t=this.getters.getFilterId(e),n=e.sheetId;return t?this.filterValues[n]?.[t]:void 0}getFilterHiddenValues(e){let t=this.getters.getFilterId(e),n=e.sheetId;if(!t||!this.filterValues[n])return[];let r=this.filterValues[n][t]||[];return r.filterType===`values`?r.hiddenValues:[]}getFilterCriterionValue(e){let t=this.getters.getFilterId(e),n=e.sheetId;if(!t||!this.filterValues[n])return Kz;let r=this.filterValues[n][t];return r&&r.filterType===`criterion`?r:Kz}isFilterActive(e){let t=this.getters.getFilterId(e);if(!t)return!1;let n=e.sheetId,r=this.filterValues[n]?.[t];return r?r.filterType===`values`?r.hiddenValues.length>0:r.type!==`none`:!1}getFirstTableInSelection(){let e=this.getters.getActiveSheetId(),t=this.getters.getSelectedZones();return this.getters.getTablesOverlappingZones(e,t)[0]}updateFilter({col:e,row:t,value:n,sheetId:r}){let i=this.getters.getFilterId({sheetId:r,col:e,row:t});i&&(this.filterValues[r]||(this.filterValues[r]={}),this.filterValues[r][i]=n)}updateHiddenRows(e){let t=this.getters.getFilters(e).sort((e,t)=>e.rangeWithHeaders.zone.top-t.rangeWithHeaders.zone.top),n=new Set;for(let r of t){let t=this.filterValues[e]?.[r.id],i=r.filteredRange?.zone;if(!(!t||!i||n.has(r.rangeWithHeaders.zone.top)||this.getters.isRowHiddenByUser(e,r.rangeWithHeaders.zone.top)))if(t.filterType===`values`){let a=t.hiddenValues?.map(Fu);if(!a)continue;let o=new Set(a);for(let t=i.top;t<=i.bottom;t++){let i=this.getCellValueAsString(e,r.col,t);o.has(i)&&n.add(t)}}else{if(t.type===`none`)continue;let a=Q.get(t.type),o=a.preComputeCriterion?.(t,[r.filteredRange],this.getters),s=t.values.map(t=>t.startsWith(`=`)?this.getters.evaluateFormula(e,t)??``:au(t,L));if(s.some(Jb))continue;let c={type:t.type,values:s.map(Kb),dateValue:t.dateValue};for(let t=i.top;t<=i.bottom;t++){let i={sheetId:e,col:r.col,row:t},s=this.getters.getEvaluatedCell(i).value??``;a.isValueValid(s,c,o)||n.add(t)}}}this.hiddenRows[e]=n}getCellValueAsString(e,t,n){let r=this.getters.getEvaluatedCell({sheetId:e,col:t,row:n}).formattedValue;return Fu(r)}exportForExcel(e){for(let t of e.sheets){let e=t.id;for(let n of t.tables){let r=hn(n.range),i=[],a=[];for(let n of C(0,Nn(r).numberOfCols)){let o={sheetId:t.id,col:r.left+n,row:r.top},s=this.getFilterHiddenValues(o),c=this.getters.getFilter(o),l=c?.filteredRange?In(c.filteredRange.zone).map(t=>this.getters.getEvaluatedCell({sheetId:e,...t}).formattedValue):[];if(s.length){let e=l.filter(e=>e).filter(e=>!s.includes(e));i.push({colId:n,displayedValues:[...new Set(e)],displayBlanks:!s.includes(``)&&l.some(e=>!e)})}let u=this.getters.getEvaluatedCell(o).formattedValue,d=this.getUniqueColNameForExcel(n,u,a);a.push(d);let f=E(o.col,o.row);t.cells[f]=d,t.cellValues[f]=d}n.filters=i}}}getUniqueColNameForExcel(e,t,n){return t||=`Column${e}`,Ht(t,n,{compute:(e,n)=>t+String(n),start:2})}},Jz=class extends pR{static getters=[`getColDimensions`,`getRowDimensions`,`getColRowOffset`];headerPositions={};isDirty=!0;handle(e){switch(Nl.has(e.type)&&(this.headerPositions={},this.isDirty=!0),e.type){case`START`:for(let e of this.getters.getSheetIds())this.headerPositions[e]=this.computeHeaderPositionsOfSheet(e);break;case`UPDATE_CELL`:this.headerPositions={},this.isDirty=!0;break;case`UPDATE_FILTER`:case`UPDATE_TABLE`:case`REMOVE_TABLE`:this.headerPositions={},this.isDirty=!0;break;case`REMOVE_COLUMNS_ROWS`:case`RESIZE_COLUMNS_ROWS`:case`HIDE_COLUMNS_ROWS`:case`ADD_COLUMNS_ROWS`:case`UNHIDE_COLUMNS_ROWS`:case`FOLD_HEADER_GROUP`:case`UNFOLD_HEADER_GROUP`:case`FOLD_HEADER_GROUPS_IN_ZONE`:case`UNFOLD_HEADER_GROUPS_IN_ZONE`:case`UNFOLD_ALL_HEADER_GROUPS`:case`FOLD_ALL_HEADER_GROUPS`:case`UNGROUP_HEADERS`:case`GROUP_HEADERS`:case`CREATE_SHEET`:this.getters.tryGetSheet(e.sheetId)&&(this.headerPositions[e.sheetId]=this.computeHeaderPositionsOfSheet(e.sheetId));break;case`DUPLICATE_SHEET`:this.headerPositions[e.sheetIdTo]=x(this.headerPositions[e.sheetId]);break}}finalize(){for(let e of this.getters.getSheetIds())(this.isDirty||!this.headerPositions[e])&&(this.headerPositions[e]=this.computeHeaderPositionsOfSheet(e));this.isDirty=!1}getColDimensions(e,t){let n=this.headerPositions[e].COL[t],r=this.getters.getColSize(e,t);return{start:n,size:r,end:n+(this.getters.isColHidden(e,t)?0:r)}}getRowDimensions(e,t){let n=this.headerPositions[e].ROW[t],r=this.getters.getRowSize(e,t);return{start:n,size:r,end:n+(this.getters.isRowHidden(e,t)?0:r)}}getColRowOffset(e,t,n,r){let i=this.headerPositions[r][e][t];return this.headerPositions[r][e][n]-i}computeHeaderPositionsOfSheet(e){return{COL:this.computePositions(e,`COL`),ROW:this.computePositions(e,`ROW`)}}computePositions(e,t){let n={},r=0;for(let i=0;i<this.getters.getNumberHeaders(e,t)+1;i++)n[i]=r,!this.getters.isHeaderHidden(e,t,i)&&(r+=this.getters.getHeaderSize(e,t,i));return n}},Yz=class extends pR{static layers=[`Selection`];static getters=[`getActiveSheet`,`getActiveSheetId`,`getActiveSheetName`,`getActiveCell`,`getActiveCols`,`getActiveRows`,`getCurrentStyle`,`getSelectedZones`,`getSelectedZone`,`getSelectedCells`,`getSelectedFigureId`,`getSelection`,`getActivePosition`,`getSheetPosition`,`isSingleColSelected`,`getElementsFromSelection`,`tryGetActiveSheetId`,`isGridSelectionActive`,`getSelectecUnboundedZone`,`getSelectionRangeString`,`getSelectionState`];gridSelection={anchor:{cell:{col:0,row:0},zone:{top:0,left:0,bottom:0,right:0}},zones:[{top:0,left:0,bottom:0,right:0}]};selectedFigureId=null;sheetsData={};moveClient;isUnbounded;activeSheet=null;constructor(e){super(e),this.moveClient=e.moveClient,this.isUnbounded=!1}allowDispatch(e){switch(e.type){case`ACTIVATE_SHEET`:try{if(!this.getters.getSheet(e.sheetIdTo).isVisible)return H.SheetIsHidden;break}catch{return H.InvalidSheetId}case`MOVE_COLUMNS_ROWS`:return this.isMoveElementAllowed(e)}return H.Success}handleEvent(e){let t=e.anchor,n=[...this.gridSelection.zones];switch(this.isUnbounded=e.options?.unbounded||!1,e.mode){case`overrideSelection`:n=[t.zone];break;case`updateAnchor`:let r=n.findIndex(t=>On(t,e.previousAnchor.zone));r>=0&&(n[r]=t.zone);break;case`newAnchor`:n.push(t.zone);break;case`commitSelection`:let i=n.find(e=>Mn(t.zone,e)&&!On(t.zone,e));if(n.filter(e=>On(t.zone,e)).length>1&&n.length>2)n=n.filter(e=>!On(e,t.zone));else if(i){let e=nr(t.zone,i);n=n.filter(e=>!On(e,t.zone)&&!On(e,i)).concat(e)}n=Bn(n);let a=n[n.length-1];t={cell:jn(t.cell.col,t.cell.row,a)?t.cell:{col:a.left,row:a.top},zone:a};break}this.setSelectionMixin(t,n),this.selection.resetDefaultAnchor(this,x(this.gridSelection.anchor));let{col:r,row:i}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.getters.getActiveSheetId(),col:r,row:i}),this.selectedFigureId=null}handle(e){switch(e.type){case`ACTIVATE_SHEET`:this.selectedFigureId=null;break;case`DELETE_FIGURE`:this.selectedFigureId===e.figureId&&(this.selectedFigureId=null);break;case`DELETE_SHEET`:this.selectedFigureId&&this.getters.getFigure(e.sheetId,this.selectedFigureId)&&(this.selectedFigureId=null);break}switch(e.type){case`START`:let t=this.getters.getVisibleSheetIds()[0];this.activateSheet(t,t);let{col:n,row:r}=this.getters.getNextVisibleCellPosition({sheetId:t,col:0,row:0});this.selectCell(n,r),this.selection.registerAsDefault(this,this.gridSelection.anchor,{handleEvent:this.handleEvent.bind(this)}),this.moveClient({sheetId:t,col:0,row:0});break;case`ACTIVATE_SHEET`:this.activateSheet(e.sheetIdFrom,e.sheetIdTo);break;case`REMOVE_COLUMNS_ROWS`:{let t=this.getters.getActiveSheetId();if(e.sheetId===t){e.dimension===`COL`?this.onColumnsRemoved(e):this.onRowsRemoved(e);let{col:n,row:r}=this.gridSelection.anchor.cell;this.moveClient({sheetId:t,col:n,row:r})}break}case`ADD_COLUMNS_ROWS`:{let t=this.getters.getActiveSheetId();if(e.sheetId===t){this.onAddElements(e);let{col:n,row:r}=this.gridSelection.anchor.cell;this.moveClient({sheetId:t,col:n,row:r})}break}case`MOVE_COLUMNS_ROWS`:e.sheetId===this.getActiveSheetId()&&this.onMoveElements(e);break;case`SELECT_FIGURE`:this.selectedFigureId=e.figureId;break;case`ACTIVATE_NEXT_SHEET`:this.activateNextSheet(`right`);break;case`ACTIVATE_PREVIOUS_SHEET`:this.activateNextSheet(`left`);break;case`HIDE_SHEET`:e.sheetId===this.getActiveSheetId()&&this.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:e.sheetId,sheetIdTo:this.getters.getVisibleSheetIds()[0]});break;case`UNDO`:case`REDO`:case`DELETE_SHEET`:let i=Object.keys(this.sheetsData).filter(e=>!this.getters.tryGetSheet(e));for(let e of i)delete this.sheetsData[e];for(let e in this.sheetsData){let t=this.clipSelection(e,this.sheetsData[e].gridSelection);this.sheetsData[e]={gridSelection:x(t)}}this.fallbackToVisibleSheet();let a=this.getters.getActiveSheetId();this.gridSelection.zones=this.gridSelection.zones.map(e=>this.getters.expandZone(a,e)),this.gridSelection.anchor.zone=this.getters.expandZone(a,this.gridSelection.anchor.zone),this.setSelectionMixin(this.gridSelection.anchor,this.gridSelection.zones),this.selectedFigureId=null;break}}finalize(){this.fallbackToVisibleSheet(),this.selection.resetDefaultAnchor(this,x(this.gridSelection.anchor))}isGridSelectionActive(){return this.selection.isListening(this)}getActiveSheet(){return this.activeSheet}getActiveSheetId(){return this.activeSheet.id}getActiveSheetName(){return this.activeSheet.name}tryGetActiveSheetId(){return this.activeSheet?.id}getActiveCell(){return this.getters.getEvaluatedCell(this.getActivePosition())}getActiveCols(){let e=new Set;for(let t of this.gridSelection.zones)if(t.top===0&&t.bottom===this.getters.getNumberRows(this.getters.getActiveSheetId())-1)for(let n=t.left;n<=t.right;n++)e.add(n);return e}getActiveRows(){let e=new Set,t=this.getters.getActiveSheetId();for(let n of this.gridSelection.zones)if(n.left===0&&n.right===this.getters.getNumberCols(t)-1)for(let t=n.top;t<=n.bottom;t++)e.add(t);return e}getCurrentStyle(){let e=this.getters.getSelectedZone(),t=this.getters.getActiveSheetId();return this.getters.getCellStyle({sheetId:t,col:e.left,row:e.top})}getSelectedZones(){return x(this.gridSelection.zones)}getSelectedZone(){return x(this.gridSelection.anchor.zone)}getSelectecUnboundedZone(){return x(this.isUnbounded?this.getters.getUnboundedZone(this.activeSheet.id,this.gridSelection.anchor.zone):this.gridSelection.anchor.zone)}getSelection(){return x(this.gridSelection)}getSelectedCells(){let e=this.getters.getActiveSheetId(),t=[];for(let n of this.gridSelection.zones)t.push(...this.getters.getEvaluatedCellsInZone(e,n));return t}getSelectedFigureId(){return this.selectedFigureId}getActivePosition(){return this.getters.getMainCellPosition({sheetId:this.getActiveSheetId(),col:this.gridSelection.anchor.cell.col,row:this.gridSelection.anchor.cell.row})}getSheetPosition(e){if(e===this.getters.getActiveSheetId())return this.getActivePosition();{let t=this.sheetsData[e];return t?{sheetId:e,col:t.gridSelection.anchor.cell.col,row:t.gridSelection.anchor.cell.row}:this.getters.getNextVisibleCellPosition({sheetId:e,col:0,row:0})}}isSingleColSelected(){let e=this.getters.getSelectedZones();return!(e.length!==1||e[0].left!==e[0].right)}getElementsFromSelection(e){if(e===`COL`&&this.getters.getActiveCols().size===0||e===`ROW`&&this.getters.getActiveRows().size===0)return[];let t=this.getters.getSelectedZones(),n=[],r=e===`COL`?`left`:`top`,i=e===`COL`?`right`:`bottom`;for(let e of t){let t=Array.from({length:e[i]-e[r]+1},(t,n)=>e[r]+n);n=n.concat(t)}return[...new Set(n)].sort()}getSelectionRangeString(e,t,{allowSpilledReferences:n}={allowSpilledReferences:!1}){let r=this.getters.expandZone(e.sheetId,e.zone),i=jc({...e,zone:{...r,bottom:Pc(e)?void 0:r.bottom,right:Fc(e)?void 0:r.right}},this.getters.getSheetSize),a=this.getters.getRangeString(i,t);if(this.getters.isSingleCellOrMerge(e.sheetId,e.zone)){let{sheetName:e,xc:t}=As(a);return js(e,t.split(`:`)[0])}if(n){let e=this.getters.getArrayFormulaSpreadingOn({sheetId:i.sheetId,col:i.zone.left,row:i.zone.top}),t=e&&this.getters.getSpreadZone(e,{ignoreSpillError:!0});if(t&&On(t,i.zone)){let{sheetName:e,xc:t}=As(a);return js(e,t.split(`:`)[0])+`#`}}return a}activateSheet(e,t){if(this.setActiveSheet(t),this.sheetsData[e]={gridSelection:x(this.gridSelection)},t in this.sheetsData)Object.assign(this,this.sheetsData[t]),this.selection.resetDefaultAnchor(this,x(this.gridSelection.anchor));else{let{col:e,row:n}=this.getters.getNextVisibleCellPosition({sheetId:t,col:0,row:0});this.selectCell(e,n)}let{col:n,row:r}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.activeSheet.id,col:n,row:r})}setSelectionMixin(e,t){let{anchor:n,zones:r}=this.clipSelection(this.getters.getActiveSheetId(),{anchor:e,zones:t});this.gridSelection.anchor=n,this.gridSelection.zones=r}selectCell(e,t){let n=this.getters.getActiveSheetId(),r=this.getters.expandZone(n,{left:e,right:e,top:t,bottom:t});this.setSelectionMixin({zone:r,cell:{col:e,row:t}},[r])}setActiveSheet(e){this.activeSheet=this.getters.getSheet(e)}activateNextSheet(e){let t=this.getters.getSheetIds(),n=(t.findIndex(e=>e===this.activeSheet.id)+(e===`left`?t.length-1:1))%t.length;this.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:this.getActiveSheetId(),sheetIdTo:t[n]})}onColumnsRemoved(e){let{cell:t,zone:n}=this.gridSelection.anchor,r=Cn(n,`left`,[...e.elements]),i={left:t.col,right:t.col,top:t.row,bottom:t.row};i=Cn(i,`left`,[...e.elements]);let a={cell:{col:i.left,row:i.top},zone:r},o=this.gridSelection.zones.map(t=>Cn(t,`left`,[...e.elements]));this.setSelectionMixin(a,o)}onRowsRemoved(e){let{cell:t,zone:n}=this.gridSelection.anchor,r=Cn(n,`top`,[...e.elements]),i={left:t.col,right:t.col,top:t.row,bottom:t.row};i=Cn(i,`top`,[...e.elements]);let a={cell:{col:i.left,row:i.top},zone:r},o=this.gridSelection.zones.map(t=>Cn(t,`top`,[...e.elements]));this.setSelectionMixin(a,o)}onAddElements(e){let t=e.dimension===`COL`?`left`:`top`,n=Sn(this.gridSelection.anchor.zone,t,e.base,e.position,e.quantity),r=this.gridSelection.zones.map(n=>Sn(n,t,e.base,e.position,e.quantity)),i={cell:{col:n.left,row:n.top},zone:n};this.setSelectionMixin(i,r)}onMoveElements(e){let t=e.elements.length,n=this.getFiguresUpdates(e);this.dispatch(`ADD_COLUMNS_ROWS`,{dimension:e.dimension,sheetId:e.sheetId,sheetName:e.sheetName,base:e.base,quantity:t,position:e.position});let r=e.dimension===`COL`,i=e.elements[0],a=e.elements[t-1],o=e.base<i,s=o&&r?t:0,c=o&&!r?t:0,l=o?e.elements.map(e=>e+t):e.elements,u={};for(let t of l)u[t]=this.getters.getHeaderSize(e.sheetId,e.dimension,t);let d=[{left:r?i+s:0,right:r?a+s:this.getters.getNumberCols(e.sheetId)-1,top:r?0:i+c,bottom:r?this.getters.getNumberRows(e.sheetId)-1:a+c}],f=this.getActiveSheetId(),p=o?e.base:e.base+1,m=[{left:r?p:0,right:r?p+t-1:this.getters.getNumberCols(e.sheetId)-1,top:r?0:p,bottom:r?this.getters.getNumberRows(e.sheetId)-1:p+t-1}],h=eI.cellHandlers.getKeys().map(e=>[e,new(eI.cellHandlers.get(e))(this.getters,this.dispatch)]),g={};for(let[e,t]of h)g[e]=t.copy(VS(f,d),!1,`shiftCells`);for(let[e,t]of h)g[e]&&t.paste({zones:m,sheetId:f},g[e],{isCutOperation:!0});let _=m[0],v=_.left,y=_.top;this.setSelectionMixin({zone:_,cell:{col:v,row:y}},[_]);let b=o?e.base:e.base+1,ee={};for(let t of l){let n=u[t];n!==this.getters.getHeaderSize(e.sheetId,e.dimension,b)&&(ee[n]??=[],ee[n].push(b)),b+=1}for(let t in ee)this.dispatch(`RESIZE_COLUMNS_ROWS`,{dimension:e.dimension,sheetId:e.sheetId,size:parseInt(t,10),elements:ee[t]});this.dispatch(`REMOVE_COLUMNS_ROWS`,{dimension:e.dimension,sheetId:e.sheetId,sheetName:e.sheetName,elements:l}),this.applyFigureUpdates(n)}getFiguresUpdates(e){let t=[],n={},r=e.elements[0]<e.base?e.base-e.elements.length+1:e.base;for(let t=0;t<e.elements.length;t++)n[e.elements[t]]=r+t;for(let r of this.getters.getFigures(e.sheetId))e.dimension===`COL`&&r.col in n&&t.push({type:`UPDATE_FIGURE`,sheetId:e.sheetId,figureId:r.id,col:n[r.col],row:r.row}),e.dimension===`ROW`&&r.row in n&&t.push({type:`UPDATE_FIGURE`,sheetId:e.sheetId,figureId:r.id,row:n[r.row],col:r.col});return t}applyFigureUpdates(e){for(let t of e)this.dispatch(t.type,{...t})}isMoveElementAllowed(e){let t=e.dimension===`COL`,n=e.elements[0],r=e.elements[e.elements.length-1],i=e.sheetId,a=t?this.getters.doesColumnsHaveCommonMerges:this.getters.doesRowsHaveCommonMerges;if(a(i,n-1,n)||a(i,r,r+1)||a(i,e.base-1,e.base))return H.WillRemoveExistingMerge;let o=[e.base,...e.elements],s=t?this.getters.getNumberCols(i):this.getters.getNumberRows(i);return o.some(e=>e<0||e>=s)?H.InvalidHeaderIndex:!t&&!this.isTableRowMoveAllowed(i,e.elements)?H.CannotMoveTableHeader:H.Success}isTableRowMoveAllowed(e,t){let n=this.getters.getCoreTables(e);if(n.length===0)return!0;let r=new Set(t);return n.every(({range:{zone:e},config:n})=>{let{top:i,bottom:a}=e;if(n.numberOfHeaders===0)return!0;let o=i+n.numberOfHeaders-1;return t.some(e=>e>=i&&e<=o)?C(i,a+1).every(e=>r.has(e)):!0})}fallbackToVisibleSheet(){if(!this.getters.tryGetSheet(this.getters.getActiveSheetId())){let e=this.getters.getVisibleSheetIds();if(this.activeSheet=this.getters.getSheet(e[0]),this.activeSheet.id in this.sheetsData){let{anchor:e}=this.clipSelection(this.activeSheet.id,this.sheetsData[this.activeSheet.id].gridSelection);this.selectCell(e.cell.col,e.cell.row)}else this.selectCell(0,0);let{col:t,row:n}=this.gridSelection.anchor.cell;this.moveClient({sheetId:this.getters.getActiveSheetId(),col:t,row:n})}}clipSelection(e,t){let n=this.getters.getNumberCols(e)-1,r=this.getters.getNumberRows(e)-1,i=t.zones.map(e=>({left:S(e.left,0,n),right:S(e.right,0,n),top:S(e.top,0,r),bottom:S(e.bottom,0,r)})),a=S(t.anchor.cell.col,0,n),o=S(t.anchor.cell.row,0,r),s={left:S(t.anchor.zone.left,0,n),right:S(t.anchor.zone.right,0,n),top:S(t.anchor.zone.top,0,r),bottom:S(t.anchor.zone.bottom,0,r)};return{zones:i,anchor:{cell:{col:a,row:o},zone:s}}}drawLayer(e){if(this.getters.isDashboard())return;let{ctx:t,thinLineWidth:n,viewports:r,sheetId:i,selectedZones:a}=e,o=this.getters.getSpreadsheetTheme();t.fillStyle=a.length===1&&a[0].left===a[0].right&&a[0].top===a[0].bottom?o.singleCellSelectionBackgroundColor:o.multipleCellsSelectionBackgroundColor,t.strokeStyle=te,t.lineWidth=1.5*n;let s=this.getters.isDarkMode();for(let e of a){let{x:n,y:a,width:o,height:c}=r.getVisibleRect(i,e);s||(t.globalCompositeOperation=`multiply`),t.fillRect(n,a,o,c),t.globalCompositeOperation=`source-over`,t.strokeRect(n,a,o,c)}t.globalCompositeOperation=`source-over`;let c=e.activePosition;if(!c)return;t.strokeStyle=te,t.lineWidth=3*n;let l;l=this.getters.isInMerge(c)?this.getters.getMerge(c):D(c);let{x:u,y:d,width:f,height:p}=r.getVisibleRect(i,l);f>0&&p>0&&t.strokeRect(u,d,f,p)}getSelectionState(){return{sheetId:this.getters.getActiveSheetId(),selectedZones:this.getters.getSelectedZones(),activeCols:this.getters.getActiveCols(),activeRows:this.getters.getActiveRows(),activePosition:this.getActivePosition()}}},Xz=class{top;bottom;left;right;offsetX;offsetY;canScrollVertically;canScrollHorizontally;viewportWidth;viewportHeight;offsetCorrectionX;offsetCorrectionY;constructor(e,t,n,r,i,a){if(this.getters=e,this.sheetId=t,this.boundaries=n,r.width<0||r.height<0)throw Error(`Viewport size cannot be negative`);this.viewportWidth=r.height&&r.width,this.viewportHeight=r.width&&r.height,this.top=n.top,this.bottom=n.bottom,this.left=n.left,this.right=n.right,this.offsetX=a.x,this.offsetY=a.y,this.canScrollVertically=i.canScrollVertically,this.canScrollHorizontally=i.canScrollHorizontally,this.offsetCorrectionX=this.getters.getColDimensions(this.sheetId,this.boundaries.left).start,this.offsetCorrectionY=this.getters.getRowDimensions(this.sheetId,this.boundaries.top).start,this.adjustViewportOffsetX(),this.adjustViewportOffsetY()}getMaxSize(){let e=this.getters.findLastVisibleColRowIndex(this.sheetId,`COL`,{first:this.boundaries.left,last:this.boundaries.right}),t=this.getters.findLastVisibleColRowIndex(this.sheetId,`ROW`,{first:this.boundaries.top,last:this.boundaries.bottom}),{end:n}=this.getters.getColDimensions(this.sheetId,e),{end:r}=this.getters.getRowDimensions(this.sheetId,t),i=n-this.offsetCorrectionX;this.canScrollHorizontally&&(i=Math.max(i,this.viewportWidth));let a=r-this.offsetCorrectionY;return this.canScrollVertically&&(a=Math.max(a,this.viewportHeight),r+46>a&&!this.getters.isReadonly()&&(a+=46)),{width:i,height:a}}getColIndex(e){return e<this.offsetCorrectionX||e>this.offsetCorrectionX+this.viewportWidth?-1:this.searchHeaderIndex(`COL`,e-this.offsetCorrectionX+this.snapCorrection.x,this.left)}getRowIndex(e){return e<this.offsetCorrectionY||e>this.offsetCorrectionY+this.viewportHeight?-1:this.searchHeaderIndex(`ROW`,e-this.offsetCorrectionY+this.snapCorrection.y,this.top)}adjustPosition(e){let t=this.sheetId,n=this.getters.getMainCellPosition({sheetId:t,...e}),{col:r,row:i}=this.getters.getNextVisibleCellPosition(n);jn(r,this.boundaries.top,this.boundaries)&&this.adjustPositionX(r),jn(this.boundaries.left,i,this.boundaries)&&this.adjustPositionY(i)}adjustPositionX(e){let t=this.sheetId,{start:n,end:r}=this.getters.getColDimensions(t,e);this.offsetX+this.viewportWidth+this.offsetCorrectionX<r?this.offsetX=r-this.viewportWidth:this.offsetX+this.offsetCorrectionX>n&&(this.offsetX=n-this.offsetCorrectionX),this.adjustViewportZoneX()}adjustPositionY(e){let t=this.sheetId,{start:n,end:r}=this.getters.getRowDimensions(t,e);this.offsetY+this.viewportHeight+this.offsetCorrectionY<r?this.offsetY=r-this.viewportHeight:this.offsetY+this.offsetCorrectionY>n&&(this.offsetY=n-this.offsetCorrectionY),this.adjustViewportZoneY()}willNewOffsetScrollViewport(e,t){return this.canScrollHorizontally&&this.offsetX!==e||this.canScrollVertically&&this.offsetY!==t}setViewportOffset(e,t){this.setViewportOffsetX(e),this.setViewportOffsetY(t)}adjustViewportZone(){this.adjustViewportZoneX(),this.adjustViewportZoneY()}getVisibleRect(e){let t=Dn(e,this),n=this.snapCorrection.x,r=this.snapCorrection.y;if(t)return{x:this.getters.getColRowOffset(`COL`,this.left,t.left,this.sheetId)+this.offsetCorrectionX-(this.left===t.left?0:n),y:this.getters.getColRowOffset(`ROW`,this.top,t.top,this.sheetId)+this.offsetCorrectionY-(this.top===t.top?0:r),width:Math.min(this.getters.getColRowOffset(`COL`,t.left,t.right+1,this.sheetId)-(this.left===t.left?n:0),this.viewportWidth),height:Math.min(this.getters.getColRowOffset(`ROW`,t.top,t.bottom+1,this.sheetId)-(this.top===t.top?r:0),this.viewportHeight)}}getFullRect(e){let t=Dn(e,this.boundaries),n=this.snapCorrection.x,r=this.snapCorrection.y;if(t){let t=this.getters.getColRowOffset(`COL`,this.left,e.left,this.sheetId)+this.offsetCorrectionX,i=this.getters.getColRowOffset(`ROW`,this.top,e.top,this.sheetId)+this.offsetCorrectionY,a=this.getters.getColRowOffset(`COL`,e.left,e.right+1,this.sheetId),o=this.getters.getColRowOffset(`ROW`,e.top,e.bottom+1,this.sheetId);return{x:t-n,y:i-r,width:a,height:o}}}isVisible(e,t){return t<=this.bottom&&t>=this.top&&e>=this.left&&e<=this.right&&!this.getters.isColHidden(this.sheetId,e)&&!this.getters.isRowHidden(this.sheetId,t)}searchHeaderIndex(e,t,n=0){if(this.viewportWidth<=0||this.viewportHeight<=0)return-1;let r=this.sheetId,i=this.getters.getNumberHeaders(r,e),a=n,o=i;for(;a<=o&&a!==i&&o!==-1;){let i=Math.floor((a+o)/2),s=this.getters.getColRowOffset(e,n,i,this.sheetId),c=this.getters.getHeaderSize(r,e,i);if(t>=s&&t<s+c)return i;t>=s+c?a=i+1:o=i-1}return-1}setViewportOffsetX(e){this.canScrollHorizontally&&(this.offsetX=e,this.adjustViewportZoneX())}setViewportOffsetY(e){this.canScrollVertically&&(this.offsetY=e,this.adjustViewportZoneY())}adjustViewportOffsetX(){if(this.canScrollHorizontally){let{width:e}=this.getMaxSize();this.viewportWidth+this.offsetX>e&&(this.offsetX=Math.max(0,e-this.viewportWidth))}this.adjustViewportZoneX()}adjustViewportOffsetY(){if(this.canScrollVertically){let{height:e}=this.getMaxSize();this.viewportHeight+this.offsetY>e&&(this.offsetY=Math.max(0,e-this.viewportHeight))}this.adjustViewportZoneY()}adjustViewportZoneX(){this.left=this.searchHeaderIndex(`COL`,this.offsetX,this.boundaries.left),this.right=Math.min(this.boundaries.right,this.searchHeaderIndex(`COL`,Math.max(this.viewportWidth+this.snapCorrection.x-.1),this.left)),this.viewportWidth&&(this.left===-1&&(this.left=this.boundaries.left),this.right===-1&&(this.right=this.boundaries.right))}adjustViewportZoneY(){this.top=this.searchHeaderIndex(`ROW`,this.offsetY,this.boundaries.top),this.bottom=Math.min(this.boundaries.bottom,this.searchHeaderIndex(`ROW`,Math.max(this.viewportHeight+this.snapCorrection.y-.1,0),this.top)),this.viewportHeight&&(this.top===-1&&(this.top=this.boundaries.top),this.bottom===-1&&(this.bottom=this.boundaries.bottom))}get snapCorrection(){return{x:Math.abs(this.offsetX-this.getters.getColRowOffset(`COL`,this.boundaries.left,Math.max(0,this.left),this.sheetId)),y:Math.abs(this.offsetY-this.getters.getColRowOffset(`ROW`,this.boundaries.top,Math.max(0,this.top),this.sheetId))}}},Zz=class{getters;viewports={};gridOffsetX=0;gridOffsetY=0;constructor(e,t,n=Me(),r=Me(),i=1){this.paneDivision=t,this.sheetViewWidth=n,this.sheetViewHeight=r,this.zoomLevel=i,this.getters=e}getColIndex(e,t){return Math.max(...this.getSubViewports(e).map(e=>e.getColIndex(t)))}getRowIndex(e,t){return Math.max(...this.getSubViewports(e).map(e=>e.getRowIndex(t)))}getSheetViewDimensionWithHeaders(){return{width:this.sheetViewWidth+this.gridOffsetX,height:this.sheetViewHeight+this.gridOffsetY}}getSheetViewDimension(){return{width:this.sheetViewWidth,height:this.sheetViewHeight}}getGridOffset(){return{x:this.gridOffsetX,y:this.gridOffsetY}}getSheetScrollInfo(e){let t=this.getMainInternalViewport(e);return{scrollX:t.offsetX,scrollY:t.offsetY}}getSheetViewVisibleCols(e){let t=this.getSubViewports(e);return[...new Set(t.map(e=>C(e.left,e.right+1)).flat())].filter(t=>t>=0&&!this.getters.isHeaderHidden(e,`COL`,t))}getSheetViewVisibleRows(e){let t=this.getSubViewports(e);return[...new Set(t.map(e=>C(e.top,e.bottom+1)).flat())].filter(t=>t>=0&&!this.getters.isHeaderHidden(e,`ROW`,t))}getVisibleCellPositions(e){let t=this.getSheetViewVisibleCols(e),n=this.getSheetViewVisibleRows(e),r=[];for(let i of t)for(let t of n){let n={sheetId:e,col:i,row:t},a=this.getters.getMainCellPosition(n);a.row!==t||a.col!==i||r.push(n)}return r}getMainViewportRect(e){let t=this.getMainInternalViewport(e),{xSplit:n,ySplit:r}=this.getPaneDivisions(e),{width:i,height:a}=t.getMaxSize();return{x:this.getters.getColDimensions(e,n).start,y:this.getters.getRowDimensions(e,r).start,width:i,height:a}}getMaximumSheetOffset(e){let{width:t,height:n}=this.getMainViewportRect(e),r=this.getMainInternalViewport(e);return{maxOffsetX:Math.max(0,t-r.viewportWidth),maxOffsetY:Math.max(0,n-r.viewportHeight)}}getColRowOffsetInViewport(e,t,n,r){if(r<n)return-this.getColRowOffsetInViewport(e,t,r,n);let i=t===`COL`?this.getSheetViewVisibleCols(e):this.getSheetViewVisibleRows(e),a=i.findIndex(e=>n>=e),o=i.findIndex(e=>r<=e);o=o===-1?i.length:o;let s=i.slice(a,o),c=0;for(let n of s)c+=this.getters.getHeaderSize(e,t,n);return c*this.zoomLevel}isVisibleInViewport({sheetId:e,col:t,row:n}){return this.getSubViewports(e).some(e=>e.isVisible(t,n))}getScrollBarWidth(){return 15/this.zoomLevel}getEdgeScrollCol(e,t,n,r){let i=!1,a=0,o=0,{xSplit:s}=this.getPaneDivisions(e),{width:c}=this.getSheetViewDimension(),{x:l}=this.getMainViewportCoordinates(e),u=this.getSheetScrollInfo(e).scrollX;return t>c?(i=!0,o=fF(t-c),a=1):t<l&&r>=l&&u>0?(i=!0,o=fF(l-t),a=-1):s&&n<l&&t>l&&(i=!0,o=fF(t),a=`reset`),{canEdgeScroll:i,direction:a,delay:o}}getEdgeScrollRow(e,t,n,r){let i=!1,a=0,o=0,{ySplit:s}=this.getPaneDivisions(e),{height:c}=this.getSheetViewDimension(),{y:l}=this.getMainViewportCoordinates(e),u=this.getSheetScrollInfo(e).scrollY;return t>c?(i=!0,o=fF(t-c),a=1):t<l&&r>=l&&u>0?(i=!0,o=fF(l-t),a=-1):s&&n<l&&t>l&&(i=!0,o=fF(t),a=`reset`),{canEdgeScroll:i,direction:a,delay:o}}getVisibleRect(e,t){let n=this.getVisibleRectWithoutHeaders(e,t);return{...n,x:n.x+this.gridOffsetX,y:n.y+this.gridOffsetY}}getVisibleRectWithZoom(e,t){let n=this.getViewportZoomLevel(),r=this.getVisibleRectWithoutHeaders(e,t);return r.width*=n,r.height*=n,r.x=r.x*n+this.gridOffsetX*n,r.y=r.y*n+this.gridOffsetY*n,r}getVisibleRectWithoutHeaders(e,t){return this.mapViewportsToRect(e,e=>e.getVisibleRect(t))}getRect(e,t){let n=this.mapViewportsToRect(e,e=>e.getFullRect(t));return{...n,x:n.x+this.gridOffsetX,y:n.y+this.gridOffsetY}}getRectWithoutHeaders(e,t){return this.mapViewportsToRect(e,e=>e.getFullRect(t))}getMainViewportCoordinates(e){let{xSplit:t,ySplit:n}=this.getPaneDivisions(e);return{x:this.getters.getColDimensions(e,t).start,y:this.getters.getRowDimensions(e,n).start}}getColDimensionsInViewport(e,t){let{top:n}=this.getMainInternalViewport(e),r={left:t,right:t,top:n,bottom:n},{x:i,width:a}=this.getVisibleRect(e,r),o=i-this.gridOffsetX;return{start:o,size:a,end:o+a}}getRowDimensionsInViewport(e,t){let{left:n}=this.getMainInternalViewport(e),r={left:0,right:n,top:t,bottom:t},{y:i,height:a}=this.getVisibleRect(e,r),o=i-this.gridOffsetY;return{start:o,size:a,end:o+a}}getAllSheetViewportsZonesAndRect(e){return this.getSubViewports(e).map(e=>({zone:e,rect:{x:e.offsetCorrectionX+this.gridOffsetX,y:e.offsetCorrectionY+this.gridOffsetY,...e.getMaxSize()}}))}getViewportZoomLevel(){return this.zoomLevel}ensureMainViewportExist(e){this.viewports[e]||this.resetViewports(e)}getSubViewports(e){return this.ensureMainViewportExist(e),Object.values(this.viewports[e]).filter(w)}checkPositiveDimension(e){return e.width<0||e.height<0?H.InvalidViewportSize:H.Success}checkValuesAreDifferent(e){let{height:t,width:n}=this.getSheetViewDimension();return e.gridOffsetX===this.gridOffsetX&&e.gridOffsetY===this.gridOffsetY&&e.width===n&&e.height===t?H.ValuesNotChanged:H.Success}checkScrollingDirection(e,{offsetX:t,offsetY:n}){let r=this.getMainInternalViewport(e);return!r.canScrollHorizontally&&t>0||!r.canScrollVertically&&n>0?H.InvalidScrollingDirection:H.Success}checkIfViewportsWillChange(e,{offsetX:t,offsetY:n}){let{maxOffsetX:r,maxOffsetY:i}=this.getMaximumSheetOffset(e);return this.getSubViewports(e).some(e=>e.willNewOffsetScrollViewport(S(t,0,r),S(n,0,i)))?H.Success:H.ViewportScrollLimitsReached}getMainViewport(e){let t=this.getMainInternalViewport(e);return{top:t.top,left:t.left,bottom:t.bottom,right:t.right}}getMainInternalViewport(e){return this.ensureMainViewportExist(e),this.viewports[e].bottomRight}cleanViewports(){let e={};for(let t of this.getters.getSheetIds())e[t]=this.viewports[t];this.viewports=e}resizeSheetView(e,t,n=0,r=0){this.sheetViewHeight=e,this.sheetViewWidth=t,this.gridOffsetX=n,this.gridOffsetY=r,this.recomputeViewports()}recomputeViewports(){for(let e of this.getters.getSheetIds())this.resetViewports(e)}setSheetViewOffset(e,t,n){let{maxOffsetX:r,maxOffsetY:i}=this.getMaximumSheetOffset(e);this.getSubViewports(e).forEach(e=>e.setViewportOffset(S(t,0,r),S(n,0,i)))}getViewportOffset(e){return{x:this.viewports[e]?.bottomRight.offsetX||0,y:this.viewports[e]?.bottomRight.offsetY||0}}resetViewports(e){if(!this.getters.tryGetSheet(e))return;let{xSplit:t,ySplit:n}=this.getPaneDivisions(e),r=this.getters.getNumberCols(e),i=this.getters.getNumberRows(e),a=Math.min(this.getters.getColRowOffset(`COL`,0,t,e),this.sheetViewWidth),o=Math.min(this.getters.getColRowOffset(`ROW`,0,n,e),this.sheetViewHeight),s=Math.max(this.sheetViewWidth-a,0),c=Math.max(this.sheetViewHeight-o,0),{xRatio:l,yRatio:u}=this.getFrozenSheetViewRatio(e),d=l<1,f=u<1,p=this.getViewportOffset(e),m={topLeft:n&&t&&new Xz(this.getters,e,{left:0,right:t-1,top:0,bottom:n-1},{width:a,height:o},{canScrollHorizontally:!1,canScrollVertically:!1},{x:0,y:0})||void 0,topRight:n&&new Xz(this.getters,e,{left:t,right:r-1,top:0,bottom:n-1},{width:s,height:o},{canScrollHorizontally:d,canScrollVertically:!1},{x:d?p.x:0,y:0})||void 0,bottomLeft:t&&new Xz(this.getters,e,{left:0,right:t-1,top:n,bottom:i-1},{width:a,height:c},{canScrollHorizontally:!1,canScrollVertically:f},{x:0,y:f?p.y:0})||void 0,bottomRight:new Xz(this.getters,e,{left:t,right:r-1,top:n,bottom:i-1},{width:s,height:c},{canScrollHorizontally:d,canScrollVertically:f},{x:d?p.x:0,y:f?p.y:0})};this.viewports[e]=m}refreshViewport(e,t){this.getSubViewports(e).forEach(e=>{e.adjustViewportZone(),e.adjustPosition(t)})}getColIndexLeftOfMainViewport(e,t){if(t>=0)return-1;let n=this.getMainViewport(e).left,r=-this.getSheetScrollInfo(e).scrollX-this.getters.getColRowOffset(`COL`,n,0,e);for(;t<r;n--)r-=this.getters.getColSize(e,n-1);return Math.max(n,0)}getRowIndexTopOfMainViewport(e,t){if(t>=0)return-1;let n=this.getMainViewport(e).top,r=-this.getSheetScrollInfo(e).scrollY-this.getters.getColRowOffset(`ROW`,n,0,e);for(;t<r;n--)r-=this.getters.getRowSize(e,n-1);return Math.max(n,0)}getVisibleFigures(e){let t=[],n=this.getters.getFigures(e),{scrollX:r,scrollY:i}=this.getSheetScrollInfo(e),{x:a,y:o}=this.getMainViewportCoordinates(e),{width:s,height:c}=this.getSheetViewDimensionWithHeaders();for(let l of n){let n=this.getFigureUI(e,l),{x:u,y:d}=n;u>=a&&(u+l.width<r+a||u>s+r+a)||d>=o&&(d+l.height<i+o||d>c+i+o)||t.push(n)}return t}getFigureUI(e,t){let n=t.offset.x+this.getters.getColDimensions(e,t.col).start,r=t.offset.y+this.getters.getRowDimensions(e,t.row).start;return{...t,x:n,y:r}}getPositionAnchorOffset(e,t){let{scrollX:n,scrollY:r}=this.getSheetScrollInfo(e),i=t.x-n,a=t.y-r,o=i>=0?this.getColIndex(e,i):this.getColIndexLeftOfMainViewport(e,i),s=a>=0?this.getRowIndex(e,a):this.getRowIndexTopOfMainViewport(e,a),{x:c,y:l}=this.getRect(e,D({col:o,row:s}));return{col:o,row:s,offset:{x:Math.max(i-c+this.gridOffsetX,0),y:Math.max(a-l+this.gridOffsetY,0)}}}isPixelPositionVisible(e,t){let{scrollX:n,scrollY:r}=this.getSheetScrollInfo(e),{x:i,y:a}=this.getMainViewportCoordinates(e),{width:o,height:s}=this.getSheetViewDimension();return!(t.x>=i&&(t.x<i+n||t.x>o+n+i)||t.y>=a&&(t.y<a+r||t.y>s+r+a))}getFrozenSheetViewRatio(e){let{xSplit:t,ySplit:n}=this.getPaneDivisions(e),r=this.getters.getColDimensions(e,t).start,i=this.getters.getRowDimensions(e,n).start,a=this.sheetViewWidth+this.gridOffsetX,o=this.sheetViewHeight+this.gridOffsetY;return{xRatio:r/a,yRatio:i/o}}mapViewportsToRect(e,t){let n=1/0,r=1/0,i=0,a=0,o=!1;for(let s of this.getSubViewports(e)){let e=t(s);e&&(o=!0,n=Math.min(n,e.x),r=Math.min(r,e.y),i=Math.max(i,e.x+e.width),a=Math.max(a,e.y+e.height))}return o?{x:n,y:r,width:i-n,height:a-r}:{x:0,y:0,width:0,height:0}}getGridOffsetX(){return this.gridOffsetX}getGridOffsetY(){return this.gridOffsetY}getZoomLevel(){return this.zoomLevel}setZoomLevel(e){this.zoomLevel=e}getPaneDivisions(e){return this.paneDivision[e]||{xSplit:0,ySplit:0}}setPaneDivision(e,t){this.paneDivision[e]=t}},Qz=class extends pR{static getters=`getColIndex.getRowIndex.getActiveMainViewport.getSheetViewDimension.getSheetViewDimensionWithHeaders.getMainViewportRect.isVisibleInViewport.getEdgeScrollCol.getEdgeScrollRow.getVisibleFigures.getVisibleRect.getVisibleRectWithoutHeaders.getVisibleRectWithZoom.getVisibleCellPositions.getColRowOffsetInViewport.getMainViewportCoordinates.getActiveSheetScrollInfo.getSheetViewVisibleCols.getSheetViewVisibleRows.getFrozenSheetViewRatio.isPixelPositionVisible.getColDimensionsInViewport.getRowDimensionsInViewport.getRect.getFigureUI.getPositionAnchorOffset.getGridOffset.getViewportZoomLevel.getScrollBarWidth.getMaximumSheetOffset.getViewportCollection`.split(`.`);viewports=new Zz(this.getters,this.getPaneDivisions());sheetsWithDirtyViewports=new Set;shouldAdjustViewports=!1;allowDispatch(e){switch(e.type){case`SET_VIEWPORT_OFFSET`:{let t=this.getters.getActiveSheetId();return this.chainValidations(()=>this.viewports.checkScrollingDirection(t,e),()=>this.viewports.checkIfViewportsWillChange(t,e))(e)}case`RESIZE_SHEETVIEW`:return this.chainValidations(()=>this.viewports.checkValuesAreDifferent(e),()=>this.viewports.checkPositiveDimension(e))(e);case`SET_ZOOM`:return e.zoom>2||e.zoom<.5?H.InvalidZoomLevel:H.Success;default:return H.Success}}handleEvent(e){let t=this.getters.getActiveSheetId();if(e.options.scrollIntoView){let n=e.previousAnchor.zone,r=e.anchor.zone,i=e.mode===`updateAnchor`,a=On(n,r),{col:o,row:s}=i&&a?e.anchor.cell:Hn(n,r);if(i&&!a){let{top:e,bottom:i,left:a,right:c}=this.viewports.getMainInternalViewport(t);n.left===r.left&&n.right===r.right&&(o=a>o||o>c?a:o),n.top===r.top&&n.bottom===r.bottom&&(s=e>s||s>i?e:s)}o=Math.min(o,this.getters.getNumberCols(t)-1),s=Math.min(s,this.getters.getNumberRows(t)-1),this.sheetsWithDirtyViewports.has(t)||this.viewports.refreshViewport(this.getters.getActiveSheetId(),{col:o,row:s})}}handle(e){if(Nl.has(e.type))for(let e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);switch(e.type){case`START`:this.selection.observe(this,{handleEvent:this.handleEvent.bind(this)}),this.viewports.resetViewports(this.getters.getActiveSheetId());break;case`UNDO`:case`REDO`:this.viewports.cleanViewports();for(let e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e),this.syncPaneDivision(e);this.shouldAdjustViewports=!0;break;case`RESIZE_SHEETVIEW`:this.viewports.resizeSheetView(e.height,e.width,e.gridOffsetX,e.gridOffsetY);break;case`SET_VIEWPORT_OFFSET`:this.viewports.setSheetViewOffset(this.getters.getActiveSheetId(),e.offsetX,e.offsetY);break;case`SET_ZOOM`:this.viewports.setZoomLevel(e.zoom);break;case`SHIFT_VIEWPORT_DOWN`:let t=this.getters.getActiveSheetId(),{top:n,viewportHeight:r,offsetCorrectionY:i}=this.viewports.getMainInternalViewport(t),a=this.getters.getRowDimensions(t,n);this.shiftVertically(a.start+r-i);break;case`SHIFT_VIEWPORT_UP`:{let e=this.getters.getActiveSheetId(),{top:t,viewportHeight:n,offsetCorrectionY:r}=this.viewports.getMainInternalViewport(e),i=this.getters.getRowDimensions(e,t);this.shiftVertically(i.end-r-n);break}case`UNFREEZE_ROWS`:case`UNFREEZE_COLUMNS`:case`FREEZE_COLUMNS`:case`FREEZE_ROWS`:case`UNFREEZE_COLUMNS_ROWS`:case`REMOVE_COLUMNS_ROWS`:case`ADD_COLUMNS_ROWS`:this.sheetsWithDirtyViewports.add(e.sheetId),this.syncPaneDivision(e.sheetId);break;case`DUPLICATE_SHEET`:this.sheetsWithDirtyViewports.add(e.sheetIdTo),this.syncPaneDivision(e.sheetIdTo);break;case`REMOVE_TABLE`:case`UPDATE_TABLE`:case`UPDATE_FILTER`:case`RESIZE_COLUMNS_ROWS`:case`HIDE_COLUMNS_ROWS`:case`UNHIDE_COLUMNS_ROWS`:case`UNGROUP_HEADERS`:case`GROUP_HEADERS`:case`FOLD_HEADER_GROUP`:case`UNFOLD_HEADER_GROUP`:case`FOLD_HEADER_GROUPS_IN_ZONE`:case`UNFOLD_HEADER_GROUPS_IN_ZONE`:case`UNFOLD_ALL_HEADER_GROUPS`:case`FOLD_ALL_HEADER_GROUPS`:this.sheetsWithDirtyViewports.add(e.sheetId);break;case`UPDATE_CELL`:case`SET_FORMATTING`:for(let e of this.getters.getSheetIds())this.sheetsWithDirtyViewports.add(e);break;case`DELETE_SHEET`:this.viewports.cleanViewports(),this.sheetsWithDirtyViewports.delete(e.sheetId);break;case`ACTIVATE_SHEET`:this.sheetsWithDirtyViewports.add(e.sheetIdTo);break;case`SCROLL_TO_CELL`:this.viewports.refreshViewport(this.getters.getActiveSheetId(),{col:e.col,row:e.row});break}}finalize(){for(let e of this.sheetsWithDirtyViewports)if(this.viewports.resetViewports(e),this.shouldAdjustViewports){let t=this.getters.getSheetPosition(e);this.viewports.getSubViewports(e).forEach(e=>{e.adjustPosition(t)})}this.sheetsWithDirtyViewports=new Set,this.shouldAdjustViewports=!1,this.setViewports()}setViewports(){let e=this.getters.getSheetIds();for(let t of e)this.viewports.viewports[t]?.bottomRight||this.viewports.resetViewports(t)}syncPaneDivision(e){this.viewports.setPaneDivision(e,this.getters.getPaneDivisions(e))}getColIndex(e){let t=this.getters.getActiveSheetId();return this.viewports.getColIndex(t,e)}getRowIndex(e){let t=this.getters.getActiveSheetId();return this.viewports.getRowIndex(t,e)}getSheetViewDimensionWithHeaders(){return this.viewports.getSheetViewDimensionWithHeaders()}getSheetViewDimension(){return this.viewports.getSheetViewDimension()}getGridOffset(){return this.viewports.getGridOffset()}getActiveMainViewport(){return this.viewports.getMainViewport(this.getters.getActiveSheetId())}getActiveSheetScrollInfo(){let e=this.getters.getActiveSheetId();return this.viewports.getSheetScrollInfo(e)}getSheetViewVisibleCols(){return this.viewports.getSheetViewVisibleCols(this.getters.getActiveSheetId())}getSheetViewVisibleRows(){return this.viewports.getSheetViewVisibleRows(this.getters.getActiveSheetId())}getVisibleCellPositions(){return this.viewports.getVisibleCellPositions(this.getters.getActiveSheetId())}getMainViewportRect(){return this.viewports.getMainViewportRect(this.getters.getActiveSheetId())}getMaximumSheetOffset(){return this.viewports.getMaximumSheetOffset(this.getters.getActiveSheetId())}getColRowOffsetInViewport(e,t,n){return this.viewports.getColRowOffsetInViewport(this.getters.getActiveSheetId(),e,t,n)}isVisibleInViewport(e){return this.viewports.isVisibleInViewport(e)}getScrollBarWidth(){return 15/this.viewports.getZoomLevel()}getEdgeScrollCol(e,t,n){let r=this.getters.getActiveSheetId();return this.viewports.getEdgeScrollCol(r,e,t,n)}getEdgeScrollRow(e,t,n){let r=this.getters.getActiveSheetId();return this.viewports.getEdgeScrollRow(r,e,t,n)}getVisibleRect(e){return this.viewports.getVisibleRect(this.getters.getActiveSheetId(),e)}getVisibleRectWithZoom(e){return this.viewports.getVisibleRectWithZoom(this.getters.getActiveSheetId(),e)}getVisibleRectWithoutHeaders(e){return this.viewports.getVisibleRectWithoutHeaders(this.getters.getActiveSheetId(),e)}getRect(e){return this.viewports.getRect(this.getters.getActiveSheetId(),e)}getRectWithoutHeaders(e){return this.viewports.getRectWithoutHeaders(this.getters.getActiveSheetId(),e)}getMainViewportCoordinates(){return this.viewports.getMainViewportCoordinates(this.getters.getActiveSheetId())}getColDimensionsInViewport(e,t){return this.viewports.getColDimensionsInViewport(e,t)}getRowDimensionsInViewport(e,t){return this.viewports.getRowDimensionsInViewport(e,t)}getViewportZoomLevel(){return this.viewports.getZoomLevel()}shiftVertically(e){let t=this.getters.getActiveSheetId(),{top:n}=this.viewports.getMainInternalViewport(t),{scrollX:r}=this.getActiveSheetScrollInfo();this.viewports.setSheetViewOffset(t,r,e);let{anchor:i}=this.getters.getSelection();if(i.cell.row>=this.getters.getPaneDivisions(t).ySplit){let e=this.viewports.getMainInternalViewport(t).top-n;this.selection.selectCell(i.cell.col,i.cell.row+e)}}getVisibleFigures(){return this.viewports.getVisibleFigures(this.getters.getActiveSheetId())}getFigureUI(e,t){return this.viewports.getFigureUI(e,t)}getPositionAnchorOffset(e){return this.viewports.getPositionAnchorOffset(this.getters.getActiveSheetId(),e)}isPixelPositionVisible(e){return this.viewports.isPixelPositionVisible(this.getters.getActiveSheetId(),e)}getFrozenSheetViewRatio(e){return this.viewports.getFrozenSheetViewRatio(e)}getViewportCollection(){return this.viewports}getPaneDivisions(){let e={};for(let t of this.getters.getSheetIds())e[t]=this.getters.getPaneDivisions(t);return e}};let $z=new hr().add(`settings`,rL).add(`sheet`,iL).add(`header grouping`,YI).add(`header visibility`,ZI).add(`tables`,sL).add(`dataValidation`,qI).add(`cell`,UI).add(`merge`,$I).add(`headerSize`,XI).add(`borders`,LI).add(`conditional formatting`,KI).add(`figures`,JI).add(`chart`,WI).add(`carousel`,RI).add(`image`,QI).add(`named_ranges`,Hg).add(`pivot_core`,nL).add(`spreadsheet_pivot_core`,aL).add(`tableStyle`,oL),eB=new hr().add(`ui_sheet`,Hz).add(`ui_options`,Vz).add(`autofill`,hR).add(`sort`,Iz).add(`automatic_sum`,gR).add(`format`,yz).add(`insert_pivot`,Sz).add(`pivot_presence`,Mz).add(`split_to_columns`,Lz).add(`subtotal_evaluation`,Rz).add(`collaborative`,uz).add(`history`,kz).add(`table_autofill`,zz).add(`table_ui_resize`,Bz).add(`datavalidation_insert`,_z).add(`checkbox_toggle`,xR).add(`dynamic_translate`,vz).add(`geo_features`,bz).add(`data_cleanup`,gz).add(`color_theme`,fz),tB=new hr().add(`selection`,Yz).add(`evaluation_filter`,qz).add(`header_visibility_ui`,xz).add(`cell_computed_style`,bR).add(`table_computed_style`,_R).add(`header_positions`,Jz).add(`viewport`,Qz).add(`clipboard`,Gz).add(`carousel_ui`,Uz).add(`lock_sheet`,Az),nB=new hr().add(`evaluation`,PL).add(`evaluation_chart`,UL).add(`fingerprints`,pN).add(`evaluation_cf`,WL).add(`row_size`,YL).add(`data_validation_ui`,KL).add(`dynamic_tables`,VL).add(`custom_colors`,BL).add(`pivot_ui`,eR).add(`cell_icon`,IL).add(`formula_tracker`,JL),rB=new B;rB.add(`link`,{condition:(e,t)=>!!t.getEvaluatedCell(e).link,execute:(e,t,n)=>Ql(t.model.getters.getEvaluatedCell(e).link,t,n),title:(e,t)=>{let n=t.getEvaluatedCell(e).link;return n?n.isExternal?A(`Go to url: %(url)s`,{url:n.url}):A(`Go to %(label)s`,{label:n.label}):``},sequence:5}),rB.add(`dashboard_pivot_sorting`,{condition:(e,t)=>{if(!t.isDashboard())return!1;let n=t.getPivotCellFromPosition(e);return MP(t,e)&&n.type===`MEASURE_HEADER`},execute:(e,t)=>{NP(t,e,aB(t.model.getters,e))},component:NI,componentProps:(e,t)=>({position:e,sortDirection:t.getPivotCellSortDirection(e)}),sequence:2});let iB={none:`asc`,asc:`desc`,desc:`none`};function aB(e,t){return iB[e.getPivotCellSortDirection(t)??`none`]}let oB=new B().add(`ADD_COLUMNS_ROWS`,lB).add(`REMOVE_COLUMNS_ROWS`,mB).add(`ADD_MERGE`,uB).add(`REMOVE_MERGE`,dB).add(`CREATE_SHEET`,fB).add(`DELETE_SHEET`,hB).add(`DUPLICATE_SHEET`,pB).add(`CREATE_FIGURE`,gB).add(`CREATE_CHART`,_B).add(`HIDE_COLUMNS_ROWS`,vB).add(`UNHIDE_COLUMNS_ROWS`,yB).add(`CREATE_TABLE_STYLE`,bB).add(`ADD_PIVOT`,cB).add(`RENAME_SHEET`,xB).add(`LOCK_SHEET`,SB).add(`UNLOCK_SHEET`,CB);for(let e of Vl.values())oB.contains(e)||oB.add(e,sB);function sB(e){return[e]}function cB(e){return[{type:`REMOVE_PIVOT`,pivotId:e.pivotId}]}function lB(e){let t=[],n=e.base;e.position===`after`&&n++;for(let r=0;r<e.quantity;r++)t.push(r+n);return[{type:`REMOVE_COLUMNS_ROWS`,dimension:e.dimension,elements:t,sheetId:e.sheetId,sheetName:e.sheetName}]}function uB(e){return[{type:`REMOVE_MERGE`,sheetId:e.sheetId,target:e.target}]}function dB(e){return[{type:`ADD_MERGE`,sheetId:e.sheetId,target:e.target}]}function fB(e){return[{type:`DELETE_SHEET`,sheetId:e.sheetId,sheetName:e.name}]}function pB(e){return[{type:`DELETE_SHEET`,sheetId:e.sheetIdTo,sheetName:``}]}function mB(e){let t=[],n=[...e.elements].sort((e,t)=>e-t);for(let r of $e(n)){let n=r[0]===0?0:r[0]-1,i=r[0]===0?`before`:`after`;t.push({type:`ADD_COLUMNS_ROWS`,dimension:e.dimension,quantity:r.length,base:n,sheetId:e.sheetId,sheetName:e.sheetName,position:i})}return t}function hB(e){return[{type:`CREATE_SHEET`,sheetId:e.sheetId,position:1,name:e.sheetName}]}function gB(e){return[{type:`DELETE_FIGURE`,figureId:e.figureId,sheetId:e.sheetId}]}function _B(e){return[{type:`DELETE_FIGURE`,figureId:e.figureId,sheetId:e.sheetId}]}function vB(e){return[{type:`UNHIDE_COLUMNS_ROWS`,sheetId:e.sheetId,dimension:e.dimension,elements:e.elements}]}function yB(e){return[{type:`HIDE_COLUMNS_ROWS`,sheetId:e.sheetId,dimension:e.dimension,elements:e.elements}]}function bB(e){return[{type:`REMOVE_TABLE_STYLE`,tableStyleId:e.tableStyleId}]}function xB(e){return[{type:`RENAME_SHEET`,sheetId:e.sheetId,oldName:e.newName,newName:e.oldName}]}function SB(e){return[{type:`UNLOCK_SHEET`,sheetId:e.sheetId}]}function CB(e){return[{type:`LOCK_SHEET`,sheetId:e.sheetId}]}let wB=new B;wB.add(`format_number_automatic`,{...Wk,id:`format_number_automatic`,sequence:10}).add(`format_number_plain_text`,{...Gk,id:`format_number_plain_text`,sequence:15,separator:!0}).add(`format_number_number`,{...Kk,id:`format_number_number`,sequence:20}).add(`format_number_percent`,{...Jk,id:`format_number_percent`,sequence:30,separator:!1}).add(`format_number_scientific`,{...Yk,id:`format_number_scientific`,sequence:33,separator:!0}).add(`format_number_currency`,{...Xk,id:`format_number_currency`,sequence:40}).add(`format_number_accounting`,{...Qk,id:`format_number_accounting`,sequence:45}).add(`format_number_currency_rounded`,{...Zk,id:`format_number_currency_rounded`,sequence:50,separator:!0}).add(`format_number_date`,{...tA,id:`format_number_date`,sequence:70}).add(`format_number_time`,{...nA,id:`format_number_time`,sequence:80}).add(`format_number_date_time`,{...rA,id:`format_number_date_time`,sequence:90}).add(`format_number_duration`,{...iA,id:`format_number_duration`,sequence:100,separator:!0}).add(`format_custom_currency`,{...eA,id:`format_custom_currency`,sequence:120}).add(`format_custom_date`,{...aA,id:`format_custom_date`,sequence:130}).add(`format_custom_number`,{...oA,id:`format_custom_number`,sequence:140});function TB(e){let t=new Set(wB.getAll().map(t=>typeof t.format==`function`?t.format(e):t.format)),n=new Map;for(let r of e.model.getters.getSheetIds()){let i=e.model.getters.getEvaluatedCells(r);for(let e in i){let r=i[e];if(r.format&&!n.has(r.format)&&!t.has(r.format)){let e=EB(r.format);(e===`date`||e===`currency`)&&n.set(r.format,Uk({descriptionValue:e===`currency`?1e3:$k,format:r.format,name:r.format}))}}}return[...n.values()]}let EB=At(e=>To(e)?`date`:e.includes(`[$`)?`currency`:`number`),DB={name:A(`More formats`),icon:`o-spreadsheet-Icon.NUMBER_FORMATS`,children:[e=>{let t=TB(e).map(e=>({...e,sequence:110}));return t.length>0&&(t[t.length-1].separator=!0),[...wB.getAll(),...t]}]},OB=new KN;OB.add(`file`,{name:A(`File`),sequence:10}).addChild(`print`,[`file`],{name:A(`Print`),sequence:190,execute:e=>e.printSpreadsheet(),isEnabled:e=>!e.isSmall,icon:`o-spreadsheet-Icon.PRINT`}).addChild(`settings`,[`file`],{name:A(`Settings`),sequence:200,execute:e=>e.openSidePanel(`Settings`),isEnabled:e=>!e.isSmall,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.COG`}).add(`edit`,{name:A(`Edit`),sequence:20}).addChild(`undo`,[`edit`],{...YN,sequence:10}).addChild(`redo`,[`edit`],{...XN,sequence:20,separator:!0}).addChild(`copy`,[`edit`],{...ZN,sequence:30}).addChild(`cut`,[`edit`],{...QN,sequence:40}).addChild(`paste`,[`edit`],{...$N,sequence:50}).addChild(`paste_special`,[`edit`],{...eP,sequence:60,separator:!0}).addChild(`paste_special_value`,[`edit`,`paste_special`],{...tP,sequence:10}).addChild(`paste_special_format`,[`edit`,`paste_special`],{...nP,sequence:20}).addChild(`edit_table`,[`edit`],{...hP,isVisible:UC,sequence:60}).addChild(`find_and_replace`,[`edit`],{...rP,sequence:65,separator:!0}).addChild(`delete`,[`edit`],{name:A(`Delete`),icon:`o-spreadsheet-Icon.TRASH`,sequence:70}).addChild(`edit_delete_cell_values`,[`edit`,`delete`],{...iP,sequence:10}).addChild(`edit_delete_row`,[`edit`,`delete`],{...aP,sequence:20}).addChild(`edit_delete_column`,[`edit`,`delete`],{...cP,sequence:30}).addChild(`edit_delete_cell_shift_up`,[`edit`,`delete`],{...fP,sequence:40}).addChild(`edit_delete_cell_shift_left`,[`edit`,`delete`],{...pP,sequence:50}).addChild(`edit_unhide_columns`,[`edit`],{...yN,sequence:80}).addChild(`edit_unhide_rows`,[`edit`],{...SN,sequence:80}).add(`view`,{name:A(`View`),sequence:30}).addChild(`unfreeze_panes`,[`view`],{...CN,sequence:4}).addChild(`freeze_panes`,[`view`],{...wN,sequence:5}).addChild(`unfreeze_rows`,[`view`,`freeze_panes`],{...TN,sequence:5}).addChild(`freeze_first_row`,[`view`,`freeze_panes`],{...EN,sequence:10}).addChild(`freeze_second_row`,[`view`,`freeze_panes`],{...DN,sequence:15}).addChild(`freeze_current_row`,[`view`,`freeze_panes`],{...ON,sequence:20,separator:!0}).addChild(`unfreeze_columns`,[`view`,`freeze_panes`],{...kN,sequence:25}).addChild(`freeze_first_col`,[`view`,`freeze_panes`],{...AN,sequence:30}).addChild(`freeze_second_col`,[`view`,`freeze_panes`],{...jN,sequence:35}).addChild(`freeze_current_col`,[`view`,`freeze_panes`],{...MN,sequence:40}).addChild(`group_headers`,[`view`],{name:A(`Group`),sequence:15,separator:!0,icon:`o-spreadsheet-Icon.PLUS_IN_BOX`,isVisible:YC}).addChild(`group_columns`,[`view`,`group_headers`],{...LN,sequence:5}).addChild(`ungroup_columns`,[`view`,`group_headers`],{...zN,isVisible:e=>UN(e,`COL`),sequence:10}).addChild(`group_rows`,[`view`,`group_headers`],{...RN,sequence:15}).addChild(`ungroup_rows`,[`view`,`group_headers`],{...BN,isVisible:e=>UN(e,`ROW`),sequence:20}).addChild(`show`,[`view`],{name:A(`Show`),sequence:1,icon:`o-spreadsheet-Icon.SHOW`}).addChild(`view_gridlines`,[`view`,`show`],{...NN,sequence:5}).addChild(`view_formulas`,[`view`,`show`],{...IN,sequence:10}).addChild(`zoom`,[`view`],{name:A(`Zoom`),sequence:1,icon:`o-spreadsheet-Icon.ZOOM`}).addChild(`toggle_pin_panel`,[`view`],{...WN,sequence:6}).addChild(`view_irregularity_map`,[`view`],{...PN,sequence:40}).addChild(`perf_profile`,[`view`],{name:A(`Performance`),sequence:45,execute:e=>e.openSidePanel(`PerfProfile`),isVisible:e=>!e.isSmall,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.AVG_TIME`,separator:!0}).add(`insert`,{name:A(`Insert`),sequence:40}).addChild(`insert_row`,[`insert`],{...QC,sequence:10}).addChild(`insert_row_before`,[`insert`,`insert_row`],{...ew,sequence:10}).addChild(`insert_row_after`,[`insert`,`insert_row`],{...rw,sequence:20}).addChild(`insert_column`,[`insert`],{...iw,sequence:20}).addChild(`insert_column_before`,[`insert`,`insert_column`],{...ow,sequence:10}).addChild(`insert_column_after`,[`insert`,`insert_column`],{...lw,sequence:20}).addChild(`insert_cell`,[`insert`],{...uw,sequence:30}).addChild(`insert_cell_down`,[`insert`,`insert_cell`],{...dw,name:A(`Shift down`),sequence:10}).addChild(`insert_cell_right`,[`insert`,`insert_cell`],{...fw,name:A(`Shift right`),sequence:20}).addChild(`insert_sheet`,[`insert`],{...Aw,sequence:40,separator:!0}).addChild(`insert_chart`,[`insert`],{...pw,sequence:50}).addChild(`insert_carousel`,[`insert`],{...mw,sequence:51}).addChild(`insert_pivot`,[`insert`],{...hw,sequence:52}).addChild(`insert_image`,[`insert`],{...gw,sequence:55}).addChild(`insert_table`,[`insert`],{..._w,sequence:57}).addChild(`insert_function`,[`insert`],{...vw,sequence:60}).addChild(`insert_function_sum`,[`insert`,`insert_function`],{...yw,sequence:0}).addChild(`insert_function_average`,[`insert`,`insert_function`],{...bw,sequence:10}).addChild(`insert_function_count`,[`insert`,`insert_function`],{...xw,sequence:20}).addChild(`insert_function_max`,[`insert`,`insert_function`],{...Sw,sequence:30}).addChild(`insert_function_min`,[`insert`,`insert_function`],{...Cw,sequence:40,separator:!0}).addChild(`categorie_function_all`,[`insert`,`insert_function`],{...ww,sequence:50}).addChild(`categories_function_list`,[`insert`,`insert_function`],Ew).addChild(`insert_link`,[`insert`],{...Dw,separator:!0,sequence:70}).addChild(`insert_checkbox`,[`insert`],{...Ow,sequence:80}).addChild(`insert_dropdown`,[`insert`],{...kw,separator:!0,sequence:90}).add(`format`,{name:A(`Format`),sequence:50}).addChild(`format_number`,[`format`],{...DB,name:A(`Number`),sequence:10,separator:!0}).addChild(`format_bold`,[`format`],{...lA,sequence:20}).addChild(`format_italic`,[`format`],{...uA,sequence:30}).addChild(`format_underline`,[`format`],{...dA,sequence:40}).addChild(`format_strikethrough`,[`format`],{...bA,sequence:50,separator:!0}).addChild(`format_font_size`,[`format`],{...xA,sequence:60,separator:!0}).addChild(`format_alignment`,[`format`],{...SA,sequence:70}).addChild(`format_alignment_left`,[`format`,`format_alignment`],{...wA,sequence:10}).addChild(`format_alignment_center`,[`format`,`format_alignment`],{...TA,sequence:20}).addChild(`format_alignment_right`,[`format`,`format_alignment`],{...EA,sequence:30,separator:!0}).addChild(`format_alignment_top`,[`format`,`format_alignment`],{...OA,sequence:40}).addChild(`format_alignment_middle`,[`format`,`format_alignment`],{...kA,sequence:50}).addChild(`format_alignment_bottom`,[`format`,`format_alignment`],{...AA,sequence:60,separator:!0}).addChild(`format_wrapping`,[`format`],{...jA,sequence:80,separator:!0}).addChild(`format_wrapping_overflow`,[`format`,`format_wrapping`],{...NA,sequence:10}).addChild(`format_wrapping_wrap`,[`format`,`format_wrapping`],{...PA,sequence:20}).addChild(`format_wrapping_clip`,[`format`,`format_wrapping`],{...FA,sequence:30}).addChild(`format_cf`,[`format`],{...IA,sequence:90,separator:!0}).addChild(`format_clearFormat`,[`format`],{...LA,sequence:100,separator:!0}).add(`data`,{name:A(`Data`),sequence:60}).addChild(`sort_range`,[`data`],{...WP,sequence:10,separator:!0}).addChild(`sort_ascending`,[`data`,`sort_range`],{...GP,sequence:10}).addChild(`sort_descending`,[`data`,`sort_range`],{...YP,sequence:20}).addChild(`data_cleanup`,[`data`],{...KP,sequence:15}).addChild(`remove_duplicates`,[`data`,`data_cleanup`],{...qP,sequence:10}).addChild(`trim_whitespace`,[`data`,`data_cleanup`],{...JP,sequence:20}).addChild(`split_to_columns`,[`data`],{...QP,sequence:20}).addChild(`column_statistics`,[`data`],{...$P,sequence:25}).addChild(`data_validation`,[`data`],{name:A(`Data Validation`),execute:e=>{e.openSidePanel(`DataValidation`)},isEnabled:e=>!e.isSmall,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.DATA_VALIDATION`,sequence:30}).addChild(`named_range`,[`data`],{name:A(`Named ranges`),execute:e=>{e.openSidePanel(`NamedRangesPanel`)},isEnabled:e=>!e.isSmall,isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.NAMED_RANGE`,sequence:35,separator:!0}).addChild(`add_remove_data_filter`,[`data`],{...XP,sequence:40,separator:!0}).addChild(`pivot_data_sources`,[`data`],{name:A(`Pivot`),sequence:50,icon:`o-spreadsheet-Icon.PIVOT`,secondaryIcon:e=>e.model.getters.getPivotIds().some(t=>e.model.getters.isPivotUnused(t))?`o-spreadsheet-Icon.UNUSED_PIVOT_WARNING`:``,children:[e=>{let{getters:t}=e.model;return t.getPivotIds().map((n,r)=>{let i={get highlights(){return oj(t,n)}};return{id:`item_pivot_${t.getPivotFormulaId(n)}`,name:t.getPivotDisplayName(n),sequence:r,isReadonlyAllowed:!0,isEnabledOnLockedSheet:!0,execute:()=>e.openSidePanel(`PivotSidePanel`,{pivotId:n}),isEnabled:()=>!e.isSmall,onStartHover:()=>e.getStore(oT).register(i),onStopHover:()=>e.getStore(oT).unRegister(i),secondaryIcon:()=>t.isPivotUnused(n)?`o-spreadsheet-Icon.UNUSED_PIVOT_WARNING`:void 0}})}]}).addChild(`reinsert_dynamic_pivot`,[`data`],eF).addChild(`reinsert_static_pivot`,[`data`],tF),he.forEach(e=>{OB.addChild(`zoom${e}`,[`view`,`zoom`],FN(e))});let kB=[AB,jB,NB,PB];function AB(e,t){return`sheetId`in t?{...x(t),sheetId:e.getActiveSheetId()}:t}function jB(e,t){return!(`target`in t)||!Array.isArray(t.target)?t:{...x(t),target:e.getSelectedZones()}}function MB(e,t){return`zone`in t?{...x(t),zone:e.getSelectedZone()}:t}function NB(e,t){if(!(`row`in t)||!(`col`in t))return t;let{col:n,row:r}=e.getActivePosition();return{...x(t),col:n,row:r}}function PB(e,t){return`ranges`in t?{...x(t),ranges:e.getSelectedZones().map(t=>e.getRangeDataFromZone(e.getActiveSheetId(),t))}:t}function FB(e,t){let n=G.smallUuid();return{...AB(e,t),figureId:n,chartId:n}}function IB(e,t){return{...AB(e,t),figureId:G.smallUuid()}}function LB(e,t){let n=NB(e,AB(e,t));return n.figureId=G.smallUuid(),n}function RB(e,t){let n=x(t);n.sheetId=G.smallUuid();let r=t.name||e.getSheet(e.getActiveSheetId()).name,i=r.match(/(.+?)\d*$/)?.[1]||r;return n.name=e.getNextSheetName(i),n}function zB(e,t){let n=e.getActivePosition();return{...AB(e,t),base:t.dimension===`COL`?n.col:n.row}}function BB(e,t){let n=e.getSelectedZone();return{...AB(e,t),elements:t.dimension===`COL`?C(n.left,n.right+1):C(n.top,n.bottom+1)}}function VB(e,t){let n=e.getSelectedZone();return{...x(t),zone:n}}function HB(e,t){let n=x(t),{top:r,bottom:i,left:a,right:o}=e.getSelectedZone();return`cols`in n?n.cols=C(a,o+1):`rows`in n&&(n.rows=C(r,i+1)),n}function UB(e,t){let n=e.getSelectedZone();return{...AB(e,t),col:n.left,row:n.top,zone:n}}function WB(e,t){return{type:`REPEAT_PASTE`,pasteOption:x(t.pasteOption),target:e.getSelectedZones()}}function GB(e,t){let n=e.getSelectedZone();return{...AB(e,t),start:t.dimension===`COL`?n.left:n.top,end:t.dimension===`COL`?n.right:n.bottom}}Cz.add(`UPDATE_CELL`,KB),Cz.add(`CLEAR_CELL`,KB),Cz.add(`CLEAR_CELLS`,KB),Cz.add(`DELETE_CONTENT`,KB),Cz.add(`ADD_MERGE`,KB),Cz.add(`REMOVE_MERGE`,KB),Cz.add(`SET_FORMATTING`,KB),Cz.add(`CLEAR_FORMATTING`,KB),Cz.add(`SET_BORDER`,KB),Cz.add(`CREATE_TABLE`,KB),Cz.add(`REMOVE_TABLE`,KB),Cz.add(`HIDE_SHEET`,KB),Cz.add(`ADD_COLUMNS_ROWS`,zB),Cz.add(`REMOVE_COLUMNS_ROWS`,BB),Cz.add(`HIDE_COLUMNS_ROWS`,BB),Cz.add(`RESIZE_COLUMNS_ROWS`,BB),Cz.add(`CREATE_SHEET`,RB),Cz.add(`CREATE_FIGURE`,LB),Cz.add(`CREATE_CHART`,FB),Cz.add(`CREATE_IMAGE`,IB),Cz.add(`GROUP_HEADERS`,GB),Cz.add(`UNGROUP_HEADERS`,GB),Cz.add(`UNFOLD_HEADER_GROUPS_IN_ZONE`,MB),Cz.add(`FOLD_HEADER_GROUPS_IN_ZONE`,MB),wz.add(`PASTE`,WB),wz.add(`INSERT_CELL`,VB),wz.add(`DELETE_CELL`,VB),wz.add(`AUTORESIZE_COLUMNS`,HB),wz.add(`AUTORESIZE_ROWS`,HB),wz.add(`SORT_CELLS`,UB),wz.add(`SUM_SELECTION`,KB),wz.add(`SET_DECIMAL`,KB),wz.add(`DELETE_UNFILTERED_CONTENT`,KB);function KB(e,t){let n=x(t);for(let t of kB)n=t(e,n);return n}let qB=new class extends B{mapping={};replace(e,t){let n={...t,id:G.uuidv4()};return super.replace(e,n)}getAllOrdered(){return this.getAll().sort((e,t)=>e.sequence-t.sequence)}};var JB=class{listeners=[];async sendMessage(e){for(let{callback:t}of this.listeners)t(e)}onNewMessage(e,t){this.listeners.push({id:e,callback:t})}leave(e){this.listeners=this.listeners.filter(t=>t.id!==e)}},YB=class{fileStore;constructor(e){this.fileStore=e}async requestImage(){let e=await this.userImageUpload(),t=await this.fileStore.upload(e);return{path:t,size:await this.getImageOriginalSize(t),mimetype:e.type}}async uploadFile(e){let t=await this.fileStore.upload(e);return{path:t,size:await this.getImageOriginalSize(t),mimetype:e.type}}userImageUpload(){return new Promise((e,t)=>{let n=document.createElement(`input`);n.setAttribute(`type`,`file`),n.setAttribute(`accept`,`image/*`),n.addEventListener(`change`,async()=>{n.files===null||n.files.length!==1?t():e(n.files[0])}),n.click()})}getImageOriginalSize(e){return new Promise((t,n)=>{let r=new Image;r.addEventListener(`load`,()=>{t({width:r.width,height:r.height})}),r.addEventListener(`error`,n),r.src=e})}};let XB=[{transform:`scale(0)`},{transform:`scale(0.8)`,offset:.33},{opacity:`0`,transform:`scale(1)`,offset:1}];var ZB=class extends t.Component{static template=`o-spreadsheet-RippleEffect`;static props={x:String,y:String,color:String,opacity:Number,duration:Number,width:Number,height:Number,offsetY:Number,offsetX:Number,allowOverflow:Boolean,onAnimationEnd:Function,style:String};rippleRef=(0,t.useRef)(`ripple`);setup(){let e;(0,t.onMounted)(()=>{let t=this.rippleRef.el;!t||!t.animate||(e=t.animate(XB,{duration:this.props.duration,easing:`ease-out`}),e.addEventListener(`finish`,this.props.onAnimationEnd))}),(0,t.onWillUnmount)(()=>{e?.removeEventListener(`finish`,this.props.onAnimationEnd)})}get rippleStyle(){let{x:e,y:t,width:n,height:r}=this.props,i=this.props.offsetX||0,a=this.props.offsetY||0;return W({transform:`scale(0)`,left:e,top:t,"margin-left":`${-n/2+i}px`,"margin-top":`${-r/2+a}px`,width:`${n}px`,height:`${r}px`,background:this.props.color,"border-radius":`100%`,opacity:`${this.props.opacity}`})}},QB=class extends t.Component{static template=`o-spreadsheet-Ripple`;static props={color:{type:String,optional:!0},opacity:{type:Number,optional:!0},duration:{type:Number,optional:!0},ignoreClickPosition:{type:Boolean,optional:!0},width:{type:Number,optional:!0},height:{type:Number,optional:!0},offsetY:{type:Number,optional:!0},offsetX:{type:Number,optional:!0},allowOverflow:{type:Boolean,optional:!0},enabled:{type:Boolean,optional:!0},onAnimationEnd:{type:Function,optional:!0},slots:Object,class:{type:String,optional:!0}};static components={RippleEffect:ZB};static defaultProps={color:`#aaaaaa`,opacity:.4,duration:800,enabled:!0,onAnimationEnd:()=>{},class:``};childContainer=(0,t.useRef)(`childContainer`);state=(0,t.useState)({ripples:[]});currentId=1;onClick(e){if(!this.props.enabled||!this.childContainer.el)return;let{x:t,y:n,width:r,height:i}=this.getRippleChildRectInfo(),a=Math.max(r,i),o={x:e.clientX-t,y:e.clientY-n,width:this.props.width||a*2.85,height:this.props.height||a*2.85};this.state.ripples.push({rippleRect:o,id:this.currentId++})}getRippleStyle(){let e=this.childContainer.el;if(!e||e.childElementCount!==1||!e.firstElementChild)return``;let t=this.getRippleChildRectInfo();return W({top:t.marginTop+`px`,left:t.marginLeft+`px`,width:t.width+`px`,height:t.height+`px`})}getRippleChildRectInfo(){let e=this.childContainer.el;if(!e)throw Error(`No child container element found`);if(e.childElementCount!==1||!e.firstElementChild)return{...fm(e),marginLeft:0,marginTop:0};let t=e.firstElementChild,n=Fh(t);return{...fm(t),marginLeft:n.left,marginTop:n.top}}removeRipple(e){let t=this.state.ripples.findIndex(t=>t.id===e);t!==-1&&this.state.ripples.splice(t,1)}getRippleEffectProps(e){let t=this.state.ripples.find(t=>t.id===e)?.rippleRect;if(!t)throw Error(`Cannot find a ripple with the id `+e);return{color:this.props.color,opacity:this.props.opacity,duration:this.props.duration,x:this.props.ignoreClickPosition?`50%`:t.x+`px`,y:this.props.ignoreClickPosition?`50%`:t.y+`px`,width:t.width,height:t.height,offsetX:this.props.offsetX||0,offsetY:this.props.offsetY||0,allowOverflow:this.props.allowOverflow||!1,style:this.getRippleStyle(),onAnimationEnd:()=>this.removeRipple(e)}}};function $B(e,t,n,r){let i=e.model.dispatch(`RENAME_SHEET`,{sheetId:t,newName:n,oldName:e.model.getters.getSheetName(t)});i.reasons.includes(H.MissingSheetName)?e.raiseError(A(`The sheet name cannot be empty.`),r):i.reasons.includes(H.DuplicatedSheetName)?e.raiseError(A(`A sheet with the name %s already exists. Please select another name.`,n),r):i.reasons.includes(H.ForbiddenCharactersInSheetName)&&e.raiseError(A(`Some used characters are not allowed in a sheet name (Forbidden characters are %s).`,ke.join(` `)),r)}A(`Link sheet`);let eV={name:A(`Delete`),isVisible:e=>e.model.getters.getVisibleSheetIds().length>1,execute:e=>e.askConfirmation(A(`Are you sure you want to delete this sheet?`),()=>{e.model.dispatch(`DELETE_SHEET`,{sheetId:e.model.getters.getActiveSheetId(),sheetName:e.model.getters.getActiveSheetName()})}),icon:`o-spreadsheet-Icon.TRASH`},tV={name:A(`Duplicate`),execute:e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getSheetName(t),r=G.smallUuid(),i=e.model.getters.getDuplicateSheetName(n);e.model.dispatch(`DUPLICATE_SHEET`,{sheetId:t,sheetIdTo:r,sheetNameTo:i}),e.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:t,sheetIdTo:r})},isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.COPY`},nV=e=>({name:A(`Rename`),execute:e.renameSheetCallback,icon:`o-spreadsheet-Icon.RENAME_SHEET`}),rV=e=>({name:A(`Change color`),execute:e.openSheetColorPickerCallback,icon:`o-spreadsheet-Icon.PAINT_FORMAT`}),iV={name:A(`Move right`),isVisible:e=>{let t=e.model.getters.getActiveSheetId(),n=e.model.getters.getVisibleSheetIds();return n.indexOf(t)!==n.length-1},execute:e=>e.model.dispatch(`MOVE_SHEET`,{sheetId:e.model.getters.getActiveSheetId(),delta:1}),isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.MOVE_SHEET_RIGHT`},aV={name:A(`Move left`),isVisible:e=>{let t=e.model.getters.getActiveSheetId();return e.model.getters.getVisibleSheetIds()[0]!==t},execute:e=>e.model.dispatch(`MOVE_SHEET`,{sheetId:e.model.getters.getActiveSheetId(),delta:-1}),isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.MOVE_SHEET_LEFT`},oV={name:A(`Hide sheet`),isVisible:e=>e.model.getters.getVisibleSheetIds().length!==1,execute:e=>e.model.dispatch(`HIDE_SHEET`,{sheetId:e.model.getters.getActiveSheetId()}),isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.HIDE_SHEET`},sV={name:A(`Lock sheet`),isVisible:e=>!e.model.getters.isCurrentSheetLocked(),execute:e=>{e.model.dispatch(`LOCK_SHEET`,{sheetId:e.model.getters.getActiveSheetId()})},icon:`o-spreadsheet-Icon.LOCK`},cV={name:A(`Unlock sheet`),isVisible:e=>e.model.getters.isCurrentSheetLocked(),execute:e=>{e.model.dispatch(`UNLOCK_SHEET`,{sheetId:e.model.getters.getActiveSheetId()})},isEnabledOnLockedSheet:!0,icon:`o-spreadsheet-Icon.UNLOCK`};function lV(e){let t=new KN;return t.add(`delete`,{...eV,sequence:10}).add(`hide_sheet`,{...oV,sequence:20}).add(`duplicate`,{...tV,sequence:30,separator:!0}).add(`rename`,{...nV(e),sequence:40}).add(`change_color`,{...rV(e),sequence:50,separator:!0}).add(`protect_sheet`,{...sV,sequence:60}).add(`remove_sheet_protection`,{...cV,sequence:70}).add(`move_right`,{...iV,sequence:80}).add(`move_left`,{...aV,sequence:90}),t}let uV=(e,t)=>[[{backgroundColor:`light-dark(darkgrey, lightgrey)`}],{duration:e,iterations:t,easing:`cubic-bezier(1, 0, 0, 1)`}];var dV=class extends t.Component{static template=`o-spreadsheet-BottomBarSheet`;static props={sheetId:String,openContextMenu:Function,style:{type:String,optional:!0},onMouseDown:{type:Function,optional:!0}};static components={Ripple:QB,ColorPicker:Ww};static defaultProps={onMouseDown:()=>{},style:``};state=(0,t.useState)({isEditing:!1,pickerOpened:!1});sheetDivRef=(0,t.useRef)(`sheetDiv`);iconRef=(0,t.useRef)(`icon`);sheetNameRef=(0,t.useRef)(`sheetNameSpan`);editionState=`initializing`;DOMFocusableElementStore;setup(){(0,t.onPatched)(()=>{this.sheetNameRef.el&&this.state.isEditing&&this.editionState===`initializing`&&(this.editionState=`editing`,this.focusInputAndSelectContent())}),this.DOMFocusableElementStore=O(Ih),(0,t.useExternalListener)(window,`click`,()=>this.state.pickerOpened=!1),(0,t.useEffect)(e=>{this.props.sheetId===e&&this.scrollToSheet()},()=>[this.env.model.getters.getActiveSheetId()]),(0,t.onMounted)(()=>{let e=ht(()=>this.sheetDivRef.el?.animate(...uV(200,1)).finished.then(()=>this.iconRef.el?.animate(...uV(200,2))),800);this.env.model.on(`command-rejected`,this,async({command:t,result:n})=>{n.isCancelledBecause(H.SheetLocked)&&(!t||!Dl(t)&&this.isSheetActive||Dl(t)&&t.sheetId===this.props.sheetId)&&(this.scrollToSheet(),await e())})}),(0,t.onWillUnmount)(()=>{this.env.model.off(`command-rejected`,this)})}focusInputAndSelectContent(){if(!this.state.isEditing||!this.sheetNameRef.el)return;this.sheetNameRef.el.focus();let e=window.getSelection();e&&this.sheetNameRef.el.firstChild&&e.setBaseAndExtent(this.sheetNameRef.el.firstChild,0,this.sheetNameRef.el.firstChild,this.sheetNameRef.el.textContent?.length||0)}scrollToSheet(){this.sheetDivRef.el?.scrollIntoView?.({behavior:`smooth`,inline:`nearest`})}onFocusOut(){this.state.isEditing&&this.editionState!==`initializing`&&this.stopEdition()}onClick(){this.env.isMobile()&&this.activateSheet()}onMouseDown(e){this.env.isMobile()||(this.activateSheet(),this.props.onMouseDown(e))}activateSheet(){this.env.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:this.env.model.getters.getActiveSheetId(),sheetIdTo:this.props.sheetId}),this.scrollToSheet()}onDblClick(){this.env.model.getters.isReadonly()||this.isSheetLocked||this.startEdition()}onKeyDown(e){this.state.isEditing&&(e.key===`Enter`&&(e.preventDefault(),this.stopEdition(),this.DOMFocusableElementStore.focus()),e.key===`Escape`&&(this.cancelEdition(),this.DOMFocusableElementStore.focus()))}onMouseEventSheetName(e){this.state.isEditing&&e.stopPropagation()}startEdition(){this.state.isEditing=!0,this.editionState=`initializing`}stopEdition(){if(!this.state.isEditing||!this.sheetNameRef.el)return;this.state.isEditing=!1,this.editionState=`initializing`,this.sheetNameRef.el.blur();let e=this.getInputContent()||``;$B(this.env,this.props.sheetId,e,()=>this.startEdition())}cancelEdition(){this.state.isEditing=!1,this.editionState=`initializing`,this.sheetNameRef.el?.blur(),this.setInputContent(this.sheetName)}onIconClick(e){this.isSheetActive||this.activateSheet(),this.props.openContextMenu(this.contextMenuRegistry,e)}onContextMenu(e){e.target.isContentEditable||(this.isSheetActive||this.activateSheet(),e.preventDefault(),this.props.openContextMenu(this.contextMenuRegistry,e))}getInputContent(){return this.sheetNameRef.el?.textContent}setInputContent(e){this.sheetNameRef.el&&(this.sheetNameRef.el.textContent=e)}onColorPicked(e){this.state.pickerOpened=!1,this.env.model.dispatch(`COLOR_SHEET`,{sheetId:this.props.sheetId,color:e})}get colorPickerAnchorRect(){let e=this.sheetDivRef.el;return fm(e)}get contextMenuRegistry(){return lV({renameSheetCallback:()=>{this.scrollToSheet(),this.startEdition()},openSheetColorPickerCallback:()=>{this.state.pickerOpened=!0}})}get isSheetActive(){return this.env.model.getters.getActiveSheetId()===this.props.sheetId}get sheetName(){return this.env.model.getters.getSheetName(this.props.sheetId)}get sheetColorStyle(){return W({background:this.env.model.getters.getSheet(this.props.sheetId).color||``})}get isSheetLocked(){return this.env.model.getters.isSheetLocked(this.props.sheetId)}};let fV=[{name:A(`Sum`),types:[V.number],compute:(e,t)=>Pb([[e]],t)},{name:A(`Avg`),types:[V.number],compute:(e,t)=>Xb([[e]],t)},{name:A(`Min`),types:[V.number],compute:(e,t)=>tx([[e]],t).value},{name:A(`Max`),types:[V.number],compute:(e,t)=>ex([[e]],t).value},{name:A(`Count`),types:[V.number,V.text,V.boolean,V.error],compute:e=>$b([[e]])},{name:A(`Count Numbers`),types:[V.number,V.text,V.boolean,V.error],compute:(e,t)=>Qb([[e]],t)}];var pV=class extends fr{statisticFnResults=this._computeStatisticFnResults();isDirty=!1;constructor(e){super(e),this.model.selection.observe(this,{handleEvent:this.handleEvent.bind(this)}),this.onDispose(()=>{this.model.selection.unobserve(this)})}handle(e){switch((Nl.has(e.type)||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e))&&(this.isDirty=!0),e.type){case`HIDE_COLUMNS_ROWS`:case`UNHIDE_COLUMNS_ROWS`:case`GROUP_HEADERS`:case`UNGROUP_HEADERS`:case`ACTIVATE_SHEET`:case`ACTIVATE_NEXT_SHEET`:case`ACTIVATE_PREVIOUS_SHEET`:case`EVALUATE_CELLS`:case`UNDO`:case`REDO`:this.isDirty=!0}}finalize(){this.isDirty&&(this.isDirty=!1,this.statisticFnResults=this._computeStatisticFnResults())}handleEvent(){this.getters.isGridSelectionActive()&&(this.statisticFnResults=this._computeStatisticFnResults())}_computeStatisticFnResults(){let e=this.getters,t=e.getActiveSheetId(),n=[],r=rn(e.getSelectedZones(),[]),i=this.getters.getSheetSize(t).numberOfRows-1,a=this.getters.getSheetSize(t).numberOfCols-1;for(let o of r)for(let r=o.left;r<=(o.right??a);r++)for(let a=o.top;a<=(o.bottom??i);a++){if(e.isRowHidden(t,a)||e.isColHidden(t,r))continue;let i=e.getEvaluatedCell({sheetId:t,col:r,row:a});i.type!==V.empty&&n.push(i)}return $O(fV,n,e.getLocale())}},mV=class extends t.Component{static template=`o-spreadsheet-BottomBarStatistic`;static props={openContextMenu:Function,closeContextMenu:Function};static components={Ripple:QB};selectedStatisticFn=``;store;setup(){this.store=O(pV),(0,t.onWillUpdateProps)(()=>{Object.values(this.store.statisticFnResults).every(e=>e?.value===void 0)&&this.props.closeContextMenu()})}getSelectedStatistic(){if(!Object.values(this.store.statisticFnResults).every(e=>e?.value===void 0))return this.selectedStatisticFn===``&&(this.selectedStatisticFn=Object.keys(this.store.statisticFnResults)[0]),this.getComposedFnName(this.selectedStatisticFn)}listSelectionStatistics(e){let t=new KN,n=0;for(let[e]of Object.entries(this.store.statisticFnResults))t.add(e,{name:()=>this.getComposedFnName(e),sequence:n,isReadonlyAllowed:!0,execute:()=>{this.selectedStatisticFn=e}}),n++;let{top:r,left:i,width:a}=e.currentTarget.getBoundingClientRect();this.props.openContextMenu(i+a,r,t)}getComposedFnName(e){let t=this.env.model.getters.getLocale(),n=this.store.statisticFnResults[e];return e+`: `+(n?.value===void 0?`__`:R(n.value(),{locale:t}))}},hV=class extends t.Component{static template=`o-spreadsheet-BottomBar`;static props={onClick:Function};static components={MenuPopover:Zh,Ripple:QB,BottomBarSheet:dV,BottomBarStatistic:mV};bottomBarRef=(0,t.useRef)(`bottomBar`);sheetListRef=(0,t.useRef)(`sheetList`);dragAndDrop=Fw();targetScroll=void 0;state=(0,t.useState)({isSheetListScrollableLeft:!1,isSheetListScrollableRight:!1});menuMaxHeight=250;menuState=(0,t.useState)({isOpen:!1,menuId:void 0,anchorRect:null,menuItems:[]});sheetList=this.getVisibleSheets();setup(){(0,t.onWillUpdateProps)(()=>{this.updateScrollState();let e=this.getVisibleSheets();T(this.sheetList,e)||this.dragAndDrop.cancel(),this.sheetList=e})}clickAddSheet(e){let t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getSheetIds().findIndex(e=>e===t)+1,r=G.smallUuid(),i=this.env.model.getters.getNextSheetName(A(`Sheet`));this.env.model.dispatch(`CREATE_SHEET`,{sheetId:r,position:n,name:i}),this.env.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:t,sheetIdTo:r})}getVisibleSheets(){return this.env.model.getters.getVisibleSheetIds().map(e=>{let t=this.env.model.getters.getSheet(e);return{id:t.id,name:t.name}})}clickListSheets(e){let t=new KN,n=this.env.model.getters.getActiveSheetId(),r=0;for(let e of this.env.model.getters.getSheetIds()){let i=this.env.model.getters.getSheet(e);t.add(e,{name:i.name,sequence:r,isReadonlyAllowed:!0,textColor:i.isVisible?void 0:`#808080`,execute:t=>{this.env.model.getters.isSheetVisible(e)||this.env.model.dispatch(`SHOW_SHEET`,{sheetId:e}),t.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:n,sheetIdTo:e})},isEnabled:e=>e.model.getters.isReadonly()?i.isVisible:!0,icon:i.color?`o-spreadsheet-Icon.SMALL_DOT_RIGHT_ALIGN`:void 0,iconColor:i.color,isEnabledOnLockedSheet:!0}),r++}let{left:i}=e.currentTarget.getBoundingClientRect(),a=this.bottomBarRef.el.getBoundingClientRect().top;this.openContextMenu(i,a,`listSheets`,t)}openContextMenu(e,t,n,r){this.menuState.isOpen=!0,this.menuState.menuId=n,this.menuState.menuItems=r.getMenuItems(),this.menuState.anchorRect={x:e,y:t,width:0,height:0}}onSheetContextMenu(e,t,n){let{top:r,left:i}=n.currentTarget.getBoundingClientRect();if(n.closedMenuId===e){this.closeMenu();return}this.openContextMenu(i,r,e,t)}closeMenu(){this.menuState.isOpen=!1,this.menuState.menuId=void 0,this.menuState.menuItems=[],this.menuState.anchorRect=null}closeContextMenuWithId(e){this.menuState.menuId===e&&this.closeMenu()}onWheel(e){this.targetScroll=void 0;let t=e.currentTarget;t.scrollLeft+=e.deltaY*.5}onScroll(){this.updateScrollState(),this.targetScroll===this.sheetListCurrentScroll&&(this.targetScroll=void 0)}onArrowLeft(e){if(!this.state.isSheetListScrollableLeft)return;this.targetScroll||=this.sheetListCurrentScroll;let t=this.targetScroll-this.sheetListWidth;this.scrollSheetListTo(Math.max(0,t))}onArrowRight(e){if(!this.state.isSheetListScrollableRight)return;this.targetScroll||=this.sheetListCurrentScroll;let t=this.targetScroll+this.sheetListWidth;this.scrollSheetListTo(Math.min(this.sheetListMaxScroll,t))}updateScrollState(){this.state.isSheetListScrollableLeft=this.sheetListCurrentScroll>0,this.state.isSheetListScrollableRight=this.sheetListCurrentScroll<this.sheetListMaxScroll}scrollSheetListTo(e){this.sheetListRef.el&&(this.targetScroll=e,this.sheetListRef.el.scrollTo({top:0,left:e,behavior:`smooth`}))}onSheetMouseDown(e,t){if(t.button!==0||this.env.model.getters.isReadonly()||(this.closeMenu(),this.env.isMobile()))return;let n=this.getVisibleSheets(),r=this.getSheetItemRects(),i=n.map((e,t)=>({id:e.id,size:r[t].width,position:r[t].x}));this.dragAndDrop.start(`horizontal`,{draggedItemId:e,initialMousePosition:t.clientX,items:i,scrollableContainerEl:this.sheetListRef.el,onDragEnd:(e,t)=>this.onDragEnd(e,t)})}onDragEnd(e,t){let n=t-this.getVisibleSheets().findIndex(t=>t.id===e);e&&n!==0&&this.env.model.dispatch(`MOVE_SHEET`,{sheetId:e,delta:n})}getSheetStyle(e){return this.dragAndDrop.itemsStyle[e]||``}getSheetItemRects(){return Array.from(this.bottomBarRef.el.querySelectorAll(`.o-sheet`)).map(e=>e.getBoundingClientRect()).map(e=>({x:e.x,width:e.width-1,y:e.y,height:e.height}))}get sheetListCurrentScroll(){return this.sheetListRef.el?this.sheetListRef.el.scrollLeft:0}get sheetListWidth(){return this.sheetListRef.el?this.sheetListRef.el.clientWidth:0}get sheetListMaxScroll(){return this.sheetListRef.el?this.sheetListRef.el.scrollWidth-this.sheetListRef.el.clientWidth:0}},gV=class extends fr{_clickableCells=(0,t.markRaw)({});_registryItems=(0,t.markRaw)(rB.getAll().sort((e,t)=>e.sequence-t.sequence));handle(e){(Nl.has(e.type)||e.type===`EVALUATE_CELLS`||e.type===`UPDATE_CELL`&&(`content`in e||`format`in e))&&(this._clickableCells=(0,t.markRaw)({}),this._registryItems=(0,t.markRaw)(rB.getAll().sort((e,t)=>e.sequence-t.sequence)))}getClickableItem(e){let{sheetId:t,col:n,row:r}=e,i=this._clickableCells,a=E(n,r);if(i[t]||(i[t]={}),!(a in i[t])){let n=this.findClickableItem(e);i[t][a]=n}return i[t][a]}findClickableItem(e){let t=this.getters;for(let n of this._registryItems)if(n.condition(e,t))return n}get clickableCells(){let e=[],t=this.getters;for(let n of this.getters.getVisibleCellPositions()){let r=this.getClickableItem(n);if(!r)continue;let i=typeof r.title==`function`?r.title(n,t):r.title,a=this.getClickableCellRect(n);a&&e.push({coordinates:a,position:n,action:r.execute,title:i||``,component:r.component,componentProps:r.componentProps?.(n,t)??{}})}return e}getClickableCellRect(e){let t=this.getters.expandZone(e.sheetId,D(e)),n=this.getters.getVisibleRect(t),r=this.getters.getCellIcons(e),i={center:r.find(e=>e.horizontalAlign===`center`),left:r.find(e=>e.horizontalAlign===`left`),right:r.find(e=>e.horizontalAlign===`right`)};if(!i.center?.onClick){if(i.right?.onClick){let e=this.getters.getRect(t),r=this.getters.getCellIconRect(i.right,e);n.width-=r.width+i.right.margin}if(i.left?.onClick){let e=this.getters.getRect(t),r=this.getters.getCellIconRect(i.left,e);n.x+=r.width+i.left.margin,n.width-=r.width+i.left.margin}return n}}},_V=class extends t.Component{static template=`o-spreadsheet-SpreadsheetDashboard`;static props={getGridSize:Function};static components={GridOverlay:oI,GridPopover:sI,Popover:qh,VerticalScrollBar:DI,HorizontalScrollBar:EI};cellPopovers;onMouseWheel;canvasPosition;hoveredCell;clickableCellsStore;gridRef;setup(){this.gridRef=(0,t.useRef)(`grid`),this.hoveredCell=O(ag),this.clickableCellsStore=O(gV);let e=wr(dr,lr().filter(e=>e!==`Headers`));(0,t.useChildSubEnv)({getPopoverContainerRect:()=>Mm(this.env.model.getters.getViewportZoomLevel(),this.getGridRect())}),hI({refName:`canvas`,rendererStore:e,renderingCtx:()=>({dpr:window.devicePixelRatio||1,viewports:this.env.model.getters.getViewportCollection(),...this.env.model.getters.getSelectionState(),hideGridLines:!0})}),this.onMouseWheel=yI((e,t)=>{this.moveCanvas(e,t),this.hoveredCell.clear()}),this.cellPopovers=O(RS),_I(this.gridRef,{updateScroll:this.moveCanvas.bind(this),canMoveUp:()=>{let{scrollY:e}=this.env.model.getters.getActiveSheetScrollInfo();return e>0},canMoveDown:()=>{let{maxOffsetY:e}=this.env.model.getters.getMaximumSheetOffset(),{scrollY:t}=this.env.model.getters.getActiveSheetScrollInfo();return t<e},getZoom:()=>this.env.model.getters.getViewportZoomLevel(),setZoom:e=>this.env.model.dispatch(`SET_ZOOM`,{zoom:e})})}get gridContainer(){return W({"max-width":`${this.getMaxSheetWidth()}px`})}get gridOverlayDimensions(){return W({height:`100%`,width:`100%`})}getCellClickableStyle(e){return W({top:`${e.y}px`,left:`${e.x}px`,width:`${e.width}px`,height:`${e.height}px`})}getClickableCells(){return(0,t.toRaw)(this.clickableCellsStore.clickableCells)}selectClickableCell(e,t){let{position:n,action:r}=t;r(n,this.env,Sm(e))}onClosePopover(){this.cellPopovers.close()}onGridResized(){let{height:e,width:t}=this.props.getGridSize(),n=this.getMaxSheetWidth();this.env.model.dispatch(`RESIZE_SHEETVIEW`,{width:Math.min(n,t),height:e,gridOffsetX:0,gridOffsetY:0})}moveCanvas(e,t){let{scrollX:n,scrollY:r}=this.env.model.getters.getActiveSheetScrollInfo();this.env.model.dispatch(`SET_VIEWPORT_OFFSET`,{offsetX:n+e,offsetY:r+t})}getGridRect(){return{...dm(this.gridRef),...this.env.model.getters.getSheetViewDimensionWithHeaders()}}getMaxSheetWidth(){let e=this.env.model.getters.getActiveSheetId(),{right:t}=this.env.model.getters.getSheetZone(e);return this.env.model.getters.getColDimensions(e,t).end}get dashboardStyle(){return W({zoom:`${this.env.model.getters.getViewportZoomLevel()}`})}},vV=class extends t.Component{static template=`o-spreadsheet-HeaderGroup`;static props={group:Object,layerOffset:Number,openContextMenu:Function};toggleGroup(){let e=this.env.model.getters.getActiveSheetId(),{start:t,end:n}=this.props.group;iF(this.env,e,this.dimension,t,n)}get groupBoxStyle(){let e=this.groupBox;return W({top:`${e.groupRect.y}px`,left:`${e.groupRect.x}px`,width:`${e.groupRect.width}px`,height:`${e.groupRect.height}px`})}get groupButtonStyle(){return W({"background-color":this.isGroupFolded?`#333`:`#fff`,color:this.isGroupFolded?`#fff`:`#333`})}get groupButtonIcon(){return this.isGroupFolded?`o-spreadsheet-Icon.PLUS`:`o-spreadsheet-Icon.MINUS`}get isGroupFolded(){let e=this.env.model.getters.getActiveSheetId(),t=this.props.group;return this.env.model.getters.isGroupFolded(e,this.dimension,t.start,t.end)}onContextMenu(e){let t=this.env.model.getters.getActiveSheetId(),n={x:e.clientX,y:e.clientY},r=this.props.group,i=oF(t,this.dimension,r.start,r.end);this.props.openContextMenu(n,i)}},yV=class extends vV{dimension=`ROW`;get groupBorderStyle(){let e=this.groupBox;return this.groupBox.groupRect.height===0?``:W({top:`${e.headerRect.height/2}px`,left:`calc(50% - 1px)`,width:`30%`,height:`calc(100% - ${e.headerRect.height/2}px)`,"border-left":`1px solid`,"border-bottom":e.isEndHidden?``:`1px solid`})}get groupHeaderStyle(){return W({width:`100%`,height:`${this.groupBox.headerRect.height}px`})}get groupBox(){let e=this.env.model.getters.getActiveSheetId(),{start:t,end:n}=this.props.group,r=this.env.model.getters.getRowDimensions(e,t).start,i=this.env.model.getters.getRowDimensions(e,n).end,a=0,o=26;if(t!==0){let n=this.env.model.getters.getRowDimensions(e,t-1);a=26+n.start,o=n.end-n.start}let s={x:this.props.layerOffset,y:a,width:21,height:o};return{headerRect:s,groupRect:{x:this.props.layerOffset,y:s.y,width:21,height:s.height+(i-r)},isEndHidden:this.env.model.getters.isRowHidden(e,n)}}},bV=class extends vV{dimension=`COL`;get groupBorderStyle(){let e=this.groupBox;return e.groupRect.width===0?``:W({top:`calc(50% - 1px)`,left:`${e.headerRect.width/2}px`,width:`calc(100% - ${e.headerRect.width/2}px)`,height:`30%`,"border-top":`1px solid`,"border-right":e.isEndHidden?``:`1px solid`})}get groupHeaderStyle(){return W({width:`${this.groupBox.headerRect.width}px`,height:`100%`})}get groupBox(){let e=this.env.model.getters.getActiveSheetId(),{start:t,end:n}=this.props.group,r=this.env.model.getters.getColDimensions(e,t).start,i=this.env.model.getters.getColDimensions(e,n).end,a=0,o=48;if(t!==0){let n=this.env.model.getters.getColDimensions(e,t-1);a=48+n.start,o=n.end-n.start}let s={x:a,y:this.props.layerOffset,width:o,height:21};return{headerRect:s,groupRect:{x:s.x,y:this.props.layerOffset,width:s.width+(i-r),height:21},isEndHidden:this.env.model.getters.isColHidden(e,n)}}},xV=class extends t.Component{static template=`o-spreadsheet-HeaderGroupContainer`;static props={dimension:String,layers:Array};static components={RowGroup:yV,ColGroup:bV,MenuPopover:Zh};menu=(0,t.useState)({isOpen:!1,anchorRect:null,menuItems:[]});getLayerOffset(e){return e*21}onContextMenu(e){let t=this.env.model.getters.getActiveSheetId(),n={x:e.clientX,y:e.clientY},r=aF(t,this.props.dimension);this.openContextMenu(n,r)}openContextMenu(e,t){this.menu.isOpen=!0,this.menu.anchorRect={...e,width:0,height:0},this.menu.menuItems=t}closeMenu(){this.menu.isOpen=!1,this.menu.anchorRect=null,this.menu.menuItems=[]}get groupComponent(){return this.props.dimension===`ROW`?yV:bV}get hasFrozenPane(){let e=this.env.model.getters.getMainViewportCoordinates();return this.props.dimension===`COL`?e.x>0:e.y>0}get scrollContainerStyle(){let{scrollX:e,scrollY:t}=this.env.model.getters.getActiveSheetScrollInfo(),n={};return this.props.dimension===`COL`?n.left=`${-e-this.frozenPaneContainerSize}px`:n.top=`${-t-this.frozenPaneContainerSize}px`,W(n)}get frozenPaneContainerStyle(){let e={};return this.props.dimension===`COL`?e.width=`${this.frozenPaneContainerSize}px`:e.height=`${this.frozenPaneContainerSize}px`,W(e)}get frozenPaneContainerSize(){if(!this.hasFrozenPane)return 0;let e=this.env.model.getters.getMainViewportCoordinates();return this.props.dimension===`COL`?48+e.x:26+e.y}};function SV(){let e=Gh();return{get isSmall(){return e.width<768}}}var CV=class extends t.Component{static template=`o-spreadsheet-SidePanel`;static props={panelContent:Object,panelProps:Object,onCloseSidePanel:Function,onStartHandleDrag:Function,onResetPanelSize:Function,isPinned:{type:Boolean,optional:!0},onTogglePinPanel:{type:Function,optional:!0},onToggleCollapsePanel:{type:Function,optional:!0},isCollapsed:{type:Boolean,optional:!0}};spreadsheetRect=Gh();getTitle(){let e=this.props.panelContent;return typeof e.title==`function`?e.title(this.env,this.props.panelProps):e.title}},wV=class extends t.Component{static template=`o-spreadsheet-SidePanels`;static props={};static components={SidePanel:CV};sidePanelStore;spreadsheetRect=Gh();setup(){this.sidePanelStore=O(lN),(0,t.useEffect)(()=>{this.sidePanelStore.mainPanel&&!this.sidePanelStore.isMainPanelOpen&&this.sidePanelStore.closeMainPanel(),this.sidePanelStore.secondaryPanel&&!this.sidePanelStore.isSecondaryPanelOpen&&this.sidePanelStore.close()},()=>[this.sidePanelStore.isMainPanelOpen,this.sidePanelStore.isSecondaryPanelOpen])}startHandleDrag(e,t){let n=document.body.style.cursor,r=e===`mainPanel`?this.sidePanelStore.mainPanel:this.sidePanelStore.secondaryPanel;if(!r)return;let i=r.size,a=t.clientX;Pw(t=>{document.body.style.cursor=`col-resize`;let n=i+a-t.clientX;this.sidePanelStore.changePanelSize(e,n)},()=>{document.body.style.cursor=n})}get mainPanelProps(){let e=this.sidePanelStore.mainPanelProps;if(!(!this.sidePanelStore.mainPanel||!e))return{panelContent:sN.get(this.sidePanelStore.mainPanel.componentTag),panelProps:e,onCloseSidePanel:()=>this.sidePanelStore.closeMainPanel(),onTogglePinPanel:()=>this.sidePanelStore.togglePinPanel(),onStartHandleDrag:e=>this.startHandleDrag(`mainPanel`,e),onResetPanelSize:()=>this.sidePanelStore.resetPanelSize(`mainPanel`),isPinned:this.sidePanelStore.mainPanel?.isPinned,onToggleCollapsePanel:()=>this.sidePanelStore.toggleCollapsePanel(`mainPanel`),isCollapsed:this.sidePanelStore.mainPanel?.isCollapsed}}get secondaryPanelProps(){let e=this.sidePanelStore.secondaryPanelProps;if(!(!this.sidePanelStore.secondaryPanel||!e))return{panelContent:sN.get(this.sidePanelStore.secondaryPanel.componentTag),panelProps:e,onCloseSidePanel:()=>this.sidePanelStore.close(),onStartHandleDrag:e=>this.startHandleDrag(`secondaryPanel`,e),onResetPanelSize:()=>this.sidePanelStore.resetPanelSize(`secondaryPanel`),onToggleCollapsePanel:()=>this.sidePanelStore.toggleCollapsePanel(`secondaryPanel`),isCollapsed:this.sidePanelStore.secondaryPanel?.isCollapsed}}get panelList(){return[{key:this.sidePanelStore.secondaryPanelKey,props:this.secondaryPanelProps,style:this.sidePanelStore.secondaryPanel?W({width:`${this.sidePanelStore.secondaryPanel.size}px`}):``},{key:this.sidePanelStore.mainPanelKey,props:this.mainPanelProps,style:this.sidePanelStore.mainPanel?W({width:`${this.sidePanelStore.mainPanel.size}px`}):``}].filter(e=>e.key&&e.props)}},TV=class extends t.Component{static template=`o-spreadsheet-RibbonMenu`;static props={onClose:Function};static components={Menu:zh};rootItems=OB.getMenuItems();menuRef=(0,t.useRef)(`menu`);containerRef=(0,t.useRef)(`container`);state=(0,t.useState)({menuItems:this.rootItems,title:A(`Menu Bar`),parentState:void 0});setup(){(0,t.useExternalListener)(window,`click`,this.onExternalClick,{capture:!0}),(0,t.onMounted)(this.updateShadows)}onExternalClick(e){this.menuRef.el?.contains(e.target)||this.props.onClose()}onClickMenu(e){let t=e.children(this.env);t.length?(this.state.parentState={...this.state},this.state.menuItems=t,this.state.title=e.name(this.env),this.containerRef.el?.scrollTo({top:0})):(this.state.menuItems=this.rootItems,this.state.title=void 0,this.state.parentState=void 0,e.execute?.(this.env),this.props.onClose())}get menuProps(){return{menuItems:g(this.env,this.state.menuItems),onClose:this.props.onClose,onClickMenu:this.onClickMenu.bind(this)}}get style(){return W({height:`${this.props.height}px`})}updateShadows(){if(!this.containerRef.el)return;this.containerRef.el.classList.remove(`scroll-top`,`scroll-bottom`);let e=this.containerRef.el.scrollHeight-this.containerRef.el.clientHeight||0;this.containerRef.el.scrollTop<e-1&&this.containerRef.el.classList.add(`scroll-bottom`),this.containerRef.el.scrollTop>0&&this.containerRef.el.classList.add(`scroll-top`)}onClickBack(){if(!this.state.parentState){this.props.onClose();return}this.state.menuItems=this.state.parentState.menuItems,this.state.title=this.state.parentState.title,this.state.parentState=this.state.parentState.parentState,this.containerRef.el?.scrollTo({top:0})}get backTitle(){return this.state.parentState?A(`Go to previous menu`):A(`Close menu bar`)}},EV=class extends t.Component{static components={Composer:iO,BottomBar:hV,Ripple:QB,RibbonMenu:TV};static template=`o-spreadsheet-SmallBottomBar`;static props={onClick:Function};composerFocusStore;composerStore;composerInterface;composerRef=(0,t.useRef)(`bottombarComposer`);menuState=(0,t.useState)({isOpen:!1});setup(){this.composerFocusStore=O(mr);let e=O(BF);this.composerStore=e,this.composerInterface={id:`bottombarComposer`,get editionMode(){return e.editionMode},startEdition:this.composerStore.startEdition,setCurrentContent:this.composerStore.setCurrentContent,stopEdition:this.composerStore.stopEdition},(0,t.useEffect)(()=>{this.env.isMobile()&&!this.menuState.isOpen&&this.composerStore.editionMode!==`inactive`&&this.composerFocusStore.activeComposer!==this.composerInterface&&this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`contentFocus`})})}get focus(){return this.composerFocusStore.activeComposer===this.composerInterface?this.composerFocusStore.focusMode:`inactive`}get showFxIcon(){return this.focus===`inactive`&&!this.composerStore.currentContent&&!this.composerStore.placeholder}get rect(){return this.composerRef.el?fm(this.composerRef.el):{x:0,y:0,width:0,height:0}}get composerProps(){let{width:e,height:t}=this.env.model.getters.getSheetViewDimensionWithHeaders();return{rect:{...this.rect},delimitation:{width:e,height:t},focus:this.focus,composerStore:this.composerStore,onComposerContentFocused:e=>this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`contentFocus`,selection:e}),isDefaultFocus:!1,inputStyle:W({height:this.focus===`inactive`?`26px`:`fit-content`,"max-height":`130px`}),showAssistant:!1,placeholder:this.composerStore.placeholder}}get symbols(){return[`=`,`(`,`)`,`:`,`-`,`/`,`*`,`,`,`+`,`$`,`.`]}insertSymbol(e){this.composerStore.replaceComposerCursorSelection(e),this.composerFocusStore.focusComposer(this.composerInterface,{focusMode:`contentFocus`})}toggleRibbon(){this.composerStore.cancelEdition(),this.menuState.isOpen=!this.menuState.isOpen}},DV=class extends or{mutators=[`addLoadedImage`];getters=this.get(sr).getters;loadedImages={};constructor(e,t=e(dr)){super(e),this.renderer=t,this.renderer.register(this),this.onDispose(()=>{this.renderer.unRegister(this)})}get renderingLayers(){return[`Chart`]}addLoadedImage(e,t){this.loadedImages[e]=t}drawLayer(e){let{viewports:t,ctx:n}=e,r=t.getVisibleFigures(e.sheetId),{x:i,y:a}=t.getViewportOffset(e.sheetId);for(let t of r){let r=t.x-i,o=t.y-a;if(t.tag===`chart`){let n=this.getters.getChartIdFromFigureId(t.id);if(n){let i={x:r,y:o,width:t.width,height:t.height};this.drawChart(e,n,i)}}else if(t.tag===`image`){let e=this.loadedImages[this.getters.getImagePath(t.id)];e&&n.drawImage(e,r,o,t.width,t.height)}else t.tag===`carousel`&&this.drawCarousel(e,t);this.getters.isDashboard()||(n.strokeStyle=ce,n.lineWidth=1,n.strokeRect(r,o,t.width,t.height))}}drawChart(e,t,n){let{x:r,y:i,width:a,height:o}=n,s=new OffscreenCanvas(a,o),c=this.getters.getChartDefinition(t);if(!c)return;let l=x(this.getters.getChartRuntime(t));`chartJsConfig`in l&&l.chartJsConfig.options&&(l.chartJsConfig.options.devicePixelRatio=e.dpr,l.chartJsConfig.options.responsive=!1);let u=ih(s,l,n,c.type);e.ctx.drawImage(s,r,i,a,o),u()}drawCarousel(e,t){let{viewports:n,ctx:r}=e,{x:i,y:a}=n.getViewportOffset(e.sheetId),o=t.x-i,s=t.y-a,c=this.getters.getCarousel(t.id),l=this.getters.getChartIdFromFigureId(t.id);if(!c)return;let u=l?this.getters.getChartDefinition(l):void 0,d={...Re,...c.title},f=d.fontSize+8;if(!d.text&&l){let n={x:o,y:s,width:t.width,height:t.height};this.drawChart(e,l,n)}else if(d.text){r.save(),r.fillStyle=u?.background||this.getters.getSpreadsheetTheme().backgroundColor,r.fillRect(o,s,t.width,f),r.font=Au(Wt(d)),r.fillStyle=d.color,r.fillText(d.text,o+4,s+4+d.fontSize),r.restore();let n={x:o,y:s+f,width:t.width,height:t.height-f};l?this.drawChart(e,l,n):this.getters.isDashboard()||(r.strokeStyle=ce,r.lineWidth=1,r.beginPath(),r.moveTo(o,s+f),r.lineTo(o+t.width,s+f),r.stroke())}}},OV=class extends t.Component{static template=`o-spreadsheet-StandaloneGridCanvas`;static props={sheetId:String,zone:Object,renderingCtx:Object};canvasRef=(0,t.useRef)(`canvas`);rendererStore;figureRendererStore;setup(){this.rendererStore=wr(dr,[`Background`,`Chart`]),this.figureRendererStore=wr(DV,this.rendererStore),hI({refName:`canvas`,renderingCtx:()=>this.props.renderingCtx,rendererStore:this.rendererStore,changeCanvasSizeOnZoom:!0}),(0,t.onWillStart)(async()=>await this.loadImages(this.props)),(0,t.onWillUpdateProps)(async e=>await this.loadImages(e))}async loadImages(e){let t=e.renderingCtx.viewports.getVisibleFigures(e.sheetId).filter(e=>e.tag===`image`).map(e=>this.env.model.getters.getImagePath(e.id)).filter(e=>e&&!this.figureRendererStore.loadedImages[e]);await Promise.all(t.map(async e=>{let t=await(await fetch(e)).blob();this.figureRendererStore.addLoadedImage(e,await createImageBitmap(t))}))}};let kV={A3:{width:297,height:420,name:A(`A3 (297 x 420 mm)`)},A4:{width:210,height:297,name:A(`A4 (210 x 297 mm)`)},A5:{width:148,height:210,name:A(`A5 (148 x 210 mm)`)},B4:{width:250,height:353,name:A(`B4 (250 x 353 mm)`)},B5:{width:176,height:250,name:A(`B5 (176 x 250 mm)`)},Letter:{width:216,height:279,name:A(`Letter (216 x 279 mm)`)},Legal:{width:216,height:356,name:A(`Legal (216 x 356 mm)`)}},AV=3.78;var jV=class extends fr{mutators=[`changePrintLayout`,`changePrintSelection`,`changePrintScale`,`changePrintOrientation`,`setGridLinesVisibility`];pageLayout=`A4`;printSelection=`currentSheet`;printScale=`fitToWidth`;orientation=`portrait`;hideGridLines=this.getters.isDashboard()||!this.getters.getGridLinesVisibility(this.getters.getActiveSheetId());get printPages(){if(this.printSelection===`selection`){let e=this.getters.getActiveSheetId();return this.splitZoneToPrintPages(e,this.getters.getSelectedZone())}return(this.printSelection===`entireWorkbook`?this.getters.getSheetIds():[this.getters.getActiveSheetId()]).flatMap(e=>{let{lastUsedCol:t,lastUsedRow:n}=this.getLastUsedHeaders(e),r={left:0,top:0,right:t,bottom:n};return this.splitZoneToPrintPages(e,r)})}changePrintLayout(e){this.pageLayout=e}changePrintSelection(e){this.printSelection=e}changePrintScale(e){this.printScale=e}setGridLinesVisibility(e){this.hideGridLines=e}changePrintOrientation(e){this.orientation=e}splitZoneToPrintPages(e,t){let n=this.getPrintZoom(e,t),r=this.printScale===`fitToWidth`?[t.left,t.right+1]:this.getPageBreaks(e,t,`COL`,n),i=this.printScale===`fitToHeight`?[t.top,t.bottom+1]:this.getPageBreaks(e,t,`ROW`,n),a=[];for(let t=0;t<r.length-1;t++)for(let o=0;o<i.length-1;o++){let s={left:r[t],top:i[o],right:r[t+1]-1,bottom:i[o+1]-1};a.push({sheetId:e,zone:s,renderingCtx:this.getZoneRenderingContext(e,s,n)})}return a.filter(e=>this.pageHasContent(e))}getPageBreaks(e,t,n,r){let{width:i,height:a}=this.pageDimensionWithMargins,o=n===`COL`?t.left:t.top,s=n===`COL`?t.right:t.bottom,c=n===`COL`?this.getters.getColDimensions:this.getters.getRowDimensions,l=n===`COL`?i:a,u=[],d=0;for(let t=o;t<=s;t++){let n=c(e,t).size*r;d+=n,d>=l&&(u.push(t),d=n)}return[o,...u,s+1]}getPrintZoom(e,t){if(this.printScale===`fitToWidth`){let n=this.getters.getColDimensions(e,t.left).start,r=this.getters.getColDimensions(e,t.right).end-n;return Math.min(this.pageDimensionWithMargins.width/r,1)}else if(this.printScale===`fitToHeight`){let n=this.getters.getRowDimensions(e,t.top).start,r=this.getters.getRowDimensions(e,t.bottom).end-n;return Math.min(this.pageDimensionWithMargins.height/r,1)}return 1}getZoneRenderingContext(e,t,n){let r=this.getters.getRowDimensions(e,t.top).start,i=this.getters.getRowDimensions(e,t.bottom).end,a=this.getters.getColDimensions(e,t.left).start,o=this.getters.getColDimensions(e,t.right).end-a,s=i-r,c=new Zz(this.getters,{[e]:{xSplit:0,ySplit:0}},o,s,n);return c.setSheetViewOffset(e,a,r),{sheetId:e,viewports:c,hideGridLines:this.hideGridLines,dpr:3,selectedZones:[],activeCols:new Set,activeRows:new Set,activePosition:void 0}}get pageDimensionWithMargins(){let{width:e,height:t}=this.pageDimensionsInPixels;return{width:e-this.printMargin*2,height:t-this.printMargin*2}}get printMargin(){return 50}getLastUsedHeaders(e){let t=0,n=0,r=this.getters.getCells(e);for(let e of r){let r=this.getters.getCellPosition(e.id),i=this.getters.getSpreadZone(r);t=Math.max(t,i?.right??r.col),n=Math.max(n,i?.bottom??r.row)}let i=this.getters.getTables(e);for(let e of i)t=Math.max(t,e.range.zone.right),n=Math.max(n,e.range.zone.bottom);for(let r of this.getters.getFigures(e)){let i=this.getters.getFigureUI(e,r),a=this.getZoneContainingFigure(e,i);t=Math.max(t,a.right),n=Math.max(n,a.bottom)}return{lastUsedCol:t,lastUsedRow:n}}pageHasContent({sheetId:e,zone:t}){if(this.getters.getTablesOverlappingZones(e,[t]).length>0||this.areThereFiguresInZone(e,t))return!0;for(let n of Ln(e,t)){let e=this.getters.getCell(n);if(e&&(e.style||e.isFormula||e.content))return!0;let t=this.getters.getEvaluatedCell(n);if(t&&t.type!==V.empty)return!0}return!1}get pageDimensionsInPixels(){let e=kV[this.pageLayout],t=Math.floor(e.width*AV),n=Math.floor(e.height*AV);return this.orientation===`portrait`?{width:t,height:n}:{width:n,height:t}}areThereFiguresInZone(e,t){return this.getters.getFigures(e).map(t=>this.getters.getFigureUI(e,t)).some(n=>!!Dn(t,this.getZoneContainingFigure(e,n)))}getZoneContainingFigure(e,t){let n=t.col,r=t.x+t.width,i=n;for(;i<this.getters.getNumberCols(e)-1&&this.getters.getColDimensions(e,i).end<r;)i++;let a=t.row,o=t.y+t.height,s=a;for(;s<this.getters.getNumberRows(e)-1&&this.getters.getRowDimensions(e,s).end<o;)s++;return{left:n,right:i,top:a,bottom:s}}get layoutOptions(){return Object.keys(kV).map(e=>({value:e,label:kV[e].name}))}get printSelectionOptions(){let e=[{value:`currentSheet`,label:A(`Current sheet`)},{value:`entireWorkbook`,label:A(`Entire workbook`)}],t=this.getters.getSelectedZones();if(t.length===1){let n=this.getters.getActiveSheetId(),r=this.getters.getRangeFromZone(n,t[0]),i=this.getters.getRangeString(r,n);e.push({value:`selection`,label:A(`Selected cells (%s)`,i)})}return e}get printScaleOptions(){return[{value:`fitToWidth`,label:A(`Fit to width`)},{value:`fitToHeight`,label:A(`Fit to height`)},{value:`actualSize`,label:A(`Actual size`)}]}get orientationChoices(){return[{value:`portrait`,label:A(`Portrait`)},{value:`landscape`,label:A(`Landscape`)}]}},MV=class extends t.Component{static template=`o-spreadsheet-SpreadsheetPrint`;static props={onExitPrintMode:Function};static components={StandaloneGridCanvas:OV,Section:Z,Select:Qh,BadgeSelection:xT,Checkbox:Qw};printStore;setup(){this.printStore=wr(jV);let e=null;(0,t.useExternalListener)(window,`beforeprint`,()=>{e=document.createElement(`style`),e.id=`o-spreadsheet-print-style`;let t=`${this.printStore.pageLayout} ${this.printStore.orientation}`;e.textContent=`@media print { @page { size: ${t}; margin: ${this.printStore.printMargin}px;}}`,document.head.appendChild(e)});let n=()=>{e&&=(document.head.removeChild(e),null)};(0,t.useExternalListener)(window,`afterprint`,()=>n()),(0,t.onWillUnmount)(()=>n())}get pageStyle(){let{width:e,height:t}=this.printStore.pageDimensionsInPixels;return W({width:`${e}px`,height:`${t}px`,padding:`${this.printStore.printMargin}px`})}onLayoutChange(e){this.printStore.changePrintLayout(e)}onPrintSelectionChange(e){this.printStore.changePrintSelection(e)}onPrintScaleChange(e){this.printStore.changePrintScale(e)}setGridLinesVisibility(e){this.printStore.setGridLinesVisibility(!e)}changeOrientation(e){this.printStore.changePrintOrientation(e)}onPrint(){window.print(),this.props.onExitPrintMode()}},NV=class extends t.Component{static template=`o-spreadsheet-TopBarComposer`;static props={};static components={Composer:iO};composerFocusStore;composerStore;composerInterface;setup(){this.composerFocusStore=O(mr);let e=O(BF);this.composerStore=e,this.composerInterface={id:`topbarComposer`,get editionMode(){return e.editionMode},startEdition:this.composerStore.startEdition,setCurrentContent:this.composerStore.setCurrentContent,stopEdition:this.composerStore.stopEdition}}get focus(){return this.composerFocusStore.activeComposer===this.composerInterface?this.composerFocusStore.focusMode:`inactive`}get showFxIcon(){return this.focus===`inactive`&&!this.composerStore.currentContent&&!this.composerStore.placeholder}get composerStyle(){let e={padding:`5px 0px 5px 8px`,"max-height":`300px`,"line-height":`24px`};return this.env.model.getters.isCurrentSheetLocked()&&(e[`pointer-events`]=`none`),e.height=this.focus===`inactive`?`34px`:`fit-content`,W(e)}onFocus(e){this.composerFocusStore.focusComposer(this.composerInterface,{selection:e})}},PV=class{mutators=[`closeDropdowns`,`openDropdown`];_currentDropdown=null;closeDropdowns(){this._currentDropdown=null}openDropdown(e){this._currentDropdown=e}get currentDropdown(){return this._currentDropdown}};function FV(){let e=(0,t.useComponent)(),n=O(PV);return(0,t.onWillUnmount)(()=>{e===n.currentDropdown&&n.closeDropdowns()}),{closeDropdowns:()=>n.closeDropdowns(),openDropdown:()=>{n.openDropdown(e)},get isActive(){return n.currentDropdown===e}}}var IV=class extends t.Component{static template=`o-spreadsheet-NamedRangeSelector`;static props={};static components={TextInput:Hw,MenuPopover:Zh};DOMFocusableElementStore;topBarToolStore;menuState=(0,t.useState)({anchorRect:null,menuItems:[]});namedRangeSelectorRef=(0,t.useRef)(`namedRangeSelectorRef`);setup(){this.topBarToolStore=FV(),this.DOMFocusableElementStore=O(Ih)}onInput(e){this.menuState.searchedText=e||void 0,this.menuState.menuItems=this.getNamedRangeMenuItems()}changeInputValue(e){if(this.stopEditingNamedRange(),!e)return;e=e.replace(/ /g,`_`);let t=this.env.model.getters.getActiveSheetId(),n=this.selectedZone;if(ws.test(e)){let n=this.env.model.getters.getRangeFromSheetXC(t,e);this.navigateToRange(n);return}let r=this.env.model.getters.getNamedRange(e);if(r){this.navigateToRange(r.range);return}let i=this.env.model.getters.getNamedRangeFromZone(t,n);i?$A(this.env,{newRangeName:e,oldRangeName:i.name,ranges:[this.env.model.getters.getRangeData(i.range)]}):QA(this.env,{name:e,ranges:[this.env.model.getters.getRangeDataFromZone(t,n)]})}get inputValue(){let e=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getNamedRangeFromZone(e,this.selectedZone)?.name||bn(this.selectedZone)}get selectedZone(){return this.env.model.getters.getSelectedZone()}openDropdown(){this.topBarToolStore.openDropdown(),this.menuState.anchorRect=dm(this.namedRangeSelectorRef),this.menuState.menuItems=this.getNamedRangeMenuItems()}getNamedRangeMenuItems(){let e=[];for(let{name:t,range:n}of this.env.model.getters.getNamedRanges()){let r={get highlights(){return[{range:n,color:ee,noFill:!0}]}};e.push({name:t,execute:()=>{this.navigateToRange(n),this.stopEditingNamedRange()},description:e=>e.model.getters.getRangeString(n),icon:`o-spreadsheet-Icon.NAMED_RANGE`,onStartHover:e=>e.getStore(oT).register(r),onStopHover:e=>e.getStore(oT).unRegister(r)})}return this.menuState.searchedText&&(e=_O(this.menuState.searchedText,e,e=>e.name)),e.length>0&&(e.at(-1).separator=!0),this.env.isSmall||e.push({name:A(`Manage named ranges`),execute:()=>{this.env.openSidePanel(`NamedRangesPanel`,{}),this.stopEditingNamedRange()},icon:`o-spreadsheet-Icon.COG`}),p(e)}stopEditingNamedRange(){this.menuState.searchedText=void 0,this.topBarToolStore.closeDropdowns(),this.DOMFocusableElementStore.focus()}navigateToRange(e){let{sheetId:t,zone:n}=e;if(this.env.model.getters.checkZonesExistInSheet(t,[n])!==H.Success){this.env.raiseError(A(`The range you specified is outside of the sheet.
125
+
126
+ If you meant to create a named range, named range cannot have the same name as a cell reference. Please choose another name.`));return}let r=this.env.model.getters.getActiveSheetId();r!==t&&this.env.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:r,sheetIdTo:t}),this.env.model.selection.selectCell(n.right,n.bottom),this.env.model.selection.selectZone({cell:{col:n.left,row:n.top},zone:n})}get selectionKey(){return`${this.env.model.getters.getActiveSheetId()}-${bn(this.selectedZone)}`}onInputFocused(){this.menuState.searchedText=void 0,this.openDropdown()}onInputBlur(){this.stopEditingNamedRange()}},LV=class{content={};add(e){if(e in this.content)throw Error(`${e} is already present in this registry!`);return this.content[e]=[],this}addChild(e,t){return this.content[e].push(t),this}getEntries(e){return this.content[e].sort((e,t)=>e.sequence-t.sequence)}getCategories(){return Object.keys(this.content)}};let RV=[[[`all`,`o-spreadsheet-Icon.BORDERS`],[`hv`,`o-spreadsheet-Icon.BORDER_HV`],[`h`,`o-spreadsheet-Icon.BORDER_H`],[`v`,`o-spreadsheet-Icon.BORDER_V`],[`external`,`o-spreadsheet-Icon.BORDER_EXTERNAL`]],[[`left`,`o-spreadsheet-Icon.BORDER_LEFT`],[`top`,`o-spreadsheet-Icon.BORDER_TOP`],[`right`,`o-spreadsheet-Icon.BORDER_RIGHT`],[`bottom`,`o-spreadsheet-Icon.BORDER_BOTTOM`],[`clear`,`o-spreadsheet-Icon.BORDER_CLEAR`]]];var zV=class extends t.Component{static template=`o-spreadsheet-BorderEditor`;static props={class:{type:String,optional:!0},currentBorderColor:{type:String,optional:!1},currentBorderStyle:{type:String,optional:!1},currentBorderPosition:{type:String,optional:!0},onBorderColorPicked:Function,onBorderStylePicked:Function,onBorderPositionPicked:Function,maxHeight:{type:Number,optional:!0},anchorRect:Object};static components={ColorPickerWidget:Gw,Popover:qh};BORDER_POSITIONS=RV;lineStyleButtonRef=(0,t.useRef)(`lineStyleButton`);borderStyles=He;state=(0,t.useState)({activeTool:void 0});toggleDropdownTool(e){let t=this.state.activeTool===e;this.state.activeTool=t?void 0:e}closeDropdown(){this.state.activeTool=void 0}setBorderPosition(e){this.props.onBorderPositionPicked(e),this.closeDropdown()}setBorderColor(e){this.props.onBorderColorPicked(e),this.closeDropdown()}setBorderStyle(e){this.props.onBorderStylePicked(e),this.closeDropdown()}get lineStylePickerPopoverProps(){return{anchorRect:this.lineStylePickerAnchorRect,positioning:`bottom-left`,verticalOffset:0}}get popoverProps(){return{anchorRect:this.props.anchorRect,maxHeight:this.props.maxHeight,positioning:`bottom-left`,verticalOffset:0}}get lineStylePickerAnchorRect(){let e=this.lineStyleButtonRef.el;if(e===null)return{x:0,y:0,width:0,height:0};let t=e.getBoundingClientRect();return{x:t.x,y:t.y,width:t.width,height:t.height}}},BV=class extends t.Component{static template=`o-spreadsheet-BorderEditorWidget`;static props={disabled:{type:Boolean,optional:!0},dropdownMaxHeight:{type:Number,optional:!0},class:{type:String,optional:!0}};static components={BorderEditor:zV};topBarToolStore;borderEditorButtonRef=(0,t.useRef)(`borderEditorButton`);state=(0,t.useState)({currentColor:Ce.color,currentStyle:Ce.style,currentPosition:void 0});setup(){this.topBarToolStore=FV(),(0,t.onWillUpdateProps)(()=>{this.isActive||(this.state.currentPosition=void 0)})}get dropdownMaxHeight(){return this.env.model.getters.getSheetViewDimension().height}get borderEditorAnchorRect(){let e=this.borderEditorButtonRef.el.getBoundingClientRect();return{x:e.x,y:e.y,width:e.width,height:e.height}}onBorderPositionPicked(e){this.state.currentPosition=e,this.updateBorder()}onBorderColorPicked(e){this.state.currentColor=e,this.updateBorder()}onBorderStylePicked(e){this.state.currentStyle=e,this.updateBorder()}get isActive(){return this.topBarToolStore.isActive}toggleBorderEditor(){this.isActive?this.topBarToolStore.closeDropdowns():this.topBarToolStore.openDropdown()}updateBorder(){this.state.currentPosition!==void 0&&this.env.model.dispatch(`SET_ZONE_BORDERS`,{sheetId:this.env.model.getters.getActiveSheetId(),target:this.env.model.getters.getSelectedZones(),border:{position:this.state.currentPosition,color:this.state.currentColor,style:this.state.currentStyle}})}},VV=class extends t.Component{static template=`o-spreadsheet-PaintFormatButton`;static props={class:{type:String,optional:!0}};paintFormatStore;setup(){this.paintFormatStore=O(nI)}get isActive(){return this.paintFormatStore.isActive}onDblClick(){this.paintFormatStore.activate({persistent:!0})}togglePaintFormat(){this.isActive?this.paintFormatStore.cancel():this.paintFormatStore.activate({persistent:!1})}},HV=class extends t.Component{static template=`o-spreadsheet-TableDropdownButton`;static components={TableStylesPopover:JM,ActionButton:Uw};static props={class:{type:String,optional:!0}};topBarToolStore;state=(0,t.useState)({popoverProps:void 0});setup(){this.topBarToolStore=FV()}onStylePicked(e){let t=this.env.model.getters.getActiveSheetId(),n={...this.tableConfig,styleId:e};cC(this.env,t,n).isSuccessful&&this.env.openSidePanel(`TableSidePanel`,{}),this.closePopover()}onClick(e){if(e.hasClosedTableStylesPopover||this.state.popoverProps){this.closePopover();return}let t=this.pivotIdInSelection;if(t){this.env.openSidePanel(`PivotSidePanel`,{pivotId:t,openTab:`design`});return}if(this.env.model.getters.getFirstTableInSelection()){this.topBarToolStore.closeDropdowns(),this.env.toggleSidePanel(`TableSidePanel`,{});return}let{left:n,bottom:r}=e.currentTarget.getBoundingClientRect();this.topBarToolStore.openDropdown(),this.state.popoverProps={anchorRect:{x:n,y:r,width:0,height:0},positioning:`bottom-left`,verticalOffset:0}}closePopover(){this.state.popoverProps=void 0}get action(){return this.pivotIdInSelection?{name:A(`Edit pivot style`),icon:`o-spreadsheet-Icon.EDIT_TABLE`}:{name:e=>e.model.getters.getFirstTableInSelection()?A(`Edit table`):A(`Insert table`),icon:e=>e.model.getters.getFirstTableInSelection()?`o-spreadsheet-Icon.EDIT_TABLE`:`o-spreadsheet-Icon.PAINT_TABLE`}}get tableConfig(){return{...Ay,numberOfHeaders:1,bandedRows:!0}}get tableStyles(){return this.env.model.getters.getTableStyles()}get pivotIdInSelection(){let e=this.env.model.getters.getSelectedZones();for(let t of e)for(let e of In(t)){let t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getPivotIdFromPosition({sheetId:t,...e});if(n)return n}}get class(){return`${this.props.class?this.props.class:``} ${this.env.model.getters.isCurrentSheetLocked()?`o-disabled`:``}`}},UV=class extends t.Component{static components={ColorPickerWidget:Gw};static props={class:String,style:String,icon:String,title:String};static template=`o-spreadsheet-ColorEditor`;topBarToolStore;state=(0,t.useState)({isOpen:!1});setup(){this.topBarToolStore=FV()}get currentColor(){return this.env.model.getters.getCurrentStyle()[this.props.style]||(this.props.style===`textColor`?`#000000`:`#ffffff`)}setColor(e){uC(this.env,{[this.props.style]:e}),this.state.isOpen=!1}get isMenuOpen(){return this.topBarToolStore.isActive}onClick(){this.isMenuOpen?this.topBarToolStore.closeDropdowns():this.topBarToolStore.openDropdown()}},WV=class extends t.Component{static template=`o-spreadsheet-DropdownAction`;static components={ActionButton:Uw,Popover:qh};static props={parentAction:Object,childActions:Array,class:String,childClass:String};topBarToolStore;actionRef=(0,t.useRef)(`actionRef`);setup(){this.topBarToolStore=FV()}toggleDropdown(){this.isActive?this.topBarToolStore.closeDropdowns():this.topBarToolStore.openDropdown()}get isActive(){return this.topBarToolStore.isActive}get popoverProps(){return{anchorRect:this.actionRef.el?this.actionRef.el.getBoundingClientRect():{x:0,y:0,width:0,height:0},positioning:`bottom-left`,verticalOffset:0,class:`rounded`}}},GV=class extends t.Component{static components={FontSizeEditor:qw};static props={class:String};static template=`o-spreadsheet-TopBarFontSizeEditor`;topBarToolStore;setup(){this.topBarToolStore=FV()}get currentFontSize(){return this.env.model.getters.getCurrentStyle().fontSize||xe}setFontSize(e){uC(this.env,{fontSize:e})}onToggle(){this.isActive?this.topBarToolStore.closeDropdowns():this.topBarToolStore.openDropdown()}onFocusInput(){this.topBarToolStore.openDropdown()}get isActive(){return this.topBarToolStore.isActive}get class(){return`${this.props.class} ${this.env.model.getters.isCurrentSheetLocked()?`o-disabled`:``}`}},KV=class extends t.Component{static template=`o-spreadsheet-NumberFormatsTool`;static components={MenuPopover:Zh,ActionButton:Uw};static props={class:String};formatNumberMenuItemSpec=DB;topBarToolStore;buttonRef=(0,t.useRef)(`buttonRef`);state=(0,t.useState)({anchorRect:{x:0,y:0,width:0,height:0},menuItems:[]});setup(){this.topBarToolStore=FV()}toggleMenu(){if(this.isActive)this.topBarToolStore.closeDropdowns();else{let e=h(this.formatNumberMenuItemSpec);this.state.menuItems=e.children(this.env).sort((e,t)=>e.sequence-t.sequence),this.state.anchorRect=fm(this.buttonRef.el),this.topBarToolStore.openDropdown()}}get isActive(){return this.topBarToolStore.isActive}},qV=class extends t.Component{static template=`o-spreadsheet-TopBarZoom`;static components={NumberEditor:Kw};static props={class:String};topBarToolStore;valueList=he;setup(){this.topBarToolStore=FV()}get currentFontSize(){return(this.env.model.getters.getViewportZoomLevel()||1)*100}setZoom(e){this.env.model.dispatch(`SET_ZOOM`,{zoom:e/100})}toggle(){this.topBarToolStore.isActive?this.topBarToolStore.closeDropdowns():this.topBarToolStore.openDropdown()}onFocusInput(){this.topBarToolStore.openDropdown()}};let JV=new LV;JV.add(`edit`).addChild(`edit`,{component:Uw,props:{action:YN,class:`o-hoverable-button o-toolbar-button`},sequence:1}).addChild(`edit`,{component:Uw,props:{action:XN,class:`o-hoverable-button o-toolbar-button`},sequence:2}).addChild(`edit`,{component:VV,props:{class:`o-hoverable-button o-toolbar-button o-mobile-disabled`},sequence:3}).addChild(`edit`,{component:Uw,props:{action:LA,class:`o-hoverable-button o-toolbar-button`},sequence:4}).addChild(`edit`,{component:qV,props:{class:`o-menu-item-button o-hoverable-button o-toolbar-button`},sequence:5}).add(`numberFormat`).addChild(`numberFormat`,{component:Uw,props:{action:qk,class:`o-hoverable-button o-toolbar-button`},sequence:1}).addChild(`numberFormat`,{component:Uw,props:{action:cA,class:`o-hoverable-button o-toolbar-button`},sequence:2}).addChild(`numberFormat`,{component:Uw,props:{action:sA,class:`o-hoverable-button o-toolbar-button`},sequence:3}).addChild(`numberFormat`,{component:KV,props:{class:`o-menu-item-button o-hoverable-button o-toolbar-button`},sequence:4}).add(`fontSize`).addChild(`fontSize`,{component:GV,props:{class:`o-hoverable-button o-toolbar-button`},sequence:3}).add(`textStyle`).addChild(`textStyle`,{component:Uw,props:{action:lA,class:`o-hoverable-button o-toolbar-button`},sequence:1}).addChild(`textStyle`,{component:Uw,props:{action:uA,class:`o-hoverable-button o-toolbar-button`},sequence:2}).addChild(`textStyle`,{component:Uw,props:{action:bA,class:`o-hoverable-button o-toolbar-button`},sequence:3}).addChild(`textStyle`,{component:UV,props:{class:`o-hoverable-button o-menu-item-button o-toolbar-button`,style:`textColor`,icon:`o-spreadsheet-Icon.TEXT_COLOR`,title:A(`Text Color`)},sequence:4}).add(`cellStyle`).addChild(`cellStyle`,{component:UV,props:{class:`o-hoverable-button o-menu-item-button o-toolbar-button`,style:`fillColor`,icon:`o-spreadsheet-Icon.FILL_COLOR`,title:A(`Fill Color`)},sequence:1}).addChild(`cellStyle`,{component:BV,props:{class:`o-hoverable-button o-menu-item-button o-toolbar-button`},sequence:2}).addChild(`cellStyle`,{component:Uw,props:{action:mP,class:`o-hoverable-button o-menu-item-button o-toolbar-button`},sequence:3}).add(`alignment`).addChild(`alignment`,{component:WV,props:{parentAction:CA,childActions:[wA,TA,EA],class:`o-hoverable-button o-toolbar-button`,childClass:`o-hoverable-button`},sequence:1}).addChild(`alignment`,{component:WV,props:{parentAction:DA,childActions:[OA,kA,AA],class:`o-hoverable-button o-menu-item-button o-toolbar-button`,childClass:`o-hoverable-button`},sequence:2}).addChild(`alignment`,{component:WV,props:{parentAction:MA,childActions:[NA,PA,FA],class:`o-hoverable-button o-menu-item-button o-toolbar-button`,childClass:`o-hoverable-button`},sequence:3}).addChild(`alignment`,{component:WV,props:{parentAction:fA,childActions:[hA,gA,_A,vA,yA],class:`o-hoverable-button o-menu-item-button o-toolbar-button`,childClass:`o-hoverable-button`},sequence:4}).add(`misc`).addChild(`misc`,{component:HV,props:{class:`o-toolbar-button o-hoverable-button o-menu-item-button o-mobile-disabled`},sequence:1}).addChild(`misc`,{component:Uw,props:{action:ZP,class:`o-hoverable-button o-menu-item-button o-toolbar-button`},sequence:2});var YV=class extends t.Component{static template=`o-spreadsheet-TopBar`;static props={onClick:Function,dropdownMaxHeight:Number};static components={MenuPopover:Zh,TopBarComposer:NV,Popover:qh,NamedRangeSelector:IV};toolsCategories=JV.getCategories();state=(0,t.useState)({menuState:{isOpen:!1,anchorRect:null,menuItems:[]},invisibleToolsCategories:[],toolsPopoverState:{isOpen:!1}});isSelectingMenu=!1;openedEl=null;menus=[];toolbarMenuRegistry=JV;formatNumberMenuItemSpec=DB;isntToolbarMenu=!1;composerFocusStore;fingerprints;topBarToolStore;toolBarContainerRef=(0,t.useRef)(`toolBarContainer`);toolbarRef=(0,t.useRef)(`toolBar`);namedRangesRef=(0,t.useRef)(`namedRanges`);topBarTopRef=(0,t.useRef)(`topBarTop`);moreToolsContainerRef=(0,t.useRef)(`moreToolsContainer`);moreToolsButtonRef=(0,t.useRef)(`moreToolsButton`);spreadsheetRect=Gh();setup(){this.composerFocusStore=O(mr),this.fingerprints=O(gN),this.topBarToolStore=O(PV),(0,t.useExternalListener)(window,`click`,this.onExternalClick),(0,t.useExternalListener)(window,`keydown`,this.onKeydown),this.menus=OB.getMenuItems(),(0,t.useEffect)(()=>{this.state.toolsPopoverState.isOpen=!1,this.setVisibilityToolsGroups()},()=>[this.spreadsheetRect.width])}setVisibilityToolsGroups(){if(this.env.model.getters.isReadonly())return;let e=[],{x:t}=this.toolbarRef.el.getBoundingClientRect(),{x:n}=this.toolBarContainerRef.el.getBoundingClientRect();this.moreToolsContainerRef.el?.classList.remove(`d-none`);let r=this.moreToolsButtonRef.el?.getBoundingClientRect().width||0,i=dm(this.namedRangesRef).width,a=Math.round(this.spreadsheetRect.width)-r-(t-n)-16-i,o=document.querySelectorAll(`.tool-container`),s=0;for(let t=0;t<o.length;t++){let n=o[t];n.classList.remove(`d-none`);let{width:r}=n.getBoundingClientRect();s+=r,s>a&&(n.classList.add(`d-none`),e.push(this.toolsCategories[t]))}this.state.invisibleToolsCategories=e,e.length||this.moreToolsContainerRef.el?.classList.add(`d-none`)}get topbarComponents(){return qB.getAllOrdered().filter(e=>!e.isVisible||e.isVisible(this.env))}get currentFontSize(){return this.env.model.getters.getCurrentStyle().fontSize||xe}onExternalClick(e){this.openedEl!==e.target&&this.closeMenus()}onKeydown(e){let t=ym(e,`code`),n=this.menus.find(e=>e.id===this.shortcutToMenuId[t]);if(n){e.preventDefault(),e.stopPropagation(),this.openMenu(n,this.getMenuItemEl(n.id));return}}shortcutToMenuId={"Alt+Shift+KeyF":`file`,"Alt+Shift+KeyE":`edit`,"Alt+Shift+KeyV":`view`,"Alt+Shift+KeyI":`insert`,"Alt+Shift+KeyO":`format`,"Alt+Shift+KeyD":`data`};onClick(){this.props.onClick(),this.closeMenus()}onMenuMouseOver(e,t){this.isSelectingMenu&&this.isntToolbarMenu&&this.openMenu(e,t.currentTarget)}toggleContextMenu(e,t){this.state.menuState.isOpen&&this.isntToolbarMenu?this.closeMenus():(this.openMenu(e,t.currentTarget),this.isntToolbarMenu=!0)}openMenu(e,t,n=!1){t&&(this.topBarToolStore.currentDropdown&&this.topBarToolStore.closeDropdowns(),this.state.toolsPopoverState.isOpen=!1,this.state.menuState.isOpen=!0,this.state.menuState.anchorRect=fm(t),this.state.menuState.menuItems=e.children(this.env).sort((e,t)=>e.sequence-t.sequence),this.state.menuState.parentMenu=e,this.state.menuState.autoSelectFirstItem=n,this.isSelectingMenu=!0,this.openedEl=t,this.composerFocusStore.activeComposer.stopEdition())}closeMenus(){this.topBarToolStore.currentDropdown&&this.topBarToolStore.closeDropdowns(),this.state.toolsPopoverState.isOpen=!1,this.state.menuState.isOpen=!1,this.state.menuState.parentMenu=void 0,this.isSelectingMenu=!1,this.openedEl=null}getMenuName(e){return e.name(this.env)}setColor(e,t){uC(this.env,{[e]:t}),this.onClick()}setFontSize(e){uC(this.env,{fontSize:e})}toggleMoreTools(){this.topBarToolStore.currentDropdown&&this.topBarToolStore.closeDropdowns(),this.state.toolsPopoverState.isOpen=!this.state.toolsPopoverState.isOpen}get toolsPopoverProps(){return{anchorRect:this.moreToolsButtonRef.el?fm(this.moreToolsButtonRef.el):{x:0,y:0,width:0,height:0},positioning:`bottom-left`,verticalOffset:0,class:`rounded`,maxWidth:300}}showDivider(e){return e<this.toolsCategories.length-1||this.state.invisibleToolsCategories.length>0}onKeyboardNavigation(e){let t=this.menus.findIndex(e=>e.id===this.state.menuState.parentMenu?.id||``);if(t!==-1)switch(e.key){case`ArrowLeft`:{let e=(t-1+this.menus.length)%this.menus.length,n=this.menus[e];this.openMenu(n,this.getMenuItemEl(n.id),!0);break}case`ArrowRight`:{let e=(t+1)%this.menus.length,n=this.menus[e];this.openMenu(n,this.getMenuItemEl(n.id),!0);break}case`Escape`:this.closeMenus();break}}getMenuItemEl(e){return this.topBarTopRef.el?.querySelector(`[data-id="${e}"]`)||void 0}};function XV(){return new ZV(navigator.clipboard)}var ZV=class{constructor(e){this.clipboard=e}async write(e){if(this.clipboard?.write)try{await this.clipboard?.write(this.getClipboardItems(e))}catch(t){console.log(`Failed to write on the clipboard, falling back to plain/html text. Error %s`,t);try{await this.clipboard?.write([new ClipboardItem({[zS.PlainText]:this.getBlob(e,zS.PlainText),[zS.Html]:this.getBlob(e,zS.Html)})])}catch{}}else await this.writeText(e[zS.PlainText]??``)}async writeText(e){try{await this.clipboard?.writeText(e)}catch{}}async read(){let e;try{e=await navigator.permissions.query({name:`clipboard-read`})}catch{}if(this.clipboard?.read)try{let e=await this.clipboard.read(),t={};for(let n of e)for(let e of n.types){let r=await n.getType(e);BS.includes(e)?t[e]=r:t[e]=await r.text()}return{status:`ok`,content:t}}catch{return{status:e?.state===`denied`?`permissionDenied`:`notImplemented`}}else return{status:`ok`,content:{[zS.PlainText]:await this.clipboard?.readText()}}}getClipboardItems(e){let t={};for(let n of Object.keys(e))t[n]=this.getBlob(e,n);return[new ClipboardItem(t)]}getBlob(e,t){let n=e[t];return n instanceof Blob||n instanceof File?n:new Blob([e[t]||``],{type:t})}},QV=class extends t.Component{static template=`o-spreadsheet-Spreadsheet`;static props={model:Object,notifyUser:{type:Function,optional:!0},raiseError:{type:Function,optional:!0},askConfirmation:{type:Function,optional:!0}};static components={TopBar:YV,Grid:jI,BottomBar:hV,SmallBottomBar:EV,SidePanels:wV,SpreadsheetDashboard:_V,HeaderGroupContainer:xV,FullScreenFigure:PI,SpreadsheetPrint:MV};sidePanel;spreadsheetRef=(0,t.useRef)(`spreadsheet`);spreadsheetRect=Gh();state=(0,t.useState)({printModeEnabled:!1});_focusGrid;isViewportTooSmall=!1;notificationStore;composerFocusStore;get model(){return this.props.model}getStyle(){let e={};return e[`--os-scrollbar-width`]=`${this.env.model.getters.getScrollBarWidth()}px`,e[`--os-dark-mode-filter`]=yd,e[`color-scheme`]=this.props.model.getters.isDarkMode()?`dark`:`light`,this.state.printModeEnabled?e.display=`block`:(this.env.isDashboard()?e[`grid-template-rows`]=`auto`:e[`grid-template-rows`]=`min-content auto min-content`,e[`grid-template-columns`]=`auto ${this.sidePanel.mainPanel?`${this.sidePanel.totalPanelSize||350}px`:`auto`}`),W(e)}setup(){if(!(`isSmall`in this.env)){let e=SV();(0,t.useSubEnv)({get isSmall(){return e.isSmall}})}let e=Cr();e.inject(sr,this.model);let n=this.env;e.get(cN).setSmallThreshhold(()=>n.isSmall),this.notificationStore=O(yO),this.composerFocusStore=O(mr),this.sidePanel=O(lN);let r=this.model.config.external.fileStore;(0,t.useSubEnv)({model:this.model,imageProvider:r?new YB(r):void 0,loadCurrencies:this.model.config.external.loadCurrencies,loadLocales:this.model.config.external.loadLocales,isDashboard:()=>this.model.getters.isDashboard(),openSidePanel:this.sidePanel.open.bind(this.sidePanel),replaceSidePanel:this.sidePanel.replace.bind(this.sidePanel),toggleSidePanel:this.sidePanel.toggle.bind(this.sidePanel),clipboard:this.env.clipboard||XV(),startCellEdition:e=>this.composerFocusStore.focusActiveComposer({content:e}),notifyUser:e=>this.notificationStore.notifyUser(e),askConfirmation:(e,t,n)=>this.notificationStore.askConfirmation(e,t,n),raiseError:(e,t)=>this.notificationStore.raiseError(e,t),isMobile:km,printSpreadsheet:()=>this.state.printModeEnabled=!0}),this.notificationStore.updateNotificationCallbacks({...this.props}),(0,t.useEffect)(()=>{!this.spreadsheetRef.el.contains(document.activeElement)&&document.activeElement?.contains(this.spreadsheetRef.el)&&this.focusGrid()}),(0,t.useExternalListener)(window,`resize`,()=>this.render(!0)),(0,t.useExternalListener)(document.body,`wheel`,()=>{}),(0,t.useExternalListener)(window,`keydown`,async e=>{ym(e)===`Ctrl+P`&&(this.state.printModeEnabled=!0,e.stopPropagation(),e.preventDefault())},{capture:!0}),(0,t.onWillUpdateProps)(e=>{if(e.model!==this.props.model)throw Error(`Changing the props model is not supported at the moment.`);(e.notifyUser!==this.props.notifyUser||e.askConfirmation!==this.props.askConfirmation||e.raiseError!==this.props.raiseError)&&this.notificationStore.updateNotificationCallbacks({...e})});let i=mt(this.render.bind(this,!0));(0,t.onMounted)(()=>{this.bindModelEvents(),this.checkViewportSize(),e.on(`store-updated`,this,i),a.observe(this.spreadsheetRef.el)}),(0,t.onWillUnmount)(()=>{this.unbindModelEvents(),e.off(`store-updated`,this),a.disconnect(),yr()}),(0,t.onPatched)(()=>{this.checkViewportSize()});let a=new ResizeObserver(()=>{this.sidePanel.changeSpreadsheetWidth(this.spreadsheetRect.width)})}bindModelEvents(){this.model.on(`update`,this,()=>this.render(!0)),this.model.on(`command-rejected`,this,({result:e})=>{e.isCancelledBecause(H.SheetLocked)&&this.notificationStore.notifyUser({type:`info`,text:A(`This sheet is locked and cannot be modified. Please unlock it first.`),sticky:!1})}),this.model.on(`notify-ui`,this,e=>this.notificationStore.notifyUser(e)),this.model.on(`raise-error-ui`,this,({text:e})=>this.notificationStore.raiseError(e))}unbindModelEvents(){this.model.off(`update`,this),this.model.off(`command-rejected`,this),this.model.off(`notify-ui`,this),this.model.off(`raise-error-ui`,this)}checkViewportSize(){let{xRatio:e,yRatio:t}=this.env.model.getters.getFrozenSheetViewRatio(this.env.model.getters.getActiveSheetId());if(!(!isFinite(e)||!isFinite(t)))if(t>.85||e>.85){if(this.isViewportTooSmall)return;this.notificationStore.notifyUser({text:A(`The current window is too small to display this sheet properly. Consider resizing your browser window or adjusting frozen rows and columns.`),type:`warning`,sticky:!1}),this.isViewportTooSmall=!0}else this.isViewportTooSmall=!1}focusGrid(){this._focusGrid&&this._focusGrid()}get gridHeight(){return this.env.model.getters.getSheetViewDimension().height}get gridContainerStyle(){let e=21*this.rowLayers.length,t=21*this.colLayers.length,n=this.env.model.getters.getViewportZoomLevel();return W({"grid-template-columns":`${e?e+2:0}px auto`,"grid-template-rows":`${t?t+2:0}px auto`,zoom:`${n}`})}get rowLayers(){let e=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getVisibleGroupLayers(e,`ROW`)}get colLayers(){let e=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getVisibleGroupLayers(e,`COL`)}getGridSize(){let e=this.spreadsheetRef.el;if(!e)return{width:0,height:0};let t=this.env.model.getters.getViewportZoomLevel(),n=this.env.model.getters.getScrollBarWidth(),r=n=>e.querySelector(n)&&um(e.querySelector(n),t).height||0,i=n=>e.querySelector(n)&&um(e.querySelector(n),t).width||0,a=e.getBoundingClientRect(),o=r(`.o-spreadsheet-topbar-wrapper`),s=r(`.o-spreadsheet-bottombar-wrapper`),c=r(`.o-column-groups`),l=i(`.o-grid`),u=a.height-c-o-s;return{width:Math.max(l/t-n,0),height:Math.max(u/t-n,0)}}getSpreadSheetClasses(){return[this.env.isSmall?`o-spreadsheet-mobile`:``,this.props.model.getters.isDarkMode()?`dark`:``].join(` `)}exitPrintMode(){this.state.printModeEnabled=!1}},$V=class{constructor(e){this.getters=e}squish(e){let t=[];for(let n of this.collectConsecutiveUpdateCellCommands(e))if(n[0].type===`UPDATE_CELL`&&n.length>1){let e=Object.groupBy(n,e=>e.sheetId),r=Object.values(e).reduce(this.sortAndSquishUpdateCellsBySheet.bind(this),[]);t.push(...r)}else t.push(...n);return t}unsquish(e){return[...new HI().unsquishCommands(e,this.getters)]}*collectConsecutiveUpdateCellCommands(e){for(let t=0;t<e.length;t++){let n=e[t];if(n.type===`UPDATE_CELL`){let r=[n];for(let n=t+1;n<e.length;n++){let t=e[n];if(t.type===`UPDATE_CELL`)r.push(t);else break}yield r,t+=r.length-1}else yield[n]}}sortAndSquishUpdateCellsBySheet(e,t){if(t.sort((e,t)=>e.col===t.col?e.row-t.row:e.col-t.col),t.some((e,n)=>n>0&&t[n-1].col===e.col&&t[n-1].row===e.row))return e.push(...t),e;let n=new zI(this.getters),r=t.map(e=>({...e,content:n.squishCommand(e)}));for(let n=0;n<r.length;n++){let i=r[n],a={row:i.row,col:i.col},o=0;for(o=0;o+n+1<r.length;o++){let e=r[o+n+1],t={row:e.row,col:e.col};if(t.col!==a.col||t.row!==a.row+o+1||!this.compareUpdateCell(i,e))break}if(o>0){let t=`${E(a.col,a.row)}:${E(a.col,a.row+o)}`,r={type:`SQUISHED_UPDATE_CELL`,sheetId:i.sheetId,targetRange:t};`content`in i&&(r.content=i.content),`format`in i&&(r.format=i.format),`style`in i&&(r.style=i.style),e.push(r),n+=o}else e.push(t[n])}return e}compareUpdateCell(e,t){return T(e.content,t.content)&&T(e.format,t.format)&&T(e.style,t.style)}},eH=class{constructor(e){this.transportService=e}async sendMessage(e){(e.type===`CLIENT_JOINED`||e.type===`CLIENT_LEFT`||e.type===`CLIENT_MOVED`)&&await this.transportService.sendMessage(e)}onNewMessage(e,t){this.transportService.onNewMessage(e,t)}leave(e){this.transportService.leave(e)}};function tH(e){return oB.get(e.type)(e)}var nH=class e{constructor(e,t=[]){this.buildTransformation=e,this.operations=t}getOperations(){return this.operations}getOperation(e){let t=this.operations.find(t=>t.id===e);if(!t)throw Error(`Operation ${e} not found`);return t}getLastOperationId(){return this.operations[this.operations.length-1]?.id}getFirstOperationAmong(e,t){for(let n of this.operations){if(n.id===e)return e;if(n.id===t)return t}throw Error(`Operation ${e} and ${t} not found`)}contains(e){return!!this.operations.find(t=>t.id===e)}prepend(e){let t=this.buildTransformation.with(e.data);this.operations=[e,...this.operations.map(e=>e.transformed(t))]}insert(e,t){let n=this.buildTransformation.with(e.data),{before:r,operation:i,after:a}=this.locateOperation(t);this.operations=[...r,i,e,...a.map(e=>e.transformed(n))]}append(e){this.operations.push(e)}appendBranch(e){this.operations=this.operations.concat(e.operations)}fork(t){let{after:n}=this.locateOperation(t);return new e(this.buildTransformation,n)}transform(e){this.operations=this.operations.map(t=>t.transformed(e))}cutBefore(e){this.operations=this.locateOperation(e).before}cutAfter(e){let{before:t,operation:n}=this.locateOperation(e);this.operations=t.concat([n])}locateOperation(e){let t=this.operations.findIndex(t=>t.id===e);if(t===-1)throw Error(`Operation ${e} not found`);return{before:this.operations.slice(0,t),operation:this.operations[t],after:this.operations.slice(t+1)}}},rH=class{constructor(e,t){this.id=e,this.data=t}transformed(e){return new iH(this.id,_t(()=>e(this.data)))}},iH=class e{constructor(e,t){this.id=e,this.lazyData=t}get data(){return this.lazyData()}transformed(t){return new e(this.id,this.lazyData.map(t))}},aH=class e{constructor(e){this.operations=e}[Symbol.iterator](){return this.operations[Symbol.iterator]()}stopWith(t){function*n(e,t){for(let n of e)if(yield n,n.operation.id===t)return}return new e(n(this.operations,t))}stopBefore(t){function*n(e,t){for(let n of e){if(n.operation.id===t)return;yield n}}return new e(n(this.operations,t))}startAfter(t){function*n(e,t){let n=!0;for(let r of e)n||(yield r),r.operation.id===t&&(n=!1)}return new e(n(this.operations,t))}},oH=class{branches;branchingOperationIds=new Map;constructor(e,t){this.buildTransformation=e,this.branches=[t]}getLastBranch(){return this.branches[this.branches.length-1]}execution(e){return new aH(et(this._execution(e),this._execution(e)))}revertedExecution(e){return new aH(et(this._revertedExecution(e),this._revertedExecution(e)))}insertOperationLast(e,t){let n=e.getLastOperationId()||this.previousBranch(e)?.getLastOperationId();e.append(t),n&&this.insertPrevious(e,t,n)}insertOperationAfter(e,t,n){e.insert(t,n),this.updateNextWith(e,t,n),this.insertPrevious(e,t,n)}undo(e,t){let n=this.buildTransformation.without(t.data),r=this.branchingOperationIds.get(e);this.branchingOperationIds.set(e,t.id);let i=e.fork(t.id);r&&this.branchingOperationIds.set(i,r),this.insertBranchAfter(e,i),this.transform(i,n)}redo(e){let t=this.nextBranch(e);if(!t)return;let n=this.nextBranch(t);this.removeBranchFromTree(t);let r=this.branchingOperationIds.get(t);r?this.branchingOperationIds.set(e,r):this.branchingOperationIds.delete(e),n&&this.rebaseUp(n)}drop(e){for(let t of this.branches)t.contains(e)&&t.cutBefore(e)}findOperation(e,t){for(let n of this.revertedExecution(e))if(n.operation.id===t)return n;throw Error(`Operation ${t} not found`)}rebaseUp(e){let{previousBranch:t,branchingOperation:n}=this.findPreviousBranchingOperation(e);if(!t||!n)return;let r=this.buildTransformation.without(n.data),i=t.fork(n.id);this.branchingOperationIds.set(i,this.branchingOperationIds.get(e)),this.removeBranchFromTree(e),this.insertBranchAfter(t,i),i.transform(r);let a=this.nextBranch(i);a&&this.rebaseUp(a)}removeBranchFromTree(e){let t=this.branches.findIndex(t=>t===e);this.branches.splice(t,1)}insertBranchAfter(e,t){let n=this.branches.findIndex(t=>t===e);this.branches.splice(n+1,0,t)}updateNextWith(e,t,n){let r=this.branchingOperationIds.get(e),i=this.nextBranch(e);if(!(!r||!i))if(e.getFirstOperationAmong(n,r)===r){let a=this.addToNextBranch(e,i,r,t,n);this.updateNextWith(i,a,n)}else{let e=this.buildTransformation.with(t.data);this.transform(i,e)}}addToNextBranch(e,t,n,r,i){let a=r;return i===n?(a=this.getTransformedOperation(e,n,r),t.prepend(a)):t.contains(i)?(a=this.getTransformedOperation(e,n,r),t.insert(a,i)):t.append(r),a}getTransformedOperation(e,t,n){let r=e.getOperation(t),i=this.buildTransformation.without(r.data);return n.transformed(i)}shouldExecute(e,t){return t.id!==this.branchingOperationIds.get(e)}transform(e,t){e.transform(t);let n=this.nextBranch(e);n&&this.transform(n,t)}insertPrevious(e,t,n){let{previousBranch:r,branchingOperation:i}=this.findPreviousBranchingOperation(e);if(!r||!i)return;let a=this.buildTransformation.with(i.data),o=e.fork(n);o.transform(a),r.cutAfter(n),r.appendBranch(o);let s=t.transformed(a);this.insertPrevious(r,s,n)}findPreviousBranchingOperation(e){let t=this.previousBranch(e);if(!t)return{previousBranch:void 0,branchingOperation:void 0};let n=this.branchingOperationIds.get(t);return n?{previousBranch:t,branchingOperation:t.getOperation(n)}:{previousBranch:void 0,branchingOperation:void 0}}nextBranch(e){let t=this.branches.findIndex(t=>t===e);if(t!==-1)return this.branches[t+1]}previousBranch(e){let t=this.branches.findIndex(t=>t===e);if(t!==-1)return this.branches[t-1]}*_revertedExecution(e){let t=this.branchingOperationIds.get(e),n=!!t,r=e.getOperations();for(let i=r.length-1;i>=0;i--){let a=r[i];a.id===t&&(n=!1),n||(yield{operation:a,branch:e,isCancelled:!this.shouldExecute(e,a)})}let i=this.previousBranch(e);yield*i?this._revertedExecution(i):[]}*_execution(e){for(let t of e.getOperations())if(yield{operation:t,branch:e,isCancelled:!this.shouldExecute(e,t)},t.id===this.branchingOperationIds.get(e)){let t=this.nextBranch(e);yield*t?this._execution(t):[];return}if(!this.branchingOperationIds.get(e)){let t=this.nextBranch(e);yield*t?this._execution(t):[]}}},sH=class{HEAD_BRANCH;HEAD_OPERATION;tree;applyOperation;revertOperation;buildEmpty;buildTransformation;constructor(e){this.applyOperation=e.applyOperation,this.revertOperation=e.revertOperation,this.buildEmpty=e.buildEmpty,this.buildTransformation=e.buildTransformation,this.HEAD_BRANCH=new nH(this.buildTransformation),this.tree=new oH(this.buildTransformation,this.HEAD_BRANCH);let t=e.initialOperationId,n=new rH(t,this.buildEmpty(t));this.tree.insertOperationLast(this.HEAD_BRANCH,n),this.HEAD_OPERATION=n}get(e){return this.tree.findOperation(this.HEAD_BRANCH,e).operation.data}append(e,t){let n=new rH(e,t),r=this.tree.getLastBranch();this.tree.insertOperationLast(r,n),this.HEAD_BRANCH=r,this.HEAD_OPERATION=n}insert(e,t,n){let r=new rH(e,t);this.revertTo(n),this.tree.insertOperationAfter(this.HEAD_BRANCH,r,n),this.fastForward()}undo(e,t,n){let{branch:r,operation:i}=this.tree.findOperation(this.HEAD_BRANCH,e);this.revertBefore(e),this.tree.undo(r,i),this.fastForward(),this.insert(t,this.buildEmpty(t),n)}redo(e,t,n){let{branch:r}=this.tree.findOperation(this.HEAD_BRANCH,e);this.revertBefore(e),this.tree.redo(r),this.fastForward(),this.insert(t,this.buildEmpty(t),n)}rebase(e){let t=this.get(e),n=[...this.tree.execution(this.HEAD_BRANCH).startAfter(e)];this.revertBefore(e);let r=this.HEAD_OPERATION.id;this.tree.drop(e),this.insert(e,t,r);for(let{operation:e}of n)this.insert(e.id,e.data,this.HEAD_OPERATION.id)}revertBefore(e){let t=this.tree.revertedExecution(this.HEAD_BRANCH).stopWith(e);this.revert(t)}revertTo(e){let t=e?this.tree.revertedExecution(this.HEAD_BRANCH).stopBefore(e):this.tree.revertedExecution(this.HEAD_BRANCH);this.revert(t)}revert(e){for(let{next:t,operation:n,isCancelled:r}of e)r||this.revertOperation(n.data),t&&(this.HEAD_BRANCH=t.branch,this.HEAD_OPERATION=t.operation)}fastForward(){let e=this.HEAD_OPERATION?this.tree.execution(this.HEAD_BRANCH).startAfter(this.HEAD_OPERATION.id):this.tree.execution(this.HEAD_BRANCH);for(let{operation:t,branch:n,isCancelled:r}of e)r||this.applyOperation(t.data),this.HEAD_OPERATION=t,this.HEAD_BRANCH=n}};function cH(e){return new sH({initialOperationId:e.initialRevisionId,applyOperation:t=>{let n=t.commands.slice(),{changes:r}=e.recordChanges(()=>{for(let t of n)e.dispatch(t)});t.setChanges(r)},revertOperation:e=>lH([e]),buildEmpty:e=>new sz(e,`empty`,[]),buildTransformation:{with:e=>t=>new sz(t.id,t.clientId,ZR(t.commands,e.commands),t.rootCommand,void 0,t.timestamp),without:e=>t=>new sz(t.id,t.clientId,ZR(t.commands,e.commands.map(tH).flat()),t.rootCommand,void 0,t.timestamp)}})}function lH(e){for(let t of e.slice().reverse())for(let e=t.changes.length-1;e>=0;e--){let n=t.changes[e];uH(n)}}function uH(e){let t=e.target,n=e.key,r=e.before;r===void 0?delete t[n]:t[n]=r}var dH=class{getters;providers=[];isAdaptingRanges=!1;constructor(e){this.getters=e}static getters=[`copyFormulaStringForSheet`,`extendRange`,`getRangeString`,`getRangeFromSheetXC`,`createAdaptedRanges`,`getRangeData`,`getRangeDataFromXc`,`getRangeDataFromZone`,`getRangeFromRangeData`,`getRangeFromZone`,`getRangesUnion`,`recomputeRanges`,`isRangeValid`,`removeRangesSheetPrefix`];allowDispatch(e){return e.type===`MOVE_RANGES`?e.target.length===1?H.Success:H.InvalidZones:H.Success}beforeHandle(e){}handle(e){if(this.isAdaptingRanges)throw Error(`Plugins cannot dispatch commands during adaptRanges phase`);let t=SR(e);t&&this.executeOnAllRanges(t)}finalize(){}executeOnAllRanges(e){this.isAdaptingRanges=!0;for(let t of this.providers)t(e);this.isAdaptingRanges=!1}addRangeProvider(e){this.providers.push(e)}createAdaptedRanges(e,t,n,r){return e.map(e=>{if(!vn(e.zone))return e;let i=e.prefixSheet?e.sheetId:r,a=Fc(e),o=Pc(e),s={...e.unboundedZone,left:a&&!e.unboundedZone.hasHeader?e.unboundedZone.left:e.unboundedZone.left+(e.parts[0].colFixed?0:t),right:a?e.unboundedZone.right:e.unboundedZone.right+((e.parts[1]||e.parts[0]).colFixed?0:t),top:o&&!e.unboundedZone.hasHeader?e.unboundedZone.top:e.unboundedZone.top+(e.parts[0].rowFixed?0:n),bottom:o?e.unboundedZone.bottom:e.unboundedZone.bottom+((e.parts[1]||e.parts[0]).rowFixed?0:n)};return Hc(jc({...e,sheetId:i,zone:s},this.getters.getSheetSize))})}removeRangesSheetPrefix(e,t){return t.map(t=>t.prefixSheet&&t.sheetId===e?{...t,prefixSheet:!1}:t)}extendRange(e,t,n){let r=t===`COL`?e.zone.right+n:e.zone.right,i=t===`ROW`?e.zone.bottom+n:e.zone.bottom,a={left:e.zone.left,top:e.zone.top,right:Fc(e)?void 0:r,bottom:Pc(e)?void 0:i};return jc({...e,zone:a},this.getters.getSheetSize)}getRangeFromSheetXC(e,t){if(!ws.test(t))return Nc(t);let{sheetName:n}=As(t),r=this.getters.getSheetIdByName(n)||e;return!r||!this.getters.tryGetSheet(r)?Nc(t):Mc({xc:t,sheetId:r,invalidSheetName:n&&!this.getters.getSheetIdByName(n)?n:void 0},this.getters.getSheetSize)}getRangeString(e,t,n={useBoundedReference:!1,useFixedReference:!1}){return e?e.invalidXc?e.invalidXc:this.getters.tryGetSheet(e.sheetId)?Ic(e,t,this.getters.getSheetName,n):j.InvalidReference:j.InvalidReference}getRangeDataFromXc(e,t){let n=this.getters.getRangeFromSheetXC(e,t);return this.getRangeDataFromZone(n.sheetId,n.unboundedZone)}getRangeDataFromZone(e,t){return t=this.getters.getUnboundedZone(e,t),{_sheetId:e,_zone:t}}getRangeData(e){return this.getRangeDataFromZone(e.sheetId,e.unboundedZone)}getRangeFromZone(e,t){return jc({sheetId:e,zone:t,parts:[{colFixed:!1,rowFixed:!1},{colFixed:!1,rowFixed:!1}],prefixSheet:!1},this.getters.getSheetSize)}recomputeRanges(e,t){return rn(e.map(e=>e.unboundedZone),t.map(e=>e.unboundedZone)).map(t=>this.getRangeFromZone(e[0].sheetId,t))}getRangeFromRangeData(e){return this.getters.tryGetSheet(e._sheetId)?jc({prefixSheet:!1,zone:e._zone,sheetId:e._sheetId,invalidSheetName:void 0,parts:[{colFixed:!1,rowFixed:!1},{colFixed:!1,rowFixed:!1}]},this.getters.getSheetSize):Nc(j.InvalidReference)}isRangeValid(e){if(!e)return!1;let{xc:t,sheetName:n}=As(e);return t.match(ws)!==null&&(!n||this.getters.getSheetIdByName(n)!==void 0)}getRangesUnion(e){let t=En(...e.map(e=>e.unboundedZone));return this.getRangeFromZone(e[0].sheetId,t)}copyFormulaStringForSheet(e,t,n,r){if(!n.startsWith(`=`))return n;let i=bl.Compile(n,e,this.getters),a=i.rangeDependencies.map(n=>r===`keepSameReference`?n:Lc(e,t,n));return bl.CopyWithDependencies(i,t,a).toFormulaString(this.getters)}},fH=class{observers=new Map;defaultSubscription;mainSubscription;registerAsDefault(e,t){this.defaultSubscription={owner:e,callbacks:t},this.mainSubscription||=this.defaultSubscription}observe(e,t){this.observers.set(e,{owner:e,callbacks:t})}unobserve(e){this.observers.delete(e)}capture(e,t){if(this.observers.get(e))throw Error(`You are already subscribed forever`);this.mainSubscription?.owner&&this.mainSubscription.owner!==e&&this.mainSubscription.callbacks.release?.(),this.mainSubscription={owner:e,callbacks:t}}release(e){this.mainSubscription?.owner!==e||this.observers.get(e)||(this.mainSubscription=this.defaultSubscription)}getBackToDefault(){this.mainSubscription!==this.defaultSubscription&&(this.mainSubscription?.callbacks.release?.(),this.mainSubscription=this.defaultSubscription)}isListening(e){return this.mainSubscription?.owner===e}send(e){this.mainSubscription?.callbacks.handleEvent(e),this.observers.forEach(t=>t.callbacks.handleEvent(e))}},pH=class{stream;anchor;defaultAnchor;constructor(e){this.getters=e,this.stream=new fH,this.anchor={cell:{col:0,row:0},zone:D({col:0,row:0})},this.defaultAnchor=this.anchor}capture(e,t,n){this.stream.capture(e,n),this.anchor=t}registerAsDefault(e,t,n){this.checkAnchorZoneOrThrow(t),this.stream.registerAsDefault(e,n),this.defaultAnchor=t,this.capture(e,t,n)}resetDefaultAnchor(e,t){this.checkAnchorZoneOrThrow(t),this.stream.isListening(e)&&(this.anchor=t),this.defaultAnchor=t}resetAnchor(e,t){this.checkAnchorZoneOrThrow(t),this.stream.isListening(e)&&(this.anchor=t)}observe(e,t){this.stream.observe(e,t)}unobserve(e){this.stream.unobserve(e)}release(e){this.stream.isListening(e)&&(this.stream.release(e),this.anchor=this.defaultAnchor)}getBackToDefault(){this.stream.getBackToDefault()}modifyAnchor(e,t,n){let r=this.getters.getActiveSheetId();return e={...e,zone:this.getters.expandZone(r,e.zone)},this.processEvent({options:n,anchor:e,mode:t})}selectZone(e,t={scrollIntoView:!0}){return this.modifyAnchor(e,`overrideSelection`,t)}selectCell(e,t){let n=D({col:e,row:t});return this.selectZone({zone:n,cell:{col:e,row:t}},{scrollIntoView:!0})}moveAnchorCell(e,t=1){if(t!==`end`&&t<=0)return new Wl(H.InvalidSelectionStep);let{col:n,row:r}=this.getNextAvailablePosition(e,t);return this.selectCell(n,r)}updateAnchorCell(e,t,n={scrollIntoView:!0}){return this.processEvent({mode:`updateAnchor`,anchor:{zone:this.anchor.zone,cell:{col:e,row:t}},options:n})}setAnchorCorner(e,t){let n=this.getters.getActiveSheetId(),{col:r,row:i}=this.anchor.cell,a={left:Math.min(r,e),top:Math.min(i,t),right:Math.max(r,e),bottom:Math.max(i,t)},o=this.getters.expandZone(n,a);if(On(this.anchor.zone,o))return new Wl(H.NoChanges);let s={zone:o,cell:{col:r,row:i}};return this.processEvent({mode:`updateAnchor`,anchor:s,options:{scrollIntoView:!1}})}addCellToSelection(e,t){let n=this.getters.getActiveSheetId();({col:e,row:t}=this.getters.getMainCellPosition({sheetId:n,col:e,row:t}));let r=this.getters.expandZone(n,D({col:e,row:t}));return this.processEvent({options:{scrollIntoView:!0},anchor:{zone:r,cell:{col:e,row:t}},mode:`newAnchor`})}commitSelection(){return this.processEvent({options:{scrollIntoView:!1,unbounded:!0},anchor:this.anchor,mode:`commitSelection`})}resizeAnchorZone(e,t=1){if(t!==`end`&&t<=0)return new Wl(H.InvalidSelectionStep);let n=this.getters.getActiveSheetId(),r=this.anchor,{col:i,row:a}=r.cell,{left:o,right:s,top:c,bottom:l}=r.zone,u=this.getStartingPosition(e),[d,f]=this.deltaToTarget(u,e,t);if(d===0&&f===0)return Wl.Success;let p=r.zone,m=e=>{e=Rn(e);let{left:t,right:r,top:i,bottom:a}=this.getters.expandZone(n,e);return{left:Math.max(0,t),right:Math.min(this.getters.getNumberCols(n)-1,r),top:Math.max(0,i),bottom:Math.min(this.getters.getNumberRows(n)-1,a)}},{cell:h,zone:g}=this.getReferenceAnchor(),{col:_,row:v}=h,y=0;for(;p!==null;){if(y++,d<0){let e=this.getNextAvailableCol(d,s-(y-1),v);p=g.right<=s-y?m({top:c,left:o,bottom:l,right:e}):null}if(d>0){let e=this.getNextAvailableCol(d,o+(y-1),v);p=o+y<=g.left?m({top:c,left:e,bottom:l,right:s}):null}if(f<0){let e=this.getNextAvailableRow(f,_,l-(y-1));p=g.bottom<=l-y?m({top:c,left:o,bottom:e,right:s}):null}if(f>0){let e=this.getNextAvailableRow(f,_,c+(y-1));p=c+y<=g.top?m({top:e,left:o,bottom:l,right:s}):null}if(p&&=Rn(p),p&&!On(p,r.zone))return this.processEvent({options:{scrollIntoView:!0},mode:`updateAnchor`,anchor:{zone:p,cell:{col:i,row:a}}})}p=m(Tn({top:a,bottom:a,left:i,right:i},Rn({top:this.getNextAvailableRow(f,_,c),left:this.getNextAvailableCol(d,o,v),bottom:this.getNextAvailableRow(f,_,l),right:this.getNextAvailableCol(d,s,v)})));let b={zone:p,cell:{col:i,row:a}};return this.processEvent({anchor:b,mode:`updateAnchor`,options:{scrollIntoView:!0}})}selectColumn(e,t){let n=this.getters.getActiveSheetId(),r=this.getters.getNumberRows(n)-1,i={left:e,right:e,top:0,bottom:r},a=this.getters.findFirstVisibleColRowIndex(n,`ROW`),o,s;switch(t){case`overrideSelection`:case`newAnchor`:o=e,s=a;break;case`updateAnchor`:({col:o,row:s}=this.anchor.cell),i=Tn(i,{left:o,right:o,top:a,bottom:r});break}return this.processEvent({options:{scrollIntoView:!1,unbounded:!0},anchor:{zone:i,cell:{col:o,row:s}},mode:t})}selectRow(e,t){let n=this.getters.getActiveSheetId(),r=this.getters.getNumberCols(n)-1,i={top:e,bottom:e,left:0,right:r},a=this.getters.findFirstVisibleColRowIndex(n,`COL`),o,s;switch(t){case`overrideSelection`:case`newAnchor`:o=a,s=e;break;case`updateAnchor`:({col:o,row:s}=this.anchor.cell),i=Tn(i,{left:a,right:r,top:s,bottom:s});break}return this.processEvent({options:{scrollIntoView:!1,unbounded:!0},anchor:{zone:i,cell:{col:o,row:s}},mode:t})}loopSelection(){let e=this.getters.getActiveSheetId(),t=this.anchor;if(On(this.anchor.zone,this.getters.getSheetZone(e)))return this.modifyAnchor({...t,zone:D(t.cell)},`updateAnchor`,{scrollIntoView:!1});let n=this.getters.getContiguousZone(e,t.zone);return T(n,t.zone)?this.selectAll():this.modifyAnchor({...t,zone:n},`updateAnchor`,{scrollIntoView:!1})}selectTableAroundSelection(){let e=this.getters.getActiveSheetId(),t=this.getters.getContiguousZone(e,this.anchor.zone);return this.modifyAnchor({...this.anchor,zone:t},`updateAnchor`,{scrollIntoView:!1})}selectAll(){let e=this.getters.getActiveSheetId(),t={left:0,top:0,bottom:this.getters.getNumberRows(e)-1,right:this.getters.getNumberCols(e)-1};return this.processEvent({mode:`overrideSelection`,anchor:{zone:t,cell:this.anchor.cell},options:{scrollIntoView:!1}})}isListening(e){return this.stream.isListening(e)}processEvent(e){let t={...e,previousAnchor:x(this.anchor)},n=this.checkEventAnchorZone(t);return n===H.Success?(this.anchor=t.anchor,this.stream.send(t),Wl.Success):new Wl(n)}checkEventAnchorZone(e){return this.checkAnchorZone(e.anchor)}checkAnchorZone(e){let{cell:t,zone:n}=e;if(!jn(t.col,t.row,n))return H.InvalidAnchorZone;let{left:r,right:i,top:a,bottom:o}=n,s=this.getters.getActiveSheetId(),c=this.getters.findVisibleHeader(s,`COL`,r,i);return this.getters.findVisibleHeader(s,`ROW`,a,o)===void 0||c===void 0?H.SelectionOutOfBound:H.Success}checkAnchorZoneOrThrow(e){if(this.checkAnchorZone(e)===H.InvalidAnchorZone)throw Error(`The provided anchor is invalid. The cell must be part of the zone.`)}getNextAvailablePosition(e,t=1){let{col:n,row:r}=this.anchor.cell,i=this.deltaToTarget({col:n,row:r},e,t);return{col:this.getNextAvailableCol(i[0],n,r),row:this.getNextAvailableRow(i[1],n,r)}}getNextAvailableCol(e,t,n){let r=this.getters.getActiveSheetId(),i={col:t,row:n};return this.getNextAvailableHeader(e,`COL`,t,i,e=>this.getters.isInSameMerge(r,t,n,e,n))}getNextAvailableRow(e,t,n){let r=this.getters.getActiveSheetId(),i={col:t,row:n};return this.getNextAvailableHeader(e,`ROW`,n,i,e=>this.getters.isInSameMerge(r,t,n,t,e))}getNextAvailableHeader(e,t,n,r,i){let a=this.getters.getActiveSheetId();if(e===0)return n;let o=Math.sign(e),s=n+e;for(;i(s);)s+=o;for(;this.getters.isHeaderHidden(a,t,s);)s+=o;return s<0||s>this.getters.getNumberHeaders(a,t)-1?this.getters.isHeaderHidden(a,t,n)?this.getNextAvailableHeader(-o,t,n,r,i):n:s}getReferenceAnchor(){let e=this.getters.getActiveSheetId(),t=this.anchor,{left:n,right:r,top:i,bottom:a}=t.zone,{col:o,row:s}=t.cell,c=this.getters.isColHidden(e,o)&&this.getters.findVisibleHeader(e,`COL`,n,r)||o,l=this.getters.isRowHidden(e,s)&&this.getters.findVisibleHeader(e,`ROW`,i,a)||s,u=this.getters.expandZone(e,{left:c,right:c,top:l,bottom:l});return{cell:{col:c,row:l},zone:u}}deltaToTarget(e,t,n){switch(t){case`up`:return n===`end`?[0,this.getEndOfCluster(e,`rows`,-1)-e.row]:[0,-n];case`down`:return n===`end`?[0,this.getEndOfCluster(e,`rows`,1)-e.row]:[0,n];case`left`:return n===`end`?[this.getEndOfCluster(e,`cols`,-1)-e.col,0]:[-n,0];case`right`:return n===`end`?[this.getEndOfCluster(e,`cols`,1)-e.col,0]:[n,0]}}getStartingPosition(e){let{col:t,row:n}=this.getPosition(),r=this.anchor.zone;switch(e){case`down`:case`up`:n=n===r.top?r.bottom:r.top;break;case`left`:case`right`:t=t===r.right?r.left:r.right;break}return{col:t,row:n}}getEndOfCluster(e,t,n){let r=this.getters.getActiveSheetId(),i=e,a=this.getNextCellPosition(e,t,n),o=!this.isCellSkippableInCluster({...i,sheetId:r})&&!this.isCellSkippableInCluster({...a,sheetId:r})?`endOfCluster`:`nextCluster`;for(;;){let e=this.getNextCellPosition(i,t,n);if(i.col===e.col&&i.row===e.row)break;let a=this.isCellSkippableInCluster({...e,sheetId:r});if(o===`endOfCluster`&&a)break;if(o===`nextCluster`&&!a){i=e;break}i=e}return t===`cols`?i.col:i.row}getNextCellPosition(e,t,n){let r=t===`cols`?`col`:`row`,i={...e};return i[r]=t===`cols`?this.getNextAvailableCol(n,i.col,i.row):this.getNextAvailableRow(n,i.col,i.row),{col:i.col,row:i.row}}getPosition(){return{...this.anchor.cell}}isCellSkippableInCluster(e){let t=this.getters.getMainCellPosition(e),n=this.getters.getEvaluatedCell(t);return n.type===V.empty||n.type===V.text&&n.value===``}};function mH(e){if(typeof e==`string`)return{};if(typeof e==`number`)return[];throw Error(`Cannot create new node`)}var hH=class{changes;commands=[];recordChanges(e){return this.changes=[],this.commands=[],e(),{changes:this.changes,commands:this.commands}}addCommand(e){this.commands.push(e)}addChange(...e){let t=e.pop(),n=e[0],r=e.at(-1),i=e.length-2;for(let t=1;t<=i;t++){let r=e[t];if(n[r]===void 0){let i=e[t+1];n[r]=mH(i)}n=n[r]}n[r]!==t&&(this.changes?.push({key:r,target:n,before:n[r]}),t===void 0?delete n[r]:n[r]=t)}};let gH=17781237,_H=17781238,vH=88853993,yH=88853994;function bH(e,t,n){let r=[[`xmlns:r`,Xd],[`xmlns:a`,Kd],[`xmlns:c`,qd]],i=xH({backgroundColor:e.data.backgroundColor,line:{color:`000000`}}),a=X``;if(e.data.title?.text){let t=LT(pf(e.data.backgroundColor)),n=e.data.title.fontSize??16;a=X`
127
+ <c:title>
128
+ ${wH(e.data.title.text,t,n,e.data.title)}
129
+ <c:overlay val="0" />
130
+ </c:title>
131
+ `}let o=X``;switch(e.data.type){case`bar`:o=AH(e.data);break;case`combo`:o=jH(e.data);break;case`pyramid`:o=MH(e.data);break;case`line`:o=PH(e.data);break;case`scatter`:o=FH(e.data);break;case`pie`:o=LH(e.data,t,n);break;case`radar`:o=IH(e.data)}let s=`none`;switch(e.data.legendPosition){case`bottom`:s=`b`;break;case`left`:s=`l`;break;case`right`:s=`r`;break;case`top`:s=`t`;break}let c=e.data.fontColor;return ab(X`
132
+ <c:chartSpace ${J(r)}>
133
+ <c:roundedCorners val="0" />
134
+ <!-- <manualLayout/> to manually position the chart in the figure container -->
135
+ ${i}
136
+ <c:chart>
137
+ ${a}
138
+ <c:autoTitleDeleted val="0" />
139
+ <c:plotArea>
140
+ <!-- how the chart element is placed on the chart -->
141
+ <c:layout />
142
+ ${o}
143
+ ${xH({backgroundColor:e.data.backgroundColor})}
144
+ </c:plotArea>
145
+ ${s===`none`?``:BH(s,c)}
146
+ </c:chart>
147
+ </c:chartSpace>
148
+ `)}function xH(e){return X`
149
+ <c:spPr>
150
+ ${e.backgroundColor?SH(e.backgroundColor):``}
151
+ ${e.line?CH(e.line):``}
152
+ </c:spPr>
153
+ `}function SH(e){return X`
154
+ <a:solidFill>
155
+ <a:srgbClr val="${e}"/>
156
+ </a:solidFill>
157
+ `}function CH(e){let t=[[`cmpd`,`sng`]];e.width&&t.push([`w`,z_(e.width)]);let n=e.style?X`<a:prstDash val="${e.style}"/>`:``;return X`
158
+ <a:ln ${J(t)}>
159
+ ${SH(e.color)}
160
+ ${n}
161
+ </a:ln>
162
+ `}function wH(e,t=`000000`,n=16,r={}){return X`
163
+ <c:tx>
164
+ <c:rich>
165
+ <a:bodyPr />
166
+ <a:lstStyle />
167
+ <a:p>
168
+ <a:pPr lvl="0">
169
+ <a:defRPr b="${+!!r?.bold}" i="${+!!r?.italic}">
170
+ ${SH(t)}
171
+ <a:latin typeface="+mn-lt"/>
172
+ </a:defRPr>
173
+ </a:pPr>
174
+ <a:r> <!-- Runs -->
175
+ <a:rPr b="${+!!r?.bold}" i="${+!!r?.italic}" sz="${n*100}"/>
176
+ <a:t>${e}</a:t>
177
+ </a:r>
178
+ </a:p>
179
+ </c:rich>
180
+ </c:tx>
181
+ `}function TH(e=12,t=`000000`,n=!1,r=!1){return X`
182
+ <c:txPr>
183
+ <a:bodyPr/>
184
+ <a:lstStyle/>
185
+ <a:p>
186
+ <a:pPr lvl="0">
187
+ <a:defRPr ${J([[`b`,n?`1`:`0`],[`i`,r?`1`:`0`],[`sz`,e*100]])}>
188
+ ${SH(t)}
189
+ <a:latin typeface="+mn-lt"/>
190
+ </a:defRPr>
191
+ </a:pPr>
192
+ </a:p>
193
+ </c:txPr>
194
+ `}function EH(e,t){if(!e)return X``;let{type:n,order:r,window:i}=e,a=[];switch(n){case`poly`:r&&r>1?(a.push(X`<c:trendlineType val="poly" />`),a.push(X`<c:order val="${r}" />`)):a.push(X`<c:trendlineType val="linear" />`);break;case`movingAvg`:a.push(X`<c:trendlineType val="movingAvg" />`),i&&a.push(X`<c:period val="${i}" />`);break;default:a.push(X`<c:trendlineType val="${n}" />`);break}return X`
195
+ <c:trendline>
196
+ ${DH(e,t)}
197
+ ${Y(a)}
198
+ </c:trendline>
199
+ `}function DH(e,t){return e?X`
200
+ <c:spPr>
201
+ <a:ln w="19050" cap="rnd">
202
+ <a:solidFill>
203
+ <a:srgbClr ${J([[`val`,e.color?LT(e.color).slice(-6):OH(t)]])}/>
204
+ </a:solidFill>
205
+ <a:prstDash val="sysDot" />
206
+ </a:ln>
207
+ <a:effectLst />
208
+ </c:spPr>
209
+ <c:dispRSqr val="0" />
210
+ <c:dispEq val="0" />
211
+ `:X``}function OH(e){return LT(_d(e,.5))}function kH(e){return e?`text`in e&&e.text?X`
212
+ <c:tx><c:v>${e.text}</c:v></c:tx>
213
+ `:`reference`in e&&e.reference?X`
214
+ <c:tx>
215
+ ${HH(e.reference)}
216
+ </c:tx>
217
+ `:X``:X``}function AH(e){let t=e.horizontal?`bar`:`col`,n=e.dataSets.map(e=>e.backgroundColor??``),r=new Fd(e.dataSets.length,n),i=[],a=[];for(let[t,n]of Object.entries(e.dataSets)){let o=LT(r.next()),s=xH({backgroundColor:o,line:{color:o}}),c=X`
218
+ <c:ser>
219
+ <c:idx val="${t}"/>
220
+ <c:order val="${t}"/>
221
+ ${EH(n.trend,o)}
222
+ ${kH(n.label)}
223
+ ${RH({showValues:e.showValues})}
224
+ ${s}
225
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``} <!-- x-coordinate values -->
226
+ <c:val> <!-- x-coordinate values -->
227
+ ${UH(n.range)}
228
+ </c:val>
229
+ </c:ser>
230
+ `;n.rightYAxis?a.push(c):i.push(c)}let o=e.stacked?`stacked`:`clustered`,s=e.stacked?100:-20;return X`
231
+ ${i.length?X`
232
+ <c:barChart>
233
+ <c:barDir val="${t}"/>
234
+ <c:grouping val="${o}"/>
235
+ <c:overlap val="${s}"/>
236
+ <c:gapWidth val="70"/>
237
+ <!-- each data marker in the series does not have a different color -->
238
+ <c:varyColors val="0"/>
239
+ ${Y(i)}
240
+ ${RH({showValues:e.showValues})}
241
+ <c:axId val="${gH}" />
242
+ <c:axId val="${vH}" />
243
+ </c:barChart>
244
+ ${t===`col`?zH(`b`,`c:catAx`,gH,vH,e.axesDesign?.x?.title,e.fontColor):zH(`b`,`c:catAx`,gH,vH,e.axesDesign?.y?.title,e.fontColor,void 0,`maxMin`)}
245
+ ${t===`col`?zH(`l`,`c:valAx`,vH,gH,e.axesDesign?.y?.title,e.fontColor):zH(`l`,`c:valAx`,vH,gH,e.axesDesign?.x?.title,e.fontColor,void 0,void 0,`max`)}
246
+ `:``}
247
+ ${a.length?X`
248
+ <c:barChart>
249
+ <c:barDir val="col"/>
250
+ <c:grouping val="${o}"/>
251
+ <c:overlap val="${s}"/>
252
+ <c:gapWidth val="70"/>
253
+ <!-- each data marker in the series does not have a different color -->
254
+ <c:varyColors val="0"/>
255
+ ${Y(a)}
256
+ <c:axId val="${gH+1}" />
257
+ <c:axId val="${vH+1}" />
258
+ </c:barChart>
259
+ ${zH(`b`,`c:catAx`,gH+1,vH+1,e.axesDesign?.x?.title,e.fontColor,+!!i.length)}
260
+ ${zH(`r`,`c:valAx`,vH+1,gH+1,e.axesDesign?.y1?.title,e.fontColor)}
261
+ `:``}`}function jH(e){let t=e.dataSets,n=t.map(e=>e.backgroundColor??``),r=new Fd(t.length,n),i=t[0],a=LT(r.next()),o=i.rightYAxis??!1,s=X`
262
+ <c:ser>
263
+ <c:idx val="0"/>
264
+ <c:order val="0"/>
265
+ ${EH(i.trend,a)}
266
+ ${kH(i.label)}
267
+ ${RH({showValues:e.showValues})}
268
+ ${xH({backgroundColor:a,line:{color:a}})}
269
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``}
270
+ <!-- x-coordinate values -->
271
+ <c:val>
272
+ ${UH(i.range)}
273
+ </c:val>
274
+ </c:ser>
275
+ `,c=[],l=[];for(let n=1;n<t.length;n++){i=t[n];let a=LT(r.next()),o=xH({backgroundColor:a,line:{color:a}}),s=X`
276
+ <c:ser>
277
+ <c:idx val="${n}"/>
278
+ <c:order val="${n}"/>
279
+ <c:smooth val="0"/>
280
+ <c:marker>
281
+ <c:symbol val="circle" />
282
+ <c:size val="5"/>
283
+ ${o}
284
+ </c:marker>
285
+ ${EH(i.trend,a)}
286
+ ${kH(i.label)}
287
+ ${RH({showValues:e.showValues})}
288
+ ${o}
289
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``}
290
+ <!-- x-coordinate values -->
291
+ <c:val>
292
+ ${UH(i.range)}
293
+ </c:val>
294
+ </c:ser>
295
+ `;i.rightYAxis?l.push(s):c.push(s)}return X`
296
+ <c:barChart>
297
+ <c:barDir val="col"/>
298
+ <c:grouping val="clustered"/>
299
+ <c:overlap val="${e.stacked?100:-20}"/>
300
+ <c:gapWidth val="70"/>
301
+ <!-- each data marker in the series does not have a different color -->
302
+ <c:varyColors val="0"/>
303
+ ${s}
304
+ ${RH({showValues:e.showValues})}
305
+ <c:axId val="${o?_H:gH}" />
306
+ <c:axId val="${o?yH:vH}" />
307
+ </c:barChart>
308
+ ${c.length?X`
309
+ <c:lineChart>
310
+ <c:grouping val="standard"/>
311
+ <!-- each data marker in the series does not have a different color -->
312
+ <c:varyColors val="0"/>
313
+ ${RH({showValues:e.showValues})}
314
+ ${Y(c)}
315
+ <c:axId val="${gH}" />
316
+ <c:axId val="${vH}" />
317
+ </c:lineChart>
318
+ `:``}
319
+ ${l.length?X`
320
+ <c:lineChart>
321
+ <c:grouping val="standard"/>
322
+ <!-- each data marker in the series does not have a different color -->
323
+ <c:varyColors val="0"/>
324
+ ${RH({showValues:e.showValues})}
325
+ ${Y(l)}
326
+ <c:axId val="${_H}" />
327
+ <c:axId val="${yH}" />
328
+ </c:lineChart>
329
+ `:``}
330
+ ${!o||c.length?X`
331
+ ${zH(`b`,`c:catAx`,gH,vH,e.axesDesign?.x?.title,e.fontColor,0)}
332
+ ${zH(`l`,`c:valAx`,vH,gH,e.axesDesign?.y?.title,e.fontColor)}
333
+ `:``}
334
+ ${o||l.length?X`
335
+ ${zH(`b`,`c:catAx`,_H,yH,e.axesDesign?.x?.title,e.fontColor,c.length||!o?1:0)}
336
+ ${zH(`r`,`c:valAx`,yH,_H,e.axesDesign?.y1?.title,e.fontColor)}
337
+ `:``}
338
+ `}function MH(e){let t=e.dataSets,n=t.map(e=>e.backgroundColor??``),r=new Fd(t.length,n),i=t[0],a=t[1],o=LT(r.next()),s=LT(r.next()),{maxValue:c,majorUnit:l}=NH(e.maxValue),u=e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``,d=X`
339
+ <c:ser>
340
+ <c:idx val="0"/>
341
+ <c:order val="0"/>
342
+ <c:invertIfNegative val="0" />
343
+ ${kH(i.label)}
344
+ ${RH({showValues:e.showValues})}
345
+ ${xH({backgroundColor:o,line:{color:o}})}
346
+ ${u}
347
+ <!-- x-coordinate values -->
348
+ <c:val>
349
+ ${UH(i.range)}
350
+ </c:val>
351
+ </c:ser>
352
+ `,f=X`
353
+ <c:ser>
354
+ <c:idx val="1"/>
355
+ <c:order val="1"/>
356
+ <c:invertIfNegative val="0" />
357
+ ${kH(a.label)}
358
+ ${RH({showValues:e.showValues})}
359
+ ${xH({backgroundColor:s,line:{color:s}})}
360
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``}
361
+ <!-- x-coordinate values -->
362
+ <c:val>
363
+ ${UH(a.range)}
364
+ </c:val>
365
+ </c:ser>
366
+ `;return X`
367
+ <c:barChart>
368
+ <c:barDir val="bar"/>
369
+ <c:grouping val="clustered"/>
370
+ <c:varyColors val="0" />
371
+ ${d}
372
+ ${RH({showValues:e.showValues})}
373
+ <c:gapWidth val="50" />
374
+ <c:axId val="${gH}" />
375
+ <c:axId val="${vH}" />
376
+ </c:barChart>
377
+ <c:barChart>
378
+ <c:barDir val="bar"/>
379
+ <c:grouping val="clustered"/>
380
+ <c:varyColors val="0" />
381
+ ${f}
382
+ ${RH({showValues:e.showValues})}
383
+ <c:gapWidth val="50" />
384
+ <c:axId val="${_H}" />
385
+ <c:axId val="${yH}" />
386
+ </c:barChart>
387
+ ${zH(`r`,`c:catAx`,gH,vH,e.axesDesign?.y?.title,e.fontColor,0,`maxMin`,`autoZero`,`high`)}
388
+ ${zH(`b`,`c:valAx`,vH,gH,e.axesDesign?.x?.title,e.fontColor,0,`maxMin`,`max`,`nextTo`,c,l,`#0;#0`)}
389
+ ${zH(`t`,`c:valAx`,yH,_H,void 0,e.fontColor,1)}
390
+ ${zH(`l`,`c:catAx`,_H,yH,void 0,e.fontColor,1,`maxMin`)}
391
+ `}function NH(e){let t=((e,t)=>{let n=Math.ceil(e);for(;n%t!==0;)n++;return n})(e,3);return{maxValue:t,majorUnit:t/3}}function PH(e){let t=e.dataSets.map(e=>e.backgroundColor??``),n=new Fd(e.dataSets.length,t),r=[],i=[];for(let[t,a]of Object.entries(e.dataSets)){let o=LT(n.next()),s=xH({line:{width:2.5,style:`solid`,color:o}}),c=X`
392
+ <c:ser>
393
+ <c:idx val="${t}"/>
394
+ <c:order val="${t}"/>
395
+ <c:smooth val="0"/>
396
+ <c:marker>
397
+ <c:symbol val="circle" />
398
+ <c:size val="5"/>
399
+ ${xH({backgroundColor:o,line:{color:o}})}
400
+ </c:marker>
401
+ ${EH(a.trend,o)}
402
+ ${kH(a.label)}
403
+ ${RH({showValues:e.showValues})}
404
+ ${s}
405
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``} <!-- x-coordinate values -->
406
+ <c:val> <!-- x-coordinate values -->
407
+ ${UH(a.range)}
408
+ </c:val>
409
+ </c:ser>
410
+ `;a.rightYAxis?i.push(c):r.push(c)}let a=e.stacked?`stacked`:`standard`;return X`
411
+ ${r.length?X`
412
+ <c:lineChart>
413
+ <c:grouping val="${a}"/>
414
+ <!-- each data marker in the series does not have a different color -->
415
+ <c:varyColors val="0"/>
416
+ ${Y(r)}
417
+ ${RH({showValues:e.showValues})}
418
+ <c:axId val="${gH}" />
419
+ <c:axId val="${vH}" />
420
+ </c:lineChart>
421
+ ${zH(`b`,`c:catAx`,gH,vH,e.axesDesign?.x?.title,e.fontColor)}
422
+ ${zH(`l`,`c:valAx`,vH,gH,e.axesDesign?.y?.title,e.fontColor)}
423
+ `:``}
424
+ ${i.length?X`
425
+ <c:lineChart>
426
+ <c:grouping val="${a}"/>
427
+ <!-- each data marker in the series does not have a different color -->
428
+ <c:varyColors val="0"/>
429
+ ${Y(i)}
430
+ ${RH({showValues:e.showValues})}
431
+ <c:axId val="${gH+1}" />
432
+ <c:axId val="${vH+1}" />
433
+ </c:lineChart>
434
+ ${zH(`b`,`c:catAx`,gH+1,vH+1,e.axesDesign?.x?.title,e.fontColor,+!!r.length)}
435
+ ${zH(`r`,`c:valAx`,vH+1,gH+1,e.axesDesign?.y1?.title,e.fontColor)}
436
+ `:``}
437
+ `}function FH(e){let t=e.dataSets.map(e=>e.backgroundColor??``),n=new Fd(e.dataSets.length,t),r=[],i=[];for(let[t,a]of Object.entries(e.dataSets)){let o=LT(n.next()),s=X`
438
+ <c:ser>
439
+ <c:idx val="${t}"/>
440
+ <c:order val="${t}"/>
441
+ <c:smooth val="0"/>
442
+ <c:spPr>
443
+ <a:ln w="19050" cap="rnd">
444
+ <a:noFill/>
445
+ <a:round/>
446
+ </a:ln>
447
+ <a:effectLst/>
448
+ </c:spPr>
449
+ <c:marker>
450
+ <c:symbol val="circle" />
451
+ <c:size val="5"/>
452
+ ${xH({backgroundColor:o,line:{color:o}})}
453
+ </c:marker>
454
+ ${EH(a.trend,o)}
455
+ ${kH(a.label)}
456
+ ${RH({showValues:e.showValues})}
457
+ ${e.labelRange?X`<c:xVal> <!-- x-coordinate values -->
458
+ ${UH(e.labelRange)}
459
+ </c:xVal>`:``}
460
+ <c:yVal> <!-- y-coordinate values -->
461
+ ${UH(a.range)}
462
+ </c:yVal>
463
+ </c:ser>
464
+ `;a.rightYAxis?i.push(s):r.push(s)}return X`
465
+ ${r.length?X`
466
+ <c:scatterChart>
467
+ <!-- each data marker in the series does not have a different color -->
468
+ <c:varyColors val="0"/>
469
+ <c:scatterStyle val="lineMarker"/>
470
+ ${Y(r)}
471
+ ${RH({showValues:e.showValues})}
472
+ <c:axId val="${gH}" />
473
+ <c:axId val="${vH}" />
474
+ </c:scatterChart>
475
+ ${zH(`b`,`c:valAx`,gH,vH,e.axesDesign?.x?.title,e.fontColor)}
476
+ ${zH(`l`,`c:valAx`,vH,gH,e.axesDesign?.y?.title,e.fontColor)}
477
+ `:``}
478
+ ${i.length?X`
479
+ <c:scatterChart>
480
+ <!-- each data marker in the series does not have a different color -->
481
+ <c:varyColors val="0"/>
482
+ <c:scatterStyle val="lineMarker"/>
483
+ ${Y(i)}
484
+ ${RH({showValues:e.showValues})}
485
+ <c:axId val="${gH+1}" />
486
+ <c:axId val="${vH+1}" />
487
+ </c:scatterChart>
488
+ ${zH(`b`,`c:valAx`,gH+1,vH+1,e.axesDesign?.x?.title,e.fontColor,+!!r.length)}
489
+ ${zH(`r`,`c:valAx`,vH+1,gH+1,e.axesDesign?.y1?.title,e.fontColor)}
490
+ `:``}`}function IH(e){let t=e.dataSets.map(e=>e.backgroundColor??``),n=new Fd(e.dataSets.length,t),r=[];for(let[t,i]of Object.entries(e.dataSets)){let a=LT(n.next()),o=xH({line:{width:2.5,style:`solid`,color:a}}),s=X`
491
+ <c:ser>
492
+ <c:idx val="${t}"/>
493
+ <c:order val="${t}"/>
494
+ <c:smooth val="0"/>
495
+ <c:marker>
496
+ <c:symbol val="circle" />
497
+ <c:size val="5"/>
498
+ ${xH({backgroundColor:a,line:{color:a}})}
499
+ </c:marker>
500
+ ${kH(i.label)}
501
+ ${RH({showValues:e.showValues})}
502
+ ${o}
503
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``} <!-- x-coordinate values -->
504
+ <c:val> <!-- x-coordinate values -->
505
+ ${UH(i.range)}
506
+ </c:val>
507
+ </c:ser>
508
+ `;r.push(s)}return X`
509
+ ${X`
510
+ <c:radarChart>
511
+ <c:radarStyle val="marker"/>
512
+ <c:varyColors val="0"/>
513
+ ${Y(r)}
514
+ ${RH({showValues:e.showValues})}
515
+ <c:axId val="${gH}" />
516
+ <c:axId val="${vH}" />
517
+ </c:radarChart>
518
+ ${zH(`b`,`c:catAx`,gH,vH,e.axesDesign?.x?.title,e.fontColor)}
519
+ ${zH(`l`,`c:valAx`,vH,gH,e.axesDesign?.y?.title,e.fontColor)}
520
+ `}
521
+ `}function LH(e,t,n){let r=Lt(e.dataSets.map(e=>B_(e.range,t,n))),i=new Fd(r),a=C(0,r).map(()=>LT(i.next())),o=[];for(let[r,i]of Object.entries(e.dataSets).reverse()){let s=B_(i.range,t,n),c=[];for(let e of C(0,s)){let t=xH({backgroundColor:a[e],line:{color:`FFFFFF`,width:1.5}});c.push(X`
522
+ <c:dPt>
523
+ <c:idx val="${e}"/>
524
+ ${t}
525
+ </c:dPt>
526
+ `)}o.push(X`
527
+ <c:ser>
528
+ <c:idx val="${r}"/>
529
+ <c:order val="${r}"/>
530
+ ${kH(i.label)}
531
+ ${Y(c)}
532
+ ${RH({showLeaderLines:!0,showValues:e.showValues})}
533
+ ${e.labelRange?X`<c:cat>${HH(e.labelRange)}</c:cat>`:``}
534
+ <c:val>
535
+ ${UH(i.range)}
536
+ </c:val>
537
+ </c:ser>
538
+ `)}return X`
539
+ <c:doughnutChart>
540
+ <c:varyColors val="1" />
541
+ <c:holeSize val="${e.pieHolePercentage??(e.isDoughnut?50:0)}" />
542
+ ${Y(o)}
543
+ ${RH({showValues:e.showValues})}
544
+ </c:doughnutChart>
545
+ `}function RH({showLeaderLines:e,showValues:t}={showLeaderLines:!1,showValues:!1}){return X`
546
+ <c:dLbls>
547
+ <c:showLegendKey val="0"/>
548
+ <c:showVal val="${t?`1`:`0`}"/>
549
+ <c:showCatName val="0"/>
550
+ <c:showSerName val="0"/>
551
+ <c:showPercent val="0"/>
552
+ <c:showBubbleSize val="0"/>
553
+ <c:showLeaderLines val="${e?`1`:`0`}"/>
554
+ </c:dLbls>
555
+ `}function zH(e,t,n,r,i,a,o=0,s=`minMax`,c,l=`nextTo`,u,d,f=`General`){let p=i?.color?LT(i.color):a,m=i?.fontSize??12,h=t===`c:valAx`?X`<c:crossBetween val="between" />`:``,g=u?X`<c:max val="${u}" />`:``,_=u?X`<c:min val="${-u}" />`:``,v=d?X`<c:majorUnit val="${d}" />`:``;return X`
556
+ <${t}>
557
+ <c:axId val="${n}"/>
558
+ <c:crossAx val="${r}"/> <!-- reference to the other axe of the chart -->
559
+ <c:crosses val="${c||(e===`b`||e===`l`?`min`:`max`)}"/>
560
+ <c:auto val="1"/>
561
+ ${h}
562
+ <c:delete val="${o}"/> <!-- by default, axis are not displayed -->
563
+ <c:scaling>
564
+ <c:orientation val="${s}" />
565
+ ${g}
566
+ ${_}
567
+ </c:scaling>
568
+ ${v}
569
+ <c:axPos val="${e}" />
570
+ <c:tickLblPos val="${l}" />
571
+ ${VH()}
572
+ <c:majorTickMark val="out" />
573
+ <c:minorTickMark val="none" />
574
+ <c:numFmt formatCode="${f}" sourceLinked="${f===`General`?`1`:`0`}" />
575
+ <c:title>
576
+ ${wH(i?.text??``,p,m,i)}
577
+ </c:title>
578
+ ${TH(10,a)}
579
+ </${t}>
580
+ <!-- <tickLblPos/> omitted -->
581
+ `}function BH(e,t){return X`
582
+ <c:legend>
583
+ <c:legendPos val="${e}"/>
584
+ <c:overlay val="0"/>
585
+ ${TH(10,t)}
586
+ </c:legend>
587
+ `}function VH(e=`B7B7B7`){return X`
588
+ <c:majorGridlines>
589
+ ${xH({line:{color:e}})}
590
+ </c:majorGridlines>
591
+ `}function HH(e){return X`
592
+ <c:strRef>
593
+ <c:f>${e}</c:f>
594
+ </c:strRef>
595
+ `}function UH(e){return X`
596
+ <c:numRef>
597
+ <c:f>${e}</c:f>
598
+ <c:numCache />
599
+ </c:numRef>
600
+ `}function WH(e,t,n){if(!e)return{attrs:[],node:X``};let r=C_(t);return r===void 0?{attrs:[],node:X``}:{attrs:[[`cm`,`1`],[`t`,r]],node:X`<f t="array" ref="${n}">${KH(e)}</f><v>${qH(t)}</v>`}}function GH(e,t,n=!1){let r=e,i=[],a=r.trim().toUpperCase();return!n&&[`TRUE`,`FALSE`].includes(a)?(r=a===`TRUE`?`1`:`0`,i.push([`t`,`b`])):(n||!Si(r,L))&&(r=F_(e,t),i.push([`t`,`s`])),{attrs:i,node:X`<v>${r}</v>`}}function KH(e){e[0]===`=`&&(e=e.slice(1));let t;try{t=wc(e)}catch{return e}return t=Ec(t,`STRING`,XH),t=Ec(t,`FUNCALL`,e=>(e={...e,value:e.value.toUpperCase()},e=YH(e),e=JH(e),e)),t=Ec(t,`REFERENCE`,e=>e.value===j.InvalidReference?{...e,value:`#REF!`}:e),t?IF(t):e}function qH(e){return e===j.InvalidReference?`#REF!`:e}function JH(e){let t=e.value.toUpperCase(),n=e.args,r=tf[t];if(r){let i=_s.content[t].args.filter(e=>!e.optional),a=i.length-e.args.length;if(a)for(let t=e.args.length;t<i.length;t++){let e=r[t-a];n.push({type:e.type,value:e.value,tokenEndIndex:0,tokenStartIndex:0})}}return{...e,args:n}}function YH(e){let t=e.value.toUpperCase();return{...e,value:nf.includes(t)?`_xlfn.${t}`:t}}function XH(e){let t=e.value.replace(RegExp(`"`,`g`),``),n=Kr(t,L);if(n){let r=[];return(Lr.test(t)||Rr.test(t))&&r.push(`yyyy-mm-dd`),Hr.test(t)&&r.push(`hh:mm:ss`),{...e,value:R(n.value,{format:r.join(` `),locale:L})}}else return{...e,value:e.value.replace(/\\"/g,`""`)}}function ZH(e,t){let n=[];for(let r of t)switch(r.rule.type){case`CellIsRule`:n.push(QH(r,r.rule,e));break;case`ColorScaleRule`:n.push(nU(r,r.rule));break;case`IconSetRule`:n.push(rU(r,r.rule));break;case`DataBarRule`:n.push(tU(r,r.rule));break;default:console.warn(`Conditional formatting ${r.rule.type} not implemented`);break}return n}function QH(e,t,n){let r=iU(e),i=S_(t.operator);r.push(...eU(t)),i.length&&r.push([`operator`,i]);let a=$H(e.ranges,t).map(e=>X`<formula>${e}</formula>`),o={font:{color:{rgb:t.style.textColor},bold:t.style.bold,italic:t.style.italic,strike:t.style.strikethrough,underline:t.style.underline}};return t.style.fillColor&&(o.fill={fgColor:{rgb:t.style.fillColor}}),r.push([`dxfId`,F_(o,n)]),X`
601
+ <conditionalFormatting sqref="${e.ranges.join(` `)}">
602
+ <cfRule ${J(r)}>
603
+ ${Y(a)}
604
+ </cfRule>
605
+ </conditionalFormatting>
606
+ `}function $H(e,t){let n=e[0].split(`:`)[0],r=t.values;switch(t.operator){case`containsText`:return[`NOT(ISERROR(SEARCH("${r[0]}",${n})))`];case`notContainsText`:return[`ISERROR(SEARCH("${r[0]}",${n}))`];case`beginsWithText`:return[`LEFT(${n},LEN("${r[0]}"))="${r[0]}"`];case`endsWithText`:return[`RIGHT(${n},LEN("${r[0]}"))="${r[0]}"`];case`isEmpty`:return[`LEN(TRIM(${n}))=0`];case`isNotEmpty`:return[`LEN(TRIM(${n}))>0`];case`isEqual`:case`isNotEqual`:case`isGreaterThan`:case`isGreaterOrEqualTo`:case`isLessThan`:case`isLessOrEqualTo`:return[r[0]];case`customFormula`:return r[0].startsWith(`=`)?[r[0].slice(1)]:[r[0]];case`isBetween`:case`isNotBetween`:return[r[0],r[1]];case`dateIs`:switch(t.dateValue){case`exactDate`:{let e=`ROUNDDOWN(${r[0].startsWith(`=`)?r[0].slice(1):(au(r[0],L)||``).toString()},0)`;return[`AND(${n}>=${e},${n}<${e}+1)`]}case`today`:return[`AND(${n}>=TODAY(),${n}<TODAY()+1)`];case`yesterday`:return[`AND(${n}>=TODAY()-1,${n}<TODAY())`];case`tomorrow`:return[`AND(${n}>=TODAY()+1,${n}<TODAY()+2)`];case`lastWeek`:return[`AND(${n}>=TODAY()-7,${n}<TODAY())`];case`lastMonth`:return[`AND(${n}>=EDATE(TODAY(),-1),${n}<TODAY())`];case`lastYear`:return[`AND(${n}>=EDATE(TODAY(),-12),${n}<TODAY())`];case void 0:throw Error(`dateValue should be defined`)}case`dateIsBefore`:case`dateIsAfter`:case`dateIsOnOrAfter`:case`dateIsOnOrBefore`:switch(t.dateValue){case`exactDate`:return r[0].startsWith(`=`)?[r[0].slice(1)]:[(au(r[0],L)||``).toString()];case`today`:return[`TODAY()`];case`yesterday`:return[`TODAY()-1`];case`tomorrow`:return[`TODAY()+1`];case`lastWeek`:return[`TODAY()-7`];case`lastMonth`:return[`EDATE(TODAY(),-1)`];case`lastYear`:return[`EDATE(TODAY(),-12)`];case void 0:throw Error(`dateValue should be defined`)}case`top10`:case`uniqueValues`:case`duplicateValues`:return[]}}function eU(e){let t=S_(e.operator);switch(e.operator){case`containsText`:case`notContainsText`:case`beginsWithText`:case`endsWithText`:return[[`type`,t],[`text`,e.values[0]]];case`isEmpty`:case`isNotEmpty`:case`uniqueValues`:case`duplicateValues`:return[[`type`,t]];case`isEqual`:case`isNotEqual`:case`isGreaterThan`:case`isGreaterOrEqualTo`:case`isLessThan`:case`isLessOrEqualTo`:case`isBetween`:case`isNotBetween`:case`dateIsBefore`:case`dateIsAfter`:case`dateIsOnOrAfter`:case`dateIsOnOrBefore`:return[[`type`,`cellIs`]];case`dateIs`:case`customFormula`:return[[`type`,`expression`]];case`top10`:return[[`type`,`top10`],[`rank`,e.values[0]],[`percent`,e.isPercent?`1`:`0`],[`bottom`,e.isBottom?`1`:`0`]]}}function tU(e,t){let n=iU(e);return n.push([`type`,`dataBar`]),X`
607
+ <conditionalFormatting sqref="${e.ranges.join(` `)}">
608
+ <cfRule ${J(n)}>
609
+ <dataBar>
610
+ <cfvo type="min" val="0"/>
611
+ <cfvo type="max" val="100"/>
612
+ <color rgb="${LT(Qu(t.color))}"/>
613
+ </dataBar>
614
+ </cfRule>
615
+ </conditionalFormatting>
616
+ `}function nU(e,t){let n=iU(e);n.push([`type`,`colorScale`]);let r=[];for(let i of e.ranges){let e=[],a=[],o=!0;for(let n of[`minimum`,`midpoint`,`maximum`]){let r=t[n];if(r){if(r.type===`formula`){o=!1;continue}e.push(cU(r,n)),a.push([[`rgb`,LT(Qu(r.color))]])}}if(!o){console.warn(`Conditional formats with formula rules are not supported at the moment. The rule is therefore skipped.`);continue}let s=e.map(e=>X`<cfvo ${J(e)}/>`),c=a.map(e=>X`<color ${J(e)}/>`);r.push(X`
617
+ <conditionalFormatting sqref="${i}">
618
+ <cfRule ${J(n)}>
619
+ <colorScale>
620
+ ${Y(s)}
621
+ ${Y(c)}
622
+ </colorScale>
623
+ </cfRule>
624
+ </conditionalFormatting>
625
+ `)}return Y(r)}function rU(e,t){let n=iU(e);n.push([`type`,`iconSet`]);let r=[];for(let i of e.ranges){let e=[[[`type`,`percent`],[`val`,0]]],a=!0;for(let n of[`lowerInflectionPoint`,`upperInflectionPoint`]){if(t[n].type===`formula`){a=!1;continue}let r=t[n];e.push([...cU(r,n),[`gte`,r.operator===`ge`?`1`:`0`]])}if(!a){console.warn(`Conditional formats with formula rules are not supported at the moment. The rule is therefore skipped.`);continue}let o=e.map(e=>X`<cfvo ${J(e)} />`),s=[[`iconSet`,oU(t.icons)]];aU(t.icons)&&s.push([`reverse`,`1`]),r.push(X`
626
+ <conditionalFormatting sqref="${i}">
627
+ <cfRule ${J(n)}>
628
+ <iconSet ${J(s)}>
629
+ ${Y(o)}
630
+ </iconSet>
631
+ </cfRule>
632
+ </conditionalFormatting>
633
+ `)}return Y(r)}function iU(e){return[[`priority`,1],[`stopIfTrue`,+!!e.stopIfTrue]]}function aU(e){let t=mv[sU(e)];return e.upper===t.bad&&e.lower===t.good}function oU(e){return Wd[sU(e)]}function sU(e){return Object.keys(mv).find(t=>Object.values(mv[t]).includes(e.upper))||`dots`}function cU(e,t){let n=lU(e.type,t),r=[[`type`,n]];if(n!==`min`&&n!==`max`){let t=e.value;if(n===`formula`)try{t=KH(e.value)}catch{t=e.value}r.push([`val`,t])}return r}function lU(e,t){switch(e){case`value`:return t===`minimum`?`min`:`max`;case`number`:return`num`;case`percentage`:return`percent`;default:return e}}function uU(e){let t=e.length;if(t===0)return[];let n=[new Lg(`<dataValidations count="${t}">`)];for(let t of e)switch(t.criterion.type){case`dateIs`:case`dateIsBefore`:case`dateIsOnOrBefore`:case`dateIsAfter`:case`dateIsOnOrAfter`:case`dateIsBetween`:case`dateIsNotBetween`:n.push(dU(t));break;case`isEqual`:case`isNotEqual`:case`isGreaterThan`:case`isGreaterOrEqualTo`:case`isLessThan`:case`isLessOrEqualTo`:case`isBetween`:case`isNotBetween`:n.push(fU(t));break;case`isValueInRange`:case`isValueInList`:n.push(pU(t));break;case`customFormula`:n.push(mU(t));break;default:console.warn(`Data validation ${t.criterion.type} is not supported in xlsx.`);break}return n.push(new Lg(`</dataValidations>`)),n}function dU(e){let t=e.criterion,n=KH(t.values[0]),r=t.values[1]?KH(t.values[1]):void 0,i=G_(e.criterion.type),a=hU(e);return a.push([`type`,`date`],[`operator`,i]),r?X`
634
+ <dataValidation ${J(a)}>
635
+ <formula1>${N(n,L)}</formula1>
636
+ <formula2>${N(r,L)}</formula2>
637
+ </dataValidation>
638
+ `:X`
639
+ <dataValidation ${J(a)}>
640
+ <formula1>${N(n,L)}</formula1>
641
+ </dataValidation>
642
+ `}function fU(e){let t=e.criterion,n=KH(t.values[0]),r=t.values[1]?KH(t.values[1]):void 0,i=W_(e.criterion.type),a=hU(e);return a.push([`type`,`decimal`],[`operator`,i]),r?X`
643
+ <dataValidation ${J(a)}>
644
+ <formula1>${n}</formula1>
645
+ <formula2>${r}</formula2>
646
+ </dataValidation>
647
+ `:X`
648
+ <dataValidation ${J(a)}>
649
+ <formula1>${n}</formula1>
650
+ </dataValidation>
651
+ `}function pU(e){let t=e.criterion,n=e.criterion.type===`isValueInRange`?KH(t.values[0]):`"${t.values.join(`,`)}"`,r=hU(e);return r.push([`type`,`list`]),X`
652
+ <dataValidation ${J(r)}>
653
+ <formula1>${n}</formula1>
654
+ </dataValidation>
655
+ `}function mU(e){let t=e.criterion,n=KH(t.values[0]),r=hU(e);return r.push([`type`,`custom`]),X`
656
+ <dataValidation ${J(r)}>
657
+ <formula1>${n}</formula1>
658
+ </dataValidation>
659
+ `}function hU(e){return[[`allowBlank`,`1`],[`showInputMessage`,`1`],[`showErrorMessage`,`1`],[`errorStyle`,e.isBlocking?``:`warning`],[`sqref`,e.ranges.join(` `)]]}function gU(e,t,n,r){let i=[[`xmlns:xdr`,Gd.drawing],[`xmlns:r`,Xd],[`xmlns:a`,Kd],[`xmlns:c`,qd]],a=[];for(let[i,o]of Object.entries(n))switch(o?.tag){case`chart`:a.push(yU(o,t,e[i],r));break;case`image`:a.push(bU(o,t,e[i]));break}return ab(X`
660
+ <xdr:wsDr ${J(i)}>
661
+ ${Y(a)}
662
+ </xdr:wsDr>
663
+ `)}function _U(e,t){let{col:n,row:r,offset:i,width:a,height:o}=e,{x:s,y:c}=i,l=Object.values(t.rows),{index:u,offset:d}=vU(l,r,c),{index:f,offset:p}=vU(l,r,c+o),m=Object.values(t.cols),{index:h,offset:g}=vU(m,n,s),{index:_,offset:v}=vU(m,n,s+a);return{from:{col:h,colOff:g,row:u,rowOff:d},to:{col:_,colOff:v,row:f,rowOff:p}}}function vU(e,t,n){let r=0;for(let[i,a]of e.slice(t).entries())if(r<=n&&n<r+a.size)return{index:t+i,offset:z_(n-r+1)};else i<e.length-1&&(r+=a.size);return{index:e.length-1,offset:z_(n-r+1)}}function yU(e,t,n,r){let{from:i,to:a}=_U(e,t),o=I_(e.id,r),s=[[`id`,o],[`name`,`Chart ${o}`],[`title`,`Chart`]];return X`
664
+ <xdr:twoCellAnchor>
665
+ <xdr:from>
666
+ <xdr:col>${i.col}</xdr:col>
667
+ <xdr:colOff>${i.colOff}</xdr:colOff>
668
+ <xdr:row>${i.row}</xdr:row>
669
+ <xdr:rowOff>${i.rowOff}</xdr:rowOff>
670
+ </xdr:from>
671
+ <xdr:to>
672
+ <xdr:col>${a.col}</xdr:col>
673
+ <xdr:colOff>${a.colOff}</xdr:colOff>
674
+ <xdr:row>${a.row}</xdr:row>
675
+ <xdr:rowOff>${a.rowOff}</xdr:rowOff>
676
+ </xdr:to>
677
+ <xdr:graphicFrame>
678
+ <xdr:nvGraphicFramePr>
679
+ <xdr:cNvPr ${J(s)} />
680
+ <xdr:cNvGraphicFramePr />
681
+ </xdr:nvGraphicFramePr>
682
+ <xdr:xfrm>
683
+ <a:off x="0" y="0"/>
684
+ <a:ext cx="0" cy="0"/>
685
+ </xdr:xfrm>
686
+ <a:graphic>
687
+ <a:graphicData uri="${qd}">
688
+ <c:chart r:id="${n}" />
689
+ </a:graphicData>
690
+ </a:graphic>
691
+ </xdr:graphicFrame>
692
+ <xdr:clientData fLocksWithSheet="0"/>
693
+ </xdr:twoCellAnchor>
694
+ `}function bU(e,t,n){let{from:r,to:i}=_U(e,t),a=R_(e.id),o=[[`id`,a],[`name`,`Image ${a}`],[`title`,`Image`]],s=z_(e.width),c=z_(e.height);return X`
695
+ <xdr:twoCellAnchor editAs="oneCell">
696
+ <xdr:from>
697
+ <xdr:col>${r.col}</xdr:col>
698
+ <xdr:colOff>${r.colOff}</xdr:colOff>
699
+ <xdr:row>${r.row}</xdr:row>
700
+ <xdr:rowOff>${r.rowOff}</xdr:rowOff>
701
+ </xdr:from>
702
+ <xdr:to>
703
+ <xdr:col>${i.col}</xdr:col>
704
+ <xdr:colOff>${i.colOff}</xdr:colOff>
705
+ <xdr:row>${i.row}</xdr:row>
706
+ <xdr:rowOff>${i.rowOff}</xdr:rowOff>
707
+ </xdr:to>
708
+ <xdr:pic>
709
+ <xdr:nvPicPr>
710
+ <xdr:cNvPr ${J(o)}/>
711
+ <xdr:cNvPicPr preferRelativeResize="0"/>
712
+ </xdr:nvPicPr>
713
+ <xdr:blipFill>
714
+ <a:blip cstate="print" r:embed="${n}"/>
715
+ <a:stretch>
716
+ <a:fillRect/>
717
+ </a:stretch>
718
+ </xdr:blipFill>
719
+ <xdr:spPr>
720
+ <a:xfrm>
721
+ <a:ext cx="${s}" cy="${c}" />
722
+ </a:xfrm>
723
+ <a:prstGeom prst="rect">
724
+ <a:avLst/>
725
+ </a:prstGeom>
726
+ <a:noFill/>
727
+ </xdr:spPr>
728
+ </xdr:pic>
729
+ <xdr:clientData fLocksWithSheet="0"/>
730
+ </xdr:twoCellAnchor>
731
+ `}function xU(e){return e.isLocked?X`<sheetProtection sheet="1" objects="1" scenarios="1" />`:``}function SU(e){let t=[];for(let[n,r]of Object.entries(e)){let e=[[`numFmtId`,parseInt(n)+164],[`formatCode`,r.format]];t.push(X`
732
+ <numFmt ${J(e)}/>
733
+ `)}return X`
734
+ <numFmts count="${e.length}">
735
+ ${Y(t)}
736
+ </numFmts>
737
+ `}function CU(e){return ft(e)?X``:X`
738
+ <font>
739
+ ${e.bold?X`<b />`:``}
740
+ ${e.italic?X`<i />`:``}
741
+ ${e.underline?X`<u />`:``}
742
+ ${e.strike?X`<strike />`:``}
743
+ ${e.size?X`<sz val="${e.size}" />`:``}
744
+ ${e.color&&e.color.rgb?X`<color rgb="${LT(e.color.rgb)}" />`:``}
745
+ ${e.name?X`<name val="${e.name}" />`:``}
746
+ </font>
747
+ `}function wU(e){return X`
748
+ <fonts count="${e.length}">
749
+ ${Y(Object.values(e).map(CU))}
750
+ </fonts>
751
+ `}function TU(e){let t=[];for(let n of Object.values(e))n.reservedAttribute===void 0?t.push(X`
752
+ <fill>
753
+ <patternFill patternType="solid">
754
+ <fgColor rgb="${LT(n.fgColor.rgb)}" />
755
+ <bgColor indexed="64" />
756
+ </patternFill>
757
+ </fill>
758
+ `):t.push(X`
759
+ <fill>
760
+ <patternFill patternType="${n.reservedAttribute}" />
761
+ </fill>
762
+ `);return X`
763
+ <fills count="${e.length}">
764
+ ${Y(t)}
765
+ </fills>
766
+ `}function EU(e){let t=[];for(let n of Object.values(e))t.push(X`
767
+ <border>
768
+ <left ${DU(n.left)}>
769
+ ${OU(n.left)}
770
+ </left>
771
+ <right ${DU(n.right)}>
772
+ ${OU(n.right)}
773
+ </right>
774
+ <top ${DU(n.top)}>
775
+ ${OU(n.top)}
776
+ </top>
777
+ <bottom ${DU(n.bottom)}>
778
+ ${OU(n.bottom)}
779
+ </bottom>
780
+ <diagonal ${DU(n.diagonal)}>
781
+ ${OU(n.diagonal)}
782
+ </diagonal>
783
+ </border>
784
+ `);return X`
785
+ <borders count="${e.length}">
786
+ ${Y(t)}
787
+ </borders>
788
+ `}function DU(e){return e?J([[`style`,e.style]]):X``}function OU(e){return e?X`
789
+ <color ${J([[`rgb`,LT(e.color.rgb)]])}/>
790
+ `:X``}function kU(e){let t=[];for(let n of e){let e=[[`numFmtId`,n.numFmtId],[`fillId`,n.fillId],[`fontId`,n.fontId],[`borderId`,n.borderId]],r=[];n.alignment&&n.alignment.vertical&&r.push([`vertical`,n.alignment.vertical]),n.alignment&&n.alignment.horizontal&&r.push([`horizontal`,n.alignment.horizontal]),n.alignment&&n.alignment.wrapText&&r.push([`wrapText`,`1`]),n.alignment&&n.alignment.textRotation&&r.push([`textRotation`,n.alignment.textRotation]),n.alignment&&n.alignment.shrinkToFit&&r.push([`shrinkToFit`,`1`]),r.length>0?(e.push([`applyAlignment`,`1`]),t.push(X`<xf ${J(e)}><alignment ${J(r)} /></xf> `)):t.push(X`<xf ${J(e)} />`)}return X`
791
+ <cellXfs count="${e.length}">
792
+ ${Y(t)}
793
+ </cellXfs>
794
+ `}function AU(e){let t=[];for(let n of e){let e=X``;n.font&&(e=CU(n.font));let r=X``;n.fill&&(r=X`
795
+ <fill>
796
+ <patternFill>
797
+ <bgColor rgb="${LT(n.fill.fgColor.rgb)}" />
798
+ </patternFill>
799
+ </fill>
800
+ `),t.push(X`
801
+ <dxf>
802
+ ${e}
803
+ ${r}
804
+ </dxf>
805
+ `)}return X`
806
+ <dxfs count="${e.length}">
807
+ ${Y(t)}
808
+ </dxfs>
809
+ `}function jU(e,t,n){return ab(X`
810
+ <table ${J([[`id`,t],[`name`,`Table${t}`],[`displayName`,`Table${t}`],[`ref`,e.range],[`headerRowCount`,e.config.numberOfHeaders],[`totalsRowCount`,+!!e.config.totalRow],[`xmlns`,Gd.table],[`xmlns:xr`,Gd.revision],[`xmlns:xr3`,Gd.revision3],[`xmlns:mc`,Gd.markupCompatibility]])}>
811
+ ${e.config.hasFilters?MU(e):``}
812
+ ${FU(e,n)}
813
+ ${IU(e)}
814
+ </table>
815
+ `)}function MU(e){return X`
816
+ <autoFilter ${J([[`ref`,e.range]])}>
817
+ ${Y(NU(e))}
818
+ </autoFilter>
819
+ `}function NU(e){let t=[];for(let n of e.filters){let e=X`
820
+ <filterColumn ${J([[`colId`,n.colId]])}>
821
+ ${PU(n)}
822
+ </filterColumn>
823
+ `;t.push(e)}return t}function PU(e){let t=e.displayedValues.map(e=>X`<filter ${J([[`val`,e]])}/>`);return X`
824
+ <filters ${J(e.displayBlanks?[[`blank`,1]]:[])}>
825
+ ${Y(t)}
826
+ </filters>
827
+ `}function FU(e,t){let n=hn(e.range),r=[];for(let i of C(0,Nn(n).numberOfCols)){let a=E(n.left+i,n.top),o=t.cells[a]||`col${i}`,s=[[`id`,i+1],[`name`,o]];if(e.config.totalRow){let e=E(n.left+i,n.bottom);t.cells[e]?.startsWith(`=`)&&s.push([`totalsRowFunction`,`custom`])}r.push(X`<tableColumn ${J(s)}/>`)}return X`
828
+ <tableColumns ${J([[`count`,r.length]])}>
829
+ ${Y(r)}
830
+ </tableColumns>
831
+ `}function IU(e){return X`<tableStyleInfo ${J([[`name`,e.config.styleId],[`showFirstColumn`,+!!e.config.firstColumn],[`showLastColumn`,+!!e.config.lastColumn],[`showRowStripes`,+!!e.config.bandedRows],[`showColumnStripes`,+!!e.config.bandedColumns]])}/>`}function LU(e){if(!Object.values(e).length)return X``;let t=[];for(let[n,r]of Object.entries(e)){let e=[[`min`,parseInt(n)+1],[`max`,parseInt(n)+1],[`width`,T_(r.size||96)],[`customWidth`,1],[`hidden`,+!!r.isHidden]];r.outlineLevel&&e.push([`outlineLevel`,r.outlineLevel]),r.collapsed&&e.push([`collapsed`,1]),t.push(X`
832
+ <col ${J(e)}/>
833
+ `)}return X`
834
+ <cols>
835
+ ${Y(t)}
836
+ </cols>
837
+ `}function RU(e,t,n){let r=[],i=new dN(Jg(n.id,n.styles)),a=new dN(Jg(n.id,n.borders)),o=new dN(Jg(n.id,n.formats));for(let s=0;s<n.rowNumber;s++){let c=[[`r`,s+1]],l=n.rows[s]||{};l.size&&l.size!==23&&c.push([`ht`,w_(l.size)],[`customHeight`,1]),l.isHidden&&c.push([`hidden`,1]),l.outlineLevel&&c.push([`outlineLevel`,l.outlineLevel]),l.collapsed&&c.push([`collapsed`,1]);let u=[];for(let r=0;r<n.colNumber;r++){let c=E(r,s),l=n.cells[c],d=n.cellValues[c],f={sheetId:n.id,col:r,row:s},p=i.get(f),m=o.get(f),h=a.get(f);if(l||p||m||h||d!==void 0){let i=[[`r`,c]],a=j_(e,O_(t,l,p,m,h));a&&i.push([`s`,a]);let o=[],f=X``;if(l?.startsWith(`=`)&&d!==void 0){let e=WH(l,d,n.formulaSpillRanges[c]??c);if(!e)continue;({attrs:o,node:f}=e)}else if(l&&it(l)){let{label:t}=st(l);({attrs:o,node:f}=GH(t,e.sharedStrings))}else if(l&&l!==``){let i=zU(r,s,n),a=BU(r,s,n),c=!!(m&&qo(t.formats[m]));({attrs:o,node:f}=GH(l,e.sharedStrings,i||a||c))}i.push(...o),u.push(X`<c ${J(i)}>
838
+ ${f}
839
+ </c>`)}}(u.length||l.size!==23||l.isHidden||l.outlineLevel||l.collapsed)&&r.push(X`
840
+ <row ${J(c)}>
841
+ ${Y(u)}
842
+ </row>
843
+ `)}return X`
844
+ <sheetData>
845
+ ${Y(r)}
846
+ </sheetData>
847
+ `}function zU(e,t,n){return n.tables.some(n=>{let r=hn(n.range);return jn(e,t,{...r,bottom:r.top})})}function BU(e,t,n){return n.tables.some(n=>{if(!n.config.totalRow)return!1;let r=hn(n.range);return jn(e,t,{...r,top:r.bottom})})}function VU(e,t,n){let r=t.sheets[n].cells,i=[];for(let a in r){let o=r[a];if(o&&it(o)){let{label:r,url:s}=st(o);if(lt(s)){let e=dt(s),n=t.sheets.find(t=>t.id===e),o=n?`${n.name}!A1`:j.InvalidReference,c=[[`display`,r],[`location`,o],[`ref`,a]];i.push(X`
848
+ <hyperlink ${J(c)}/>
849
+ `)}else{let t=[[`r:id`,N_(e.relsFiles,`xl/worksheets/_rels/sheet${n}.xml.rels`,{target:Kl(s),type:Yd.hyperlink,targetMode:`External`})],[`ref`,a]];i.push(X`
850
+ <hyperlink ${J(t)}/>
851
+ `)}}}return i.length?X`
852
+ <hyperlinks>
853
+ ${Y(i)}
854
+ </hyperlinks>
855
+ `:X``}function HU(e){if(e.length){let t=e.map(e=>X`<mergeCell ref="${e}" />`);return X`
856
+ <mergeCells count="${e.length}">
857
+ ${Y(t)}
858
+ </mergeCells>
859
+ `}else return X``}function UU(e){let t=e.panes,n=X``;if(t&&(t.xSplit||t.ySplit)){let e=E(t.xSplit,t.ySplit),r=t.xSplit?X`xSplit="${t.xSplit}"`:``,i=t.ySplit?X`ySplit="${t.ySplit}"`:``,a=t.xSplit?X`<selection pane="topRight"/>`:``,o=t.ySplit?X`<selection pane="bottomLeft"/>`:``,s=t.xSplit&&t.ySplit?X`<selection pane="bottomRight"/>`:``;n=X`
860
+ <pane
861
+ ${r}
862
+ ${i}
863
+ topLeftCell="${e}"
864
+ activePane="${t.xSplit?t.ySplit?`bottomRight`:`topRight`:`bottomLeft`}"
865
+ state="frozen"/>
866
+ ${a}
867
+ ${o}
868
+ ${s}
869
+ `}return X`
870
+ <sheetViews>
871
+ <sheetView ${J([[`showGridLines`,+!!e.areGridLinesVisible],[`workbookViewId`,0]])}>
872
+ ${n}
873
+ </sheetView>
874
+ </sheetViews>
875
+ `}function WU(e){return e.color?X`
876
+ <sheetPr>
877
+ <tabColor ${J([[`rgb`,LT(e.color)]])} />
878
+ </sheetPr>
879
+ `:``}function GU(e){if(!e.namedRanges||!Object.keys(e.namedRanges).length)return X``;let t=[];for(let n in e.namedRanges){let r=[[`name`,n]],i=Ps(e.namedRanges[n],`colrow`);t.push(X`
880
+ <definedName ${J(r)}>${i}</definedName>
881
+ `)}return X`
882
+ <definedNames>
883
+ ${Y(t)}
884
+ </definedNames>
885
+ `}function KU(e){e=tW(e),e=nW(e);let t=[],n=sb(e);return t.push(qU(e,n)),t.push(...JU(e,n)),t.push(XU(n)),t.push(ZU(n.sharedStrings)),t.push(...QU(n.relsFiles)),t.push($U(t)),t.push(eW()),{name:`my_spreadsheet.xlsx`,files:t}}function qU(e,t){let n=[[`xmlns`,Gd.workbook],[`xmlns:r`,Xd]],r=[];for(let[n,i]of Object.entries(e.sheets)){let e=[[`state`,i.isVisible?`visible`:`hidden`],[`name`,i.name],[`sheetId`,parseInt(n)+1],[`r:id`,`rId${parseInt(n)+1}`]];r.push(X`
886
+ <sheet ${J(e)} />
887
+ `),N_(t.relsFiles,`xl/_rels/workbook.xml.rels`,{type:Yd.sheet,target:`worksheets/sheet${n}.xml`})}return rb(ab(X`
888
+ <workbook ${J(n)}>
889
+ <sheets>
890
+ ${Y(r)}
891
+ </sheets>
892
+ ${GU(e)}
893
+ </workbook>
894
+ `),`xl/workbook.xml`,`workbook`)}function JU(e,t){let n=[],r=1;for(let[i,a]of Object.entries(e.sheets)){let o=[[`xmlns`,Gd.worksheet],[`xmlns:r`,Xd]],s=[[`defaultRowHeight`,w_(23)],[`defaultColWidth`,T_(96)]],c=YU(a,i,r,t,n);r+=a.tables.length;let l=X``,u=[];for(let r of a.charts){let a=I_(r.id,t),o=N_(t.relsFiles,`xl/drawings/_rels/drawing${i}.xml.rels`,{target:`../charts/chart${a}.xml`,type:Yd.chart});u.push(o),n.push(rb(bH(r,i,e),`xl/charts/chart${a}.xml`,`chart`))}for(let e of a.images){let r=e.data.mimetype;if(r===void 0)continue;let a=v_[r];if(a===void 0)continue;let o=`image${R_(e.id)}.${a}`,s=N_(t.relsFiles,`xl/drawings/_rels/drawing${i}.xml.rels`,{target:`../media/${o}`,type:Yd.image});u.push(s),n.push({path:`xl/media/${o}`,imageSrc:e.data.path})}let d=[...a.charts,...a.images];if(d.length){let e=N_(t.relsFiles,`xl/worksheets/_rels/sheet${i}.xml.rels`,{target:`../drawings/drawing${i}.xml`,type:Yd.drawing});n.push(rb(gU(u,a,d,t),`xl/drawings/drawing${i}.xml`,`drawing`)),l=X`<drawing r:id="${e}" />`}let f=X`
895
+ <worksheet ${J(o)}>
896
+ ${WU(a)}
897
+ ${UU(a)}
898
+ <sheetFormatPr ${J(s)} />
899
+ ${LU(a.cols)}
900
+ ${RU(t,e,a)}
901
+ ${HU(a.merges)}
902
+ ${xU(a)}
903
+ ${Y(ZH(t.dxfs,a.conditionalFormats))}
904
+ ${Y(uU(a.dataValidationRules))}
905
+ ${VU(t,e,i)}
906
+ ${l}
907
+ ${c}
908
+ </worksheet>
909
+ `;n.push(rb(ab(f),`xl/worksheets/sheet${i}.xml`,`sheet`))}let i=X`
910
+ <metadata xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:xda="http://schemas.microsoft.com/office/spreadsheetml/2017/dynamicarray">
911
+ <metadataTypes count="1">
912
+ <metadataType name="XLDAPR" minSupportedVersion="120000" copy="1" pasteAll="1"
913
+ pasteValues="1" merge="1" splitFirst="1" rowColShift="1" clearFormats="1"
914
+ clearComments="1" assign="1" coerce="1" cellMeta="1" />
915
+ </metadataTypes>
916
+ <futureMetadata name="XLDAPR" count="1">
917
+ <bk>
918
+ <extLst>
919
+ <ext uri="{${`bdbb8cdc-fa1e-496e-a857-3c3f30c029c3`}}">
920
+ <xda:dynamicArrayProperties fDynamic="1" fCollapsed="0" />
921
+ </ext>
922
+ </extLst>
923
+ </bk>
924
+ </futureMetadata>
925
+ <cellMetadata count="1">
926
+ <bk>
927
+ <rc t="1" v="0" />
928
+ </bk>
929
+ </cellMetadata>
930
+ </metadata>
931
+ `;return n.push(rb(ab(i),`xl/metadata.xml`,`metadata`)),N_(t.relsFiles,`xl/_rels/workbook.xml.rels`,{type:Yd.sharedStrings,target:`sharedStrings.xml`}),N_(t.relsFiles,`xl/_rels/workbook.xml.rels`,{type:Yd.styles,target:`styles.xml`}),N_(t.relsFiles,`xl/_rels/workbook.xml.rels`,{type:Yd.metadata,target:`metadata.xml`}),n}function YU(e,t,n,r,i){let a=n;if(!e.tables.length)return new Lg(``);let o=`xl/worksheets/_rels/sheet${t}.xml.rels`,s=[];for(let t of e.tables){let n=N_(r.relsFiles,o,{target:`../tables/table${a}.xml`,type:Yd.table});i.push(rb(jU(t,a,e),`xl/tables/table${a}.xml`,`table`)),s.push(X`<tablePart r:id="${n}" />`),a++}return X`
932
+ <tableParts count="${e.tables.length}">
933
+ ${Y(s)}
934
+ </tableParts>
935
+ `}function XU(e){return rb(ab(X`
936
+ <styleSheet ${J([[`xmlns`,Gd.styleSheet],[`xmlns:r`,Xd]])}>
937
+ ${SU(e.numFmts)}
938
+ ${wU(e.fonts)}
939
+ ${TU(e.fills)}
940
+ ${EU(e.borders)}
941
+ ${kU(e.styles)}
942
+ ${AU(e.dxfs)}
943
+ </styleSheet>
944
+ `),`xl/styles.xml`,`styles`)}function ZU(e){let t=[[`xmlns`,Gd.sst],[`count`,e.length],[`uniqueCount`,e.length]],n=e.map(e=>e.trim()===e?X`<si><t>${e}</t></si>`:X`<si><t xml:space="preserve">${e}</t></si>`);return rb(ab(X`
945
+ <sst ${J(t)}>
946
+ ${Y(n)}
947
+ </sst>
948
+ `),`xl/sharedStrings.xml`,`sharedStrings`)}function QU(e){let t=[];for(let n of e){let e=[];for(let t of n.rels){let n=[[`Id`,t.id],[`Target`,t.target],[`Type`,t.type]];t.targetMode&&n.push([`TargetMode`,t.targetMode]),e.push(X`
949
+ <Relationship ${J(n)} />
950
+ `)}let r=X`
951
+ <Relationships xmlns="${Gd.Relationships}">
952
+ ${Y(e)}
953
+ </Relationships>
954
+ `;t.push(rb(ab(r),n.path))}return t}function $U(e){let t=[],n=Object.entries(v_).map(([e,t])=>lb(t,e));for(let n of e)`contentType`in n&&n.contentType&&t.push(cb(`/`+n.path,Jd[n.contentType]));return rb(ab(X`
955
+ <Types xmlns="${Gd.Types}">
956
+ ${Y(Object.values(n))}
957
+ <Default ${J([[`Extension`,`rels`],[`ContentType`,`application/vnd.openxmlformats-package.relationships+xml`]])} />
958
+ <Default ${J([[`Extension`,`xml`],[`ContentType`,`application/xml`]])} />
959
+ ${Y(t)}
960
+ </Types>
961
+ `),`[Content_Types].xml`)}function eW(){let e=[[`Id`,`rId1`],[`Type`,Yd.document],[`Target`,`xl/workbook.xml`]];return rb(ab(X`
962
+ <Relationships xmlns="${Gd.Relationships}">
963
+ <Relationship ${J(e)} />
964
+ </Relationships>
965
+ `),`_rels/.rels`)}function tW(e){let t={},n=[];for(let r of e.sheets){let e=r.name.slice(0,31);e=Ht(e,n,{compute:(e,t)=>e.slice(0,31-String(t).length)+t}),n.push(e),e!==r.name&&(t[r.name]=e,r.name=e)}if(!Object.keys(t).length)return e;let r=Object.keys(t).sort((e,t)=>t.length-e.length),i=JSON.stringify(e);for(let e of r){let n=RegExp(`'?${qe(e)}'?!`,`g`);i=i.replaceAll(n,n=>{let r=t[e];return n.replace(e,r)})}return JSON.parse(i)}function nW(e){for(let t of e.sheets)t.tables=t.tables.filter(e=>Nn(hn(e.range)).numberOfRows>1);return e}var rW=function(e){return e[e.Ready=0]=`Ready`,e[e.Running=1]=`Running`,e[e.RunningCore=2]=`RunningCore`,e[e.Finalizing=3]=`Finalizing`,e}(rW||{}),iW=class e extends br{corePlugins=[];statefulUIPlugins=[];range;session;isReplayingCommand=!1;renderers={};status=rW.Ready;config;corePluginConfig;coreViewPluginConfig;uiPluginConfig;state;selection;getters;coreGetters;handlers=[];uiHandlers=[];coreHandlers=[];constructor(e={},t={},n=[],r=!1){let i=performance.now();console.debug(`##### Model creation #####`),super(),Mi(),n=SS(e,n);let a=mS(e,r);this.state=new hH,this.config=this.setupConfig(t),this.getters={isReadonly:()=>this.config.mode===`readonly`||this.config.mode===`dashboard`,isDashboard:()=>this.config.mode===`dashboard`},this.session=this.setupSession(a.revisionId),this.coreGetters={},this.range=new dH(this.coreGetters),this.coreGetters.getRangeString=this.range.getRangeString.bind(this.range),this.coreGetters.getRangeFromSheetXC=this.range.getRangeFromSheetXC.bind(this.range),this.coreGetters.createAdaptedRanges=this.range.createAdaptedRanges.bind(this.range),this.coreGetters.getRangeData=this.range.getRangeData.bind(this.range),this.coreGetters.getRangeDataFromXc=this.range.getRangeDataFromXc.bind(this.range),this.coreGetters.getRangeDataFromZone=this.range.getRangeDataFromZone.bind(this.range),this.coreGetters.getRangeFromRangeData=this.range.getRangeFromRangeData.bind(this.range),this.coreGetters.getRangeFromZone=this.range.getRangeFromZone.bind(this.range),this.coreGetters.recomputeRanges=this.range.recomputeRanges.bind(this.range),this.coreGetters.isRangeValid=this.range.isRangeValid.bind(this.range),this.coreGetters.extendRange=this.range.extendRange.bind(this.range),this.coreGetters.getRangesUnion=this.range.getRangesUnion.bind(this.range),this.coreGetters.removeRangesSheetPrefix=this.range.removeRangesSheetPrefix.bind(this.range),this.coreGetters.copyFormulaStringForSheet=this.range.copyFormulaStringForSheet.bind(this.range),this.selection=new pH(this.getters),this.coreHandlers.push(this.range),this.handlers.push(this.range),this.corePluginConfig=this.setupCorePluginConfig(),this.coreViewPluginConfig=this.setupCoreViewPluginConfig(),this.uiPluginConfig=this.setupUiPluginConfig();for(let e of $z.getAll())this.setupCorePlugin(e,a);Object.assign(this.getters,this.coreGetters),this.session.loadInitialMessages(n);for(let e of nB.getAll()){let t=this.setupCoreViewPlugin(e);this.handlers.push(t),this.uiHandlers.push(t),this.coreHandlers.push(t)}for(let e of tB.getAll()){let t=this.setupUiPlugin(e);this.statefulUIPlugins.push(t),this.handlers.push(t),this.uiHandlers.push(t)}for(let e of eB.getAll()){let t=this.setupUiPlugin(e);this.handlers.push(t),this.uiHandlers.push(t)}if(this.config.mode!==`export_verification`&&(this.dispatch(`START`),this.selection.observe(this,{handleEvent:()=>this.trigger(`update`)}),this.setupSessionEvents(),this.joinSession(),t.snapshotRequested||e[`[Content_Types].xml`]&&!this.getters.isReadonly())){let e=performance.now();console.debug(`Snapshot requested`),this.session.snapshot(this.exportData()),console.debug(`Snapshot taken in`,performance.now()-e,`ms`)}console.debug(`Model created in`,performance.now()-i,`ms`),console.debug(`######`)}joinSession(){this.session.join(this.config.client)}async leaveSession({shouldSnapshot:e}={shouldSnapshot:!0}){let t=e&&!this.getters.isReadonly()?_t(()=>this.exportData()):void 0;await this.session.leave(t)}setupUiPlugin(e){let t=new e(this.uiPluginConfig);for(let n of e.getters){if(!(n in t))throw Error(`Invalid getter name: ${n} for plugin ${t.constructor}`);if(n in this.getters)throw Error(`Getter "${n}" is already defined.`);this.getters[n]=t[n].bind(t)}for(let n of e.layers)this.renderers[n]||(this.renderers[n]=[]),this.renderers[n].push(t);return t}setupCoreViewPlugin(e){let t=new e(this.coreViewPluginConfig);for(let n of e.getters){if(!(n in t))throw Error(`Invalid getter name: ${n} for plugin ${t.constructor}`);if(n in this.getters)throw Error(`Getter "${n}" is already defined.`);this.getters[n]=t[n].bind(t)}return t}setupCorePlugin(e,t){let n=new e(this.corePluginConfig);for(let t of e.getters){if(!(t in n))throw Error(`Invalid getter name: ${t} for plugin ${n.constructor}`);if(t in this.coreGetters)throw Error(`Getter "${t}" is already defined.`);this.coreGetters[t]=n[t].bind(n)}n.import(t),this.corePlugins.push(n),this.coreHandlers.push(n),this.handlers.push(n)}onRemoteRevisionReceived({commands:e}){for(let t of e){let e=this.status;this.status=rW.RunningCore,this.dispatchToHandlers(this.statefulUIPlugins,t),this.status=e}this.finalize()}setupSession(e){return new lz(cH({initialRevisionId:e,recordChanges:this.state.recordChanges.bind(this.state),dispatch:e=>{if(!this.checkDispatchAllowedRemoteCommand(e).isSuccessful){this.dispatchToHandlers(this.coreHandlers,{type:`UNDO`,commands:[e]});return}this.isReplayingCommand=!0,this.dispatchToHandlers(this.coreHandlers,e),this.isReplayingCommand=!1}}),this.config.transportService,e,new $V(this.getters))}setupSessionEvents(){this.session.on(`remote-revision-received`,this,this.onRemoteRevisionReceived),this.session.on(`revision-undone`,this,({commands:e})=>{this.dispatchFromCorePlugin(`UNDO`,{commands:e}),this.finalize()}),this.session.on(`revision-redone`,this,({commands:e})=>{this.dispatchFromCorePlugin(`REDO`,{commands:e}),this.finalize()}),this.session.on(`unexpected-revision-id`,this,()=>this.trigger(`unexpected-revision-id`)),this.session.on(`collaborative-event-received`,this,()=>{this.trigger(`update`)})}setupConfig(e){let t=e.client||{id:G.smallUuid(),name:A(`Anonymous`).toString()},n=e.transportService||new JB,r=e.mode===`readonly`||e.mode===`dashboard`||e.mode===`export_verification`;return{...e,mode:e.mode||`normal`,custom:e.custom||{},external:this.setupExternalConfig(e.external||{}),transportService:r?new eH(n):n,client:t,moveClient:()=>{},snapshotRequested:!1,notifyUI:e=>this.trigger(`notify-ui`,e),raiseBlockingErrorUI:e=>this.trigger(`raise-error-ui`,{text:e}),customColors:e.customColors||[]}}setupExternalConfig(e){let t=e.loadLocales||(()=>Promise.resolve(Na));return{...e,loadLocales:t}}setupCorePluginConfig(){return{getters:this.coreGetters,stateObserver:this.state,range:this.range,dispatch:this.dispatchFromCorePlugin,canDispatch:this.canDispatch,custom:this.config.custom,external:this.config.external}}setupCoreViewPluginConfig(){return{getters:this.getters,stateObserver:this.state,custom:this.config.custom,session:this.session,defaultCurrency:this.config.defaultCurrency,customColors:this.config.customColors||[],external:this.config.external}}setupUiPluginConfig(){return{getters:this.getters,stateObserver:this.state,dispatch:this.dispatch,canDispatch:this.canDispatch,selection:this.selection,moveClient:this.session.move.bind(this.session),custom:this.config.custom,uiActions:this.config,session:this.session,defaultCurrency:this.config.defaultCurrency,customColors:this.config.customColors||[],external:this.config.external,colorScheme:this.config.colorScheme}}checkDispatchAllowed(e){let t=Hl(e)?this.checkDispatchAllowedCoreCommand(e):this.checkDispatchAllowedLocalCommand(e);return this.processCommandResults(t)}processCommandResults(e){return e.some(e=>e!==H.Success)?new Wl(e.flat()):Wl.Success}checkDispatchAllowedRemoteCommand(e){let t=this.coreHandlers.map(t=>t.allowDispatch(e));return this.processCommandResults(t)}checkDispatchAllowedCoreCommand(e){return this.handlers.map(t=>t.allowDispatch(e))}checkDispatchAllowedLocalCommand(e){return this.uiHandlers.map(t=>t.allowDispatch(e))}finalize(){this.status=rW.Finalizing;for(let e of this.handlers)e.finalize();this.status=rW.Ready,this.trigger(`command-finalized`)}canDispatch=(e,t)=>this.checkDispatchAllowed(aW(e,t));dispatch=(e,t)=>{let n=aW(e,t),r=this.status;if(this.getters.isReadonly()&&!Ul(n))return new Wl(H.Readonly);if(!this.session.canApplyOptimisticUpdate())return new Wl(H.WaitingSessionConfirmation);switch(r){case rW.Ready:let t=this.checkDispatchAllowed(n);if(!t.isSuccessful)return this.trigger(`update`),this.trigger(`command-rejected`,{command:n,result:t}),t;this.status=rW.Running;let{changes:r,commands:i}=this.state.recordChanges(()=>{let t=performance.now();Hl(n)&&this.state.addCommand(n),this.dispatchToHandlers(this.handlers,n),this.finalize();let r=performance.now()-t;r>5&&console.debug(e,r,`ms`)});this.session.save(n,i,r),this.status=rW.Ready,this.trigger(`update`);break;case rW.Running:if(Hl(n)){let e=this.checkDispatchAllowed(n);if(!e.isSuccessful)return e;this.state.addCommand(n)}this.dispatchToHandlers(this.handlers,n);break;case rW.Finalizing:throw Error(`Cannot dispatch commands in the finalize state`);case rW.RunningCore:if(Hl(n))throw Error(`A UI plugin cannot dispatch ${e} while handling a core command`);this.dispatchToHandlers(this.handlers,n)}return Wl.Success};dispatchFromCorePlugin=(e,t)=>{let n=aW(e,t),r=this.status;this.status=rW.RunningCore;let i=this.isReplayingCommand?this.coreHandlers:this.handlers;return this.dispatchToHandlers(i,n),this.status=r,Wl.Success};dispatchToHandlers(e,t){let n=Hl(t);for(let r of e)!n&&r instanceof Bg||r.beforeHandle(t);for(let r of e)!n&&r instanceof Bg||r.handle(t);this.trigger(`command-dispatched`,t)}drawLayer(e,t){let n=this.renderers[t];if(n)for(let r of n)e.ctx.save(),r.drawLayer(e,t),e.ctx.restore()}exportData(){let t=this._exportData(!0),n=this._exportData(!1),r={...this.config,mode:`export_verification`,client:{id:`exporter`,name:`exporter`},snapshotRequested:!1,transportService:new JB};return T(n,new e(x(t),r)._exportData(!1))?t:(n.isNotSquishable=!0,n)}_exportData(e){let t=kS();for(let n of this.handlers)n instanceof Bg&&n.export(t,e);return t.revisionId=this.session.getRevisionId()||`START_REVISION`,t=x(t),t}updateMode(e){this.config.mode=e,this.trigger(`update`)}async exportXLSX(){this.dispatch(`EVALUATE_CELLS`);let e=jS();for(let t of this.handlers)t instanceof zg&&await t.exportForExcel(e);return e=x(e),KU(e)}};function aW(e,t={}){let n=x(t);return n.type=e,n}var oW=class extends mz{queuedBordersToAdd={};copy(e){let t=e.sheetId;if(e.zones.length===0)return;let{rowsIndexes:n,columnsIndexes:r}=e,i=[];for(let e of n){let n=[];for(let i of r){let r={col:i,row:e,sheetId:t};n.push(this.getters.getCellBorder(r))}i.push(n)}return{borders:i}}paste(e,t,n){let r=e.sheetId;if(n.pasteOption===`asValue`)return;let i=e.zones;if(!n.isCutOperation)this.pasteFromCopy(r,i,t.borders);else{let{left:e,top:n}=i[0];this.pasteZone(r,e,n,t.borders)}this.executeQueuedChanges(r)}pasteZone(e,t,n,r){for(let[i,a]of r.entries())for(let[r,o]of a.entries()){let a={col:t+r,row:n+i,sheetId:e};this.pasteBorder(o,a)}}pasteBorder(e,t){let n={...this.getters.getCellBorder(t),...e},r=JSON.stringify(n);this.queuedBordersToAdd[r]||(this.queuedBordersToAdd[r]=[]),this.queuedBordersToAdd[r].push(D(t))}executeQueuedChanges(e){for(let t in this.queuedBordersToAdd){let n=this.queuedBordersToAdd[t],r=JSON.parse(t),i=rn(n,[]);this.dispatch(`SET_BORDERS_ON_TARGET`,{sheetId:e,target:i,border:r})}this.queuedBordersToAdd={}}},sW=class extends pz{copy(e){}},cW=class extends sW{copy(e){let t=e.sheetId,n=this.getters.getFigure(t,e.figureId);if(!n)throw Error(`No figure for the given id: ${e.figureId}`);if(n.tag!==`carousel`)return;let r={...n},i=this.getters.getCarousel(e.figureId),a={};for(let e of i.items)if(e.type===`chart`){let t=this.getters.getChart(e.chartId);if(!t)throw Error(`No chart for the given id: ${e.chartId}`);a[e.chartId]=t}return{figureId:e.figureId,copiedFigure:r,copiedCarousel:i,copiedCharts:a,copiedSheetId:t}}getPasteTarget(e){return{zones:[],figureId:G.smallUuid(),sheetId:e}}paste(e,t,n){if(!e.figureId)return;let{zones:r,figureId:i}=e,a=e.sheetId,{width:o,height:s}=t.copiedFigure,c=this.getters.getMaxAnchorOffset(a,s,o),{left:l,top:u}=r[0],d={x:0,y:0};l>c.col&&(l=c.col,d.x=c.offset.x),u>c.row&&(u=c.row,d.y=c.offset.y),this.dispatch(`CREATE_CAROUSEL`,{figureId:i,sheetId:a,definition:{items:[]},col:l,row:u,offset:d,size:{height:s,width:o}});let f=x(t.copiedCarousel.items);for(let e of f){if(e.type!==`chart`)continue;let n=t.copiedCharts[e.chartId],r=G.smallUuid(),o=AD.fromDefinition(this.getters,a,n.copyInSheetId(a)).getDefinition();this.dispatch(`CREATE_CHART`,{figureId:i,chartId:r,sheetId:a,definition:o}),e.chartId=r}this.dispatch(`UPDATE_CAROUSEL`,{sheetId:a,figureId:i,definition:{...t.copiedCarousel,items:f}}),n.isCutOperation&&this.dispatch(`DELETE_FIGURE`,{sheetId:t.copiedSheetId,figureId:t.copiedFigure.id}),this.dispatch(`SELECT_FIGURE`,{figureId:i})}isPasteAllowed(e,t,n,r){return t.length===0?H.EmptyTarget:r?.pasteOption===void 0?H.Success:H.WrongFigurePasteOption}},lW=class extends sW{copy(e){let t=e.sheetId,n=this.getters.getFigure(t,e.figureId);if(!n)throw Error(`No figure for the given id: ${e.figureId}`);if(n.tag!==`chart`)return;let r={...n},i=this.getters.getChartFromFigureId(e.figureId);if(!i)throw Error(`No chart for the given id: ${e.figureId}`);let a=i;return{figureId:e.figureId,copiedFigure:r,copiedChart:a}}getPasteTarget(e,t,n,r){return{zones:[],figureId:G.smallUuid(),sheetId:e}}paste(e,t,n){if(!e.figureId)return;let{zones:r,figureId:i}=e,a=e.sheetId,{width:o,height:s}=t.copiedFigure,c=t.copiedChart,l=AD.fromDefinition(this.getters,a,c.copyInSheetId(a)).getDefinition();l=AD.fromStrDefinition(this.getters,a,l).getDefinition();let u=this.getters.getMaxAnchorOffset(a,s,o),{left:d,top:f}=r[0],p={x:0,y:0};d>u.col&&(d=u.col,p.x=u.offset.x),f>u.row&&(f=u.row,p.y=u.offset.y),this.dispatch(`CREATE_CHART`,{figureId:i,chartId:G.smallUuid(),sheetId:a,definition:l,col:d,row:f,offset:p,size:{height:s,width:o}}),n.isCutOperation&&this.dispatch(`DELETE_FIGURE`,{sheetId:t.copiedChart.sheetId,figureId:t.copiedFigure.id}),this.dispatch(`SELECT_FIGURE`,{figureId:i})}isPasteAllowed(e,t,n,r){return t.length===0?H.EmptyTarget:r?.pasteOption===void 0?H.Success:H.WrongFigurePasteOption}},uW=class extends mz{queuedChanges={};copy(e){if(!e.zones.length)return;let{rowsIndexes:t,columnsIndexes:n}=e,r=e.sheetId,i=[];for(let e of t){let t=[];for(let i of n){let n=Array.from(this.getters.getRulesByCell(r,i,e));t.push({position:{col:i,row:e,sheetId:r},rules:n})}i.push(t)}return{cfRules:i}}paste(e,t,n){if(this.queuedChanges={},n.pasteOption===`asValue`)return;let r=e.zones,i=e.sheetId;n.isCutOperation?this.pasteFromCut(i,r,t):this.pasteFromCopy(i,r,t.cfRules,n),this.executeQueuedChanges()}pasteFromCut(e,t,n){let r=t[0];this.pasteZone(e,r.left,r.top,n.cfRules,{isCutOperation:!0})}pasteZone(e,t,n,r,i){for(let[a,o]of r.entries())for(let[r,s]of o.entries()){let o={col:t+r,row:n+a,sheetId:e};this.pasteCf(s,o,i?.isCutOperation)}}pasteCf(e,t,n){if(e?.rules&&e.rules.length>0){let r=D(e.position),i=D(t);for(let a of e.rules){let o=[];if(n&&o.push(r),e.position.sheetId===t.sheetId)this.adaptCFRules(e.position.sheetId,a,[i],o);else{this.adaptCFRules(e.position.sheetId,a,[],o);let n=this.getCFToCopyTo(t.sheetId,a);this.adaptCFRules(t.sheetId,n,[i],[])}}}}adaptCFRules(e,t,n,r){this.queuedChanges[e]||(this.queuedChanges[e]=[]);let i=this.queuedChanges[e].find(e=>e.cf.id===t.id);i?(i.toAdd.push(...n),i.toRemove.push(...r)):this.queuedChanges[e].push({toAdd:n,toRemove:r,cf:t})}executeQueuedChanges(){for(let e in this.queuedChanges)for(let{toAdd:t,toRemove:n,cf:r}of this.queuedChanges[e]){let i=this.getters.getAdaptedCfRanges(e,r,t,n);if(i){if(i.length===0){this.dispatch(`REMOVE_CONDITIONAL_FORMAT`,{id:r.id,sheetId:e});continue}this.dispatch(`ADD_CONDITIONAL_FORMAT`,{cf:{id:r.id,rule:r.rule,stopIfTrue:r.stopIfTrue},ranges:i,sheetId:e})}}}getCFToCopyTo(e,t){let n=this.getters.getConditionalFormats(e).find(e=>e.stopIfTrue===t.stopIfTrue&&T(e.rule,t.rule)),r=this.queuedChanges[e];return!n&&r&&(n=r.find(e=>e.cf.stopIfTrue===t.stopIfTrue&&T(e.cf.rule,t.rule))?.cf),n||{...t,id:G.smallUuid(),ranges:[]}}},dW=class extends mz{queuedChanges={};copy(e){let{rowsIndexes:t,columnsIndexes:n}=e,r=e.sheetId,i=[];for(let e of t){let t=[];for(let i of n){let n={sheetId:r,col:i,row:e},a=this.getters.getValidationRuleForCell(n);t.push({position:n,rule:a})}i.push(t)}return{dvRules:i}}paste(e,t,n){if(this.queuedChanges={},n.pasteOption)return;let r=e.zones,i=e.sheetId;n.isCutOperation?this.pasteFromCut(i,r,t):this.pasteFromCopy(i,r,t.dvRules),this.executeQueuedChanges()}pasteFromCut(e,t,n){let r=t[0];this.pasteZone(e,r.left,r.top,n.dvRules,{isCutOperation:!0})}pasteZone(e,t,n,r,i){for(let[a,o]of r.entries())for(let[r,s]of o.entries()){let o={col:t+r,row:n+a,sheetId:e};this.pasteDataValidation(s,o,i?.isCutOperation)}}pasteDataValidation(e,t,n){if(e){let r=D(t),i=D(e.position),a=e.rule;if(!a){let e=this.getters.getValidationRuleForCell(t);e&&this.adaptDataValidationRule(t.sheetId,e,[],[r]);return}let o=[];if(n&&o.push(i),e.position.sheetId===t.sheetId){let n=this.getDataValidationRuleToCopyTo(t.sheetId,a,!1);this.adaptDataValidationRule(e.position.sheetId,n,[r],o)}else{let n=this.getters.getValidationRuleForCell(e.position);n&&this.adaptDataValidationRule(e.position.sheetId,n,[],o);let i=this.getDataValidationRuleToCopyTo(t.sheetId,a);this.adaptDataValidationRule(t.sheetId,i,[r],[])}}}getDataValidationRuleToCopyTo(e,t,n=!0){let r=this.getters.getDataValidationRules(e).find(e=>T(t.criterion,e.criterion)&&t.isBlocking===e.isBlocking),i=this.queuedChanges[e];return!r&&i&&(r=i.find(e=>T(t.criterion,e.rule.criterion)&&t.isBlocking===e.rule.isBlocking)?.rule),r||{...t,id:n?G.smallUuid():t.id,ranges:[]}}adaptDataValidationRule(e,t,n,r){this.queuedChanges[e]||(this.queuedChanges[e]=[]);let i=this.queuedChanges[e].find(e=>e.rule.id===t.id);i?(i.toAdd.push(...n),i.toRemove.push(...r)):this.queuedChanges[e].push({toAdd:n,toRemove:r,rule:t})}executeQueuedChanges(){for(let e in this.queuedChanges)for(let{toAdd:t,toRemove:n,rule:r}of this.queuedChanges[e]){let i=rn([...rn(r.ranges.map(e=>e.zone),n),...t],[]);if(i.length===0){this.dispatch(`REMOVE_DATA_VALIDATION_RULE`,{sheetId:e,id:r.id});continue}this.dispatch(`ADD_DATA_VALIDATION_RULE`,{rule:{id:r.id,criterion:r.criterion,isBlocking:r.isBlocking},ranges:i.map(t=>this.getters.getRangeDataFromZone(e,t)),sheetId:e})}}},fW=class extends sW{copy(e){let t=e.sheetId,n=this.getters.getFigure(t,e.figureId);if(!n)throw Error(`No figure for the given id: ${e.figureId}`);let r={...n};if(n.tag!==`image`)return;let i=x(this.getters.getImage(e.figureId));return{figureId:e.figureId,copiedFigure:r,copiedImage:i,sheetId:t}}getPasteTarget(e,t,n,r){return{sheetId:e,zones:[],figureId:G.smallUuid()}}paste(e,t,n){if(!e.figureId)return;let{zones:r,figureId:i}=e,a=this.getters.getActiveSheetId(),{width:o,height:s}=t.copiedFigure,c=x(t.copiedImage),l=this.getters.getMaxAnchorOffset(a,s,o),{left:u,top:d}=r[0],f={x:0,y:0};u>l.col&&(u=l.col,f.x=l.offset.x),d>l.row&&(d=l.row,f.y=l.offset.y),this.dispatch(`CREATE_IMAGE`,{figureId:i,sheetId:a,col:u,row:d,offset:f,size:{height:s,width:o},definition:c}),n.isCutOperation&&this.dispatch(`DELETE_FIGURE`,{sheetId:t.sheetId,figureId:t.copiedFigure.id}),this.dispatch(`SELECT_FIGURE`,{figureId:i})}isPasteAllowed(e,t,n,r){return t.length===0?H.EmptyTarget:r?.pasteOption===void 0?H.Success:H.WrongFigurePasteOption}},pW=class extends mz{copy(e){let t=this.getters.getActiveSheetId(),{rowsIndexes:n,columnsIndexes:r}=e,i=[];for(let e of n){let n=[];for(let i of r){let r={col:i,row:e,sheetId:t};n.push(this.getters.getMerge(r))}i.push(n)}return{merges:i,sheetId:t}}paste(e,t,n){if(n.isCutOperation){let e=t.merges.flat().filter(w);this.dispatch(`REMOVE_MERGE`,{sheetId:t.sheetId,target:e})}this.pasteFromCopy(e.sheetId,e.zones,t.merges,n)}pasteZone(e,t,n,r){for(let[i,a]of r.entries())for(let[r,o]of a.entries()){let a={col:t+r,row:n+i,sheetId:e};this.pasteMerge(o,a)}}pasteMerge(e,t){if(!e||this.getters.isInMerge(t))return;let{sheetId:n,col:r,row:i}=t;this.dispatch(`ADD_MERGE`,{sheetId:n,force:!0,target:[{left:r,top:i,right:r+e.right-e.left,bottom:i+e.bottom-e.top}]})}},mW=class extends mz{copy(e){return{zones:e.clippedZones,sheetId:e.sheetId}}paste(e,t,n){if(n.isCutOperation){let n=e.zones[0];this.dispatch(`MOVE_RANGES`,{target:t.zones,sheetId:t.sheetId,sheetName:this.getters.getSheetName(t.sheetId),targetSheetId:e.sheetId,col:n.left,row:n.top})}}},hW=class extends mz{isPasteAllowed(e,t,n,r){if(!(`cells`in n))return H.Success;let{xSplit:i,ySplit:a}=this.getters.getPaneDivisions(e);return Jn(US(t,n.cells),i,a)?H.FrozenPaneOverlap:H.Success}},gW=class extends mz{copy(e,t,n=`copyPaste`){let r=e.sheetId,{rowsIndexes:i,columnsIndexes:a,zones:o}=e,s=new Set,c=[];for(let e of i){let l=[];c.push(l);for(let c of a){let a={col:c,row:e,sheetId:r},u=this.getters.getTable(a);if(!u){l.push({});continue}let d=this.getters.getCoreTable(a),f=d?.range.zone,p;if(!s.has(u.id)&&d&&f&&o.some(e=>Mn(f,e))){s.add(u.id);let{numberOfRows:e}=Nn(f);for(let n=f.top;n<=f.bottom;n++)!t&&!i.includes(n)&&e--;let n=d.range,r=this.getters.extendRange(d.range,`ROW`,n.zone.top+e-1-n.zone.bottom);p={range:this.getters.getRangeData(r),config:d.config,type:d.type}}if(u.isPivotTable){let t=u.range.zone.top===e&&u.range.zone.left===c,n=o.some(e=>Mn(u.range.zone,e));(t||n)&&s.add(u.id)}n!==`shiftCells`&&l.push({table:p,style:this.getTableStyleToCopy(a),isWholeTableCopied:s.has(u.id)})}}return{tableCells:c,sheetId:e.sheetId}}getTableStyleToCopy(e){let t=Ct({...this.getters.getCellTableStyle(e),hideGridLines:!1}),n=this.getters.getCellStyle(e),r=this.getters.getCellTableBorder(e),i=this.getters.getCellBorder(e);return{style:{...t,...Ct(n)},border:{...r,...Ct(i)}}}paste(e,t,n){let r=e.zones,i=e.sheetId;n.isCutOperation?this.pasteFromCut(i,r,t,n):this.pasteFromCopy(i,r,t.tableCells,n)}pasteFromCut(e,t,n,r){for(let e of n.tableCells)for(let t of e)t.table&&this.dispatch(`REMOVE_TABLE`,{sheetId:n.sheetId,target:[this.getters.getRangeFromRangeData(t.table.range).zone]});let i=t[0];this.pasteZone(e,i.left,i.top,n.tableCells,r)}pasteZone(e,t,n,r,i){for(let a=0;a<r.length;a++){let o=r[a];for(let r=0;r<o.length;r++){let s=o[r];if(!s)continue;let c={col:t+r,row:n+a,sheetId:e};this.pasteTableCell(e,s,c,i)}}if(r.length===1)for(let i=0;i<r[0].length;i++)this.dispatch(`AUTOFILL_TABLE_COLUMN`,{col:t+i,row:n,sheetId:e})}pasteTableCell(e,t,n,r){if(t.table&&!r?.pasteOption){let{range:r}=t.table,i=Nn(this.getters.getRangeFromRangeData(r).zone),a={left:n.col,top:n.row,right:n.col+i.numberOfCols-1,bottom:n.row+i.numberOfRows-1};this.dispatch(`CREATE_TABLE`,{sheetId:n.sheetId,ranges:[this.getters.getRangeDataFromZone(e,a)],config:t.table.config,tableType:t.table.type})}this.getters.getCoreTable(n)||r?.pasteOption===`asValue`||(!r?.pasteOption&&!t.isWholeTableCopied||r?.pasteOption===`onlyFormat`)&&(t.style?.style&&this.dispatch(`UPDATE_CELL`,{...n,style:t.style.style}),t.style?.border&&this.dispatch(`SET_BORDER`,{...n,border:t.style.border}))}};eI.figureHandlers.add(`chart`,lW).add(`image`,fW).add(`carousel`,cW),eI.cellHandlers.add(`dataValidation`,dW).add(`cell`,hz).add(`sheet`,hW).add(`merge`,pW).add(`border`,oW).add(`table`,gW).add(`conditionalFormat`,uW).add(`references`,mW);var _W=class extends t.Component{static maxSize={maxHeight:80};static template=`o-spreadsheet-ErrorToolTip`;static props={cellPosition:Object,onClosed:{type:Function,optional:!0}};get dataValidationErrorMessage(){return this.env.model.getters.getInvalidDataValidationMessage(this.props.cellPosition)}get evaluationError(){let e=this.env.model.getters.getEvaluatedCell(this.props.cellPosition);if(e.message)return e}get errorOriginPositionString(){if(this.env.model.getters.isDashboard())return``;let e=this.evaluationError?.errorOriginPosition;if(!e||T(e,this.props.cellPosition))return``;let t=e.sheetId;return this.env.model.getters.getRangeString(this.env.model.getters.getRangeFromZone(t,D(e)),this.env.model.getters.getActiveSheetId())}selectCell(){let e=this.evaluationError?.errorOriginPosition;if(!e)return;let t=this.env.model.getters.getActiveSheetId();e.sheetId!==t&&this.env.model.dispatch(`ACTIVATE_SHEET`,{sheetIdFrom:t,sheetIdTo:e.sheetId}),this.env.model.selection.selectCell(e.col,e.row)}get isSpillErrorBecauseOfMissingHeaders(){let e=this.evaluationError;return e?.value===j.SpilledBlocked&&!e.errorOriginPosition&&!this.env.model.getters.getSpreadZone(this.props.cellPosition,{ignoreSpillError:!0})}getMissingHeadersForSpread(){if(!this.isSpillErrorBecauseOfMissingHeaders)return;let e=this.env.model.getters.getCell(this.props.cellPosition);if(!e||!e.isFormula)return;let t=e.compiledFormula.toFormulaString(this.env.model.getters);return Kt(this.env.model.getters,this.props.cellPosition,t)}addMissingHeaders({missingCols:e,missingRows:t}){let n=this.props.cellPosition.sheetId;e>0&&this.env.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:n,sheetName:this.env.model.getters.getSheetName(n),dimension:`COL`,base:this.env.model.getters.getNumberCols(n)-1,position:`after`,quantity:e+20}),t>0&&this.env.model.dispatch(`ADD_COLUMNS_ROWS`,{sheetId:n,sheetName:this.env.model.getters.getSheetName(n),dimension:`ROW`,base:this.env.model.getters.getNumberRows(n)-1,position:`after`,quantity:t+50})}getAddMissingHeadersButtonText(e){return e.missingCols>0&&e.missingRows>0?A(`Add missing columns and rows`):e.missingCols>0?A(`Add missing columns`):A(`Add missing rows`)}};let vW={onHover:(e,t)=>{let n=t.getEvaluatedCell(e);return n.type===V.error&&n.message||t.getInvalidDataValidationMessage(e)?{isOpen:!0,props:{cellPosition:e},Component:_W,cellCorner:`top-right`}:{isOpen:!1}}},yW=new Set([`containsText`,`notContainsText`,`isEqualText`,`dateIs`,`dateIsBefore`,`dateIsOnOrBefore`,`dateIsAfter`,`dateIsOnOrAfter`,`dateIsBetween`,`dateIsNotBetween`,`isEqual`,`isNotEqual`,`isGreaterThan`,`isGreaterOrEqualTo`,`isLessThan`,`isLessOrEqualTo`,`isBetween`,`isNotBetween`,`customFormula`,`beginsWithText`,`endsWithText`,`isNotEmpty`,`isEmpty`]),bW=[`containsText`,`notContainsText`,`isEqualText`,`isEmpty`,`isNotEmpty`,`beginsWithText`,`endsWithText`],xW=[`isEqual`,`isNotEqual`,`isGreaterThan`,`isGreaterOrEqualTo`,`isLessThan`,`isLessOrEqualTo`,`isBetween`,`isNotBetween`,`isEmpty`,`isNotEmpty`],SW=[`dateIs`,`dateIsBefore`,`dateIsOnOrBefore`,`dateIsAfter`,`dateIsOnOrAfter`,`dateIsBetween`,`dateIsNotBetween`,`isEmpty`,`isNotEmpty`];var CW=class extends t.Component{static template=`o-spreadsheet-FilterMenuCriterion`;static props={filterPosition:Object,onCriterionChanged:Function,criterionOperators:Array};static components={Select:Qh};state;setup(){(0,t.onWillUpdateProps)(e=>{T(e.filterPosition,this.props.filterPosition)||(this.state.criterion=this.getFilterCriterionValue(e.filterPosition))}),this.state=(0,t.useState)({criterion:this.getFilterCriterionValue(this.props.filterPosition)})}getFilterCriterionValue(e){let t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getFilterCriterionValue({sheetId:t,...e});return n?.filterType===`criterion`?x(n):{filterType:`criterion`,type:`none`,values:[]}}get criterionOptions(){return[{label:A(`None`),value:`none`},...Ck(new Set(this.props.criterionOperators))]}get criterionComponent(){return this.state.criterion.type===`none`?void 0:Sk.get(this.state.criterion.type).component}onCriterionChanged(e){this.state.criterion.values=e.values,this.state.criterion.dateValue=e.dateValue,this.props.onCriterionChanged(this.state.criterion)}onCriterionTypeChange(e){this.state.criterion.type=e,this.props.onCriterionChanged(this.state.criterion)}},wW=class extends t.Component{static template=`o-spreadsheet-FilterMenuValueItem`;static components={Checkbox:Qw};static props={value:String,isChecked:Boolean,isSelected:Boolean,onMouseMove:Function,onClick:Function,scrolledTo:{type:String,optional:!0}};itemRef=(0,t.useRef)(`menuValueItem`);setup(){(0,t.onWillPatch)(()=>{this.props.scrolledTo&&this.scrollListToSelectedValue()})}scrollListToSelectedValue(){this.itemRef.el&&this.itemRef.el.scrollIntoView?.({block:`nearest`})}},TW=class extends t.Component{static template=`o-spreadsheet-FilterMenuValueList`;static props={filterPosition:Object,onUpdateHiddenValues:Function};static components={FilterMenuValueItem:wW};state=(0,t.useState)({values:[],displayedValues:[],textFilter:``,selectedValue:void 0,numberOfDisplayedValues:50,hasMoreValues:!1});searchBar=(0,t.useRef)(`filterMenuSearchBar`);setup(){(0,t.onWillUpdateProps)(e=>{T(e.filterPosition,this.props.filterPosition)||(this.state.values=this.getFilterHiddenValues(e.filterPosition),this.computeDisplayedValues())}),this.state.values=this.getFilterHiddenValues(this.props.filterPosition),this.computeDisplayedValues()}getFilterHiddenValues(e){let t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getFilter({sheetId:t,...e});if(!n)return[];let r=this.env.model.getters.getFilterValue({sheetId:t,...e}),i=(n.filteredRange?In(n.filteredRange.zone):[]).map(e=>({position:e,cellValue:this.env.model.getters.getEvaluatedCell({sheetId:t,...e}).formattedValue}));r?.filterType!==`criterion`&&(i=i.filter(e=>!this.env.model.getters.isRowHidden(t,e.position.row)));let a=i.map(e=>e.cellValue),o=r?.filterType===`values`?r.hiddenValues:[],s=new Set(o.map(Fu)),c=new Set,l=[],u=e=>{let t=Fu(e);c.has(t)||(l.push({string:e||``,checked:r?.filterType===`criterion`?!1:!s.has(t),normalizedValue:t}),c.add(t))};return a.forEach(u),o.forEach(u),l.sort((e,t)=>e.normalizedValue.localeCompare(t.normalizedValue,void 0,{numeric:!0,sensitivity:`base`}))}checkValue(e){this.state.selectedValue=e.string,e.checked=!e.checked,this.searchBar.el?.focus(),this.updateHiddenValues()}onMouseMove(e){this.state.selectedValue=e.string}getSearchedValues(){return this.state.textFilter?_O(this.state.textFilter,this.state.values,e=>e.string):this.state.values}setAllChecked(e){let t=new Set(this.getSearchedValues());for(let n of this.state.values)t.has(n)&&(n.checked=e);this.updateHiddenValues()}selectAll(){this.setAllChecked(!0)}clearAll(){this.setAllChecked(!1)}updateHiddenValues(){let e=this.state.values.filter(e=>!e.checked).map(e=>e.string);this.props.onUpdateHiddenValues(e)}updateSearch(e){let t=e.target;this.state.textFilter=t.value,this.state.selectedValue=void 0,this.computeDisplayedValues()}computeDisplayedValues(){let e=this.getSearchedValues();this.state.displayedValues=e.slice(0,this.state.numberOfDisplayedValues),this.state.hasMoreValues=e.length>this.state.numberOfDisplayedValues}loadMoreValues(){this.state.numberOfDisplayedValues+=100,this.computeDisplayedValues()}onKeyDown(e){let t=this.state.displayedValues;if(t.length===0)return;let n;if(this.state.selectedValue!==void 0){let e=t.findIndex(e=>e.string===this.state.selectedValue);n=e===-1?void 0:e}switch(e.key){case`ArrowDown`:n=n===void 0?0:Math.min(n+1,t.length-1),e.preventDefault(),e.stopPropagation();break;case`ArrowUp`:n=n===void 0?t.length-1:Math.max(n-1,0),e.preventDefault(),e.stopPropagation();break;case`Enter`:n!==void 0&&this.checkValue(t[n]),e.stopPropagation(),e.preventDefault();break}this.state.selectedValue=n===void 0?void 0:t[n].string,(e.key===`ArrowUp`||e.key===`ArrowDown`)&&this.scrollListToSelectedValue(e.key)}clearScrolledToValue(){this.state.values.forEach(e=>e.scrolledTo=void 0)}scrollListToSelectedValue(e){this.clearScrolledToValue();let t=this.state.values.find(e=>e.string===this.state.selectedValue);t&&(t.scrolledTo=e===`ArrowUp`?`top`:`bottom`)}},EW=class extends t.Component{static template=`o-spreadsheet-FilterMenu`;static props={filterPosition:Object,onClosed:{type:Function,optional:!0}};static components={FilterMenuValueList:TW,SidePanelCollapsible:vT,FilterMenuCriterion:CW};criterionCategory=`text`;updatedCriterionValue;setup(){(0,t.onWillUpdateProps)(e=>{T(e.filterPosition,this.props.filterPosition)||(this.updatedCriterionValue=void 0,this.criterionCategory=this.getCriterionCategory(e.filterPosition))}),this.criterionCategory=this.getCriterionCategory(this.props.filterPosition)}get isSortable(){if(!this.table)return!1;let e=this.env.model.getters.getCoreTableMatchingTopLeft(this.table.range.sheetId,this.table.range.zone);return!this.env.model.getters.isReadonly()&&e?.type!==`dynamic`}get table(){let e=this.env.model.getters.getActiveSheetId(),t=this.props.filterPosition;return this.env.model.getters.getTable({sheetId:e,...t})}get filterValueType(){let e=this.env.model.getters.getActiveSheetId(),t=this.props.filterPosition;return this.env.model.getters.getFilterValue({sheetId:e,...t})?.filterType}getCriterionCategory(e){let t=this.env.model.getters.getActiveSheetId(),n=this.env.model.getters.getFilter({sheetId:t,...e});if(!n||!n.filteredRange)return`text`;let r={text:0,number:0,date:0},i=n.filteredRange.zone;for(let n=i.top;n<=i.bottom&&!(n>100);n++){let i=this.env.model.getters.getEvaluatedCell({sheetId:t,row:n,col:e.col});i.type===V.text||i.type===V.boolean?r.text++:i.type===V.number&&(i.format&&To(i.format)?r.date++:r.number++)}let a=Math.max(r.text,r.number,r.date);return Object.keys(r).find(e=>r[e]===a)||`text`}onUpdateHiddenValues(e){this.updatedCriterionValue={filterType:`values`,hiddenValues:e}}onCriterionChanged(e){this.updatedCriterionValue=e}confirm(){if(!this.updatedCriterionValue){this.props.onClosed?.();return}let e=this.props.filterPosition;this.env.model.dispatch(`UPDATE_FILTER`,{...e,sheetId:this.env.model.getters.getActiveSheetId(),value:this.updatedCriterionValue}),this.props.onClosed?.()}get criterionOperators(){return this.criterionCategory===`date`?SW:this.criterionCategory===`number`?xW:bW}cancel(){this.props.onClosed?.()}sortFilterZone(e){let t=this.props.filterPosition,n=this.table?.range.zone;if(!t||!n||n.top===n.bottom)return;let r=this.env.model.getters.getActiveSheetId(),i={...n,top:n.top+1},a={col:t.col,row:i.top};UP(this.env,r,a,i,e,{emptyCellAsZero:!0,sortHeaders:!0}),this.props.onClosed?.()}};let DW={onOpen:(e,t)=>({isOpen:!0,props:{filterPosition:e},Component:EW,cellCorner:`bottom-left`})};var OW=class extends t.Component{static template=`o-spreadsheet-LinkDisplay`;static props={cellPosition:Object,onClosed:{type:Function,optional:!0}};cellPopovers;setup(){this.cellPopovers=O(RS)}get cell(){let{col:e,row:t}=this.props.cellPosition,n=this.env.model.getters.getActiveSheetId();return this.env.model.getters.getEvaluatedCell({sheetId:n,col:e,row:t})}get link(){if(this.cell.link)return this.cell.link;let{col:e,row:t}=this.props.cellPosition;throw Error(`LinkDisplay Component can only be used with link cells. ${E(e,t)} is not a link.`)}getUrlRepresentation(e){return Zl(e,this.env.model.getters)}openLink(e){Ql(this.link,this.env,Sm(e))}edit(){let{col:e,row:t}=this.props.cellPosition;this.env.model.selection.selectCell(e,t),this.cellPopovers.open({col:e,row:t},`LinkEditor`)}unlink(){let e=this.env.model.getters.getActiveSheetId(),{col:t,row:n}=this.props.cellPosition,r=this.env.model.getters.getCellComputedStyle({sheetId:e,col:t,row:n}),i=r?.textColor===`#017E84`?void 0:r?.textColor;this.env.model.dispatch(`UPDATE_CELL`,{col:t,row:n,sheetId:e,content:this.link.label,style:{...r,textColor:i,underline:void 0}})}};let kW={onHover:(e,t)=>{let n=t.getEvaluatedCell(e);return!t.isDashboard()&&n.link&&t.isVisibleInViewport(e)?{isOpen:!0,Component:OW,props:{cellPosition:e},cellCorner:`bottom-left`}:{isOpen:!1}}};var AW=class extends t.Component{static template=`o-spreadsheet-LinkEditor`;static props={cellPosition:Object,onClosed:{type:Function,optional:!0}};static components={MenuPopover:Zh};static size={maxHeight:500};urlInput=(0,t.useRef)(`urlInput`);suggestionListRef=(0,t.useRef)(`suggestionList`);urlInputContainer=(0,t.useRef)(`urlInputContainer`);state=(0,t.useState)(this.defaultState);setup(){this.computeLinks(),(0,t.onMounted)(()=>this.urlInput.el?.focus())}computeLinks(){this.state.selectedIndex=null,this.state.linksByCategory=this.linkProposalByCategory,this.state.linksList=Object.values(this.state.linksByCategory).flat()}get linkProposalByCategory(){let e={},t=-1,n=this.state.url;for(let r of ql.getKeys()){let i=ql.get(r),a=i.getLinkProposals?.(this.env)||[],o=n&&this.state.isUrlEditable?_O(n,a,e=>i.urlRepresentation(e.url,this.env.model.getters)):a;o.length!==0&&(e[i.title]=o.map(e=>{t++;let n=i.urlRepresentation(e.url,this.env.model.getters),r=t;return{text:n,icon:e.icon,index:r,onSelect:()=>{this.state.url=e.url,this.state.label=e.label,this.state.isUrlEditable=e.isUrlEditable,this.state.selectedIndex=r,this.urlInputContainer.el?.focus()}}}))}return e}get defaultState(){let{col:e,row:t}=this.props.cellPosition,n=this.env.model.getters.getActiveSheetId(),r=this.env.model.getters.getEvaluatedCell({sheetId:n,col:e,row:t});return r.link?{url:r.link.url,label:r.formattedValue,isUrlEditable:r.link.isUrlEditable,selectedIndex:null,linksByCategory:{},linksList:[]}:{label:r.formattedValue,url:``,isUrlEditable:!0,selectedIndex:null,linksByCategory:{},linksList:[]}}getUrlRepresentation(e){return Zl(e,this.env.model.getters)}removeLink(){this.state.url=``,this.state.isUrlEditable=!0,this.computeLinks()}save(){let{col:e,row:t}=this.props.cellPosition,n=this.env.model.getters.getLocale(),r=this.state.label?bg(this.state.label,n):this.state.url;this.env.model.dispatch(`UPDATE_CELL`,{col:e,row:t,sheetId:this.env.model.getters.getActiveSheetId(),content:ot(r,this.state.url)}),this.props.onClosed?.()}cancel(){this.props.onClosed?.()}onKeyDown(e){switch(e.key){case`Enter`:this.state.url&&this.save(),e.stopPropagation(),e.preventDefault();break;case`Escape`:this.cancel(),e.stopPropagation();break}}onInputKeyDown(e){switch(e.key){case`Enter`:if(this.state.selectedIndex!==null){let t=this.state.linksList[this.state.selectedIndex];if(t){let n=this.state.url;t.onSelect(),this.state.url!==n&&(e.stopPropagation(),e.preventDefault())}}break;case`ArrowDown`:this.state.selectedIndex=this.state.selectedIndex===null||this.state.selectedIndex===this.state.linksList.length-1?0:(this.state.selectedIndex+1)%this.state.linksList.length,this.showSelectedProposal(),e.stopPropagation(),e.preventDefault();break;case`ArrowUp`:this.state.selectedIndex!==null&&(this.state.selectedIndex=this.state.selectedIndex===0?this.state.linksList.length-1:(this.state.selectedIndex-1)%this.state.linksList.length,this.showSelectedProposal(),e.stopPropagation(),e.preventDefault());break}}showSelectedProposal(){this.suggestionListRef.el?.querySelector(`.suggestion-item[data-index="${this.state.selectedIndex}"]`)?.scrollIntoView({block:`nearest`})}};LS.add(`ErrorToolTip`,vW).add(`LinkCell`,kW).add(`LinkEditor`,{onOpen:(e,t)=>({isOpen:!0,props:{cellPosition:e},Component:AW,cellCorner:`bottom-left`})}).add(`FilterMenu`,DW),vO.add(`dataValidation`,{displayAllOnInitialContent:!0,canBeToggled:!1,getProposals(e,t){if(Ut(t)||!this.composer.currentEditedCell)return[];let n=this.composer.currentEditedCell,r=this.getters.getValidationRuleForCell(n);if(!r||r.criterion.type!==`isValueInList`&&r.criterion.type!==`isValueInRange`)return[];let i=this.composer.currentEditedCell.sheetId,a=r.criterion.type===`isValueInRange`?this.getters.getDataValidationRangeValues(i,r.criterion):r.criterion.values.map(e=>({label:e,value:e}));if(r.criterion.displayStyle!==`chip`)return a.map(e=>({text:e.value,fuzzySearchKey:e.label,htmlContent:[{value:e.label}]}));let o=r.criterion.colors;return a.map(e=>{let t=o?.[e.value];return{text:e.value,htmlContent:[{value:e.label,color:Cd(t||`#E7E9ED`),backgroundColor:t||`#E7E9ED`,classes:[`badge rounded-pill fs-6 fw-normal w-100 mt-1 text-start`]}],fuzzySearchKey:e.label}})},selectProposal(e,t){this.composer.setCurrentContent(t.text),this.composer.stopEdition()}}),vO.add(`functions_and_named_ranges`,{sequence:100,autoSelectFirstProposal:!0,maxDisplayedProposals:10,getProposals(e){if(e.type!==`SYMBOL`)return[];let t=e.value;if(!Ut(this.composer.currentContent))return[];let n=Object.entries(_s.content).filter(([e,{hidden:t}])=>!t).map(([e,{description:n}])=>({type:`function`,text:e,icon:`o-spreadsheet-Icon.FX_SVG`,description:n,htmlContent:uj(t,e,ae,`o-semi-bold`)}));return n.push(...this.getters.getNamedRanges().map(e=>({type:`named_range`,text:e.name,description:this.getters.getRangeString(e.range),icon:`o-spreadsheet-Icon.NAMED_RANGE`,htmlContent:uj(t,e.name,ae,`o-semi-bold`)}))),n.sort((e,t)=>e.text.length-t.text.length||e.text.localeCompare(t.text)),n},selectProposal(e,t){let n=e.end,r=e.end;[`SYMBOL`,`FUNCTION`].includes(e.type)&&(n=e.start);let i=this.composer.currentTokens,a=t.text;if(t.type===`function`){a+=`(`;let t=i.map(e=>e.start).indexOf(e.start);t+1<i.length&&i[t+1]?.type===`LEFT_PAREN`&&r++}this.composer.changeComposerCursorSelection(n,r),this.composer.replaceComposerCursorSelection(a)}});function jW(e,t){for(let n=0;n<t.length;n++){let r=t[n].proposalValues;r===void 0||r.length===0||vO.add(`${e}_function_${t[n].name}_argument_proposals`,{sequence:50,autoSelectFirstProposal:!0,selectProposal:MW,getProposals:t=>{let i=t.functionContext;if(!i||i.parent.toUpperCase()!==e.toUpperCase()||i.argPosition!==n)return;let a=[],o=``;for(let{value:e,label:t}of r){switch(typeof e){case`string`:o=`"${e}"`;break;case`number`:o=e.toString();break;case`boolean`:o=e?`TRUE`:`FALSE`;break;default:}a.push({text:o,description:t,htmlContent:[{value:o,color:typeof e==`string`?Ve.STRING:Ve.NUMBER}],fuzzySearchKey:o,alwaysExpanded:!0})}return a}})}}function MW(e,t){let n=e.end,r=e.end;[`LEFT_PAREN`,`ARG_SEPARATOR`].includes(e.type)||(n=e.start),this.composer.stopComposerRangeSelection(),this.composer.changeComposerCursorSelection(n,r),this.composer.replaceComposerCursorSelection(t.text)}_s.getAll().forEach(e=>jW(e.name,e.args)),vO.add(`pivot_ids`,{sequence:50,autoSelectFirstProposal:!0,getProposals(e){let t=e.functionContext;if(!t||![`PIVOT.VALUE`,`PIVOT.HEADER`,`PIVOT`].includes(t.parent.toUpperCase())||t.argPosition!==0)return;let n=this.getters.getPivotIds();if(!n.includes(e.value))return n.map(e=>{let t=this.getters.getPivotCoreDefinition(e),n=`${this.getters.getPivotFormulaId(e)}`;return{text:n,description:t.name,htmlContent:[{value:n,color:Ve.NUMBER}],fuzzySearchKey:n+t.name,alwaysExpanded:!0}}).filter(w)},selectProposal:MW}),vO.add(`pivot_measures`,{sequence:50,autoSelectFirstProposal:!0,getProposals(e){let t=e.functionContext;if(t?.parent.toUpperCase()!==`PIVOT.VALUE`||t.argPosition!==1)return[];let n=dM(e),r=this.getters.getPivotId(n);if(!r||!this.getters.isExistingPivot(r))return[];let i=this.getters.getPivot(r);return i.init(),i.isValid()?i.definition.measures.map(e=>{if(e.fieldName===`__count`){let e=`"__count"`;return{text:e,description:A(`Count`),htmlContent:[{value:e,color:Ve.STRING}],fuzzySearchKey:A(`Count`)+e}}return cM(e)}).filter(w):[]},selectProposal:MW}),vO.add(`pivot_group_fields`,{sequence:50,autoSelectFirstProposal:!0,getProposals(e){let t=e.functionContext;if(!t||!NW(e)&&!PW(e))return;let n=dM(e),r=this.getters.getPivotId(n);if(!r||!this.getters.isExistingPivot(r))return;let i=this.getters.getPivot(r);i.init();let a=i.getFields(),{columns:o,rows:s}=i.definition,c=t.args;t?.parent.toUpperCase()===`PIVOT.VALUE`?(c=c.filter((e,t)=>t%2==0),c=c.slice(1,t.argPosition)):c=c.filter((e,t)=>t%2==1);let l=c.map(e=>e?.value).filter(w),u=o.map(e=>e.nameWithGranularity),d=s.map(e=>e.nameWithGranularity),f=[],p=[`ARG_SEPARATOR`,`SPACE`].includes(e.type)?l.at(-1):l.at(-2),m=MI.get(i.type);if(m&&p?.startsWith(`#`)&&(p=p.slice(1)),p===void 0&&(f.push(u[0]),f.push(d[0])),d.includes(p)){let e=d[d.indexOf(p)+1];f.push(e),f.push(u[0])}if(u.includes(p)){let e=u[u.indexOf(p)+1];f.push(e)}let h=f.filter(w);return h.map(e=>{let[t,n]=e.split(`:`),r=a[t];return r?sM(r,n):void 0}).concat(h.map(e=>{if(!m)return;let t=a[e.split(`:`)[0]];if(!t)return;let n=`"#${e}"`;return{text:n,description:A(`%s (positional)`,t.string)+(t.help?` (${t.help})`:``),htmlContent:[{value:n,color:Ve.STRING}],fuzzySearchKey:t.string+n}})).filter(w)},selectProposal:MW});function NW(e){let t=e.functionContext;return t?.parent.toUpperCase()===`PIVOT.VALUE`&&t.argPosition>=2&&t.argPosition%2==0}function PW(e){let t=e.functionContext;return t?.parent.toUpperCase()===`PIVOT.HEADER`&&t.argPosition>=1&&t.argPosition%2==1}vO.add(`pivot_group_values`,{sequence:50,autoSelectFirstProposal:!0,getProposals(e){let t=e.functionContext;if(!t||!e||!FW(e)&&!IW(e))return;let n=dM(e),r=this.getters.getPivotId(n);if(!r||!this.getters.isExistingPivot(r))return;let i=this.getters.getPivot(r);if(!i.isValid())return;let a=t.argPosition,o=e.functionContext?.args[a-1]?.value;if(!o)return;let s;try{s=i.definition.getDimension(o)}catch{return}return s.granularity===`month_number`?Object.values(co).map((e,t)=>({text:`${t+1}`,fuzzySearchKey:e.toString(),description:e.toString(),htmlContent:[{value:`${t+1}`,color:Ve.NUMBER}]})):s.granularity===`quarter_number`?[1,2,3,4].map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:A(`Quarter %s`,e),htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):s.granularity===`day_of_month`?C(1,32).map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:``,htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):s.granularity===`iso_week_number`?C(0,54).map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:``,htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):s.granularity===`day_of_week`?C(1,8).map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:``,htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):s.granularity===`hour_number`?C(0,24).map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:``,htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):s.granularity===`minute_number`?C(0,60).map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:``,htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):s.granularity===`second_number`?C(0,60).map(e=>({text:`${e}`,fuzzySearchKey:`${e}`,description:``,htmlContent:[{value:`${e}`,color:Ve.NUMBER}]})):i.getPossibleFieldValues(s).map(({value:e,label:t})=>{let n=typeof e==`string`,r=n?`"${e}"`:e.toString(),i=n?Ve.STRING:Ve.NUMBER,a=t===e?``:t;return{text:r,description:a,htmlContent:[{value:r,color:i}],fuzzySearchKey:r+a}})},selectProposal:MW});function FW(e){let t=e.functionContext;return t?.parent.toUpperCase()===`PIVOT.VALUE`&&t.argPosition>=2&&t.argPosition%2==1}function IW(e){let t=e.functionContext;return t?.parent.toUpperCase()===`PIVOT.HEADER`&&t.argPosition>=1&&t.argPosition%2==0}vO.add(`sheet_names`,{sequence:150,autoSelectFirstProposal:!0,getProposals(e){return e.type===`SYMBOL`||e.type===`UNKNOWN`&&e.value.startsWith(`'`)?this.getters.getSheetIds().map(e=>{let t=Ze(this.getters.getSheetName(e));return{text:t,fuzzySearchKey:t.startsWith(`'`)?t:`'`+t}}):[]},selectProposal(e,t){let n=e.start,r=e.end;this.composer.changeComposerCursorSelection(n,r),this.composer.replaceComposerCursorSelection(t.text+`!`)}});function LW(e){return e.yRanges.length&&!ws.test(e.yRanges[0])?H.InvalidYRange:e.xRange&&!ws.test(e.xRange)?H.InvalidXRange:e.labelRange&&!ws.test(e.labelRange)?H.InvalidLabelRange:e.sizeRange&&!ws.test(e.sizeRange)?H.InvalidBubbleSizeRange:H.Success}let RW={sequence:40,allowedDefinitionKeys:[...Hp.commonKeys,`yRanges`,`xRange`,`labelRange`,`sizeRange`,`dataSetsHaveTitle`,`verticalAxisPosition`,`labelsAsText`,`bubbleColor`,`legendPosition`,`axesDesign`,`showValues`],fromStrDefinition(e,t,n){let r=e.yRanges.map(e=>Rc(n,t,e)).filter(w),i=Rc(n,t,e.xRange),a=Rc(n,t,e.labelRange),o=Rc(n,t,e.sizeRange);return{...e,yRanges:r,xRange:i,labelRange:a,sizeRange:o}},toStrDefinition(e,t,n){return{...e,yRanges:e.yRanges.map(e=>n.getRangeString(e,t)),xRange:e.xRange?n.getRangeString(e.xRange,t):void 0,labelRange:e.labelRange?n.getRangeString(e.labelRange,t):void 0,sizeRange:e.sizeRange?n.getRangeString(e.sizeRange,t):void 0}},validateDefinition(e,t){return e.checkValidations(t,LW)},transformDefinition(e,t,{adaptRangeString:n}){let r=e=>{if(!e)return;let{changeType:r,range:i}=n(t,e);return r===`REMOVE`?void 0:i};return{...e,yRanges:e.yRanges.map(r).filter(w),xRange:r(e.xRange),sizeRange:r(e.sizeRange),labelRange:r(e.labelRange)}},getDefinitionFromContextCreation(e,t){let n=e.dataSource?.type===`range`;return{background:e.background,yRanges:n?e.dataSource.dataSets?.map(e=>e.dataRange)??[]:[],verticalAxisPosition:e.dataSetStyles?.[0]?.verticalAxisPosition,dataSetsHaveTitle:n?e.dataSource.dataSetsHaveTitle??!1:!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`bubble`,labelRange:e.bubbleLabelRange||void 0,labelsAsText:e.labelsAsText??!1,xRange:e.auxiliaryRange||void 0,sizeRange:e.bubbleSizeRange||void 0,axesDesign:e.axesDesign,showValues:e.showValues,humanize:e.humanize,bubbleColor:e.bubbleColorMode||{color:`multiple`}}},getContextCreation(e,t){return{...e,dataSource:{type:`range`,dataSets:e.yRanges.map((e,t)=>({dataSetId:`${t}`,dataRange:e}))},bubbleLabelRange:e.labelRange,auxiliaryRange:e.xRange,bubbleSizeRange:e.sizeRange,bubbleColorMode:e.bubbleColor}},getDefinitionForExcel:()=>void 0,updateRanges(e,t){let n=e.yRanges.map(e=>sf(e,t)).filter(w),r=sf(e.xRange,t),i=sf(e.labelRange,t),a=sf(e.sizeRange,t);return{...e,yRanges:n,xRange:r,labelRange:i,sizeRange:a}},duplicateInDuplicatedSheet(e,t,n){let r=e=>of(t,n,e);return{...e,yRanges:e.yRanges.map(r).filter(w),xRange:r(e.xRange),labelRange:r(e.labelRange),sizeRange:r(e.sizeRange)}},copyInSheetId:e=>e,getRuntime(e,t){let n=tE(t,e);return{chartJsConfig:{type:`line`,data:{datasets:fp(t,n),labels:n.labels},options:{...Qm,layout:EE(t,n),scales:Jf(t,n),plugins:{title:YE(t,e),legend:NE(t,n),tooltip:nD(t,n),chartShowValuesPlugin:UE(t,n),background:{color:t.background}}}}}}};function zW(e){return!zD.includes(e.horizontalGroupBy)||!zD.includes(e.verticalGroupBy)?H.InvalidChartDefinition:H.Success}let BW={sequence:110,dataSeriesLimit:1,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`dataSetStyles`,`showValues`,`colorScale`,`missingValueColor`,`axesDesign`,`horizontalGroupBy`,`verticalGroupBy`,`legendPosition`],validateDefinition(e,t){return e.checkValidations(t,zW)},fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){let n=`left`;return e.legendPosition===`right`&&(n=`right`),{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},title:e.title||{text:``},type:`calendar`,showValues:e.showValues,axesDesign:e.axesDesign,legendPosition:n,horizontalGroupBy:`day_of_week`,verticalGroupBy:`month_number`}},getDefinitionForExcel:()=>void 0,getRuntime(e,t,{extractData:n}){let r=qT(t,n(),e),{labels:i,datasets:a}=cp(t,r);return{chartJsConfig:{type:`calendar`,data:{labels:i,datasets:a},options:{...Qm,indexAxis:`x`,layout:DE(t,r),scales:Hf(t,a),plugins:{title:YE(t,e),legend:{display:!1},tooltip:eD(t,r),chartShowValuesPlugin:WE(t,r),chartColorScalePlugin:Uf(t,r),background:{color:r.background}}}}}}},VW={sequence:15,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`aggregated`,`axesDesign`,`showValues`,`hideDataMarkers`,`zoomable`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){return{...t,backgroundColor:LT(t.background||`#FFFFFF`),fontColor:LT(ff(t.background)),dataSets:n,labelRange:r,verticalAxis:vf(t)}},getDefinitionFromContextCreation(e,t){let n=e.dataSetStyles??{};if(e.dataSource?.type===`range`){let t=e.dataSource?.dataSets?.[0]?.dataSetId;for(let r of e.dataSource?.dataSets||[])n[r.dataSetId]={...e.dataSetStyles?.[r.dataSetId]||{},type:r.dataSetId===t?`bar`:`line`}}return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:n,aggregated:e.aggregated,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`combo`,axesDesign:e.axesDesign,showValues:e.showValues,hideDataMarkers:e.hideDataMarkers,zoomable:e.zoomable,humanize:e.humanize}},getRuntime(e,t,{extractData:n},r,i){let a=WT(t,n(),e);return{chartJsConfig:{type:`bar`,data:{labels:a.labels,datasets:hp(t,a)},options:{...Qm,layout:EE(t,a),scales:Vf(t,a),plugins:{title:YE(t,e),legend:PE(t,a),tooltip:$E(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}},customizableSeries:a.dataSetsValues.map(({dataSetId:e,label:t})=>({dataSetId:e,label:t}))}}},HW={sequence:100,dataSeriesLimit:1,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`dataSetStyles`,`axesDesign`,`legendPosition`,`horizontal`,`aggregated`,`showValues`,`funnelColors`,`cumulative`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},aggregated:e.aggregated??!1,legendPosition:`none`,title:e.title||{text:``},type:`funnel`,showValues:e.showValues,axesDesign:e.axesDesign,funnelColors:e.funnelColors,horizontal:!0,cumulative:e.cumulative??!0,humanize:e.humanize}},getDefinitionForExcel:()=>void 0,getRuntime(e,t,{extractData:n},r,i){let a=$T(t,n(),e);return{chartJsConfig:{type:`funnel`,data:{labels:a.labels,datasets:vp(t,a)},options:{...Qm,indexAxis:`y`,layout:EE(t,a),scales:$f(t,a),plugins:{title:YE(t,e),legend:{display:!1},tooltip:cD(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}}}}},UW={sequence:90,dataSeriesLimit:1,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`colorScale`,`missingValueColor`,`region`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`geo`,humanize:e.humanize}},getDefinitionForExcel:()=>void 0,getRuntime(e,t,{extractData:n},r,i){let a=QT(t,n(),e);return{chartJsConfig:{type:`choropleth`,data:{datasets:_p(t,a)},options:{...Qm,layout:EE(t,a),scales:Qf(t,a),plugins:{title:YE(t,e),tooltip:sD(t,a),legend:{display:!1},background:{color:a.background}},...i}}}}},WW={sequence:80,dataSeriesLimit:2,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`showValues`,`aggregated`,`axesDesign`,`stacked`,`horizontal`],fromStrDefinition:e=>({...e,horizontal:!0,stacked:!0}),toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},aggregated:e.aggregated??!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`pyramid`,axesDesign:e.axesDesign,horizontal:!0,stacked:!0,showValues:e.showValues,humanize:e.humanize}},getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){if(t.dataSource.type!==`range`)return;let i=JT(t,PD(e,t.dataSource),e),{dataSetsValues:a}=i,o=Math.max(...a.map(e=>Math.max(...e.data.map(e=>U(e)?Math.abs(e.value):-1/0))));return{...t,horizontal:!0,backgroundColor:LT(i.background||`#FFFFFF`),fontColor:LT(ff(i.background)),dataSets:n,labelRange:r,verticalAxis:vf(t),maxValue:o}},getRuntime(e,t,{extractData:n},r,i){let a=JT(t,n(),e);return{chartJsConfig:{type:`bar`,data:{labels:a.labels,datasets:sp(t,a)},options:{...Qm,indexAxis:`y`,layout:EE(t,a),scales:Xf(t,a),plugins:{title:YE(t,e),legend:kE(t,a),tooltip:aD(t,a),chartShowValuesPlugin:KE(t,a),background:{color:a.background}},...i}},customizableSeries:a.dataSetsValues.map(({dataSetId:e,label:t})=>({dataSetId:e,label:t}))}}},GW={sequence:80,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`showValues`,`aggregated`,`stacked`,`fillArea`,`hideDataMarkers`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},stacked:e.stacked??!1,aggregated:e.aggregated??!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`radar`,fillArea:e.fillArea??!1,showValues:e.showValues??!1,hideDataMarkers:e.hideDataMarkers,humanize:e.humanize}},getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){return{...t,backgroundColor:LT(t.background||`#FFFFFF`),fontColor:LT(ff(t.background)),dataSets:n,labelRange:r}},getRuntime(e,t,{extractData:n},r,i){let a=ZT(t,n(),e);return{chartJsConfig:{type:`radar`,data:{labels:a.labels,datasets:gp(t,a)},options:{...Qm,layout:EE(t,a),scales:Zf(t,a),plugins:{title:YE(t,e),legend:IE(t,a),tooltip:oD(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}},customizableSeries:a.dataSetsValues.map(({dataSetId:e,label:t})=>({dataSetId:e,label:t}))}}},KW={sequence:60,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`showValues`,`labelsAsText`,`aggregated`,`axesDesign`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getContextCreation:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSource:t.fromContextCreation(e),dataSetStyles:e.dataSetStyles??{},labelsAsText:e.labelsAsText??!1,legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`scatter`,aggregated:e.aggregated??!1,axesDesign:e.axesDesign,showValues:e.showValues,humanize:e.humanize}},getDefinitionForExcel(e,t,{dataSets:n,labelRange:r}){return{...t,backgroundColor:LT(t.background||`#FFFFFF`),fontColor:LT(ff(t.background)),dataSets:n,labelRange:r,verticalAxis:vf(t)}},getRuntime(e,t,{extractData:n},r,i){let a=YT(t,n(),e);return{chartJsConfig:{type:`line`,data:{labels:a.labels,datasets:dp(t,a)},options:{...Qm,layout:EE(t,a),scales:qf(t,a),plugins:{title:YE(t,e),legend:ME(t,a),tooltip:tD(t,a),chartShowValuesPlugin:UE(t,a),background:{color:a.background}},...i}},customizableSeries:a.dataSetsValues.map(({dataSetId:e,label:t})=>({dataSetId:e,label:t}))}}},qW={sequence:30,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`showValues`,`showLabels`,`valuesDesign`,`groupColors`,`pieHolePercentage`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSetStyles:e.dataSetStyles??{},dataSource:t.fromHierarchicalContextCreation(e),legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`sunburst`,showValues:e.showValues,showLabels:e.showLabels,valuesDesign:e.valuesDesign,groupColors:e.groupColors,humanize:e.humanize,pieHolePercentage:e.pieHolePercentage}},getContextCreation(e,t,n){return{...e,...t.getHierarchicalContextCreation(n)}},getDefinitionForExcel:()=>void 0,getRuntime(e,t,{extractHierarchicalData:n},r,i){let a=eE(t,n(),e);return{chartJsConfig:{type:`doughnut`,data:{datasets:bp(t,a)},options:{cutout:t.pieHolePercentage===void 0?`25%`:`${t.pieHolePercentage}%`,...Qm,layout:EE(t,a),plugins:{title:YE(t,e),legend:LE(t,a),tooltip:lD(t,a),sunburstLabelsPlugin:GE(t,a),sunburstHoverPlugin:{enabled:!0},background:{color:a.background}},...i}}}}},JW={sequence:100,allowedDefinitionKeys:[...Hp.commonKeys,`dataSource`,`legendPosition`,`dataSetStyles`,`showHeaders`,`headerDesign`,`showLabels`,`valuesDesign`,`coloringOptions`,`showValues`],fromStrDefinition:e=>e,toStrDefinition:e=>e,copyInSheetId:e=>e,duplicateInDuplicatedSheet:e=>e,transformDefinition:e=>e,validateDefinition:()=>H.Success,updateRanges:e=>e,getDefinitionFromContextCreation(e,t){return{background:e.background,dataSetStyles:e.dataSetStyles??{},dataSource:t.fromHierarchicalContextCreation(e),legendPosition:e.legendPosition??`top`,title:e.title||{text:``},type:`treemap`,showValues:e.showValues,showHeaders:e.showHeaders,headerDesign:e.headerDesign,showLabels:e.showLabels,valuesDesign:e.valuesDesign,coloringOptions:e.treemapColoringOptions,humanize:e.humanize}},getContextCreation(e,t,n){return{...e,treemapColoringOptions:e.coloringOptions,...t.getHierarchicalContextCreation(n)}},getDefinitionForExcel:()=>void 0,getRuntime(e,t,{extractHierarchicalData:n},r,i){let a=eE(t,n(),e);return{chartJsConfig:{type:`treemap`,data:{labels:a.labels,datasets:Tp(t,a)},options:{...Qm,layout:EE(t,a),plugins:{title:YE(t,e),legend:{display:!1},tooltip:uD(t,a),background:{color:a.background}},...i}}}}};ny.add(`bar`,mD),ny.add(`combo`,VW),ny.add(`line`,TD),ny.add(`pie`,ED),ny.add(`scorecard`,Qp),ny.add(`gauge`,bD),ny.add(`scatter`,KW),ny.add(`waterfall`,DD),ny.add(`pyramid`,WW),ny.add(`radar`,GW),ny.add(`geo`,UW),ny.add(`funnel`,HW),ny.add(`sunburst`,qW),ny.add(`treemap`,JW),ny.add(`calendar`,BW),ny.add(`bubble`,RW),hh.add(`line`,{matcher:e=>e.type===`line`&&!e.stacked&&!e.fillArea,displayName:A(`Line`),chartType:`line`,chartSubtype:`line`,subtypeDefinition:{stacked:!1,fillArea:!1},category:`line`,preview:`o-spreadsheet-ChartPreview.LINE_CHART`}).add(`stacked_line`,{matcher:e=>e.type===`line`&&!e.fillArea&&!!e.stacked,displayName:A(`Stacked Line`),chartType:`line`,chartSubtype:`stacked_line`,subtypeDefinition:{stacked:!0,fillArea:!1},category:`line`,preview:`o-spreadsheet-ChartPreview.STACKED_LINE_CHART`}).add(`area`,{matcher:e=>e.type===`line`&&!e.stacked&&!!e.fillArea,displayName:A(`Area`),chartType:`line`,chartSubtype:`area`,subtypeDefinition:{stacked:!1,fillArea:!0},category:`area`,preview:`o-spreadsheet-ChartPreview.AREA_CHART`}).add(`stacked_area`,{matcher:e=>e.type===`line`&&e.stacked&&!!e.fillArea,displayName:A(`Stacked Area`),chartType:`line`,chartSubtype:`stacked_area`,subtypeDefinition:{stacked:!0,fillArea:!0},category:`area`,preview:`o-spreadsheet-ChartPreview.STACKED_AREA_CHART`}).add(`scatter`,{displayName:A(`Scatter`),chartType:`scatter`,chartSubtype:`scatter`,category:`misc`,preview:`o-spreadsheet-ChartPreview.SCATTER_CHART`}).add(`bubble`,{displayName:A(`Bubble`),chartType:`bubble`,chartSubtype:`bubble`,category:`misc`,preview:`o-spreadsheet-ChartPreview.BUBBLE_CHART`}).add(`column`,{matcher:e=>e.type===`bar`&&!e.stacked&&!e.horizontal,displayName:A(`Column`),chartType:`bar`,chartSubtype:`column`,subtypeDefinition:{stacked:!1,horizontal:!1},category:`column`,preview:`o-spreadsheet-ChartPreview.COLUMN_CHART`}).add(`stacked_column`,{matcher:e=>e.type===`bar`&&e.stacked&&!e.horizontal,displayName:A(`Stacked Column`),chartType:`bar`,chartSubtype:`stacked_column`,subtypeDefinition:{stacked:!0,horizontal:!1},category:`column`,preview:`o-spreadsheet-ChartPreview.STACKED_COLUMN_CHART`}).add(`bar`,{matcher:e=>e.type===`bar`&&!e.stacked&&!!e.horizontal,displayName:A(`Bar`),chartType:`bar`,chartSubtype:`bar`,subtypeDefinition:{horizontal:!0,stacked:!1},category:`bar`,preview:`o-spreadsheet-ChartPreview.BAR_CHART`}).add(`stacked_bar`,{matcher:e=>e.type===`bar`&&e.stacked&&!!e.horizontal,displayName:A(`Stacked Bar`),chartType:`bar`,chartSubtype:`stacked_bar`,subtypeDefinition:{horizontal:!0,stacked:!0},category:`bar`,preview:`o-spreadsheet-ChartPreview.STACKED_BAR_CHART`}).add(`combo`,{displayName:A(`Combo`),chartSubtype:`combo`,chartType:`combo`,category:`line`,preview:`o-spreadsheet-ChartPreview.COMBO_CHART`}).add(`pie`,{matcher:e=>e.type===`pie`&&!e.isDoughnut,displayName:A(`Pie`),chartSubtype:`pie`,chartType:`pie`,subtypeDefinition:{isDoughnut:!1},category:`pie`,preview:`o-spreadsheet-ChartPreview.PIE_CHART`}).add(`doughnut`,{matcher:e=>e.type===`pie`&&!!e.isDoughnut,displayName:A(`Doughnut`),chartSubtype:`doughnut`,chartType:`pie`,subtypeDefinition:{isDoughnut:!0},category:`pie`,preview:`o-spreadsheet-ChartPreview.DOUGHNUT_CHART`}).add(`gauge`,{displayName:A(`Gauge`),chartSubtype:`gauge`,chartType:`gauge`,category:`misc`,preview:`o-spreadsheet-ChartPreview.GAUGE_CHART`}).add(`scorecard`,{displayName:A(`Scorecard`),chartSubtype:`scorecard`,chartType:`scorecard`,category:`misc`,preview:`o-spreadsheet-ChartPreview.SCORECARD_CHART`}).add(`waterfall`,{displayName:A(`Waterfall`),chartSubtype:`waterfall`,chartType:`waterfall`,category:`misc`,preview:`o-spreadsheet-ChartPreview.WATERFALL_CHART`}).add(`pyramid`,{displayName:A(`Population Pyramid`),chartSubtype:`pyramid`,chartType:`pyramid`,category:`misc`,preview:`o-spreadsheet-ChartPreview.POPULATION_PYRAMID_CHART`}).add(`radar`,{matcher:e=>e.type===`radar`&&!e.fillArea,displayName:A(`Radar`),chartSubtype:`radar`,chartType:`radar`,subtypeDefinition:{fillArea:!1},category:`misc`,preview:`o-spreadsheet-ChartPreview.RADAR_CHART`}).add(`filled_radar`,{matcher:e=>e.type===`radar`&&!!e.fillArea,displayName:A(`Filled Radar`),chartType:`radar`,chartSubtype:`filled_radar`,subtypeDefinition:{fillArea:!0},category:`misc`,preview:`o-spreadsheet-ChartPreview.FILLED_RADAR_CHART`}).add(`geo`,{displayName:A(`Geo Chart`),chartSubtype:`geo`,chartType:`geo`,category:`misc`,preview:`o-spreadsheet-ChartPreview.GEO_CHART`}).add(`funnel`,{displayName:A(`Funnel`),chartSubtype:`funnel`,chartType:`funnel`,category:`misc`,preview:`o-spreadsheet-ChartPreview.FUNNEL_CHART`}).add(`sunburst`,{matcher:e=>e.type===`sunburst`,displayName:A(`Sunburst`),chartSubtype:`sunburst`,chartType:`sunburst`,category:`hierarchical`,preview:`o-spreadsheet-ChartPreview.SUNBURST_CHART`}).add(`treemap`,{matcher:e=>e.type===`treemap`,displayName:A(`Tree Map`),chartType:`treemap`,chartSubtype:`treemap`,category:`hierarchical`,preview:`o-spreadsheet-ChartPreview.TREE_MAP_CHART`}).add(`calendar`,{displayName:A(`Calendar`),chartSubtype:`calendar`,chartType:`calendar`,category:`misc`,preview:`o-spreadsheet-ChartPreview.CALENDAR_CHART`}),FL.add(`filter_icon`,(e,t)=>{if(e.isFilterHeader(t)){let n=e.isFilterActive(t),r=ad(e.getCellComputedStyle(t).fillColor||`#fff`)<.45;return{type:`filter_icon`,svg:fv(n,r,!1),hoverSvg:fv(n,r,!0),priority:3,horizontalAlign:`right`,size:17,margin:2,position:t,onClick:(e,t)=>{let n=t.getStore(RS),r=n.persistentCellPopover;if(r.isOpen&&r.col===e.col&&r.row===e.row&&r.type===`FilterMenu`){n.close();return}n.open(e,`FilterMenu`)}}}});var YW=l({ARRAYTOTEXT:()=>wG,ARRAY_CONSTRAIN:()=>QW,ARRAY_LITERAL:()=>$W,ARRAY_ROW:()=>eG,CHOOSECOLS:()=>tG,CHOOSEROWS:()=>nG,EXPAND:()=>rG,FLATTEN:()=>iG,FREQUENCY:()=>aG,HSTACK:()=>oG,MDETERM:()=>sG,MINVERSE:()=>cG,MMULT:()=>lG,SUMPRODUCT:()=>uG,SUMX2MY2:()=>fG,SUMX2PY2:()=>pG,SUMXMY2:()=>mG,TOCOL:()=>_G,TOROW:()=>vG,TRANSPOSE:()=>yG,VSTACK:()=>bG,WRAPCOLS:()=>xG,WRAPROWS:()=>SG});function XW(e,t){let n=e.map(I),r=n.map(e=>e?.[0]?.length??0),i=Math.max(...r);if(t?.requireSameRowCount){let e=r[0];if(r.some(t=>t!==e))return new M(A(`All ranges in [[FUNCTION_NAME]] must have the same number of columns (got %s).`,r.join(`, `)))}let a=[];for(let e of n)for(let t=0;t<e.length;t++){let n=Array(i).fill({value:null});for(let r=0;r<e[t].length;r++)n[r]=e[t][r];a.push(n)}return a}function ZW(e,t){let n=e.map(I),r=n.map(e=>e?.length??0),i=Math.max(...r);if(t?.requireSameColCount){let e=r[0];if(r.some(t=>t!==e))return new M(A(`All ranges in [[FUNCTION_NAME]] must have the same number of columns (got %s).`,r.join(`, `)))}let a=ma(i,n.reduce((e,t)=>e+(t?.[0]?.length??0),0),()=>({value:null})),o=0;for(let e of n){for(let t=0;t<e.length;t++)for(let n=0;n<e[t].length;n++)a[t][o+n]=e[t][n];o+=e[0]?.length??0}return a}let QW={description:A(`Returns a result array constrained to a specific width and height.`),args:[z(`input_range (any, range<any>)`,A(`The range to constrain.`)),z(`rows (number)`,A(`The number of rows in the constrained array.`)),z(`columns (number)`,A(`The number of columns in the constrained array.`))],compute:function(e,t,n){let r=I(e),i=ea(t?.value,this.locale),a=ea(n?.value,this.locale);if(i<=0)return new M(A(`The rows argument (%s) must be strictly positive.`,i.toString()));if(a<=0)return new M(A(`The columns argument (%s) must be strictly positive.`,a.toString()));let o=Math.min(i,r[0].length);return ma(Math.min(a,r.length),o,(e,t)=>r[e][t])},isExported:!1},$W={description:A(`Appends ranges vertically and in sequence to return a larger array. All ranges must have the same number of columns.`),args:[z(`range (any, range<any>, repeating)`,A(`The range to be appended.`))],compute:function(...e){return ZW(e,{requireSameColCount:!0})},isExported:!1,hidden:!0},eG={description:A(`Appends ranges horizontally and in sequence to return a larger array. All ranges must have the same number of rows.`),args:[z(`range (any, range<any>, repeating)`,A(`The range to be appended.`))],compute:function(...e){return XW(e,{requireSameRowCount:!0})},isExported:!1,hidden:!0},tG={description:A(`Creates a new array from the selected columns in the existing range.`),args:[z(`array (any, range<any>)`,A(`The array that contains the columns to be returned.`)),z(`col_num (number, range<number>, repeating)`,A(`The column index of the column to be returned.`))],compute:function(e,...t){let n=I(e),r=ka(t,e=>ea(e?.value,this.locale)),i=r.filter(e=>e===0||n.length<Math.abs(e));if(i.length!==0)return new M(A(`The columns arguments must be between -%s and %s (got %s), excluding 0.`,n.length.toString(),n.length.toString(),i.join(`,`)));let a=Array(r.length);for(let e=0;e<r.length;e++)r[e]>0?a[e]=n[r[e]-1]:a[e]=n[n.length+r[e]];return a},isExported:!0},nG={description:A(`Creates a new array from the selected rows in the existing range.`),args:[z(`array (any, range<any>)`,A(`The array that contains the rows to be returned.`)),z(`row_num (number, range<number>, repeating)`,A(`The row index of the row to be returned.`))],compute:function(e,...t){let n=I(e),r=ka(t,e=>ea(e?.value,this.locale)),i=n.length,a=r.filter(e=>e===0||n[0].length<Math.abs(e));return a.length===0?ma(i,r.length,(e,t)=>r[t]>0?n[e][r[t]-1]:n[e][n[e].length+r[t]]):new M(A(`The rows arguments must be between -%s and %s (got %s), excluding 0.`,n[0].length.toString(),n[0].length.toString(),a.join(`,`)))},isExported:!0},rG={description:A(`Expands or pads an array to specified row and column dimensions.`),args:[z(`array (any, range<any>)`,A(`The array to expand.`)),z(`rows (number)`,A(`The number of rows in the expanded array. If missing, rows will not be expanded.`)),z(`columns (number, optional)`,A(`The number of columns in the expanded array. If missing, columns will not be expanded.`)),z(`pad_with (any, default=0)`,A(`The value with which to pad.`))],compute:function(e,t,n,r={value:0}){let i=I(e),a=ea(t?.value,this.locale),o=n===void 0?i.length:ea(n.value,this.locale);return a<i[0].length?new M(A(`The rows arguments (%s) must be greater or equal than the number of rows of the array.`,a.toString())):o<i.length?new M(A(`The columns arguments (%s) must be greater or equal than the number of columns of the array.`,o.toString())):ma(o,a,(e,t)=>e>=i.length||t>=i[e].length?r:i[e][t])},isExported:!0},iG={description:A(`Flattens all the values from one or more ranges into a single column.`),args:[z(`range (any, range<any>, repeating)`,A(`The range to flatten.`))],compute:function(...e){return[ka(e,e=>e===void 0?{value:``}:e)]},isExported:!1},aG={description:A(`Calculates the frequency distribution of a range.`),args:[z(`data (range<number>)`,A(`The array of ranges containing the values to be counted.`)),z(`classes (number, range<number>)`,A(`The range containing the set of classes.`))],compute:function(e,t){let n=ka([e],e=>e.value).filter(e=>typeof e==`number`),r=ka([t],e=>e.value).filter(e=>typeof e==`number`).map((e,t)=>({initialIndex:t,value:e,count:0})).sort((e,t)=>e.value-t.value);r.push({initialIndex:r.length,value:1/0,count:0});let i=n.sort((e,t)=>e-t),a=0;for(let e of i){for(;e>r[a].value&&a<r.length-1;)a++;r[a].count++}return[r.sort((e,t)=>e.initialIndex-t.initialIndex).map(e=>e.count)]},isExported:!0},oG={description:A(`Appends ranges horizontally and in sequence to return a larger array.`),args:[z(`range (any, range<any>, repeating)`,A(`The range to be appended.`))],compute:function(...e){return XW(e)},isExported:!0},sG={description:A(`Returns the matrix determinant of a square matrix.`),args:[z(`square_matrix (number, range<number>)`,A(`An range with an equal number of rows and columns representing a matrix whose determinant will be calculated.`))],compute:function(e){let t=Qi(e,`square_matrix`);return Bb(t)?Ub(t).determinant:new M(A(`The argument square_matrix must have the same number of columns and rows.`))},isExported:!0},cG={description:A(`Returns the multiplicative inverse of a square matrix.`),args:[z(`square_matrix (number, range<number>)`,A(`An range with an equal number of rows and columns representing a matrix whose multiplicative inverse will be calculated.`))],compute:function(e){let t=Qi(e,`square_matrix`);if(!Bb(t))return new M(A(`The argument square_matrix must have the same number of columns and rows.`));let{inverted:n}=Ub(t);return n||new M(A(`The matrix is not invertible.`))},isExported:!0},lG={description:A(`Calculates the matrix product of two matrices.`),args:[z(`matrix1 (number, range<number>)`,A(`The first matrix in the matrix multiplication operation.`)),z(`matrix2 (number, range<number>)`,A(`The second matrix in the matrix multiplication operation.`))],compute:function(e,t){let n=Qi(e,`matrix1`),r=Qi(t,`matrix2`);return n.length===0||r.length===0?new M(A(`The first and second arguments of [[FUNCTION_NAME]] must be non-empty matrices.`)):n.length===r[0].length?Gb(n,r):new M(A(`In [[FUNCTION_NAME]], the number of columns of the first matrix (%s) must be equal to the number of rows of the second matrix (%s).`,n.length.toString(),r[0].length.toString()))},isExported:!0},uG={description:A(`Calculates the sum of the products of corresponding entries in equal-sized ranges.`),args:[z(`range (number, range<number>, repeating)`,A(`The range whose entries will be multiplied with corresponding entries in the other range.`))],compute:function(...e){if(!zb(...e))return new M(A(`All the ranges must have the same dimensions.`));let t=e.map(I),n=0;for(let e=0;e<t[0].length;e++)for(let r=0;r<t[0][e].length;r++){if(!t.every(t=>typeof t[e][r].value==`number`))continue;let i=1;for(let n of t)i*=N(n[e][r],this.locale);n+=i}return n},isExported:!0};function dG(e,t,n){if(!zb(e,t))return new M(A(`The arguments array_x and array_y must have the same dimensions.`));let r=I(e),i=I(t),a=!1,o=0;for(let e in r)for(let t in r[e]){let s=r[e][t].value,c=i[e][t].value;typeof s!=`number`||typeof c!=`number`||(a=!0,o+=n(s,c))}return a?o:new M(A(`The arguments array_x and array_y must contain at least one pair of numbers.`))}let fG={description:A(`Calculates the sum of the difference of the squares of the values in two array.`),args:[z(`array_x (number, range<number>)`,A(`The array or range of values whose squares will be reduced by the squares of corresponding entries in array_y and added together.`)),z(`array_y (number, range<number>)`,A(`The array or range of values whose squares will be subtracted from the squares of corresponding entries in array_x and added together.`))],compute:function(e,t){return dG(e,t,(e,t)=>e**2-t**2)},isExported:!0},pG={description:A(`Calculates the sum of the sum of the squares of the values in two array.`),args:[z(`array_x (number, range<number>)`,A(`The array or range of values whose squares will be added to the squares of corresponding entries in array_y and added together.`)),z(`array_y (number, range<number>)`,A(`The array or range of values whose squares will be added to the squares of corresponding entries in array_x and added together.`))],compute:function(e,t){return dG(e,t,(e,t)=>e**2+t**2)},isExported:!0},mG={description:A(`Calculates the sum of squares of the differences of values in two array.`),args:[z(`array_x (number, range<number>)`,A(`The array or range of values that will be reduced by corresponding entries in array_y, squared, and added together.`)),z(`array_y (number, range<number>)`,A(`The array or range of values that will be subtracted from corresponding entries in array_x, the result squared, and all such results added together.`))],compute:function(e,t){return dG(e,t,(e,t)=>(e-t)**2)},isExported:!0},hG=[z(`array (any, range<any>)`,A(`The array which will be transformed.`)),z(`ignore (number, default=0)`,A(`Whether to ignore certain types of values. By default, no values are ignored.`),[{value:0,label:A(`Keep all values (default)`)},{value:1,label:A(`Ignore blanks`)},{value:2,label:A(`Ignore errors`)},{value:3,label:A(`Ignore blanks and errors`)}]),z(`scan_by_column (number, default=false)`,A(`Scan the array by column. By default, the array is scanned by row.`),[{value:!1,label:A(`Scan by row (default)`)},{value:!0,label:A(`Scan by column`)}])];function gG(e){let t=Math.trunc(e);if(t===0)return()=>!0;if(t===1)return e=>e.value!==null;if(t===2)return e=>!Gi(e.value);if(t===3)return e=>e.value!==null&&!Gi(e.value);throw new M(A(`Argument ignore must be between 0 and 3`))}let _G={description:A(`Transforms a range of cells into a single column.`),args:hG,compute:function(e,t={value:0},n={value:!1}){let r=I(e),i=N(t.value,this.locale),a=(F(n.value)?r:_a(r)).flat().filter(gG(i));return a.length===0?new Ri(A(`No results for the given arguments of TOCOL.`)):[a]},isExported:!0},vG={description:A(`Transforms a range of cells into a single row.`),args:hG,compute:function(e,t={value:0},n={value:!1}){let r=I(e),i=N(t.value,this.locale),a=(F(n.value)?r:_a(r)).flat().filter(gG(i)).map(e=>[e]);return a.length===0||a[0].length===0?new Ri(A(`No results for the given arguments of TOROW.`)):a},isExported:!0},yG={description:A(`Transposes the rows and columns of a range.`),args:[z(`range (any, range<any>)`,A(`The range to be transposed.`))],compute:function(e){let t=I(e),n=t[0].length,r=t.length;return ma(n,r,(e,n)=>t[n][e])},isExported:!0},bG={description:A(`Appends ranges vertically and in sequence to return a larger array.`),args:[z(`range (any, range<any>, repeating)`,A(`The range to be appended.`))],compute:function(...e){return ZW(e)},isExported:!0},xG={description:A(`Wraps the provided row or column of cells by columns after a specified number of elements to form a new array.`),args:[z(`range (any, range<any>)`,A(`The range to wrap.`)),z(`wrap_count (number)`,A(`The maximum number of cells for each column, rounded down to the nearest whole number.`)),z(`pad_with (any, default=0)`,A(`The value with which to fill the extra cells in the range.`))],compute:function(e,t,n={value:0}){let r=I(e),i=ea(t?.value,this.locale);if(!Rb(r))return new M(A(`Argument range must be a single row or column.`));let a=r.flat();return ma(Math.ceil(a.length/i),i,(e,t)=>{let r=e*i+t;return r<a.length?a[r]:n})},isExported:!0},SG={description:A(`Wraps the provided row or column of cells by rows after a specified number of elements to form a new array.`),args:[z(`range (any, range<any>)`,A(`The range to wrap.`)),z(`wrap_count (number)`,A(`The maximum number of cells for each row, rounded down to the nearest whole number.`)),z(`pad_with (any, default=0)`,A(`The value with which to fill the extra cells in the range.`))],compute:function(e,t,n={value:0}){let r=I(e),i=ea(t?.value,this.locale);if(!Rb(r))return new M(A(`Argument range must be a single row or column.`));let a=r.flat();return ma(i,Math.ceil(a.length/i),(e,t)=>{let r=t*i+e;return r<a.length?a[r]:n})},isExported:!0},CG=[{value:0,label:A(`Concise format\xA0(default)`)},{value:1,label:A(`Strict format`)}],wG={description:A(`returns an array of text values from any specified range. It passes text values unchanged, and converts non-text values to text.`),args:[z(`array (range)`,A(`The array to convert into text`)),z(`format (number, default=0)`,A(`The format of the returned data.`),CG)],compute:function(e,t={value:0}){let n=N(t,this.locale),r=I(e);if(n===1)return pO(r,``,this.locale);if(n===0){let e=this.locale.decimalSeparator===`,`?`/`:`,`;return _a(r).flatMap(e=>e.map(e=>Gi(e.value)?e.value:P(e))).join(e)}else return new M(A(`Format must be 0 or 1`))},isExported:!0};var TG=l({ABS:()=>DG,ACOS:()=>OG,ACOSH:()=>kG,ACOT:()=>AG,ACOTH:()=>jG,ASIN:()=>MG,ASINH:()=>NG,ATAN:()=>PG,ATAN2:()=>FG,ATANH:()=>IG,CEILING:()=>LG,CEILING_MATH:()=>zG,CEILING_PRECISE:()=>BG,COS:()=>VG,COSH:()=>HG,COT:()=>UG,COTH:()=>WG,COUNTBLANK:()=>GG,COUNTIF:()=>KG,COUNTIFS:()=>qG,COUNTUNIQUE:()=>JG,COUNTUNIQUEIFS:()=>YG,CSC:()=>XG,CSCH:()=>ZG,DECIMAL:()=>QG,DEGREES:()=>$G,EXP:()=>eK,FLOOR:()=>tK,FLOOR_MATH:()=>rK,FLOOR_PRECISE:()=>iK,INT:()=>BK,ISEVEN:()=>aK,ISODD:()=>sK,ISO_CEILING:()=>oK,LN:()=>cK,LOG:()=>lK,MOD:()=>dK,MUNIT:()=>fK,ODD:()=>pK,PI:()=>mK,POWER:()=>hK,PRODUCT:()=>gK,RAND:()=>_K,RANDARRAY:()=>vK,RANDBETWEEN:()=>yK,ROUND:()=>bK,ROUNDDOWN:()=>xK,ROUNDUP:()=>SK,SEC:()=>CK,SECH:()=>wK,SEQUENCE:()=>TK,SIN:()=>EK,SINH:()=>DK,SQRT:()=>OK,SUBTOTAL:()=>MK,SUM:()=>NK,SUMIF:()=>PK,SUMIFS:()=>FK,TAN:()=>IK,TANH:()=>LK,TRUNC:()=>zK});let EG=/^-?[a-z0-9]+$/i,DG={description:A(`Absolute value of a number.`),args:[z(`value (number)`,A(`The number of which to return the absolute value.`))],compute:function(e){return Math.abs(N(e,this.locale))},isExported:!0},OG={description:A(`Inverse cosine of a value, in radians.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse cosine. Must be between -1 and 1, inclusive.`))],compute:function(e){let t=N(e,this.locale);return Math.abs(t)>1?new M(A(`The value (%s) must be between -1 and 1 inclusive.`,t)):Math.acos(t)},isExported:!0},kG={description:A(`Inverse hyperbolic cosine of a number.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse hyperbolic cosine. Must be greater than or equal to 1.`))],compute:function(e){let t=N(e,this.locale);return t<1?new M(A(`The value (%s) must be greater than or equal to 1.`,t)):Math.acosh(t)},isExported:!0},AG={description:A(`Inverse cotangent of a value.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse cotangent.`))],compute:function(e){let t=N(e,this.locale);return(Math.sign(t)||1)*Math.PI/2-Math.atan(t)},isExported:!0},jG={description:A(`Inverse hyperbolic cotangent of a value.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse hyperbolic cotangent. Must not be between -1 and 1, inclusive.`))],compute:function(e){let t=N(e,this.locale);return Math.abs(t)<=1?new M(A(`The value (%s) cannot be between -1 and 1 inclusive.`,t)):Math.log((t+1)/(t-1))/2},isExported:!0},MG={description:A(`Inverse sine of a value, in radians.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse sine. Must be between -1 and 1, inclusive.`))],compute:function(e){let t=N(e,this.locale);return Math.abs(t)>1?new M(A(`The value (%s) must be between -1 and 1 inclusive.`,t)):Math.asin(t)},isExported:!0},NG={description:A(`Inverse hyperbolic sine of a number.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse hyperbolic sine.`))],compute:function(e){return Math.asinh(N(e,this.locale))},isExported:!0},PG={description:A(`Inverse tangent of a value, in radians.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse tangent.`))],compute:function(e){return Math.atan(N(e,this.locale))},isExported:!0},FG={description:A(`Angle from the X axis to a point (x,y), in radians.`),args:[z(`x (number)`,A(`The x coordinate of the endpoint of the line segment for which to calculate the angle from the x-axis.`)),z(`y (number)`,A(`The y coordinate of the endpoint of the line segment for which to calculate the angle from the x-axis.`))],compute:function(e,t){let n=N(e,this.locale),r=N(t,this.locale);return n===0&&r===0?new Vi(A(`Function [[FUNCTION_NAME]] caused a divide by zero error.`)):Math.atan2(r,n)},isExported:!0},IG={description:A(`Inverse hyperbolic tangent of a number.`),args:[z(`value (number)`,A(`The value for which to calculate the inverse hyperbolic tangent. Must be between -1 and 1, exclusive.`))],compute:function(e){let t=N(e,this.locale);return Math.abs(t)>=1?new M(A(`The value (%s) must be between -1 and 1 exclusive.`,t)):Math.atanh(t)},isExported:!0},LG={description:A(`Rounds number up to nearest multiple of factor.`),args:[z(`value (number)`,A(`The value to round up to the nearest integer multiple of factor.`)),z(`factor (number, default=1)`,A(`The number to whose multiples value will be rounded.`))],compute:function(e,t={value:1}){let n=N(e,this.locale),r=N(t,this.locale);return r<0&&n>0?new M(A(`The factor (%s) must be positive when the value (%s) is positive.`,r,n)):{value:r?Math.ceil(n/r)*r:0,format:e?.format}},isExported:!0};function RG(e,t,n=0){return t===0?0:(t=Math.abs(t),e>=0?Math.ceil(e/t)*t:n===0?-Math.floor(Math.abs(e)/t)*t:-Math.ceil(Math.abs(e)/t)*t)}let zG={description:A(`Rounds number up to nearest multiple of factor.`),args:[z(`number (number)`,A(`The value to round up to the nearest integer multiple of significance.`)),z(`significance (number, default=1)`,A(`The number to whose multiples number will be rounded. The sign of significance will be ignored.`)),z(`mode (number, default=0)`,A(`If number is negative, specifies the rounding direction. If 0 or blank, it is rounded towards zero. Otherwise, it is rounded away from zero.`))],compute:function(e,t={value:1},n={value:0}){let r=N(t,this.locale);return{value:RG(N(e,this.locale),r,N(n,this.locale)),format:e?.format}},isExported:!0},BG={description:A(`Rounds number up to nearest multiple of factor.`),args:[z(`number (number)`,A(`The value to round up to the nearest integer multiple of significance.`)),z(`significance (number, default=1)`,A(`The number to whose multiples number will be rounded.`))],compute:function(e,t={value:1}){let n=N(t,this.locale);return{value:RG(N(e,this.locale),n),format:e?.format}},isExported:!0},VG={description:A(`Cosine of an angle provided in radians.`),args:[z(`angle (number)`,A(`The angle to find the cosine of, in radians.`))],compute:function(e){return Math.cos(N(e,this.locale))},isExported:!0},HG={description:A(`Hyperbolic cosine of any real number.`),args:[z(`value (number)`,A(`Any real value to calculate the hyperbolic cosine of.`))],compute:function(e){return Math.cosh(N(e,this.locale))},isExported:!0},UG={description:A(`Cotangent of an angle provided in radians.`),args:[z(`angle (number)`,A(`The angle to find the cotangent of, in radians.`))],compute:function(e){let t=N(e,this.locale);return t===0?new Vi(A(`Function [[FUNCTION_NAME]] caused a divide by zero error.`)):1/Math.tan(t)},isExported:!0},WG={description:A(`Hyperbolic cotangent of any real number.`),args:[z(`value (number)`,A(`Any real value to calculate the hyperbolic cotangent of.`))],compute:function(e){let t=N(e,this.locale);return t===0?new Vi(A(`Function [[FUNCTION_NAME]] caused a divide by zero error.`)):1/Math.tanh(t)},isExported:!0},GG={description:A(`Number of empty values.`),args:[z(`value (any, range, repeating)`,A(`Value or range in which to count the number of blanks.`))],compute:function(...e){return da(e,(e,t)=>t===void 0||t.value===null||t.value===``?e+1:e,0)},isExported:!0},KG={description:A(`A conditional count across a range.`),args:[z(`range (range)`,A(`The range that is tested against criterion.`)),z(`criterion (string)`,A(`The pattern or test to apply to range.`))],compute:function(...e){let t=0;return Ca(e,(e,n)=>{t+=1},this.locale),t},isExported:!0},qG={description:A(`Count values depending on multiple criteria.`),args:[z(`criteria_range (any, range, repeating)`,A(`Range over which to evaluate criteria.`)),z(`criterion (string, repeating)`,A(`Criteria to check.`))],compute:function(...e){let t=0;return Ca(e,(e,n)=>{t+=1},this.locale),t},isExported:!0},JG={description:A(`Counts number of unique values in a range.`),args:[z(`value (any, range, repeating)`,A(`Value or range to consider for uniqueness.`))],compute:function(...e){return Fb(e)}},YG={description:A(`Counts number of unique values in a range, filtered by a set of criteria.`),args:[z(`range (range)`,A(`The range of cells from which the number of unique values will be counted.`)),z(`criteria_range (any, range, repeating)`,A(`Range over which to evaluate criteria.`)),z(`criterion (string, repeating)`,A(`Criteria to check.`))],compute:function(e,...t){let n=new Set;return Ca(t,(t,r)=>{let i=e[t]?.[r];Aa(i)&&n.add(i.value)},this.locale),n.size}},XG={description:A(`Cosecant of an angle provided in radians.`),args:[z(`angle (number)`,A(`The angle to find the cosecant of, in radians.`))],compute:function(e){let t=N(e,this.locale);return t===0?new Vi(A(`Function [[FUNCTION_NAME]] caused a divide by zero error.`)):1/Math.sin(t)},isExported:!0},ZG={description:A(`Hyperbolic cosecant of any real number.`),args:[z(`value (number)`,A(`Any real value to calculate the hyperbolic cosecant of.`))],compute:function(e){let t=N(e,this.locale);return t===0?new Vi(A(`Function [[FUNCTION_NAME]] caused a divide by zero error.`)):1/Math.sinh(t)},isExported:!0},QG={description:A(`Converts from another base to decimal.`),args:[z(`value (string)`,A(`The number to convert.`)),z(`base (number)`,A(`The base to convert the value from.`))],compute:function(e,t){let n=N(t,this.locale);if(n=Math.floor(n),2>n||n>36)return new M(A(`The base (%s) must be between 2 and 36 inclusive.`,n));let r=P(e);if(r===``)return 0;if(!EG.test(r))return new M(A(`The value (%s) must be a valid base %s representation.`,r,n));let i=parseInt(r,n);return isNaN(i)?new M(A(`The value (%s) must be a valid base %s representation.`,r,n)):i},isExported:!0},$G={description:A(`Converts an angle value in radians to degrees.`),args:[z(`angle (number)`,A(`The angle to convert from radians to degrees.`))],compute:function(e){return N(e,this.locale)*180/Math.PI},isExported:!0},eK={description:A(`Euler's number, e (~2.718) raised to a power.`),args:[z(`value (number)`,A(`The exponent to raise e.`))],compute:function(e){return Math.exp(N(e,this.locale))},isExported:!0},tK={description:A(`Rounds number down to nearest multiple of factor.`),args:[z(`value (number)`,A(`The value to round down to the nearest integer multiple of factor.`)),z(`factor (number, default=1)`,A(`The number to whose multiples value will be rounded.`))],compute:function(e,t={value:1}){let n=N(e,this.locale),r=N(t,this.locale);return r<0&&n>0?new M(A(`The factor (%s) must be positive when the value (%s) is positive.`,r,n)):{value:r?Math.floor(n/r)*r:0,format:e?.format}},isExported:!0};function nK(e,t,n=0){return t===0?0:(t=Math.abs(t),e>=0?Math.floor(e/t)*t:n===0?-Math.ceil(Math.abs(e)/t)*t:-Math.floor(Math.abs(e)/t)*t)}let rK={description:A(`Rounds number down to nearest multiple of factor.`),args:[z(`number (number)`,A(`The value to round down to the nearest integer multiple of significance.`)),z(`significance (number, default=1)`,A(`The number to whose multiples number will be rounded. The sign of significance will be ignored.`)),z(`mode (number, default=0)`,A(`If number is negative, specifies the rounding direction. If 0 or blank, it is rounded away from zero. Otherwise, it is rounded towards zero.`))],compute:function(e,t={value:1},n={value:0}){let r=N(t,this.locale);return{value:nK(N(e,this.locale),r,N(n,this.locale)),format:e?.format}},isExported:!0},iK={description:A(`Rounds number down to nearest multiple of factor.`),args:[z(`number (number)`,A(`The value to round down to the nearest integer multiple of significance.`)),z(`significance (number, default=1)`,A(`The number to whose multiples number will be rounded.`))],compute:function(e,t={value:1}){let n=N(t,this.locale);return{value:nK(N(e,this.locale),n),format:e?.format}},isExported:!0},aK={description:A(`Whether the provided value is even.`),args:[z(`value (number)`,A(`The value to be verified as even.`))],compute:function(e){let t=$i(e,this.locale);return!(Math.floor(Math.abs(t))&1)},isExported:!0},oK={description:A(`Rounds number up to nearest multiple of factor.`),args:[z(`number (number)`,A(`The value to round up to the nearest integer multiple of significance.`)),z(`significance (number, default=1)`,A(`The number to whose multiples number will be rounded.`))],compute:function(e,t={value:1}){return{value:RG(N(e,this.locale),N(t,this.locale)),format:e?.format}},isExported:!0},sK={description:A(`Whether the provided value is even.`),args:[z(`value (number)`,A(`The value to be verified as even.`))],compute:function(e){let t=$i(e,this.locale);return!!(Math.floor(Math.abs(t))&1)},isExported:!0},cK={description:A(`The logarithm of a number, base e (euler's number).`),args:[z(`value (number)`,A(`The value for which to calculate the logarithm, base e.`))],compute:function(e){let t=N(e,this.locale);return t<=0?new M(A(`The value (%s) must be strictly positive.`,t)):Math.log(t)},isExported:!0},lK={description:A(`The logarithm of a number, for a given base.`),args:[z(`value (number)`,A(`The value for which to calculate the logarithm.`)),z(`base (number, default=10)`,A(`The base of the logarithm.`))],compute:function(e,t={value:10}){let n=N(e,this.locale),r=N(t,this.locale);return n<=0?new M(A(`The value (%s) must be strictly positive.`,n)):r<=0?new M(A(`The base (%s) must be strictly positive.`,r)):r===1?new M(A(`The base must be different from 1.`)):Math.log10(n)/Math.log10(r)},isExported:!0};function uK(e,t){Lb(t,A(`The divisor must be different from 0.`));let n=e%t;return n>0&&t<0||n<0&&t>0?n+t:n}let dK={description:A(`Modulo (remainder) operator.`),args:[z(`dividend (number)`,A(`The number to be divided to find the remainder.`)),z(`divisor (number)`,A(`The number to divide by.`))],compute:function(e,t){let n=N(t,this.locale);return{value:uK(N(e,this.locale),n),format:e?.format}},isExported:!0},fK={description:A(`Returns a n x n unit matrix, where n is the input dimension.`),args:[z(`dimension (number)`,A(`An integer specifying the dimension size of the unit matrix. It must be positive.`))],compute:function(e){let t=ea(e,this.locale);return t<1?new M(A(`The argument dimension must be positive`)):Hb(t)},isExported:!0},pK={description:A(`Rounds a number up to the nearest odd integer.`),args:[z(`value (number)`,A(`The value to round to the next greatest odd number.`))],compute:function(e){let t=N(e,this.locale),n=Math.ceil(Math.abs(t));return n=n&1?n:n+1,{value:t<0?-n:n,format:e?.format}},isExported:!0},mK={description:A(`The number pi.`),args:[],compute:function(){return Math.PI},isExported:!0},hK={description:A(`A number raised to a power.`),args:[z(`base (number)`,A(`The number to raise to the exponent power.`)),z(`exponent (number)`,A(`The exponent to raise base to.`))],compute:function(e,t){let n=N(e,this.locale),r=N(t,this.locale);return n<0&&!Number.isInteger(r)?new M(A(`The exponent (%s) must be an integer when the base is negative.`,r)):{value:n**+r,format:e?.format}},isExported:!0},gK={description:A(`Result of multiplying a series of numbers together.`),args:[z(`factor (number, range<number>, repeating)`,A(`Number or range to calculate for the product.`))],compute:function(...e){let t=0,n=1;for(let r of e)if(Ue(r))for(let e of r)for(let r of e){let e=r.value;if(typeof e==`number`&&(n*=e,t+=1),Gi(e))return r}else r!==void 0&&r.value!==null&&(n*=$i(r,this.locale),t+=1);return{value:t===0?0:n,format:Wi(e[0])}},isExported:!0},_K={description:A(`A random number between 0 inclusive and 1 exclusive.`),args:[],compute:function(){return Math.random()},isExported:!0},vK={description:A(`Returns a grid of random numbers between 0 inclusive and 1 exclusive.`),args:[z(`rows (number, default=1)`,A(`The number of rows to be returned.`)),z(`columns (number, default=1)`,A(`The number of columns to be returned.`)),z(`min (number, default=0)`,A(`The minimum number you would like returned.`)),z(`max (number, default=1)`,A(`The maximum number you would like returned.`)),z(`whole_number (boolean, default=FALSE)`,A(`Return a whole number or a decimal value.`),[{value:!1,label:A(`Decimal (default)`)},{value:!0,label:A(`Integer`)}])],compute:function(e={value:1},t={value:1},n={value:0},r={value:1},i={value:!1}){let a=ea(t,this.locale),o=ea(e,this.locale),s=N(n,this.locale),c=N(r,this.locale),l=F(i);if(a<1)return new M(A(`The number of columns (%s) must be positive.`,a));if(o<1)return new M(A(`The number of rows (%s) must be positive.`,o));if(s>c)return new M(A(`The maximum (%s) must be greater than or equal to the minimum (%s).`,c,s));if(l&&(!Number.isInteger(s)||!Number.isInteger(c)))return new M(A(`The maximum (%s) and minimum (%s) must be integers when whole_number is TRUE.`,c.toString(),s.toString()));let u=Array(a);for(let e=0;e<a;e++){u[e]=Array(o);for(let t=0;t<o;t++)l?u[e][t]=Math.floor(Math.random()*(c-s+1)+s):u[e][t]=s+Math.random()*(c-s)}return u},isExported:!0},yK={description:A(`Random integer between two values, inclusive.`),args:[z(`low (number)`,A(`The low end of the random range.`)),z(`high (number)`,A(`The high end of the random range.`))],compute:function(e,t){let n=N(e,this.locale);Number.isInteger(n)||(n=Math.ceil(n));let r=N(t,this.locale);return Number.isInteger(r)||(r=Math.floor(r)),n>r?new M(A(`The high (%s) must be greater than or equal to the low (%s).`,r,n)):{value:n+Math.ceil((r-n+1)*Math.random())-1,format:e?.format}},isExported:!0},bK={description:A(`Rounds a number according to standard rules.`),args:[z(`value (number)`,A(`The value to round to places number of places.`)),z(`places (number, default=0)`,A(`The number of decimal places to which to round.`))],compute:function(e,t={value:0}){let n=N(e,this.locale),r=N(t,this.locale),i=Math.abs(n),a;return r===0?a=Math.round(i):(Number.isInteger(r)||(r=Math.trunc(r)),a=Math.round(i*10**r)/10**r),{value:n>=0?a:-a,format:e?.format}},isExported:!0},xK={description:A(`Rounds down a number.`),args:[z(`value (number)`,A(`The value to round to places number of places, always rounding down.`)),z(`places (number, default=0)`,A(`The number of decimal places to which to round.`))],compute:function(e,t={value:0}){let n=N(e,this.locale),r=N(t,this.locale),i=Math.abs(n),a;return r===0?a=Math.floor(i):(Number.isInteger(r)||(r=Math.trunc(r)),a=Math.floor(i*10**r)/10**r),{value:n>=0?a:-a,format:e?.format}},isExported:!0},SK={description:A(`Rounds up a number.`),args:[z(`value (number)`,A(`The value to round to places number of places, always rounding up.`)),z(`places (number, default=0)`,A(`The number of decimal places to which to round.`))],compute:function(e,t={value:0}){let n=N(e,this.locale),r=N(t,this.locale),i=Math.abs(n),a;return r===0?a=Math.ceil(i):(Number.isInteger(r)||(r=Math.trunc(r)),a=Math.ceil(i*10**r)/10**r),{value:n>=0?a:-a,format:e?.format}},isExported:!0},CK={description:A(`Secant of an angle provided in radians.`),args:[z(`angle (number)`,A(`The angle to find the secant of, in radians.`))],compute:function(e){return 1/Math.cos(N(e,this.locale))},isExported:!0},wK={description:A(`Hyperbolic secant of any real number.`),args:[z(`value (number)`,A(`Any real value to calculate the hyperbolic secant of.`))],compute:function(e){return 1/Math.cosh(N(e,this.locale))},isExported:!0},TK={description:A(`Returns a sequence of numbers.`),args:[z(`rows (number)`,A(`The number of rows to return`)),z(`columns (number, optional, default=1)`,A(`The number of columns to return`)),z(`start (number, optional, default=1)`,A(`The first number in the sequence`)),z(`step (number, optional, default=1)`,A(`The amount to increment each value in the sequence`))],compute:function(e,t={value:1},n={value:1},r={value:1}){let i=N(n,this.locale),a=N(r,this.locale),o=ea(e,this.locale),s=ea(t,this.locale);return s<1?new M(A(`The number of columns (%s) must be positive.`,s)):o<1?new M(A(`The number of rows (%s) must be positive.`,o)):ma(s,o,(e,t)=>({value:i+t*s*a+e*a}))},isExported:!0},EK={description:A(`Sine of an angle provided in radians.`),args:[z(`angle (number)`,A(`The angle to find the sine of, in radians.`))],compute:function(e){return Math.sin(N(e,this.locale))},isExported:!0},DK={description:A(`Hyperbolic sine of any real number.`),args:[z(`value (number)`,A(`Any real value to calculate the hyperbolic sine of.`))],compute:function(e){return Math.sinh(N(e,this.locale))},isExported:!0},OK={description:A(`Positive square root of a positive number.`),args:[z(`value (number)`,A(`The number for which to calculate the positive square root.`))],compute:function(e){let t=N(e,this.locale);return t<0?new M(A(`The value (%s) must be positive or null.`,t)):{value:Math.sqrt(t),format:e?.format}},isExported:!0},kK={1:`AVERAGE`,2:`COUNT`,3:`COUNTA`,4:`MAX`,5:`MIN`,6:`PRODUCT`,7:`STDEV`,8:`STDEVP`,9:`SUM`,10:`VAR`,11:`VARP`},AK=Object.entries(kK).map(([e,t])=>({value:parseInt(e),label:A(`%s (include manually-hidden rows)`,t)})),jK=Object.entries(kK).map(([e,t])=>({value:parseInt(e)+100,label:A(`%s (exclude manually-hidden rows)`,t)})),MK={description:A(`Returns a subtotal for a vertical range of cells using a specified aggregation function.`),args:[z(`function_code (number)`,A(`The function to use in subtotal aggregation.`),[...AK,...jK]),z(`ref (any, range<any>, repeating)`,A(`Range or reference for which you want the subtotal.`))],compute:function(e,...t){let n=ea(e,this.locale),r=!0;if(n>100&&(n-=100,r=!1),n<1||n>11)return new M(A(`The function code (%s) must be between 1 to 11 or 101 to 111.`,n));let i=[];for(let e of t){let t=I(e),n=t[0][0]?.position;if(n===void 0)return new Li(Ji);let a=n.col+t.length-1,o=n.row+t[0].length-1,s=n.sheetId;for(let e=n.row;e<=o;e++)if(!this.getters.isRowFiltered(s,e)&&!(!r&&this.getters.isRowHiddenByUser(s,e)))for(let t=n.col;t<=a;t++){let n=this.getters.getCorrespondingFormulaCell({sheetId:s,col:t,row:e});(!n||!Gt(n,`SUBTOTAL`))&&i.push(this.getFormulaResult({sheetId:s,col:t,row:e}))}}return this[kK[n]].apply(this,[[i]])},isExported:!0},NK={description:A(`Sum of a series of numbers and/or cells.`),args:[z(`value (number, range<number>, repeating)`,A(`Number or range to add together.`))],compute:function(...e){let t=e[0];return{value:Pb(e,this.locale),format:Wi(t)}},isExported:!0},PK={description:A(`A conditional sum across a range.`),args:[z(`criteria_range (range)`,A(`The range which is tested against criterion.`)),z(`criterion (string)`,A(`The pattern or test to apply to range.`)),z(`sum_range (range, default=criteria_range)`,A(`The range to be summed, if different from range.`))],compute:function(e,t,n){n===void 0&&(n=e);let r=0;return Ca([e,t],(e,t)=>{let i=n[e]?.[t]?.value;typeof i==`number`&&(r+=i)},this.locale),r},isExported:!0},FK={description:A(`Sums a range depending on multiple criteria.`),args:[z(`sum_range (range)`,A(`The range to sum.`)),z(`criteria_range (any, range, repeating)`,A(`Range to check.`)),z(`criterion (string, repeating)`,A(`Criteria to check.`))],compute:function(e,...t){let n=0;return Ca(t,(t,r)=>{let i=e[t]?.[r]?.value;typeof i==`number`&&(n+=i)},this.locale),n},isExported:!0},IK={description:A(`Tangent of an angle provided in radians.`),args:[z(`angle (number)`,A(`The angle to find the tangent of, in radians.`))],compute:function(e){return Math.tan(N(e,this.locale))},isExported:!0},LK={description:A(`Hyperbolic tangent of any real number.`),args:[z(`value (number)`,A(`Any real value to calculate the hyperbolic tangent of.`))],compute:function(e){return Math.tanh(N(e,this.locale))},isExported:!0};function RK(e,t){return t===0?Math.trunc(e):(Number.isInteger(t)||(t=Math.trunc(t)),Math.trunc(e*10**t)/10**t)}let zK={description:A(`Truncates a number.`),args:[z(`value (number)`,A(`The value to be truncated.`)),z(`places (number, default=0)`,A(`The number of significant digits to the right of the decimal point to retain.`))],compute:function(e,t={value:0}){return{value:RK(N(e,this.locale),N(t,this.locale)),format:e?.format}},isExported:!0},BK={description:A(`Rounds a number down to the nearest integer that is less than or equal to it.`),args:[z(`value (number)`,A(`The number to round down to the nearest integer.`))],compute:function(e){return Math.floor(N(e,this.locale))},isExported:!0};var VK=l({AVEDEV:()=>ZK,AVERAGE:()=>QK,AVERAGEA:()=>nq,AVERAGEIF:()=>rq,AVERAGEIFS:()=>iq,AVERAGE_WEIGHTED:()=>tq,CORREL:()=>Eq,COUNT:()=>aq,COUNTA:()=>oq,COVAR:()=>sq,COVARIANCE_P:()=>cq,COVARIANCE_S:()=>lq,FORECAST:()=>uq,GROWTH:()=>dq,INTERCEPT:()=>fq,LARGE:()=>pq,LINEST:()=>mq,LOGEST:()=>hq,MATTHEWS:()=>gq,MAX:()=>_q,MAXA:()=>vq,MAXIFS:()=>yq,MEDIAN:()=>bq,MIN:()=>xq,MINA:()=>Sq,MINIFS:()=>Cq,PEARSON:()=>Tq,PERCENTILE:()=>Dq,PERCENTILE_EXC:()=>Oq,PERCENTILE_INC:()=>kq,POLYFIT_COEFFS:()=>Aq,POLYFIT_FORECAST:()=>jq,QUARTILE:()=>Mq,QUARTILE_EXC:()=>Nq,QUARTILE_INC:()=>Pq,RANK:()=>Fq,RSQ:()=>Iq,SLOPE:()=>Lq,SMALL:()=>Rq,SPEARMAN:()=>zq,STDEV:()=>Bq,STDEVA:()=>Uq,STDEVP:()=>Wq,STDEVPA:()=>Gq,STDEV_P:()=>Vq,STDEV_S:()=>Hq,STEYX:()=>Kq,TREND:()=>qq,VAR:()=>Jq,VARA:()=>Zq,VARP:()=>Qq,VARPA:()=>$q,VAR_P:()=>Yq,VAR_S:()=>Xq});let HK=[{value:!0,label:A(`b is calculated normally`)},{value:!1,label:A(`b is forced to 1`)}],UK=[{value:!1,label:A(`do not return additional regression statistics`)},{value:!0,label:A(`return additional regression statistics`)}],WK=[{value:1,label:A(`order 1 (Linear)`)},{value:2,label:A(`order 2 (Quadratic)`)},{value:3,label:A(`order 3 (Cubic)`)},{value:4,label:A(`order 4 (Quartic)`)},{value:5,label:A(`order 5 (Quintic)`)},{value:6,label:A(`order 6 (Sextic)`)}],GK=[{value:!0,label:A(`Compute intercept`)},{value:!1,label:A(`Force intercept to 0`)}],KK=[{value:0,label:A(`Minimum value`)},{value:1,label:A(`First quartile (25th percentile)`)},{value:2,label:A(`Median value (50th percentile)`)},{value:3,label:A(`Third quartile (75th percentile)`)},{value:4,label:A(`Maximum value`)}];function qK(e,t){let n=[],r=[],i=0,a=0;ca([e],e=>{n.push(e),i+=1}),ca([t],e=>{r.push(e),a+=1}),Ib(i===a,A(`[[FUNCTION_NAME]] has mismatched argument count %s vs %s.`,i,a));let o=[],s=[];for(let e=0;e<i;e++){let t=n[e]?.value,i=r[e]?.value;typeof t==`number`&&typeof i==`number`&&(s.push(t),o.push(i))}return{flatDataX:o,flatDataY:s}}function JK(e,t,n){let{flatDataX:r,flatDataY:i}=qK(e,t),a=i.length;Lb(a),n&&Lb(a-1);let o=0,s=0;for(let e=0;e<a;e++)o+=i[e],s+=r[e];let c=o/a,l=s/a,u=0;for(let e=0;e<a;e++)u+=(i[e]-c)*(r[e]-l);return u/(a-+!!n)}function YK(e,t,n,r){let i=0,a=n?pa:fa,o=a(e,(e,t)=>(i+=1,e+t),0,r);Lb(i),t&&Lb(i-1);let s=o/i;return a(e,(e,t)=>e+(t-s)**2,0,r)/(i-+!!t)}function XK(e,t,n,r){let i=N(t,r);Ib(n?0<=i&&i<=1:0<i&&i<1,A(`Function [[FUNCTION_NAME]] parameter 2 value is out of range.`));let a=[],o,s=0;return ca(e,e=>{let t=e?.value;typeof t==`number`&&(o=wa(a,e,`nextSmaller`,`asc`,a.length,(e,t)=>e[t]),a.splice(o+1,0,t),s++)}),Ib(s!==0,ja),n||Ib(1/(s+1)<=i&&i<=s/(s+1),A(`Function [[FUNCTION_NAME]] parameter 2 value is out of range.`)),Ti(a,i,n)}let ZK={description:A(`Average magnitude of deviations from mean.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){let t=0,n=fa(e,(e,n)=>(t+=1,e+n),0,this.locale);if(t===0)return new Vi(A(`Evaluation of function [[FUNCTION_NAME]] caused a divide by zero error.`));let r=n/t;return fa(e,(e,t)=>e+Math.abs(r-t),0,this.locale)/t},isExported:!0},QK={description:A(`Numerical average value in a dataset, ignoring text.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to consider when calculating the average value.`))],compute:function(...e){return{value:Xb(e,this.locale),format:Wi(e[0])}},isExported:!0},$K=A(`[[FUNCTION_NAME]] has mismatched range sizes.`),eq=A(`[[FUNCTION_NAME]] expects the weight to be positive or equal to 0.`),tq={description:A(`Weighted average.`),args:[z(`values (number, range<number>, repeating)`,A(`Value to average.`)),z(`weights (number, range<number>, repeating)`,A(`Weight for each corresponding value.`))],compute:function(...e){let t=0,n=0;for(let r=0;r<e.length-1;r+=2){let i=e[r],a=e[r+1];if(!zb(i,a))return new M($K);if(Ue(i))for(let e=0;e<i.length;e++)for(let r=0;r<i[0].length;r++){let o=i[e][r].value,s=Ue(a)?a?.[e][r].value:N(a,this.locale),c=typeof o==`number`,l=typeof s==`number`;if(c&&l){if(s<0)return new M(eq);t+=o*s,n+=s;continue}if(c!==l)return new M(A(`[[FUNCTION_NAME]] expects number values.`))}else{let e=N(i,this.locale),r=Ue(a)?a?.[0][0].value:N(a,this.locale);if(typeof r==`number`){if(r<0)return new M(eq);t+=e*r,n+=r}}}return n===0?new Vi(A(`Evaluation of function [[FUNCTION_NAME]] caused a divide by zero error.`)):{value:t/n,format:Wi(e[0])}}},nq={description:A(`Numerical average value in a dataset.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to consider when calculating the average value.`))],compute:function(...e){let t=0,n=pa(e,(e,n)=>(t+=1,e+n),0,this.locale);return t===0?new Vi(A(`Evaluation of function [[FUNCTION_NAME]] caused a divide by zero error.`)):{value:n/t,format:Wi(e[0])}},isExported:!0},rq={description:A(`Average of values depending on criteria.`),args:[z(`criteria_range (number, range<number>)`,A(`The range to check against criterion.`)),z(`criterion (string)`,A(`The pattern or test to apply to criteria_range.`)),z(`average_range (number, range<number>, default=criteria_range)`,A(`The range to average. If not included, criteria_range is used for the average instead.`))],compute:function(e,t,n){let r=I(n===void 0?e:n),i=0,a=0;return Ca([e,t],(e,t)=>{let n=r[e]?.[t]?.value;typeof n==`number`&&(i+=1,a+=n)},this.locale),i===0?new Vi(A(`Evaluation of function [[FUNCTION_NAME]] caused a divide by zero error.`)):a/i},isExported:!0},iq={description:A(`Average of values depending on multiple criteria.`),args:[z(`average_range (range)`,A(`The range to average.`)),z(`criteria_range (any, range, repeating)`,A(`Range to check.`)),z(`criterion (string, repeating)`,A(`Criterion to check.`))],compute:function(e,...t){let n=I(e),r=0,i=0;return Ca(t,(e,t)=>{let a=n[e]?.[t]?.value;typeof a==`number`&&(r+=1,i+=a)},this.locale),r===0?new Vi(A(`Evaluation of function [[FUNCTION_NAME]] caused a divide by zero error.`)):i/r},isExported:!0},aq={description:A(`The number of numeric values in dataset.`),args:[z(`value (number, any, range<number>, repeating)`,A(`Value or range to consider when counting.`))],compute:function(...e){return Qb(e,this.locale)},isExported:!0},oq={description:A(`The number of values in a dataset.`),args:[z(`value (any, range, repeating)`,A(`Value or range to consider when counting.`))],compute:function(...e){return $b(e)},isExported:!0},sq={description:A(`The covariance of a dataset.`),args:[z(`data_y (any, range)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (any, range)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){return JK(e,t,!1)},isExported:!0},cq={description:A(`The covariance of a dataset.`),args:[z(`data_y (any, range)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (any, range)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){return JK(e,t,!1)},isExported:!0},lq={description:A(`The sample covariance of a dataset.`),args:[z(`data_y (any, range)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (any, range)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){return JK(e,t,!0)},isExported:!0},uq={description:A(`Calculates the expected y-value for a specified x based on a linear regression of a dataset.`),args:[z(`x (number, range<number>)`,A(`The value(s) on the x-axis to forecast.`)),z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t,n){let{flatDataX:r,flatDataY:i}=qK(t,n);return r.length===0||i.length===0?new Ri(ja):lx([i],[r],ha(I(e),e=>N(e,this.locale)),!0)},isExported:!0},dq={description:A(`Fits points to exponential growth trend.`),args:[z(`known_data_y (range<number>)`,A(`The array or range containing dependent (y) values that are already known, used to curve fit an ideal exponential growth curve.`)),z(`known_data_x (range<number>, default={1;2;3;...})`,A(`The values of the independent variable(s) corresponding with known_data_y.`)),z(`new_data_x (any, range, default=known_data_x)`,A(`The data points to return the y values for on the ideal curve fit.`)),z(`b (boolean, default=TRUE)`,A(`Given a general exponential form of y = b*m^x for a curve fit, calculates b if TRUE or forces b to be 1 and only calculates the m values if FALSE.`),HK)],compute:function(e,t=[[]],n=[[]],r={value:!0}){return e.length===0||e[0].length===0?new M(Ma(`known_data_y`)):sx(lx(cx(Qi(e,`known_data_y`)),Qi(t,`known_data_x`),Qi(n,`new_data_y`),F(r)))}},fq={description:A(`Compute the intercept of the linear regression.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){let{flatDataX:n,flatDataY:r}=qK(e,t);if(n.length===0||r.length===0)return new Ri(ja);let[[],[i]]=rx([n],[r]);return i},isExported:!0},pq={description:A(`Nth largest element from a data set.`),args:[z(`data (any, range)`,A(`Array or range containing the dataset to consider.`)),z(`n (number)`,A(`The rank from largest to smallest of the element to return.`))],compute:function(e,t){let n=Math.trunc(N(t?.value,this.locale)),r=[],i,a=0;ca([e],e=>{typeof e?.value==`number`&&(i=wa(r,e,`nextSmaller`,`asc`,r.length,(e,t)=>e[t].value),r.splice(i+1,0,e),a++,a>n&&(r.shift(),a--))});let o=r.shift();return o===void 0?new M(ja):a<n?new M(A(`Function [[FUNCTION_NAME]] parameter 2 value (%s) is out of range.`,n)):o},isExported:!0},mq={description:A(`Given partial data about a linear trend, calculates various parameters about the ideal linear trend using the least-squares method.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>, default={1;2;3;...})`,A(`The range representing the array or matrix of independent data.`)),z(`calculate_b (boolean, default=TRUE)`,A(`A flag specifying whether to compute the slope or not`),HK),z(`verbose (boolean, default=FALSE)`,A(`A flag specifying whether to return additional regression statistics or only the linear coefficients and the y-intercept`),UK)],compute:function(e,t=[[]],n={value:!0},r={value:!1}){return e.length===0||e[0].length===0?new M(Ma(`data_y`)):rx(Qi(t,`data_x`),Qi(e,`data_y`),F(n),F(r))},isExported:!0},hq={description:A(`Given partial data about an exponential growth curve, calculates various parameters about the best fit ideal exponential growth curve.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>, optional, default={1;2;3;...})`,A(`The range representing the array or matrix of independent data.`)),z(`calculate_b (boolean, default=TRUE)`,A(`A flag specifying whether to compute the slope or not`),HK),z(`verbose (boolean, default=FALSE)`,A(`A flag specifying whether to return additional regression statistics or only the linear coefficients and the y-intercept`),UK)],compute:function(e,t=[[]],n={value:!0},r={value:!1}){if(e.length===0||e[0].length===0)return new M(Ma(`data_y`));let i=rx(Qi(t,`data_x`),cx(Qi(e,`data_y`)),F(n),F(r));for(let e=0;e<i.length;e++)i[e][0]=Math.exp(i[e][0]);return i},isExported:!0},gq={description:A(`Compute the Matthews correlation coefficient of a dataset.`),args:[z(`data_x (range)`,A(`The range representing the array or matrix of observed data.`)),z(`data_y (range)`,A(`The range representing the array or matrix of predicted data.`))],compute:function(e,t){let n=e.flat(),r=t.flat();if(Yb(n,r),n.length===0||r.length===0)return new Ri(ja);let i=n.length,a=0,o=0,s=0,c=0;for(let e=0;e<i;++e){let t=F(n[e]);t===F(r[e])?t?o++:a++:t?c++:s++}return(o*a-s*c)/Math.sqrt((o+s)*(o+c)*(a+s)*(a+c))},isExported:!1},_q={description:A(`Maximum value in a numeric dataset.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to consider when calculating the maximum value.`))],compute:function(...e){return ex(e,this.locale)},isExported:!0},vq={description:A(`Maximum numeric value in a dataset.`),args:[z(`value (any, range, repeating)`,A(`Value or range to consider when calculating the maximum value.`))],compute:function(...e){let t=pa(e,(e,t)=>Math.max(t,e),-1/0,this.locale);return{value:t===-1/0?0:t,format:Wi(e[0])}},isExported:!0},yq={description:A(`Returns the maximum value in a range of cells, filtered by a set of criteria.`),args:[z(`range (range)`,A(`The range of cells from which the maximum will be determined.`)),z(`criteria_range (any, range, repeating)`,A(`Range to evaluate criteria.`)),z(`criterion (string, repeating)`,A(`Criteria to check.`))],compute:function(e,...t){let n=-1/0;return Ca(t,(t,r)=>{let i=e[t]?.[r]?.value;typeof i==`number`&&(n=n<i?i:n)},this.locale),n===-1/0?0:n},isExported:!0},bq={description:A(`Median value in a numeric dataset.`),args:[z(`value (any, range, repeating)`,A(`Value or range to consider when calculating the median value.`))],compute:function(...e){let t=[];return la(e,e=>{t.push(e)},this.locale),{value:XK(t,{value:.5},!0,this.locale),format:Wi(t[0])}},isExported:!0},xq={description:A(`Minimum value in a numeric dataset.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to consider when calculating the minimum value.`))],compute:function(...e){return tx(e,this.locale)},isExported:!0},Sq={description:A(`Minimum numeric value in a dataset.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to consider when calculating the minimum value.`))],compute:function(...e){let t=pa(e,(e,t)=>Math.min(t,e),1/0,this.locale);return{value:t===1/0?0:t,format:Wi(e[0])}},isExported:!0},Cq={description:A(`Returns the minimum value in a range of cells, filtered by a set of criteria.`),args:[z(`range (range)`,A(`The range of cells from which the minimum will be determined.`)),z(`criteria_range (any, range, repeating)`,A(`Range to evaluate criteria.`)),z(`criterion (string, repeating)`,A(`Criterion to check.`))],compute:function(e,...t){let n=1/0;return Ca(t,(t,r)=>{let i=e[t]?.[r]?.value;typeof i==`number`&&(n=n>i?i:n)},this.locale),n===1/0?0:n},isExported:!0};function wq(e,t){let{flatDataX:n,flatDataY:r}=qK(e,t);if(n.length===0||r.length===0)return new Ri(ja);let i=n.length,a=0,o=0,s=0,c=0,l=0;for(let e=0;e<i;e++){let t=n[e],i=r[e];a+=t,o+=i,s+=t*i,c+=t*t,l+=i*i}return(i*s-a*o)/Math.sqrt((i*c-a*a)*(i*l-o*o))}let Tq={description:A(`Compute the Pearson product-moment correlation coefficient of a dataset.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){return wq(e,t)},isExported:!0},Eq=Tq,Dq={description:A(`Value at a given percentile of a dataset.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`percentile (number)`,A(`The percentile whose value within data will be calculated and returned.`))],compute:function(e,t){return kq.compute.bind(this)(e,t)},isExported:!0},Oq={description:A(`Value at a given percentile of a dataset exclusive of 0 and 1.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`percentile (number)`,A(`The percentile, exclusive of 0 and 1, whose value within 'data' will be calculated and returned.`))],compute:function(e,t){return{value:XK([e],t,!1,this.locale),format:Wi(e)}},isExported:!0},kq={description:A(`Value at a given percentile of a dataset.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`percentile (number)`,A(`The percentile whose value within data will be calculated and returned.`))],compute:function(e,t){return{value:XK([e],t,!0,this.locale),format:Wi(e)}},isExported:!0},Aq={description:A(`Compute the coefficients of polynomial regression of the dataset.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`)),z(`order (number)`,A(`The order of the polynomial to fit the data, between 1 and 6.`),WK),z(`intercept (boolean, default=TRUE)`,A(`A flag specifying whether to compute the intercept or not.`),GK)],compute:function(e,t,n,r={value:!0}){let{flatDataX:i,flatDataY:a}=qK(e,t);return i.length===0||a.length===0?new Ri(ja):ix(a,i,N(n,this.locale),F(r))},isExported:!1},jq={description:A(`Predict value by computing a polynomial regression of the dataset.`),args:[z(`x (number, range<number>)`,A(`The value(s) on the x-axis to forecast.`)),z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`)),z(`order (number)`,A(`The order of the polynomial to fit the data, between 1 and 6.`),WK),z(`intercept (boolean, default=TRUE)`,A(`A flag specifying whether to compute the intercept or not.`),GK)],compute:function(e,t,n,r,i={value:!0}){let a=N(r,this.locale),{flatDataX:o,flatDataY:s}=qK(t,n);if(o.length===0||s.length===0)return new Ri(ja);let c=ix(s,o,a,F(i)).flat();return ha(I(e),e=>ox(c,N(e,this.locale),a))},isExported:!1},Mq={description:A(`Value nearest to a specific quartile of a dataset.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`quartile_number (number)`,A(`Which quartile value to return.`),KK)],compute:function(e,t){return Pq.compute.bind(this)(e,t)},isExported:!0},Nq={description:A(`Value nearest to a specific quartile of a dataset exclusive of 0 and 4.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`quartile_number (number)`,A(`Which quartile value, exclusive of 0 and 4, to return.`),[{value:1,label:A(`First quartile (25th percentile)`)},{value:2,label:A(`Median value (50th percentile)`)},{value:3,label:A(`Third quartile (75th percentile)`)}])],compute:function(e,t){let n={value:.25*Math.trunc(N(t,this.locale))};return{value:XK([e],n,!1,this.locale),format:Wi(e)}},isExported:!0},Pq={description:A(`Value nearest to a specific quartile of a dataset.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`quartile_number (number)`,A(`Which quartile value to return.`),KK)],compute:function(e,t){let n={value:.25*Math.trunc(N(t,this.locale))};return{value:XK([e],n,!0,this.locale),format:Wi(e)}},isExported:!0},Fq={description:A(`Returns the rank of a specified value in a dataset.`),args:[z(`value (number)`,A(`The value whose rank will be determined.`)),z(`data (range)`,A(`The range containing the dataset to consider.`)),z(`is_ascending (boolean, default=FALSE)`,A(`Whether to consider the values in data in descending or ascending order.`),[{value:!1,label:A(`Descending`)},{value:!0,label:A(`Ascending`)}])],compute:function(e,t,n={value:!1}){let r=F(n),i=N(e,this.locale),a=1,o=!1;for(let e of t)for(let t of e){if(typeof t.value!=`number`)continue;let e=N(t,this.locale);e===i?o=!0:e>i!==r&&a++}return o?a:new Ri(A(`Value not found in the given data.`))},isExported:!0},Iq={description:A(`Compute the square of r, the Pearson product-moment correlation coefficient of a dataset.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){let n=wq(e,t);if(n instanceof Error)throw n;return n**2},isExported:!0},Lq={description:A(`Compute the slope of the linear regression.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){let{flatDataX:n,flatDataY:r}=qK(e,t);if(n.length===0||r.length===0)return new Ri(ja);let[[i]]=rx([n],[r]);return i},isExported:!0},Rq={description:A(`Nth smallest element in a data set.`),args:[z(`data (any, range)`,A(`The array or range containing the dataset to consider.`)),z(`n (number)`,A(`The rank from smallest to largest of the element to return.`))],compute:function(e,t){let n=Math.trunc(N(t?.value,this.locale)),r=[],i,a=0;ca([e],e=>{typeof e?.value==`number`&&(i=wa(r,e,`nextSmaller`,`asc`,r.length,(e,t)=>e[t].value),r.splice(i+1,0,e),a++,a>n&&(r.pop(),a--))});let o=r.pop();return o===void 0?new M(ja):a<n?new M(A(`Function [[FUNCTION_NAME]] parameter 2 value (%s) is out of range.`,n)):o},isExported:!0},zq={description:A(`Compute the Spearman rank correlation coefficient of a dataset.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){let{flatDataX:n,flatDataY:r}=qK(t,e);if(n.length===0||r.length===0)return new Ri(ja);let i=n.length,a=n.map((e,t)=>[e,r[t]]);a.sort((e,t)=>e[0]-t[0]);for(let e=0;e<i;++e)a[e][0]=e;a.sort((e,t)=>e[1]-t[1]);let o=0;for(let e=0;e<i;++e)o+=(a[e][0]-e)**2;return 1-6*o/(i**3-i)},isExported:!1},Bq={description:A(`Standard deviation.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){return Math.sqrt(Jq.compute.bind(this)(...e))},isExported:!0},Vq={description:A(`Standard deviation of entire population.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the population.`))],compute:function(...e){return Math.sqrt(Yq.compute.bind(this)(...e))},isExported:!0},Hq={description:A(`Standard deviation.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){return Math.sqrt(Xq.compute.bind(this)(...e))},isExported:!0},Uq={description:A(`Standard deviation of sample (text as 0).`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){return Math.sqrt(Zq.compute.bind(this)(...e))},isExported:!0},Wq={description:A(`Standard deviation of entire population.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the population.`))],compute:function(...e){return Math.sqrt(Qq.compute.bind(this)(...e))},isExported:!0},Gq={description:A(`Standard deviation of entire population (text as 0).`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the population.`))],compute:function(...e){return Math.sqrt($q.compute.bind(this)(...e))},isExported:!0},Kq={description:A(`Calculates the standard error of the predicted y-value for each x in the regression of a dataset.`),args:[z(`data_y (range<number>)`,A(`The range representing the array or matrix of dependent data.`)),z(`data_x (range<number>)`,A(`The range representing the array or matrix of independent data.`))],compute:function(e,t){let{flatDataX:n,flatDataY:r}=qK(e,t);return n.length===0||r.length===0?new Ri(ja):rx([n],[r],!0,!0)[1][2]},isExported:!0},qq={description:A(`Fits points to linear trend derived via least-squares.`),args:[z(`known_data_y (number, range<number>)`,A(`The array or range containing dependent (y) values that are already known, used to curve fit an ideal linear trend.`)),z(`known_data_x (number, range<number>, optional, default={1;2;3;...})`,A(`The values of the independent variable(s) corresponding with known_data_y.`)),z(`new_data_x (number, range<number>, optional, default=known_data_x)`,A(`The data points to return the y values for on the ideal curve fit.`)),z(`b (boolean, optional, default=TRUE)`,A(`Given a general linear form of y = m*x+b for a curve fit, calculates b if TRUE or forces b to be 0 and only calculates the m values if FALSE, i.e. forces the curve fit to pass through the origin.`),HK)],compute:function(e,t=[[]],n=[[]],r={value:!0}){return e.length===0||e[0].length===0?new M(Ma(`known_data_y`)):lx(Qi(e,`known_data_y`),Qi(t,`known_data_x`),Qi(n,`new_data_y`),F(r))}},Jq={description:A(`Variance.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){return YK(e,!0,!1,this.locale)},isExported:!0},Yq={description:A(`Variance of entire population.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the population.`))],compute:function(...e){return YK(e,!1,!1,this.locale)},isExported:!0},Xq={description:A(`Variance.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){return YK(e,!0,!1,this.locale)},isExported:!0},Zq={description:A(`Variance of sample (text as 0).`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the sample.`))],compute:function(...e){return YK(e,!0,!0,this.locale)},isExported:!0},Qq={description:A(`Variance of entire population.`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the population.`))],compute:function(...e){return YK(e,!1,!1,this.locale)},isExported:!0},$q={description:A(`Variance of entire population (text as 0).`),args:[z(`value (number, range<number>, repeating)`,A(`Value or range to include in the population.`))],compute:function(...e){return YK(e,!1,!0,this.locale)},isExported:!0};var eJ=l({DAVERAGE:()=>rJ,DCOUNT:()=>iJ,DCOUNTA:()=>aJ,DGET:()=>oJ,DMAX:()=>sJ,DMIN:()=>cJ,DPRODUCT:()=>lJ,DSTDEV:()=>uJ,DSTDEVP:()=>dJ,DSUM:()=>fJ,DVAR:()=>pJ,DVARP:()=>mJ});function tJ(e,t,n,r){let i=new Map,a=e.length;for(let t=a-1;t>=0;t--)i.set(P(e[t][0]).toUpperCase(),t);let o=t?.value;if(typeof o!=`number`&&typeof o!=`string`)throw new M(A(`The field must be a number or a string`));let s;if(typeof o==`number`){if(s=Math.trunc(o)-1,s<0||a-1<s)throw new M(A(`The field (%(fieldValue)s) must be one of %(dimRowDB)s or must be a number between 1 and %s inclusive.`,{fieldValue:o.toString(),dimRowDB:a.toString()}))}else{let e=P(t).toUpperCase();if(s=i.get(e)??-1,s===-1)throw new M(A(`The field (%s) must be one of %s.`,P(t),[...i.keys()].toString()))}let c=n[0].length;if(c<2)throw new M(A(`The criteria range contains %s row, it must be at least 2 rows.`,c.toString()));let l=new Set,u=e[0].length;for(let t=1;t<c;t++){let a=[],o=!0;for(let r=0;r<n.length;r++){let s=P(n[r][0]).toUpperCase(),c=i.get(s),l=n[r][t];if(l.value!==null)if(c!==void 0)a.push([e[c].slice(1,u)]),a.push(l);else{o=!1;break}}if(o)if(a.length>0)Ca(a,(e,t)=>{l.add(t)},r,!0);else{l=new Set(Array(u-1).keys());break}}let d=e[s];return[...l].map(e=>d[e+1])}let nJ=[z(`database (range)`,A(`The array or range containing the data to consider, structured in such a way that the first row contains the labels for each column's values.`)),z(`field (number, string)`,A(`Indicates which column in database contains the values to be extracted and operated on.`)),z(`criteria (range)`,A(`An array or range containing zero or more criteria to filter the database values by before operating.`))],rJ={description:A(`Average of a set of values from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return QK.compute.bind(this)([r])},isExported:!0},iJ={description:A(`Counts values from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return aq.compute.bind(this)([r])},isExported:!0},aJ={description:A(`Counts values and text from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return oq.compute.bind(this)([r])},isExported:!0},oJ={description:A(`Single value from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return r.length===1?r[0]:new M(A(`More than one match found in DGET evaluation.`))},isExported:!0},sJ={description:A(`Maximum of values from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return _q.compute.bind(this)([r])},isExported:!0},cJ={description:A(`Minimum of values from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return xq.compute.bind(this)([r])},isExported:!0},lJ={description:A(`Product of values from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return gK.compute.bind(this)([r])},isExported:!0},uJ={description:A(`Standard deviation of population sample from table.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return Bq.compute.bind(this)([r])},isExported:!0},dJ={description:A(`Standard deviation of entire population from table.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return Wq.compute.bind(this)([r])},isExported:!0},fJ={description:A(`Sum of values from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return NK.compute.bind(this)([r])},isExported:!0},pJ={description:A(`Variance of population sample from table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return Jq.compute.bind(this)([r])},isExported:!0},mJ={description:A(`Variance of a population from a table-like range.`),args:nJ,compute:function(e,t,n){let r=tJ(e,t,n,this.locale);return Qq.compute.bind(this)([r])},isExported:!0},hJ=A(`The cashflow_amounts and cashflow_dates ranges must have the same dimensions.`),gJ=A(`There must be both positive and negative values in cashflow_amounts.`),_J=e=>A(`The cost (%s) must be positive or null.`,e),vJ=e=>A(`The cost (%s) must be strictly positive.`,e),yJ=e=>A(`The frequency (%s) must be one of %s`,e,[1,2,4].toString()),bJ=e=>A(`The day_count_convention (%s) must be between 0 and 4 inclusive.`,e),xJ=e=>A(`The depreciation factor (%s) must be strictly positive.`,e),SJ=e=>A(`The discount (%s) must be different from -1.`,e),CJ=e=>A(`The discount (%s) must be strictly positive.`,e),wJ=e=>A(`The discount (%s) must be smaller than 1.`,e),TJ=e=>A(`The effective_rate (%s) must be strictly positive.`,e),EJ=e=>A(`The end_period (%s) must be positive or null.`,e),DJ=(e,t)=>A(`The end_period (%(end)s) must be smaller or equal to the life (%(life)s).`,{end:e,life:t}),OJ=e=>A(`All the dates should be greater or equal to the first date in cashflow_dates (%s).`,e),kJ=(e,t)=>A(`The first_period (%(first)s) must be smaller or equal to the last_period (%(last)s).`,{first:e,last:t}),AJ=e=>A(`The first_period (%s) must be strictly positive.`,e),jJ=e=>A(`The future_value (%s) must be strictly positive.`,e),MJ=e=>A(`The investment (%s) must be strictly positive.`,e),NJ=e=>A(`The issue (%s) must be positive or null.`,e),PJ=(e,t)=>A(`The last_period (%(last)s) must be smaller or equal to the number_of_periods (%(nPeriods)s).`,{last:e,nPeriods:t}),FJ=e=>A(`The last_period (%s) must be strictly positive.`,e),IJ=e=>A(`The life (%s) must be strictly positive.`,e),LJ=(e,t)=>A(`The maturity (%(maturity)s) must be strictly greater than the settlement (%(settlement)s).`,{maturity:t,settlement:e}),RJ=e=>A(`The month (%s) must be between 1 and 12 inclusive.`,e),zJ=e=>A(`The nominal_rate (%s) must be strictly positive.`,e),BJ=e=>A(`The number_of_periods (%s) must be different from zero.`,e),VJ=e=>A(`The number_of_periods (%s) must be strictly positive.`,e),HJ=e=>A(`The period must be between 1 and number_of_periods (%s)`,e),UJ=(e,t)=>A(`The period (%(period)s) must be less than or equal to %(lifeLimit)s.`,{period:e,lifeLimit:t}),WJ=e=>A(`The period (%s) must be positive or null.`,e),GJ=e=>A(`The periods_by_year (%s) must be strictly positive.`,e),KJ=(e,t)=>A(`The period (%(period)s) must be less than or equal life (%(life)s).`,{period:e,life:t}),qJ=e=>A(`The period (%s) must be strictly positive.`,e),JJ=e=>A(`The present_value (%s) must be strictly positive.`,e),YJ=e=>A(`The price (%s) must be strictly positive.`,e),XJ=(e,t)=>A(`The purchase_date (%(purchaseDate)s) must be before the first_period_end (%(firstPeriodEnd)s).`,{purchaseDate:e,firstPeriodEnd:t}),ZJ=e=>A(`The purchase_date (%s) must be positive or null.`,e),QJ=e=>A(`The rate_guess (%s) must be strictly greater than -1.`,e),$J=e=>A(`The rate (%s) must be positive or null.`,e),eY=e=>A(`The rate (%s) must be strictly positive.`,e),tY=e=>A(`The redemption (%s) must be strictly positive.`,e),nY=e=>A(`The salvage (%s) must be positive or null.`,e),rY=(e,t)=>A(`The salvage (%(salvage)s) must be smaller or equal than the cost (%(cost)s).`,{salvage:e,cost:t}),iY=(e,t)=>A(`The settlement date (%(settlement)s) must be greater or equal to the issue date (%(issue)s).`,{settlement:e,issue:t}),aY=(e,t)=>A(`The settlement date (%(settlement)s) must at most one year after the maturity date (%(maturity)s).`,{settlement:e,maturity:t}),oY=(e,t)=>A(`The settlement date (%(settlement)s) must be strictly greater than the issue date (%(issue)s).`,{settlement:e,issue:t}),sY=e=>A(`The start_period (%s) must be positive or null.`,e),cY=(e,t)=>A(`The start_period (%(start)s) must be smaller or equal to the end_period (%(end)s).`,{start:e,end:t}),lY=e=>A(`The unit (%s) must be strictly positive.`,e),uY=e=>A(`The yield (%s) must be positive or null.`,e);function dY(e){return e.some(e=>e>0)&&e.some(e=>e<0)}function fY(e){return![0,1,2,3,4].includes(e)}function pY(e){return![1,2,4].includes(e)}function mY(e,t,n){let r=aa(e,n),i=aa(t,n),a=aa(e,n);return a.setFullYear(r.getFullYear()+1),i.getTime()<=a.getTime()}let hY=[{value:0,label:A(`US (NASD) 30/360`)},{value:1,label:A(`Actual/Actual`)},{value:2,label:A(`Actual/360`)},{value:3,label:A(`Actual/365`)},{value:4,label:A(`European 30/360`)}];var gY=l({DATE:()=>vY,DATEDIF:()=>yY,DATEVALUE:()=>bY,DAY:()=>xY,DAYS:()=>SY,DAYS360:()=>CY,EDATE:()=>wY,EOMONTH:()=>TY,HOUR:()=>EY,ISOWEEKNUM:()=>DY,MINUTE:()=>OY,MONTH:()=>kY,MONTH_END:()=>KY,MONTH_START:()=>GY,NETWORKDAYS:()=>AY,NETWORKDAYS_INTL:()=>NY,NOW:()=>PY,QUARTER:()=>qY,QUARTER_END:()=>YY,QUARTER_START:()=>JY,SECOND:()=>FY,TIME:()=>IY,TIMEVALUE:()=>LY,TODAY:()=>RY,WEEKDAY:()=>zY,WEEKNUM:()=>BY,WORKDAY:()=>VY,WORKDAY_INTL:()=>HY,YEAR:()=>UY,YEARFRAC:()=>WY,YEAR_END:()=>ZY,YEAR_START:()=>XY}),_Y=function(e){return e.WHOLE_YEARS=`Y`,e.WHOLE_MONTHS=`M`,e.WHOLE_DAYS=`D`,e.DAYS_WITHOUT_WHOLE_MONTHS=`MD`,e.MONTH_WITHOUT_WHOLE_YEARS=`YM`,e.DAYS_BETWEEN_NO_MORE_THAN_ONE_YEAR=`YD`,e}(_Y||{});let vY={description:A(`Converts year/month/day into a date.`),args:[z(`year (number)`,A(`The year component of the date.`)),z(`month (number)`,A(`The month component of the date.`)),z(`day (number)`,A(`The day component of the date.`))],compute:function(e,t,n){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=Math.trunc(N(n,this.locale));if(r<0||r>9999)return new M(A(`The year (%s) must be between 0 and 9999 inclusive.`,r.toString()));r<1900&&(r+=1900);let o=ri(new k(r,i-1,a));return o<0?new M(A(`The function [[FUNCTION_NAME]] result must be greater than or equal 01/01/1900.`)):{value:o,format:this.locale.dateFormat}},isExported:!0},yY={description:A(`Calculates the number of days, months, or years between two dates.`),args:[z(`start_date (date)`,A(`The start date to consider in the calculation. Must be a reference to a cell containing a DATE, a function returning a DATE type, or a number.`)),z(`end_date (date)`,A(`The end date to consider in the calculation. Must be a reference to a cell containing a DATE, a function returning a DATE type, or a number.`)),z(`unit (string)`,A(`A text abbreviation for unit of time.`),[{value:`Y`,label:A(`The number of whole years between start_date and end_date`)},{value:`M`,label:A(`The number of whole months between start_date and end_date`)},{value:`D`,label:A(`The number of days between start_date and end_date`)},{value:`MD`,label:A(`The number of days between start_date and end_date after subtracting whole months`)},{value:`YM`,label:A(`The number of whole months between start_date and end_date after subtracting whole years`)},{value:`YD`,label:A(`The number of days between start_date and end_date, assuming start_date and end_date were no more than one year apart`)}])],compute:function(e,t,n){let r=P(n).toUpperCase();if(!Object.values(_Y).includes(r))return new M(Xi(Object.values(_Y),P(n)));let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=ni(i),s=ni(a);if(a<i)return new M(A(`start_date (%s) should be on or before end_date (%s).`,o.toLocaleDateString(),s.toLocaleDateString()));switch(r){case _Y.WHOLE_YEARS:return fi(o,s);case _Y.WHOLE_MONTHS:return ui(o,s);case _Y.WHOLE_DAYS:return di(o,s);case _Y.MONTH_WITHOUT_WHOLE_YEARS:return ui(o,s)-fi(o,s)*12;case _Y.DAYS_WITHOUT_WHOLE_MONTHS:let e=s.getDate()-o.getDate();return e<0&&(e=ai(new k(s.getFullYear(),s.getMonth()-1,1))-Math.abs(e)),e;case _Y.DAYS_BETWEEN_NO_MORE_THAN_ONE_YEAR:{if(pi(i,a))return di(o,s);let e=new k(o.getFullYear(),s.getMonth(),s.getDate()),t=di(o,e);return t<0&&(e.setFullYear(o.getFullYear()+1),t=di(o,e)),t}}},isExported:!0},bY={description:A(`Converts a date string to a date value.`),args:[z(`date_string (string)`,A(`The string representing the date.`))],compute:function(e){let t=P(e),n=Kr(t,this.locale);return n===null?new M(A(`The date_string (%s) cannot be parsed to date/time.`,t.toString())):Math.trunc(n.value)},isExported:!0},xY={description:A(`Day of the month that a specific date falls on.`),args:[z(`date (string)`,A(`The date from which to extract the day.`))],compute:function(e){return aa(e,this.locale).getDate()},isExported:!0},SY={description:A(`Number of days between two dates.`),args:[z(`end_date (date)`,A(`The end of the date range.`)),z(`start_date (date)`,A(`The start of the date range.`))],compute:function(e,t){let n=aa(e,this.locale),r=aa(t,this.locale),i=n.getTime()-r.getTime();return Math.round(i/Mr)},isExported:!0},CY={description:A(`Number of days between two dates on a 360-day year (months of 30 days).`),args:[z(`start_date (date)`,A(`The start date to consider in the calculation.`)),z(`end_date (date)`,A(`The end date to consider in the calculation.`)),z(`method (boolean, default=false)`,A(`An indicator of what day count method to use.`),[{value:!1,label:A(`U.S. NASD method (default)`)},{value:!0,label:A(`European method`)}])],compute:function(e,t,n={value:!1}){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=li(r,i,F(n)?4:0);return Math.sign(i-r)*Math.round(a*360)},isExported:!0},wY={description:A(`Date a number of months before/after another date.`),args:[z(`start_date (date)`,A(`The date from which to calculate the result.`)),z(`months (number)`,A(`The number of months before (negative) or after (positive) 'start_date' to calculate.`))],compute:function(e,t){return{value:ri(si(aa(e,this.locale),Math.trunc(N(t,this.locale)),!1)),format:this.locale.dateFormat}},isExported:!0},TY={description:A(`Last day of a month before or after a date.`),args:[z(`start_date (date)`,A(`The date from which to calculate the result.`)),z(`months (number)`,A(`The number of months before (negative) or after (positive) 'start_date' to consider.`))],compute:function(e,t){let n=aa(e,this.locale),r=Math.trunc(N(t,this.locale));return{value:ri(new k(n.getFullYear(),n.getMonth()+r+1,0)),format:this.locale.dateFormat}},isExported:!0},EY={description:A(`Hour component of a specific time.`),args:[z(`time (date)`,A(`The time from which to calculate the hour component.`))],compute:function(e){return aa(e,this.locale).getHours()},isExported:!0},DY={description:A(`ISO week number of the year.`),args:[z(`date (date)`,A(`The date for which to determine the ISO week number. Must be a reference to a cell containing a date, a function returning a date type, or a number.`))],compute:function(e){let t=aa(e,this.locale),n=t.getFullYear(),r=1;for(;new k(n,0,r).getDay()!==4;)r+=1;let i=new k(n,0,r-3),a=31;for(;new k(n,11,a).getDay()!==4;)--a;let o=new k(n,11,a+3),s;s=i.getTime()<=t.getTime()?t.getTime()<=o.getTime()?0:1:-1;let c;switch(s){case 0:c=i;break;case 1:c=new k(n,11,a+3+1);break;case-1:let e=1;for(;new k(n-1,0,e).getDay()!==4;)e+=1;c=new k(n-1,0,e-3);break}let l=(t.getTime()-c.getTime())/Mr;return Math.floor(l/7)+1},isExported:!0},OY={description:A(`Minute component of a specific time.`),args:[z(`time (date)`,A(`The time from which to calculate the minute component.`))],compute:function(e){return aa(e,this.locale).getMinutes()},isExported:!0},kY={description:A(`Month of the year a specific date falls in`),args:[z(`date (date)`,A(`The date from which to extract the month.`))],compute:function(e){return aa(e,this.locale).getMonth()+1},isExported:!0},AY={description:A(`Net working days between two provided days.`),args:[z(`start_date (date)`,A(`The start date of the period from which to calculate the number of net working days.`)),z(`end_date (date)`,A(`The end date of the period from which to calculate the number of net working days.`)),z(`holidays (date, range<date>, optional)`,A(`A range or array constant containing the date serial numbers to consider holidays.`))],compute:function(e,t,n){return NY.compute.bind(this)(e,t,{value:1},n)},isExported:!0};function jY(e){let t=e?.value;if(typeof t==`string`){Ib(t.length===7&&[...t].every(e=>e===`0`||e===`1`),A(`When weekend is a string (%s) it must be composed of "0" or "1".`,t));let e=[];for(let n=0;n<7;n++)t[n]===`1`&&e.push((n+1)%7);return e}if(typeof t==`number`)return Ib(1<=t&&t<=7||11<=t&&t<=17,A(`The weekend (%s) must be a string or a number in the range 1-7 or 11-17.`,t.toString())),t<=7?[t-2==-1?6:t-2,t-1]:[t-11];throw new M(A(`The weekend must be a number or a string.`))}let MY=[{value:1,label:A(`Saturday/Sunday are weekends`)},{value:2,label:A(`Sunday/Monday are weekends`)},{value:3,label:A(`Monday/Tuesday are weekends`)},{value:4,label:A(`Tuesday/Wednesday are weekends`)},{value:5,label:A(`Wednesday/Thursday are weekends`)},{value:6,label:A(`Thursday/Friday are weekends`)},{value:7,label:A(`Friday/Saturday are weekends`)},{value:11,label:A(`Sunday is the only weekend`)},{value:12,label:A(`Monday is the only weekend`)},{value:13,label:A(`Tuesday is the only weekend`)},{value:14,label:A(`Wednesday is the only weekend`)},{value:15,label:A(`Thursday is the only weekend`)},{value:16,label:A(`Friday is the only weekend`)},{value:17,label:A(`Saturday is the only weekend`)}],NY={description:A(`Net working days between two dates (specifying weekends).`),args:[z(`start_date (date)`,A(`The start date of the period from which to calculate the number of net working days.`)),z(`end_date (date)`,A(`The end date of the period from which to calculate the number of net working days.`)),z(`weekend (any, default=1)`,A(`A number or string representing which days of the week are considered weekends.`),MY),z(`holidays (date, range<date>, optional)`,A(`A range or array constant containing the dates to consider as holidays.`))],compute:function(e,t,n={value:1},r){let i=aa(e,this.locale),a=aa(t,this.locale),o=jY(n),s=new Set;r!==void 0&&ca([r],e=>{let t=aa(e,this.locale);s.add(t.getTime())});let c=i.getTime()>a.getTime(),l=k.fromTimestamp((c?i:a).getTime()),u=k.fromTimestamp((c?a:i).getTime()),d=l.getTime(),f=u.getTime(),p=0;for(;f<=d;)!o.includes(u.getDay())&&!s.has(f)&&(p+=1),u.setDate(u.getDate()+1),f=u.getTime();return c?-p:p},isExported:!0},PY={description:A(`Current date and time as a date value.`),args:[],compute:function(){let e=k.now(),t=e.getTime()-jr.getTime(),n=e.getHours()/24+e.getMinutes()/1440+e.getSeconds()/86400;return{value:Math.floor(t/Mr)+n,format:Ig(this.locale)}},isExported:!0},FY={description:A(`Minute component of a specific time.`),args:[z(`time (date)`,A(`The time from which to calculate the second component.`))],compute:function(e){return aa(e,this.locale).getSeconds()},isExported:!0},IY={description:A(`Converts hour/minute/second into a time.`),args:[z(`hour (number)`,A(`The hour component of the time.`)),z(`minute (number)`,A(`The minute component of the time.`)),z(`second (number)`,A(`The second component of the time.`))],compute:function(e,t,n){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=Math.trunc(N(n,this.locale));return i+=Math.floor(a/60),a=a%60+(a<0?60:0),r+=Math.floor(i/60),i=i%60+(i<0?60:0),r%=24,r<0?new M(A(`The function [[FUNCTION_NAME]] result cannot be negative`)):{value:r/24+i/1440+a/(1440*60),format:this.locale.timeFormat}},isExported:!0},LY={description:A(`Converts a time string into its serial number representation.`),args:[z(`time_string (string)`,A(`The string that holds the time representation.`))],compute:function(e){let t=P(e),n=Kr(t,this.locale);if(n===null)return new M(A(`The time_string (%s) cannot be parsed to date/time.`,t));let r=n.value-Math.trunc(n.value);return r<0?1+r:r},isExported:!0},RY={description:A(`Current date as a date value.`),args:[],compute:function(){let e=k.now();return{value:ri(new k(e.getFullYear(),e.getMonth(),e.getDate())),format:this.locale.dateFormat}},isExported:!0},zY={description:A(`Day of the week of the date provided (as number).`),args:[z(`date (date)`,A(`The date for which to determine the day of the week. Must be a reference to a cell containing a date, a function returning a date type, or a number.`)),z(`type (number, default=1)`,A(`A number indicating which numbering system to use to represent weekdays. By default, counts starting with Sunday = 1.`),[{value:1,label:A(`Numbers 1 (Sunday) trough 7 (Saturday)`)},{value:2,label:A(`Numbers 1 (Monday) trough 7 (Sunday)`)},{value:3,label:A(`Numbers 0 (Monday) trough 6 (Sunday)`)},{value:11,label:A(`Numbers 1 (Monday) trough 7 (Sunday)`)},{value:12,label:A(`Numbers 1 (Tuesday) trough 7 (Monday)`)},{value:13,label:A(`Numbers 1 (Wednesday) trough 7 (Tuesday)`)},{value:14,label:A(`Numbers 1 (Thursday) trough 7 (Wednesday)`)},{value:15,label:A(`Numbers 1 (Friday) trough 7 (Thursday)`)},{value:16,label:A(`Numbers 1 (Saturday) trough 7 (Friday)`)},{value:17,label:A(`Numbers 1 (Sunday) trough 7 (Saturday)`)}])],compute:function(e,t={value:1}){let n=aa(e,this.locale),r=Math.round(N(t,this.locale)),i=n.getDay();if(!(1<=r&&r<=3)&&!(11<=r&&r<=17))return new M(A(`The type (%s) must be between 1 and 3 or between 11 and 17.`,r));switch(r){case 1:return i+1;case 2:return i===0?7:i;case 3:return i===0?6:i-1}let a=r-10,o=(i+1-a+7)%7;return o===0?7:o},isExported:!0},BY={description:A(`Week number of the year.`),args:[z(`date (date)`,A(`The date for which to determine the week number. Must be a reference to a cell containing a date, a function returning a date type, or a number.`)),z(`type (number, default=1)`,A(`A number representing the day that a week starts on. Sunday = 1.`),[{value:1,label:A(`Sunday`)},{value:2,label:A(`Monday`)},{value:11,label:A(`Monday`)},{value:12,label:A(`Tuesday`)},{value:13,label:A(`Wednesday`)},{value:14,label:A(`Thursday`)},{value:15,label:A(`Friday`)},{value:16,label:A(`Saturday`)},{value:17,label:A(`Sunday`)},{value:21,label:A(`ISO week number (Monday as first day of the week)`)}])],compute:function(e,t={value:1}){let n=aa(e,this.locale),r=Math.round(N(t,this.locale));if(![1,2,11,12,13,14,15,16,17,21].includes(r))return new M(A(`The type (%s) is out of range.`,r.toString()));if(r===21)return DY.compute.bind(this)(e);let i;i=r===1||r===2?r-1:r-10==7?0:r-10;let a=n.getFullYear(),o=1,s=new k(a,0,o);for(;s.getDay()!==i;)o+=1,s=new k(a,0,o);let c=(n.getTime()-s.getTime())/Mr;return c<0?1:Math.floor(c/7)+(o===1?1:2)},isExported:!0},VY={description:A(`Date after a number of workdays.`),args:[z(`start_date (date)`,A(`The date from which to begin counting.`)),z(`num_days (number)`,A(`The number of working days to advance from start_date. If negative, counts backwards.`)),z(`holidays (date, range<date>, optional)`,A(`A range or array constant containing the dates to consider holidays.`))],compute:function(e,t,n={value:null}){return HY.compute.bind(this)(e,t,{value:1},n)},isExported:!0},HY={description:A(`Date after a number of workdays (specifying weekends).`),args:[z(`start_date (date)`,A(`The date from which to begin counting.`)),z(`num_days (number)`,A(`The number of working days to advance from start_date. If negative, counts backwards.`)),z(`weekend (any, default=1)`,A(`A number or string representing which days of the week are considered weekends.`),MY),z(`holidays (date, range<date>, optional)`,A(`A range or array constant containing the dates to consider holidays.`))],compute:function(e,t,n={value:1},r){let i=aa(e,this.locale),a=Math.trunc(N(t,this.locale));if(n.value===`1111111`)return new M(A(`The weekend must be different from '1111111'.`));let o=jY(n),s=new Set;r!==void 0&&ca([r],e=>{let t=aa(e,this.locale);s.add(t.getTime())});let c=k.fromTimestamp(i.getTime()),l=c.getTime(),u=Math.sign(a),d=Math.abs(a);for(;d>0;)c.setDate(c.getDate()+u),l=c.getTime(),!o.includes(c.getDay())&&!s.has(l)&&--d;let f=l-jr.getTime();return{value:Math.round(f/Mr),format:this.locale.dateFormat}},isExported:!0},UY={description:A(`Year specified by a given date.`),args:[z(`date (date)`,A(`The date from which to extract the year.`))],compute:function(e){return aa(e,this.locale).getFullYear()},isExported:!0},WY={description:A(`Exact number of years between two dates.`),args:[z(`start_date (date)`,A(`The start date to consider in the calculation. Must be a reference to a cell containing a date, a function returning a date type, or a number.`)),z(`end_date (date)`,A(`The end date to consider in the calculation. Must be a reference to a cell containing a date, a function returning a date type, or a number.`)),z(`day_count_convention (number, default=0)`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n={value:0}){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=Math.trunc(N(n,this.locale));return r<0?new M(A(`The start_date (%s) must be positive or null.`,r)):i<0?new M(A(`The end_date (%s) must be positive or null.`,i)):0>a||a>4?new M(A(`The day_count_convention (%s) must be between 0 and 4 inclusive.`,a)):li(r,i,a)}},GY={description:A(`First day of the month preceding a date.`),args:[z(`date (date)`,A(`The date from which to calculate the result.`))],compute:function(e){let t=aa(e,this.locale);return{value:ri(new k(t.getFullYear(),t.getMonth(),1)),format:this.locale.dateFormat}}},KY={description:A(`Last day of the month following a date.`),args:[z(`date (date)`,A(`The date from which to calculate the result.`))],compute:function(e){return TY.compute.bind(this)(e,{value:0})}},qY={description:A(`Quarter of the year a specific date falls in`),args:[z(`date (date)`,A(`The date from which to extract the quarter.`))],compute:function(e){return Math.ceil((aa(e,this.locale).getMonth()+1)/3)}},JY={description:A(`First day of the quarter of the year a specific date falls in.`),args:[z(`date (date)`,A(`The date from which to calculate the start of quarter.`))],compute:function(e){let t=qY.compute.bind(this)(e);return{value:ri(new k(UY.compute.bind(this)(e),(t-1)*3,1)),format:this.locale.dateFormat}}},YY={description:A(`Last day of the quarter of the year a specific date falls in.`),args:[z(`date (date)`,A(`The date from which to calculate the end of quarter.`))],compute:function(e){let t=qY.compute.bind(this)(e);return{value:ri(new k(UY.compute.bind(this)(e),t*3,0)),format:this.locale.dateFormat}}},XY={description:A(`First day of the year a specific date falls in.`),args:[z(`date (date)`,A(`The date from which to calculate the start of the year.`))],compute:function(e){return{value:ri(new k(UY.compute.bind(this)(e),0,1)),format:this.locale.dateFormat}}},ZY={description:A(`Last day of the year a specific date falls in.`),args:[z(`date (date)`,A(`The date from which to calculate the end of the year.`))],compute:function(e){return{value:ri(new k(UY.compute.bind(this)(e)+1,0,0)),format:this.locale.dateFormat}}};var QY=l({DELTA:()=>$Y});let $Y={description:A(`Compare two numeric values, returning 1 if they're equal.`),args:[z(`number1 (number)`,A(`The first number to compare.`)),z(`number2 (number, default=0)`,A(`The second number to compare.`))],compute:function(e,t={value:0}){return+(N(e,this.locale)===N(t,this.locale))},isExported:!0};var eX=l({FILTER:()=>nX,SORT:()=>rX,SORTN:()=>iX,UNIQUE:()=>aX});function tX(e,t,...n){for(let e=0;e<n.length;e++){let t=e%2==0?`sort_column`:`is_ascending`;Ib(n[e]!==void 0,A(`Value for parameter %s is missing in [[FUNCTION_NAME]].`,t))}let r=[],i=[],a=e.length;for(let o=0;o<n.length;o+=2){r.push(F(Kb(n[o+1])?.value)?`asc`:`desc`);let s=n[o];if(Ue(s)&&(s.length>1||s[0].length>1))Ib(s.length===1&&s[0].length===a,A(`Wrong size for %s. Expected a range of size 1x%s. Got %sx%s.`,`sort_column${o+1}`,a,s.length,s[0].length)),i.push(s.flat().map(e=>e.value));else{let n=N(Kb(s)?.value,t);if(n<1||n>e[0].length)return e;i.push(e.map(e=>e[n-1].value))}}if(i.length===0)for(let t=0;t<e[0].length;t++)i.push(e.map(e=>e[t].value)),r.push(`asc`);let o={desc:Pz(`desc`),asc:Pz(`asc`)},s=C(0,e.length);return s.sort((e,t)=>{for(let[n,a]of i.entries()){let i=a[e],s=a[t],c={value:i,type:i===null?V.empty:typeof i==`string`?V.text:typeof i},l={value:s,type:s===null?V.empty:typeof s==`string`?V.text:typeof s},u=o[r[n]](c,l);if(u!==0)return u}return 0}),s.map(t=>e[t])}let nX={description:A(`Returns a filtered version of the source range, returning only rows or columns that meet the specified conditions.`),args:[z(`range (any, range<any>)`,A(`The data to be filtered.`)),z(`condition (boolean, range<boolean>, repeating)`,A(`Column or row containing true or false values corresponding to the range.`))],compute:function(e,...t){let n=I(e),r=t.map(e=>ha(I(e),e=>e.value));for(let e of r)if(!Rb(e))return new M(A(`The arguments condition must be a single column or row.`));if(!zb(...t))return new M(A(`The arguments conditions must have the same dimensions.`));let i=r.map(e=>e.flat()),a=r[0].length===1?`row`:`col`;if(n=a===`row`?_a(n):n,i.some(e=>e.length!==n.length))return new M(A(`FILTER has mismatched sizes on the range and conditions.`));let o=[];for(let e=0;e<n.length;e++){let t=n[e];i.every(t=>(typeof t[e]==`boolean`||typeof t[e]==`number`)&&t[e])&&o.push(t)}return o.length?a===`row`?_a(o):o:new Ri(A(`No match found in FILTER evaluation`))},isExported:!1},rX={description:A(`Sorts the rows of a given array or range by the values in one or more columns.`),args:[z(`range (range)`,A(`The data to be sorted.`)),z(`sort_column (any, range<number>, repeating, optional)`,A(`The index of the column in range or a range outside of range containing the value by which to sort.`)),z(`is_ascending (boolean, repeating, optional)`,A(`TRUE or FALSE indicating whether to sort sort_column in ascending order. FALSE sorts in descending order.`),[{value:!0,label:A(`Ascending`)},{value:!1,label:A(`Descending`)}])],compute:function(e,...t){return _a(tX(_a(e),this.locale,...t))},isExported:!0},iX={description:A(`Returns the first n items in a data set after performing a sort.`),args:[z(`range (range)`,A(`The data to be sorted.`)),z(`n (number)`,A(`The number of items to return.`)),z(`display_ties_mode (number, default=0)`,A(`A number representing the way to display ties.`)),z(`sort_column (number, range<number>, repeating, optional)`,A(`The index of the column in range or a range outside of range containing the value by which to sort.`)),z(`is_ascending (boolean, repeating, optional)`,A(`TRUE or FALSE indicating whether to sort sort_column in ascending order. FALSE sorts in descending order.`),[{value:!0,label:A(`Ascending`)},{value:!1,label:A(`Descending`)}])],compute:function(e,t,...n){let r=N(t?.value??1,this.locale),i=n.length%2==0?0:N(n[0]?.value,this.locale),a=n.length%2==0?n:n.slice(1);if(r<0)return new M(A(`Wrong value of 'n'. Expected a positive number. Got %s.`,r));if(i<0||i>3)return new M(A(`Wrong value of 'display_ties_mode'. Expected a positive number between 0 and 3. Got %s.`,i));let o=tX(_a(e),this.locale,...a),s=(e,t)=>JSON.stringify(o[e].map(e=>e.value))===JSON.stringify(o[t].map(e=>e.value));switch(i){case 0:return _a(o.slice(0,r));case 1:for(let e=r;e<o.length;e++)if(!s(e,r-1))return _a(o.slice(0,e));return _a(o);case 2:{let e=[o[0]];for(let t=1;t<o.length;t++)for(let n=0;n<t&&!s(t,n);n++)n===t-1&&e.push(o[t]);return _a(e.slice(0,r))}case 3:{let e=[o[0]],t=1;for(let n=1;n<o.length&&(s(n,n-1)||t++,!(t>r));n++)e.push(o[n]);return _a(e)}}},isExported:!1},aX={description:A(`Unique rows in the provided source range.`),args:[z(`range (any, range<any>)`,A(`The data to filter by unique entries.`)),z(`by_column (boolean, default=FALSE)`,A(`Whether to filter the data by columns or by rows.`),[{value:!0,label:A(`Return unique columns`)},{value:!1,label:A(`Return unique rows`)}]),z(`exactly_once (boolean, default=FALSE)`,A(`Whether to return only entries with no duplicates.`),[{value:!0,label:A(`Return items that appear exactly once`)},{value:!1,label:A(`Return every distinct item`)}])],compute:function(e={value:``},t,n){if(!Ue(e))return[[e]];let r=F(t?.value)||!1,i=F(n?.value)||!1;r||(e=_a(e));let a=new Map;for(let t of e){let e=JSON.stringify(t.map(e=>e.value)),n=a.get(e);n?n.count++:a.set(e,{data:t,count:1})}let o=[];for(let e of a.values())i&&e.count>1||o.push(e.data);return o.length?r?o:_a(o):new M(A(`No unique values found`))},isExported:!0};var oX=l({ACCRINTM:()=>dX,AMORLINC:()=>fX,COUPDAYBS:()=>mX,COUPDAYS:()=>pX,COUPDAYSNC:()=>hX,COUPNCD:()=>gX,COUPNUM:()=>_X,COUPPCD:()=>vX,CUMIPMT:()=>yX,CUMPRINC:()=>bX,DB:()=>xX,DDB:()=>CX,DISC:()=>wX,DOLLARDE:()=>TX,DOLLARFR:()=>EX,DURATION:()=>DX,EFFECT:()=>OX,FV:()=>AX,FVSCHEDULE:()=>jX,INTRATE:()=>MX,IPMT:()=>PX,IRR:()=>IX,ISPMT:()=>LX,MDURATION:()=>RX,MIRR:()=>zX,NOMINAL:()=>BX,NPER:()=>VX,NPV:()=>UX,PDURATION:()=>WX,PMT:()=>KX,PPMT:()=>JX,PRICE:()=>XX,PRICEDISC:()=>ZX,PRICEMAT:()=>QX,PV:()=>YX,RATE:()=>eZ,RECEIVED:()=>tZ,RRI:()=>nZ,SLN:()=>rZ,SYD:()=>iZ,TBILLEQ:()=>sZ,TBILLPRICE:()=>oZ,TBILLYIELD:()=>cZ,VDB:()=>lZ,XIRR:()=>uZ,XNPV:()=>dZ,YIELD:()=>fZ,YIELDDISC:()=>pZ,YIELDMAT:()=>mZ});let sX=[{value:1,label:A(`Annual`)},{value:2,label:A(`Semi-annual`)},{value:4,label:A(`Quarterly`)}],cX=[{value:0,label:A(`End of period (default)`)},{value:1,label:A(`Beginning of period`)}],lX=[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`frequency (number)`,A(`The number of interest or coupon payments per year (1, 2, or 4).`),sX),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)];function uX(e,t,n,r,i=1e-10,a){let o=n,s,c,l,u=!1,d=0,f;do{if(l=e(o),isNaN(l)){Ib(d<r&&a!==void 0,A(`Function [[FUNCTION_NAME]] didn't find any result.`)),d++,o=a(f),f=o;continue}s=o-l/t(o),c=Math.abs(s-o),o=s,u=c<i||Math.abs(l)<i,Ib(d<r,A(`Function [[FUNCTION_NAME]] didn't find any result.`)),d++}while(!u);return o}let dX={description:A(`Accrued interest of security paying at maturity.`),args:[z(`issue (date)`,A(`The date the security was initially issued.`)),z(`maturity (date)`,A(`The maturity date of the security.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`redemption (number)`,A(`The redemption amount per 100 face value, or par.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i={value:0}){let a=Math.trunc(N(e,this.locale)),o=Math.trunc(N(t,this.locale)),s=N(r,this.locale),c=N(n,this.locale),l=Math.trunc(N(i,this.locale));if(a<0)return new M(NJ(a));if(a>=o)return new M(LJ(a,o));if(fY(l))return new M(bJ(l));if(s<=0)return new M(tY(s));if(c<=0)return new M(eY(c));let u=li(a,o,l);return s*c*u},isExported:!0},fX={description:A(`Depreciation for an accounting period.`),args:[z(`cost (number)`,A(`The initial cost of the asset.`)),z(`purchase_date (date)`,A(`The date the asset was purchased.`)),z(`first_period_end (date)`,A(`The date the first period ended.`)),z(`salvage (number)`,A(`The value of the asset at the end of depreciation.`)),z(`period (number)`,A(`The single period within life for which to calculate depreciation.`)),z(`rate (number)`,A(`The deprecation rate.`)),z(`day_count_convention (number, optional)`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i,a,o={value:0}){o||=0;let s=N(e,this.locale),c=Math.trunc(N(t,this.locale)),l=Math.trunc(N(n,this.locale)),u=N(r,this.locale),d=N(i,this.locale),f=N(a,this.locale),p=Math.trunc(N(o,this.locale));if(s<=0)return new M(vJ(s));if(c<0)return new M(ZJ(c));if(u<0)return new M(nY(u));if(u>s)return new M(rY(u,s));if(d<0)return new M(WJ(d));if(f<=0)return new M(eY(f));if(fY(p))return new M(bJ(p));if(c>l)return new M(XJ(c,l));let m=d<1&&d>0?1:Math.trunc(d),h=s*f,g=li(c,l,p),_=c===l?h:h*g,v=s-_-h*m;return v>=u?m===0?_:h:u-v<h?h-(u-v):0},isExported:!0},pX={description:A(`Days in coupon period containing settlement date.`),args:lX,compute:function(e,t,n,r={value:0}){r||=0;let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=Math.trunc(N(n,this.locale)),s=Math.trunc(N(r,this.locale));if(i>=a)return new M(LJ(i,a));if(pY(o))return new M(yJ(o));if(fY(s))return new M(bJ(s));if(s===1){let i=vX.compute.bind(this)(e,t,n,r).value,a=gX.compute.bind(this)(e,t,n,r).value;return N(a,this.locale)-N(i,this.locale)}return(s===3?365:360)/o},isExported:!0},mX={description:A(`Days from settlement until next coupon.`),args:lX,compute:function(e,t,n,r={value:0}){r||=0;let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=Math.trunc(N(n,this.locale)),s=Math.trunc(N(r,this.locale));if(i>=a)return new M(LJ(i,a));if(pY(o))return new M(yJ(o));if(fY(s))return new M(bJ(s));let c=vX.compute.bind(this)(e,t,n,r).value,l=N(c,this.locale);if([1,2,3].includes(s))return i-l;if(s===4){let e=li(l,i,s);return Math.round(e*360)}let u=aa(i,this.locale),d=aa(l,this.locale),f=d.getFullYear(),p=u.getFullYear(),m=d.getMonth()+1,h=u.getMonth()+1,g=d.getDate(),_=u.getDate();return m===2&&h===2&&oi(d)&&oi(u)&&(_=30),_===31&&(g===30||g===31)&&(_=30),m===2&&oi(d)&&(g=30),g===31&&(g=30),(p-f)*360+(h-m)*30+(_-g)},isExported:!0},hX={description:A(`Days from settlement until next coupon.`),args:lX,compute:function(e,t,n,r={value:0}){r||=0;let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=Math.trunc(N(n,this.locale)),s=Math.trunc(N(r,this.locale));if(i>=a)return new M(LJ(i,a));if(pY(o))return new M(yJ(o));if(fY(s))return new M(bJ(s));let c=gX.compute.bind(this)(e,t,n,r).value,l=N(c,this.locale);if([1,2,3].includes(s))return l-i;if(s===4){let e=li(i,l,s);return Math.round(e*360)}let u=mX.compute.bind(this)(e,t,n,r);return N(pX.compute.bind(this)(e,t,n,r),this.locale)-N(u,this.locale)},isExported:!0},gX={description:A(`Next coupon date after the settlement date.`),args:lX,compute:function(e,t,n,r={value:0}){r||=0;let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=Math.trunc(N(n,this.locale)),s=Math.trunc(N(r,this.locale));if(i>=a)return new M(LJ(i,a));if(pY(o))return new M(yJ(o));if(fY(s))return new M(bJ(s));let c=12/o,l=_X.compute.bind(this)(e,t,n,r);return{value:ri(si(aa(a,this.locale),-(N(l,this.locale)-1)*c,!0)),format:this.locale.dateFormat}},isExported:!0},_X={description:A(`Number of coupons between settlement and maturity.`),args:lX,compute:function(e,t,n,r={value:0}){r||=0;let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=Math.trunc(N(n,this.locale)),s=Math.trunc(N(r,this.locale));if(i>=a)return new M(LJ(i,a));if(pY(o))return new M(yJ(o));if(fY(s))return new M(bJ(s));let c=1,l=a,u=12/o;for(;l>i;)l=ri(si(aa(l,this.locale),-u,!1)),c++;return c-1},isExported:!0},vX={description:A(`Last coupon date prior to or on the settlement date.`),args:lX,compute:function(e,t,n,r={value:0}){r||=0;let i=Math.trunc(N(e,this.locale)),a=Math.trunc(N(t,this.locale)),o=Math.trunc(N(n,this.locale)),s=Math.trunc(N(r,this.locale));if(i>=a)return new M(LJ(i,a));if(pY(o))return new M(yJ(o));if(fY(s))return new M(bJ(s));let c=12/o,l=_X.compute.bind(this)(e,t,n,r);return{value:ri(si(aa(a,this.locale),-l*c,!0)),format:this.locale.dateFormat}},isExported:!0},yX={description:A(`Cumulative interest paid over a set of periods.`),args:[z(`rate (number)`,A(`The interest rate.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`first_period (number)`,A(`The number of the payment period to begin the cumulative calculation.`)),z(`last_period (number)`,A(`The number of the payment period to end the cumulative calculation.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r,i,a={value:0}){let o=N(r,this.locale),s=N(i,this.locale),c=N(e,this.locale),l=N(n,this.locale),u=N(t,this.locale),d=+!!F(a);if(u<=0)return new M(VJ(u));if(o<=0)return new M(AJ(o));if(s<=0)return new M(FJ(s));if(o>s)return new M(kJ(o,s));if(s>u)return new M(PJ(s,u));if(c<=0)return new M(eY(c));if(l<=0)return new M(JJ(l));let f=0;for(let e=o;e<=s;e++)f+=NX(c,e,u,l,0,d);return f},isExported:!0},bX={description:A(`Cumulative principal paid over a set of periods.`),args:[z(`rate (number)`,A(`The interest rate.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`first_period (number)`,A(`The number of the payment period to begin the cumulative calculation.`)),z(`last_period (number)`,A(`The number of the payment period to end the cumulative calculation.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r,i,a={value:0}){let o=N(r,this.locale),s=N(i,this.locale),c=N(e,this.locale),l=N(n,this.locale),u=N(t,this.locale),d=+!!F(a);if(u<=0)return new M(VJ(u));if(o<=0)return new M(AJ(o));if(s<=0)return new M(FJ(s));if(o>s)return new M(kJ(o,s));if(s>u)return new M(PJ(s,u));if(c<=0)return new M(eY(c));if(l<=0)return new M(JJ(l));let f=0;for(let e=o;e<=s;e++)f+=qX(c,e,u,l,0,d);return f},isExported:!0},xX={description:A(`Depreciation via declining balance method.`),args:[z(`cost (number)`,A(`The initial cost of the asset.`)),z(`salvage (number)`,A(`The value of the asset at the end of depreciation.`)),z(`life (number)`,A(`The number of periods over which the asset is depreciated.`)),z(`period (number)`,A(`The single period within life for which to calculate depreciation.`)),z(`month (number, optional)`,A(`The number of months in the first year of depreciation.`))],compute:function(e,t,n,r,...i){let a=N(e,this.locale),o=N(t,this.locale),s=N(n,this.locale),c=Math.trunc(N(r,this.locale)),l=i.length?Math.trunc(N(i[0],this.locale)):12,u=s+(l===12?0:1);if(a<0)return new M(_J(a));if(o<0)return new M(nY(o));if(c<=0)return new M(qJ(c));if(s<=0)return new M(IJ(s));if(1>l||l>12)return new M(RJ(l));if(c>u)return new M(UJ(c,u));let d=l/12,f=1-(o/a)**(1/s);f=Math.round(f*1e3)/1e3;let p=a,m=a*(1-f*d);for(let e=1;e<c;e++)p=m,m=p*(1-f),e===s&&(m=p*(1-f*(1-d)));return{value:p-m,format:`#,##0.00`}},isExported:!0},SX=`#,##0.00`,CX={description:A(`Depreciation via double-declining balance method.`),args:[z(`cost (number)`,A(`The initial cost of the asset.`)),z(`salvage (number)`,A(`The value of the asset at the end of depreciation.`)),z(`life (number)`,A(`The number of periods over which the asset is depreciated.`)),z(`period (number)`,A(`The single period within life for which to calculate depreciation.`)),z(`factor (number, default=2)`,A(`The factor by which depreciation decreases.`))],compute:function(e,t,n,r,i={value:2}){let a=N(e,this.locale),o=N(t,this.locale),s=N(n,this.locale),c=N(r,this.locale),l=N(i,this.locale);if(a<0)return new M(_J(a));if(o<0)return new M(nY(o));if(c<=0)return new M(qJ(c));if(s<=0)return new M(IJ(s));if(c>s)return new M(KJ(c,s));if(l<=0)return new M(xJ(l));if(a===0||o>=a)return{value:0,format:SX};let u=l/s;if(u>1)return{value:c===1?a-o:0,format:SX};if(c<=1)return{value:a*u,format:SX};let d=a*(1-u)**(c-1),f=a*(1-u)**c,p=f<o?d-o:d-f;return{value:Math.max(p,0),format:SX}},isExported:!0},wX={description:A(`Discount rate of a security based on price.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`price (number)`,A(`The price at which the security is bought per 100 face value.`)),z(`redemption (number)`,A(`The redemption amount per 100 face value, or par.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i={value:0}){i||=0;let a=Math.trunc(N(e,this.locale)),o=Math.trunc(N(t,this.locale)),s=N(n,this.locale),c=N(r,this.locale),l=Math.trunc(N(i,this.locale));if(a>=o)return new M(LJ(a,o));if(fY(l))return new M(bJ(l));if(s<=0)return new M(YJ(s));if(c<=0)return new M(tY(c));let u=li(a,o,l);return(c-s)/c/u},isExported:!0},TX={description:A(`Convert a decimal fraction to decimal value.`),args:[z(`fractional_price (number)`,A(`The price quotation given using fractional decimal conventions.`)),z(`unit (number)`,A(`The units of the fraction, e.g. 8 for 1/8ths or 32 for 1/32nds.`))],compute:function(e,t){let n=N(e,this.locale),r=Math.trunc(N(t,this.locale));if(r<=0)return new M(lY(r));let i=Math.trunc(n);return i+(n-i)*(10**Math.ceil(Math.log10(r))/r)},isExported:!0},EX={description:A(`Convert a decimal value to decimal fraction.`),args:[z(`decimal_price (number)`,A(`The price quotation given as a decimal value.`)),z(`unit (number)`,A(`The units of the desired fraction, e.g. 8 for 1/8ths or 32 for 1/32nds.`))],compute:function(e,t){let n=N(e,this.locale),r=Math.trunc(N(t,this.locale));if(r<=0)return new M(lY(r));let i=Math.trunc(n);return i+(n-i)*(r/10**Math.ceil(Math.log10(r)))},isExported:!0},DX={description:A(`Number of periods for an investment to reach a value.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`yield (number)`,A(`The expected annual yield of the security.`)),z(`frequency (number)`,A(`The number of interest or coupon payments per year (1, 2, or 4).`),sX),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i,a={value:0}){let o=Math.trunc(N(e,this.locale)),s=Math.trunc(N(t,this.locale)),c=N(n,this.locale),l=N(r,this.locale),u=Math.trunc(N(i,this.locale)),d=Math.trunc(N(a,this.locale));if(o>=s)return new M(LJ(o,s));if(pY(u))return new M(yJ(u));if(fY(d))return new M(bJ(d));if(c<0)return new M($J(c));if(l<0)return new M(uY(l));let f=li(o,s,d),p=f-Math.trunc(f)||1/u,m=Math.ceil(f*u),h=c/u,g=l/u,_=0,v=0;for(let e=1;e<=m;e++){let t=(h+ +(e===m))/(1+g)**e;v+=(p+(e-1)/u)*t,_+=t}return _===0?0:v/_},isExported:!0},OX={description:A(`Annual effective interest rate.`),args:[z(`nominal_rate (number)`,A(`The nominal interest rate per year.`)),z(`periods_per_year (number)`,A(`The number of compounding periods per year.`))],compute:function(e,t){let n=N(e,this.locale),r=Math.trunc(N(t,this.locale));return n<=0?new M(zJ(n)):r<=0?new M(GJ(r)):(1+n/r)**+r-1},isExported:!0};function kX(e,t,n,r,i){return e===0?-(r+n*t):-r*(1+e)**t-n*(1+e*i)*((1+e)**t-1)/e}let AX={description:A(`Future value of an annuity investment.`),args:[z(`rate (number)`,A(`The interest rate.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`payment_amount (number)`,A(`The amount per period to be paid.`)),z(`present_value (number, default=0)`,A(`The current value of the annuity.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r={value:0},i={value:0}){return r||=0,i||=0,{value:kX(N(e,this.locale),N(t,this.locale),N(n,this.locale),N(r,this.locale),+!!F(i)),format:`#,##0.00`}},isExported:!0},jX={description:A(`Future value of principal from series of rates.`),args:[z(`principal (number)`,A(`The amount of initial capital or value to compound against.`)),z(`rate_schedule (number, range<number>)`,A(`A series of interest rates to compound against the principal.`))],compute:function(e,t){let n=N(e,this.locale);return da([t],(e,t)=>e*(1+N(t,this.locale)),n)},isExported:!0},MX={description:A(`Calculates effective interest rate.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`investment (number)`,A(`The amount invested in the security.`)),z(`redemption (number)`,A(`The amount to be received at maturity.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i={value:0}){let a=Math.trunc(N(e,this.locale)),o=Math.trunc(N(t,this.locale)),s=N(r,this.locale),c=N(n,this.locale),l=Math.trunc(N(i,this.locale));if(a>=o)return new M(LJ(a,o));if(c<=0)return new M(MJ(c));if(s<=0)return new M(tY(s));if(fY(l))return new M(bJ(l));let u=li(a,o,l);return(s-c)/c/u},isExported:!0};function NX(e,t,n,r,i,a){return GX(e,n,r,i,a)-qX(e,t,n,r,i,a)}let PX={description:A(`Payment on the principal of an investment.`),args:[z(`rate (number)`,A(`The annualized rate of interest.`)),z(`period (number)`,A(`The amortization period, in terms of number of periods.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`future_value (number, default=0)`,A(`The future value remaining after the final payment has been made.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r,i={value:0},a={value:0}){return{value:NX(N(e,this.locale),N(t,this.locale),N(n,this.locale),N(r,this.locale),N(i,this.locale),+!!F(a)),format:`#,##0.00`}},isExported:!0},FX=.1,IX={description:A(`Internal rate of return given periodic cashflows.`),args:[z(`cashflow_amounts (number, range<number>)`,A(`An array or range containing the income or payments associated with the investment.`)),z(`rate_guess (number, default=${FX})`,A(`An estimate for what the internal rate of return will be.`))],compute:function(e,t={value:FX}){let n=N(t,this.locale);if(n<=-1)return new M(QJ(n));let r=!1,i=!1,a=[];if(la([e],({value:e})=>{e>0&&(r=!0),e<0&&(i=!0),a.push(e)},this.locale),!r||!i)return new M(gJ);let o=a.shift();function s(e,t,n){let r=n.length,i=0;return n.reduce((t,n)=>(i++,t+n*e**(r-i)),t*e**r)}function c(e,t,n){let r=n.length,i=0;return n.reduce((t,n)=>(i++,t+n*(r-i)*e**(r-i-1)),t*r*e**(r-1))}function l(e){return s(e,o,a)}function u(e){return c(e,o,a)}return{value:uX(l,u,n+1,20,1e-5)-1,format:`0%`}},isExported:!0},LX={description:A(`Returns the interest paid at a particular period of an investment.`),args:[z(`rate (number)`,A(`The interest rate.`)),z(`period (number)`,A(`The period for which you want to view the interest payment.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`present_value (number)`,A(`The current value of the annuity.`))],compute:function(e,t,n,r){let i=N(e,this.locale),a=N(t,this.locale),o=N(n,this.locale),s=N(r,this.locale);return o===0?new M(BJ(o)):-1*(s-a/o*s)*i},isExported:!0},RX={description:A(`Modified Macaulay duration.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`yield (number)`,A(`The expected annual yield of the security.`)),z(`frequency (number)`,A(`The number of interest or coupon payments per year (1, 2, or 4).`),sX),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`))],compute:function(e,t,n,r,i,a={value:0}){let o=DX.compute.bind(this)(e,t,n,r,i,a),s=N(r,this.locale),c=Math.trunc(N(i,this.locale));return N(o,this.locale)/(1+s/c)},isExported:!0},zX={description:A(`Modified internal rate of return.`),args:[z(`cashflow_amounts (range<number>)`,A(`A range containing the income or payments associated with the investment. The array should contain bot payments and incomes.`)),z(`financing_rate (number)`,A(`The interest rate paid on funds invested.`)),z(`reinvestment_return_rate (number)`,A(`The return (as a percentage) earned on reinvestment of income received from the investment.`))],compute:function(e,t,n){let r=N(t,this.locale),i=N(n,this.locale),a=_a(e).flat().filter(e=>e.value!==null).map(e=>N(e,this.locale)),o=a.length,s=0,c=0;for(let e of C(0,o)){let t=a[e];t>=0?s+=t*(i+1)**(o-e-1):c+=t/(r+1)**e}if(c===0||s===0)return new M(gJ);let l=1/(o-1);return(-s/c)**l-1},isExported:!0},BX={description:A(`Annual nominal interest rate.`),args:[z(`effective_rate (number)`,A(`The effective interest rate per year.`)),z(`periods_per_year (number)`,A(`The number of compounding periods per year.`))],compute:function(e,t){let n=N(e,this.locale),r=Math.trunc(N(t,this.locale));return n<=0?new M(TJ(n)):r<=0?new M(GJ(r)):((n+1)**(1/r)-1)*r},isExported:!0},VX={description:A(`Number of payment periods for an investment.`),args:[z(`rate (number)`,A(`The interest rate.`)),z(`payment_amount (number)`,A(`The amount of each payment made.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`future_value (number, default=0)`,A(`The future value remaining after the final payment has been made.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r={value:0},i={value:0}){r||=0,i||=0;let a=N(e,this.locale),o=N(t,this.locale),s=N(n,this.locale),c=N(r,this.locale),l=+!!F(i);if(a===0)return-(c+s)/o;let u=o*(1+a*l)/a;return Math.log((u-c)/(s+u))/Math.log(1+a)},isExported:!0};function HX(e,t,n,r){let i=0;return fa(n,(t,n)=>(i++,t+n/(1+e)**i),t,r)}let UX={description:A(`The net present value of an investment based on a series of periodic cash flows and a discount rate.`),args:[z(`discount (number)`,A(`The discount rate of the investment over one period.`)),z(`cashflow (number, range<number>, repeating)`,A(`The future cash flows.`))],compute:function(e,...t){let n=N(e,this.locale);return n===-1?new M(SJ(n)):{value:HX(n,0,t,this.locale),format:`#,##0.00`}},isExported:!0},WX={description:A(`Computes the number of periods needed for an investment to reach a value.`),args:[z(`rate (number)`,A(`The rate at which the investment grows each period.`)),z(`present_value (number)`,A(`The investment's current value.`)),z(`future_value (number)`,A(`The investment's desired future value.`))],compute:function(e,t,n){let r=N(e,this.locale),i=N(t,this.locale),a=N(n,this.locale);return r<=0?new M(eY(r)):i<=0?new M(JJ(i)):a<=0?new M(jJ(a)):(Math.log(a)-Math.log(i))/Math.log(1+r)},isExported:!0};function GX(e,t,n,r,i){if(t<=0)throw new M(VJ(t));if(e===0)return-(r+n)/t;let a=-(n*(1+e)**t+r);return a=a*e/((1+e*i)*((1+e)**t-1)),a}let KX={description:A(`Periodic payment for an annuity investment.`),args:[z(`rate (number)`,A(`The annualized rate of interest.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`future_value (number, default=0)`,A(`The future value remaining after the final payment has been made.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r={value:0},i={value:0}){let a=N(t,this.locale),o=N(e,this.locale),s=+!!F(i),c=N(r,this.locale);return{value:GX(o,a,N(n,this.locale),c,s),format:`#,##0.00`}},isExported:!0};function qX(e,t,n,r,i,a){if(n<=0)throw new M(VJ(n));if(t<=0||t>n)throw new M(HJ(n));let o=GX(e,n,r,i,a);return a===1&&t===1?o:o+-kX(e,a===0?t-1:t-2,o,r+o*a,0)*e}let JX={description:A(`Payment on the principal of an investment.`),args:[z(`rate (number)`,A(`The annualized rate of interest.`)),z(`period (number)`,A(`The amortization period, in terms of number of periods.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`future_value (number, default=0)`,A(`The future value remaining after the final payment has been made.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r,i={value:0},a={value:0}){let o=N(n,this.locale),s=N(e,this.locale),c=N(t,this.locale),l=+!!F(a),u=N(i,this.locale);return{value:qX(s,c,o,N(r,this.locale),u,l),format:`#,##0.00`}},isExported:!0},YX={description:A(`Present value of an annuity investment.`),args:[z(`rate (number)`,A(`The interest rate.`)),z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`payment_amount (number)`,A(`The amount per period to be paid.`)),z(`future_value (number, default=0)`,A(`The future value remaining after the final payment has been made.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX)],compute:function(e,t,n,r={value:0},i={value:0}){r||=0,i||=0;let a=N(e,this.locale),o=N(t,this.locale),s=N(n,this.locale),c=N(r,this.locale),l=+!!F(i);return{value:a?-(s*(1+a*l)*((1+a)**o-1)/a+c)/(1+a)**o:-(c+s*o),format:`#,##0.00`}},isExported:!0},XX={description:A(`Price of a security paying periodic interest.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`yield (number)`,A(`The expected annual yield of the security.`)),z(`redemption (number)`,A(`The redemption amount per 100 face value, or par.`)),z(`frequency (number)`,A(`The number of interest or coupon payments per year (1, 2, or 4).`),sX),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i,a,o={value:0}){o||=0;let s=Math.trunc(N(e,this.locale)),c=Math.trunc(N(t,this.locale)),l=N(n,this.locale),u=N(r,this.locale),d=N(i,this.locale),f=Math.trunc(N(a,this.locale)),p=Math.trunc(N(o,this.locale));if(s>=c)return new M(LJ(s,c));if(pY(f))return new M(yJ(f));if(fY(p))return new M(bJ(p));if(l<0)return new M($J(l));if(u<0)return new M(uY(u));if(d<=0)return new M(tY(d));let m=li(s,c,p)*f,h=Math.ceil(m),g=m-Math.floor(m)||1,_=1+u/f,v=100*l/f;if(h===1)return(v+d)/(g*u/f+1)-v*(1-g);let y=0;for(let e=1;e<=h;e++)y+=v/_**(e-1+g);return d/_**(h-1+g)+y-v*(1-g)},isExported:!0},ZX={description:A(`Price of a discount security.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`discount (number)`,A(`The discount rate of the security at time of purchase.`)),z(`redemption (number)`,A(`The redemption amount per 100 face value, or par.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i={value:0}){i||=0;let a=Math.trunc(N(e,this.locale)),o=Math.trunc(N(t,this.locale)),s=N(n,this.locale),c=N(r,this.locale),l=Math.trunc(N(i,this.locale));if(a>=o)return new M(LJ(a,o));if(fY(l))return new M(bJ(l));if(s<=0)return new M(CJ(s));if(c<=0)return new M(tY(c));let u=li(a,o,l);return c-s*c*u},isExported:!0},QX={description:A(`Calculates the price of a security paying interest at maturity, based on expected yield.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`issue (date)`,A(`The date the security was initially issued.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`yield (number)`,A(`The expected annual yield of the security.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i,a={value:0}){a||=0;let o=Math.trunc(N(e,this.locale)),s=Math.trunc(N(t,this.locale)),c=Math.trunc(N(n,this.locale)),l=N(r,this.locale),u=N(i,this.locale),d=Math.trunc(N(a,this.locale));if(o<=c)return new M(oY(o,c));if(o>=s)return new M(LJ(o,s));if(fY(d))return new M(bJ(d));if(l<0)return new M($J(l));if(u<0)return new M(uY(u));let f=li(o,s,d),p=li(o,c,d),m=100+li(c,s,d)*l*100,h=1+f*u,g=p*l*100;return m/h-g},isExported:!0},$X=.1,eZ={description:A(`Interest rate of an annuity investment.`),args:[z(`number_of_periods (number)`,A(`The number of payments to be made.`)),z(`payment_per_period (number)`,A(`The amount per period to be paid.`)),z(`present_value (number)`,A(`The current value of the annuity.`)),z(`future_value (number, default=0)`,A(`The future value remaining after the final payment has been made.`)),z(`end_or_beginning (number, default=0)`,A(`The timing of the payment payments are due for each period.`),cX),z(`rate_guess (number, default=${$X})`,A(`An estimate for what the interest rate will be.`))],compute:function(e,t,n,r={value:0},i={value:0},a={value:$X}){let o=N(e,this.locale),s=N(t,this.locale),c=+!!F(i),l=N(a,this.locale)||$X,u=N(r,this.locale),d=N(n,this.locale);return o<=0?new M(VJ(o)):dY([s,d,u])?l<=-1?new M(QJ(l)):(u-=s*c,d+=s*c,{value:uX(e=>{let t=(1+e)**+o,n=(t-1)/e;return u+d*t+s*n},e=>{let t=(1+e)**(o-1),n=((1+e)**+o-1)/e,r=o*t/e-n/e;return d*o*t+s*r},l,40,1e-5),format:`0%`}):new M(A(`There must be both positive and negative values in [payment_amount, present_value, future_value].`))},isExported:!0},tZ={description:A(`Amount received at maturity for a security.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`investment (number)`,A(`The amount invested (irrespective of face value of each security).`)),z(`discount (number)`,A(`The discount rate of the security invested in.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i={value:0}){i||=0;let a=Math.trunc(N(e,this.locale)),o=Math.trunc(N(t,this.locale)),s=N(n,this.locale),c=N(r,this.locale),l=Math.trunc(N(i,this.locale));return a>=o?new M(LJ(a,o)):fY(l)?new M(bJ(l)):s<=0?new M(MJ(s)):c<=0?new M(CJ(c)):s/(1-c*li(a,o,l))},isExported:!0},nZ={description:A(`Computes the rate needed for an investment to reach a specific value within a specific number of periods.`),args:[z(`number_of_periods (number)`,A(`The number of periods.`)),z(`present_value (number)`,A(`The present value of the investment.`)),z(`future_value (number)`,A(`The future value of the investment.`))],compute:function(e,t,n){let r=N(e,this.locale),i=N(t,this.locale),a=N(n,this.locale);return r<=0?new M(VJ(r)):(a/i)**(1/r)-1},isExported:!0},rZ={description:A(`Depreciation of an asset using the straight-line method.`),args:[z(`cost (number)`,A(`The initial cost of the asset.`)),z(`salvage (number)`,A(`The value of the asset at the end of depreciation.`)),z(`life (number)`,A(`The number of periods over which the asset is depreciated.`))],compute:function(e,t,n){let r=N(e,this.locale),i=N(t,this.locale),a=N(n,this.locale);return{value:(r-i)/a,format:`#,##0.00`}},isExported:!0},iZ={description:A(`Depreciation via sum of years digit method.`),args:[z(`cost (number)`,A(`The initial cost of the asset.`)),z(`salvage (number)`,A(`The value of the asset at the end of depreciation.`)),z(`life (number)`,A(`The number of periods over which the asset is depreciated.`)),z(`period (number)`,A(`The single period within life for which to calculate depreciation.`))],compute:function(e,t,n,r){let i=N(e,this.locale),a=N(t,this.locale),o=N(n,this.locale),s=N(r,this.locale);if(s<=0)return new M(qJ(s));if(o<=0)return new M(IJ(o));if(s>o)return new M(KJ(s,o));let c=o*(o+1)/2,l=o-s+1;return{value:(i-a)*(l/c),format:`#,##0.00`}},isExported:!0};function aZ(e,t,n){return 100*(1-n*li(e,t,2))}let oZ={description:A(`Price of a US Treasury bill.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`discount (number)`,A(`The discount rate of the bill at time of purchase.`))],compute:function(e,t,n){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=N(n,this.locale);return r>=i?new M(LJ(r,i)):mY(r,i,this.locale)?a<=0?new M(CJ(a)):a>=1?new M(wJ(a)):aZ(r,i,a):new M(aY(r,i))},isExported:!0},sZ={description:A(`Equivalent rate of return for a US Treasury bill.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`discount (number)`,A(`The discount rate of the bill at time of purchase.`))],compute:function(e,t,n){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=N(n,this.locale);if(r>=i)return new M(LJ(r,i));if(!mY(r,i,this.locale))return new M(aY(r,i));if(a<=0)return new M(CJ(a));if(a>=1)return new M(wJ(a));let o=SY.compute.bind(this)({value:i},{value:r});if(o<=182)return 365*a/(360-a*o);let s=aZ(r,i,a)/100,c=o/(o===366?366:365);return(-2*c+2*Math.sqrt(c**2-(2*c-1)*(1-1/s)))/(2*c-1)},isExported:!0},cZ={description:A(`The yield of a US Treasury bill based on price.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`price (number)`,A(`The price at which the security is bought per 100 face value.`))],compute:function(e,t,n){let r=Math.trunc(N(e,this.locale)),i=Math.trunc(N(t,this.locale)),a=N(n,this.locale);if(r>=i)return new M(LJ(r,i));if(!mY(r,i,this.locale))return new M(aY(r,i));if(a<=0)return new M(YJ(a));let o=li(r,i,2);return(100-a)/a*(1/o)},isExported:!0},lZ={description:A(`Variable declining balance. WARNING : does not handle decimal periods.`),args:[z(`cost (number)`,A(`The initial cost of the asset.`)),z(`salvage (number)`,A(`The value of the asset at the end of depreciation.`)),z(`life (number)`,A(`The number of periods over which the asset is depreciated.`)),z(`start (number)`,A(`Starting period to calculate depreciation.`)),z(`end (number)`,A(`Ending period to calculate depreciation.`)),z(`factor (number, default=2)`,A(`The number of months in the first year of depreciation.`)),z(`no_switch (number, default=false)`,A(`Whether to switch to straight-line depreciation when the depreciation is greater than the declining balance calculation.`),[{value:!1,label:A(`Switch to straight-line depreciation`)},{value:!0,label:A(`Do not switch to straight-line depreciation`)}])],compute:function(e,t,n,r,i,a={value:2},o={value:!1}){a||=0;let s=N(e,this.locale),c=N(t,this.locale),l=N(n,this.locale),u=Math.trunc(N(r,this.locale)),d=Math.trunc(N(i,this.locale)),f=N(a,this.locale),p=F(o);if(s<0)return new M(_J(s));if(c<0)return new M(nY(c));if(l<=0)return new M(IJ(l));if(u<0)return new M(sY(u));if(d<0)return new M(EJ(d));if(u>d)return new M(cY(u,d));if(d>l)return new M(DJ(d,l));if(f<=0)return new M(xJ(f));if(s===0)return 0;if(c>=s)return u<1?s-c:0;let m=f/l;if(m>=1)return u<1?s-c:0;let h=s,g=0,_=0,v=!1;for(let e=0;e<d;e++){if(!v||p){let t=h*m,n=l-e,r=(h-c)/n;!p&&r>t?(v=!0,g=r):g=t}let t=Math.max(h-g,c);e>=u&&(_+=h-t),h=t}return _},isExported:!0},uZ={description:A(`Internal rate of return given non-periodic cash flows.`),args:[z(`cashflow_amounts (range<number>)`,A(`An range containing the income or payments associated with the investment.`)),z(`cashflow_dates (range<number>)`,A(`An range with dates corresponding to the cash flows in cashflow_amounts.`)),z(`rate_guess (number, default=${$X})`,A(`An estimate for what the internal rate of return will be.`))],compute:function(e,t,n={value:$X}){let r=N(n,this.locale);if(!zb(e,t))return new M(hJ);let i=e.flat().map(e=>N(e,this.locale)),a=t.flat().map(e=>N(e,this.locale));if(!dY(i))return new M(gJ);if(a.some(e=>e<a[0]))return new M(OJ(a[0]));if(r<=-1)return new M(QJ(r));let o=new Map;for(let e of C(0,a.length)){let t=a[e];o.has(t)?o.set(t,o.get(t)+i[e]):o.set(t,i[e])}let s=Array.from(o.keys()),c=s.map(e=>o.get(e));return uX(e=>{let t=c[0];for(let n of C(1,c.length)){let r=(s[0]-s[n])/365;t+=c[n]*(1+e)**r}return t},e=>{let t=0;for(let n of C(1,c.length)){let r=(s[0]-s[n])/365;t+=r*c[n]*(1+e)**(r-1)}return t},r,40,1e-5,e=>e?e/10-.9:-.9)},isExported:!0},dZ={description:A(`Net present value given to non-periodic cash flows..`),args:[z(`discount (number)`,A(`The discount rate of the investment over one period.`)),z(`cashflow_amounts (number, range<number>)`,A(`An range containing the income or payments associated with the investment.`)),z(`cashflow_dates (number, range<number>)`,A(`An range with dates corresponding to the cash flows in cashflow_amounts.`))],compute:function(e,t,n){let r=N(e,this.locale);if(!zb(t,n))return new M(hJ);let i=I(t).flat().map(e=>$i(e,this.locale)),a=I(n).flat().map(e=>$i(e,this.locale));if(a.some(e=>e<a[0]))return new M(OJ(a[0]));if(r<=0)return new M(eY(r));if(i.length===1)return i[0];let o=new Map;for(let e of C(0,a.length)){let t=a[e];o.has(t)?o.set(t,o.get(t)+i[e]):o.set(t,i[e])}let s=Array.from(o.keys()),c=s.map(e=>o.get(e)),l=c[0];for(let e of C(1,c.length)){let t=(s[0]-s[e])/365;l+=c[e]*(1+r)**t}return l},isExported:!0},fZ={description:A(`Annual yield of a security paying periodic interest.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`price (number)`,A(`The price at which the security is bought per 100 face value.`)),z(`redemption (number)`,A(`The redemption amount per 100 face value, or par.`)),z(`frequency (number)`,A(`The number of interest or coupon payments per year (1, 2, or 4).`),sX),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i,a,o={value:0}){o||=0;let s=Math.trunc(N(e,this.locale)),c=Math.trunc(N(t,this.locale)),l=N(n,this.locale),u=N(r,this.locale),d=N(i,this.locale),f=Math.trunc(N(a,this.locale)),p=Math.trunc(N(o,this.locale));if(s>=c)return new M(LJ(s,c));if(pY(f))return new M(yJ(f));if(fY(p))return new M(bJ(p));if(l<0)return new M($J(l));if(u<=0)return new M(YJ(u));if(d<=0)return new M(tY(d));let m=li(s,c,p)*f,h=Math.ceil(m),g=m-Math.floor(m)||1,_=100*l/f;if(h===1){let e=u+_*(1-g);return(d+_-e)*f*(1/g)/e}function v(e,t,n,r,i,a){let o=a-(e+i*(1-t))*r**(n-1+t);for(let e=1;e<=n;e++)o+=i*r**(e-1);return o}function y(e,t,n,r,i){let a=-(e+i*(1-t))*(n-1+t)*r**(n-2+t);for(let e=1;e<=n;e++)a+=i*(e-1)*r**(e-2);return a}function b(e){return v(u,g,h,e,_,d)}function ee(e){return y(u,g,h,e,_)}return(uX(b,ee,1+(l+1)/f,100,1e-5)-1)*f},isExported:!0},pZ={description:A(`Annual yield of a discount security.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`price (number)`,A(`The price at which the security is bought per 100 face value.`)),z(`redemption (number)`,A(`The redemption amount per 100 face value, or par.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i={value:0}){i||=0;let a=Math.trunc(N(e,this.locale)),o=Math.trunc(N(t,this.locale)),s=N(n,this.locale),c=N(r,this.locale),l=Math.trunc(N(i,this.locale));if(a>=o)return new M(LJ(a,o));if(fY(l))return new M(bJ(l));if(s<=0)return new M(YJ(s));if(c<=0)return new M(tY(c));let u=li(a,o,l);return(c/s-1)/u},isExported:!0},mZ={description:A(`Annual yield of a security paying interest at maturity.`),args:[z(`settlement (date)`,A(`The settlement date of the security, the date after issuance when the security is delivered to the buyer.`)),z(`maturity (date)`,A(`The maturity or end date of the security, when it can be redeemed at face, or par value.`)),z(`issue (date)`,A(`The date the security was initially issued.`)),z(`rate (number)`,A(`The annualized rate of interest.`)),z(`price (number)`,A(`The price at which the security is bought.`)),z(`day_count_convention (number, default=0 )`,A(`An indicator of what day count method to use.`),hY)],compute:function(e,t,n,r,i,a={value:0}){a||=0;let o=Math.trunc(N(e,this.locale)),s=Math.trunc(N(t,this.locale)),c=Math.trunc(N(n,this.locale)),l=N(r,this.locale),u=N(i,this.locale),d=Math.trunc(N(a,this.locale));if(o>=s)return new M(LJ(o,s));if(fY(d))return new M(bJ(d));if(o<c)return new M(iY(o,c));if(l<0)return new M($J(l));if(u<=0)return new M(YJ(u));let f=li(c,s,d),p=li(c,o,d),m=li(o,s,d);return(100*(1+l*f)/(u+100*l*p)-1)/m},isExported:!0};var hZ=l({CELL:()=>_Z,ISBLANK:()=>TZ,ISERR:()=>vZ,ISERROR:()=>yZ,ISFORMULA:()=>DZ,ISLOGICAL:()=>bZ,ISNA:()=>xZ,ISNONTEXT:()=>SZ,ISNUMBER:()=>CZ,ISTEXT:()=>wZ,NA:()=>EZ});let gZ=[{value:`address`,label:A(`Returns an absolute reference as plain text of the top left cell in reference.`)},{value:`col`,label:A(`Returns the column number of the cell in reference.`)},{value:`contents`,label:A(`Returns the value contained in the top left cell in reference.`)},{value:`format`,label:A(`Returns the format of the top left cell in reference.`)},{value:`row`,label:A(`Returns the row number of the top left cell in reference.`)},{value:`type`,label:A(`Returns the type of data in the cell in reference. The following values are returned: "b" for a blank cell, "l" (for label) if the cell contains plain text, and "v" (for value) if the cell contains any other type of data.`)}],_Z={description:A(`Gets information about a cell.`),args:[z(`info_type (string)`,A(`The type of information requested.`),gZ),z(`reference (any, range<any>)`,A(`The reference to the cell.`))],compute:function(e,t){let n=P(e).toLowerCase();if(!gZ.map(e=>e.value).includes(n))return new M(A(`The info_type should be one of %s.`,gZ.join(`, `)));let r=I(t)[0][0],i=r.position;if(i===void 0)return new M(A(`The reference is invalid.`));switch(n){case`address`:return(this.__originSheetId===i.sheetId?``:this.getters.getSheetName(i.sheetId)+`!`)+E(i.col,i.row,{colFixed:!0,rowFixed:!0});case`col`:return i.col+1;case`contents`:return r.value;case`format`:return r.format||``;case`row`:return i.row+1;case`type`:return r.value===null?`b`:qo(r.format)?`l`:typeof r.value==`number`||typeof r.value==`boolean`?`v`:`l`}return``},isExported:!0},vZ={description:A(`Whether a value is an error other than #N/A.`),args:[z(`value (any)`,A(`The value to be verified as an error type.`))],compute:function(e){let t=e?.value;return Gi(t)&&t!==j.NotAvailable},isExported:!0},yZ={description:A(`Whether a value is an error.`),args:[z(`value (any)`,A(`The value to be verified as an error type.`))],compute:function(e){let t=e?.value;return Gi(t)},isExported:!0},bZ={description:A("Whether a value is `true` or `false`."),args:[z(`value (any)`,A(`The value to be verified as a logical TRUE or FALSE.`))],compute:function(e){return typeof e?.value==`boolean`},isExported:!0},xZ={description:A(`Whether a value is the error #N/A.`),args:[z(`value (any)`,A(`The value to be verified as an error type.`))],compute:function(e){return e?.value===j.NotAvailable},isExported:!0},SZ={description:A(`Whether a value is non-textual.`),args:[z(`value (any)`,A(`The value to be checked.`))],compute:function(e){return!wZ.compute.bind(this)(e)},isExported:!0},CZ={description:A(`Whether a value is a number.`),args:[z(`value (any)`,A(`The value to be verified as a number.`))],compute:function(e){return typeof e?.value==`number`},isExported:!0},wZ={description:A(`Whether a value is text.`),args:[z(`value (any)`,A(`The value to be verified as text.`))],compute:function(e){return typeof e?.value==`string`&&Gi(e?.value)===!1},isExported:!0},TZ={description:A(`Whether the referenced cell is empty`),args:[z(`value (any)`,A(`Reference to the cell that will be checked for emptiness.`))],compute:function(e){return e?.value===null},isExported:!0},EZ={description:A(`Returns the error value #N/A.`),args:[],compute:function(){return{value:j.NotAvailable}},isExported:!0},DZ={description:A(`Checks whether there is a reference to a cell that contains a formula, and returns TRUE or FALSE.`),args:[z(`cell_reference (any)`,A(`A reference to a cell.`))],compute:function(e){return e?.position===void 0?new Li(Ji):this.getters.getCell(e.position)?.isFormula??!1},isExported:!0};var OZ=l({AND:()=>kZ,FALSE:()=>AZ,IF:()=>jZ,IFERROR:()=>MZ,IFNA:()=>NZ,IFS:()=>PZ,NOT:()=>FZ,OR:()=>IZ,SWITCH:()=>LZ,TRUE:()=>RZ,XOR:()=>zZ});let kZ={description:A("Logical `and` operator."),args:[z(`logical_expression (boolean, range<boolean>, repeating)`,A(`Expression or reference to a cell containing a logical value (TRUE/FALSE) or an expression that can be coerced to a logical value.`))],compute:function(...e){let{result:t,foundBoolean:n}=Mb(e);return n?t:new M(ja)},isExported:!0},AZ={description:A("Logical value `false`."),args:[],compute:function(){return!1},isExported:!0},jZ={description:A(`Returns value depending on logical expression.`),args:[z(`logical_expression (boolean, range<boolean>)`,A(`An expression or reference to a cell containing an expression that represents some logical value, i.e. TRUE or FALSE.`)),z(`value_if_true (any, range)`,A(`The value the function returns if logical_expression is TRUE.`)),z(`value_if_false (any, range, default=FALSE)`,A(`The value the function returns if logical_expression is FALSE.`))],compute:function(e,t,n){return Jb(e)?os(this,_s.get(`IF`),[e,t,n]):(F(Kb(e))?t:n)??{value:0}},isExported:!0},MZ={description:A(`Value if it is not an error, otherwise 2nd argument.`),args:[z(`value (any, range)`,A(`The value to return if value itself is not an error.`)),z(`value_if_error (any, range, default="empty")`,A(`The value the function returns if value is an error.`))],compute:function(e,t){return Jb(e)?os(this,_s.get(`IFERROR`),[e,t]):(Gi(Kb(e)?.value)?t:e)??{value:0}},isExported:!0},NZ={description:A(`Value if it is not an #N/A error, otherwise 2nd argument.`),args:[z(`value (any, range)`,A(`The value to return if value itself is not #N/A an error.`)),z(`value_if_error (any, range, default="empty")`,A(`The value the function returns if value is an #N/A error.`))],compute:function(e,t){return Jb(e)?os(this,_s.get(`IFNA`),[e,t]):(Kb(e)?.value===j.NotAvailable?t:e)??{value:0}},isExported:!0},PZ={description:A(`Returns a value depending on multiple logical expressions.`),args:[z(`condition (any, range, repeating)`,A(`The condition to be evaluated. It can be a boolean, a number, an array, or a reference to any of those.`)),z(`value (any, range, repeating)`,A(`The value to be returned if its corresponding condition is TRUE.`))],compute:function(...e){if(e.length%2!=0)return new M(A(`Wrong number of arguments. Expected an even number of arguments.`));for(;e.length>0;){if(Jb(e[0]))return os(this,_s.get(`IFS`),e);let t=F(Kb(e.shift())),n=e.shift();if(t)return n??{value:0}}return new M(A(`No match.`))},isExported:!0},FZ={description:A(`Returns opposite of provided logical value.`),args:[z(`logical_expression (boolean)`,A(`An expression or reference to a cell holding an expression that represents some logical value.`))],compute:function(e){return!F(e)},isExported:!0},IZ={description:A("Logical `or` operator."),args:[z(`logical_expression (boolean, range<boolean>, repeating)`,A(`Expression or reference to a cell containing a logical value (TRUE/FALSE) or an expression that can be coerced to a logical value.`))],compute:function(...e){let{result:t,foundBoolean:n}=Nb(e);return n?t:new M(ja)},isExported:!0},LZ={description:A(`Returns a value by comparing cases to an expression.`),args:[z(`expression (number, boolean, string)`,A(`The value to be checked.`)),z(`case (any, repeating)`,A(`Case to be checked against expression.`)),z(`value (any, repeating)`,A(`Value to be returned if its corresponding case matches expression.`)),z(`default (any, default="empty")`,A(`An optional default value to be returned if none of the cases match expression.`))],compute:function(e,...t){let n=t.length%2==0?Ki(e):t.pop();for(let n=0;n<t.length;n+=2){let r=t[n];if(r&&Gi(r.value))return r;if(e?.value===r?.value)return t[n+1]||{value:0}}return n||{value:0}},isExported:!0},RZ={description:A("Logical value `true`."),args:[],compute:function(){return!0},isExported:!0},zZ={description:A("Logical `xor` operator."),args:[z(`logical_expression (boolean, range<boolean>, repeating)`,A(`Expression or reference to a cell containing a logical value (TRUE/FALSE) or an expression that can be coerced to a logical value.`))],compute:function(...e){let t=!1,n=!1;return ya(e,e=>(t=!0,n=n?!e:e,!0)),t?n:new M(ja)},isExported:!0};function BZ(e,t){let n=t.getPivotId(e);if(!n)throw new M(A(`There is no pivot with id "%s"`,e));return n}function VZ(e,t,n){let{measures:r}=n.getPivotCoreDefinition(e);if(!r.find(e=>e.id===t))throw new M(A(`The argument %s is not a valid measure. Here are the measures: %s`,t,`(${r.map(e=>e.id).join(`, `)})`))}function HZ(e){if(e.length%2!=0)throw new M(A(`Function PIVOT takes an even number of arguments.`))}function UZ(e,t,n){let r=[],i=e.getters.getPivotCoreDefinition(t);if(i.type===`SPREADSHEET`&&i.dataSet){let{sheetId:t,zone:n}=i.dataSet,a=bn(n),o=e.getters.getRangeFromSheetXC(t,a);if(o===void 0||o.invalidXc||o.invalidSheetName)throw new Li;if(e.__originCellPosition&&o.sheetId===e.__originSheetId&&Mn(D(e.__originCellPosition),n))throw new Ii;r.push(o)}for(let i of n)i.computedBy&&r.push(...e.getters.getMeasureFullDependencies(t,i));let a=e.__originCellPosition;a&&r.length&&(e.updateDependencies?.(a),e.addDependencies?.(a,r))}var WZ=l({ADDRESS:()=>qZ,CHOOSE:()=>uQ,COLUMN:()=>JZ,COLUMNS:()=>YZ,DROP:()=>dQ,FORMULATEXT:()=>pQ,HLOOKUP:()=>XZ,INDEX:()=>ZZ,INDIRECT:()=>QZ,LOOKUP:()=>$Z,MATCH:()=>eQ,OFFSET:()=>lQ,PIVOT:()=>cQ,PIVOT_HEADER:()=>sQ,PIVOT_VALUE:()=>oQ,ROW:()=>tQ,ROWS:()=>nQ,TAKE:()=>fQ,VLOOKUP:()=>rQ,XLOOKUP:()=>aQ});let GZ=[{value:!0,label:A(`A1 style (default)`)},{value:!1,label:A(`R1C1 style`)}],KZ=[{value:!0,label:A(`Approximate match (default)`)},{value:!1,label:A(`Exact match`)}],qZ={description:A(`Returns a cell reference as a string. `),args:[z(`row (number)`,A(`The row number of the cell reference. `)),z(`column (number)`,A(`The column number (not name) of the cell reference. A is column number 1. `)),z(`absolute_relative_mode (number, default=1)`,A(`An indicator of whether the reference is row/column absolute.`),[{value:1,label:A(`Absolute row and column (e.g. $A$1)`)},{value:2,label:A(`Absolute row, relative column (e.g. A$1)`)},{value:3,label:A(`Relative row, absolute column (e.g. $A1)`)},{value:4,label:A(`Relative row and column (e.g. A1)`)}]),z(`use_a1_notation (boolean, default=TRUE)`,A(`A boolean indicating whether to use A1 style notation or R1C1 style notation.`),GZ),z(`sheet (string, optional)`,A(`A string indicating the name of the sheet into which the address points.`))],compute:function(e,t,n={value:1},r={value:!0},i){let a=ta(e,this.locale),o=ta(t,this.locale);if(a<1)return new M(Vb(a));if(o<1)return new M(Vb(o));let s=ta(n,this.locale);if(![1,2,3,4].includes(s))return new M(Yi(1,4,s));let c=F(r),l;if(c){let e={rowFixed:[1,2].includes(s),colFixed:[1,3].includes(s)};l=E(o-1,a-1,e)}else l=([1,2].includes(s)?`R${a}`:`R[${a}]`)+([1,3].includes(s)?`C${o}`:`C[${o}]`);return i===void 0?l:js(P(i),l)},isExported:!0},JZ={description:A(`Column number of a specified cell.`),args:[z(`cell_reference (any, range<any>, default='this cell')`,A(`The cell whose column number will be returned. Column A corresponds to 1. By default, the function use the cell in which the formula is entered.`))],compute:function(e){if(e===void 0)return this.__originCellPosition===void 0?new M(A(`In this context, the function [[FUNCTION_NAME]] needs to have a cell or range in parameter.`)):this.__originCellPosition.col+1;let t=I(e),n=t[0][0];if(n===void 0)return new M(A(`The range is out of bounds.`));if(n.position===void 0)return new Li(Ji);let r=n.position.col;return t.length===1?r+1:ma(t.length,1,e=>({value:r+e+1}))},isExported:!0},YZ={description:A(`Number of columns in a specified array or range.`),args:[z(`range (any, range<any>)`,A(`The range whose column count will be returned.`))],compute:function(e){let t=I(e);return t[0][0]===void 0?new M(A(`The range is out of bounds.`)):t[0][0].value===j.InvalidReference?t[0][0]:t.length},isExported:!0},XZ={description:A(`Horizontal lookup`),args:[z(`search_key (string, number, boolean)`,A(`The value to search for. For example, 42, 'Cats', or I24.`)),z(`range (any, range)`,A(`The range to consider for the search. The first row in the range is searched for the key specified in search_key.`)),z(`index (number)`,A(`The row index of the value to be returned, where the first row in range is numbered 1.`)),z(`is_sorted (boolean, default=true)`,A(`Indicates whether the row to be searched (the first row of the specified range) is sorted, in which case the closest match for search_key will be returned.`),KZ)],compute:function(e,t,n,r={value:!0}){let i=Math.trunc(N(n?.value,this.locale)),a=I(t);if(1>i||i>a[0].length)return new M(A(`[[FUNCTION_NAME]] evaluates to an out of bounds range.`));let o=(e,t)=>e[t][0].value,s=a[F(r.value)?wa(a,e,`nextSmaller`,`asc`,a.length,o):Ta(a,e,`wildcard`,a.length,o,this.lookupCaches)];return s===void 0?Ki(e):s[i-1]},isExported:!0},ZZ={description:A(`Returns the content of a cell, specified by row and column offset.`),args:[z(`reference (any, range)`,A(`The range of cells from which the values are returned.`)),z(`row (number, default=0)`,A(`The index of the row to be returned from within the reference range of cells.`)),z(`column (number, default=0)`,A(`The index of the column to be returned from within the reference range of cells.`))],compute:function(e,t={value:0},n={value:0}){let r=I(e),i=N(t.value,this.locale),a=N(n.value,this.locale);return a<0||a-1>=r.length||i<0||i-1>=r[0].length?new M(A(`Index out of range.`)):i===0&&a===0?r:i===0?[r[a-1]]:a===0?r.map(e=>[e[i-1]]):r[a-1][i-1]},isExported:!0},QZ={description:A(`Returns the content of a cell, specified by a string.`),args:[z(`reference (string)`,A(`The range of cells from which the values are returned.`)),z(`use_a1_notation (boolean, default=TRUE)`,A(`A boolean indicating whether to use A1 style notation (TRUE) or R1C1 style notation (FALSE).`),GZ)],compute:function(e,t={value:!0}){let n=e?.value?.toString();if(!n)return new Li(A(`Reference should be defined.`));if(!F(t))return new M(A(`R1C1 notation is not supported.`));let r=this.__originSheetId,i=this.__originCellPosition;i&&this.updateDependencies?.(i);let a=this.getters.getNamedRange(n),o=a?a.range:this.getters.getRangeFromSheetXC(r,n);if(o===void 0||o.invalidXc||o.invalidSheetName)return new Li;i&&this.addDependencies?.(i,[o]);let s=[];for(let e=o.zone.left;e<=o.zone.right;e++){let t=[];for(let n=o.zone.top;n<=o.zone.bottom;n++){let r={sheetId:o.sheetId,col:e,row:n};t.push(this.getFormulaResult(r))}s.push(t)}return s.length===1&&s[0].length===1?s[0][0]:s},isExported:!0},$Z={description:A(`Look up a value.`),args:[z(`search_key (string, number, boolean)`,A(`The value to search for. For example, 42, 'Cats', or I24.`)),z(`search_array (any, range)`,A(`One method of using this function is to provide a single sorted row or column search_array to look through for the search_key with a second argument result_range. The other way is to combine these two arguments into one search_array where the first row or column is searched and a value is returned from the last row or column in the array. If search_key is not found, a non-exact match may be returned.`)),z(`result_range (any, range, optional)`,A(`The range from which to return a result. The value returned corresponds to the location where search_key is found in search_range. This range must be only a single row or column and should not be used if using the search_result_array method.`))],compute:function(e,t,n){let r=I(t),i=I(n),a=r.length,o=r[0].length,s=o>=a,c=wa(r,e,`nextSmaller`,`asc`,s?o:a,s?(e,t)=>e[0][t].value:(e,t)=>e[t][0].value);return c===-1||s&&r[0][c]===void 0||!s&&r[c][o-1]===void 0?Ki(e):i[0].length===0?s?r[a-1][c]:r[c][o-1]:(a=i.length,o=i[0].length,a!==1&&o!==1?new M(A(`The result_range must be a single row or a single column.`)):a>1?c>a-1?new M(A(`[[FUNCTION_NAME]] evaluates to an out of range row value %s.`,c+1)):i[c][0]:c>o-1?new M(A(`[[FUNCTION_NAME]] evaluates to an out of range column value %s.`,c+1)):i[0][c])},isExported:!0},eQ={description:A(`Position of item in range that matches value.`),args:[z(`search_key (string, number, boolean)`,A(`The value to search for. For example, 42, 'Cats', or I24.`)),z(`range (any, range)`,A(`The one-dimensional array to be searched.`)),z(`search_type (number, default=1)`,A(`The search method is a number 1, 0 or -1 indicating which value to return. 1 finds the largest value less than or equal to search_key when range is sorted in ascending order. 0 finds the exact value when range is unsorted. -1 finds the smallest value greater than or equal to search_key when range is sorted in descending order.`),[{value:1,label:A(`Ascending order (default)`)},{value:0,label:A(`Exact match`)},{value:-1,label:A(`Descending order`)}])],compute:function(e,t,n={value:1}){let r=N(n,this.locale),i=I(t),a=i.length,o=i[0].length;if(a!==1&&o!==1)return new M(A(`The range must be a single row or a single column.`));let s=-1,c=a===1?(e,t)=>e[0][t].value:(e,t)=>e[t][0].value,l=a===1?i[0].length:i.length;switch(r=Math.sign(r),r){case 1:s=wa(i,e,`nextSmaller`,`asc`,l,c);break;case 0:s=Ta(i,e,`wildcard`,l,c,this.lookupCaches);break;case-1:s=wa(i,e,`nextGreater`,`desc`,l,c);break}return a===1&&i[0][s]===void 0||a!==1&&i[s]===void 0?Ki(e):s+1},isExported:!0},tQ={description:A(`Row number of a specified cell.`),args:[z(`cell_reference (any, range<any>, default='this cell')`,A(`The cell whose row number will be returned. By default, this function uses the cell in which the formula is entered.`))],compute:function(e){if(e===void 0)return this.__originCellPosition?.row===void 0?new M(A(`In this context, the function [[FUNCTION_NAME]] needs to have a cell or range in parameter.`)):this.__originCellPosition.row+1;let t=I(e),n=t[0][0];if(n===void 0)return new M(A(`The range is out of bounds.`));if(n.position===void 0)return new Li(Ji);let r=n.position.row;return t[0].length===1?r+1:ma(1,t[0].length,(e,t)=>({value:r+t+1}))},isExported:!0},nQ={description:A(`Number of rows in a specified array or range.`),args:[z(`range (any, range<any>)`,A(`The range whose row count will be returned.`))],compute:function(e){let t=I(e);return t[0][0]===void 0?new M(A(`The range is out of bounds.`)):t[0][0].value===j.InvalidReference?t[0][0]:t[0].length},isExported:!0},rQ={description:A(`Vertical lookup.`),args:[z(`search_key (string, number, boolean)`,A(`The value to search for. For example, 42, 'Cats', or I24.`)),z(`range (any, range)`,A(`The range to consider for the search. The first column in the range is searched for the key specified in search_key.`)),z(`index (number)`,A(`The column index of the value to be returned, where the first column in range is numbered 1.`)),z(`is_sorted (boolean, default=true)`,A(`Indicates whether the column to be searched (the first column of the specified range) is sorted, in which case the closest match for search_key will be returned.`),KZ)],compute:function(e,t,n,r={value:!0}){let i=Math.trunc(N(n?.value,this.locale)),a=I(t);if(1>i||i>a.length)return new M(A(`[[FUNCTION_NAME]] evaluates to an out of bounds range.`));let o=(e,t)=>e[0][t].value,s=F(r.value)?wa(a,e,`nextSmaller`,`asc`,a[0].length,o):Ta(a,e,`wildcard`,a[0].length,o,this.lookupCaches),c=a[i-1][s];return c===void 0?Ki(e):c},isExported:!0},iQ={0:`strict`,1:`nextGreater`,"-1":`nextSmaller`,2:`wildcard`},aQ={description:A(`Search a range for a match and return the corresponding item from a second range.`),args:[z(`search_key (string,number,boolean)`,A(`The value to search for.`)),z(`lookup_range (any, range)`,A(`The range to consider for the search. Should be a single column or a single row.`)),z(`return_range (any, range)`,A(`The range containing the return value. Should have the same dimensions as lookup_range.`)),z(`if_not_found (any, optional)`,A(`If a valid match is not found, return this value.`)),z(`match_mode (any, default=0)`,A(`Specifies how to match search_key with the items in lookup_range. `),[{value:0,label:A(`Exact match (default)`)},{value:-1,label:A(`Exact match or next smaller item`)},{value:1,label:A(`Exact match or next larger item`)},{value:2,label:A(`Wildcard character match`)}]),z(`search_mode (any, default=1)`,A(`Specifies the search mode to use. By default, a first to last search will be used.`),[{value:1,label:A(`Search first to last (default)`)},{value:-1,label:A(`Search last to first`)},{value:2,label:A(`Binary search (sorted ascending order)`)},{value:-2,label:A(`Binary search (sorted descending order)`)}])],compute:function(e,t,n,r,i={value:0},a={value:1}){let o=Math.trunc(N(i.value,this.locale)),s=Math.trunc(N(a.value,this.locale)),c=I(t),l=I(n);if(c.length!==1&&c[0].length!==1)return new M(A(`lookup_range should be either a single row or single column.`));if(![1,-1,2,-2].includes(s))return new M(A(`search_mode should be a value in [-1, 1, -2, 2].`));if(![-1,0,1,2].includes(o))return new M(A(`match_mode should be a value in [-1, 0, 1, 2].`));let u=c.length===1?`col`:`row`;if(o===2&&[-2,2].includes(s))return new M(A(`The search and match mode combination is not supported for XLOOKUP evaluation.`));if(u===`col`?l[0].length!==c[0].length:l.length!==c.length)return new M(A(`return_range should have the same dimensions as lookup_range.`));let d=u===`col`?(e,t)=>e[0][t].value:(e,t)=>e[t][0].value,f=u===`col`?c[0].length:c.length,p=iQ[o],m=s===-1,h=s===2||s===-2?wa(c,e,p,s===2?`asc`:`desc`,f,d):Ta(c,e,p,f,d,this.lookupCaches,m);return h===-1?r===void 0?Ki(e):[[r]]:u===`col`?l.map(e=>[e[h]]):[l[h]]},isExported:!0},oQ={description:A(`Get the value from a pivot.`),args:[z(`pivot_id (number,string)`,A(`ID of the pivot.`)),z(`measure_name (string)`,A(`Name of the measure.`)),z(`domain_field_name (string,repeating,optional)`,A(`Field name.`)),z(`domain_value (number,string,boolean,repeating,optional)`,A(`Value.`))],compute:function(e,t,...n){let r=P(e),i=P(t),a=BZ(r,this.getters);VZ(a,i,this.getters),HZ(n);let o=this.getters.getPivot(a),s=this.getters.getPivotCoreDefinition(a);UZ(this,a,s.measures.filter(e=>e.id===i)),o.init({reload:o.needsReevaluation});let c=o.assertIsValid({throwOnError:!1});if(c)return c;if(!o.areDomainArgsFieldsValid(n)){let e=A(`Consider using a dynamic pivot formula: %s. Or re-insert the static pivot from the Data menu.`,`=PIVOT(${r})`);return{value:j.GenericError,message:A(`Dimensions don't match the pivot definition`)+`. `+e}}let l=o.parseArgsToPivotDomain(n);return this.getters.getActiveSheetId()===this.__originSheetId&&this.getters.getPivotPresenceTracker(a)?.trackValue(i,l),o.getPivotCellValueAndFormat(i,l)}},sQ={description:A(`Get the header of a pivot.`),args:[z(`pivot_id (number,string)`,A(`ID of the pivot.`)),z(`domain_field_name (string,repeating,optional)`,A(`Field name.`)),z(`domain_value (number,string,value,repeating,optional)`,A(`Value.`))],compute:function(e,...t){let n=P(e),r=BZ(n,this.getters);HZ(t);let i=this.getters.getPivot(r);UZ(this,r,[]),i.init({reload:i.needsReevaluation});let a=i.assertIsValid({throwOnError:!1});if(a)return a;if(!i.areDomainArgsFieldsValid(t)){let e=A(`Consider using a dynamic pivot formula: %s. Or re-insert the static pivot from the Data menu.`,`=PIVOT(${n})`);return{value:j.GenericError,message:A(`Dimensions don't match the pivot definition`)+`. `+e}}let o=i.parseArgsToPivotDomain(t);this.getters.getActiveSheetId()===this.__originSheetId&&this.getters.getPivotPresenceTracker(r)?.trackHeader(o);let s=o.at(-1);if(s?.field===`measure`)return i.getPivotMeasureValue(P(s.value),o);let{value:c,format:l}=i.getPivotHeaderValueAndFormat(o);return{value:c,format:!s||s.field===`measure`||s.value===`false`?void 0:l}}},cQ={description:A(`Get a pivot table.`),args:[z(`pivot_id (string)`,A(`ID of the pivot.`)),z(`row_count (number, optional)`,A(`number of rows`)),z(`include_total (boolean, default=TRUE)`,A(`Whether to include total/sub-totals or not.`)),z(`include_column_titles (boolean, default=TRUE)`,A(`Whether to include the column titles or not.`)),z(`column_count (number, optional)`,A(`number of columns`)),z(`include_measure_titles (boolean, default=TRUE)`,A(`Whether to include the measure titles row or not.`))],compute:function(e,t,n,r,i,a){let o=BZ(P(e),this.getters),s=this.getters.getPivot(o),c=this.getters.getPivotCoreDefinition(o),l=nS(c,t,n,r,i,a,this.locale);if(l.numberOfRows<0)return new M(A(`The number of rows must be positive.`));if(l.numberOfColumns<0)return new M(A(`The number of columns must be positive.`));UZ(this,o,c.measures),s.init({reload:s.needsReevaluation});let u=s.assertIsValid({throwOnError:!1});if(u)return u;let d=s.getCollapsedTableStructure();if(d.numberOfCells>5e5)return new M(vg(d.numberOfCells,this.locale));let f=d.getPivotCells(l),p=this.getters.getPivotName(o),{numberOfCols:m,numberOfRows:h}=d.getPivotTableDimensions(l);if(h===0)return[[{value:p}]];let g=[];for(let e of C(0,m)){g[e]=[];for(let t of C(0,h)){let n=f[e][t];switch(n.type){case`EMPTY`:g[e].push({value:``});break;case`HEADER`:let t=s.getPivotHeaderValueAndFormat(n.domain);g[e].push(qx(n.domain,t));break;case`MEASURE_HEADER`:g[e].push(s.getPivotMeasureValue(n.measure,n.domain));break;case`VALUE`:g[e].push(s.getPivotCellValueAndFormat(n.measure,n.domain));break;case`ROW_GROUP_NAME`:let r=s.definition.rows.find(e=>e.nameWithGranularity===n.rowField)?.displayName;g[e].push({value:r||``});break}}}return(l.displayColumnHeaders||l.displayMeasuresRow)&&f[0][0].type===`EMPTY`&&(g[0][0]={value:p}),g}},lQ={description:A(`Returns a range reference shifted by a specified number of rows and columns from a starting cell reference.`),args:[z(`cell_reference (any, range<any>)`,A(`The starting point from which to count the offset rows and columns.`)),z(`offset_rows (number)`,A(`The number of rows to offset by.`)),z(`offset_columns (number)`,A(`The number of columns to offset by.`)),z(`height (number, default='height of cell_reference')`,A(`The number of rows of the range to return starting at the offset target.`)),z(`width (number, default='width of cell_reference')`,A(`The number of columns of the range to return starting at the offset target.`))],compute:function(e,t,n,r,i){if(e===void 0)return new Li(Ji);let a=I(e),o=a[0][0];if(o===void 0)return new M(A(`The range is out of bounds.`));if(o.position===void 0)return new Li(Ji);let s=a[0].length,c=a.length;if(r){let e=N(r,this.locale);if(e<1)return new M(A(`Height value is %(_height)s. It should be greater than or equal to 1.`,{_height:e}));s=e}if(i){let e=N(i,this.locale);if(e<1)return new M(A(`Width value is %(_width)s. It should be greater than or equal to 1.`,{_width:e}));c=e}let l=N(t,this.locale),u=N(n,this.locale),d=this.__originCellPosition;d&&this.updateDependencies?.(d);let f=o.position.col+u,p=o.position.row+l;if(f<0||p<0)return new Li(A(`OFFSET evaluates to an out of bounds range.`));let m={left:f,top:p,right:f+c-1,bottom:p+s-1},h=o.position.sheetId,g=this.getters.getRangeFromZone(h,m);return g.invalidXc||g.invalidSheetName?new Li:(d&&this.addDependencies?.(d,[g]),ma(c,s,(e,t)=>this.getFormulaResult({sheetId:h,col:f+e,row:p+t})))}},uQ={description:A(`Returns an element from a list of choices based on index.`),args:[z(`index (number)`,A(`Which choice to return.`)),z(`choice (any, range<any>, repeating)`,A(`A potential value to return. May be a reference to a cell or an individual value.`))],compute:function(e,...t){let n=Math.floor(N(e,this.locale))-1;return n<0||n>=t.length?new M(A(`Index for CHOOSE is invalid. Valid values are between 1 and %(choices)s inclusive.`,{choices:t.length})):t[n]??new M(A(`Choice is undefined.`))},isExported:!0},dQ={description:A(`Excludes a specified number of rows or columns from the start or end of an array.`),args:[z(`array (range)`,A(`The array from which to drop rows or columns`)),z(`rows (number)`,A(`The number of rows to drop. A negative value drops from the end of the array.`)),z(`columns (number, optional)`,A(`The number of columns to exclude. A negative value drops from the end of the array.`))],compute:function(e,t,n){let r=N(t,this.locale),i=N(n,this.locale),a=e;if(Math.abs(i)>=e.length||Math.abs(r)>=e[0].length)return new M(A(`The number of rows or column to exclude must be smaller than the number of elements in the array.`));a=i>=0?a.slice(i):a.slice(0,a.length+i);for(let e=0;e<a.length;e++)r>=0?a[e]=a[e].slice(r):a[e]=a[e].slice(0,a[e].length+r);return a},isExported:!0},fQ={description:A(`Returns a specified number of contiguous rows or columns from the start or end of an array.`),args:[z(`array (range)`,A(`The array from which to take rows or columns.`)),z(`rows (number)`,A(`The number of rows to take. A negative value takes from the end of the array.`)),z(`columns (number, optional)`,A(`The number of columns to take. A negative value takes from the end of the array.`))],compute:function(e,t,n){let r=t?N(t,this.locale):e[0].length,i=N(n,this.locale),a=e;if((Math.abs(i)>=e.length||i===0)&&(i=e.length),Math.abs(r)>=e[0].length&&(r=e[0].length),a=i>=0?a.slice(0,i):a.slice(a.length+i,a.length),r===0)return new M(A(`The number of rows can not be zero.`));for(let e=0;e<a.length;e++)r>0?a[e]=a[e].slice(0,r):a[e]=a[e].slice(a[e].length+r,a[e].length);return a},isExported:!0},pQ={description:A(`Returns a formula as a string.`),args:[z(`cell_reference (any)`,A(`A reference to a cell.`))],compute:function(e){if(e?.position===void 0)return new Li(Ji);let t=this.getters.getCell(e.position);return t?.isFormula?t.compiledFormula.toFormulaString(this.getters):new Ri(A(`The cell does not contain a formula.`))},isExported:!0};var mQ=l({ADD:()=>hQ,CONCAT:()=>gQ,DIVIDE:()=>_Q,EQ:()=>xQ,GT:()=>CQ,GTE:()=>wQ,LT:()=>TQ,LTE:()=>EQ,MINUS:()=>DQ,MULTIPLY:()=>OQ,NE:()=>kQ,POW:()=>AQ,SPILLED_RANGE:()=>jQ,UMINUS:()=>MQ,UNARY_PERCENT:()=>NQ,UPLUS:()=>PQ});let hQ={description:A(`Sum of two numbers.`),args:[z(`value1 (number)`,A(`The first addend.`)),z(`value2 (number)`,A(`The second addend.`))],compute:function(e,t){return{value:N(e,this.locale)+N(t,this.locale),format:e?.format||t?.format}}},gQ={description:A(`Concatenation of two values.`),args:[z(`value1 (string)`,A(`The value to which value2 will be appended.`)),z(`value2 (string)`,A(`The value to append to value1.`))],compute:function(e,t){return P(e)+P(t)},isExported:!0},_Q={description:A(`One number divided by another.`),args:[z(`dividend (number)`,A(`The number to be divided.`)),z(`divisor (number)`,A(`The number to divide by.`))],compute:function(e,t){let n=N(t,this.locale);return n===0?new Vi(A(`The divisor must be different from zero.`)):{value:N(e,this.locale)/n,format:e?.format||t?.format}}};function vQ(e){return e===void 0||e.value===null}let yQ={number:0,string:``,boolean:!1};function bQ(e,t,n=2e-16){return Math.abs(e-t)<n}let xQ={description:A(`Equal.`),args:[z(`value1 (string, number, boolean)`,A(`The first value.`)),z(`value2 (string, number, boolean)`,A(`The value to test against value1 for equality.`))],compute:function(e,t){if(Gi(e?.value))return e;if(Gi(t?.value))return t;let n=vQ(e)?yQ[typeof t?.value]:e?.value,r=vQ(t)?yQ[typeof e?.value]:t?.value;return typeof n==`string`&&(n=n.toUpperCase()),typeof r==`string`&&(r=r.toUpperCase()),typeof n==`number`&&typeof r==`number`?{value:bQ(n,r)}:{value:n===r}}};function SQ(e,t,n){if(Gi(e?.value))return e;if(Gi(t?.value))return t;let r=vQ(e)?yQ[typeof t?.value]:e?.value,i=vQ(t)?yQ[typeof e?.value]:t?.value;typeof r!=`number`&&(r=P(r).toUpperCase()),typeof i!=`number`&&(i=P(i).toUpperCase());let a=typeof r,o=typeof i;return a===`string`&&o===`number`?{value:!0}:o===`string`&&a===`number`?{value:!1}:{value:n(r,i)}}let CQ={description:A(`Strictly greater than.`),args:[z(`value1 (number, string, boolean)`,A(`The value to test as being greater than value2.`)),z(`value2 (number, string, boolean)`,A(`The second value.`))],compute:function(e,t){return SQ(e,t,(e,t)=>typeof e==`number`&&typeof t==`number`?!bQ(e,t)&&e>t:e>t)}},wQ={description:A(`Greater than or equal to.`),args:[z(`value1 (number, string, boolean)`,A(`The value to test as being greater than or equal to value2.`)),z(`value2 (number, string, boolean)`,A(`The second value.`))],compute:function(e,t){return SQ(e,t,(e,t)=>typeof e==`number`&&typeof t==`number`?bQ(e,t)||e>t:e>=t)}},TQ={description:A(`Less than.`),args:[z(`value1 (number, string, boolean)`,A(`The value to test as being less than value2.`)),z(`value2 (number, string, boolean)`,A(`The second value.`))],compute:function(e,t){let n=wQ.compute.bind(this)(e,t);return Gi(n.value)?n:{value:!n.value}}},EQ={description:A(`Less than or equal to.`),args:[z(`value1 (number, string, boolean)`,A(`The value to test as being less than or equal to value2.`)),z(`value2 (number, string, boolean)`,A(`The second value.`))],compute:function(e,t){let n=CQ.compute.bind(this)(e,t);return Gi(n.value)?n:{value:!n.value}}},DQ={description:A(`Difference of two numbers.`),args:[z(`value1 (number)`,A(`The minuend, or number to be subtracted from.`)),z(`value2 (number)`,A(`The subtrahend, or number to subtract from value1.`))],compute:function(e,t){return{value:N(e,this.locale)-N(t,this.locale),format:e?.format||t?.format}}},OQ={description:A(`Product of two numbers`),args:[z(`factor1 (number)`,A(`The first multiplicand.`)),z(`factor2 (number)`,A(`The second multiplicand.`))],compute:function(e,t){return{value:N(e,this.locale)*N(t,this.locale),format:e?.format||t?.format}}},kQ={description:A(`Not equal.`),args:[z(`value1 (string, number, boolean)`,A(`The first value.`)),z(`value2 (string, number, boolean)`,A(`The value to test against value1 for inequality.`))],compute:function(e,t){let n=xQ.compute.bind(this)(e,t);return Gi(n.value)?n:{value:!n.value}}},AQ={description:A(`A number raised to a power.`),args:[z(`base (number)`,A(`The number to raise to the exponent power.`)),z(`exponent (number)`,A(`The exponent to raise base to.`))],compute:function(e,t){return hK.compute.bind(this)(e,t)}},jQ={description:A(`Gets the spilled range of an array formula.`),args:[z(`ref (any, range<any>)`,A(`The reference to get the spilled range from.`))],compute:function(e){if(e===void 0)return new Li(Ji);let t=I(e);if(t.length!==1||t[0].length!==1)return new M(A(`Only single-cell references are allowed to get the spilled range.`));let n=t[0][0];if(Gi(n.value))return n;if(n.position===void 0)return new Li(Ji);let r=this.__originCellPosition;r&&this.updateDependencies?.(r);let i=this.getters.getSpreadZone(n.position);if(i===void 0)return new Li;let a=this.getters.getRangeFromZone(this.__originSheetId,i);return r&&this.addDependencies?.(r,[a]),ma(i.right-i.left+1,i.bottom-i.top+1,(e,t)=>this.getFormulaResult({sheetId:a.sheetId,col:i.left+e,row:i.top+t}))},hidden:!0},MQ={description:A(`A number with the sign reversed.`),args:[z(`value (number)`,A(`The number to have its sign reversed. Equivalently, the number to multiply by -1.`))],compute:function(e){return{value:-N(e,this.locale),format:e?.format}}},NQ={description:A(`Value interpreted as a percentage.`),args:[z(`percentage (number)`,A(`The value to interpret as a percentage.`))],compute:function(e){return N(e,this.locale)/100}},PQ={description:A(`A specified number, unchanged.`),args:[z(`value (any)`,A(`The number to return.`))],compute:function(e={value:null}){return e}},$=e=>({transform:t=>t*e,inverseTransform:t=>t/e}),FQ={transform:e=>e,inverseTransform:e=>e},IQ=1e-10,LQ=.0254,RQ=LQ/72,zQ=.3048,BQ=.9144,VQ=1609.34,HQ=1852,UQ=946073047258e4,WQ={g:{...FQ,category:`weight`},u:{...$(166053e-29),category:`weight`},grain:{...$(.0647989),category:`weight`},ozm:{...$(28.3495),category:`weight`},lbm:{...$(453.592),category:`weight`},stone:{...$(6350.29),category:`weight`},sg:{...$(14593.90294),category:`weight`},cwt:{...$(45359.237),category:`weight`},uk_cwt:{...$(50802.3),category:`weight`},ton:{...$(907184.74),category:`weight`},uk_ton:{...$(1016046.9),category:`weight`},m:{...FQ,category:`distance`},km:{...$(1e3),category:`distance`},ang:{...$(IQ),category:`distance`},Picapt:{...$(RQ),category:`distance`},pica:{...$(LQ/6),category:`distance`},in:{...$(LQ),category:`distance`},ft:{...$(zQ),category:`distance`},yd:{...$(BQ),category:`distance`},ell:{...$(1.143),category:`distance`},mi:{...$(VQ),category:`distance`},survey_mi:{...$(1609.34),category:`distance`},Nmi:{...$(HQ),category:`distance`},ly:{...$(UQ),category:`distance`},parsec:{...$(0x6da012f95c9fd0),category:`distance`},sec:{...FQ,category:`time`},min:{...$(60),category:`time`},hr:{...$(3600),category:`time`},day:{...$(86400),category:`time`},yr:{...$(31556952),category:`time`},Pa:{...FQ,category:`pressure`},bar:{...$(1e5),category:`pressure`},mmHg:{...$(133.322),category:`pressure`},Torr:{...$(133.322),category:`pressure`},psi:{...$(6894.76),category:`pressure`},atm:{...$(101325),category:`pressure`},N:{...FQ,category:`force`},dyn:{...$(1e-5),category:`force`},pond:{...$(.00980665),category:`force`},lbf:{...$(4.44822),category:`force`},J:{...FQ,category:`energy`},eV:{...$(160218e-24),category:`energy`},e:{...$(1e-7),category:`energy`},flb:{...$(1.3558179483),category:`energy`},c:{...$(4.184),category:`energy`},cal:{...$(4.1868),category:`energy`},BTU:{...$(1055.06),category:`energy`},Wh:{...$(3600),category:`energy`},HPh:{...$(2684520),category:`energy`},W:{...FQ,category:`power`},PS:{...$(735.499),category:`power`},HP:{...$(745.7),category:`power`},T:{...FQ,category:`magnetism`},ga:{...$(1e-4),category:`magnetism`},K:{...FQ,category:`temperature`},C:{transform:e=>e+273.15,inverseTransform:e=>e-273.15,category:`temperature`},F:{transform:e=>(e-32)*5/9+273.15,inverseTransform:e=>(e-273.15)*9/5+32,category:`temperature`},Rank:{...$(5/9),category:`temperature`},Reau:{transform:e=>e*1.25+273.15,inverseTransform:e=>(e-273.15)/1.25,category:`temperature`},"m^3":{...FQ,category:`volume`,order:3},"ang^3":{...$(IQ**3),category:`volume`,order:3},"Picapt^3":{...$(RQ**3),category:`volume`,order:3},tsp:{...$(492892e-11),category:`volume`},tspm:{...$(5e-6),category:`volume`},tbs:{...$(14786764825785619e-21),category:`volume`},"in^3":{...$(LQ**3),category:`volume`,order:3},oz:{...$(295735295625e-16),category:`volume`},cup:{...$(237e-6),category:`volume`},pt:{...$(.0004731765),category:`volume`},uk_pt:{...$(568261e-9),category:`volume`},qt:{...$(.0009463529),category:`volume`},l:{...$(.001),category:`volume`},uk_qt:{...$(.0011365225),category:`volume`},gal:{...$(.0037854118),category:`volume`},uk_gal:{...$(.00454609),category:`volume`},"ft^3":{...$(zQ**3),category:`volume`,order:3},bushel:{...$(.0352390704),category:`volume`},barrel:{...$(.158987295),category:`volume`},"yd^3":{...$(BQ**3),category:`volume`,order:3},MTON:{...$(1.13267386368),category:`volume`},GRT:{...$(2.83168),category:`volume`},"mi^3":{...$(VQ**3),category:`volume`,order:3},"Nmi^3":{...$(HQ**3),category:`volume`,order:3},"ly^3":{...$(UQ**3),category:`volume`,order:3},"m^2":{...FQ,category:`area`,order:2},"ang^2":{...$(IQ**2),category:`area`,order:2},"Picapt^2":{...$(RQ**2),category:`area`,order:2},"in^2":{...$(LQ**2),category:`area`,order:2},"ft^2":{...$(zQ**2),category:`area`,order:2},"yd^2":{...$(BQ**2),category:`area`,order:2},ar:{...$(100),category:`area`},Morgen:{...$(2500),category:`area`},uk_acre:{...$(4046.8564224),category:`area`},us_acre:{...$(4046.8726098743),category:`area`},ha:{...$(1e4),category:`area`},"mi^2":{...$(VQ**2),category:`area`,order:2},"Nmi^2":{...$(HQ**2),category:`area`,order:2},"ly^2":{...$(UQ**2),category:`area`,order:2},bit:{...FQ,category:`information`},byte:{...$(8),category:`information`},"m/s":{...FQ,category:`speed`},"m/hr":{...$(1/3600),category:`speed`},"km/hr":{...$(1/3.6),category:`speed`},mph:{...$(.44704),category:`speed`},kn:{...$(.5144444444),category:`speed`},admkn:{...$(.5147733333),category:`speed`}},GQ={shweight:`cwt`,lcwt:`uk_cwt`,hweight:`uk_cwt`,LTON:`uk_ton`,brton:`uk_ton`,pc:`parsec`,Pica:`Picapt`,d:`day`,mn:`min`,s:`sec`,p:`Pa`,at:`atm`,dy:`dyn`,ev:`eV`,hh:`HPh`,wh:`Wh`,btu:`BTU`,h:`HP`,cel:`C`,fah:`F`,kel:`K`,us_pt:`pt`,L:`l`,lt:`l`,ang3:`ang^3`,ft3:`ft^3`,in3:`in^3`,ly3:`ly^3`,m3:`m^3`,mi3:`mi^3`,yd3:`yd^3`,Nmi3:`Nmi^3`,Picapt3:`Picapt^3`,"Pica^3":`Picapt^3`,Pica3:`Picapt^3`,regton:`GRT`,ang2:`ang^2`,ft2:`ft^2`,in2:`in^2`,ly2:`ly^2`,m2:`m^2`,mi2:`mi^2`,Nmi2:`Nmi^2`,Picapt2:`Picapt^2`,"Pica^2":`Picapt^2`,Pica2:`Picapt^2`,yd2:`yd^2`,"m/h":`m/hr`,"m/sec":`m/s`},KQ={"":1,Y:1e24,Z:1e21,E:0xde0b6b3a7640000,P:0x38d7ea4c68000,T:0xe8d4a51000,G:1e9,M:1e6,k:1e3,h:100,da:10,e:10,d:.1,c:.01,m:.001,u:1e-6,n:1e-9,p:1e-12,f:1e-15,a:1e-18,z:1e-21,y:1e-21,Yi:2**80,Zi:2**70,Ei:2**60,Pi:2**50,Ti:2**40,Gi:2**30,Mi:2**20,ki:2**10},qQ={weight:A(`Weight`),distance:A(`Distance`),time:A(`Time`),pressure:A(`Pressure`),force:A(`Force`),energy:A(`Energy`),power:A(`Power`),magnetism:A(`Magnetism`),temperature:A(`Temperature`),volume:A(`Volume`),area:A(`Area`),information:A(`Information`),speed:A(`Speed`)},JQ=Object.entries(WQ).map(([e,t])=>({value:e,label:YQ(t.category)}));function YQ(e){return qQ[e]??``}function XQ(e){for(let[t,n]of Object.entries(KQ)){if(t&&!e.startsWith(t))continue;let r=e.slice(t.length),i=WQ[r];if(!i&&GQ[r]&&(i=WQ[GQ[r]]),i)return{...i,factor:i.order?n**+i.order:n}}}var ZQ=l({CONVERT:()=>QQ});let QQ={description:A(`Converts a numeric value to a different unit of measure.`),args:[z(`value (number)`,A(`the numeric value in start_unit to convert to end_unit`)),z(`start_unit (string)`,A(`The starting unit, the unit currently assigned to value`),JQ),z(`end_unit (string)`,A(`The unit of measure into which to convert value`),JQ)],compute:function(e,t,n){let r=N(e,this.locale),i=P(t),a=P(n),o=XQ(i),s=XQ(a);return o?s?o.category===s.category?{value:s.inverseTransform(o.factor*o.transform(r))/s.factor,format:e?.format}:{value:j.GenericError,message:A(`Incompatible units of measure ('%s' vs '%s')`,YQ(o.category),YQ(s.category))}:{value:j.GenericError,message:A(`Invalid units of measure ('%s')`,a)}:{value:j.GenericError,message:A(`Invalid units of measure ('%s')`,i)}},isExported:!0};var $Q=l({CHAR:()=>r$,CLEAN:()=>i$,CONCATENATE:()=>a$,EXACT:()=>o$,FIND:()=>s$,FORMAT_LARGE_NUMBER:()=>c$,JOIN:()=>l$,LEFT:()=>u$,LEN:()=>d$,LOWER:()=>f$,MID:()=>p$,PROPER:()=>m$,REGEXEXTRACT:()=>g$,REGEXREPLACE:()=>_$,REGEXTEST:()=>h$,REPLACE:()=>v$,RIGHT:()=>y$,SEARCH:()=>b$,SPLIT:()=>x$,SUBSTITUTE:()=>S$,TEXT:()=>D$,TEXTAFTER:()=>k$,TEXTBEFORE:()=>A$,TEXTJOIN:()=>C$,TEXTSPLIT:()=>w$,TRIM:()=>T$,UPPER:()=>E$,VALUE:()=>O$});let e$=/[A-Za-zÀ-ÖØ-öø-ÿ]+/g,t$=[{value:0,label:A(`Case-sensitive (default)`)},{value:1,label:A(`Case-insensitive`)}],n$=[{value:0,label:A(`Don't match to end (default)`)},{value:1,label:A(`Match to end`)}],r$={description:A(`Gets character associated with number.`),args:[z(`table_number (number)`,A(`The number of the character to look up from the current Unicode table in decimal format.`))],compute:function(e){let t=Math.trunc(N(e,this.locale));return t<1?new M(A(`The table_number (%s) is out of range.`,t)):String.fromCharCode(t)},isExported:!0},i$={description:A(`Remove non-printable characters from a piece of text.`),args:[z(`text (string)`,A(`The text whose non-printable characters are to be removed.`))],compute:function(e){let t=P(e),n=``;for(let e of t)e&&e.charCodeAt(0)>31&&(n+=e);return n},isExported:!0},a$={description:A(`Appends strings to one another.`),args:[z(`string (string, range<string>, repeating)`,A(`String to append in sequence.`))],compute:function(...e){return da(e,(e,t)=>e+P(t),``)},isExported:!0},o$={description:A(`Tests whether two strings are identical.`),args:[z(`string1 (string)`,A(`The first string to compare.`)),z(`string2 (string)`,A(`The second string to compare.`))],compute:function(e,t){return P(e)===P(t)},isExported:!0},s$={description:A(`First position of string found in text, case-sensitive.`),args:[z(`search_for (string)`,A(`The string to look for within text_to_search.`)),z(`text_to_search (string)`,A(`The text to search for the first occurrence of search_for.`)),z(`starting_at (number, default=1)`,A(`The character within text_to_search at which to start the search.`))],compute:function(e,t,n={value:1}){let r=P(e),i=P(t),a=N(n,this.locale);if(i===``)return new M(A(`The text_to_search must be non-empty.`));if(a<1)return new M(A(`The starting_at (%s) must be greater than or equal to 1.`,a));let o=i.indexOf(r,a-1);return o===-1?new M(A(`In [[FUNCTION_NAME]] evaluation, cannot find '%s' within '%s'.`,r,i)):o+1},isExported:!0},c$={description:A(`Apply a large number format`),args:[z(`value (number)`,A(`The number.`)),z(`unit (string, optional)`,A(`The formatting unit. Use 'k', 'm', or 'b' to force the unit`),[{value:`k`,label:A(`Thousand`)},{value:`m`,label:A(`Million`)},{value:`b`,label:A(`Billion`)}])],compute:function(e,t){return{value:N(e,this.locale),format:zo(e,t,this.locale)}}},l$={description:A(`Concatenates elements of arrays with delimiter.`),args:[z(`delimiter (string)`,A(`The character or string to place between each concatenated value.`)),z(`value_or_array (string, range<string>, repeating)`,A(`Value to be appended using delimiter.`))],compute:function(e,...t){let n=P(e);return da(t,(e,t)=>(e?e+n:``)+P(t),``)}},u$={description:A(`Substring from beginning of specified string.`),args:[z(`text (string)`,A(`The string from which the left portion will be returned.`)),z(`number_of_characters (number, optional)`,A(`The number of characters to return from the left side of string.`))],compute:function(e,...t){let n=t.length?N(t[0],this.locale):1;return n<0?new M(A(`The number_of_characters (%s) must be positive or null.`,n)):P(e).substring(0,n)},isExported:!0},d$={description:A(`Length of a string.`),args:[z(`text (string)`,A(`The string whose length will be returned.`))],compute:function(e){return P(e).length},isExported:!0},f$={description:A(`Converts a specified string to lowercase.`),args:[z(`text (string)`,A(`The string to convert to lowercase.`))],compute:function(e){return P(e).toLowerCase()},isExported:!0},p$={description:A(`A segment of a string.`),args:[z(`text (string)`,A(`The string to extract a segment from.`)),z(`starting_at (number)`,A(`The index from the left of string from which to begin extracting. The first character in string has the index 1.`)),z(`extract_length (number)`,A(`The length of the segment to extract.`))],compute:function(e,t,n){let r=P(e),i=N(t,this.locale),a=N(n,this.locale);return i<1?new M(A(`The starting_at argument (%s) must be positive greater than one.`,i.toString())):a<0?new M(A(`The extract_length argument (%s) must be positive or null.`,a)):r.slice(i-1,i+a-1)},isExported:!0},m$={description:A(`Capitalizes each word in a specified string.`),args:[z(`text_to_capitalize (string)`,A(`The text which will be returned with the first letter of each word in uppercase and all other letters in lowercase.`))],compute:function(e){return P(e).replace(e$,e=>e.charAt(0).toUpperCase()+e.slice(1).toLowerCase())},isExported:!0},h$={description:A(`Checks whether a string matches the supplied regular expression.`),args:[z(`text (string)`,A(`The string to test.`)),z(`pattern (string)`,A(`The regular expression pattern to match against the text.`)),z(`case_sensitivity (number, default=0)`,A(`Whether the match is case-sensitive.`),[{value:0,label:A(`Case-sensitive`)},{value:1,label:A(`Case-insensitive`)}])],compute:function(e,t,n={value:0}){let r=P(e),i=P(t),a=N(n,this.locale);if(i===``)return!0;if(r===``)return!1;if(a!==0&&a!==1)return new M(A(`The case_sensitivity (%s) must be 0 or 1.`,a));let o=a===1?`gi`:`g`,s;try{s=new RegExp(i,o)}catch{return new M(A(`Invalid regular expression`))}return s.test(r)},isExported:!0},g$={description:A(`Extract text from a string based on the supplied regular expression.`),args:[z(`text (string)`,A(`The string on which you want to extract text.`)),z(`pattern (string)`,A(`The regular expression pattern to match against the text.`)),z(`return_mode (number, default=0)`,A(`0 = first match, 1 = all matches as an array, 2 = capturing groups from the first match as an array.`),[{value:0,label:A(`First match`)},{value:1,label:A(`All matches`)},{value:2,label:A(`Capture groups of first match`)}]),z(`case_sensitivity (number, default=0)`,A(`Whether the match is case-sensitive.`),[{value:0,label:A(`Case-sensitive`)},{value:1,label:A(`Case-insensitive`)}])],compute:function(e,t,n={value:0},r={value:0}){let i=P(e),a=P(t),o=N(n,this.locale),s=N(r,this.locale);if(i===``||a===``)return{value:``};if(o<0||o>2)return new M(A(`The return_mode (%s) must be 0, 1 or 2.`,o));if(s!==0&&s!==1)return new M(A(`The case_sensitivity (%s) must be 0 or 1.`,s));let c=s===1?`gi`:`g`,l;try{l=new RegExp(a,c)}catch{return new M(A(`Invalid regular expression`))}let u=[...i.matchAll(l)];return u.length===0?{value:j.NotAvailable,message:A(`No matches found.`)}:o===0?u[0][0]:o===1?u.map(e=>[e[0]]):u[0].length<2?new M(A(`No capturing groups found.`)):u[0].slice(1).map(e=>[e])},isExported:!0},_$={description:A(`Replace text in a string based on the supplied regular expression.`),args:[z(`text (string)`,A(`The string in which you want to replace text.`)),z(`pattern (string)`,A(`The regular expression pattern to match against the text.`)),z(`replacement (string)`,A(`The text to use as the replacement.`)),z(`occurrence (number, default=0)`,A(`0 = replace all matches. A negative number counts from the end.`)),z(`case_sensitivity (number, default=0)`,A(`Whether the match is case-sensitive.`),[{value:0,label:A(`Case-sensitive`)},{value:1,label:A(`Case-insensitive`)}])],compute:function(e,t,n,r={value:0},i={value:0}){let a=P(e),o=P(t),s=P(n),c=N(r,this.locale),l=N(i,this.locale);if(l!==0&&l!==1)return new M(A(`The case_sensitivity (%s) must be 0 or 1.`,l));let u=l===1?`gi`:`g`,d;try{d=new RegExp(o,u)}catch{return new M(A(`Invalid regular expression`))}if(c!==0){let e=[...a.matchAll(d)];if(e.length===0||Math.abs(c)>e.length)return a;let t=c>0?c-1:e.length+c,n=e[t][0].length,r=e[t].index;return a.substring(0,r)+s+a.substring(r+n)}return a.replace(d,s)},isExported:!0},v$={description:A(`Replaces part of a text string with different text.`),args:[z(`text (string)`,A(`The text, a part of which will be replaced.`)),z(`position (number)`,A(`The position where the replacement will begin (starting from 1).`)),z(`length (number)`,A(`The number of characters in the text to be replaced.`)),z(`new_text (string)`,A(`The text which will be inserted into the original text.`))],compute:function(e,t,n,r){let i=N(t,this.locale);if(i<1)return new M(A(`The position (%s) must be greater than or equal to 1.`,i));let a=P(e),o=N(n,this.locale),s=P(r);return a.substring(0,i-1)+s+a.substring(i-1+o)},isExported:!0},y$={description:A(`A substring from the end of a specified string.`),args:[z(`text (string)`,A(`The string from which the right portion will be returned.`)),z(`number_of_characters (number, optional)`,A(`The number of characters to return from the right side of string.`))],compute:function(e,...t){let n=t.length?N(t[0],this.locale):1;if(n<0)return new M(A(`The number_of_characters (%s) must be positive or null.`,n));let r=P(e),i=r.length;return r.substring(i-n,i)},isExported:!0},b$={description:A(`First position of string found in text, ignoring case.`),args:[z(`search_for (string)`,A(`The string to look for within text_to_search.`)),z(`text_to_search (string)`,A(`The text to search for the first occurrence of search_for.`)),z(`starting_at (number, default=1)`,A(`The character within text_to_search at which to start the search.`))],compute:function(e,t,n={value:1}){let r=P(e).toLowerCase(),i=P(t).toLowerCase(),a=N(n,this.locale);if(i===``)return{value:j.GenericError,message:A(`The text_to_search must be non-empty.`)};if(a<1)return{value:j.GenericError,message:A(`The starting_at (%s) must be greater than or equal to 1.`,a)};let o=i.indexOf(r,a-1);return o===-1?{value:j.GenericError,message:A(`In [[FUNCTION_NAME]] evaluation, cannot find '%s' within '%s'.`,r,i)}:{value:o+1}},isExported:!0},x$={description:A(`Split text by specific character delimiter(s).`),args:[z(`text (string)`,A(`The text to divide.`)),z(`delimiter (string)`,A(`The character or characters to use to split text.`)),z(`split_by_each (boolean, default=true})`,A(`Whether or not to divide text around each character contained in delimiter.`)),z(`remove_empty_text (boolean, default=true)`,A(`Whether or not to remove empty text messages from the split results. The default behavior is to treat consecutive delimiters as one (if TRUE). If FALSE, empty cells values are added between consecutive delimiters.`))],compute:function(e,t,n={value:!0},r={value:!0}){let i=P(e),a=qe(P(t)),o=F(n),s=F(r);if(a.length<=0)return new M(A(`The delimiter (%s) must be not be empty.`,a));let c=o?RegExp(`[${a}]`,`g`):new RegExp(a,`g`),l=i.split(c);return s&&(l=l.filter(e=>e!==``)),_a([l])},isExported:!1},S$={description:A(`Replaces existing text with new text in a string.`),args:[z(`text_to_search (string)`,A(`The text within which to search and replace.`)),z(`search_for (string)`,A(`The string to search for within text_to_search.`)),z(`replace_with (string)`,A(`The string that will replace search_for.`)),z(`occurrence_number (number, optional)`,A(`The instance of search_for within text_to_search to replace with replace_with. By default, all occurrences of search_for are replaced; however, if occurrence_number is specified, only the indicated instance of search_for is replaced.`))],compute:function(e,t,n,r){let i=N(r,this.locale);if(i<0)return new M(A(`The occurrenceNumber (%s) must be positive or null.`,i));let a=P(e),o=P(t);if(o===``)return a;let s=P(n),c=new RegExp(qe(o),`g`);if(i===0)return a.replace(c,s);let l=0;return a.replace(c,e=>++l===i?s:e)},isExported:!0},C$={description:A(`Combines text from multiple strings and/or arrays.`),args:[z(`delimiter (string)`,A(`A string, possible empty, or a reference to a valid string. If empty, the text will be simply concatenated.`)),z(`ignore_empty (boolean)`,A(`A boolean; if TRUE, empty cells selected in the text arguments won't be included in the result.`),[{value:!0,label:A(`Ignore empty cells`)},{value:!1,label:A(`Include empty cells (default)`)}]),z(`texts (string, range<string>, repeating)`,A(`Text item to join.`))],compute:function(e,t={value:!0},...n){let r=P(e),i=F(t),a=0;return da(n,(e,t)=>i&&P(t)===``?e:(a++?e+r:``)+P(t),``)},isExported:!0},w$={description:A(`Splits text into rows or columns using specified column and row delimiters.`),args:[z(`text (string)`,A(`The text to split.`)),z(`col_delimiter (string, range<string>)`,A(`Character or string to split columns by.`)),z(`row_delimiter (string, range<string>, optional)`,A(`Character or string to split rows by.`)),z(`ignore_empty (boolean, default=false)`,A(`Whether to ignore empty cells.`),[{value:!1,label:A(`Include empty cells (default)`)},{value:!0,label:A(`Ignore empty cells`)}]),z(`match_mode (number, default=0)`,A(`Searches the text for a delimiter match. By default, a case-sensitive match is done.`),t$),z(`pad_with (string, default="${j.NotAvailable}")`,A(`The value to use for padding empty cells.`))],compute:function(e,t,n,r={value:!1},i={value:0},a=new Ri){let o=P(e);if(o.length<=0)return new M(A(`No text to split.`));if(t===void 0&&n===void 0)return new M(A(`At least one delimiter must be provided.`));let s=I(t).flat().map(e=>qe(P(e))),c=I(n).flat().map(e=>qe(P(e)));if(s.some(e=>e===``)||c.some(e=>e===``))return new M(A(`The delimiters cannot be empty values.`));let l=F(r),u=N(i,this.locale);if(![0,1].includes(u))return new M(A(`match_mode should be a value of 0 or 1.`));let d=[],f=u===1?`gi`:`g`,p=c.filter(e=>!s.includes(e)),m=p.length?o.split(new RegExp(p.join(`|`),f)):[o];l&&(m=m.filter(e=>e!==``));let h=new RegExp(s.join(`|`),f);for(let e of m){let t=s.length?e.split(h):[e];l&&(t=t.filter(e=>e!==``)),d.push(t.map(e=>({value:e})))}let g=Math.max(...d.map(e=>e.length));for(let e of d)for(;e.length<g;)e.push(a);return _a(d)},isExported:!0},T$={description:A(`Removes space characters.`),args:[z(`text (string)`,A(`The text or reference to a cell containing text to be trimmed.`))],compute:function(e){return Pt(P(e))},isExported:!0},E$={description:A(`Converts a specified string to uppercase.`),args:[z(`text (string)`,A(`The string to convert to uppercase.`))],compute:function(e){return P(e).toUpperCase()},isExported:!0},D$={description:A(`Converts a number to text according to a specified format.`),args:[z(`number (number)`,A(`The number, date or time to format.`)),z(`format (string)`,A(`The case-sensitive format of the result, enclosed in quotation marks. Examples: "0.00" rounded to 2 decimal places, "hh:mm:ss" for hour:minutes:seconds.`))],compute:function(e,t){return R(N(e,this.locale),{format:P(t),locale:this.locale})},isExported:!0},O$={description:A(`Converts a string to a numeric value.`),args:[z(`value (number)`,A(`the string to be converted`))],compute:function(e){return N(e,this.locale)},isExported:!0},k$={description:A(`Returns text that occurs after a given substring or delimiter.`),args:[z(`text (string)`,A(`The source text.`)),z(`delimiter (string)`,A(`The substring after which text will be returned.`)),z(`instance_num (number, default=1)`,A(`The desired instance of the delimiter after which we extract the text. A negative number searches from the end.`)),z(`match_mode (number, default=0)`,A(`Searches the text for a delimiter match. By default, a case-sensitive match is done.`),t$),z(`match_end (number, default=0))`,A(`Whether to treat the end of text as a delimiter.`),n$),z(`if_not_found (string, default="${j.NotAvailable}")`,A(`Value to return if the delimiter is not found.`))],compute:function(e,t,n={value:1},r={value:0},i={value:0},a=new Ri){let o=P(e),s=N(n,this.locale),c=N(r,this.locale),l=N(i,this.locale);if(s===0)return new M(A(`The instance_num (%s) must not be zero.`,s));if(c!==0&&c!==1)return new M(A(`match_mode should have a value of 0 or 1.`));if(l!==0&&l!==1)return new M(A(`match_end should have a value of 0 or 1.`));let u=P(t);if(u===``)return Math.sign(s)>0?{value:o}:{value:``};let d=c===1?`gi`:`g`,f=qe(u),p=new RegExp(f,d),m=[...o.matchAll(p)].map(e=>e.index+f.length);if(s<0&&(m=m.reverse()),l&&Math.abs(s)===m.length+1)return Math.sign(s)>0?{value:``}:{value:o};let h=m[Math.abs(s)-1];return h===void 0?a:{value:o.substring(h)}},isExported:!0},A$={description:A(`Returns text that occurs before a given substring or delimiter.`),args:[z(`text (string)`,A(`The source text.`)),z(`delimiter (string)`,A(`The substring after which text will be returned.`)),z(`instance_num (number, default=1)`,A(`The desired instance of the delimiter before which we extract the text. A negative number searches from the end.`)),z(`match_mode (number, default=0)`,A(`Searches the text for a delimiter match. By default, a case-sensitive match is done.`),t$),z(`match_end (number, default=0))`,A(`Whether to match a delimiter against the end of the text.`),n$),z(`if_not_found (string, default="${j.NotAvailable}")`,A(`Value to return if the delimiter is not found.`))],compute:function(e,t,n={value:1},r={value:0},i={value:0},a=new Ri){let o=P(e),s=N(n,this.locale),c=N(r,this.locale),l=N(i,this.locale);if(s===0)return new M(A(`The instance_num (%s) must not be zero.`,s));if(c!==0&&c!==1)return new M(A(`match_mode should have a value of 0 or 1.`));if(l!==0&&l!==1)return new M(A(`match_end should have a value of 0 or 1.`));let u=P(t);if(u===``)return Math.sign(s)>0?{value:``}:{value:o};let d=c===1?`gi`:`g`,f=qe(u),p=new RegExp(f,d),m=[...o.matchAll(p)].map(e=>e.index+f.length);if(s<0&&(m=m.reverse()),l&&Math.abs(s)===m.length+1)return Math.sign(s)>0?{value:o}:{value:``};let h=m[Math.abs(s)-1];return h===void 0?a:{value:o.substring(0,h-u.length)}},isExported:!0};var j$=l({HYPERLINK:()=>M$});let M$={description:A(`Creates a hyperlink in a cell.`),args:[z(`url (string)`,A(`The full URL of the link enclosed in quotation marks.`)),z(`link_label (string, optional)`,A(`The text to display in the cell, enclosed in quotation marks.`))],compute:function(e,t){let n=P(e).trim(),r=P(t)||n;return n===``?r:ot(r,n)},isExported:!0},N$=[{name:A(`Array`),functions:YW},{name:A(`Database`),functions:eJ},{name:A(`Date`),functions:gY},{name:A(`Filter`),functions:eX},{name:A(`Financial`),functions:oX},{name:A(`Info`),functions:hZ},{name:A(`Lookup`),functions:WZ},{name:A(`Logical`),functions:OZ},{name:A(`Math`),functions:TG},{name:A(`Operator`),functions:mQ},{name:A(`Statistical`),functions:VK},{name:A(`Text`),functions:$Q},{name:A(`Engineering`),functions:QY},{name:A(`Web`),functions:j$},{name:A(`Parser`),functions:ZQ}];for(let e of N$){let t=e.functions;for(let n in t){let r=t[n];r.category=r.category||e.name,n=n.replace(/_/g,`.`),_s.add(n,{isExported:!1,...r})}}let P$={},F$={MIN_ROW_HEIGHT:10,MIN_COL_WIDTH:5,HEADER_HEIGHT:26,HEADER_WIDTH:48,DESKTOP_BOTTOMBAR_HEIGHT:36,DEFAULT_CELL_WIDTH:96,DEFAULT_CELL_HEIGHT:23,SCROLLBAR_WIDTH:15},I$={autoCompleteProviders:vO,autofillModifiersRegistry:tR,autofillRulesRegistry:nR,cellMenuRegistry:VP,colMenuRegistry:nF,errorTypes:Pi,functionRegistry:_s,featurePluginRegistry:eB,iconsOnCellRegistry:FL,statefulUIPluginRegistry:tB,coreViewsPluginRegistry:nB,corePluginRegistry:$z,rowMenuRegistry:lF,sidePanelRegistry:sN,figureRegistry:rg,chartSidePanelComponentRegistry:WO,chartDataSourceSidePanelComponentRegistry:Zw,chartComponentRegistry:Ah,chartTypeRegistry:ny,chartSubtypeRegistry:hh,chartDataSourceRegistry:ty,topbarMenuRegistry:OB,topbarComponentRegistry:qB,clickableCellRegistry:rB,otRegistry:ER,inverseCommandRegistry:oB,urlRegistry:ql,cellPopoverRegistry:LS,numberFormatMenuRegistry:wB,repeatLocalCommandTransformRegistry:wz,repeatCommandTransformRegistry:Cz,clipboardHandlersRegistries:eI,pivotRegistry:eM,pivotTimeAdapterRegistry:fx,pivotSidePanelRegistry:mM,pivotNormalizationValueRegistry:Wx,supportedPivotPositionalFormulaRegistry:MI,pivotToFunctionValueRegistry:Gx,migrationStepRegistry:lS,chartJsExtensionRegistry:gr},L$={arg:z,isEvaluationError:Gi,toBoolean:F,toJsDate:aa,toNumber:N,toString:P,toNormalizedPivotValue:Bx,toFunctionPivotValue:Hx,toXC:E,toZone:hn,toUnboundedZone:mn,toCartesian:nn,numberToLetters:qt,lettersToNumber:Jt,UuidGenerator:G,formatValue:R,createCurrencyFormat:Mo,ColorGenerator:Fd,computeTextWidth:wu,createEmptyWorkbookData:kS,createEmptySheet:OS,createEmptyExcelSheet:AS,doesCellContainFunction:Gt,rgbaToHex:sd,colorToRGBA:cd,positionToZone:D,isDefined:w,isMatrix:Ue,lazy:_t,genericRepeat:KB,createAction:h,createActions:p,transformRangeData:ir,deepEquals:T,overlap:kn,union:Tn,isInside:jn,deepCopy:x,expandZoneOnInsertion:xn,reduceZoneOnDeletion:wn,unquote:Xe,getMaxObjectId:Mx,getFirstPivotFunction:aM,getNumberOfPivotFunctions:oM,parseDimension:Fx,isDateOrDatetimeField:Ix,makeFieldProposal:sM,periodYearToComparable:dx,insertTokenAfterArgSeparator:lM,insertTokenAfterLeftParenthesis:uM,mergeContiguousZones:tr,getPivotHighlights:oj,pivotTimeAdapter:px,UNDO_REDO_PIVOT_COMMANDS:QL,createPivotFormula:zx,areDomainArgsFieldsValid:Rx,splitReference:As,sanitizeSheetName:Qe,getUniqueText:Ht,isNumber:Si,isDateTime:Wr,createCustomFields:Zx,schemeToColorScale:oS,isDateTimeFormat:To,jsDateToNumber:ii,numberToJsDate:ni,DateTime:k,parseFormat:Ja,isFormula:Ut,domainToColRowDomain:wj,collapseHierarchicalDisplayName:rS},R$={isMarkdownLink:it,parseMarkdownLink:st,markdownLink:ot,openLink:Ql,urlRepresentation:Zl},z$={Checkbox:Qw,Section:Z,Select:Qh,RoundColorPicker:TT,ChartDataSeries:uT,ChartErrorSection:mT,ChartLabelRange:dT,ChartRangeDataSourceComponent:kD,ChartTitle:ST,ChartPanel:JO,ChartFigure:tg,ChartJsComponent:Vp,ClickableCellSortIcon:NI,ZoomableChartJsComponent:Sh,Grid:jI,GridOverlay:oI,ScorecardChart:Pm,GaugeChartComponent:Oh,LineConfigPanel:kO,BarConfigPanel:gT,PieChartDesignPanel:MO,GenericChartConfigPanel:hT,ChartWithAxisDesignPanel:MT,GenericZoomableChartDesignPanel:NT,LineChartDesignPanel:AO,GaugeChartConfigPanel:qD,GaugeChartDesignPanel:wO,ScorecardChartConfigPanel:FO,ScorecardChartDesignPanel:IO,GeoChartDesignPanel:DO,RadarChartDesignPanel:NO,WaterfallChartDesignPanel:UO,ComboChartDesignPanel:WD,FunnelChartDesignPanel:KD,SunburstChartDesignPanel:LO,TreeMapChartDesignPanel:HO,ChartTypePicker:KO,FigureComponent:ig,MenuPopover:Zh,Popover:qh,SelectionInput:lT,ValidationMessages:pT,AddDimensionButton:dj,PivotDimensionGranularity:pj,PivotDimensionOrder:mj,PivotDimension:fj,PivotLayoutConfigurator:vj,PivotHTMLRenderer:FI,PivotDeferUpdate:cj,PivotTitleSection:yj,CogWheelMenu:Yw,TextInput:Hw,SidePanelCollapsible:vT,RadioSelection:wT,GeoChartRegionSelectSection:TO,ChartDashboardMenu:$h,FullScreenFigure:PI,NumberInput:yT,TopBar:YV,Composer:iO},B$={useDragAndDropListItems:Fw,useHighlights:QO,useHighlightsOnHover:ZO},V$={useStoreProvider:Cr,DependencyContainer:xr,CellPopoverStore:RS,ComposerFocusStore:mr,CellComposerStore:BF,FindAndReplaceStore:Bk,HighlightStore:oT,DelayedHoveredCellStore:ag,HoveredTableStore:rI,ModelStore:sr,NotificationStore:yO,RendererStore:dr,SelectionInputStore:cT,SpreadsheetStore:fr,useStore:O,useLocalStore:wr,SidePanelStore:lN,PivotSidePanelStore:fM,PivotMeasureDisplayPanelStore:ij,ClientFocusStore:dF,GridRenderer:mI};function H$(e,t){return _s.add(e,t),{addFunction:(e,t)=>H$(e,t)}}let U$={DEFAULT_LOCALE:L,HIGHLIGHT_COLOR:ee,PIVOT_STATIC_TABLE_CONFIG:Fe,PIVOT_INSERT_TABLE_STYLE_ID:Ie,ChartTerms:lg,FIGURE_ID_SPLITTER:`??`,GRID_ICON_EDGE_LENGTH:17,GRID_ICON_MARGIN:2,CHART_TYPES:aS},W$={...OD,...II};e.AbstractCellClipboardHandler=mz,e.AbstractChart=Hp,e.AbstractFigureClipboardHandler=sW,e.BadExpressionError=Fi,e.CHART_TYPES=aS,e.CellErrorType=j,e.CellValueType=V,e.CircularDependencyError=Ii,e.ClientDisconnectedError=cz,e.ClipboardMIMEType=zS,e.CommandResult=H,e.CompiledFormula=bl,e.CorePlugin=Bg,e.CoreViewPlugin=fN,e.DEFAULT_LOCALE=L,e.DEFAULT_LOCALES=Na,e.DEFAULT_LOCALE_DIGIT_GROUPING=`[3,0]`,e.DIRECTION=We,e.DispatchResult=Wl,e.DivisionByZeroError=Vi,e.EvaluationError=M,e.InvalidReferenceError=Li,e.LocalTransportService=JB,e.Model=iW,e.NEXT_VALUE=sg,e.NotAvailableError=Ri,e.NumberTooLargeError=Hi,e.OrderedLayers=lr,e.PREVIOUS_VALUE=og,e.PivotRuntimeDefinition=bj,e.Registry=B,e.Revision=sz,e.SPREADSHEET_DIMENSIONS=F$,e.SplillBlockedError=Bi,e.Spreadsheet=QV,e.SpreadsheetPivotTable=Vj,e.UIPlugin=pR,e.UnknownFunctionError=zi,e.__info__=P$,e.addFunction=H$,e.addRenderingLayer=ur,e.astToFormula=IF,e.availableConditionalFormatOperators=wk,e.availableDataValidationOperators=Ik,e.availableFiltersOperators=yW,e.borderStyles=He,e.canExecuteInReadonly=Ul,e.categories=N$,e.chartHelpers=W$,e.components=z$,e.constants=U$,e.convertAstNodes=Ec,e.coreTypes=Vl,e.createAutocompleteArgumentsProvider=jW,e.errorTypes=Pi,e.filterDateCriterionOperators=SW,e.filterNumberCriterionOperators=xW,e.filterTextCriterionOperators=bW,e.findCellInNewZone=Hn,e.functionCache=vl,e.getCaretDownSvg=av,e.getCaretUpSvg=ov,e.helpers=L$,e.hooks=B$,e.invalidSubtotalFormulasCommands=Rl,e.invalidateBordersCommands=Ll,e.invalidateCFEvaluationCommands=Il,e.invalidateChartEvaluationCommands=Pl,e.invalidateDependenciesCommands=Fl,e.invalidateEvaluationCommands=Nl,e.isCoreCommand=Hl,e.isHeadersDependant=Ol,e.isMatrix=Ue,e.isPositionDependent=jl,e.isRangeDependant=Al,e.isSheetDependent=Dl,e.isTargetDependent=kl,e.isZoneDependent=Ml,e.iterateAstNodes=Dc,e.links=R$,e.load=mS,e.lockedSheetAllowedCommands=Bl,e.parse=wc,e.parseTokens=Tc,e.readonlyAllowedCommands=zl,e.registries=I$,e.schemeToColorScale=oS,e.setDefaultSheetViewSize=Ne,e.setTranslationMethod=ji,e.stores=V$,e.tokenColors=Ve,e.tokenize=Hs,P$.version=`19.4.0-alpha.4`,P$.date=`2026-05-11T13:50:06.000Z`,P$.hash=`4f00b68`})(this.o_spreadsheet=this.o_spreadsheet||{},owl);