@odoo/o-spreadsheet 19.5.0-alpha.5 → 19.5.0-alpha.7

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 (72) hide show
  1. package/dist/o_spreadsheet.cjs +2153 -1474
  2. package/dist/o_spreadsheet.css +21 -18
  3. package/dist/o_spreadsheet.esm.js +2153 -1474
  4. package/dist/o_spreadsheet.iife.js +2155 -1476
  5. package/dist/o_spreadsheet.min.iife.js +386 -386
  6. package/dist/o_spreadsheet.xml +96 -55
  7. package/dist/types/actions/action.d.ts +1 -7
  8. package/dist/types/actions/data_actions.d.ts +1 -0
  9. package/dist/types/actions/menu_items_actions.d.ts +2 -0
  10. package/dist/types/components/grid/grid.d.ts +1 -0
  11. package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
  12. package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +14 -1
  13. package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +4 -17
  14. package/dist/types/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.d.ts +64 -0
  15. package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup.d.ts +28 -0
  16. package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup_store.d.ts +13 -0
  17. package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
  18. package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +4 -11
  19. package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_store.d.ts +33 -0
  20. package/dist/types/formulas/code_builder.d.ts +2 -1
  21. package/dist/types/formulas/compiler.d.ts +6 -0
  22. package/dist/types/functions/create_compute_function.d.ts +4 -3
  23. package/dist/types/functions/function_registry.d.ts +1 -5
  24. package/dist/types/functions/helper_matrices.d.ts +1 -0
  25. package/dist/types/functions/helper_statistical.d.ts +6 -0
  26. package/dist/types/functions/module_array.d.ts +41 -23
  27. package/dist/types/functions/module_database.d.ts +18 -6
  28. package/dist/types/functions/module_date.d.ts +70 -22
  29. package/dist/types/functions/module_engineering.d.ts +3 -1
  30. package/dist/types/functions/module_filter.d.ts +2 -2
  31. package/dist/types/functions/module_financial.d.ts +105 -35
  32. package/dist/types/functions/module_info.d.ts +33 -11
  33. package/dist/types/functions/module_logical.d.ts +16 -8
  34. package/dist/types/functions/module_lookup.d.ts +23 -15
  35. package/dist/types/functions/module_math.d.ts +125 -43
  36. package/dist/types/functions/module_operators.d.ts +7 -3
  37. package/dist/types/functions/module_statistical.d.ts +78 -22
  38. package/dist/types/functions/module_text.d.ts +70 -24
  39. package/dist/types/functions/module_web.d.ts +3 -1
  40. package/dist/types/helpers/carousel_helpers.d.ts +0 -2
  41. package/dist/types/helpers/figures/chart.d.ts +2 -0
  42. package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +1 -1
  43. package/dist/types/index.d.ts +6 -0
  44. package/dist/types/model.d.ts +1 -0
  45. package/dist/types/plugins/core/cell.d.ts +1 -0
  46. package/dist/types/plugins/core/chart.d.ts +2 -0
  47. package/dist/types/plugins/core/conditional_format.d.ts +2 -0
  48. package/dist/types/plugins/core/data_validation.d.ts +2 -0
  49. package/dist/types/plugins/core/formulas_provider.d.ts +8 -0
  50. package/dist/types/plugins/core/pivot.d.ts +1 -0
  51. package/dist/types/plugins/core_plugin.d.ts +7 -3
  52. package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +10 -3
  53. package/dist/types/plugins/ui_core_views/pivot_ui.d.ts +3 -0
  54. package/dist/types/plugins/ui_feature/collaborative.d.ts +2 -1
  55. package/dist/types/plugins/ui_feature/ui_options.d.ts +1 -7
  56. package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +2 -3
  57. package/dist/types/registries/chart_registry.d.ts +3 -0
  58. package/dist/types/registries/data_source_registry.d.ts +15 -0
  59. package/dist/types/store_engine/store_registries.d.ts +4 -0
  60. package/dist/types/stores/table_resize_store.d.ts +6 -0
  61. package/dist/types/types/commands.d.ts +20 -12
  62. package/dist/types/types/core_getters.d.ts +3 -1
  63. package/dist/types/types/functions.d.ts +14 -4
  64. package/dist/types/types/getters.d.ts +5 -6
  65. package/dist/types/types/misc.d.ts +5 -1
  66. package/package.json +1 -1
  67. package/dist/types/plugins/ui_feature/split_to_columns.d.ts +0 -21
  68. package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +0 -6
  69. /package/dist/types/plugins/{ui_feature → ui_stateful}/cell_computed_style.d.ts +0 -0
  70. /package/dist/types/plugins/{ui_feature → ui_stateful}/figure.d.ts +0 -0
  71. /package/dist/types/plugins/{ui_feature → ui_stateful}/header_visibility_ui.d.ts +0 -0
  72. /package/dist/types/plugins/{ui_feature → ui_stateful}/table_computed_style.d.ts +0 -0
@@ -2,9 +2,9 @@
2
2
  /*
3
3
  * This file is generated by o-spreadsheet build tools. Do not edit it.
4
4
  * @see https://github.com/odoo/o-spreadsheet
5
- * @version 19.5.0-alpha.5
6
- * @date 2026-07-20T10:50:15.584Z
7
- * @hash a599d86
5
+ * @version 19.5.0-alpha.7
6
+ * @date 2026-07-30T06:59:23.672Z
7
+ * @hash 5b6f8b6
8
8
  */
9
9
  :root {
10
10
  --os-gray-100: light-dark(#f9fafb, #1b1d26);
@@ -1693,22 +1693,8 @@
1693
1693
  }
1694
1694
  }
1695
1695
 
1696
- /* Originates from src/components/side_panel/chart/chart_type_picker/chart_type_picker.css */
1696
+ /* Originates from src/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.css */
1697
1697
  .o-spreadsheet {
1698
- .o-section .o-select.o-type-selector {
1699
- height: 30px;
1700
- padding-left: 35px;
1701
- padding-top: 5px;
1702
- }
1703
- .o-type-selector-preview {
1704
- left: 5px;
1705
- top: 3px;
1706
- .o-chart-preview {
1707
- width: 24px;
1708
- height: 24px;
1709
- }
1710
- }
1711
-
1712
1698
  .o-popover .o-chart-select-popover {
1713
1699
  .o-chart-type-item {
1714
1700
  cursor: pointer;
@@ -1728,6 +1714,23 @@
1728
1714
  }
1729
1715
  }
1730
1716
 
1717
+ /* Originates from src/components/side_panel/chart/chart_type_picker/chart_type_picker.css */
1718
+ .o-spreadsheet {
1719
+ .o-section .o-select.o-type-selector {
1720
+ height: 30px;
1721
+ padding-left: 35px;
1722
+ padding-top: 5px;
1723
+ }
1724
+ .o-type-selector-preview {
1725
+ left: 5px;
1726
+ top: 3px;
1727
+ .o-chart-preview {
1728
+ width: 24px;
1729
+ height: 24px;
1730
+ }
1731
+ }
1732
+ }
1733
+
1731
1734
  /* Originates from src/components/side_panel/chart/building_blocks/text_styler/text_styler.css */
1732
1735
  .o-spreadsheet {
1733
1736
  .o-chart-title-designer {