@odoo/o-spreadsheet 19.5.0-alpha.6 → 19.5.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/o_spreadsheet.cjs +35670 -34225
- package/dist/o_spreadsheet.css +65 -32
- package/dist/o_spreadsheet.esm.js +35670 -34225
- package/dist/o_spreadsheet.iife.js +35729 -34284
- package/dist/o_spreadsheet.min.iife.js +403 -403
- package/dist/o_spreadsheet.xml +210 -98
- package/dist/types/actions/action.d.ts +1 -7
- package/dist/types/actions/data_actions.d.ts +1 -0
- package/dist/types/actions/menu_items_actions.d.ts +2 -0
- package/dist/types/collaborative/ot/ot_helpers.d.ts +3 -1
- package/dist/types/components/clickable_cells_overlay/clickable_cells_overlay.d.ts +20 -0
- package/dist/types/components/dashboard/dashboard.d.ts +5 -12
- package/dist/types/components/error_tooltip/error_tooltip.d.ts +2 -0
- package/dist/types/components/figures/figure/figure.d.ts +3 -6
- package/dist/types/components/figures/figure_carousel/figure_carousel.d.ts +9 -2
- package/dist/types/components/figures/figure_chart/figure_chart.d.ts +1 -2
- package/dist/types/components/figures/figure_image/figure_image.d.ts +1 -2
- package/dist/types/components/filters/filter_menu/filter_menu.d.ts +1 -0
- package/dist/types/components/grid/grid.d.ts +2 -0
- package/dist/types/components/grid_overlay/grid_overlay.d.ts +6 -5
- package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
- package/dist/types/components/helpers/wheel_hook.d.ts +1 -1
- package/dist/types/components/link/link_display/link_display.d.ts +1 -0
- package/dist/types/components/link/link_editor/link_editor.d.ts +1 -0
- package/dist/types/components/scrollbar/scrollbar_vertical.d.ts +2 -1
- package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +20 -2
- package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +4 -17
- package/dist/types/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.d.ts +64 -0
- package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup.d.ts +28 -0
- package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup_store.d.ts +13 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +4 -11
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_store.d.ts +33 -0
- package/dist/types/components/standalone_viewport/standalone_viewport.d.ts +55 -0
- package/dist/types/components/standalone_viewport/standalone_viewport_store.d.ts +28 -0
- package/dist/types/components/tables/hovered_table_store.d.ts +3 -6
- package/dist/types/formulas/code_builder.d.ts +2 -1
- package/dist/types/formulas/compiler.d.ts +6 -0
- package/dist/types/functions/create_compute_function.d.ts +4 -3
- package/dist/types/functions/function_registry.d.ts +1 -5
- package/dist/types/functions/helper_matrices.d.ts +1 -0
- package/dist/types/functions/helper_statistical.d.ts +6 -0
- package/dist/types/functions/module_array.d.ts +41 -23
- package/dist/types/functions/module_database.d.ts +18 -6
- package/dist/types/functions/module_date.d.ts +70 -22
- package/dist/types/functions/module_engineering.d.ts +3 -1
- package/dist/types/functions/module_filter.d.ts +2 -2
- package/dist/types/functions/module_financial.d.ts +105 -35
- package/dist/types/functions/module_info.d.ts +33 -11
- package/dist/types/functions/module_logical.d.ts +16 -8
- package/dist/types/functions/module_lookup.d.ts +23 -15
- package/dist/types/functions/module_math.d.ts +125 -43
- package/dist/types/functions/module_operators.d.ts +7 -3
- package/dist/types/functions/module_statistical.d.ts +78 -22
- package/dist/types/functions/module_text.d.ts +70 -24
- package/dist/types/functions/module_web.d.ts +3 -1
- package/dist/types/helpers/carousel_helpers.d.ts +0 -2
- package/dist/types/helpers/figures/chart.d.ts +2 -0
- package/dist/types/helpers/internal_viewport.d.ts +19 -10
- package/dist/types/helpers/misc.d.ts +1 -0
- package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +1 -1
- package/dist/types/helpers/viewport_collection.d.ts +40 -9
- package/dist/types/helpers/zones.d.ts +1 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/model.d.ts +1 -0
- package/dist/types/plugins/core/carousel.d.ts +8 -4
- package/dist/types/plugins/core/cell.d.ts +1 -0
- package/dist/types/plugins/core/chart.d.ts +2 -0
- package/dist/types/plugins/core/conditional_format.d.ts +2 -0
- package/dist/types/plugins/core/data_validation.d.ts +2 -0
- package/dist/types/plugins/core/formulas_provider.d.ts +8 -0
- package/dist/types/plugins/core/pivot.d.ts +1 -0
- package/dist/types/plugins/core_plugin.d.ts +7 -3
- package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +10 -3
- package/dist/types/plugins/ui_feature/ui_options.d.ts +1 -7
- package/dist/types/plugins/ui_feature/ui_sheet.d.ts +2 -1
- package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +2 -3
- package/dist/types/plugins/ui_stateful/header_positions.d.ts +2 -1
- package/dist/types/registries/chart_registry.d.ts +3 -0
- package/dist/types/registries/data_source_registry.d.ts +15 -0
- package/dist/types/store_engine/dependency_container.d.ts +5 -0
- package/dist/types/store_engine/store_hooks.d.ts +6 -0
- package/dist/types/stores/main_viewport_store.d.ts +11 -0
- package/dist/types/stores/table_resize_store.d.ts +6 -0
- package/dist/types/stores/viewports_store.d.ts +18 -3
- package/dist/types/types/commands.d.ts +23 -15
- package/dist/types/types/core_getters.d.ts +3 -1
- package/dist/types/types/figure.d.ts +26 -3
- package/dist/types/types/functions.d.ts +14 -4
- package/dist/types/types/getters.d.ts +27 -6
- package/dist/types/types/misc.d.ts +9 -1
- package/package.json +2 -2
- package/dist/types/plugins/ui_feature/split_to_columns.d.ts +0 -21
- package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +0 -6
- /package/dist/types/plugins/{ui_feature → ui_stateful}/cell_computed_style.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/figure.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/header_visibility_ui.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/table_computed_style.d.ts +0 -0
package/dist/o_spreadsheet.css
CHANGED
|
@@ -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.
|
|
6
|
-
* @date 2026-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.5.0-alpha.8
|
|
6
|
+
* @date 2026-08-04T07:11:41.779Z
|
|
7
|
+
* @hash c1baebe
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f9fafb, #1b1d26);
|
|
@@ -469,6 +469,40 @@
|
|
|
469
469
|
}
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
+
/* Originates from src/components/standalone_viewport/standalone_viewport.css */
|
|
473
|
+
.o-spreadsheet .o-standalone-viewport {
|
|
474
|
+
.o-col-resizer {
|
|
475
|
+
margin-left: -5px;
|
|
476
|
+
width: 11px;
|
|
477
|
+
cursor: e-resize;
|
|
478
|
+
|
|
479
|
+
.o-col-resizer-handle {
|
|
480
|
+
display: none;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
&:hover,
|
|
484
|
+
&.dragging {
|
|
485
|
+
.o-col-resizer-handle {
|
|
486
|
+
margin-left: 5px;
|
|
487
|
+
display: block;
|
|
488
|
+
width: 2px;
|
|
489
|
+
background-color: var(--os-selection-border-color);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
&:has(.o-col-resizer.dragging) {
|
|
495
|
+
.o-grid-overlay {
|
|
496
|
+
cursor: e-resize !important;
|
|
497
|
+
}
|
|
498
|
+
.o-col-resizer:hover:not(.dragging) {
|
|
499
|
+
.o-col-resizer-handle {
|
|
500
|
+
display: none;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
472
506
|
/* Originates from src/components/spreadsheet_print/spreadsheet_print.css */
|
|
473
507
|
.o-spreadsheet .o-spreadsheet-print {
|
|
474
508
|
.o-print-header {
|
|
@@ -725,12 +759,12 @@
|
|
|
725
759
|
border-bottom: 1px solid var(--os-canvas-border-color);
|
|
726
760
|
border-right: 1px solid var(--os-canvas-border-color);
|
|
727
761
|
}
|
|
762
|
+
}
|
|
728
763
|
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
}
|
|
764
|
+
.o-grid-overlay {
|
|
765
|
+
position: absolute;
|
|
766
|
+
outline: none;
|
|
767
|
+
z-index: var(--os-components-importance-grid-overlay);
|
|
734
768
|
}
|
|
735
769
|
|
|
736
770
|
.o-button {
|
|
@@ -1693,22 +1727,8 @@
|
|
|
1693
1727
|
}
|
|
1694
1728
|
}
|
|
1695
1729
|
|
|
1696
|
-
/* Originates from src/components/side_panel/chart/
|
|
1730
|
+
/* Originates from src/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.css */
|
|
1697
1731
|
.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
1732
|
.o-popover .o-chart-select-popover {
|
|
1713
1733
|
.o-chart-type-item {
|
|
1714
1734
|
cursor: pointer;
|
|
@@ -1728,6 +1748,23 @@
|
|
|
1728
1748
|
}
|
|
1729
1749
|
}
|
|
1730
1750
|
|
|
1751
|
+
/* Originates from src/components/side_panel/chart/chart_type_picker/chart_type_picker.css */
|
|
1752
|
+
.o-spreadsheet {
|
|
1753
|
+
.o-section .o-select.o-type-selector {
|
|
1754
|
+
height: 30px;
|
|
1755
|
+
padding-left: 35px;
|
|
1756
|
+
padding-top: 5px;
|
|
1757
|
+
}
|
|
1758
|
+
.o-type-selector-preview {
|
|
1759
|
+
left: 5px;
|
|
1760
|
+
top: 3px;
|
|
1761
|
+
.o-chart-preview {
|
|
1762
|
+
width: 24px;
|
|
1763
|
+
height: 24px;
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1731
1768
|
/* Originates from src/components/side_panel/chart/building_blocks/text_styler/text_styler.css */
|
|
1732
1769
|
.o-spreadsheet {
|
|
1733
1770
|
.o-chart-title-designer {
|
|
@@ -1820,10 +1857,13 @@
|
|
|
1820
1857
|
/* Originates from src/components/side_panel/carousel_panel/carousel_panel.css */
|
|
1821
1858
|
.o-spreadsheet .o-carousel-panel {
|
|
1822
1859
|
.o-carousel-preview {
|
|
1823
|
-
height: 60px;
|
|
1824
1860
|
border-left: 5px solid transparent;
|
|
1825
1861
|
background-color: var(--os-white-bg);
|
|
1826
1862
|
|
|
1863
|
+
.o-preview-content {
|
|
1864
|
+
height: 60px;
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1827
1867
|
&:not(:hover):not(.o-dragging) .o-drag-handle {
|
|
1828
1868
|
display: none !important;
|
|
1829
1869
|
}
|
|
@@ -2653,17 +2693,10 @@
|
|
|
2653
2693
|
z-index: 1;
|
|
2654
2694
|
|
|
2655
2695
|
overflow: hidden;
|
|
2656
|
-
padding-left: 4px; /* Align with MIN_CELL_TEXT_MARGIN */
|
|
2657
|
-
|
|
2658
|
-
border: 1px solid transparent;
|
|
2659
|
-
|
|
2660
|
-
&.o-carousel-header-floating {
|
|
2661
|
-
border: 1px solid var(--os-figure-border-color);
|
|
2662
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
2663
|
-
}
|
|
2664
2696
|
|
|
2665
2697
|
.o-carousel-title {
|
|
2666
2698
|
max-width: 60%;
|
|
2699
|
+
font-weight: 500;
|
|
2667
2700
|
}
|
|
2668
2701
|
|
|
2669
2702
|
.o-carousel-tabs {
|