@owp/core 2.5.52 → 2.5.54

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