@owp/core 2.5.51 → 2.5.53

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 (128) hide show
  1. package/dist/_virtual/index16.js +4 -4
  2. package/dist/_virtual/index17.js +4 -4
  3. package/dist/_virtual/index18.js +4 -4
  4. package/dist/_virtual/index19.js +4 -4
  5. package/dist/_virtual/index3.js +2 -2
  6. package/dist/_virtual/index4.js +2 -2
  7. package/dist/components/OwpErrorBoundary/OwpErrorBoundary.js +49 -32
  8. package/dist/components/OwpErrorBoundary/OwpErrorBoundary.js.map +1 -1
  9. package/dist/components/OwpLoading/OwpLoading.js +7 -6
  10. package/dist/components/OwpLoading/OwpLoading.js.map +1 -1
  11. package/dist/components/OwpNavLinkAdapter/OwpNavLinkAdapter.js +100 -28
  12. package/dist/components/OwpNavLinkAdapter/OwpNavLinkAdapter.js.map +1 -1
  13. package/dist/components/OwpPageSkeleton/OwpPageSkeleton.js +4 -4
  14. package/dist/components/OwpSuspense/OwpSuspense.js +66 -60
  15. package/dist/components/OwpSuspense/OwpSuspense.js.map +1 -1
  16. package/dist/components/OwpTreeGrid/OwpTreeGrid.js +352 -297
  17. package/dist/components/OwpTreeGrid/OwpTreeGrid.js.map +1 -1
  18. package/dist/components/OwpTreeGrid/internal/treeGridRuntime.js +654 -604
  19. package/dist/components/OwpTreeGrid/internal/treeGridRuntime.js.map +1 -1
  20. package/dist/components/OwpTreeGrid/internal/treeGridTheme.js +516 -425
  21. package/dist/components/OwpTreeGrid/internal/treeGridTheme.js.map +1 -1
  22. package/dist/configs/theme.js +26 -22
  23. package/dist/configs/theme.js.map +1 -1
  24. package/dist/constants/gridTheme.js +40 -29
  25. package/dist/constants/gridTheme.js.map +1 -1
  26. package/dist/contexts/OwpUiProvider.js +37 -34
  27. package/dist/contexts/OwpUiProvider.js.map +1 -1
  28. package/dist/features/themePreview/components/ThemePreviewCanvas.js +8 -8
  29. package/dist/features/themePreview/components/ThemePreviewCanvasSections.js +27 -27
  30. package/dist/features/themePreview/components/ThemePreviewColorField.js +4 -4
  31. package/dist/features/themePreview/components/ThemePreviewControls.js +8 -8
  32. package/dist/features/themePreview/configs/grid.js +5 -7
  33. package/dist/features/themePreview/configs/grid.js.map +1 -1
  34. package/dist/features/themePreview/configs/previewStorage.js +26 -32
  35. package/dist/features/themePreview/configs/previewStorage.js.map +1 -1
  36. package/dist/features/themePreview/configs/settings.js +13 -12
  37. package/dist/features/themePreview/configs/settings.js.map +1 -1
  38. package/dist/features/themePreview/dialogs/ThemePreviewDialog.js +5 -5
  39. package/dist/features/themePreview/dialogs/index.js +5 -0
  40. package/dist/features/themePreview/dialogs/index.js.map +1 -0
  41. package/dist/features/themePreview/utils/themePreviewDefinitions.js +4 -12
  42. package/dist/features/themePreview/utils/themePreviewDefinitions.js.map +1 -1
  43. package/dist/features/themePreview/utils/themePreviewExport.js +48 -37
  44. package/dist/features/themePreview/utils/themePreviewExport.js.map +1 -1
  45. package/dist/hooks/internal/useNavigationActiveRouteRemount.js +19 -16
  46. package/dist/hooks/internal/useNavigationActiveRouteRemount.js.map +1 -1
  47. package/dist/hooks/internal/useRouteTransitionLoading.js +49 -0
  48. package/dist/hooks/internal/useRouteTransitionLoading.js.map +1 -0
  49. package/dist/index.js +67 -66
  50. package/dist/layout/Layout.js +107 -34
  51. package/dist/layout/Layout.js.map +1 -1
  52. package/dist/layout/components/navigation/NavBadge.js +8 -8
  53. package/dist/layout/components/navigation/NavBadge.js.map +1 -1
  54. package/dist/layout/components/navigation/NavItem.js +19 -15
  55. package/dist/layout/components/navigation/NavItem.js.map +1 -1
  56. package/dist/layout/components/navigation/Navigation.js +25 -22
  57. package/dist/layout/components/navigation/Navigation.js.map +1 -1
  58. package/dist/layout/components/navigation/NavigationMenu.js +25 -18
  59. package/dist/layout/components/navigation/NavigationMenu.js.map +1 -1
  60. package/dist/layout/components/navigation/vertical/NavVerticalLayout.js +69 -44
  61. package/dist/layout/components/navigation/vertical/NavVerticalLayout.js.map +1 -1
  62. package/dist/layout/components/navigation/vertical/types/NavVerticalCollapse.js +71 -64
  63. package/dist/layout/components/navigation/vertical/types/NavVerticalCollapse.js.map +1 -1
  64. package/dist/layout/components/navigation/vertical/types/NavVerticalGroup.js +15 -14
  65. package/dist/layout/components/navigation/vertical/types/NavVerticalGroup.js.map +1 -1
  66. package/dist/layout/components/navigation/vertical/types/NavVerticalItem.js +16 -14
  67. package/dist/layout/components/navigation/vertical/types/NavVerticalItem.js.map +1 -1
  68. package/dist/layout/components/navigation/vertical/types/NavVerticalLink.js +17 -12
  69. package/dist/layout/components/navigation/vertical/types/NavVerticalLink.js.map +1 -1
  70. package/dist/layout/components/toggles/NavigationSearchToggle.js +164 -165
  71. package/dist/layout/components/toggles/NavigationSearchToggle.js.map +1 -1
  72. package/dist/layout/components/toggles/NavigationShortcutsToggle.js +88 -95
  73. package/dist/layout/components/toggles/NavigationShortcutsToggle.js.map +1 -1
  74. package/dist/layout/components/toggles/ThemePreviewToggle.js +26 -27
  75. package/dist/layout/components/toggles/ThemePreviewToggle.js.map +1 -1
  76. package/dist/node_modules/.pnpm/inko@1.1.1/node_modules/inko/index.js +1 -1
  77. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/index.js +1 -1
  78. package/dist/node_modules/.pnpm/react-overlays@5.2.1_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/react-overlays/esm/Portal.js +1 -1
  79. package/dist/owp-app.css +1 -1
  80. package/dist/types/components/OwpErrorBoundary/OwpErrorBoundary.d.ts +4 -0
  81. package/dist/types/components/OwpErrorBoundary/index.d.ts +1 -1
  82. package/dist/types/components/OwpNumberField/OwpNumberField.d.ts +2 -2
  83. package/dist/types/components/OwpPicker/internal/DatePickerInput.d.ts +1 -1
  84. package/dist/types/components/OwpSuspense/OwpSuspense.d.ts +1 -0
  85. package/dist/types/components/OwpTable/internal/OwpTableBase.d.ts +1 -1
  86. package/dist/types/components/OwpTabs/OwpTab.d.ts +1 -1
  87. package/dist/types/components/OwpTabs/OwpTabs.d.ts +1 -1
  88. package/dist/types/components/OwpTreeGrid/internal/treeGridRuntime.d.ts +7 -1
  89. package/dist/types/components/OwpTreeGrid/internal/treeGridTheme.d.ts +2 -0
  90. package/dist/types/configs/theme/index.d.ts +2 -0
  91. package/dist/types/constants/gridTheme.d.ts +4 -0
  92. package/dist/types/contexts/OwpAppContext.d.ts +1 -1
  93. package/dist/types/features/themePreview/configs/grid.d.ts +2 -4
  94. package/dist/types/features/themePreview/configs/settings.d.ts +14 -4
  95. package/dist/types/features/themePreview/utils/themePreviewExport.d.ts +1 -1
  96. package/dist/types/features/themePreview/utils/themePreviewSettings.d.ts +1 -1
  97. package/dist/types/hooks/internal/useRouteTransitionLoading.d.ts +27 -0
  98. package/dist/types/index.d.ts +1 -1
  99. package/dist/types/layout/components/navigation/NavItem.d.ts +2 -3
  100. package/dist/types/layout/components/navigation/NavigationMenu.d.ts +5 -5
  101. package/dist/types/layout/components/navigation/vertical/NavVerticalLayout.d.ts +1 -1
  102. package/dist/types/layout/components/navigation/vertical/types/NavVerticalCollapse.d.ts +1 -1
  103. package/dist/types/layout/components/navigation/vertical/types/NavVerticalGroup.d.ts +1 -1
  104. package/dist/types/layout/components/navigation/vertical/types/NavVerticalItem.d.ts +1 -1
  105. package/dist/types/layout/components/navigation/vertical/types/NavVerticalLink.d.ts +1 -1
  106. package/dist/types/store/atoms/owpSettingsAtoms.d.ts +1 -1
  107. package/dist/types/types/OwpGridThemeTypes.d.ts +4 -0
  108. package/dist/types/types/OwpSettingsTypes.d.ts +7 -0
  109. package/dist/types/types/index.d.ts +1 -1
  110. package/dist/types/utils/internal/navigationSearchUtils.d.ts +22 -0
  111. package/dist/types/utils/internal/navigationUtils.d.ts +22 -27
  112. package/dist/utils/internal/navigationSearchUtils.js +44 -0
  113. package/dist/utils/internal/navigationSearchUtils.js.map +1 -0
  114. package/dist/utils/internal/navigationUtils.js +38 -123
  115. package/dist/utils/internal/navigationUtils.js.map +1 -1
  116. package/dist/utils/treeGridUtil.js +123 -118
  117. package/dist/utils/treeGridUtil.js.map +1 -1
  118. package/package.json +1 -2
  119. package/dist/features/themePreview.js +0 -76
  120. package/dist/features/themePreview.js.map +0 -1
  121. package/dist/node_modules/.pnpm/es-toolkit@1.39.10/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.js +0 -14
  122. package/dist/node_modules/.pnpm/es-toolkit@1.39.10/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.js.map +0 -1
  123. package/dist/node_modules/.pnpm/es-toolkit@1.39.10/node_modules/es-toolkit/dist/compat/object/defaults.js +0 -24
  124. package/dist/node_modules/.pnpm/es-toolkit@1.39.10/node_modules/es-toolkit/dist/compat/object/defaults.js.map +0 -1
  125. package/dist/node_modules/.pnpm/es-toolkit@1.39.10/node_modules/es-toolkit/dist/compat/string/trim.js +0 -10
  126. package/dist/node_modules/.pnpm/es-toolkit@1.39.10/node_modules/es-toolkit/dist/compat/string/trim.js.map +0 -1
  127. package/features/themePreview.d.ts +0 -3
  128. package/features/themePreview.js +0 -1
@@ -1,9 +1,9 @@
1
- var J = Object.defineProperty;
2
- var t = (e, o) => J(e, "name", { value: o, configurable: !0 });
3
- import { TREEGRID_ADDED_ROW_BACKGROUND_COLOR as Z, TREEGRID_CELL_HIGHLIGHT_FONT_WEIGHT as ee, TREEGRID_FONT_FAMILY_STACK as B, TREEGRID_ERROR_CELL_BORDER_COLOR as oe, TREEGRID_CELL_CHANGED_CLASS as i } from "../../../constants/treeGrid.js";
4
- import { DEFAULT_TABLE_RADIUS as re } from "../../../constants/table.js";
5
- import { darken as te } from "@mui/material/styles";
6
- const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tree-grid-panel-checkbox-select", ae = "owp-tree-grid-select-all-checked", ce = "owp-tree-grid-select-all-indeterminate", ne = "owp-tree-grid-select-all-unchecked", X = "owp-tree-grid-selected-changed-cell", Y = "owp-tree-grid-error-cell", F = "owp-tree-grid-added-row-box-cell", se = "owp-tree-grid-added-row-box-start", de = "owp-tree-grid-added-row-box-end", c = [
1
+ var ue = Object.defineProperty;
2
+ var l = (e, o) => ue(e, "name", { value: o, configurable: !0 });
3
+ import { TREEGRID_ADDED_ROW_BACKGROUND_COLOR as Re, TREEGRID_CELL_HIGHLIGHT_FONT_WEIGHT as Ce, TREEGRID_FONT_FAMILY_STACK as N, TREEGRID_ERROR_CELL_BORDER_COLOR as _e, TREEGRID_CELL_CHANGED_CLASS as i } from "../../../constants/treeGrid.js";
4
+ import { DEFAULT_TABLE_RADIUS as Ee } from "../../../constants/table.js";
5
+ import { darken as $e } from "@mui/material/styles";
6
+ const r = "owp-tree-grid-theme", O = "owp-tree-grid-table-radius", be = "owp-tree-grid-panel-checkbox-select", we = "owp-tree-grid-select-all-checked", ge = "owp-tree-grid-select-all-indeterminate", De = "owp-tree-grid-select-all-unchecked", oe = "owp-tree-grid-selected-changed-cell", re = "owp-tree-grid-error-cell", B = "owp-tree-grid-added-row-box-cell", Oe = "owp-tree-grid-added-row-box-start", Ie = "owp-tree-grid-added-row-box-end", me = "--owp-tree-grid-hover-cell-border-color", n = [
7
7
  "TS",
8
8
  "TW",
9
9
  "TB",
@@ -20,7 +20,7 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
20
20
  "CR",
21
21
  "CP",
22
22
  "CC"
23
- ], R = "#CDD8E4", u = "1px", s = `var(--owp-tree-grid-table-border-radius, ${re})`, M = "#757575", ie = "2px", H = "2px", pe = `var(--owp-tree-grid-error-cell-border-color, ${oe})`, k = "2px", v = "1px", K = te(Z, 0.42), O = `var(--owp-tree-grid-added-row-box-color, ${K})`, ue = "OwpSoftChange", Se = "OwpSoftRevert", Ce = "OwpSoftRowAdd", Re = "OwpSoftRowRemove", be = "rgba(25, 118, 210, 0.36)", Ee = "rgba(25, 118, 210, 0.20)", $e = "rgba(25, 118, 210, 0.26)", _e = "rgba(25, 118, 210, 0.13)", ge = "rgba(96, 125, 139, 0.35)", we = "rgba(96, 125, 139, 0.20)", me = "rgba(96, 125, 139, 0.32)", De = "rgba(96, 125, 139, 0.16)", ke = "rgba(46, 125, 50, 0.24)", Ie = "rgba(46, 125, 50, 0.12)", ve = "rgba(46, 125, 50, 0.16)", Oe = "rgba(46, 125, 50, 0.07)", fe = "rgba(96, 125, 139, 0.24)", Fe = "rgba(96, 125, 139, 0.12)", Ge = "rgba(96, 125, 139, 0.16)", Te = "rgba(96, 125, 139, 0.07)", L = "rgba(25, 118, 210, 0)", N = "rgba(96, 125, 139, 0)", V = "rgba(46, 125, 50, 0)", P = "rgba(96, 125, 139, 0)", G = [
23
+ ], C = "#CDD8E4", u = "1px", d = `var(--owp-tree-grid-table-border-radius, ${Ee})`, V = "#757575", ke = "2px", y = "2px", ve = `var(--owp-tree-grid-error-cell-border-color, ${_e})`, m = "2px", T = "1px", te = $e(Re, 0.42), P = "border-box !important", G = `var(--owp-tree-grid-added-row-box-color, ${te})`, E = "#f5f5f5", le = "#e0e0e0", W = `var(--owp-tree-grid-hover-row-border-color, ${le})`, Te = `var(--owp-tree-grid-hover-cell-background-color, ${E})`, _ = `var(${me}, ${le})`, Ge = "OwpSoftChange", xe = "OwpSoftRevert", Fe = "OwpSoftRowSelect", fe = "OwpSoftRowDeselect", Be = "OwpSoftRowAdd", Ae = "OwpSoftRowRemove", he = "rgba(25, 118, 210, 0.36)", Le = "rgba(25, 118, 210, 0.20)", Me = "rgba(25, 118, 210, 0.26)", He = "rgba(25, 118, 210, 0.13)", Ne = "rgba(96, 125, 139, 0.35)", Ve = "rgba(96, 125, 139, 0.20)", ye = "rgba(96, 125, 139, 0.32)", Pe = "rgba(96, 125, 139, 0.16)", We = "rgba(25, 118, 210, 0.14)", ze = "rgba(25, 118, 210, 0.08)", je = "rgba(25, 118, 210, 0.1)", Ue = "rgba(25, 118, 210, 0.05)", Xe = "rgba(46, 125, 50, 0.24)", Ke = "rgba(46, 125, 50, 0.12)", Ye = "rgba(46, 125, 50, 0.16)", Qe = "rgba(46, 125, 50, 0.07)", Ze = "rgba(96, 125, 139, 0.16)", qe = "rgba(96, 125, 139, 0.06)", Je = "rgba(96, 125, 139, 0.1)", eo = "rgba(96, 125, 139, 0.035)", z = "rgba(25, 118, 210, 0)", j = "rgba(96, 125, 139, 0)", U = "rgba(25, 118, 210, 0)", X = "rgba(46, 125, 50, 0)", K = "rgba(96, 125, 139, 0)", Y = "background-color 140ms ease-out, box-shadow 140ms ease-out", A = [
24
24
  "DefaultsLeft",
25
25
  "DefaultsRight",
26
26
  "DefaultsTop",
@@ -29,244 +29,288 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
29
29
  "EnumRight",
30
30
  "EnumTop",
31
31
  "EnumBottom"
32
- ], b = /* @__PURE__ */ t((e) => `url("data:image/svg+xml,${encodeURIComponent(e)}")`, "createTreeGridSvgBackgroundImage"), he = b(
32
+ ], f = [
33
+ "CursorBorderLeft",
34
+ "CursorBorderRight",
35
+ "CursorBorderTop",
36
+ "CursorBorderBottom"
37
+ ], $ = /* @__PURE__ */ l((e) => `url("data:image/svg+xml,${encodeURIComponent(e)}")`, "createTreeGridSvgBackgroundImage"), oo = $(
33
38
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect x="2" y="2" width="14" height="14" rx="1.5" fill="none" stroke="#CDD8E4" stroke-width="1.6"/></svg>'
34
- ), xe = b(
39
+ ), ro = $(
35
40
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect x="2" y="2" width="14" height="14" rx="1.5" fill="none" stroke="#CDD8E4" stroke-width="1.6"/><path d="M4.7 9 7.4 11.7 13.3 5.8" fill="none" stroke="#7A8899" stroke-width="2.3" stroke-linecap="round" stroke-linejoin="round"/></svg>'
36
- ), y = b(
41
+ ), Q = $(
37
42
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect x="2" y="2" width="14" height="14" rx="1.5" fill="none" stroke="#FFFFFF" stroke-width="1.6"/></svg>'
38
- ), W = b(
43
+ ), Z = $(
39
44
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect x="2" y="2" width="14" height="14" rx="1.5" fill="none" stroke="#FFFFFF" stroke-width="1.6"/><path d="M4.7 9 7.4 11.7 13.3 5.8" fill="none" stroke="#FFFFFF" stroke-width="2.3" stroke-linecap="round" stroke-linejoin="round"/></svg>'
40
- ), Ae = b(
45
+ ), to = $(
41
46
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><rect x="2" y="2" width="14" height="14" rx="1.5" fill="none" stroke="#FFFFFF" stroke-width="1.6"/><path d="M5.2 9h7.6" fill="none" stroke="#FFFFFF" stroke-width="2.3" stroke-linecap="round"/></svg>'
42
- ), z = b(
47
+ ), q = $(
43
48
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M3 4h12l-4.8 5.4v4.1l-2.4 1.2V9.4z" fill="none" stroke="#000" stroke-width="1.7" stroke-linejoin="round"/></svg>'
44
- ), j = b(
49
+ ), J = $(
45
50
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><path d="M3 4h12l-4.8 5.4v4.1l-2.4 1.2V9.4z" fill="#000" stroke="#000" stroke-width="1.7" stroke-linejoin="round"/></svg>'
46
- ), Be = "var(--owp-tree-grid-header-background-color, #586980)", Me = "var(--owp-tree-grid-focused-cell-border-color, var(--owp-tree-grid-hover-cell-border-color, var(--owp-tree-grid-header-background-color, #586980)))", He = [
51
+ ), lo = "var(--owp-tree-grid-header-background-color, #586980)", ao = "var(--owp-tree-grid-focused-cell-border-color, var(--owp-tree-grid-hover-cell-border-color, var(--owp-tree-grid-header-background-color, #586980)))", no = [
47
52
  {
48
53
  cssVariableName: "--owp-tree-grid-body-background-color",
49
- getValue: /* @__PURE__ */ t((e) => {
54
+ getValue: /* @__PURE__ */ l((e) => {
50
55
  var o;
51
56
  return (o = e == null ? void 0 : e.body) == null ? void 0 : o.backgroundColor;
52
57
  }, "getValue")
53
58
  },
54
59
  {
55
60
  cssVariableName: "--owp-tree-grid-body-color",
56
- getValue: /* @__PURE__ */ t((e) => {
61
+ getValue: /* @__PURE__ */ l((e) => {
57
62
  var o;
58
63
  return (o = e == null ? void 0 : e.body) == null ? void 0 : o.color;
59
64
  }, "getValue")
60
65
  },
61
66
  {
62
67
  cssVariableName: "--owp-tree-grid-body-fill-background-color",
63
- getValue: /* @__PURE__ */ t((e) => {
68
+ getValue: /* @__PURE__ */ l((e) => {
64
69
  var o;
65
70
  return (o = e == null ? void 0 : e.body) == null ? void 0 : o.fillBackgroundColor;
66
71
  }, "getValue")
67
72
  },
68
73
  {
69
74
  cssVariableName: "--owp-tree-grid-row-background-color",
70
- getValue: /* @__PURE__ */ t((e) => {
75
+ getValue: /* @__PURE__ */ l((e) => {
71
76
  var o;
72
77
  return (o = e == null ? void 0 : e.row) == null ? void 0 : o.backgroundColor;
73
78
  }, "getValue")
74
79
  },
75
80
  {
76
81
  cssVariableName: "--owp-tree-grid-row-solid-background-color",
77
- getValue: /* @__PURE__ */ t((e) => {
82
+ getValue: /* @__PURE__ */ l((e) => {
78
83
  var o;
79
84
  return (o = e == null ? void 0 : e.row) == null ? void 0 : o.solidBackgroundColor;
80
85
  }, "getValue")
81
86
  },
82
87
  {
83
88
  cssVariableName: "--owp-tree-grid-hover-row-background-color",
84
- getValue: /* @__PURE__ */ t((e) => {
85
- var o;
86
- return (o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverRowBackgroundColor;
89
+ getValue: /* @__PURE__ */ l((e) => {
90
+ var o, t;
91
+ return ((o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverBackgroundColor) ?? ((t = e == null ? void 0 : e.state) == null ? void 0 : t.hoverRowBackgroundColor);
87
92
  }, "getValue")
88
93
  },
89
94
  {
90
95
  cssVariableName: "--owp-tree-grid-hover-row-border-color",
91
- getValue: /* @__PURE__ */ t((e) => {
92
- var o;
93
- return (o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverRowBorderColor;
96
+ getValue: /* @__PURE__ */ l((e) => {
97
+ var o, t;
98
+ return ((o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverBorderColor) ?? ((t = e == null ? void 0 : e.state) == null ? void 0 : t.hoverRowBorderColor);
94
99
  }, "getValue")
95
100
  },
96
101
  {
97
102
  cssVariableName: "--owp-tree-grid-selected-row-background-color",
98
- getValue: /* @__PURE__ */ t((e) => {
103
+ getValue: /* @__PURE__ */ l((e) => {
99
104
  var o;
100
105
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.selectedRowBackgroundColor;
101
106
  }, "getValue")
102
107
  },
103
108
  {
104
109
  cssVariableName: "--owp-tree-grid-selected-cell-background-color",
105
- getValue: /* @__PURE__ */ t((e) => {
110
+ getValue: /* @__PURE__ */ l((e) => {
106
111
  var o;
107
112
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.selectedCellBackgroundColor;
108
113
  }, "getValue")
109
114
  },
110
115
  {
111
116
  cssVariableName: "--owp-tree-grid-focused-row-background-color",
112
- getValue: /* @__PURE__ */ t((e) => {
117
+ getValue: /* @__PURE__ */ l((e) => {
113
118
  var o;
114
119
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.focusedRowBackgroundColor;
115
120
  }, "getValue")
116
121
  },
117
122
  {
118
123
  cssVariableName: "--owp-tree-grid-focused-row-border-color",
119
- getValue: /* @__PURE__ */ t((e) => {
124
+ getValue: /* @__PURE__ */ l((e) => {
120
125
  var o;
121
126
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.focusedRowBorderColor;
122
127
  }, "getValue")
123
128
  },
124
129
  {
125
130
  cssVariableName: "--owp-tree-grid-hover-cell-background-color",
126
- getValue: /* @__PURE__ */ t((e) => {
127
- var o;
128
- return (o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverCellBackgroundColor;
131
+ getValue: /* @__PURE__ */ l((e) => {
132
+ var o, t;
133
+ return ((o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverBackgroundColor) ?? ((t = e == null ? void 0 : e.state) == null ? void 0 : t.hoverCellBackgroundColor);
129
134
  }, "getValue")
130
135
  },
131
136
  {
132
137
  cssVariableName: "--owp-tree-grid-hover-cell-border-color",
133
- getValue: /* @__PURE__ */ t((e) => {
134
- var o;
135
- return (o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverCellBorderColor;
138
+ getValue: /* @__PURE__ */ l((e) => {
139
+ var o, t;
140
+ return ((o = e == null ? void 0 : e.state) == null ? void 0 : o.hoverBorderColor) ?? ((t = e == null ? void 0 : e.state) == null ? void 0 : t.hoverCellBorderColor);
136
141
  }, "getValue")
137
142
  },
138
143
  {
139
144
  cssVariableName: "--owp-tree-grid-focused-cell-background-color",
140
- getValue: /* @__PURE__ */ t((e) => {
145
+ getValue: /* @__PURE__ */ l((e) => {
141
146
  var o;
142
147
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.focusedCellBackgroundColor;
143
148
  }, "getValue")
144
149
  },
145
150
  {
146
151
  cssVariableName: "--owp-tree-grid-focused-cell-border-color",
147
- getValue: /* @__PURE__ */ t((e) => {
152
+ getValue: /* @__PURE__ */ l((e) => {
148
153
  var o;
149
154
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.focusedCellBorderColor;
150
155
  }, "getValue")
151
156
  },
152
157
  {
153
158
  cssVariableName: "--owp-tree-grid-editing-cell-border-color",
154
- getValue: /* @__PURE__ */ t((e) => {
159
+ getValue: /* @__PURE__ */ l((e) => {
155
160
  var o;
156
161
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.editingCellBorderColor;
157
162
  }, "getValue")
158
163
  },
159
164
  {
160
165
  cssVariableName: "--owp-tree-grid-error-cell-border-color",
161
- getValue: /* @__PURE__ */ t((e) => {
166
+ getValue: /* @__PURE__ */ l((e) => {
162
167
  var o;
163
168
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.errorCellBorderColor;
164
169
  }, "getValue")
165
170
  },
166
171
  {
167
172
  cssVariableName: "--owp-tree-grid-focused-cell-rect-background-color",
168
- getValue: /* @__PURE__ */ t((e) => {
173
+ getValue: /* @__PURE__ */ l((e) => {
169
174
  var o;
170
175
  return (o = e == null ? void 0 : e.state) == null ? void 0 : o.focusedCellRectBackgroundColor;
171
176
  }, "getValue")
172
177
  },
173
178
  {
174
179
  cssVariableName: "--owp-tree-grid-changed-background-color",
175
- getValue: /* @__PURE__ */ t((e) => {
180
+ getValue: /* @__PURE__ */ l((e) => {
176
181
  var o;
177
182
  return (o = e == null ? void 0 : e.changed) == null ? void 0 : o.backgroundColor;
178
183
  }, "getValue")
179
184
  },
180
185
  {
181
186
  cssVariableName: "--owp-tree-grid-changed-text-color",
182
- getValue: /* @__PURE__ */ t((e) => {
187
+ getValue: /* @__PURE__ */ l((e) => {
183
188
  var o;
184
189
  return (o = e == null ? void 0 : e.changed) == null ? void 0 : o.color;
185
190
  }, "getValue")
186
191
  },
187
192
  {
188
193
  cssVariableName: "--owp-tree-grid-changed-font-weight",
189
- getValue: /* @__PURE__ */ t((e) => {
194
+ getValue: /* @__PURE__ */ l((e) => {
190
195
  var o;
191
196
  return ((o = e == null ? void 0 : e.changed) == null ? void 0 : o.fontWeight) === void 0 ? void 0 : String(e.changed.fontWeight);
192
197
  }, "getValue")
193
198
  }
194
- ], Le = [
199
+ ], co = [
195
200
  {
196
201
  cssVariableName: "--owp-tree-grid-header-background-color",
197
- getValue: /* @__PURE__ */ t((e) => e.header.backgroundColor, "getValue")
202
+ getValue: /* @__PURE__ */ l((e) => e.header.backgroundColor, "getValue")
198
203
  },
199
204
  {
200
205
  cssVariableName: "--owp-tree-grid-header-color",
201
- getValue: /* @__PURE__ */ t((e) => e.header.color, "getValue")
206
+ getValue: /* @__PURE__ */ l((e) => e.header.color, "getValue")
202
207
  },
203
208
  {
204
209
  cssVariableName: "--owp-tree-grid-header-font-size",
205
- getValue: /* @__PURE__ */ t((e) => f(e.header.fontSize), "getValue")
210
+ getValue: /* @__PURE__ */ l((e) => F(e.header.fontSize), "getValue")
206
211
  },
207
212
  {
208
213
  cssVariableName: "--owp-tree-grid-header-font-weight",
209
- getValue: /* @__PURE__ */ t((e) => String(e.header.fontWeight), "getValue")
214
+ getValue: /* @__PURE__ */ l((e) => String(e.header.fontWeight), "getValue")
210
215
  },
211
216
  {
212
217
  cssVariableName: "--owp-tree-grid-header-height",
213
- getValue: /* @__PURE__ */ t((e) => f(e.header.height), "getValue")
218
+ getValue: /* @__PURE__ */ l((e) => F(e.header.height), "getValue")
214
219
  },
215
220
  {
216
221
  cssVariableName: "--owp-tree-grid-cell-font-size",
217
- getValue: /* @__PURE__ */ t((e) => f(e.cell.fontSize), "getValue")
222
+ getValue: /* @__PURE__ */ l((e) => F(e.cell.fontSize), "getValue")
218
223
  }
219
- ], p = /* @__PURE__ */ t((e, o) => ({
224
+ ], p = /* @__PURE__ */ l((e, o) => ({
220
225
  backgroundColor: `var(${e}, ${o}) !important`
221
- }), "createTreeGridBackgroundColorStyle"), g = /* @__PURE__ */ t((e) => ({
226
+ }), "createTreeGridBackgroundColorStyle"), x = /* @__PURE__ */ l((e) => ({
222
227
  backgroundColor: `var(${e}) !important`
223
- }), "createTreeGridOptionalBackgroundColorStyle"), Ne = /* @__PURE__ */ t(() => Object.fromEntries(
224
- c.flatMap((e) => [
228
+ }), "createTreeGridOptionalBackgroundColorStyle"), k = /* @__PURE__ */ l((e) => ({
229
+ borderColor: `${e} !important`,
230
+ borderTopColor: `${e} !important`,
231
+ borderRightColor: `${e} !important`,
232
+ borderBottomColor: `${e} !important`,
233
+ borderLeftColor: `${e} !important`,
234
+ outlineColor: `${e} !important`
235
+ }), "createTreeGridBorderColorStyle"), so = /* @__PURE__ */ l((e) => ({
236
+ ...k(e),
237
+ borderStyle: "solid !important",
238
+ borderWidth: "1px !important"
239
+ }), "createTreeGridSolidBorderColorStyle"), io = /* @__PURE__ */ l(() => Object.fromEntries(
240
+ n.flatMap((e) => [
225
241
  [
226
- `@keyframes ${e}${ue}`,
242
+ `@keyframes ${e}${Ge}`,
227
243
  {
228
244
  "0%": {
229
- boxShadow: `inset 0 0 0 1px ${be}, inset 0 0 0 9999px ${Ee}`
245
+ boxShadow: `inset 0 0 0 1px ${he}, inset 0 0 0 9999px ${Le}`
230
246
  },
231
247
  "40%": {
232
- boxShadow: `inset 0 0 0 1px ${$e}, inset 0 0 0 9999px ${_e}`
248
+ boxShadow: `inset 0 0 0 1px ${Me}, inset 0 0 0 9999px ${He}`
233
249
  },
234
250
  "100%": {
235
- boxShadow: `inset 0 0 0 1px ${L}, inset 0 0 0 9999px ${L}`
251
+ boxShadow: `inset 0 0 0 1px ${z}, inset 0 0 0 9999px ${z}`
236
252
  }
237
253
  }
238
254
  ],
239
255
  [
240
- `@keyframes ${e}${Se}`,
256
+ `@keyframes ${e}${xe}`,
241
257
  {
242
258
  "0%": {
243
- boxShadow: `inset 0 0 0 1px ${ge}, inset 0 0 0 9999px ${we}`
259
+ boxShadow: `inset 0 0 0 1px ${Ne}, inset 0 0 0 9999px ${Ve}`
244
260
  },
245
261
  "35%": {
246
- boxShadow: `inset 0 0 0 1px ${me}, inset 0 0 0 9999px ${De}`
262
+ boxShadow: `inset 0 0 0 1px ${ye}, inset 0 0 0 9999px ${Pe}`
263
+ },
264
+ "100%": {
265
+ boxShadow: `inset 0 0 0 1px ${j}, inset 0 0 0 9999px ${j}`
266
+ }
267
+ }
268
+ ],
269
+ [
270
+ `@keyframes ${e}${Fe}`,
271
+ {
272
+ "0%": {
273
+ boxShadow: `inset 0 0 0 9999px ${U}`
274
+ },
275
+ "45%": {
276
+ boxShadow: `inset 0 0 0 9999px ${We}`
277
+ },
278
+ "100%": {
279
+ boxShadow: `inset 0 0 0 9999px ${ze}`
280
+ }
281
+ }
282
+ ],
283
+ [
284
+ `@keyframes ${e}${fe}`,
285
+ {
286
+ "0%": {
287
+ boxShadow: `inset 0 0 0 9999px ${je}`
288
+ },
289
+ "55%": {
290
+ boxShadow: `inset 0 0 0 9999px ${Ue}`
247
291
  },
248
292
  "100%": {
249
- boxShadow: `inset 0 0 0 1px ${N}, inset 0 0 0 9999px ${N}`
293
+ boxShadow: `inset 0 0 0 9999px ${U}`
250
294
  }
251
295
  }
252
296
  ],
253
297
  [
254
- `@keyframes ${e}${Ce}`,
298
+ `@keyframes ${e}${Be}`,
255
299
  {
256
300
  "0%": {
257
- boxShadow: `inset 0 0 0 1px ${ke}, inset 0 0 0 9999px ${Ie}`,
301
+ boxShadow: `inset 0 0 0 1px ${Xe}, inset 0 0 0 9999px ${Ke}`,
258
302
  opacity: 0.72,
259
303
  transform: "scaleY(0.985)",
260
304
  transformOrigin: "center center"
261
305
  },
262
306
  "45%": {
263
- boxShadow: `inset 0 0 0 1px ${ve}, inset 0 0 0 9999px ${Oe}`,
307
+ boxShadow: `inset 0 0 0 1px ${Ye}, inset 0 0 0 9999px ${Qe}`,
264
308
  opacity: 1,
265
309
  transform: "scaleY(1)",
266
310
  transformOrigin: "center center"
267
311
  },
268
312
  "100%": {
269
- boxShadow: `inset 0 0 0 1px ${V}, inset 0 0 0 9999px ${V}`,
313
+ boxShadow: `inset 0 0 0 1px ${X}, inset 0 0 0 9999px ${X}`,
270
314
  opacity: 1,
271
315
  transform: "scaleY(1)",
272
316
  transformOrigin: "center center"
@@ -274,86 +318,85 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
274
318
  }
275
319
  ],
276
320
  [
277
- `@keyframes ${e}${Re}`,
321
+ `@keyframes ${e}${Ae}`,
278
322
  {
279
323
  "0%": {
280
- boxShadow: `inset 0 0 0 1px ${fe}, inset 0 0 0 9999px ${Fe}`,
281
- opacity: 1,
282
- transform: "scaleY(1)",
283
- transformOrigin: "center center"
324
+ boxShadow: `inset 0 0 0 1px ${Ze}, inset 0 0 0 9999px ${qe}`,
325
+ opacity: 1
284
326
  },
285
327
  "45%": {
286
- boxShadow: `inset 0 0 0 1px ${Ge}, inset 0 0 0 9999px ${Te}`,
287
- opacity: 0.82,
288
- transform: "scaleY(0.995)",
289
- transformOrigin: "center center"
328
+ boxShadow: `inset 0 0 0 1px ${Je}, inset 0 0 0 9999px ${eo}`,
329
+ opacity: 0.92
290
330
  },
291
331
  "100%": {
292
- boxShadow: `inset 0 0 0 1px ${P}, inset 0 0 0 9999px ${P}`,
293
- opacity: 0.34,
294
- transform: "scaleY(0.985)",
295
- transformOrigin: "center center"
332
+ boxShadow: `inset 0 0 0 1px ${K}, inset 0 0 0 9999px ${K}`,
333
+ opacity: 0.78
296
334
  }
297
335
  }
298
336
  ]
299
337
  ])
300
- ), "createTreeGridSoftAnimationKeyframeStyles"), l = /* @__PURE__ */ t(({
338
+ ), "createTreeGridSoftAnimationKeyframeStyles"), a = /* @__PURE__ */ l(({
301
339
  wrapperSelector: e = `.${r}`,
302
340
  rowSuffix: o,
303
- suffixes: a,
304
- descendant: n = "",
305
- withChildren: d = !1
306
- }) => c.flatMap((S) => a.flatMap((C) => {
307
- const D = o ? ` .${S}${o}` : "", $ = `${e}${D} .${S}${C}${n}`;
308
- return d ? [$, `${$} *`] : [$];
309
- })).join(", "), "createTreeGridSelectors"), m = /* @__PURE__ */ t(({
341
+ suffixes: t,
342
+ descendant: c = "",
343
+ withChildren: s = !1
344
+ }) => n.flatMap((S) => t.flatMap((R) => {
345
+ const I = o ? ` .${S}${o}` : "", g = `${e}${I} .${S}${R}${c}`;
346
+ return s ? [g, `${g} *`] : [g];
347
+ })).join(", "), "createTreeGridSelectors"), b = /* @__PURE__ */ l(({
310
348
  wrapperSelector: e = `.${r}`,
311
349
  ancestorSuffixes: o,
312
- suffixes: a,
313
- descendant: n = ""
314
- }) => c.flatMap((d) => o.flatMap((S) => a.map((C) => `${e} .${d}${S} .${d}${C}${n}`))).join(", "), "createTreeGridNestedSelectors"), _ = `.${r}.${le}`, Ve = `${_}.${ae}`, Pe = `${_}.${ce}`, ye = `${_}.${ne}`, We = l({
315
- wrapperSelector: _,
350
+ suffixes: t,
351
+ descendant: c = ""
352
+ }) => n.flatMap((s) => o.flatMap((S) => t.map((R) => `${e} .${s}${S} .${s}${R}${c}`))).join(", "), "createTreeGridNestedSelectors"), ae = /* @__PURE__ */ l(({
353
+ wrapperSelector: e = `.${r}`,
354
+ baseSuffixes: o,
355
+ suffixes: t,
356
+ descendant: c = ""
357
+ }) => n.flatMap((s) => o.flatMap((S) => t.map((R) => `${e} .${s}${S}.${s}${R}${c}`))).join(", "), "createTreeGridCompoundSelectors"), D = `.${r}.${be}`, po = `${D}.${we}`, So = `${D}.${ge}`, uo = `${D}.${De}`, Ro = a({
358
+ wrapperSelector: D,
316
359
  suffixes: ["PanelSelect"]
317
- }), ze = l({
318
- wrapperSelector: _,
360
+ }), Co = a({
361
+ wrapperSelector: D,
319
362
  suffixes: ["PanelSelectOn"]
320
- }), je = m({
321
- wrapperSelector: _,
363
+ }), _o = b({
364
+ wrapperSelector: D,
322
365
  ancestorSuffixes: ["CellHeaderPanel", "CellIndexPanel"],
323
366
  suffixes: ["PanelSelect"]
324
- }), Ue = m({
325
- wrapperSelector: _,
367
+ }), Eo = b({
368
+ wrapperSelector: D,
326
369
  ancestorSuffixes: ["CellHeaderPanel", "CellIndexPanel"],
327
370
  suffixes: ["PanelSelectOn"]
328
- }), Xe = m({
329
- wrapperSelector: Ve,
371
+ }), $o = b({
372
+ wrapperSelector: po,
330
373
  ancestorSuffixes: ["CellHeaderPanel", "CellIndexPanel"],
331
374
  suffixes: ["PanelSelect", "PanelSelectOn"]
332
- }), Ye = m({
333
- wrapperSelector: Pe,
375
+ }), bo = b({
376
+ wrapperSelector: So,
334
377
  ancestorSuffixes: ["CellHeaderPanel", "CellIndexPanel"],
335
378
  suffixes: ["PanelSelect", "PanelSelectOn"]
336
- }), Ke = m({
337
- wrapperSelector: ye,
379
+ }), wo = b({
380
+ wrapperSelector: uo,
338
381
  ancestorSuffixes: ["CellHeaderPanel", "CellIndexPanel"],
339
382
  suffixes: ["PanelSelect", "PanelSelectOn"]
340
- }), Qe = l({
383
+ }), go = a({
341
384
  suffixes: ["Filter0"]
342
- }), qe = l({
385
+ }), Do = a({
343
386
  suffixes: ["Filter1"]
344
- }), Je = l({
387
+ }), Oo = a({
345
388
  suffixes: ["Main"],
346
389
  withChildren: !0
347
- }), Ze = l({
390
+ }), Io = a({
348
391
  suffixes: ["Main"]
349
- }), eo = l({
392
+ }), mo = a({
350
393
  suffixes: ["ClassReadOnly"],
351
394
  withChildren: !0
352
- }), oo = l({
395
+ }), ko = a({
353
396
  suffixes: ["MainTable"]
354
- }), ro = l({
397
+ }), vo = a({
355
398
  suffixes: ["NoDataRow"]
356
- }), A = `.${r}.${w}`, to = c.map((e) => `.${r}.${w} .${e}MainTable`).join(", "), lo = `${A}::before`, ao = `${A}::after`, co = `calc(${s} - ${u})`, no = `calc(var(--owp-tree-grid-header-height, 33px) - ${s} + ${u})`, so = c.map((e) => `.${r}:not(.${w}) .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow`).join(", "), io = l({
399
+ }), H = `.${r}.${O}`, To = n.map((e) => `.${r}.${O} .${e}MainTable`).join(", "), Go = `${H}::before`, xo = `${H}::after`, Fo = `calc(${d} - ${u})`, fo = `calc(var(--owp-tree-grid-header-height, 33px) - ${d} + ${u})`, Bo = n.map((e) => `.${r}:not(.${O}) .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow`).join(", "), Ao = a({
357
400
  suffixes: [
358
401
  "VScroll",
359
402
  "VScrollTop",
@@ -386,7 +429,7 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
386
429
  "CustScroll4Right",
387
430
  "CustScroll4RightHidden"
388
431
  ]
389
- }), po = c.flatMap(
432
+ }), ho = n.flatMap(
390
433
  (e) => [
391
434
  `.${r} .${e}CustScroll1Up > div`,
392
435
  `.${r} .${e}CustScroll1Up > div > div`,
@@ -397,19 +440,22 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
397
440
  `.${r} .${e}CustScroll2UpHover > div`,
398
441
  `.${r} .${e}CustScroll2UpHover > div > div`
399
442
  ]
400
- ).join(", "), uo = c.map((e) => `.${r}.${w} .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow`).join(", "), So = c.map((e) => `.${r}.${w} .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow::before`).join(", "), Co = c.map((e) => `.${r}.${w} .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow::after`).join(", "), Ro = l({
443
+ ).join(", "), Lo = n.map((e) => `.${r}.${O} .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow`).join(", "), Mo = n.map((e) => `.${r}.${O} .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow::before`).join(", "), Ho = n.map((e) => `.${r}.${O} .${e}RowSpace4.${e}RowSpaceFirst .${e}SolidRow::after`).join(", "), No = a({
401
444
  suffixes: ["FillRow"]
402
- }), bo = l({
445
+ }), Vo = a({
403
446
  suffixes: ["SolidRow"]
404
- }), Eo = c.map((e) => `.${r} .${e}ToolbarRow.${e}SolidRow`).join(", "), $o = l({
447
+ }), yo = n.map((e) => `.${r} .${e}ToolbarRow.${e}SolidRow`).join(", "), ne = a({
405
448
  suffixes: ["ColorDefault"]
406
- }), _o = l({
449
+ }), ce = a({
407
450
  suffixes: ["ColorDefaultRow"]
408
- }), go = l({
451
+ }), Po = [
452
+ ne,
453
+ ce
454
+ ].join(", "), Wo = a({
409
455
  rowSuffix: "HeaderRow",
410
456
  suffixes: ["CellHeader", "CellIndex", "GanttHeaderBase", "LevelButton"],
411
457
  withChildren: !0
412
- }), wo = l({
458
+ }), zo = a({
413
459
  rowSuffix: "HeaderRow",
414
460
  suffixes: [
415
461
  "CellHeader",
@@ -422,38 +468,60 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
422
468
  "HeaderFocus",
423
469
  "HeaderDrag"
424
470
  ]
425
- }), mo = l({
471
+ }), jo = a({
426
472
  suffixes: ["ColorHovered"]
427
- }), Do = l({
473
+ }), Uo = a({
428
474
  suffixes: ["ColorHoveredRow"]
429
- }), ko = l({
430
- suffixes: ["HoverRowBorder"]
431
- }), Io = l({
475
+ }), Xo = a({
476
+ suffixes: ["HoverRowBorder", "HoverRowBorderDynamic"]
477
+ }), Ko = [
478
+ ae({
479
+ baseSuffixes: ["HoverRowBorder", "HoverRowBorderDynamic"],
480
+ suffixes: f
481
+ }),
482
+ b({
483
+ ancestorSuffixes: ["HoverRowBorder", "HoverRowBorderDynamic"],
484
+ suffixes: f
485
+ })
486
+ ].join(", "), se = a({
432
487
  suffixes: ["ColorSelected", "ColorSelectedCell"]
433
- }), vo = l({
488
+ }), de = a({
434
489
  suffixes: ["ColorSelected", "ColorSelectedCell"],
435
490
  descendant: " *"
436
- }), Oo = l({
491
+ }), ie = a({
437
492
  suffixes: ["ColorSelectedRow"]
438
- }), fo = l({
493
+ }), Yo = [
494
+ se,
495
+ de,
496
+ ie
497
+ ].join(", "), Qo = a({
439
498
  suffixes: ["ColorFocused"]
440
- }), Fo = l({
499
+ }), Zo = a({
441
500
  suffixes: ["ColorFocusedRow"]
442
- }), Go = l({
501
+ }), qo = a({
443
502
  suffixes: ["FocusRowBorder"]
444
- }), To = l({
503
+ }), Jo = a({
445
504
  suffixes: ["ColorHoveredCell", "ColorHoveredCellIndex"]
446
- }), ho = l({
447
- suffixes: ["HoverCellBorder"]
448
- }), xo = l({
505
+ }), er = a({
506
+ suffixes: ["HoverCellBorder", "HoverCellBorderDynamic"]
507
+ }), or = [
508
+ ae({
509
+ baseSuffixes: ["HoverCellBorder", "HoverCellBorderDynamic"],
510
+ suffixes: f
511
+ }),
512
+ b({
513
+ ancestorSuffixes: ["HoverCellBorder", "HoverCellBorderDynamic"],
514
+ suffixes: f
515
+ })
516
+ ].join(", "), rr = a({
449
517
  suffixes: ["ColorHoveredCellReadOnly", "ColorHoveredCellNoFocus"]
450
- }), Ao = l({
518
+ }), tr = a({
451
519
  suffixes: ["ColorHoveredCellReadOnly", "ColorHoveredCellNoFocus"],
452
520
  descendant: " *"
453
- }), Bo = m({
454
- ancestorSuffixes: ["HoverCellBorder"],
521
+ }), lr = b({
522
+ ancestorSuffixes: ["HoverCellBorder", "HoverCellBorderDynamic"],
455
523
  suffixes: ["ColorPreview", "ColorPreviewDynamic", "ColorViewedCell"]
456
- }), Mo = l({
524
+ }), ar = a({
457
525
  suffixes: [
458
526
  "ColorHoveredCellSpace",
459
527
  "ColorHoveredCellSpaceEdit",
@@ -467,18 +535,18 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
467
535
  "ColorHoveredCellTab",
468
536
  "ColorHoveredCellTab1"
469
537
  ]
470
- }), Ho = l({
538
+ }), nr = a({
471
539
  suffixes: ["ColorFocusedCell", "ColorFocusedCellRelative"]
472
- }), Lo = l({
540
+ }), cr = a({
473
541
  suffixes: ["ColorFocusedCellRect"]
474
- }), No = l({
542
+ }), sr = a({
475
543
  suffixes: ["FocusCellBorder"]
476
- }), Vo = l({
544
+ }), dr = a({
477
545
  suffixes: ["FocusCellCorner"]
478
- }), Po = l({
546
+ }), ir = a({
479
547
  suffixes: ["ClassFocusedCellSpaceEdit", "ClassFocusedCellSpaceDefaults"],
480
548
  descendant: " > div"
481
- }), Q = `.${r} .${Y}`, yo = `${Q}::after`, q = `.${r} .${F}`, Wo = `.${r} .${Y}.${F}::after`, zo = `${q}::before`, jo = `.${r} .${F}.${se}::before`, Uo = `.${r} .${F}.${de}::before`, Xo = l({
549
+ }), pe = `.${r} .${re}`, pr = `${pe}::after`, Se = `.${r} .${B}`, Sr = `.${r} .${re}.${B}::after`, ur = `${Se}::before`, Rr = `.${r} .${B}.${Oe}::before`, Cr = `.${r} .${B}.${Ie}::before`, _r = a({
482
550
  suffixes: [
483
551
  "ColorFocusedCellSafari",
484
552
  "ColorFocusedCellSpace",
@@ -487,24 +555,28 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
487
555
  "ColorFocusedCellSpaceBool",
488
556
  "ColorFocusedCellButton"
489
557
  ]
490
- }), Yo = l({
558
+ }), Er = a({
491
559
  suffixes: ["ClassHoveredCellSpaceEdit", "ClassHoveredCellSpaceDefaults"],
492
560
  descendant: " > div"
493
- }), Ko = l({
561
+ }), $r = a({
494
562
  suffixes: ["ClassHoveredCellButtonButton", "ClassHoveredCellButtonButton1"],
495
563
  descendant: " u"
496
- }), Qo = l({
564
+ }), br = a({
497
565
  suffixes: ["ClassHoveredCellTab", "ClassHoveredCellTab1"]
498
- }), qo = l({
566
+ }), wr = n.flatMap((e) => [
567
+ `.${e}HintMain:not(.${e}HintHeaderMain):not(.${e}HintFilterMain)`,
568
+ `.${e}HintDataMain`,
569
+ `.${e}HintSpaceSelectOuter`
570
+ ]).join(", "), gr = a({
499
571
  suffixes: ["ColorChangedCell"]
500
- }), Jo = c.flatMap((e) => {
501
- const o = `${e}ClassFocusedCell`, a = `.${r} .${i}:not(.${o})`;
572
+ }), Dr = n.flatMap((e) => {
573
+ const o = `${e}ClassFocusedCell`, t = `.${r} .${i}:not(.${o})`;
502
574
  return [
503
- a,
504
- `${a} *:not(.${o})`
575
+ t,
576
+ `${t} *:not(.${o})`
505
577
  ];
506
- }).join(", "), Zo = c.flatMap((e) => {
507
- const o = `.${r} .${i}`, a = `.${r} .${i}.${X}`;
578
+ }).join(", "), Or = n.flatMap((e) => {
579
+ const o = `.${r} .${i}`, t = `.${r} .${i}.${oe}`;
508
580
  return [
509
581
  `${e}ColorSelected`,
510
582
  `${e}ColorSelectedCell`,
@@ -512,39 +584,39 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
512
584
  `${e}ClassSelected`,
513
585
  `${e}ClassSelectedCell`,
514
586
  `${e}ClassSelectedRow`
515
- ].flatMap((d) => [
516
- a,
517
- `${a} *`,
518
- `${o}.${d}`,
519
- `${o}.${d} *`,
520
- `.${r} .${d} ${o}`,
521
- `.${r} .${d} ${o} *`
587
+ ].flatMap((s) => [
588
+ t,
589
+ `${t} *`,
590
+ `${o}.${s}`,
591
+ `${o}.${s} *`,
592
+ `.${r} .${s} ${o}`,
593
+ `.${r} .${s} ${o} *`
522
594
  ]);
523
- }).join(", "), er = c.flatMap((e) => {
595
+ }).join(", "), Ir = n.flatMap((e) => {
524
596
  const o = `.${r} .${i}`;
525
597
  return [
526
598
  `${e}ClassFocusedCell`,
527
599
  `${e}ColorFocusedCell`,
528
600
  `${e}ColorFocusedCellRelative`
529
- ].flatMap((n) => [
530
- `${o}.${n}`,
531
- `${o}.${n} *`,
532
- `.${r} .${n} ${o}`,
533
- `.${r} .${n} ${o} *`
601
+ ].flatMap((c) => [
602
+ `${o}.${c}`,
603
+ `${o}.${c} *`,
604
+ `.${r} .${c} ${o}`,
605
+ `.${r} .${c} ${o} *`
534
606
  ]);
535
- }).join(", "), or = c.flatMap((e) => {
536
- const o = `.${r} .${i}`, a = `${e}HiddenValue`;
607
+ }).join(", "), mr = n.flatMap((e) => {
608
+ const o = `.${r} .${i}`, t = `${e}HiddenValue`;
537
609
  return [
538
- `${o}.${a}`,
539
- `${o}.${a} *`,
540
- `.${r} .${a} ${o}`,
541
- `.${r} .${a} ${o} *`
610
+ `${o}.${t}`,
611
+ `${o}.${t} *`,
612
+ `.${r} .${t} ${o}`,
613
+ `.${r} .${t} ${o} *`
542
614
  ];
543
- }).join(", "), rr = `var(--owp-tree-grid-changed-font-weight, ${ee}) !important`, tr = l({
615
+ }).join(", "), kr = `var(--owp-tree-grid-changed-font-weight, ${Ce}) !important`, vr = a({
544
616
  suffixes: ["EditCellBorder"]
545
- }), lr = l({
617
+ }), Tr = a({
546
618
  suffixes: ["EditCellCorner"]
547
- }), ar = [
619
+ }), Gr = [
548
620
  `.${r} .TSMain .TSDateLeft`,
549
621
  `.${r} .TSMain .TSDatesLeft`,
550
622
  `.${r} .TSMain .TSDateRight`,
@@ -553,7 +625,7 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
553
625
  `.${r} .TSMain .TSDatesTop`,
554
626
  `.${r} .TSMain .TSDateBottom`,
555
627
  `.${r} .TSMain .TSDatesBottom`
556
- ].join(", "), cr = [
628
+ ].join(", "), xr = [
557
629
  `.${r} .TSMain .${i}.TSDateLeft`,
558
630
  `.${r} .TSMain .${i}.TSDatesLeft`,
559
631
  `.${r} .TSMain .${i}.TSDateRight`,
@@ -562,7 +634,7 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
562
634
  `.${r} .TSMain .${i}.TSDatesTop`,
563
635
  `.${r} .TSMain .${i}.TSDateBottom`,
564
636
  `.${r} .TSMain .${i}.TSDatesBottom`
565
- ].join(", "), nr = [
637
+ ].join(", "), Fr = [
566
638
  "DateLeft",
567
639
  "DatesLeft",
568
640
  "DateRight",
@@ -571,23 +643,23 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
571
643
  "DatesTop",
572
644
  "DateBottom",
573
645
  "DatesBottom"
574
- ].flatMap((e) => c.flatMap((o) => {
575
- const a = `.${r} .${i}.${o}${e}`;
646
+ ].flatMap((e) => n.flatMap((o) => {
647
+ const t = `.${r} .${i}.${o}${e}`;
576
648
  return [
577
649
  `${o}ClassFocusedCell`,
578
650
  `${o}ColorFocusedCell`,
579
651
  `${o}ColorFocusedCellRelative`
580
- ].flatMap((d) => [
581
- `${a}.${d}`,
582
- `.${r} .${d} ${a}`
652
+ ].flatMap((s) => [
653
+ `${t}.${s}`,
654
+ `.${r} .${s} ${t}`
583
655
  ]);
584
- })).join(", "), x = 'url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%22-1%200%2018%2018%22%3E%0D%0A%3Cpath%20fill%3D%22%23757575%22%20d%3D%22M15.427%2C14.857c0%2C0.625-0.517%2C1.143-1.142%2C1.143H1.715c-0.625%2C0-1.142-0.518-1.142-1.143V3.429%0D%0A%09c0-0.625%2C0.517-1.142%2C1.142-1.142H2.86V1.429C2.86%2C0.642%2C3.502%2C0%2C4.289%2C0H4.86c0.783%2C0%2C1.429%2C0.642%2C1.429%2C1.429v0.858h3.43V1.429%0D%0A%09C9.719%2C0.642%2C10.359%2C0%2C11.145%2C0h0.574c0.783%2C0%2C1.426%2C0.642%2C1.426%2C1.429v0.858h1.142c0.625%2C0%2C1.142%2C0.517%2C1.142%2C1.142L15.427%2C14.857%0D%0A%09L15.427%2C14.857z%20M4.289%2C8.287V5.713H1.715v2.574H4.289z%20M4.289%2C11.717V8.857H1.715v2.858L4.289%2C11.717L4.289%2C11.717z%20M4.289%2C14.857%0D%0A%09v-2.574H1.715v2.574H4.289z%20M5.144%2C1.429c0-0.154-0.134-0.288-0.283-0.288H4.289c-0.154%2C0-0.287%2C0.133-0.287%2C0.288V4%0D%0A%09c0%2C0.15%2C0.133%2C0.288%2C0.287%2C0.288H4.86C5.01%2C4.288%2C5.144%2C4.15%2C5.144%2C4V1.429z%20M7.715%2C8.287V5.713H4.86v2.574H7.715z%20M7.715%2C11.717%0D%0A%09V8.857H4.86v2.858L7.715%2C11.717L7.715%2C11.717z%20M7.715%2C14.857v-2.574H4.86v2.574H7.715z%20M11.145%2C8.287V5.713H8.289v2.574H11.145z%0D%0A%09M11.145%2C11.717V8.857H8.289v2.858L11.145%2C11.717L11.145%2C11.717z%20M11.145%2C14.857v-2.574H8.289v2.574H11.145z%20M12.002%2C1.429%0D%0A%09c0-0.154-0.139-0.288-0.283-0.288h-0.574c-0.154%2C0-0.283%2C0.133-0.283%2C0.288V4c0%2C0.15%2C0.129%2C0.288%2C0.283%2C0.288h0.574%0D%0A%09c0.146%2C0%2C0.283-0.138%2C0.283-0.288V1.429z%20M14.285%2C8.287V5.713h-2.566v2.574H14.285z%20M14.285%2C11.717V8.857h-2.566v2.858%0D%0A%09L14.285%2C11.717L14.285%2C11.717z%20M14.285%2C14.857v-2.574h-2.566v2.574H14.285z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A")', sr = x.replace(
656
+ })).join(", "), M = 'url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%22-1%200%2018%2018%22%3E%0D%0A%3Cpath%20fill%3D%22%23757575%22%20d%3D%22M15.427%2C14.857c0%2C0.625-0.517%2C1.143-1.142%2C1.143H1.715c-0.625%2C0-1.142-0.518-1.142-1.143V3.429%0D%0A%09c0-0.625%2C0.517-1.142%2C1.142-1.142H2.86V1.429C2.86%2C0.642%2C3.502%2C0%2C4.289%2C0H4.86c0.783%2C0%2C1.429%2C0.642%2C1.429%2C1.429v0.858h3.43V1.429%0D%0A%09C9.719%2C0.642%2C10.359%2C0%2C11.145%2C0h0.574c0.783%2C0%2C1.426%2C0.642%2C1.426%2C1.429v0.858h1.142c0.625%2C0%2C1.142%2C0.517%2C1.142%2C1.142L15.427%2C14.857%0D%0A%09L15.427%2C14.857z%20M4.289%2C8.287V5.713H1.715v2.574H4.289z%20M4.289%2C11.717V8.857H1.715v2.858L4.289%2C11.717L4.289%2C11.717z%20M4.289%2C14.857%0D%0A%09v-2.574H1.715v2.574H4.289z%20M5.144%2C1.429c0-0.154-0.134-0.288-0.283-0.288H4.289c-0.154%2C0-0.287%2C0.133-0.287%2C0.288V4%0D%0A%09c0%2C0.15%2C0.133%2C0.288%2C0.287%2C0.288H4.86C5.01%2C4.288%2C5.144%2C4.15%2C5.144%2C4V1.429z%20M7.715%2C8.287V5.713H4.86v2.574H7.715z%20M7.715%2C11.717%0D%0A%09V8.857H4.86v2.858L7.715%2C11.717L7.715%2C11.717z%20M7.715%2C14.857v-2.574H4.86v2.574H7.715z%20M11.145%2C8.287V5.713H8.289v2.574H11.145z%0D%0A%09M11.145%2C11.717V8.857H8.289v2.858L11.145%2C11.717L11.145%2C11.717z%20M11.145%2C14.857v-2.574H8.289v2.574H11.145z%20M12.002%2C1.429%0D%0A%09c0-0.154-0.139-0.288-0.283-0.288h-0.574c-0.154%2C0-0.283%2C0.133-0.283%2C0.288V4c0%2C0.15%2C0.129%2C0.288%2C0.283%2C0.288h0.574%0D%0A%09c0.146%2C0%2C0.283-0.138%2C0.283-0.288V1.429z%20M14.285%2C8.287V5.713h-2.566v2.574H14.285z%20M14.285%2C11.717V8.857h-2.566v2.858%0D%0A%09L14.285%2C11.717L14.285%2C11.717z%20M14.285%2C14.857v-2.574h-2.566v2.574H14.285z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A")', fr = M.replace(
585
657
  "%23757575",
586
658
  "white"
587
- ), U = b(
659
+ ), ee = $(
588
660
  '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#000" d="M4.5 6.25h7L8 9.75z"/></svg>'
589
- ), E = /* @__PURE__ */ t((e, o) => c.flatMap((a) => e.flatMap((n) => o(a, n))).join(", "), "createTreeGridEnumButtonIconSelector"), T = /* @__PURE__ */ t((e, o) => `.${r} .${i}.${e}${o}`, "createTreeGridChangedEnumButtonCellSelector"), I = /* @__PURE__ */ t((e, o) => `${T(e, o)}::after`, "createTreeGridChangedEnumButtonPseudoSelector"), dr = /* @__PURE__ */ t((e, o) => {
590
- const a = T(e, o), n = `.${r} .${i}.${X}.${e}${o}`, d = [
661
+ ), w = /* @__PURE__ */ l((e, o) => n.flatMap((t) => e.flatMap((c) => o(t, c))).join(", "), "createTreeGridEnumButtonIconSelector"), h = /* @__PURE__ */ l((e, o) => `.${r} .${i}.${e}${o}`, "createTreeGridChangedEnumButtonCellSelector"), v = /* @__PURE__ */ l((e, o) => `${h(e, o)}::after`, "createTreeGridChangedEnumButtonPseudoSelector"), Br = /* @__PURE__ */ l((e, o) => {
662
+ const t = h(e, o), c = `.${r} .${i}.${oe}.${e}${o}`, s = [
591
663
  `${e}ColorSelected`,
592
664
  `${e}ColorSelectedCell`,
593
665
  `${e}ColorSelectedRow`,
@@ -596,176 +668,176 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
596
668
  `${e}ClassSelectedRow`
597
669
  ];
598
670
  return [
599
- n,
600
- ...d.flatMap((S) => [
601
- `${a}.${S}`,
602
- `.${r} .${S} ${a}`
671
+ c,
672
+ ...s.flatMap((S) => [
673
+ `${t}.${S}`,
674
+ `.${r} .${S} ${t}`
603
675
  ])
604
676
  ];
605
- }, "createTreeGridSelectedChangedEnumButtonCellSelectors"), ir = /* @__PURE__ */ t((e, o) => {
606
- const a = T(e, o);
677
+ }, "createTreeGridSelectedChangedEnumButtonCellSelectors"), Ar = /* @__PURE__ */ l((e, o) => {
678
+ const t = h(e, o);
607
679
  return [
608
680
  `${e}ClassFocusedCell`,
609
681
  `${e}ColorFocusedCell`,
610
682
  `${e}ColorFocusedCellRelative`
611
- ].flatMap((d) => [
612
- `${a}.${d}`,
613
- `.${r} .${d} ${a}`
683
+ ].flatMap((s) => [
684
+ `${t}.${s}`,
685
+ `.${r} .${s} ${t}`
614
686
  ]);
615
- }, "createTreeGridFocusedChangedEnumButtonCellSelectors"), pr = E(
616
- G,
617
- (e, o) => [T(e, o)]
618
- ), ur = E(
619
- G,
620
- (e, o) => [I(e, o)]
621
- ), Sr = E(
622
- G,
623
- (e, o) => dr(e, o).map(
624
- (a) => `${a}::after`
687
+ }, "createTreeGridFocusedChangedEnumButtonCellSelectors"), hr = w(
688
+ A,
689
+ (e, o) => [h(e, o)]
690
+ ), Lr = w(
691
+ A,
692
+ (e, o) => [v(e, o)]
693
+ ), Mr = w(
694
+ A,
695
+ (e, o) => Br(e, o).map(
696
+ (t) => `${t}::after`
625
697
  )
626
- ), Cr = E(
627
- G,
628
- (e, o) => ir(e, o).map(
629
- (a) => `${a}::after`
698
+ ), Hr = w(
699
+ A,
700
+ (e, o) => Ar(e, o).map(
701
+ (t) => `${t}::after`
630
702
  )
631
- ), Rr = E(
703
+ ), Nr = w(
632
704
  ["DefaultsLeft", "EnumLeft"],
633
- (e, o) => [I(e, o)]
634
- ), br = E(
705
+ (e, o) => [v(e, o)]
706
+ ), Vr = w(
635
707
  ["DefaultsRight", "EnumRight"],
636
- (e, o) => [I(e, o)]
637
- ), Er = E(
708
+ (e, o) => [v(e, o)]
709
+ ), yr = w(
638
710
  ["DefaultsTop", "EnumTop"],
639
- (e, o) => [I(e, o)]
640
- ), $r = E(
711
+ (e, o) => [v(e, o)]
712
+ ), Pr = w(
641
713
  ["DefaultsBottom", "EnumBottom"],
642
- (e, o) => [I(e, o)]
643
- ), h = 'url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23757575%22%20d%3D%22M11.99%202C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202M12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208%22%2F%3E%3Cpath%20fill%3D%22%23757575%22%20d%3D%22M12.5%207H11v6l5.25%203.15.75-1.23-4.5-2.67z%22%2F%3E%3C%2Fsvg%3E")', _r = `.${r} .OwpTreeGridTimePickerEditorIcon`, gr = [
714
+ (e, o) => [v(e, o)]
715
+ ), L = 'url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23757575%22%20d%3D%22M11.99%202C6.47%202%202%206.48%202%2012s4.47%2010%209.99%2010C17.52%2022%2022%2017.52%2022%2012S17.52%202%2011.99%202M12%2020c-4.42%200-8-3.58-8-8s3.58-8%208-8%208%203.58%208%208-3.58%208-8%208%22%2F%3E%3Cpath%20fill%3D%22%23757575%22%20d%3D%22M12.5%207H11v6l5.25%203.15.75-1.23-4.5-2.67z%22%2F%3E%3C%2Fsvg%3E")', Wr = `.${r} .OwpTreeGridTimePickerEditorIcon`, zr = [
644
716
  `.${r} .${i} .OwpTreeGridTimePickerEditorIcon`,
645
717
  `.${r} .${i}.OwpTreeGridTimePickerEditorIcon`
646
- ].join(", "), wr = c.flatMap((e) => {
718
+ ].join(", "), jr = n.flatMap((e) => {
647
719
  const o = `.${r} .${i}`;
648
720
  return [
649
721
  `${e}ClassFocusedCell`,
650
722
  `${e}ColorFocusedCell`,
651
723
  `${e}ColorFocusedCellRelative`
652
- ].flatMap((n) => [
653
- `${o}.${n} .OwpTreeGridTimePickerEditorIcon`,
654
- `${o}.${n}.OwpTreeGridTimePickerEditorIcon`,
655
- `.${r} .${n} ${o} .OwpTreeGridTimePickerEditorIcon`,
656
- `.${r} .${n} ${o}.OwpTreeGridTimePickerEditorIcon`
724
+ ].flatMap((c) => [
725
+ `${o}.${c} .OwpTreeGridTimePickerEditorIcon`,
726
+ `${o}.${c}.OwpTreeGridTimePickerEditorIcon`,
727
+ `.${r} .${c} ${o} .OwpTreeGridTimePickerEditorIcon`,
728
+ `.${r} .${c} ${o}.OwpTreeGridTimePickerEditorIcon`
657
729
  ]);
658
- }).join(", "), mr = c.map(
730
+ }).join(", "), Ur = n.map(
659
731
  (e) => `.${e}EnumMenuMain, .${e}EnumMenuMain *`
660
- ).join(", "), Dr = c.map(
732
+ ).join(", "), Xr = n.map(
661
733
  (e) => `.${e}EnumMenuMain *::-webkit-scrollbar`
662
- ).join(", "), kr = c.map(
734
+ ).join(", "), Kr = n.map(
663
735
  (e) => `.${e}EnumMenuMain *::-webkit-scrollbar-thumb`
664
- ).join(", "), Ir = c.map(
736
+ ).join(", "), Yr = n.map(
665
737
  (e) => `.${e}EnumMenuMain *::-webkit-scrollbar-thumb:hover`
666
- ).join(", "), vr = c.map(
738
+ ).join(", "), Qr = n.map(
667
739
  (e) => `.${e}EnumMenuMain *::-webkit-scrollbar-track`
668
- ).join(", "), Or = c.map(
740
+ ).join(", "), Zr = n.map(
669
741
  (e) => `.${e}EnumMenuMain *::-webkit-scrollbar-corner`
670
- ).join(", "), xr = {
671
- ...Ne(),
672
- [Je]: {
673
- fontFamily: `${B} !important`,
742
+ ).join(", "), tt = {
743
+ ...io(),
744
+ [Oo]: {
745
+ fontFamily: `${N} !important`,
674
746
  fontSize: "var(--owp-tree-grid-cell-font-size, 13px)",
675
747
  fontWeight: "normal",
676
748
  lineHeight: "16px"
677
749
  },
678
- [Ze]: {
750
+ [Io]: {
679
751
  color: "var(--owp-tree-grid-body-color, #111112) !important"
680
752
  },
681
- [eo]: {
753
+ [mo]: {
682
754
  color: "var(--owp-tree-grid-body-color, #111112) !important"
683
755
  },
684
- [oo]: p(
756
+ [ko]: p(
685
757
  "--owp-tree-grid-body-background-color",
686
758
  "#FFFFFF"
687
759
  ),
688
- [ro]: {
689
- borderTopColor: `${R} !important`
760
+ [vo]: {
761
+ borderTopColor: `${C} !important`
690
762
  },
691
- [We]: {
692
- backgroundImage: `${he} !important`,
763
+ [Ro]: {
764
+ backgroundImage: `${oo} !important`,
693
765
  backgroundPosition: "center center !important",
694
766
  backgroundRepeat: "no-repeat !important",
695
767
  backgroundSize: "17px 17px !important"
696
768
  },
697
- [ze]: {
698
- backgroundImage: `${xe} !important`,
769
+ [Co]: {
770
+ backgroundImage: `${ro} !important`,
699
771
  backgroundPosition: "center center !important",
700
772
  backgroundRepeat: "no-repeat !important",
701
773
  backgroundSize: "17px 17px !important"
702
774
  },
703
- [je]: {
704
- backgroundImage: `${y} !important`,
775
+ [_o]: {
776
+ backgroundImage: `${Q} !important`,
705
777
  backgroundPosition: "center center !important",
706
778
  backgroundRepeat: "no-repeat !important",
707
779
  backgroundSize: "17px 17px !important"
708
780
  },
709
- [Ue]: {
710
- backgroundImage: `${W} !important`,
781
+ [Eo]: {
782
+ backgroundImage: `${Z} !important`,
711
783
  backgroundPosition: "center center !important",
712
784
  backgroundRepeat: "no-repeat !important",
713
785
  backgroundSize: "17px 17px !important"
714
786
  },
715
- [Xe]: {
716
- backgroundImage: `${W} !important`
787
+ [$o]: {
788
+ backgroundImage: `${Z} !important`
717
789
  },
718
- [Ye]: {
719
- backgroundImage: `${Ae} !important`
790
+ [bo]: {
791
+ backgroundImage: `${to} !important`
720
792
  },
721
- [Ke]: {
722
- backgroundImage: `${y} !important`
793
+ [wo]: {
794
+ backgroundImage: `${Q} !important`
723
795
  },
724
- [Qe]: {
725
- WebkitMaskImage: `${z} !important`,
796
+ [go]: {
797
+ WebkitMaskImage: `${q} !important`,
726
798
  WebkitMaskPosition: "center center !important",
727
799
  WebkitMaskRepeat: "no-repeat !important",
728
800
  WebkitMaskSize: "17px 17px !important",
729
- backgroundColor: `${Be} !important`,
801
+ backgroundColor: `${lo} !important`,
730
802
  backgroundImage: "none !important",
731
803
  height: "17px !important",
732
- maskImage: `${z} !important`,
804
+ maskImage: `${q} !important`,
733
805
  maskPosition: "center center !important",
734
806
  maskRepeat: "no-repeat !important",
735
807
  maskSize: "17px 17px !important",
736
808
  opacity: 0.72,
737
809
  width: "17px !important"
738
810
  },
739
- [qe]: {
740
- WebkitMaskImage: `${j} !important`,
811
+ [Do]: {
812
+ WebkitMaskImage: `${J} !important`,
741
813
  WebkitMaskPosition: "center center !important",
742
814
  WebkitMaskRepeat: "no-repeat !important",
743
815
  WebkitMaskSize: "17px 17px !important",
744
- backgroundColor: `${Me} !important`,
816
+ backgroundColor: `${ao} !important`,
745
817
  backgroundImage: "none !important",
746
818
  height: "17px !important",
747
- maskImage: `${j} !important`,
819
+ maskImage: `${J} !important`,
748
820
  maskPosition: "center center !important",
749
821
  maskRepeat: "no-repeat !important",
750
822
  maskSize: "17px 17px !important",
751
823
  opacity: 1,
752
824
  width: "17px !important"
753
825
  },
754
- [ar]: {
755
- backgroundImage: `${x} !important`
826
+ [Gr]: {
827
+ backgroundImage: `${M} !important`
756
828
  },
757
- [cr]: {
758
- backgroundImage: `${sr} !important`
829
+ [xr]: {
830
+ backgroundImage: `${fr} !important`
759
831
  },
760
- [nr]: {
761
- backgroundImage: `${x} !important`
832
+ [Fr]: {
833
+ backgroundImage: `${M} !important`
762
834
  },
763
- [pr]: {
835
+ [hr]: {
764
836
  backgroundImage: "none !important",
765
837
  position: "relative"
766
838
  },
767
- [ur]: {
768
- WebkitMaskImage: `${U} !important`,
839
+ [Lr]: {
840
+ WebkitMaskImage: `${ee} !important`,
769
841
  WebkitMaskPosition: "center center !important",
770
842
  WebkitMaskRepeat: "no-repeat !important",
771
843
  WebkitMaskSize: "16px 16px !important",
@@ -774,7 +846,7 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
774
846
  content: '""',
775
847
  display: "block",
776
848
  height: "16px",
777
- maskImage: `${U} !important`,
849
+ maskImage: `${ee} !important`,
778
850
  maskPosition: "center center !important",
779
851
  maskRepeat: "no-repeat !important",
780
852
  maskSize: "16px 16px !important",
@@ -782,34 +854,34 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
782
854
  position: "absolute",
783
855
  width: "16px"
784
856
  },
785
- [Sr]: {
857
+ [Mr]: {
786
858
  backgroundColor: "var(--owp-tree-grid-body-color, #111112) !important"
787
859
  },
788
- [Cr]: {
789
- backgroundColor: `${M} !important`
860
+ [Hr]: {
861
+ backgroundColor: `${V} !important`
790
862
  },
791
- [Rr]: {
863
+ [Nr]: {
792
864
  left: "4px",
793
865
  top: "50%",
794
866
  transform: "translateY(-50%)"
795
867
  },
796
- [br]: {
868
+ [Vr]: {
797
869
  right: "4px",
798
870
  top: "50%",
799
871
  transform: "translateY(-50%)"
800
872
  },
801
- [Er]: {
873
+ [yr]: {
802
874
  left: "50%",
803
875
  top: "0",
804
876
  transform: "translateX(-50%)"
805
877
  },
806
- [$r]: {
878
+ [Pr]: {
807
879
  bottom: "0",
808
880
  left: "50%",
809
881
  transform: "translateX(-50%)"
810
882
  },
811
- [_r]: {
812
- backgroundImage: h,
883
+ [Wr]: {
884
+ backgroundImage: L,
813
885
  backgroundPosition: "center calc(50% - 1px)",
814
886
  backgroundRepeat: "no-repeat",
815
887
  backgroundSize: "16px 16px",
@@ -820,61 +892,61 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
820
892
  verticalAlign: "middle",
821
893
  width: "16px"
822
894
  },
823
- [gr]: {
824
- WebkitMaskImage: h,
895
+ [zr]: {
896
+ WebkitMaskImage: L,
825
897
  WebkitMaskPosition: "center calc(50% - 1px)",
826
898
  WebkitMaskRepeat: "no-repeat",
827
899
  WebkitMaskSize: "16px 16px",
828
900
  backgroundColor: "var(--owp-tree-grid-changed-text-color, #ffffff) !important",
829
901
  backgroundImage: "none !important",
830
- maskImage: h,
902
+ maskImage: L,
831
903
  maskPosition: "center calc(50% - 1px)",
832
904
  maskRepeat: "no-repeat",
833
905
  maskSize: "16px 16px"
834
906
  },
835
- [wr]: {
836
- backgroundColor: `${M} !important`
907
+ [jr]: {
908
+ backgroundColor: `${V} !important`
837
909
  },
838
- [mr]: {
910
+ [Ur]: {
839
911
  scrollbarColor: "rgba(0, 0, 0, 0.32) transparent",
840
912
  scrollbarWidth: "thin"
841
913
  },
842
- [Dr]: {
914
+ [Xr]: {
843
915
  height: "8px",
844
916
  width: "8px"
845
917
  },
846
- [kr]: {
918
+ [Kr]: {
847
919
  backgroundClip: "padding-box",
848
920
  backgroundColor: "rgba(0, 0, 0, 0.32)",
849
921
  border: "2px solid transparent",
850
922
  borderRadius: "8px"
851
923
  },
852
- [Ir]: {
924
+ [Yr]: {
853
925
  backgroundColor: "rgba(0, 0, 0, 0.44)"
854
926
  },
855
- [vr]: {
927
+ [Qr]: {
856
928
  backgroundColor: "transparent"
857
929
  },
858
- [Or]: {
930
+ [Zr]: {
859
931
  backgroundColor: "transparent"
860
932
  },
861
- [A]: {
933
+ [H]: {
862
934
  position: "relative"
863
935
  },
864
- [to]: {
936
+ [To]: {
865
937
  borderBottom: "0 !important",
866
- borderRadius: `${s} ${s} 0 0`,
867
- clipPath: `inset(0 round ${s} ${s} 0 0)`,
938
+ borderRadius: `${d} ${d} 0 0`,
939
+ clipPath: `inset(0 round ${d} ${d} 0 0)`,
868
940
  overflow: "hidden"
869
941
  },
870
- [lo]: {
871
- border: `${u} solid ${R}`,
942
+ [Go]: {
943
+ border: `${u} solid ${C}`,
872
944
  borderBottom: 0,
873
- borderRadius: `${s} ${s} 0 0`,
945
+ borderRadius: `${d} ${d} 0 0`,
874
946
  boxSizing: "border-box",
875
947
  content: '""',
876
948
  display: "block",
877
- height: s,
949
+ height: d,
878
950
  left: 0,
879
951
  pointerEvents: "none",
880
952
  position: "absolute",
@@ -882,43 +954,43 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
882
954
  top: 0,
883
955
  zIndex: 2
884
956
  },
885
- [ao]: {
886
- borderLeft: `${u} solid ${R}`,
887
- borderRight: `${u} solid ${R}`,
957
+ [xo]: {
958
+ borderLeft: `${u} solid ${C}`,
959
+ borderRight: `${u} solid ${C}`,
888
960
  boxSizing: "border-box",
889
961
  content: '""',
890
962
  display: "block",
891
- height: no,
963
+ height: fo,
892
964
  left: 0,
893
965
  pointerEvents: "none",
894
966
  position: "absolute",
895
967
  right: 0,
896
- top: co,
968
+ top: Fo,
897
969
  zIndex: 2
898
970
  },
899
- [so]: {
900
- borderTop: `${u} solid ${R} !important`
971
+ [Bo]: {
972
+ borderTop: `${u} solid ${C} !important`
901
973
  },
902
- [io]: {
903
- boxShadow: `inset -${u} 0 0 ${R}`
974
+ [Ao]: {
975
+ boxShadow: `inset -${u} 0 0 ${C}`
904
976
  },
905
- [po]: {
906
- boxShadow: `inset -${u} 0 0 ${R}`
977
+ [ho]: {
978
+ boxShadow: `inset -${u} 0 0 ${C}`
907
979
  },
908
- [uo]: {
980
+ [Lo]: {
909
981
  borderTopColor: "transparent !important",
910
982
  overflow: "visible",
911
983
  position: "relative"
912
984
  },
913
- [So]: {
914
- border: `${u} solid ${R}`,
915
- borderBottomLeftRadius: s,
916
- borderBottomRightRadius: s,
985
+ [Mo]: {
986
+ border: `${u} solid ${C}`,
987
+ borderBottomLeftRadius: d,
988
+ borderBottomRightRadius: d,
917
989
  borderTop: 0,
918
990
  boxSizing: "border-box",
919
991
  content: '""',
920
992
  display: "block",
921
- height: s,
993
+ height: d,
922
994
  left: 0,
923
995
  pointerEvents: "none",
924
996
  position: "absolute",
@@ -927,14 +999,14 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
927
999
  transform: `translateY(calc(-100% - ${u}))`,
928
1000
  zIndex: 2
929
1001
  },
930
- [Co]: {
931
- backgroundImage: `radial-gradient(circle at right top, transparent calc(${s} - 1px), var(--owp-tree-grid-toolbar-row-background-color, #FFFFFF) ${s}), radial-gradient(circle at left top, transparent calc(${s} - 1px), var(--owp-tree-grid-toolbar-row-background-color, #FFFFFF) ${s})`,
1002
+ [Ho]: {
1003
+ backgroundImage: `radial-gradient(circle at right top, transparent calc(${d} - 1px), var(--owp-tree-grid-toolbar-row-background-color, #FFFFFF) ${d}), radial-gradient(circle at left top, transparent calc(${d} - 1px), var(--owp-tree-grid-toolbar-row-background-color, #FFFFFF) ${d})`,
932
1004
  backgroundPosition: "left top, right top",
933
1005
  backgroundRepeat: "no-repeat",
934
- backgroundSize: `${s} ${s}, ${s} ${s}`,
1006
+ backgroundSize: `${d} ${d}, ${d} ${d}`,
935
1007
  content: '""',
936
1008
  display: "block",
937
- height: s,
1009
+ height: d,
938
1010
  left: 0,
939
1011
  pointerEvents: "none",
940
1012
  position: "absolute",
@@ -943,50 +1015,53 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
943
1015
  transform: `translateY(calc(-100% - ${u}))`,
944
1016
  zIndex: 1
945
1017
  },
946
- [Ro]: g(
1018
+ [No]: x(
947
1019
  "--owp-tree-grid-body-fill-background-color"
948
1020
  ),
949
- [bo]: g(
1021
+ [Vo]: x(
950
1022
  "--owp-tree-grid-row-solid-background-color"
951
1023
  ),
952
- [Eo]: g(
1024
+ [yo]: x(
953
1025
  "--owp-tree-grid-toolbar-row-background-color"
954
1026
  ),
955
- [$o]: p(
1027
+ [ne]: p(
956
1028
  "--owp-tree-grid-row-background-color",
957
1029
  "#FFFFFF"
958
1030
  ),
959
- [_o]: p(
1031
+ [ce]: p(
960
1032
  "--owp-tree-grid-row-background-color",
961
1033
  "#FFFFFE"
962
1034
  ),
963
- [Q]: {
1035
+ [Po]: {
1036
+ transition: Y
1037
+ },
1038
+ [pe]: {
964
1039
  boxShadow: "none !important",
965
1040
  outline: "none",
966
1041
  position: "relative",
967
1042
  zIndex: 3
968
1043
  },
969
- [yo]: {
970
- border: `${ie} solid ${pe}`,
1044
+ [pr]: {
1045
+ border: `${ke} solid ${ve}`,
971
1046
  boxSizing: "border-box",
972
1047
  content: '""',
973
1048
  display: "block",
974
- inset: H,
1049
+ inset: y,
975
1050
  pointerEvents: "none",
976
1051
  position: "absolute",
977
1052
  zIndex: 4
978
1053
  },
979
- [Wo]: {
980
- inset: `calc(${H} + ${k})`
1054
+ [Sr]: {
1055
+ inset: `calc(${y} + ${m})`
981
1056
  },
982
- [q]: {
1057
+ [Se]: {
983
1058
  position: "relative"
984
1059
  },
985
- [zo]: {
1060
+ [ur]: {
986
1061
  backgroundColor: "transparent",
987
- borderBottom: `${k} solid ${O}`,
988
- borderTop: `${k} solid ${O}`,
989
- bottom: v,
1062
+ borderBottom: `${m} solid ${G}`,
1063
+ borderTop: `${m} solid ${G}`,
1064
+ bottom: T,
990
1065
  boxSizing: "border-box",
991
1066
  content: '""',
992
1067
  display: "none",
@@ -997,182 +1072,198 @@ const r = "owp-tree-grid-theme", w = "owp-tree-grid-table-radius", le = "owp-tre
997
1072
  pointerEvents: "none",
998
1073
  position: "absolute",
999
1074
  right: "-1px",
1000
- top: v,
1075
+ top: T,
1001
1076
  zIndex: 2
1002
1077
  },
1003
- [jo]: {
1078
+ [Rr]: {
1004
1079
  borderBottomLeftRadius: "2px",
1005
- borderLeft: `${k} solid ${O}`,
1080
+ borderLeft: `${m} solid ${G}`,
1006
1081
  borderTopLeftRadius: "2px",
1007
- left: v
1082
+ left: T
1008
1083
  },
1009
- [Uo]: {
1084
+ [Cr]: {
1010
1085
  borderBottomRightRadius: "2px",
1011
- borderRight: `${k} solid ${O}`,
1086
+ borderRight: `${m} solid ${G}`,
1012
1087
  borderTopRightRadius: "2px",
1013
- right: v
1088
+ right: T
1014
1089
  },
1015
- [go]: {
1090
+ [Wo]: {
1016
1091
  color: "var(--owp-tree-grid-header-color, #ffffff) !important",
1017
- fontFamily: `${B} !important`,
1092
+ fontFamily: `${N} !important`,
1018
1093
  fontSize: "var(--owp-tree-grid-header-font-size, 14px) !important",
1019
1094
  fontWeight: "var(--owp-tree-grid-header-font-weight, normal) !important",
1020
1095
  lineHeight: "16px"
1021
1096
  },
1022
- [wo]: {
1097
+ [zo]: {
1023
1098
  backgroundColor: "var(--owp-tree-grid-header-background-color, #586980) !important",
1024
1099
  color: "var(--owp-tree-grid-header-color, #ffffff) !important"
1025
1100
  },
1026
- [mo]: p(
1101
+ [jo]: p(
1027
1102
  "--owp-tree-grid-hover-row-background-color",
1028
- "#F0F0FF"
1103
+ E
1029
1104
  ),
1030
- [Do]: p(
1105
+ [Uo]: p(
1031
1106
  "--owp-tree-grid-hover-row-background-color",
1032
- "#EEE"
1107
+ E
1033
1108
  ),
1034
- [ko]: {
1035
- borderTopColor: "var(--owp-tree-grid-hover-row-border-color) !important",
1036
- borderBottomColor: "var(--owp-tree-grid-hover-row-border-color) !important"
1037
- },
1038
- [Io]: p(
1109
+ [Xo]: k(
1110
+ W
1111
+ ),
1112
+ [Ko]: k(
1113
+ W
1114
+ ),
1115
+ [se]: p(
1039
1116
  "--owp-tree-grid-selected-cell-background-color",
1040
1117
  "#FFFFA6"
1041
1118
  ),
1042
- [vo]: p(
1119
+ [de]: p(
1043
1120
  "--owp-tree-grid-selected-cell-background-color",
1044
1121
  "#FFFFA6"
1045
1122
  ),
1046
- [Oo]: p(
1123
+ [ie]: p(
1047
1124
  "--owp-tree-grid-selected-row-background-color",
1048
1125
  "#EEE"
1049
1126
  ),
1050
- [fo]: p(
1127
+ [Yo]: {
1128
+ transition: Y
1129
+ },
1130
+ [Qo]: p(
1051
1131
  "--owp-tree-grid-focused-row-background-color",
1052
1132
  "#E6E6E6"
1053
1133
  ),
1054
- [Fo]: p(
1134
+ [Zo]: p(
1055
1135
  "--owp-tree-grid-focused-row-background-color",
1056
1136
  "#EEE"
1057
1137
  ),
1058
- [Go]: {
1138
+ [qo]: {
1059
1139
  borderColor: "var(--owp-tree-grid-focused-row-border-color) !important"
1060
1140
  },
1061
- [To]: p(
1141
+ [Jo]: p(
1062
1142
  "--owp-tree-grid-hover-cell-background-color",
1063
- "#BFDDF2"
1143
+ E
1064
1144
  ),
1065
- [ho]: {
1066
- backgroundColor: "var(--owp-tree-grid-hover-cell-background-color) !important",
1067
- borderColor: "var(--owp-tree-grid-hover-cell-border-color) !important"
1145
+ [er]: {
1146
+ ...k(_),
1147
+ backgroundColor: `${Te} !important`
1068
1148
  },
1069
- [xo]: p(
1149
+ [or]: k(
1150
+ _
1151
+ ),
1152
+ [rr]: p(
1070
1153
  "--owp-tree-grid-hover-cell-background-color",
1071
- "#F0F0F0"
1154
+ E
1072
1155
  ),
1073
- [Ao]: p(
1156
+ [tr]: p(
1074
1157
  "--owp-tree-grid-hover-cell-background-color",
1075
- "#F0F0F0"
1158
+ E
1076
1159
  ),
1077
- [Bo]: g(
1078
- "--owp-tree-grid-hover-cell-background-color"
1160
+ [lr]: p(
1161
+ "--owp-tree-grid-hover-cell-background-color",
1162
+ E
1079
1163
  ),
1080
- [Mo]: g(
1081
- "--owp-tree-grid-hover-cell-background-color"
1164
+ [ar]: p(
1165
+ "--owp-tree-grid-hover-cell-background-color",
1166
+ E
1082
1167
  ),
1083
- [Yo]: {
1084
- borderColor: "var(--owp-tree-grid-hover-cell-border-color) !important"
1168
+ [Er]: {
1169
+ borderColor: `${_} !important`
1085
1170
  },
1086
- [Ko]: {
1087
- borderColor: "var(--owp-tree-grid-hover-cell-border-color) !important"
1171
+ [$r]: {
1172
+ borderColor: `${_} !important`
1088
1173
  },
1089
- [Qo]: {
1090
- borderTopColor: "var(--owp-tree-grid-hover-cell-border-color) !important",
1091
- borderBottomColor: "var(--owp-tree-grid-hover-cell-border-color) !important",
1092
- outlineColor: "var(--owp-tree-grid-hover-cell-border-color) !important"
1174
+ [br]: {
1175
+ borderTopColor: `${_} !important`,
1176
+ borderBottomColor: `${_} !important`,
1177
+ outlineColor: `${_} !important`
1093
1178
  },
1094
- [Ho]: p(
1179
+ [wr]: so(
1180
+ _
1181
+ ),
1182
+ [nr]: p(
1095
1183
  "--owp-tree-grid-focused-cell-background-color",
1096
1184
  "#FFFFFE"
1097
1185
  ),
1098
- [Lo]: {
1186
+ [cr]: {
1099
1187
  backgroundColor: "var(--owp-tree-grid-focused-cell-rect-background-color) !important"
1100
1188
  },
1101
- [No]: {
1102
- borderColor: "var(--owp-tree-grid-focused-cell-border-color) !important"
1189
+ [sr]: {
1190
+ borderColor: "var(--owp-tree-grid-focused-cell-border-color) !important",
1191
+ boxSizing: P
1103
1192
  },
1104
- [Vo]: {
1193
+ [dr]: {
1105
1194
  backgroundColor: "var(--owp-tree-grid-focused-cell-border-color) !important"
1106
1195
  },
1107
- [Po]: {
1196
+ [ir]: {
1108
1197
  borderColor: "var(--owp-tree-grid-focused-cell-border-color) !important"
1109
1198
  },
1110
- [Xo]: g(
1199
+ [_r]: x(
1111
1200
  "--owp-tree-grid-focused-cell-background-color"
1112
1201
  ),
1113
- [qo]: p(
1202
+ [gr]: p(
1114
1203
  "--owp-tree-grid-changed-background-color",
1115
1204
  "#EEE"
1116
1205
  ),
1117
- [Jo]: {
1206
+ [Dr]: {
1118
1207
  color: "var(--owp-tree-grid-changed-text-color, #ffffff) !important",
1119
- fontWeight: rr
1208
+ fontWeight: kr
1120
1209
  },
1121
- [Zo]: {
1210
+ [Or]: {
1122
1211
  color: "var(--owp-tree-grid-body-color, #111112) !important",
1123
1212
  fontWeight: "normal !important"
1124
1213
  },
1125
- [er]: {
1214
+ [Ir]: {
1126
1215
  color: "var(--owp-tree-grid-body-color, #111112) !important",
1127
1216
  fontWeight: "normal !important"
1128
1217
  },
1129
- [or]: {
1218
+ [mr]: {
1130
1219
  color: "transparent !important"
1131
1220
  },
1132
- [tr]: {
1133
- borderColor: "var(--owp-tree-grid-editing-cell-border-color) !important"
1221
+ [vr]: {
1222
+ borderColor: "var(--owp-tree-grid-editing-cell-border-color) !important",
1223
+ boxSizing: P
1134
1224
  },
1135
- [lr]: {
1225
+ [Tr]: {
1136
1226
  backgroundColor: "var(--owp-tree-grid-editing-cell-border-color) !important"
1137
1227
  }
1138
- }, f = /* @__PURE__ */ t((e) => typeof e == "number" ? `${e}px` : e, "toTreeGridCssValue"), fr = /* @__PURE__ */ t((e, o, a) => {
1139
- a && (e[o] = a);
1140
- }, "setOptionalTreeGridCssVariable"), Ar = /* @__PURE__ */ t(({
1228
+ }, F = /* @__PURE__ */ l((e) => typeof e == "number" ? `${e}px` : e, "toTreeGridCssValue"), qr = /* @__PURE__ */ l((e, o, t) => {
1229
+ t && (e[o] = t);
1230
+ }, "setOptionalTreeGridCssVariable"), lt = /* @__PURE__ */ l(({
1141
1231
  width: e,
1142
1232
  height: o,
1143
- treeGridTheme: a,
1144
- gridThemeConfig: n,
1145
- containerStyle: d,
1233
+ treeGridTheme: t,
1234
+ gridThemeConfig: c,
1235
+ containerStyle: s,
1146
1236
  tableBorderRadius: S
1147
1237
  }) => {
1148
- const C = {
1238
+ const R = {
1149
1239
  height: o,
1150
- "--owp-tree-grid-added-row-box-color": K,
1240
+ "--owp-tree-grid-added-row-box-color": te,
1151
1241
  width: e
1152
1242
  };
1153
- for (const { cssVariableName: D, getValue: $ } of He)
1154
- fr(C, D, $(n));
1155
- for (const { cssVariableName: D, getValue: $ } of Le)
1156
- C[D] = $(a);
1157
- return S !== void 0 && (C["--owp-tree-grid-table-border-radius"] = f(S)), {
1158
- ...C,
1159
- ...d
1243
+ for (const { cssVariableName: I, getValue: g } of no)
1244
+ qr(R, I, g(c));
1245
+ for (const { cssVariableName: I, getValue: g } of co)
1246
+ R[I] = g(t);
1247
+ return S !== void 0 && (R["--owp-tree-grid-table-border-radius"] = F(S)), {
1248
+ ...R,
1249
+ ...s
1160
1250
  };
1161
1251
  }, "createTreeGridThemeContainerStyle");
1162
1252
  export {
1163
- F as TREE_GRID_ADDED_ROW_BOX_CELL_CLASS,
1164
- de as TREE_GRID_ADDED_ROW_BOX_END_CLASS,
1165
- se as TREE_GRID_ADDED_ROW_BOX_START_CLASS,
1166
- Y as TREE_GRID_ERROR_CELL_CLASS,
1167
- le as TREE_GRID_PANEL_CHECKBOX_SELECT_CLASS,
1168
- X as TREE_GRID_SELECTED_CHANGED_CELL_CLASS,
1169
- ae as TREE_GRID_SELECT_ALL_CHECKED_CLASS,
1170
- ce as TREE_GRID_SELECT_ALL_INDETERMINATE_CLASS,
1171
- ne as TREE_GRID_SELECT_ALL_UNCHECKED_CLASS,
1172
- c as TREE_GRID_STYLE_PREFIXES,
1173
- w as TREE_GRID_THEME_TABLE_RADIUS_CLASS,
1253
+ B as TREE_GRID_ADDED_ROW_BOX_CELL_CLASS,
1254
+ Ie as TREE_GRID_ADDED_ROW_BOX_END_CLASS,
1255
+ Oe as TREE_GRID_ADDED_ROW_BOX_START_CLASS,
1256
+ re as TREE_GRID_ERROR_CELL_CLASS,
1257
+ me as TREE_GRID_HOVER_CELL_BORDER_COLOR_CSS_VARIABLE,
1258
+ be as TREE_GRID_PANEL_CHECKBOX_SELECT_CLASS,
1259
+ oe as TREE_GRID_SELECTED_CHANGED_CELL_CLASS,
1260
+ we as TREE_GRID_SELECT_ALL_CHECKED_CLASS,
1261
+ ge as TREE_GRID_SELECT_ALL_INDETERMINATE_CLASS,
1262
+ De as TREE_GRID_SELECT_ALL_UNCHECKED_CLASS,
1263
+ n as TREE_GRID_STYLE_PREFIXES,
1264
+ O as TREE_GRID_THEME_TABLE_RADIUS_CLASS,
1174
1265
  r as TREE_GRID_THEME_WRAPPER_CLASS,
1175
- Ar as createTreeGridThemeContainerStyle,
1176
- xr as treeGridThemeStyles
1266
+ lt as createTreeGridThemeContainerStyle,
1267
+ tt as treeGridThemeStyles
1177
1268
  };
1178
1269
  //# sourceMappingURL=treeGridTheme.js.map