@odoo/o-spreadsheet 19.4.9 → 19.4.11
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 +350 -295
- package/dist/o_spreadsheet.css +17 -6
- package/dist/o_spreadsheet.esm.js +350 -295
- package/dist/o_spreadsheet.iife.js +350 -295
- package/dist/o_spreadsheet.min.iife.js +256 -256
- package/dist/o_spreadsheet.xml +7 -7
- package/dist/types/collaborative/session.d.ts +3 -1
- 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/squisher.d.ts +3 -0
- package/dist/types/types/collaborative/transport_service.d.ts +1 -0
- 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.11
|
|
6
|
+
* @date 2026-09-04T07:50:41.136Z
|
|
7
|
+
* @hash 7660254
|
|
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);
|
|
@@ -1512,6 +1512,12 @@
|
|
|
1512
1512
|
background-color: var(--os-action-color);
|
|
1513
1513
|
border-color: var(--os-action-color) !important;
|
|
1514
1514
|
}
|
|
1515
|
+
|
|
1516
|
+
&:focus {
|
|
1517
|
+
outline: none;
|
|
1518
|
+
box-shadow: 0 0 0 0.25rem rgba(113, 75, 103, 0.25);
|
|
1519
|
+
border-color: var(--os-action-color);
|
|
1520
|
+
}
|
|
1515
1521
|
}
|
|
1516
1522
|
}
|
|
1517
1523
|
}
|
|
@@ -2590,10 +2596,10 @@
|
|
|
2590
2596
|
z-index: var(--os-components-importance-figure-snap-line);
|
|
2591
2597
|
&.vertical {
|
|
2592
2598
|
width: 0px;
|
|
2593
|
-
border-left: 1px dashed
|
|
2599
|
+
border-left: 1px dashed var(--os-gray-800);
|
|
2594
2600
|
}
|
|
2595
2601
|
&.horizontal {
|
|
2596
|
-
border-top: 1px dashed
|
|
2602
|
+
border-top: 1px dashed var(--os-gray-800);
|
|
2597
2603
|
height: 0px;
|
|
2598
2604
|
}
|
|
2599
2605
|
}
|
|
@@ -2882,6 +2888,11 @@
|
|
|
2882
2888
|
position: absolute;
|
|
2883
2889
|
cursor: pointer;
|
|
2884
2890
|
}
|
|
2891
|
+
|
|
2892
|
+
.o-dashboard-grid {
|
|
2893
|
+
/* Grid itself is transparent, background is applied on another div on which the dark mode filter is applied */
|
|
2894
|
+
background-color: transparent;
|
|
2895
|
+
}
|
|
2885
2896
|
}
|
|
2886
2897
|
|
|
2887
2898
|
/* Originates from src/components/dashboard/clickable_cell_sort_icon/clickable_cell_sort_icon.css */
|