@odoo/o-spreadsheet 19.5.0-alpha.18 → 19.5.0-alpha.19
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 +15382 -15195
- package/dist/o_spreadsheet.css +12 -39
- package/dist/o_spreadsheet.esm.js +15377 -15190
- package/dist/o_spreadsheet.iife.js +15410 -15223
- package/dist/o_spreadsheet.min.iife.js +441 -387
- package/dist/o_spreadsheet.xml +21 -37
- package/dist/types/components/grid/grid.d.ts +1 -0
- package/dist/types/components/grid_overlay/grid_overlay.d.ts +1 -0
- package/dist/types/components/helpers/draw_grid_hook.d.ts +1 -2
- 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 -3
- package/dist/types/components/spreadsheet_print/print_iframe.d.ts +15 -0
- package/dist/types/components/spreadsheet_print/spreadsheet_print.d.ts +4 -0
- package/dist/types/components/standalone_grid_canvas/standalone_grid_canvas.d.ts +389 -1
- package/dist/types/functions/module_text.d.ts +5 -2
- package/dist/types/helpers/figures/chart.d.ts +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/plugins/core/carousel.d.ts +1 -1
- package/dist/types/plugins/core/image.d.ts +2 -1
- package/dist/types/plugins/evaluation/geo_loader.d.ts +2 -1
- package/dist/types/registries/chart_registry.d.ts +1 -0
- package/dist/types/stores/cell_hover_overlay_store.d.ts +1 -1
- package/dist/types/{plugins/ui_stateful/clipboard.d.ts → stores/clipboard_store.d.ts} +11 -11
- package/dist/types/types/getters.d.ts +1 -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.5.0-alpha.
|
|
6
|
-
* @date 2026-09-
|
|
7
|
-
* @hash
|
|
5
|
+
* @version 19.5.0-alpha.19
|
|
6
|
+
* @date 2026-09-10T05:38:46.719Z
|
|
7
|
+
* @hash 2b1e397
|
|
8
8
|
*/
|
|
9
9
|
:root {
|
|
10
10
|
--os-gray-100: light-dark(#f8f9fa, #1c1c20);
|
|
@@ -514,44 +514,17 @@
|
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
/* The pages are in the iframe document, styled by PRINT_IFRAME_CSS */
|
|
517
518
|
.o-print-preview {
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
background-color: #ffffff;
|
|
523
|
-
}
|
|
519
|
+
flex: 1 1 auto;
|
|
520
|
+
min-width: 0;
|
|
521
|
+
height: 100%;
|
|
522
|
+
border: 0;
|
|
524
523
|
}
|
|
525
524
|
|
|
526
525
|
.o-sidePanel {
|
|
527
526
|
width: 350px;
|
|
528
527
|
}
|
|
529
|
-
|
|
530
|
-
@media print {
|
|
531
|
-
.o-print-container {
|
|
532
|
-
overflow: visible !important;
|
|
533
|
-
height: 100% !important;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.o-print-preview {
|
|
537
|
-
box-shadow: none !important;
|
|
538
|
-
overflow: visible !important;
|
|
539
|
-
height: 100% !important;
|
|
540
|
-
|
|
541
|
-
.o-print-page {
|
|
542
|
-
box-shadow: none !important;
|
|
543
|
-
padding: 0 !important;
|
|
544
|
-
margin: 0 !important;
|
|
545
|
-
width: 100% !important;
|
|
546
|
-
height: 100% !important;
|
|
547
|
-
break-after: page;
|
|
548
|
-
|
|
549
|
-
&:last-child {
|
|
550
|
-
break-after: auto;
|
|
551
|
-
}
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
528
|
}
|
|
556
529
|
|
|
557
530
|
/* Originates from src/components/spreadsheet/spreadsheet.css */
|
|
@@ -626,7 +599,7 @@
|
|
|
626
599
|
margin-bottom: var(--os-menu-separator-padding);
|
|
627
600
|
}
|
|
628
601
|
.o-hoverable-button {
|
|
629
|
-
border-radius:
|
|
602
|
+
border-radius: 4px;
|
|
630
603
|
cursor: pointer;
|
|
631
604
|
.o-icon {
|
|
632
605
|
color: var(--os-text-body);
|
|
@@ -864,7 +837,7 @@
|
|
|
864
837
|
background-color: var(--os-background-gray-color);
|
|
865
838
|
|
|
866
839
|
.o-selection-button {
|
|
867
|
-
border-radius:
|
|
840
|
+
border-radius: 4px;
|
|
868
841
|
background-color: var(--os-gray-200);
|
|
869
842
|
.o-icon {
|
|
870
843
|
width: 24px;
|
|
@@ -3337,7 +3310,7 @@
|
|
|
3337
3310
|
align-items: center;
|
|
3338
3311
|
margin: 2px;
|
|
3339
3312
|
padding: 3px;
|
|
3340
|
-
border-radius:
|
|
3313
|
+
border-radius: 4px;
|
|
3341
3314
|
cursor: pointer;
|
|
3342
3315
|
&:not([disabled]):hover {
|
|
3343
3316
|
background-color: var(--os-background-gray-color-hover);
|
|
@@ -3803,7 +3776,7 @@
|
|
|
3803
3776
|
align-items: center;
|
|
3804
3777
|
margin: 2px 1px;
|
|
3805
3778
|
padding: 0px 1px;
|
|
3806
|
-
border-radius:
|
|
3779
|
+
border-radius: 4px;
|
|
3807
3780
|
min-width: 22px;
|
|
3808
3781
|
}
|
|
3809
3782
|
.o-disabled {
|