@odoo/o-spreadsheet 19.2.0-alpha.3 → 19.2.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.js +81752 -0
- package/dist/o_spreadsheet.css +45 -29
- package/dist/o_spreadsheet.esm.js +79359 -97247
- package/dist/o_spreadsheet.iife.js +80812 -98696
- package/dist/o_spreadsheet.iife.min.js +955 -0
- package/dist/o_spreadsheet.xml +489 -560
- package/package.json +36 -32
- package/dist/o-spreadsheet-engine.d.ts +0 -6780
- package/dist/o-spreadsheet-engine.esm.js +0 -52714
- package/dist/o-spreadsheet-engine.iife.js +0 -52830
- package/dist/o-spreadsheet-engine.min.iife.js +0 -817
- package/dist/o-spreadsheet.d.ts +0 -13735
- package/dist/o_spreadsheet.min.iife.js +0 -861
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.2.
|
|
6
|
-
* @date 2026-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.2.11
|
|
6
|
+
* @date 2026-05-11T13:51:07.978Z
|
|
7
|
+
* @hash 7fa6ba6
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f9fafb, #1b1d26);
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
--os-composer-placeholder-color: light-dark(#bdbdbd, #757a89);
|
|
46
46
|
--os-composer-assistant-color: #9b359b; /* COMPOSER_ASSISTANT_COLOR */
|
|
47
47
|
--os-composer-assistant-background: light-dark(#f2f2f2, var(--os-gray-200));
|
|
48
|
-
--os-composer-highlight-flag-color:
|
|
48
|
+
--os-composer-highlight-flag-color: light-dark(var(--os-gray-200), var(--os-gray-400));
|
|
49
49
|
--os-composer-selector-flag-color: #a9a9a9;
|
|
50
50
|
|
|
51
51
|
--os-selection-border-color: #3266ca; /* SELECTION_BORDER_COLOR */
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
--os-background-gray-color-hover: light-dark(rgba(0, 0, 0, 0.08), #ffffff40);
|
|
56
56
|
--os-frozen-pane-header-border-color: #bcbcbc; /* FROZEN_PANE_HEADER_BORDER_COLOR */
|
|
57
57
|
--os-grid-border-color: light-dark(#e2e3e3, var(--os-gray-200));
|
|
58
|
-
--os-separator-color: var(--os-gray-300);
|
|
59
58
|
--os-green-arrow-color: #6aa84f; /* Same color as CF arrow icon */
|
|
60
59
|
--os-red-arrow-color: #e06666; /* Same color as CF arrow icon */
|
|
61
60
|
--os-active-sheet-bg: light-dark(#ffffff, var(--os-gray-300));
|
|
@@ -470,7 +469,7 @@
|
|
|
470
469
|
.border-end {
|
|
471
470
|
border-right: 1px solid var(--os-border-color) !important;
|
|
472
471
|
}
|
|
473
|
-
|
|
472
|
+
touch-action: pan-y;
|
|
474
473
|
color: var(--os-text-body);
|
|
475
474
|
|
|
476
475
|
.bg-white {
|
|
@@ -544,7 +543,6 @@
|
|
|
544
543
|
|
|
545
544
|
.o-grid-container {
|
|
546
545
|
display: grid;
|
|
547
|
-
background-color: var(--os-header-grouping-background-color);
|
|
548
546
|
|
|
549
547
|
.o-top-left {
|
|
550
548
|
border: 1px solid var(--os-grid-border-color);
|
|
@@ -583,8 +581,10 @@
|
|
|
583
581
|
}
|
|
584
582
|
}
|
|
585
583
|
|
|
586
|
-
select.o-input
|
|
584
|
+
select.o-input,
|
|
585
|
+
.o-select {
|
|
587
586
|
cursor: pointer;
|
|
587
|
+
border-style: solid;
|
|
588
588
|
border-width: 0 0 1px 0;
|
|
589
589
|
padding: 1px 6px 1px 0px;
|
|
590
590
|
|
|
@@ -731,7 +731,8 @@
|
|
|
731
731
|
}
|
|
732
732
|
|
|
733
733
|
.o-spreadsheet.dark {
|
|
734
|
-
select.o-input
|
|
734
|
+
select.o-input,
|
|
735
|
+
.o-select {
|
|
735
736
|
background: transparent
|
|
736
737
|
url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%277%27%20height%3D%274%27%20viewBox%3D%270%200%207%204%27%3E%3Cpolygon%20fill%3D%27%23e4e4e4%27%20points%3D%273.5%204%207%200%200%200%27/%3E%3C/svg%3E")
|
|
737
738
|
no-repeat right center;
|
|
@@ -1187,10 +1188,7 @@
|
|
|
1187
1188
|
.o-spreadsheet {
|
|
1188
1189
|
.o-top-10-criterion {
|
|
1189
1190
|
.o-top-10-select-values.o-input,
|
|
1190
|
-
.o-top-10-select-mode.o-input
|
|
1191
|
-
width: 60px;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1191
|
+
.o-top-10-select-mode.o-input,
|
|
1194
1192
|
.o-top-10-select-mode.o-input {
|
|
1195
1193
|
width: 80px;
|
|
1196
1194
|
}
|
|
@@ -1350,6 +1348,10 @@
|
|
|
1350
1348
|
color: var(--os-green-arrow-color);
|
|
1351
1349
|
}
|
|
1352
1350
|
}
|
|
1351
|
+
|
|
1352
|
+
.o-select-dropdown.o-icon-set-type-select-dropdown {
|
|
1353
|
+
min-width: 100px;
|
|
1354
|
+
}
|
|
1353
1355
|
}
|
|
1354
1356
|
|
|
1355
1357
|
/* Originates from src/components/side_panel/components/round_color_picker/round_color_picker.css */
|
|
@@ -1538,13 +1540,13 @@
|
|
|
1538
1540
|
.o-popover .o-chart-select-popover {
|
|
1539
1541
|
.o-chart-type-item {
|
|
1540
1542
|
cursor: pointer;
|
|
1541
|
-
padding:
|
|
1543
|
+
padding: 2px 5px;
|
|
1542
1544
|
margin: 1px 2px;
|
|
1545
|
+
border: 1px solid transparent;
|
|
1543
1546
|
&.selected,
|
|
1544
1547
|
&:hover {
|
|
1545
|
-
border:
|
|
1548
|
+
border-color: var(--os-action-color);
|
|
1546
1549
|
background: var(--os-badge-selected-color);
|
|
1547
|
-
padding: 2px 5px;
|
|
1548
1550
|
}
|
|
1549
1551
|
.o-chart-preview {
|
|
1550
1552
|
width: 48px;
|
|
@@ -1695,6 +1697,28 @@
|
|
|
1695
1697
|
}
|
|
1696
1698
|
}
|
|
1697
1699
|
|
|
1700
|
+
/* Originates from src/components/select/select.css */
|
|
1701
|
+
.o-spreadsheet {
|
|
1702
|
+
.o-select-dropdown {
|
|
1703
|
+
min-width: 40px;
|
|
1704
|
+
|
|
1705
|
+
.o-select-option {
|
|
1706
|
+
cursor: pointer;
|
|
1707
|
+
user-select: none;
|
|
1708
|
+
height: var(--os-desktop-menu-item-height);
|
|
1709
|
+
padding: var(--os-menu-item-padding-vertical) var(--os-menu-item-padding-horizontal);
|
|
1710
|
+
overflow: hidden;
|
|
1711
|
+
text-overflow: ellipsis;
|
|
1712
|
+
white-space: nowrap;
|
|
1713
|
+
|
|
1714
|
+
&.o-active {
|
|
1715
|
+
background-color: var(--os-button-active-bg);
|
|
1716
|
+
color: var(--os-button-active-text-color);
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
}
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1698
1722
|
/* Originates from src/components/scrollbar/scrollbar.css */
|
|
1699
1723
|
.o-spreadsheet {
|
|
1700
1724
|
.o-scrollbar {
|
|
@@ -1819,11 +1843,6 @@
|
|
|
1819
1843
|
background-color: var(--os-button-active-bg);
|
|
1820
1844
|
color: var(--os-button-active-text-color);
|
|
1821
1845
|
}
|
|
1822
|
-
.o-menu-item-icon {
|
|
1823
|
-
.o-icon {
|
|
1824
|
-
color: var(--os-icons-color);
|
|
1825
|
-
}
|
|
1826
|
-
}
|
|
1827
1846
|
.o-menu-item-description {
|
|
1828
1847
|
color: grey;
|
|
1829
1848
|
}
|
|
@@ -2617,17 +2636,14 @@
|
|
|
2617
2636
|
/* Originates from src/components/dashboard/clickable_cell_sort_icon/clickable_cell_sort_icon.css */
|
|
2618
2637
|
.o-spreadsheet {
|
|
2619
2638
|
.sorting-icon {
|
|
2620
|
-
margin: 1px;
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
}
|
|
2625
|
-
.fa-sort-asc {
|
|
2626
|
-
transform: translateY(4px);
|
|
2639
|
+
margin-right: 1px;
|
|
2640
|
+
.o-icon {
|
|
2641
|
+
width: 100%;
|
|
2642
|
+
height: 100%;
|
|
2627
2643
|
}
|
|
2628
2644
|
}
|
|
2629
2645
|
|
|
2630
|
-
div:not(:hover) > .sorting-icon:has(> .
|
|
2646
|
+
div:not(:hover) > .sorting-icon:has(> .o-icon) {
|
|
2631
2647
|
display: none;
|
|
2632
2648
|
}
|
|
2633
2649
|
}
|