@odoo/o-spreadsheet 19.5.0-alpha.4 → 19.5.0-alpha.6

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 (45) hide show
  1. package/dist/o_spreadsheet.cjs +4290 -4178
  2. package/dist/o_spreadsheet.css +3 -7
  3. package/dist/o_spreadsheet.esm.js +4291 -4179
  4. package/dist/o_spreadsheet.iife.js +14932 -14820
  5. package/dist/o_spreadsheet.min.iife.js +223 -223
  6. package/dist/o_spreadsheet.xml +7 -10
  7. package/dist/types/components/autofill/autofill.d.ts +1 -0
  8. package/dist/types/{plugins/ui_feature/autofill.d.ts → components/autofill/autofill_store.d.ts} +6 -11
  9. package/dist/types/components/autofill/table_autofill_store.d.ts +6 -0
  10. package/dist/types/components/composer/composer/abstract_composer_store.d.ts +2 -2
  11. package/dist/types/components/composer/composer/composer.d.ts +2 -1
  12. package/dist/types/components/grid/grid.d.ts +3 -0
  13. package/dist/types/components/paint_format_button/paint_format_store.d.ts +1 -1
  14. package/dist/types/components/popover/cell_popover_store.d.ts +1 -1
  15. package/dist/types/components/props_validation.d.ts +7 -7
  16. package/dist/types/components/selection_input/selection_input_store.d.ts +1 -1
  17. package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +1 -1
  18. package/dist/types/components/side_panel/chart/common.d.ts +1 -1
  19. package/dist/types/components/side_panel/conditional_formatting/cf_editor/cell_is_rule_editor.d.ts +1 -1
  20. package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor.d.ts +1 -1
  21. package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor_threshold.d.ts +1 -1
  22. package/dist/types/components/side_panel/conditional_formatting/cf_editor/data_bar_rule_editor.d.ts +1 -1
  23. package/dist/types/components/side_panel/conditional_formatting/cf_editor/icon_set_rule_editor.d.ts +1 -1
  24. package/dist/types/components/side_panel/remove_duplicates/remove_duplicates.d.ts +3 -10
  25. package/dist/types/components/side_panel/side_panel/side_panel_store.d.ts +1 -1
  26. package/dist/types/formulas/compiler.d.ts +1 -0
  27. package/dist/types/index.d.ts +7 -0
  28. package/dist/types/plugins/core/squisher.d.ts +1 -0
  29. package/dist/types/plugins/ui_core_views/pivot_ui.d.ts +3 -0
  30. package/dist/types/plugins/ui_feature/collaborative.d.ts +2 -1
  31. package/dist/types/store_engine/store_registries.d.ts +4 -0
  32. package/dist/types/stores/array_formula_highlight.d.ts +1 -1
  33. package/dist/types/{plugins/ui_feature/automatic_sum.d.ts → stores/automatic_sum_store.d.ts} +5 -4
  34. package/dist/types/stores/checkbox_toggle.d.ts +9 -0
  35. package/dist/types/stores/data_cleanup_store.d.ts +31 -0
  36. package/dist/types/stores/spreadsheet_store.d.ts +1 -1
  37. package/dist/types/stores/trim_whitespace_store.d.ts +9 -0
  38. package/dist/types/types/commands.d.ts +0 -3
  39. package/dist/types/types/getters.d.ts +1 -4
  40. package/dist/types/types/range.d.ts +1 -0
  41. package/dist/types/types/store_engine.d.ts +10 -3
  42. package/package.json +2 -2
  43. package/dist/types/plugins/ui_feature/checkbox_toggle.d.ts +0 -9
  44. package/dist/types/plugins/ui_feature/data_cleanup.d.ts +0 -16
  45. package/dist/types/plugins/ui_feature/table_autofill.d.ts +0 -6
@@ -1,9 +0,0 @@
1
- import { Command } from "../../types/commands";
2
- import { Zone } from "../../types/misc";
3
- import { UIPlugin } from "../ui_plugin";
4
- export declare class CheckboxTogglePlugin extends UIPlugin {
5
- static getters: readonly ["hasBooleanValidationInZones"];
6
- handle(cmd: Command): void;
7
- hasBooleanValidationInZones(zones: Zone[]): boolean;
8
- private toggleCheckbox;
9
- }
@@ -1,16 +0,0 @@
1
- import { Command, CommandResult } from "../../types/commands";
2
- import { UIPlugin } from "../ui_plugin";
3
- export declare class DataCleanupPlugin extends UIPlugin {
4
- allowDispatch(cmd: Command): CommandResult | CommandResult[];
5
- handle(cmd: Command): void;
6
- private removeDuplicates;
7
- private getUniqueRowsIndexes;
8
- private notifyRowsRemovedAndRemaining;
9
- private checkSingleRangeSelected;
10
- private checkNoMergeInZone;
11
- private checkRangeContainsValues;
12
- private checkNoColumnProvided;
13
- private checkColumnsIncludedInZone;
14
- private checkColumnsAreUnique;
15
- private trimWhitespace;
16
- }
@@ -1,6 +0,0 @@
1
- import { Command } from "../../types/commands";
2
- import { UIPlugin } from "../ui_plugin";
3
- export declare class TableAutofillPlugin extends UIPlugin {
4
- handle(cmd: Command): void;
5
- private autofillTableZone;
6
- }