@odoo/o-spreadsheet 19.2.0-alpha.3 → 19.2.0-alpha.4
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-engine.d.ts +50 -42
- package/dist/o-spreadsheet-engine.esm.js +597 -514
- package/dist/o-spreadsheet-engine.iife.js +597 -514
- package/dist/o-spreadsheet-engine.min.iife.js +326 -307
- package/dist/o-spreadsheet.d.ts +145 -59
- package/dist/o_spreadsheet.css +35 -9
- package/dist/o_spreadsheet.esm.js +12714 -12328
- package/dist/o_spreadsheet.iife.js +12714 -12328
- package/dist/o_spreadsheet.min.iife.js +333 -314
- package/dist/o_spreadsheet.xml +247 -360
- package/package.json +1 -1
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.0-alpha.
|
|
6
|
-
* @date 2026-01-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.2.0-alpha.4
|
|
6
|
+
* @date 2026-01-21T11:09:21.385Z
|
|
7
|
+
* @hash fa080c2
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f9fafb, #1b1d26);
|
|
@@ -583,8 +583,10 @@
|
|
|
583
583
|
}
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
-
select.o-input
|
|
586
|
+
select.o-input,
|
|
587
|
+
.o-select {
|
|
587
588
|
cursor: pointer;
|
|
589
|
+
border-style: solid;
|
|
588
590
|
border-width: 0 0 1px 0;
|
|
589
591
|
padding: 1px 6px 1px 0px;
|
|
590
592
|
|
|
@@ -731,7 +733,8 @@
|
|
|
731
733
|
}
|
|
732
734
|
|
|
733
735
|
.o-spreadsheet.dark {
|
|
734
|
-
select.o-input
|
|
736
|
+
select.o-input,
|
|
737
|
+
.o-select {
|
|
735
738
|
background: transparent
|
|
736
739
|
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
740
|
no-repeat right center;
|
|
@@ -1187,10 +1190,7 @@
|
|
|
1187
1190
|
.o-spreadsheet {
|
|
1188
1191
|
.o-top-10-criterion {
|
|
1189
1192
|
.o-top-10-select-values.o-input,
|
|
1190
|
-
.o-top-10-select-mode.o-input
|
|
1191
|
-
width: 60px;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1193
|
+
.o-top-10-select-mode.o-input,
|
|
1194
1194
|
.o-top-10-select-mode.o-input {
|
|
1195
1195
|
width: 80px;
|
|
1196
1196
|
}
|
|
@@ -1350,6 +1350,10 @@
|
|
|
1350
1350
|
color: var(--os-green-arrow-color);
|
|
1351
1351
|
}
|
|
1352
1352
|
}
|
|
1353
|
+
|
|
1354
|
+
.o-select-dropdown.o-icon-set-type-select-dropdown {
|
|
1355
|
+
min-width: 100px;
|
|
1356
|
+
}
|
|
1353
1357
|
}
|
|
1354
1358
|
|
|
1355
1359
|
/* Originates from src/components/side_panel/components/round_color_picker/round_color_picker.css */
|
|
@@ -1695,6 +1699,28 @@
|
|
|
1695
1699
|
}
|
|
1696
1700
|
}
|
|
1697
1701
|
|
|
1702
|
+
/* Originates from src/components/select/select.css */
|
|
1703
|
+
.o-spreadsheet {
|
|
1704
|
+
.o-select-dropdown {
|
|
1705
|
+
min-width: 40px;
|
|
1706
|
+
|
|
1707
|
+
.o-select-option {
|
|
1708
|
+
cursor: pointer;
|
|
1709
|
+
user-select: none;
|
|
1710
|
+
height: var(--os-desktop-menu-item-height);
|
|
1711
|
+
padding: var(--os-menu-item-padding-vertical) var(--os-menu-item-padding-horizontal);
|
|
1712
|
+
overflow: hidden;
|
|
1713
|
+
text-overflow: ellipsis;
|
|
1714
|
+
white-space: nowrap;
|
|
1715
|
+
|
|
1716
|
+
&.o-active {
|
|
1717
|
+
background-color: var(--os-button-active-bg);
|
|
1718
|
+
color: var(--os-button-active-text-color);
|
|
1719
|
+
}
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1698
1724
|
/* Originates from src/components/scrollbar/scrollbar.css */
|
|
1699
1725
|
.o-spreadsheet {
|
|
1700
1726
|
.o-scrollbar {
|