impact-nova 2.5.13 → 2.5.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/dist/components/data/data-table/build-column-tree-from-grid.d.ts +0 -1
  2. package/dist/components/data/data-table/build-column-tree-from-grid.js +50 -55
  3. package/dist/components/data/data-table/data-table-column-apply.d.ts +0 -2
  4. package/dist/components/data/data-table/data-table-column-apply.js +73 -84
  5. package/dist/components/data/data-table/data-table-column-list.js +64 -94
  6. package/dist/components/data/data-table/data-table-column-tree-cache.d.ts +6 -12
  7. package/dist/components/data/data-table/data-table-column-tree-cache.js +131 -250
  8. package/dist/components/data/data-table/patch-column-tree-indicators-from-grid.d.ts +0 -5
  9. package/dist/components/data/data-table/patch-column-tree-indicators-from-grid.js +11 -28
  10. package/dist/components/data/data-table/use-data-table-column-list-sync.d.ts +0 -10
  11. package/dist/components/data/data-table/use-data-table-column-list-sync.js +196 -250
  12. package/dist/components/data/expandable-list-item/expandable-list-item-attributes.js +3 -2
  13. package/dist/components/data/expandable-list-item/expandable-list-item-metrics.js +3 -2
  14. package/dist/components/data/nested-list/components/NestedListContent.d.ts +2 -10
  15. package/dist/components/data/nested-list/components/NestedListContent.js +138 -253
  16. package/dist/components/data/nested-list/components/SortableItem.d.ts +1 -2
  17. package/dist/components/data/nested-list/components/SortableItem.js +60 -62
  18. package/dist/components/data/nested-list/hooks/useNestedListDragDrop.d.ts +20 -10
  19. package/dist/components/data/nested-list/hooks/useNestedListDragDrop.js +233 -44
  20. package/dist/components/data/nested-list/nested-list-constants.d.ts +1 -4
  21. package/dist/components/data/nested-list/nested-list-constants.js +4 -10
  22. package/dist/components/data/nested-list/nested-list.js +336 -322
  23. package/dist/components/data/nested-list/nested-list.types.d.ts +0 -17
  24. package/dist/components/data-display/calendar/calendar-apply-validation.d.ts +2 -0
  25. package/dist/components/data-display/calendar/calendar-apply-validation.js +64 -67
  26. package/dist/components/data-display/calendar/calendar-available-view.d.ts +27 -0
  27. package/dist/components/data-display/calendar/calendar-available-view.js +85 -0
  28. package/dist/components/data-display/calendar/calendar-config.js +1 -1
  29. package/dist/components/data-display/calendar/calendar-day-picker-components.d.ts +4 -2
  30. package/dist/components/data-display/calendar/calendar-day-picker-components.js +234 -164
  31. package/dist/components/data-display/calendar/calendar-day-picker-view.js +77 -76
  32. package/dist/components/data-display/calendar/calendar-fiscal-day-cell.d.ts +9 -0
  33. package/dist/components/data-display/calendar/calendar-fiscal-day-cell.js +45 -0
  34. package/dist/components/data-display/calendar/calendar-fiscal-period-nav.d.ts +6 -0
  35. package/dist/components/data-display/calendar/calendar-fiscal-period-nav.js +34 -18
  36. package/dist/components/data-display/calendar/calendar-footer.js +21 -21
  37. package/dist/components/data-display/calendar/calendar-injected-week-row.d.ts +5 -0
  38. package/dist/components/data-display/calendar/calendar-injected-week-row.js +92 -0
  39. package/dist/components/data-display/calendar/calendar-leading-week.utils.d.ts +16 -0
  40. package/dist/components/data-display/calendar/calendar-leading-week.utils.js +51 -0
  41. package/dist/components/data-display/calendar/calendar-month-picker-panel.js +50 -49
  42. package/dist/components/data-display/calendar/calendar-month-utils.d.ts +5 -0
  43. package/dist/components/data-display/calendar/calendar-month-utils.js +85 -64
  44. package/dist/components/data-display/calendar/calendar-orphan-week.d.ts +23 -0
  45. package/dist/components/data-display/calendar/calendar-padding-week.utils.d.ts +3 -1
  46. package/dist/components/data-display/calendar/calendar-padding-week.utils.js +7 -5
  47. package/dist/components/data-display/calendar/calendar-period-cell.js +45 -46
  48. package/dist/components/data-display/calendar/calendar-quarter-panes.js +33 -31
  49. package/dist/components/data-display/calendar/calendar-selection-appearance.d.ts +10 -0
  50. package/dist/components/data-display/calendar/calendar-selection-appearance.js +53 -39
  51. package/dist/components/data-display/calendar/calendar-selection.d.ts +25 -0
  52. package/dist/components/data-display/calendar/calendar-selection.js +52 -23
  53. package/dist/components/data-display/calendar/calendar-week-number-cell.d.ts +2 -1
  54. package/dist/components/data-display/calendar/calendar-week-number-cell.js +59 -45
  55. package/dist/components/data-display/calendar/calendar-week-utils.d.ts +15 -4
  56. package/dist/components/data-display/calendar/calendar-week-utils.js +59 -50
  57. package/dist/components/data-display/calendar/calendar-year-panes.d.ts +3 -0
  58. package/dist/components/data-display/calendar/calendar-year-panes.js +53 -49
  59. package/dist/components/data-display/calendar/calendar.js +146 -143
  60. package/dist/components/data-display/calendar/calendar.types.d.ts +5 -0
  61. package/dist/components/data-display/calendar/use-calendar-day-picker-config.d.ts +2 -1
  62. package/dist/components/data-display/calendar/use-calendar-day-picker-config.js +79 -74
  63. package/dist/components/data-display/calendar/use-calendar-state.d.ts +3 -1
  64. package/dist/components/data-display/calendar/use-calendar-state.js +394 -314
  65. package/dist/components/feedback/tooltip/tab-tooltip-render.js +3 -2
  66. package/dist/components/flows/command-palette/shortcut-settings.js +10 -10
  67. package/dist/components/flows/filter-panel/filter-panel.js +4 -4
  68. package/dist/components/forms/date-picker/date-picker.js +60 -58
  69. package/dist/components/forms/date-picker/date-picker.types.d.ts +5 -0
  70. package/dist/components/forms/date-picker/date-range-picker.js +66 -64
  71. package/dist/components/forms/date-picker/fiscal-pass-through.d.ts +1 -0
  72. package/dist/components/forms/date-picker/fiscal-pass-through.js +3 -2
  73. package/dist/components/forms/date-picker/fiscal-picker-fixtures.d.ts +17 -0
  74. package/dist/components/forms/date-picker/month-picker.js +61 -59
  75. package/dist/components/forms/date-picker/month-range-picker.js +63 -61
  76. package/dist/components/forms/date-picker/multi-date-picker.js +51 -49
  77. package/dist/components/forms/date-picker/multi-month-picker.js +49 -47
  78. package/dist/components/forms/date-picker/multi-quarter-picker.js +51 -47
  79. package/dist/components/forms/date-picker/multi-week-picker.js +53 -51
  80. package/dist/components/forms/date-picker/multi-year-picker.js +53 -49
  81. package/dist/components/forms/date-picker/quarter-picker.js +51 -47
  82. package/dist/components/forms/date-picker/quarter-range-picker.js +50 -46
  83. package/dist/components/forms/date-picker/week-picker.js +130 -126
  84. package/dist/components/forms/date-picker/week-range-picker.js +159 -155
  85. package/dist/components/forms/date-picker/year-picker.js +52 -48
  86. package/dist/components/forms/date-picker/year-range-picker.js +52 -48
  87. package/dist/components/forms/select/components/SelectTriggerValue.js +3 -2
  88. package/dist/components/forms/select/components/Submenu.js +3 -2
  89. package/dist/form-react/Fields/DateInputField.js +51 -50
  90. package/dist/form-react/Fields/DateRangeField.js +14 -13
  91. package/dist/form-react/Fields/MonthRangeField.js +29 -28
  92. package/dist/form-react/Fields/MultiMonthPickerField.js +13 -12
  93. package/dist/form-react/Fields/MultiWeekPickerField.js +35 -27
  94. package/dist/form-react/Fields/MultiYearPickerField.d.ts +8 -0
  95. package/dist/form-react/Fields/MultiYearPickerField.js +57 -0
  96. package/dist/form-react/Fields/WeekRangePicker.js +33 -32
  97. package/dist/form-react/Fields/YearPickerField.d.ts +8 -0
  98. package/dist/form-react/Fields/YearPickerField.js +57 -0
  99. package/dist/form-react/Fields/YearRangePickerField.d.ts +8 -0
  100. package/dist/form-react/Fields/YearRangePickerField.js +57 -0
  101. package/dist/form-react/registry/defaultFieldRegistrations.d.ts +1 -1
  102. package/dist/form-react/registry/defaultFieldRegistrations.js +16 -13
  103. package/dist/form-react/types/fields.types.d.ts +69 -1
  104. package/dist/form-react/types/fieldsOutput.types.d.ts +8 -2
  105. package/dist/form-react/utils/fieldDefaults.utils.js +1 -1
  106. package/dist/impact-nova-components.css +13 -6
  107. package/dist/impact-nova.css +1 -1
  108. package/dist/lib/fiscal-calendar/index.d.ts +2 -2
  109. package/dist/lib/fiscal-calendar/index.js +26 -28
  110. package/dist/lib/fiscal-calendar/types.d.ts +0 -7
  111. package/dist/lib/fiscal-calendar/week-selection.d.ts +3 -4
  112. package/dist/lib/fiscal-calendar/week-selection.js +52 -79
  113. package/dist/llms/rules/ag-grid.js +1 -1
  114. package/dist/llms/rules/installation.js +1 -1
  115. package/dist/llms/rules/requirements.js +1 -1
  116. package/package.json +1 -1
  117. package/dist/components/data/data-table/column-picker-authority.d.ts +0 -34
  118. package/dist/components/data/data-table/column-picker-authority.js +0 -116
  119. package/dist/components/data/data-table/column-picker-drop-validation.d.ts +0 -7
  120. package/dist/components/data/data-table/column-picker-drop-validation.js +0 -37
  121. package/dist/components/data/data-table/data-table-column-list-tree-apply.d.ts +0 -10
  122. package/dist/components/data/data-table/data-table-column-list-tree-apply.js +0 -79
  123. package/dist/components/data/data-table/data-table-flat-column-virtual-rows.d.ts +0 -26
  124. package/dist/components/data/data-table/data-table-flat-column-virtual-rows.js +0 -195
  125. package/dist/components/data/data-table/data-table-picker-column-eligibility.d.ts +0 -1
  126. package/dist/components/data/data-table/data-table-picker-column-eligibility.js +0 -7
  127. package/dist/components/data/data-table/reconcile-column-tree-from-grid.d.ts +0 -12
  128. package/dist/components/data/data-table/reconcile-column-tree-from-grid.js +0 -12
  129. package/dist/components/data/nested-list/hooks/useVirtualNestedListDrag.d.ts +0 -24
  130. package/dist/components/data/nested-list/hooks/useVirtualNestedListDrag.js +0 -128
  131. package/dist/components/data/nested-list/nested-list-display-utils.d.ts +0 -11
  132. package/dist/components/data/nested-list/nested-list-display-utils.js +0 -74
  133. package/dist/components/data/nested-list/nested-list-drop-engine.d.ts +0 -31
  134. package/dist/components/data/nested-list/nested-list-drop-engine.js +0 -209
  135. package/dist/components/data/nested-list/nested-list-flat-virtual-handlers.d.ts +0 -26
  136. package/dist/components/data/nested-list/nested-list-flat-virtual-handlers.js +0 -67
  137. package/dist/components/data/nested-list/nested-list-item-tree-mutations.d.ts +0 -4
  138. package/dist/components/data/nested-list/nested-list-item-tree-mutations.js +0 -43
  139. package/dist/components/data/nested-list/nested-list-lazy-flat-rows.d.ts +0 -3
  140. package/dist/components/data/nested-list/nested-list-lazy-flat-rows.js +0 -34
  141. package/dist/components/data/nested-list/nested-list-row-estimates.d.ts +0 -9
  142. package/dist/components/data/nested-list/nested-list-row-estimates.js +0 -14
  143. package/dist/components/data/nested-list/nested-list-scroll-anchor.d.ts +0 -36
  144. package/dist/components/data/nested-list/nested-list-scroll-anchor.js +0 -47
  145. package/dist/components/data/nested-list/nested-list-virtual-drop.d.ts +0 -59
  146. package/dist/components/data/nested-list/nested-list-virtual-drop.js +0 -341
  147. package/dist/lib/hash/fnv1a128.d.ts +0 -16
  148. package/dist/lib/hash/fnv1a128.js +0 -21
@@ -1,306 +1,187 @@
1
- import { buildColumnTreeFromGrid as W } from "./build-column-tree-from-grid.js";
2
- import { computeColumnListSyncFingerprints as U } from "./data-table-column-list-sync.js";
3
- import { fingerprintGridColumnIndicators as g, normalizeColumnPinned as x } from "./data-table-column-apply.js";
4
- import { isPickerEligibleColumnId as Z } from "./data-table-picker-column-eligibility.js";
5
- import { patchColumnTreeIndicatorsFromGrid as w } from "./patch-column-tree-indicators-from-grid.js";
6
- import { patchColumnTreeVisibilityFromGrid as G } from "./patch-column-tree-visibility-from-grid.js";
7
- import { Fnv1a128Hasher as V } from "../../../lib/hash/fnv1a128.js";
8
- import { buildAuthorityFromGrid as k, fingerprintAuthority as j } from "./column-picker-authority.js";
9
- import { buildAuthorityFlatShellItems as y, isFlatLargeColumnPicker as D } from "./data-table-flat-column-virtual-rows.js";
10
- import { NESTED_LIST_ROOT_FROZEN_ID as O, NESTED_LIST_ROOT_SCROLLABLE_ID as R } from "../nested-list/nested-list-constants.js";
11
- function m(e) {
12
- const i = new V();
13
- for (const r of e) {
14
- const n = x(r.pinned) ?? "0";
15
- i.update(r.colId).update(":").update(n).update("|");
16
- }
17
- return i.digest();
18
- }
19
- function p(e) {
20
- const i = new V();
21
- for (const r of e)
22
- i.update(r.colId).update(":").update(r.hide ? "0" : "1").update("|");
23
- return i.digest();
24
- }
25
- function ut(e) {
26
- return m(e.getColumnState());
27
- }
28
- function lt(e) {
29
- return p(e.getColumnState());
30
- }
31
- const C = /* @__PURE__ */ new WeakMap(), S = {
1
+ import { buildColumnTreeFromGrid as w } from "./build-column-tree-from-grid.js";
2
+ import { computeColumnListSyncFingerprints as M } from "./data-table-column-list-sync.js";
3
+ import { fingerprintColumnTreeIndicators as _, normalizeColumnPinned as V } from "./data-table-column-apply.js";
4
+ import { patchColumnTreeIndicatorsFromGrid as z } from "./patch-column-tree-indicators-from-grid.js";
5
+ import { patchColumnTreeVisibilityFromGrid as C } from "./patch-column-tree-visibility-from-grid.js";
6
+ function d(i) {
7
+ return i.map((n) => {
8
+ const e = V(n.pinned) ?? "0";
9
+ return `${n.colId}:${e}`;
10
+ }).join("|");
11
+ }
12
+ function m(i) {
13
+ return i.map((n) => `${n.colId}:${n.hide ? "0" : "1"}`).join("|");
14
+ }
15
+ function H(i) {
16
+ return d(i.getColumnState());
17
+ }
18
+ function O(i) {
19
+ return m(i.getColumnState());
20
+ }
21
+ const p = /* @__PURE__ */ new WeakMap(), h = {
32
22
  frozenColumns: "__prewarm_frozen__",
33
23
  scrollableColumns: "__prewarm_scrollable__"
34
- }, L = 5e3;
35
- function B(e) {
36
- return typeof e.isDestroyed == "function" && e.isDestroyed();
24
+ };
25
+ function I(i) {
26
+ return typeof i.isDestroyed == "function" && i.isDestroyed();
37
27
  }
38
- function T(e, i) {
39
- return e.map((r) => r.id === O ? { ...r, label: i.frozenColumns } : r.id === R ? { ...r, label: i.scrollableColumns } : r);
28
+ function F(i, n) {
29
+ return i.map((e) => e.id === "root-frozen" ? { ...e, label: n.frozenColumns } : e.id === "root-scrollable" ? { ...e, label: n.scrollableColumns } : e);
40
30
  }
41
- function J(e) {
42
- const i = /* @__PURE__ */ new Set(), r = (n) => {
43
- for (const t of n) {
44
- if (t.id === O || t.id === R) {
45
- t.children && r(t.children);
31
+ function P(i) {
32
+ const n = /* @__PURE__ */ new Set(), e = (r) => {
33
+ for (const t of r) {
34
+ if (t.id === "root-frozen" || t.id === "root-scrollable") {
35
+ t.children && e(t.children);
46
36
  continue;
47
37
  }
48
38
  if (t.children && t.children.length > 0) {
49
- r(t.children);
39
+ e(t.children);
50
40
  continue;
51
41
  }
52
- t.id && i.add(t.id);
42
+ t.id && n.add(t.id);
53
43
  }
54
44
  };
55
- return r(e), i;
56
- }
57
- function v(e, i) {
58
- const r = C.get(e);
59
- if (!r)
60
- return null;
61
- const n = r.pickerMode === "authority-flat" && r.authority ? y(r.authority, i) : T(r.items, i);
62
- return {
63
- fingerprints: r.fingerprints,
64
- items: n,
65
- pickerMode: r.pickerMode,
66
- authority: r.authority,
67
- gridLayoutFingerprint: r.gridLayoutFingerprint,
68
- gridVisibilityFingerprint: r.gridVisibilityFingerprint,
69
- leafColumnIds: r.leafColumnIds
70
- };
71
- }
72
- function f(e, i) {
73
- const r = U(i), n = {
74
- layout: r.layout,
75
- visibility: r.visibility,
76
- indicators: g(e)
77
- }, t = e.getColumnState(), o = J(i);
78
- return C.set(e, {
79
- fingerprints: n,
80
- items: T(i, S),
81
- pickerMode: "tree",
82
- authority: null,
83
- gridLayoutFingerprint: m(t),
84
- gridVisibilityFingerprint: p(t),
85
- leafColumnIds: o
86
- }), n;
87
- }
88
- function M(e, i) {
89
- const r = j(i), n = {
90
- layout: r.layout,
91
- visibility: r.visibility,
92
- indicators: g(e)
93
- }, t = e.getColumnState(), o = new Set(i.orderedColumnIds);
94
- return C.set(e, {
95
- fingerprints: n,
96
- items: y(i, S),
97
- pickerMode: "authority-flat",
98
- authority: i,
99
- gridLayoutFingerprint: m(t),
100
- gridVisibilityFingerprint: p(t),
101
- leafColumnIds: o
102
- }), n;
103
- }
104
- function K(e) {
105
- const i = k(e);
106
- if (i) {
107
- if (D(i, L)) {
108
- M(e, i);
109
- return;
110
- }
111
- z(e, S);
112
- }
113
- }
114
- function z(e, i) {
115
- const r = W(e, i);
116
- return r ? (f(e, r), r) : null;
117
- }
118
- function A(e, i, r) {
119
- if (B(e))
45
+ return e(i), n;
46
+ }
47
+ function b(i, n) {
48
+ const e = p.get(i);
49
+ return e ? {
50
+ fingerprints: e.fingerprints,
51
+ items: F(e.items, n),
52
+ gridLayoutFingerprint: e.gridLayoutFingerprint,
53
+ gridVisibilityFingerprint: e.gridVisibilityFingerprint,
54
+ leafColumnIds: e.leafColumnIds
55
+ } : null;
56
+ }
57
+ function u(i, n) {
58
+ const e = M(n), r = i.getColumnState();
59
+ return p.set(i, {
60
+ fingerprints: e,
61
+ items: F(n, h),
62
+ gridLayoutFingerprint: d(r),
63
+ gridVisibilityFingerprint: m(r),
64
+ leafColumnIds: P(n)
65
+ }), e;
66
+ }
67
+ function v(i, n) {
68
+ const e = w(i, n);
69
+ return e ? (u(i, e), e) : null;
70
+ }
71
+ function D(i, n) {
72
+ if (I(i))
120
73
  return !1;
121
- const n = r ?? e.getColumnState();
122
- let t = 0;
123
- for (const o of n)
124
- if (Z(o.colId) && (t += 1, !i.has(o.colId)))
74
+ const e = i.getColumnState();
75
+ let r = 0;
76
+ for (const t of e)
77
+ if (!(!t.colId || t.colId === "ag-Grid-SelectionColumn") && (r += 1, !n.has(t.colId)))
125
78
  return !0;
126
- return t !== i.size;
127
- }
128
- function at(e) {
129
- const { gridApi: i, labels: r, previousFingerprints: n } = e, t = v(i, r), o = i.getColumnState(), b = m(o), I = p(o), F = n.layout === "" && n.visibility === "" && n.indicators === "";
130
- if (t != null && !A(i, t.leafColumnIds, o) && t) {
131
- const l = b !== t.gridLayoutFingerprint, c = I !== t.gridVisibilityFingerprint, d = g(i) !== t.fingerprints.indicators;
132
- if (!l && !c && !d) {
133
- if (t.pickerMode === "authority-flat" && t.authority)
134
- return F ? {
135
- rootItems: y(t.authority, r),
136
- authority: t.authority,
137
- pickerMode: "authority-flat",
138
- syncMode: "structural",
139
- fingerprints: t.fingerprints
140
- } : n.layout !== t.fingerprints.layout || n.visibility !== t.fingerprints.visibility || n.indicators !== t.fingerprints.indicators ? {
141
- rootItems: t.items,
142
- authority: t.authority,
143
- pickerMode: "authority-flat",
79
+ return r !== n.size;
80
+ }
81
+ function $(i) {
82
+ const { gridApi: n, labels: e, previousFingerprints: r } = i, t = b(n, e), y = n.getColumnState(), S = d(y), T = m(y), k = r.layout === "" && r.visibility === "" && r.indicators === "";
83
+ if (t != null && !D(n, t.leafColumnIds) && t) {
84
+ const o = z(
85
+ t.items,
86
+ n
87
+ ), L = _(o), c = S !== t.gridLayoutFingerprint, a = T !== t.gridVisibilityFingerprint, f = L !== t.fingerprints.indicators;
88
+ if (!c && !a && !f) {
89
+ if (k) {
90
+ const s = u(n, o);
91
+ return {
92
+ rootItems: o,
144
93
  syncMode: "structural",
145
- fingerprints: t.fingerprints
146
- } : {
147
- rootItems: null,
148
- authority: t.authority,
149
- pickerMode: "authority-flat",
150
- syncMode: "skip",
151
- fingerprints: t.fingerprints
94
+ fingerprints: s
152
95
  };
153
- if (F) {
154
- const u = T(t.items, r), E = w(
155
- u,
156
- i
157
- ), N = f(i, E);
96
+ }
97
+ if (r.layout !== t.fingerprints.layout || r.visibility !== t.fingerprints.visibility || r.indicators !== t.fingerprints.indicators) {
98
+ const s = u(n, o);
158
99
  return {
159
- rootItems: E,
160
- authority: null,
161
- pickerMode: "tree",
162
- syncMode: "indicators-only",
163
- fingerprints: N
100
+ rootItems: o,
101
+ syncMode: "structural",
102
+ fingerprints: s
164
103
  };
165
104
  }
166
- return n.layout !== t.fingerprints.layout || n.visibility !== t.fingerprints.visibility || n.indicators !== t.fingerprints.indicators ? {
167
- rootItems: t.items,
168
- authority: null,
169
- pickerMode: "tree",
170
- syncMode: "structural",
171
- fingerprints: t.fingerprints
172
- } : {
105
+ return {
173
106
  rootItems: null,
174
- authority: null,
175
- pickerMode: "tree",
176
107
  syncMode: "skip",
177
108
  fingerprints: t.fingerprints
178
109
  };
179
110
  }
180
- if (t.pickerMode === "authority-flat" && t.authority) {
181
- const s = k(i);
182
- if (s) {
183
- const u = M(i, s);
184
- return {
185
- rootItems: y(s, r),
186
- authority: s,
187
- pickerMode: "authority-flat",
188
- syncMode: l ? "structural" : c ? "visibility-only" : "indicators-only",
189
- fingerprints: u
190
- };
191
- }
192
- }
193
- const h = d ? w(t.items, i) : t.items;
194
- if (!l && c && !d) {
195
- const s = G(
196
- h,
197
- i
198
- ), u = f(i, s);
111
+ if (!c && a && !f) {
112
+ const l = C(
113
+ o,
114
+ n
115
+ ), s = u(n, l);
199
116
  return {
200
- rootItems: s,
201
- authority: null,
202
- pickerMode: "tree",
117
+ rootItems: l,
203
118
  syncMode: "visibility-only",
204
- fingerprints: u
119
+ fingerprints: s
205
120
  };
206
121
  }
207
- if (!l && !c && d) {
208
- const s = f(i, h);
122
+ if (!c && !a && f) {
123
+ const l = u(n, o);
209
124
  return {
210
- rootItems: h,
211
- authority: null,
212
- pickerMode: "tree",
125
+ rootItems: o,
213
126
  syncMode: "indicators-only",
214
- fingerprints: s
127
+ fingerprints: l
215
128
  };
216
129
  }
217
- if (!l && c && d) {
218
- const s = G(
219
- h,
220
- i
221
- ), u = f(i, s);
130
+ if (!c && a && f) {
131
+ const l = C(
132
+ o,
133
+ n
134
+ ), s = u(n, l);
222
135
  return {
223
- rootItems: s,
224
- authority: null,
225
- pickerMode: "tree",
136
+ rootItems: l,
226
137
  syncMode: "visibility-only",
227
- fingerprints: u
138
+ fingerprints: s
228
139
  };
229
140
  }
230
141
  }
231
- const a = k(i);
232
- if (a && D(a, L)) {
233
- const l = M(i, a);
234
- return {
235
- rootItems: y(a, r),
236
- authority: a,
237
- pickerMode: "authority-flat",
238
- syncMode: "structural",
239
- fingerprints: l
240
- };
241
- }
242
- const _ = z(i, r);
243
- if (!_)
142
+ const g = v(n, e);
143
+ if (!g)
244
144
  return {
245
145
  rootItems: null,
246
- authority: null,
247
- pickerMode: "tree",
248
146
  syncMode: "skip",
249
- fingerprints: n
147
+ fingerprints: r
250
148
  };
251
- const H = v(i, r)?.fingerprints ?? {
149
+ const G = b(n, e)?.fingerprints ?? {
252
150
  layout: "",
253
151
  visibility: "",
254
152
  indicators: ""
255
153
  };
256
154
  return {
257
- rootItems: _,
258
- authority: null,
259
- pickerMode: "tree",
155
+ rootItems: g,
260
156
  syncMode: "structural",
261
- fingerprints: H
157
+ fingerprints: G
262
158
  };
263
159
  }
264
- function P(e) {
265
- return typeof e.getColumnState == "function" && (typeof e.getAllGridColumns == "function" || typeof e.getColumns == "function");
160
+ function q(i) {
161
+ return typeof i.getColumnState == "function" && (typeof i.getAllGridColumns == "function" || typeof i.getColumns == "function");
266
162
  }
267
- function ct(e) {
268
- const { gridApi: i, labels: r, previousFingerprints: n } = e, t = v(i, r);
269
- if (!t)
270
- return !1;
271
- const o = i.getColumnState();
272
- if (A(
273
- i,
274
- t.leafColumnIds,
275
- o
276
- ))
277
- return !1;
278
- const b = m(o), I = p(o);
279
- return b !== t.gridLayoutFingerprint || I !== t.gridVisibilityFingerprint || g(i) !== t.fingerprints.indicators ? !1 : !(n.layout !== t.fingerprints.layout || n.visibility !== t.fingerprints.visibility || n.indicators !== t.fingerprints.indicators);
163
+ function J(i) {
164
+ return $(i).syncMode === "skip";
280
165
  }
281
- function dt(e) {
282
- let i = !1, r = 0, n;
166
+ function K(i) {
167
+ let n = !1, e = 0, r;
283
168
  const t = () => {
284
- i || B(e) || !P(e) || C.has(e) || K(e);
169
+ n || I(i) || !q(i) || p.has(i) || v(i, h);
285
170
  };
286
- return P(e) && e.getColumnState().length >= L ? (queueMicrotask(t), () => {
287
- i = !0;
288
- }) : (r = requestAnimationFrame(() => {
289
- i || (typeof requestIdleCallback < "u" ? n = requestIdleCallback(t, { timeout: 3e3 }) : setTimeout(t, 0));
171
+ return e = requestAnimationFrame(() => {
172
+ n || (typeof requestIdleCallback < "u" ? r = requestIdleCallback(t, { timeout: 3e3 }) : setTimeout(t, 0));
290
173
  }), () => {
291
- i = !0, r && cancelAnimationFrame(r), n !== void 0 && typeof cancelIdleCallback < "u" && cancelIdleCallback(n);
292
- });
174
+ n = !0, e && cancelAnimationFrame(e), r !== void 0 && typeof cancelIdleCallback < "u" && cancelIdleCallback(r);
175
+ };
293
176
  }
294
177
  export {
295
- L as LARGE_COLUMN_PREWARM_THRESHOLD,
296
- z as buildColumnTreeWithCache,
297
- A as isGridColumnSetDifferentFromCachedLeaves,
298
- ct as peekColumnListSyncWouldSkip,
299
- v as readColumnTreeCache,
300
- ut as readGridLayoutFingerprint,
301
- lt as readGridVisibilityFingerprint,
302
- at as resolveColumnTreeFromCacheOrGrid,
303
- dt as scheduleColumnTreePrewarm,
304
- M as writeColumnTreeAuthorityCache,
305
- f as writeColumnTreeCache
178
+ v as buildColumnTreeWithCache,
179
+ D as isGridColumnSetDifferentFromCachedLeaves,
180
+ J as peekColumnListSyncWouldSkip,
181
+ b as readColumnTreeCache,
182
+ H as readGridLayoutFingerprint,
183
+ O as readGridVisibilityFingerprint,
184
+ $ as resolveColumnTreeFromCacheOrGrid,
185
+ K as scheduleColumnTreePrewarm,
186
+ u as writeColumnTreeCache
306
187
  };
@@ -1,8 +1,3 @@
1
1
  import { GridApi } from 'ag-grid-community';
2
2
  import { NestedListItem } from '../nested-list/nested-list.types';
3
- export interface ColumnIndicatorMaps {
4
- sortAppliedByColumnId: Map<string, boolean>;
5
- filterAppliedByColumnId: Map<string, boolean>;
6
- }
7
- export declare function buildColumnIndicatorMapsFromGrid(gridApi: GridApi): ColumnIndicatorMaps;
8
3
  export declare function patchColumnTreeIndicatorsFromGrid(rootItems: NestedListItem[], gridApi: GridApi): NestedListItem[];
@@ -1,41 +1,24 @@
1
- function p(l) {
2
- const o = l.getGridOption("context"), r = typeof o?.activeSearchColumnId == "string" ? o.activeSearchColumnId : null, s = /* @__PURE__ */ new Map();
3
- for (const n of l.getColumnState())
4
- s.set(n.colId, !!n.sort);
5
- const a = /* @__PURE__ */ new Map(), u = l.getAllGridColumns?.() ?? l.getColumns?.() ?? [];
6
- for (const n of u) {
7
- const c = n.getColId();
8
- a.set(
9
- c,
10
- n.isFilterActive() === !0 || r === c
11
- );
12
- }
13
- return { sortAppliedByColumnId: s, filterAppliedByColumnId: a };
14
- }
15
- function I(l, o) {
16
- const r = o.getGridOption("context"), s = typeof r?.activeSearchColumnId == "string" ? r.activeSearchColumnId : null, a = new Map(
17
- o.getColumnState().map((e) => [e.colId, e])
18
- ), u = o.getAllGridColumns?.() ?? o.getColumns?.() ?? [], n = new Map(
19
- u.map((e) => [e.getColId(), e])
20
- ), c = (e) => e.map((t) => {
1
+ function h(n, c) {
2
+ const e = c.getGridOption("context"), a = typeof e?.activeSearchColumnId == "string" ? e.activeSearchColumnId : null, o = new Map(
3
+ c.getColumnState().map((r) => [r.colId, r])
4
+ ), i = (r) => r.map((t) => {
21
5
  if ((t.category === "group" || t.children && t.children.length > 0) && t.children)
22
6
  return {
23
7
  ...t,
24
- children: c(t.children)
8
+ children: i(t.children)
25
9
  };
26
- const i = n.get(t.id), m = a.get(t.id), d = t.data;
10
+ const l = c.getColumn(t.id), s = o.get(t.id), u = t.data;
27
11
  return {
28
12
  ...t,
29
13
  data: {
30
- ...d,
31
- hasSortApplied: !!m?.sort,
32
- hasFilterApplied: i?.isFilterActive() === !0 || s === t.id
14
+ ...u,
15
+ hasSortApplied: !!s?.sort,
16
+ hasFilterApplied: l?.isFilterActive() === !0 || a === t.id
33
17
  }
34
18
  };
35
19
  });
36
- return c(l);
20
+ return i(n);
37
21
  }
38
22
  export {
39
- p as buildColumnIndicatorMapsFromGrid,
40
- I as patchColumnTreeIndicatorsFromGrid
23
+ h as patchColumnTreeIndicatorsFromGrid
41
24
  };
@@ -1,7 +1,5 @@
1
1
  import { GridApi } from 'ag-grid-community';
2
2
  import { NestedListItem } from '../nested-list/nested-list.types';
3
- import { ColumnPickerMode } from './data-table-column-tree-cache';
4
- import { ColumnPickerAuthority } from './column-picker-authority';
5
3
  export interface UseDataTableColumnListSyncOptions {
6
4
  gridApi: GridApi | null;
7
5
  frozenColumnsLabel: string;
@@ -10,17 +8,9 @@ export interface UseDataTableColumnListSyncOptions {
10
8
  }
11
9
  export declare function useDataTableColumnListSync({ gridApi, frozenColumnsLabel, scrollableColumnsLabel, isSyncActive, }: UseDataTableColumnListSyncOptions): {
12
10
  items: NestedListItem[];
13
- columnPickerAuthority: ColumnPickerAuthority | null;
14
- pickerMode: ColumnPickerMode;
15
11
  isReady: boolean;
16
12
  listWrapperRef: import('react').RefObject<HTMLDivElement | null>;
17
13
  handleChange: (currentItems: NestedListItem[], enableApplyDiscard: boolean) => void;
18
14
  handleSubmit: (finalItems: NestedListItem[]) => void;
19
15
  handlePinChange: (itemId: string, newPinned: "left" | "right" | null) => void;
20
- handleAuthorityItemToggle: (toggleChanges: Array<{
21
- itemId: string;
22
- checked: boolean;
23
- }>) => void;
24
- handleAuthorityVirtualDrop: (activeId: string, overId: string, insertAfter: boolean) => void;
25
- handleAuthoritySelectAll: (shouldSelectAll: boolean) => void;
26
16
  };