@odoo/o-spreadsheet 19.4.10 → 19.4.12
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 +807 -759
- package/dist/o_spreadsheet.css +7 -6
- package/dist/o_spreadsheet.esm.js +807 -759
- package/dist/o_spreadsheet.iife.js +807 -759
- package/dist/o_spreadsheet.min.iife.js +258 -258
- package/dist/o_spreadsheet.xml +11 -11
- package/dist/types/components/grid_overlay/grid_overlay.d.ts +1 -0
- package/dist/types/components/side_panel/chart/calendar_chart/calendar_chart_config_panel.d.ts +0 -2
- package/dist/types/components/spreadsheet/spreadsheet.d.ts +9 -4
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/helpers/text_helper.d.ts +4 -0
- package/dist/types/plugins/core/carousel.d.ts +1 -1
- package/dist/types/plugins/core/range.d.ts +3 -1
- package/dist/types/plugins/ui_feature/geo_features.d.ts +2 -1
- package/dist/types/types/commands.d.ts +2 -2
- package/dist/types/types/misc.d.ts +1 -0
- package/dist/types/types/model.d.ts +2 -2
- package/package.json +2 -2
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.4.
|
|
6
|
-
* @date 2026-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.4.12
|
|
6
|
+
* @date 2026-09-10T05:38:03.545Z
|
|
7
|
+
* @hash cdb63b4
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f9fafb, #1b1d26);
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
--os-white-bg: light-dark(#ffffff, var(--os-gray-200));
|
|
23
23
|
--os-popover-bg: light-dark(#ffffff, var(--os-gray-200));
|
|
24
24
|
|
|
25
|
-
--os-default-font: "Roboto", "Arial";
|
|
25
|
+
--os-default-font: "Roboto", "Arial", "Liberation Sans";
|
|
26
26
|
--os-default-font-size: 10px;
|
|
27
27
|
--os-link-color: light-dark(#017e84, #02c7b5);
|
|
28
28
|
--os-link-hover-color: light-dark(#01585c, #4ed8cb);
|
|
@@ -500,6 +500,7 @@
|
|
|
500
500
|
}
|
|
501
501
|
|
|
502
502
|
.o-print-preview {
|
|
503
|
+
background-color: white !important;
|
|
503
504
|
box-shadow: none !important;
|
|
504
505
|
overflow: visible !important;
|
|
505
506
|
height: 100% !important;
|
|
@@ -2596,10 +2597,10 @@
|
|
|
2596
2597
|
z-index: var(--os-components-importance-figure-snap-line);
|
|
2597
2598
|
&.vertical {
|
|
2598
2599
|
width: 0px;
|
|
2599
|
-
border-left: 1px dashed
|
|
2600
|
+
border-left: 1px dashed var(--os-gray-800);
|
|
2600
2601
|
}
|
|
2601
2602
|
&.horizontal {
|
|
2602
|
-
border-top: 1px dashed
|
|
2603
|
+
border-top: 1px dashed var(--os-gray-800);
|
|
2603
2604
|
height: 0px;
|
|
2604
2605
|
}
|
|
2605
2606
|
}
|