@odoo/o-spreadsheet 19.5.0-alpha.13 → 19.5.0-alpha.14

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.
Files changed (34) hide show
  1. package/dist/o_spreadsheet.cjs +352 -311
  2. package/dist/o_spreadsheet.css +15 -4
  3. package/dist/o_spreadsheet.esm.js +352 -311
  4. package/dist/o_spreadsheet.iife.js +352 -311
  5. package/dist/o_spreadsheet.min.iife.js +299 -299
  6. package/dist/o_spreadsheet.xml +16 -10
  7. package/dist/types/components/figures/figure_container/figure_container.d.ts +6 -2
  8. package/dist/types/components/helpers/figure_drag_helper.d.ts +3 -3
  9. package/dist/types/components/helpers/figure_snap_helper.d.ts +8 -3
  10. package/dist/types/components/link/link_editor/link_editor.d.ts +1 -0
  11. package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +1 -1
  12. package/dist/types/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.d.ts +12 -12
  13. package/dist/types/components/side_panel/find_and_replace/find_and_replace.d.ts +1 -0
  14. package/dist/types/components/side_panel/find_and_replace/find_and_replace_store.d.ts +2 -1
  15. package/dist/types/components/side_panel/table_style_editor_panel/table_style_editor_panel.d.ts +2 -0
  16. package/dist/types/constants.d.ts +0 -1
  17. package/dist/types/helpers/color_themes.d.ts +2 -0
  18. package/dist/types/helpers/figures/chart.d.ts +2 -1
  19. package/dist/types/helpers/figures/charts/chart_common.d.ts +2 -2
  20. package/dist/types/helpers/figures/charts/chart_ui_common.d.ts +3 -3
  21. package/dist/types/helpers/figures/charts/runtime/chart_data_extractor.d.ts +11 -10
  22. package/dist/types/helpers/owl3_helpers.d.ts +4 -0
  23. package/dist/types/index.d.ts +0 -1
  24. package/dist/types/owl3_compatibility_layer.d.ts +1 -14
  25. package/dist/types/plugins/ui_core_views/evaluation_chart.d.ts +6 -5
  26. package/dist/types/plugins/ui_feature/chart_ui.d.ts +6 -0
  27. package/dist/types/plugins/ui_feature/color_theme.d.ts +0 -3
  28. package/dist/types/registries/chart_registry.d.ts +2 -2
  29. package/dist/types/registries/figures_registry.d.ts +1 -1
  30. package/dist/types/types/commands.d.ts +15 -15
  31. package/dist/types/types/getters.d.ts +2 -1
  32. package/dist/types/types/model.d.ts +2 -1
  33. package/dist/types/types/rendering.d.ts +2 -0
  34. package/package.json +2 -2
@@ -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.13
6
- * @date 2026-08-21T15:33:45.937Z
7
- * @hash a73559e
5
+ * @version 19.5.0-alpha.14
6
+ * @date 2026-08-29T09:17:10.947Z
7
+ * @hash e8ad6ad
8
8
  */
9
9
  :root {
10
10
  --os-gray-100: light-dark(#f9fafb, #1b1d26);
@@ -1610,6 +1610,12 @@
1610
1610
  background-color: var(--os-action-color);
1611
1611
  border-color: var(--os-action-color) !important;
1612
1612
  }
1613
+
1614
+ &:focus {
1615
+ outline: none;
1616
+ box-shadow: 0 0 0 0.25rem rgba(113, 75, 103, 0.25);
1617
+ border-color: var(--os-action-color);
1618
+ }
1613
1619
  }
1614
1620
  }
1615
1621
  }
@@ -3033,6 +3039,11 @@
3033
3039
  position: absolute;
3034
3040
  cursor: pointer;
3035
3041
  }
3042
+
3043
+ .o-dashboard-grid {
3044
+ /* Grid itself is transparent, background is applied on another div on which the dark mode filter is applied */
3045
+ background-color: transparent;
3046
+ }
3036
3047
  }
3037
3048
 
3038
3049
  /* Originates from src/components/dashboard/clickable_cell_sort_icon/clickable_cell_sort_icon.css */
@@ -3592,7 +3603,7 @@
3592
3603
  .o-bottom-bar-statistic {
3593
3604
  .o-selection-statistic {
3594
3605
  margin-right: 10px;
3595
- padding: 0px 4px 0px 8px;
3606
+ padding: 4px 4px 4px 8px;
3596
3607
  cursor: pointer;
3597
3608
  &:hover {
3598
3609
  background-color: var(--os-background-gray-color-hover) !important;