@freedom-code-compliance/fcc-redesign 0.1.20 → 0.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,27 +1,27 @@
1
- import { createContext as e, createElement as t, forwardRef as n, isValidElement as r, useCallback as i, useContext as a, useEffect as o, useLayoutEffect as s, useRef as c, useState as l } from "react";
2
- import { AlertCircle as u, AlertTriangle as d, Bell as f, Calendar as p, Check as m, CheckCheck as h, CheckCircle as g, ChevronDown as _, ChevronRight as v, ChevronUp as y, ChevronsUpDown as b, Clock as x, Columns3 as S, Filter as C, Info as w, LayoutGrid as T, List as E, Loader2 as D, LogOut as O, Map as k, Minus as A, Moon as j, Search as M, Sun as N, TrendingDown as ee, TrendingUp as P, X as F } from "lucide-react";
3
- import { Fragment as I, jsx as L, jsxs as R } from "react/jsx-runtime";
4
- import { createPortal as z } from "react-dom";
1
+ import { createContext as e, createElement as t, forwardRef as n, isValidElement as r, useCallback as i, useContext as a, useEffect as o, useId as s, useLayoutEffect as c, useRef as l, useState as u } from "react";
2
+ import { AlertCircle as d, AlertTriangle as f, Bell as p, Calendar as m, Check as h, CheckCheck as g, CheckCircle as _, ChevronDown as v, ChevronRight as y, ChevronUp as b, ChevronsUpDown as x, Clock as S, Columns3 as C, Filter as w, Info as T, LayoutGrid as E, List as D, Loader2 as O, LogOut as k, Map as A, Minus as j, Moon as M, Search as N, Sun as P, TrendingDown as F, TrendingUp as I, X as L } from "lucide-react";
3
+ import { Fragment as R, jsx as z, jsxs as B } from "react/jsx-runtime";
4
+ import { createPortal as V } from "react-dom";
5
5
  //#region src/components/ui/Toast.jsx
6
- var B = e(null), V = {
7
- success: /* @__PURE__ */ L(g, {
6
+ var H = e(null), U = {
7
+ success: /* @__PURE__ */ z(_, {
8
8
  size: 16,
9
9
  style: { color: "var(--accent-green)" }
10
10
  }),
11
- error: /* @__PURE__ */ L(u, {
11
+ error: /* @__PURE__ */ z(d, {
12
12
  size: 16,
13
13
  style: { color: "var(--accent-red)" }
14
14
  }),
15
- warning: /* @__PURE__ */ L(d, {
15
+ warning: /* @__PURE__ */ z(f, {
16
16
  size: 16,
17
17
  style: { color: "var(--accent-yellow)" }
18
18
  }),
19
- info: /* @__PURE__ */ L(w, {
19
+ info: /* @__PURE__ */ z(T, {
20
20
  size: 16,
21
21
  style: { color: "var(--accent-blue)" }
22
22
  })
23
23
  };
24
- function H({ toast: e, onDismiss: t }) {
24
+ function ee({ toast: e, onDismiss: t }) {
25
25
  return o(() => {
26
26
  if (e.duration !== 0) {
27
27
  let n = setTimeout(() => t(e.id), e.duration || 4e3);
@@ -31,34 +31,34 @@ function H({ toast: e, onDismiss: t }) {
31
31
  e.id,
32
32
  e.duration,
33
33
  t
34
- ]), /* @__PURE__ */ R("div", {
34
+ ]), /* @__PURE__ */ B("div", {
35
35
  className: "toast",
36
36
  style: { animation: "slideInRight 200ms ease" },
37
37
  children: [
38
- /* @__PURE__ */ L("span", {
38
+ /* @__PURE__ */ z("span", {
39
39
  className: "toast-icon",
40
- children: V[e.type] || V.info
40
+ children: U[e.type] || U.info
41
41
  }),
42
- /* @__PURE__ */ R("div", {
42
+ /* @__PURE__ */ B("div", {
43
43
  className: "toast-content",
44
- children: [e.title && /* @__PURE__ */ L("div", {
44
+ children: [e.title && /* @__PURE__ */ z("div", {
45
45
  className: "toast-title",
46
46
  children: e.title
47
- }), /* @__PURE__ */ L("div", {
47
+ }), /* @__PURE__ */ z("div", {
48
48
  className: "toast-message",
49
49
  children: e.message
50
50
  })]
51
51
  }),
52
- /* @__PURE__ */ L("button", {
52
+ /* @__PURE__ */ z("button", {
53
53
  className: "toast-close",
54
54
  onClick: () => t(e.id),
55
- children: /* @__PURE__ */ L(F, { size: 14 })
55
+ children: /* @__PURE__ */ z(L, { size: 14 })
56
56
  })
57
57
  ]
58
58
  });
59
59
  }
60
- function U({ children: e }) {
61
- let [t, n] = l([]), r = i((e) => {
60
+ function W({ children: e }) {
61
+ let [t, n] = u([]), r = i((e) => {
62
62
  let t = Date.now() + Math.random();
63
63
  n((n) => [...n.slice(-4), {
64
64
  id: t,
@@ -67,11 +67,11 @@ function U({ children: e }) {
67
67
  }, []), a = i((e) => {
68
68
  n((t) => t.filter((t) => t.id !== e));
69
69
  }, []);
70
- return /* @__PURE__ */ R(B.Provider, {
70
+ return /* @__PURE__ */ B(H.Provider, {
71
71
  value: { addToast: r },
72
- children: [e, /* @__PURE__ */ L("div", {
72
+ children: [e, /* @__PURE__ */ z("div", {
73
73
  className: "toast-container",
74
- children: t.map((e) => /* @__PURE__ */ L(H, {
74
+ children: t.map((e) => /* @__PURE__ */ z(ee, {
75
75
  toast: e,
76
76
  onDismiss: a
77
77
  }, e.id))
@@ -79,23 +79,23 @@ function U({ children: e }) {
79
79
  });
80
80
  }
81
81
  function te() {
82
- let e = a(B);
82
+ let e = a(H);
83
83
  if (!e) throw Error("useToast must be used within ToastProvider");
84
84
  return e;
85
85
  }
86
86
  //#endregion
87
87
  //#region src/context/ThemeContext.jsx
88
- var W = e(void 0), ne = "dark", re = "fcc-theme";
88
+ var G = e(void 0), ne = "dark", re = "fcc-theme";
89
89
  function ie(e) {
90
90
  if (typeof document > "u") return;
91
91
  let t = document.documentElement;
92
92
  t.classList.remove("dark", "light"), e === "light" && t.classList.add("light");
93
93
  }
94
- function G({ children: e, defaultTheme: t = ne, storageKey: n = re }) {
95
- let [r, i] = l(() => typeof window > "u" ? t : window.localStorage.getItem(n) || t);
94
+ function K({ children: e, defaultTheme: t = ne, storageKey: n = re }) {
95
+ let [r, i] = u(() => typeof window > "u" ? t : window.localStorage.getItem(n) || t);
96
96
  return o(() => {
97
97
  typeof window < "u" && window.localStorage.setItem(n, r), ie(r);
98
- }, [n, r]), /* @__PURE__ */ L(W.Provider, {
98
+ }, [n, r]), /* @__PURE__ */ z(G.Provider, {
99
99
  value: {
100
100
  theme: r,
101
101
  setTheme: i,
@@ -106,24 +106,24 @@ function G({ children: e, defaultTheme: t = ne, storageKey: n = re }) {
106
106
  children: e
107
107
  });
108
108
  }
109
- function K() {
110
- let e = a(W);
109
+ function q() {
110
+ let e = a(G);
111
111
  if (!e) throw Error("useTheme must be used within a ThemeProvider");
112
112
  return e;
113
113
  }
114
114
  //#endregion
115
115
  //#region src/lib/FCCDesignProvider.jsx
116
116
  function ae({ children: e, ...t }) {
117
- return /* @__PURE__ */ L(G, {
117
+ return /* @__PURE__ */ z(K, {
118
118
  ...t,
119
- children: /* @__PURE__ */ L(U, { children: e })
119
+ children: /* @__PURE__ */ z(W, { children: e })
120
120
  });
121
121
  }
122
122
  //#endregion
123
123
  //#region src/components/layout/FCCSidePanel.jsx
124
- var q = (...e) => e.filter(Boolean).join(" "), oe = 300;
125
- function J({ open: e = !1, width: t = 320, expandedWidth: n, expanded: r = !1, panel: i, children: a, className: s = "", contentClassName: u = "", panelClassName: d = "" }) {
126
- let f = r && n ? n : t, p = c(null), m = c(null), [h, g] = l(e ? i : null), [_, v] = l(f), [y, b] = l(e && !!i);
124
+ var J = (...e) => e.filter(Boolean).join(" "), oe = 300;
125
+ function se({ open: e = !1, width: t = 320, expandedWidth: n, expanded: r = !1, panel: i, children: a, className: s = "", contentClassName: c = "", panelClassName: d = "" }) {
126
+ let f = r && n ? n : t, p = l(null), m = l(null), [h, g] = u(e ? i : null), [_, v] = u(f), [y, b] = u(e && !!i);
127
127
  o(() => () => {
128
128
  p.current &&= (window.cancelAnimationFrame(p.current), null), m.current &&= (window.clearTimeout(m.current), null);
129
129
  }, []), o(() => {
@@ -145,280 +145,280 @@ function J({ open: e = !1, width: t = 320, expandedWidth: n, expanded: r = !1, p
145
145
  };
146
146
  }, [e, y]);
147
147
  let x = !e && y, S = e ? i : y ? h : null, C = e ? f : y ? _ : f, w = e && !!i || !!S;
148
- return /* @__PURE__ */ R("div", {
149
- className: q("fcc-side-panel-layout", s),
150
- children: [/* @__PURE__ */ L("div", {
151
- className: q("fcc-side-panel-content", u),
148
+ return /* @__PURE__ */ B("div", {
149
+ className: J("fcc-side-panel-layout", s),
150
+ children: [/* @__PURE__ */ z("div", {
151
+ className: J("fcc-side-panel-content", c),
152
152
  children: a
153
- }), /* @__PURE__ */ L("div", {
154
- className: q("fcc-side-panel-rail", w && "has-panel", e && w && "open", x && "closing"),
153
+ }), /* @__PURE__ */ z("div", {
154
+ className: J("fcc-side-panel-rail", w && "has-panel", e && w && "open", x && "closing"),
155
155
  style: { "--fcc-side-panel-width": `${C}px` },
156
- children: /* @__PURE__ */ L("div", {
157
- className: q("fcc-side-panel-inner", d),
156
+ children: /* @__PURE__ */ z("div", {
157
+ className: J("fcc-side-panel-inner", d),
158
158
  children: S
159
159
  })
160
160
  })]
161
161
  });
162
162
  }
163
- function se({ title: e, subtitle: t, onClose: n, actions: r, className: i = "" }) {
164
- return /* @__PURE__ */ R("div", {
165
- className: q("fcc-side-panel-header", i),
166
- children: [/* @__PURE__ */ R("div", {
163
+ function ce({ title: e, subtitle: t, onClose: n, actions: r, className: i = "" }) {
164
+ return /* @__PURE__ */ B("div", {
165
+ className: J("fcc-side-panel-header", i),
166
+ children: [/* @__PURE__ */ B("div", {
167
167
  className: "fcc-side-panel-header-copy",
168
- children: [/* @__PURE__ */ L("div", {
168
+ children: [/* @__PURE__ */ z("div", {
169
169
  className: "fcc-side-panel-title",
170
170
  children: e
171
- }), t && /* @__PURE__ */ L("div", {
171
+ }), t && /* @__PURE__ */ z("div", {
172
172
  className: "fcc-side-panel-subtitle",
173
173
  children: t
174
174
  })]
175
- }), /* @__PURE__ */ R("div", {
175
+ }), /* @__PURE__ */ B("div", {
176
176
  className: "fcc-side-panel-header-actions",
177
- children: [r, n && /* @__PURE__ */ L("button", {
177
+ children: [r, n && /* @__PURE__ */ z("button", {
178
178
  className: "btn btn-ghost btn-icon btn-sm",
179
179
  onClick: n,
180
180
  "aria-label": "Close panel",
181
- children: /* @__PURE__ */ L(F, { size: 14 })
181
+ children: /* @__PURE__ */ z(L, { size: 14 })
182
182
  })]
183
183
  })]
184
184
  });
185
185
  }
186
- function ce({ children: e, className: t = "" }) {
187
- return /* @__PURE__ */ L("div", {
188
- className: q("fcc-side-panel-body", t),
186
+ function le({ children: e, className: t = "" }) {
187
+ return /* @__PURE__ */ z("div", {
188
+ className: J("fcc-side-panel-body", t),
189
189
  children: e
190
190
  });
191
191
  }
192
- function le({ tabs: e = [], activeTab: t = 0, onTabChange: n, className: r = "" }) {
193
- return /* @__PURE__ */ L("div", {
194
- className: q("fcc-side-panel-tabs", r),
195
- children: e.map((e, r) => /* @__PURE__ */ L("button", {
196
- className: q("fcc-side-panel-tab", t === r && "active"),
192
+ function ue({ tabs: e = [], activeTab: t = 0, onTabChange: n, className: r = "" }) {
193
+ return /* @__PURE__ */ z("div", {
194
+ className: J("fcc-side-panel-tabs", r),
195
+ children: e.map((e, r) => /* @__PURE__ */ z("button", {
196
+ className: J("fcc-side-panel-tab", t === r && "active"),
197
197
  onClick: () => n?.(r),
198
198
  children: e
199
199
  }, e))
200
200
  });
201
201
  }
202
- function ue({ placeholder: e = "Search...", value: t, onChange: n, className: r = "" }) {
203
- return /* @__PURE__ */ R("div", {
204
- className: q("fcc-side-panel-search", r),
205
- children: [/* @__PURE__ */ L(M, { size: 13 }), n ? /* @__PURE__ */ L("input", {
202
+ function de({ placeholder: e = "Search...", value: t, onChange: n, className: r = "" }) {
203
+ return /* @__PURE__ */ B("div", {
204
+ className: J("fcc-side-panel-search", r),
205
+ children: [/* @__PURE__ */ z(N, { size: 13 }), n ? /* @__PURE__ */ z("input", {
206
206
  className: "fcc-side-panel-search-input",
207
207
  type: "text",
208
208
  placeholder: e,
209
209
  value: t,
210
210
  onChange: (e) => n(e.target.value)
211
- }) : /* @__PURE__ */ L("span", {
211
+ }) : /* @__PURE__ */ z("span", {
212
212
  className: "fcc-side-panel-search-placeholder",
213
213
  children: e
214
214
  })]
215
215
  });
216
216
  }
217
- function de({ children: e, className: t = "" }) {
218
- return /* @__PURE__ */ L("div", {
219
- className: q("fcc-side-panel-group-label", t),
217
+ function fe({ children: e, className: t = "" }) {
218
+ return /* @__PURE__ */ z("div", {
219
+ className: J("fcc-side-panel-group-label", t),
220
220
  children: e
221
221
  });
222
222
  }
223
- function fe({ dot: e, label: t, detail: n, time: r, onClick: i, className: a = "" }) {
224
- return /* @__PURE__ */ R("div", {
225
- className: q("fcc-side-panel-item", a),
223
+ function pe({ dot: e, label: t, detail: n, time: r, onClick: i, className: a = "" }) {
224
+ return /* @__PURE__ */ B("div", {
225
+ className: J("fcc-side-panel-item", a),
226
226
  onClick: i,
227
227
  children: [
228
- e && /* @__PURE__ */ L("span", {
228
+ e && /* @__PURE__ */ z("span", {
229
229
  className: "fcc-side-panel-item-dot",
230
230
  style: { background: e }
231
231
  }),
232
- /* @__PURE__ */ R("div", {
232
+ /* @__PURE__ */ B("div", {
233
233
  className: "fcc-side-panel-item-body",
234
- children: [/* @__PURE__ */ L("span", {
234
+ children: [/* @__PURE__ */ z("span", {
235
235
  className: "fcc-side-panel-item-label",
236
236
  children: t
237
- }), n && /* @__PURE__ */ L("span", {
237
+ }), n && /* @__PURE__ */ z("span", {
238
238
  className: "fcc-side-panel-item-detail",
239
239
  children: n
240
240
  })]
241
241
  }),
242
- r && /* @__PURE__ */ L("span", {
242
+ r && /* @__PURE__ */ z("span", {
243
243
  className: "fcc-side-panel-item-time",
244
244
  children: r
245
245
  })
246
246
  ]
247
247
  });
248
248
  }
249
- function pe({ avatar: e, title: t, detail: n, time: r, unread: i, onClick: a, className: o = "" }) {
250
- return /* @__PURE__ */ R("div", {
251
- className: q("fcc-side-panel-card", o),
249
+ function me({ avatar: e, title: t, detail: n, time: r, unread: i, onClick: a, className: o = "" }) {
250
+ return /* @__PURE__ */ B("div", {
251
+ className: J("fcc-side-panel-card", o),
252
252
  onClick: a,
253
- children: [/* @__PURE__ */ L("div", {
253
+ children: [/* @__PURE__ */ z("div", {
254
254
  className: "fcc-side-panel-card-avatar",
255
255
  children: e
256
- }), /* @__PURE__ */ R("div", {
256
+ }), /* @__PURE__ */ B("div", {
257
257
  className: "fcc-side-panel-card-body",
258
258
  children: [
259
- /* @__PURE__ */ L("span", {
259
+ /* @__PURE__ */ z("span", {
260
260
  className: "fcc-side-panel-card-title",
261
261
  children: t
262
262
  }),
263
- n && /* @__PURE__ */ L("span", {
263
+ n && /* @__PURE__ */ z("span", {
264
264
  className: "fcc-side-panel-card-detail",
265
265
  children: n
266
266
  }),
267
- /* @__PURE__ */ R("div", {
267
+ /* @__PURE__ */ B("div", {
268
268
  className: "fcc-side-panel-card-meta",
269
- children: [r && /* @__PURE__ */ L("span", { children: r }), i && /* @__PURE__ */ L("span", { className: "fcc-side-panel-unread-dot" })]
269
+ children: [r && /* @__PURE__ */ z("span", { children: r }), i && /* @__PURE__ */ z("span", { className: "fcc-side-panel-unread-dot" })]
270
270
  })
271
271
  ]
272
272
  })]
273
273
  });
274
274
  }
275
- function me({ avatar: e, name: t, time: n, active: r, online: i, onClick: a, className: o = "" }) {
276
- return /* @__PURE__ */ R("div", {
277
- className: q("fcc-side-panel-contact", r && "active", o),
275
+ function he({ avatar: e, name: t, time: n, active: r, online: i, onClick: a, className: o = "" }) {
276
+ return /* @__PURE__ */ B("div", {
277
+ className: J("fcc-side-panel-contact", r && "active", o),
278
278
  onClick: a,
279
279
  children: [
280
- /* @__PURE__ */ R("div", {
280
+ /* @__PURE__ */ B("div", {
281
281
  className: "fcc-side-panel-contact-avatar-wrap",
282
- children: [e, i && /* @__PURE__ */ L("span", { className: "fcc-side-panel-online-dot" })]
282
+ children: [e, i && /* @__PURE__ */ z("span", { className: "fcc-side-panel-online-dot" })]
283
283
  }),
284
- /* @__PURE__ */ L("span", {
284
+ /* @__PURE__ */ z("span", {
285
285
  className: "fcc-side-panel-contact-name",
286
286
  children: t
287
287
  }),
288
- n && /* @__PURE__ */ L("span", {
288
+ n && /* @__PURE__ */ z("span", {
289
289
  className: "fcc-side-panel-contact-time",
290
290
  children: n
291
291
  })
292
292
  ]
293
293
  });
294
294
  }
295
- function he({ children: e, onClick: t, className: n = "" }) {
296
- return /* @__PURE__ */ L("div", {
297
- className: q("fcc-side-panel-action", n),
295
+ function ge({ children: e, onClick: t, className: n = "" }) {
296
+ return /* @__PURE__ */ z("div", {
297
+ className: J("fcc-side-panel-action", n),
298
298
  onClick: t,
299
299
  children: e
300
300
  });
301
301
  }
302
- function ge({ children: e, className: t = "" }) {
303
- return /* @__PURE__ */ L("div", {
304
- className: q("fcc-side-panel-chat-wrap", t),
302
+ function _e({ children: e, className: t = "" }) {
303
+ return /* @__PURE__ */ z("div", {
304
+ className: J("fcc-side-panel-chat-wrap", t),
305
305
  children: e
306
306
  });
307
307
  }
308
- function _e({ title: e, headerActions: t, messages: n = [], input: r, className: i = "" }) {
309
- return /* @__PURE__ */ R("div", {
310
- className: q("fcc-side-panel-conversation", i),
308
+ function ve({ title: e, headerActions: t, messages: n = [], input: r, className: i = "" }) {
309
+ return /* @__PURE__ */ B("div", {
310
+ className: J("fcc-side-panel-conversation", i),
311
311
  children: [
312
- /* @__PURE__ */ R("div", {
312
+ /* @__PURE__ */ B("div", {
313
313
  className: "fcc-side-panel-conv-header",
314
- children: [/* @__PURE__ */ L("span", {
314
+ children: [/* @__PURE__ */ z("span", {
315
315
  className: "fcc-side-panel-conv-title",
316
316
  children: e
317
- }), t && /* @__PURE__ */ L("div", {
317
+ }), t && /* @__PURE__ */ z("div", {
318
318
  className: "fcc-side-panel-conv-header-right",
319
319
  children: t
320
320
  })]
321
321
  }),
322
- /* @__PURE__ */ L("div", {
322
+ /* @__PURE__ */ z("div", {
323
323
  className: "fcc-side-panel-conv-messages",
324
324
  children: n
325
325
  }),
326
- r && /* @__PURE__ */ L("div", {
326
+ r && /* @__PURE__ */ z("div", {
327
327
  className: "fcc-side-panel-conv-input",
328
328
  children: r
329
329
  })
330
330
  ]
331
331
  });
332
332
  }
333
- function ve({ from: e = "other", meta: t, children: n, className: r = "" }) {
333
+ function ye({ from: e = "other", meta: t, children: n, className: r = "" }) {
334
334
  let i = e === "you";
335
- return /* @__PURE__ */ R("div", {
336
- className: q("fcc-side-panel-msg-row", i ? "fcc-msg-right" : "fcc-msg-left", r),
337
- children: [t && /* @__PURE__ */ L("div", {
335
+ return /* @__PURE__ */ B("div", {
336
+ className: J("fcc-side-panel-msg-row", i ? "fcc-msg-right" : "fcc-msg-left", r),
337
+ children: [t && /* @__PURE__ */ z("div", {
338
338
  className: "fcc-side-panel-msg-meta",
339
339
  children: t
340
- }), /* @__PURE__ */ L("div", {
341
- className: q("fcc-side-panel-msg-bubble", i ? "fcc-bubble-you" : "fcc-bubble-other"),
340
+ }), /* @__PURE__ */ z("div", {
341
+ className: J("fcc-side-panel-msg-bubble", i ? "fcc-bubble-you" : "fcc-bubble-other"),
342
342
  children: n
343
343
  })]
344
344
  });
345
345
  }
346
346
  //#endregion
347
347
  //#region src/components/layout/FCCBreadcrumbs.jsx
348
- function ye(e, t) {
348
+ function be(e, t) {
349
349
  let n = [
350
350
  "fcc-breadcrumb-item",
351
351
  t ? "current" : "",
352
352
  e.className || ""
353
353
  ].filter(Boolean).join(" ");
354
- return t ? /* @__PURE__ */ L("span", {
354
+ return t ? /* @__PURE__ */ z("span", {
355
355
  className: n,
356
356
  children: e.label
357
- }) : e.href ? /* @__PURE__ */ L("a", {
357
+ }) : e.href ? /* @__PURE__ */ z("a", {
358
358
  className: n,
359
359
  href: e.href,
360
360
  children: e.label
361
- }) : e.onClick ? /* @__PURE__ */ L("button", {
361
+ }) : e.onClick ? /* @__PURE__ */ z("button", {
362
362
  type: "button",
363
363
  className: n,
364
364
  onClick: e.onClick,
365
365
  children: e.label
366
- }) : /* @__PURE__ */ L("span", {
366
+ }) : /* @__PURE__ */ z("span", {
367
367
  className: n,
368
368
  children: e.label
369
369
  });
370
370
  }
371
- function be({ items: e = [], className: t = "" }) {
371
+ function xe({ items: e = [], className: t = "" }) {
372
372
  let n = e.filter((e) => e?.label);
373
- return n.length === 0 ? null : /* @__PURE__ */ L("nav", {
373
+ return n.length === 0 ? null : /* @__PURE__ */ z("nav", {
374
374
  className: ["fcc-breadcrumbs", t].filter(Boolean).join(" "),
375
375
  "aria-label": "Breadcrumb",
376
376
  children: n.map((e, t) => {
377
377
  let r = e.current ?? t === n.length - 1;
378
- return /* @__PURE__ */ R("div", {
378
+ return /* @__PURE__ */ B("div", {
379
379
  className: "fcc-breadcrumb-segment",
380
- children: [t > 0 && /* @__PURE__ */ L("span", {
380
+ children: [t > 0 && /* @__PURE__ */ z("span", {
381
381
  className: "fcc-breadcrumb-sep",
382
382
  children: "/"
383
- }), ye(e, r)]
383
+ }), be(e, r)]
384
384
  }, e.key || e.label || t);
385
385
  })
386
386
  });
387
387
  }
388
388
  //#endregion
389
389
  //#region src/components/layout/FCCHeaderStatus.jsx
390
- var xe = {
390
+ var Se = {
391
391
  success: "fcc-header-status-success",
392
392
  warning: "fcc-header-status-warning",
393
393
  danger: "fcc-header-status-danger",
394
394
  info: "fcc-header-status-info",
395
395
  neutral: "fcc-header-status-neutral"
396
396
  };
397
- function Se({ label: e, tone: t = "success", dotColor: n, className: r = "" }) {
398
- return e ? /* @__PURE__ */ R("div", {
397
+ function Ce({ label: e, tone: t = "success", dotColor: n, className: r = "" }) {
398
+ return e ? /* @__PURE__ */ B("div", {
399
399
  className: [
400
400
  "fcc-header-status",
401
- xe[t] || xe.neutral,
401
+ Se[t] || Se.neutral,
402
402
  r
403
403
  ].filter(Boolean).join(" "),
404
- children: [/* @__PURE__ */ L("span", {
404
+ children: [/* @__PURE__ */ z("span", {
405
405
  className: "fcc-header-status-dot",
406
406
  style: n ? { backgroundColor: n } : void 0
407
- }), /* @__PURE__ */ L("span", { children: e })]
407
+ }), /* @__PURE__ */ z("span", { children: e })]
408
408
  }) : null;
409
409
  }
410
410
  //#endregion
411
411
  //#region src/components/layout/FCCWorkspaceHeader.jsx
412
- function Ce({ breadcrumbs: e = [], status: t, actions: n, leftSlot: r, rightSlot: i, className: a = "" }) {
413
- return /* @__PURE__ */ R("header", {
412
+ function we({ breadcrumbs: e = [], status: t, actions: n, leftSlot: r, rightSlot: i, className: a = "" }) {
413
+ return /* @__PURE__ */ B("header", {
414
414
  className: ["fcc-workspace-header", a].filter(Boolean).join(" "),
415
- children: [/* @__PURE__ */ L("div", {
415
+ children: [/* @__PURE__ */ z("div", {
416
416
  className: "fcc-workspace-header-left",
417
- children: r || /* @__PURE__ */ L(be, { items: e })
418
- }), /* @__PURE__ */ R("div", {
417
+ children: r || /* @__PURE__ */ z(xe, { items: e })
418
+ }), /* @__PURE__ */ B("div", {
419
419
  className: "fcc-workspace-header-right",
420
420
  children: [
421
- t && /* @__PURE__ */ L(Se, { ...t }),
421
+ t && /* @__PURE__ */ z(Ce, { ...t }),
422
422
  n,
423
423
  i
424
424
  ]
@@ -427,8 +427,8 @@ function Ce({ breadcrumbs: e = [], status: t, actions: n, leftSlot: r, rightSlot
427
427
  }
428
428
  //#endregion
429
429
  //#region src/components/layout/FCCMainWindow.jsx
430
- function we({ breadcrumbs: e = [], status: t, headerActions: n, header: r, children: i, overlay: a, sidePanel: o, className: s = "", headerClassName: c = "", contentClassName: l = "" }) {
431
- let u = o ? /* @__PURE__ */ L(J, {
430
+ function Te({ breadcrumbs: e = [], status: t, headerActions: n, header: r, children: i, overlay: a, sidePanel: o, className: s = "", headerClassName: c = "", contentClassName: l = "" }) {
431
+ let u = o ? /* @__PURE__ */ z(se, {
432
432
  open: o.open,
433
433
  width: o.width,
434
434
  expandedWidth: o.expandedWidth,
@@ -439,16 +439,16 @@ function we({ breadcrumbs: e = [], status: t, headerActions: n, header: r, child
439
439
  panelClassName: o.panelClassName,
440
440
  children: i
441
441
  }) : i;
442
- return /* @__PURE__ */ R("div", {
442
+ return /* @__PURE__ */ B("div", {
443
443
  className: ["fcc-main-window", s].filter(Boolean).join(" "),
444
444
  children: [
445
- r || /* @__PURE__ */ L(Ce, {
445
+ r || /* @__PURE__ */ z(we, {
446
446
  breadcrumbs: e,
447
447
  status: t,
448
448
  actions: n,
449
449
  className: c
450
450
  }),
451
- /* @__PURE__ */ L("div", {
451
+ /* @__PURE__ */ z("div", {
452
452
  className: [
453
453
  "fcc-main-window-content",
454
454
  o && "fcc-main-window-content-with-side-panel",
@@ -462,7 +462,7 @@ function we({ breadcrumbs: e = [], status: t, headerActions: n, header: r, child
462
462
  }
463
463
  //#endregion
464
464
  //#region src/components/layout/FCCSidebar.jsx
465
- function Te(e, t) {
465
+ function Ee(e, t) {
466
466
  if (!e.disabled) {
467
467
  if (e.onClick) {
468
468
  e.onClick(e);
@@ -471,10 +471,10 @@ function Te(e, t) {
471
471
  t?.(e);
472
472
  }
473
473
  }
474
- function Ee(e, t) {
474
+ function De(e, t) {
475
475
  return !e.childrenSections?.length || !t ? !1 : e.childrenSections.some((e) => e.items?.some((e) => e.key === t));
476
476
  }
477
- function De(e, t) {
477
+ function Oe(e, t) {
478
478
  if (!t.trim()) return e;
479
479
  let n = t.trim().toLowerCase();
480
480
  return e.map((e) => ({
@@ -482,39 +482,39 @@ function De(e, t) {
482
482
  items: e.items.filter((e) => e.label.toLowerCase().includes(n) || e.pageTitle?.toLowerCase().includes(n) || e.summary?.toLowerCase().includes(n))
483
483
  })).filter((e) => e.items.length > 0);
484
484
  }
485
- function Oe({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, onNavigate: i, user: a, footer: o, onLogout: s, className: c = "" }) {
486
- let [u, d] = l({}), [f, p] = l({});
485
+ function ke({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, onNavigate: i, user: a, footer: o, onLogout: s, className: c = "" }) {
486
+ let [l, d] = u({}), [f, p] = u({});
487
487
  function m(e, t) {
488
488
  p((n) => ({
489
489
  ...n,
490
490
  [e]: t
491
491
  }));
492
492
  }
493
- return /* @__PURE__ */ R("aside", {
493
+ return /* @__PURE__ */ B("aside", {
494
494
  className: ["fcc-sidebar", c].filter(Boolean).join(" "),
495
495
  children: [
496
- /* @__PURE__ */ R("div", {
496
+ /* @__PURE__ */ B("div", {
497
497
  className: "fcc-sidebar-brand",
498
- children: [/* @__PURE__ */ L("div", {
498
+ children: [/* @__PURE__ */ z("div", {
499
499
  className: "fcc-sidebar-brand-logo-slot",
500
500
  children: t
501
- }), /* @__PURE__ */ L("span", {
501
+ }), /* @__PURE__ */ z("span", {
502
502
  className: "fcc-sidebar-label fcc-sidebar-brand-text",
503
503
  children: e
504
504
  })]
505
505
  }),
506
- /* @__PURE__ */ L("nav", {
506
+ /* @__PURE__ */ z("nav", {
507
507
  className: "fcc-sidebar-nav",
508
508
  "aria-label": `${e} navigation`,
509
509
  children: n.map((e) => {
510
- let t = e.childrenSections?.length > 0, n = Ee(e, r), a = e.key === r || n || (r?.startsWith?.(`${e.key}/`) ?? !1), o = t && (f[e.key] ?? a), s = u[e.key] || "", c = t ? De(e.childrenSections, s) : [];
511
- return /* @__PURE__ */ R("div", {
510
+ let t = e.childrenSections?.length > 0, n = De(e, r), a = e.key === r || n || (r?.startsWith?.(`${e.key}/`) ?? !1), o = t && (f[e.key] ?? a), s = l[e.key] || "", c = t ? Oe(e.childrenSections, s) : [];
511
+ return /* @__PURE__ */ B("div", {
512
512
  className: [
513
513
  "fcc-sidebar-entry",
514
514
  t ? "has-children" : "",
515
515
  t && o ? "expanded" : ""
516
516
  ].filter(Boolean).join(" "),
517
- children: [/* @__PURE__ */ R("button", {
517
+ children: [/* @__PURE__ */ B("button", {
518
518
  type: "button",
519
519
  className: [
520
520
  "fcc-sidebar-item",
@@ -522,25 +522,25 @@ function Oe({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
522
522
  e.disabled ? "disabled" : ""
523
523
  ].filter(Boolean).join(" "),
524
524
  onClick: () => {
525
- t && m(e.key, !0), Te(e, i);
525
+ t && m(e.key, !0), Ee(e, i);
526
526
  },
527
527
  "aria-current": a ? "page" : void 0,
528
528
  disabled: e.disabled,
529
529
  title: e.label,
530
530
  children: [
531
- /* @__PURE__ */ L("span", {
531
+ /* @__PURE__ */ z("span", {
532
532
  className: "fcc-sidebar-item-icon",
533
533
  children: e.icon
534
534
  }),
535
- /* @__PURE__ */ L("span", {
535
+ /* @__PURE__ */ z("span", {
536
536
  className: "fcc-sidebar-label fcc-sidebar-item-label",
537
537
  children: e.label
538
538
  }),
539
- e.badge != null && /* @__PURE__ */ L("span", {
539
+ e.badge != null && /* @__PURE__ */ z("span", {
540
540
  className: "fcc-sidebar-item-badge",
541
541
  children: e.badge
542
542
  }),
543
- t && /* @__PURE__ */ L("span", {
543
+ t && /* @__PURE__ */ z("span", {
544
544
  className: [
545
545
  "fcc-sidebar-label",
546
546
  "fcc-sidebar-item-chevron",
@@ -552,14 +552,14 @@ function Oe({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
552
552
  role: "button",
553
553
  "aria-label": `${o ? "Collapse" : "Expand"} ${e.label}`,
554
554
  "aria-expanded": o,
555
- children: /* @__PURE__ */ L(_, { size: 14 })
555
+ children: /* @__PURE__ */ z(v, { size: 14 })
556
556
  })
557
557
  ]
558
- }), t && o && /* @__PURE__ */ R("div", {
558
+ }), t && o && /* @__PURE__ */ B("div", {
559
559
  className: "fcc-sidebar-accordion",
560
- children: [/* @__PURE__ */ R("div", {
560
+ children: [/* @__PURE__ */ B("div", {
561
561
  className: "fcc-sidebar-search",
562
- children: [/* @__PURE__ */ L(M, { size: 13 }), /* @__PURE__ */ L("input", {
562
+ children: [/* @__PURE__ */ z(N, { size: 13 }), /* @__PURE__ */ z("input", {
563
563
  type: "text",
564
564
  className: "fcc-sidebar-search-input",
565
565
  value: s,
@@ -569,24 +569,24 @@ function Oe({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
569
569
  })),
570
570
  placeholder: e.searchPlaceholder || "Search..."
571
571
  })]
572
- }), /* @__PURE__ */ R("div", {
572
+ }), /* @__PURE__ */ B("div", {
573
573
  className: "fcc-sidebar-accordion-body",
574
- children: [c.length === 0 && /* @__PURE__ */ L("div", {
574
+ children: [c.length === 0 && /* @__PURE__ */ z("div", {
575
575
  className: "fcc-sidebar-empty",
576
576
  children: "No matching components"
577
- }), c.map((e) => /* @__PURE__ */ R("div", {
577
+ }), c.map((e) => /* @__PURE__ */ B("div", {
578
578
  className: "fcc-sidebar-section",
579
- children: [/* @__PURE__ */ L("div", {
579
+ children: [/* @__PURE__ */ z("div", {
580
580
  className: "fcc-sidebar-section-title",
581
581
  children: e.title
582
- }), /* @__PURE__ */ L("div", {
582
+ }), /* @__PURE__ */ z("div", {
583
583
  className: "fcc-sidebar-child-list",
584
- children: e.items.map((e) => /* @__PURE__ */ L("button", {
584
+ children: e.items.map((e) => /* @__PURE__ */ z("button", {
585
585
  type: "button",
586
586
  className: ["fcc-sidebar-child-item", e.key === r ? "active" : ""].filter(Boolean).join(" "),
587
- onClick: () => Te(e, i),
587
+ onClick: () => Ee(e, i),
588
588
  title: e.label,
589
- children: /* @__PURE__ */ L("span", {
589
+ children: /* @__PURE__ */ z("span", {
590
590
  className: "fcc-sidebar-label",
591
591
  children: e.label
592
592
  })
@@ -598,34 +598,34 @@ function Oe({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
598
598
  }, e.key || e.label);
599
599
  })
600
600
  }),
601
- o ? /* @__PURE__ */ L("div", {
601
+ o ? /* @__PURE__ */ z("div", {
602
602
  className: "fcc-sidebar-footer",
603
603
  children: o
604
- }) : (a || s) && /* @__PURE__ */ R("div", {
604
+ }) : (a || s) && /* @__PURE__ */ B("div", {
605
605
  className: "fcc-sidebar-footer",
606
- children: [a && /* @__PURE__ */ R("div", {
606
+ children: [a && /* @__PURE__ */ B("div", {
607
607
  className: "fcc-sidebar-profile",
608
- children: [/* @__PURE__ */ L("div", {
608
+ children: [/* @__PURE__ */ z("div", {
609
609
  className: "fcc-sidebar-avatar",
610
610
  style: a.avatarStyle,
611
611
  children: a.avatar || a.initials || a.name?.slice(0, 2) || "FCC"
612
- }), /* @__PURE__ */ R("div", {
612
+ }), /* @__PURE__ */ B("div", {
613
613
  className: "fcc-sidebar-profile-copy",
614
- children: [/* @__PURE__ */ L("span", {
614
+ children: [/* @__PURE__ */ z("span", {
615
615
  className: "fcc-sidebar-label fcc-sidebar-profile-name",
616
616
  children: a.name
617
- }), a.meta && /* @__PURE__ */ L("span", {
617
+ }), a.meta && /* @__PURE__ */ z("span", {
618
618
  className: "fcc-sidebar-label fcc-sidebar-profile-meta",
619
619
  children: a.meta
620
620
  })]
621
621
  })]
622
- }), s && /* @__PURE__ */ L("button", {
622
+ }), s && /* @__PURE__ */ z("button", {
623
623
  type: "button",
624
624
  className: "fcc-sidebar-logout",
625
625
  title: "Logout",
626
626
  "aria-label": "Logout",
627
627
  onClick: s,
628
- children: /* @__PURE__ */ L(O, { size: 16 })
628
+ children: /* @__PURE__ */ z(k, { size: 16 })
629
629
  })]
630
630
  })
631
631
  ]
@@ -633,10 +633,10 @@ function Oe({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
633
633
  }
634
634
  //#endregion
635
635
  //#region src/components/layout/FCCAppShell.jsx
636
- function ke({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, onNavigate: i, user: a, footer: o, onLogout: s, breadcrumbs: c = [], status: l, headerActions: u, header: d, children: f, overlay: p, sidePanel: m, className: h = "", sidebarClassName: g = "", mainClassName: _ = "", headerClassName: v = "", contentClassName: y = "" }) {
637
- return /* @__PURE__ */ R("div", {
636
+ function Ae({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, onNavigate: i, user: a, footer: o, onLogout: s, breadcrumbs: c = [], status: l, headerActions: u, header: d, children: f, overlay: p, sidePanel: m, className: h = "", sidebarClassName: g = "", mainClassName: _ = "", headerClassName: v = "", contentClassName: y = "" }) {
637
+ return /* @__PURE__ */ B("div", {
638
638
  className: ["fcc-app-shell", h].filter(Boolean).join(" "),
639
- children: [/* @__PURE__ */ L(Oe, {
639
+ children: [/* @__PURE__ */ z(ke, {
640
640
  appName: e,
641
641
  logo: t,
642
642
  navItems: n,
@@ -646,7 +646,7 @@ function ke({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
646
646
  footer: o,
647
647
  onLogout: s,
648
648
  className: g
649
- }), /* @__PURE__ */ L(we, {
649
+ }), /* @__PURE__ */ z(Te, {
650
650
  breadcrumbs: c,
651
651
  status: l,
652
652
  headerActions: u,
@@ -662,9 +662,9 @@ function ke({ appName: e = "FCC", logo: t, navItems: n = [], activeNavKey: r, on
662
662
  }
663
663
  //#endregion
664
664
  //#region src/components/layout/FCCBrandLogo.jsx
665
- function Ae({ darkSrc: e, lightSrc: t, alt: n = "FCC", className: r = "", ...i }) {
666
- let { theme: a } = K(), o = a === "dark" ? e || t : t || e;
667
- return o ? /* @__PURE__ */ L("img", {
665
+ function je({ darkSrc: e, lightSrc: t, alt: n = "FCC", className: r = "", ...i }) {
666
+ let { theme: a } = q(), o = a === "dark" ? e || t : t || e;
667
+ return o ? /* @__PURE__ */ z("img", {
668
668
  src: o,
669
669
  alt: n,
670
670
  className: ["fcc-brand-logo", r].filter(Boolean).join(" "),
@@ -673,9 +673,9 @@ function Ae({ darkSrc: e, lightSrc: t, alt: n = "FCC", className: r = "", ...i }
673
673
  }
674
674
  //#endregion
675
675
  //#region src/components/layout/FCCThemeToggle.jsx
676
- function je({ className: e = "" }) {
677
- let { theme: t, toggleTheme: n } = K(), r = t === "dark";
678
- return /* @__PURE__ */ L("button", {
676
+ function Me({ className: e = "" }) {
677
+ let { theme: t, toggleTheme: n } = q(), r = t === "dark";
678
+ return /* @__PURE__ */ z("button", {
679
679
  type: "button",
680
680
  onClick: n,
681
681
  className: [
@@ -687,76 +687,76 @@ function je({ className: e = "" }) {
687
687
  ].filter(Boolean).join(" "),
688
688
  title: r ? "Switch to light mode" : "Switch to dark mode",
689
689
  "aria-label": r ? "Switch to light mode" : "Switch to dark mode",
690
- children: L(r ? j : N, { size: 16 })
690
+ children: z(r ? M : P, { size: 16 })
691
691
  });
692
692
  }
693
693
  //#endregion
694
694
  //#region src/components/ui/AppLoader.jsx
695
- function Me({ label: e = "Loading...", fullscreen: t = !1, className: n = "" }) {
696
- return t ? /* @__PURE__ */ R("div", {
695
+ function Ne({ label: e = "Loading...", fullscreen: t = !1, className: n = "" }) {
696
+ return t ? /* @__PURE__ */ B("div", {
697
697
  className: `loader-fullscreen ${n}`,
698
- children: [/* @__PURE__ */ L(D, {
698
+ children: [/* @__PURE__ */ z(O, {
699
699
  size: 32,
700
700
  className: "loader-spin"
701
- }), e && /* @__PURE__ */ L("span", {
701
+ }), e && /* @__PURE__ */ z("span", {
702
702
  className: "loader-label",
703
703
  children: e
704
704
  })]
705
- }) : /* @__PURE__ */ R("div", {
705
+ }) : /* @__PURE__ */ B("div", {
706
706
  className: `loader ${n}`,
707
- children: [/* @__PURE__ */ L(D, {
707
+ children: [/* @__PURE__ */ z(O, {
708
708
  size: 20,
709
709
  className: "loader-spin"
710
- }), e && /* @__PURE__ */ L("span", {
710
+ }), e && /* @__PURE__ */ z("span", {
711
711
  className: "loader-label",
712
712
  children: e
713
713
  })]
714
714
  });
715
715
  }
716
- function Ne({ size: e = 16, className: t = "" }) {
717
- return /* @__PURE__ */ L(D, {
716
+ function Pe({ size: e = 16, className: t = "" }) {
717
+ return /* @__PURE__ */ z(O, {
718
718
  size: e,
719
719
  className: `loader-spin ${t}`
720
720
  });
721
721
  }
722
- function Pe({ label: e = "Loading...", fullscreen: t = !1, size: n = 64, darkSrc: r, lightSrc: i, alt: a = "FCC", className: o = "" }) {
723
- let s = /* @__PURE__ */ R("div", {
722
+ function Fe({ label: e = "Loading...", fullscreen: t = !1, size: n = 64, darkSrc: r, lightSrc: i, alt: a = "FCC", className: o = "" }) {
723
+ let s = /* @__PURE__ */ B("div", {
724
724
  className: "fcc-loader-stage",
725
725
  style: { "--fcc-loader-size": `${n}px` },
726
726
  "aria-hidden": "true",
727
727
  children: [
728
- /* @__PURE__ */ L("span", { className: "fcc-loader-ring" }),
729
- /* @__PURE__ */ L("span", { className: "fcc-loader-glow" }),
730
- /* @__PURE__ */ L(Ae, {
728
+ /* @__PURE__ */ z("span", { className: "fcc-loader-ring" }),
729
+ /* @__PURE__ */ z("span", { className: "fcc-loader-glow" }),
730
+ /* @__PURE__ */ z(je, {
731
731
  darkSrc: r,
732
732
  lightSrc: i,
733
733
  alt: a,
734
734
  className: "fcc-loader-logo"
735
735
  })
736
736
  ]
737
- }), c = t ? `fcc-loader fcc-loader-fullscreen ${o}`.trim() : `fcc-loader ${o}`.trim(), l = typeof e == "string" ? e.match(/^(.*?)\.{3}\s*$/) : null, u = l ? /* @__PURE__ */ R(I, { children: [l[1], /* @__PURE__ */ R("span", {
737
+ }), c = t ? `fcc-loader fcc-loader-fullscreen ${o}`.trim() : `fcc-loader ${o}`.trim(), l = typeof e == "string" ? e.match(/^(.*?)\.{3}\s*$/) : null, u = l ? /* @__PURE__ */ B(R, { children: [l[1], /* @__PURE__ */ B("span", {
738
738
  className: "fcc-loader-dots",
739
739
  "aria-hidden": "true",
740
740
  children: [
741
- /* @__PURE__ */ L("span", {
741
+ /* @__PURE__ */ z("span", {
742
742
  className: "fcc-loader-dot",
743
743
  children: "."
744
744
  }),
745
- /* @__PURE__ */ L("span", {
745
+ /* @__PURE__ */ z("span", {
746
746
  className: "fcc-loader-dot",
747
747
  children: "."
748
748
  }),
749
- /* @__PURE__ */ L("span", {
749
+ /* @__PURE__ */ z("span", {
750
750
  className: "fcc-loader-dot",
751
751
  children: "."
752
752
  })
753
753
  ]
754
754
  })] }) : e;
755
- return /* @__PURE__ */ R("div", {
755
+ return /* @__PURE__ */ B("div", {
756
756
  className: c,
757
757
  role: "status",
758
758
  "aria-live": "polite",
759
- children: [s, e && /* @__PURE__ */ L("span", {
759
+ children: [s, e && /* @__PURE__ */ z("span", {
760
760
  className: "fcc-loader-label",
761
761
  children: u
762
762
  })]
@@ -764,19 +764,21 @@ function Pe({ label: e = "Loading...", fullscreen: t = !1, size: n = 64, darkSrc
764
764
  }
765
765
  //#endregion
766
766
  //#region src/components/ui/FCCDetailsPanel.jsx
767
- function Fe({ open: e, onClose: t, title: n, header: r, children: a, loading: s = !1, loadingLabel: u = "Loading...", loaderSize: d = 64, loaderDarkSrc: f, loaderLightSrc: p, width: m, zIndex: h = 1100, showBackdrop: g = !0, resizable: _ = !0, minWidth: v = 360, storageKey: y, className: b = "" }) {
768
- let [x, S] = l(!1), [C, w] = l(!1), [T, E] = l(!1), [D, O] = l(() => {
767
+ function Ie({ open: e, onClose: t, title: n, header: r, children: a, loading: s = !1, loadingLabel: c = "Loading...", loaderSize: d = 64, loaderDarkSrc: f, loaderLightSrc: p, width: m, zIndex: h = 1100, showBackdrop: g = !0, resizable: _ = !0, minWidth: v = 360, storageKey: y, className: b = "" }) {
768
+ let [x, S] = u(!1), [C, w] = u(!1), [T, E] = u(!1), [D, O] = u(() => {
769
769
  if (!y || typeof window > "u") return null;
770
770
  let e = window.localStorage.getItem(y), t = e ? parseInt(e, 10) : NaN;
771
771
  return Number.isFinite(t) ? t : null;
772
- }), k = c(null), A = c(!1);
772
+ }), k = l(null), A = l(!1), [j, M] = u(null);
773
773
  o(() => {
774
+ e && (typeof document > "u" || M(document.querySelector(".fcc-main-window-content") || document.body));
775
+ }, [e]), o(() => {
774
776
  if (!e) return;
775
777
  S(!0), A.current = !1;
776
778
  let t = requestAnimationFrame(() => w(!0));
777
779
  return () => cancelAnimationFrame(t);
778
780
  }, [e]);
779
- let j = i(() => {
781
+ let N = i(() => {
780
782
  A.current || (A.current = !0, w(!1), window.setTimeout(() => {
781
783
  S(!1), t?.();
782
784
  }, 300));
@@ -784,10 +786,10 @@ function Fe({ open: e, onClose: t, title: n, header: r, children: a, loading: s
784
786
  if (o(() => {
785
787
  if (!x) return;
786
788
  function e(e) {
787
- e.key === "Escape" && (e.stopPropagation(), j());
789
+ e.key === "Escape" && (e.stopPropagation(), N());
788
790
  }
789
791
  return document.addEventListener("keydown", e), () => document.removeEventListener("keydown", e);
790
- }, [x, j]), o(() => {
792
+ }, [x, N]), o(() => {
791
793
  if (!T) return;
792
794
  function e(e) {
793
795
  let t = Math.max(v, window.innerWidth - e.clientX), n = window.innerWidth, r = Math.min(n, t);
@@ -803,47 +805,47 @@ function Fe({ open: e, onClose: t, title: n, header: r, children: a, loading: s
803
805
  T,
804
806
  v,
805
807
  y
806
- ]), !x || typeof document > "u") return null;
807
- let M = D == null ? m : `${D}px`;
808
- return z(/* @__PURE__ */ R("div", {
808
+ ]), !x || typeof document > "u" || !j) return null;
809
+ let P = D == null ? m : `${D}px`;
810
+ return V(/* @__PURE__ */ B("div", {
809
811
  className: `fcc-details-panel-root ${C ? "fcc-details-panel-root--visible" : ""}`,
810
812
  style: { zIndex: h },
811
- children: [g && /* @__PURE__ */ L("div", {
813
+ children: [g && /* @__PURE__ */ z("div", {
812
814
  className: "fcc-details-panel-backdrop",
813
- onClick: j,
815
+ onClick: N,
814
816
  "aria-hidden": "true"
815
- }), /* @__PURE__ */ R("div", {
817
+ }), /* @__PURE__ */ B("div", {
816
818
  ref: k,
817
819
  className: `fcc-details-panel ${b}`,
818
- style: M ? { width: M } : void 0,
820
+ style: P ? { width: P } : void 0,
819
821
  role: "dialog",
820
822
  "aria-modal": "true",
821
823
  children: [
822
- _ && /* @__PURE__ */ L("div", {
824
+ _ && /* @__PURE__ */ z("div", {
823
825
  className: "fcc-details-panel-resize",
824
826
  onMouseDown: (e) => {
825
827
  e.preventDefault(), E(!0);
826
828
  },
827
829
  title: "Drag to resize"
828
830
  }),
829
- r || /* @__PURE__ */ R("div", {
831
+ r || /* @__PURE__ */ B("div", {
830
832
  className: "fcc-details-panel-header",
831
- children: [/* @__PURE__ */ L("span", {
833
+ children: [/* @__PURE__ */ z("span", {
832
834
  className: "fcc-details-panel-title",
833
835
  children: n
834
- }), /* @__PURE__ */ L("button", {
836
+ }), /* @__PURE__ */ z("button", {
835
837
  className: "fcc-details-panel-close",
836
- onClick: j,
838
+ onClick: N,
837
839
  "aria-label": "Close",
838
- children: /* @__PURE__ */ L(F, { size: 14 })
840
+ children: /* @__PURE__ */ z(L, { size: 14 })
839
841
  })]
840
842
  }),
841
- /* @__PURE__ */ L("div", {
843
+ /* @__PURE__ */ z("div", {
842
844
  className: "fcc-details-panel-body",
843
- children: s ? /* @__PURE__ */ L("div", {
845
+ children: s ? /* @__PURE__ */ z("div", {
844
846
  className: "fcc-details-panel-loading",
845
- children: /* @__PURE__ */ L(Pe, {
846
- label: u,
847
+ children: /* @__PURE__ */ z(Fe, {
848
+ label: c,
847
849
  size: d,
848
850
  darkSrc: f,
849
851
  lightSrc: p
@@ -852,31 +854,31 @@ function Fe({ open: e, onClose: t, title: n, header: r, children: a, loading: s
852
854
  })
853
855
  ]
854
856
  })]
855
- }), document.body);
857
+ }), j);
856
858
  }
857
859
  //#endregion
858
860
  //#region src/components/ui/Accordion.jsx
859
- function Ie({ title: e, header: t, defaultOpen: n = !1, className: r = "", children: i }) {
860
- let [a, o] = l(n);
861
- return /* @__PURE__ */ R("div", {
861
+ function Le({ title: e, header: t, defaultOpen: n = !1, className: r = "", children: i }) {
862
+ let [a, o] = u(n);
863
+ return /* @__PURE__ */ B("div", {
862
864
  className: `accordion-item ${r}`,
863
- children: [/* @__PURE__ */ R("div", {
865
+ children: [/* @__PURE__ */ B("div", {
864
866
  className: `accordion-trigger ${a ? "expanded" : ""}`,
865
867
  onClick: () => o(!a),
866
868
  role: "button",
867
869
  "aria-expanded": a,
868
- children: [t || /* @__PURE__ */ L("span", {
870
+ children: [t || /* @__PURE__ */ z("span", {
869
871
  className: "accordion-trigger-title",
870
872
  children: e
871
- }), /* @__PURE__ */ L("span", {
873
+ }), /* @__PURE__ */ z("span", {
872
874
  className: "accordion-trigger-chevron",
873
- children: L(a ? _ : v, { size: 14 })
875
+ children: z(a ? v : y, { size: 14 })
874
876
  })]
875
- }), /* @__PURE__ */ L("div", {
877
+ }), /* @__PURE__ */ z("div", {
876
878
  className: `accordion-collapse ${a ? "open" : ""}`,
877
- children: /* @__PURE__ */ L("div", {
879
+ children: /* @__PURE__ */ z("div", {
878
880
  className: "accordion-collapse-inner",
879
- children: /* @__PURE__ */ L("div", {
881
+ children: /* @__PURE__ */ z("div", {
880
882
  className: "accordion-content",
881
883
  children: i
882
884
  })
@@ -884,37 +886,37 @@ function Ie({ title: e, header: t, defaultOpen: n = !1, className: r = "", child
884
886
  })]
885
887
  });
886
888
  }
887
- function Le({ items: e = [], className: t = "" }) {
888
- let [n, r] = l(/* @__PURE__ */ new Set());
889
+ function Re({ items: e = [], className: t = "" }) {
890
+ let [n, r] = u(/* @__PURE__ */ new Set());
889
891
  function i(e) {
890
892
  r((t) => {
891
893
  let n = new Set(t);
892
894
  return n.has(e) ? n.delete(e) : n.add(e), n;
893
895
  });
894
896
  }
895
- return /* @__PURE__ */ L("div", {
897
+ return /* @__PURE__ */ z("div", {
896
898
  className: `accordion ${t}`,
897
899
  children: e.map((e) => {
898
900
  let t = n.has(e.id);
899
- return /* @__PURE__ */ R("div", {
901
+ return /* @__PURE__ */ B("div", {
900
902
  className: "accordion-item",
901
- children: [/* @__PURE__ */ R("div", {
903
+ children: [/* @__PURE__ */ B("div", {
902
904
  className: `accordion-trigger ${t ? "expanded" : ""}`,
903
905
  onClick: () => i(e.id),
904
906
  role: "button",
905
907
  "aria-expanded": t,
906
- children: [e.header || /* @__PURE__ */ L("span", {
908
+ children: [e.header || /* @__PURE__ */ z("span", {
907
909
  className: "accordion-trigger-title",
908
910
  children: e.title
909
- }), /* @__PURE__ */ L("span", {
911
+ }), /* @__PURE__ */ z("span", {
910
912
  className: "accordion-trigger-chevron",
911
- children: L(t ? _ : v, { size: 14 })
913
+ children: z(t ? v : y, { size: 14 })
912
914
  })]
913
- }), /* @__PURE__ */ L("div", {
915
+ }), /* @__PURE__ */ z("div", {
914
916
  className: `accordion-collapse ${t ? "open" : ""}`,
915
- children: /* @__PURE__ */ L("div", {
917
+ children: /* @__PURE__ */ z("div", {
916
918
  className: "accordion-collapse-inner",
917
- children: /* @__PURE__ */ L("div", {
919
+ children: /* @__PURE__ */ z("div", {
918
920
  className: "accordion-content",
919
921
  children: e.content
920
922
  })
@@ -926,12 +928,12 @@ function Le({ items: e = [], className: t = "" }) {
926
928
  }
927
929
  //#endregion
928
930
  //#region src/components/ui/Avatar.jsx
929
- var Re = {
931
+ var ze = {
930
932
  sm: "avatar-sm",
931
933
  md: "",
932
934
  lg: "avatar-lg",
933
935
  xl: "avatar-xl"
934
- }, ze = [
936
+ }, Be = [
935
937
  "#5e6ad2",
936
938
  "#5bb98e",
937
939
  "#c9a84e",
@@ -940,14 +942,14 @@ var Re = {
940
942
  "#5a8ebf",
941
943
  "#c4a06a"
942
944
  ];
943
- function Be(e) {
945
+ function Ve(e) {
944
946
  let t = 0;
945
947
  for (let n = 0; n < e.length; n++) t = e.charCodeAt(n) + ((t << 5) - t);
946
- return ze[Math.abs(t) % ze.length];
948
+ return Be[Math.abs(t) % Be.length];
947
949
  }
948
950
  function Y({ imageUrl: e, initials: t, name: n, size: r = "md", className: i = "", style: a = {} }) {
949
- let [o, s] = l(!1), c = t || (n ? n.split(" ").map((e) => e[0]).join("").slice(0, 2).toUpperCase() : "?"), u = a.background || Be(c), d = Re[r] || "";
950
- return e && !o ? /* @__PURE__ */ L("img", {
951
+ let [o, s] = u(!1), c = t || (n ? n.split(" ").map((e) => e[0]).join("").slice(0, 2).toUpperCase() : "?"), l = a.background || Ve(c), d = ze[r] || "";
952
+ return e && !o ? /* @__PURE__ */ z("img", {
951
953
  src: e,
952
954
  alt: n || "",
953
955
  className: `avatar ${d} ${i}`,
@@ -956,10 +958,10 @@ function Y({ imageUrl: e, initials: t, name: n, size: r = "md", className: i = "
956
958
  ...a
957
959
  },
958
960
  onError: () => s(!0)
959
- }) : /* @__PURE__ */ L("div", {
961
+ }) : /* @__PURE__ */ z("div", {
960
962
  className: `avatar ${d} ${i}`,
961
963
  style: {
962
- background: u,
964
+ background: l,
963
965
  ...a
964
966
  },
965
967
  children: c
@@ -967,7 +969,7 @@ function Y({ imageUrl: e, initials: t, name: n, size: r = "md", className: i = "
967
969
  }
968
970
  //#endregion
969
971
  //#region src/components/ui/Badge.jsx
970
- var Ve = {
972
+ var He = {
971
973
  default: "var(--text-quaternary)",
972
974
  secondary: "var(--text-quaternary)",
973
975
  success: "var(--accent-green)",
@@ -979,11 +981,11 @@ var Ve = {
979
981
  orange: "var(--accent-orange)"
980
982
  };
981
983
  function X({ variant: e = "default", className: t = "", children: n, showDot: r = !0, ...i }) {
982
- let a = Ve[e] || Ve.default;
983
- return /* @__PURE__ */ R("span", {
984
+ let a = He[e] || He.default;
985
+ return /* @__PURE__ */ B("span", {
984
986
  className: `badge ${r ? "" : "badge--no-dot"} ${t}`.trim(),
985
987
  ...i,
986
- children: [r && /* @__PURE__ */ L("span", {
988
+ children: [r && /* @__PURE__ */ z("span", {
987
989
  className: "badge-dot",
988
990
  style: { background: a }
989
991
  }), n]
@@ -991,7 +993,7 @@ function X({ variant: e = "default", className: t = "", children: n, showDot: r
991
993
  }
992
994
  //#endregion
993
995
  //#region src/components/ui/Button.jsx
994
- var He = {
996
+ var Ue = {
995
997
  default: "btn-primary",
996
998
  destructive: "btn-danger",
997
999
  success: "btn-success",
@@ -1000,69 +1002,69 @@ var He = {
1000
1002
  secondary: "btn-secondary",
1001
1003
  ghost: "btn-ghost",
1002
1004
  link: "btn-link"
1003
- }, Ue = {
1005
+ }, We = {
1004
1006
  sm: "btn-sm",
1005
1007
  default: "",
1006
1008
  lg: "btn-lg",
1007
1009
  icon: "btn-icon"
1008
- }, We = n(function({ variant: e = "default", size: t = "default", className: n = "", children: r, ...i }, a) {
1009
- return /* @__PURE__ */ L("button", {
1010
+ }, Ge = n(function({ variant: e = "default", size: t = "default", className: n = "", children: r, ...i }, a) {
1011
+ return /* @__PURE__ */ z("button", {
1010
1012
  ref: a,
1011
1013
  className: [
1012
1014
  "btn",
1013
- He[e],
1014
- Ue[t],
1015
+ Ue[e],
1016
+ We[t],
1015
1017
  n
1016
1018
  ].filter(Boolean).join(" "),
1017
1019
  ...i,
1018
1020
  children: r
1019
1021
  });
1020
- }), Ge = {
1022
+ }), Ke = {
1021
1023
  default: "card-default",
1022
1024
  green: "card-green",
1023
1025
  red: "card-red",
1024
1026
  yellow: "card-yellow"
1025
- }, Ke = n(function({ variant: e = "default", className: t = "", children: n, ...r }, i) {
1026
- return /* @__PURE__ */ L("div", {
1027
+ }, qe = n(function({ variant: e = "default", className: t = "", children: n, ...r }, i) {
1028
+ return /* @__PURE__ */ z("div", {
1027
1029
  ref: i,
1028
1030
  className: [
1029
1031
  "card",
1030
- Ge[e],
1032
+ Ke[e],
1031
1033
  t
1032
1034
  ].filter(Boolean).join(" "),
1033
1035
  ...r,
1034
1036
  children: n
1035
1037
  });
1036
- }), qe = n(function({ className: e = "", children: t, ...n }, r) {
1037
- return /* @__PURE__ */ L("div", {
1038
+ }), Je = n(function({ className: e = "", children: t, ...n }, r) {
1039
+ return /* @__PURE__ */ z("div", {
1038
1040
  ref: r,
1039
1041
  className: `card-header ${e}`,
1040
1042
  ...n,
1041
1043
  children: t
1042
1044
  });
1043
- }), Je = n(function({ className: e = "", children: t, ...n }, r) {
1044
- return /* @__PURE__ */ L("h3", {
1045
+ }), Ye = n(function({ className: e = "", children: t, ...n }, r) {
1046
+ return /* @__PURE__ */ z("h3", {
1045
1047
  ref: r,
1046
1048
  className: `card-title ${e}`,
1047
1049
  ...n,
1048
1050
  children: t
1049
1051
  });
1050
- }), Ye = n(function({ className: e = "", children: t, ...n }, r) {
1051
- return /* @__PURE__ */ L("p", {
1052
+ }), Xe = n(function({ className: e = "", children: t, ...n }, r) {
1053
+ return /* @__PURE__ */ z("p", {
1052
1054
  ref: r,
1053
1055
  className: `card-description ${e}`,
1054
1056
  ...n,
1055
1057
  children: t
1056
1058
  });
1057
- }), Xe = n(function({ className: e = "", children: t, ...n }, r) {
1058
- return /* @__PURE__ */ L("div", {
1059
+ }), Ze = n(function({ className: e = "", children: t, ...n }, r) {
1060
+ return /* @__PURE__ */ z("div", {
1059
1061
  ref: r,
1060
1062
  className: `card-body ${e}`,
1061
1063
  ...n,
1062
1064
  children: t
1063
1065
  });
1064
- }), Ze = n(function({ className: e = "", children: t, ...n }, r) {
1065
- return /* @__PURE__ */ L("div", {
1066
+ }), Qe = n(function({ className: e = "", children: t, ...n }, r) {
1067
+ return /* @__PURE__ */ z("div", {
1066
1068
  ref: r,
1067
1069
  className: `card-footer ${e}`,
1068
1070
  ...n,
@@ -1071,8 +1073,8 @@ var He = {
1071
1073
  });
1072
1074
  //#endregion
1073
1075
  //#region src/components/ui/Dialog.jsx
1074
- function Qe({ open: e, onClose: t, children: n, className: r = "" }) {
1075
- let i = c(null);
1076
+ function $e({ open: e, onClose: t, children: n, className: r = "" }) {
1077
+ let i = l(null);
1076
1078
  return o(() => (e ? document.body.style.overflow = "hidden" : document.body.style.overflow = "", () => {
1077
1079
  document.body.style.overflow = "";
1078
1080
  }), [e]), o(() => {
@@ -1080,122 +1082,217 @@ function Qe({ open: e, onClose: t, children: n, className: r = "" }) {
1080
1082
  e.key === "Escape" && t?.();
1081
1083
  }
1082
1084
  return e && document.addEventListener("keydown", n), () => document.removeEventListener("keydown", n);
1083
- }, [e, t]), e ? /* @__PURE__ */ L("div", {
1085
+ }, [e, t]), e ? /* @__PURE__ */ z("div", {
1084
1086
  className: "dialog-overlay",
1085
1087
  ref: i,
1086
1088
  onClick: (e) => {
1087
1089
  e.target === i.current && t?.();
1088
1090
  },
1089
- children: /* @__PURE__ */ L("div", {
1091
+ children: /* @__PURE__ */ z("div", {
1090
1092
  className: `dialog ${r}`,
1091
1093
  children: n
1092
1094
  })
1093
1095
  }) : null;
1094
1096
  }
1095
- function $e({ children: e, onClose: t, className: n = "" }) {
1096
- return /* @__PURE__ */ R("div", {
1097
+ function et({ children: e, onClose: t, className: n = "" }) {
1098
+ return /* @__PURE__ */ B("div", {
1097
1099
  className: `dialog-header ${n}`,
1098
- children: [/* @__PURE__ */ L("div", {
1100
+ children: [/* @__PURE__ */ z("div", {
1099
1101
  style: { flex: 1 },
1100
1102
  children: e
1101
- }), t && /* @__PURE__ */ L("button", {
1103
+ }), t && /* @__PURE__ */ z("button", {
1102
1104
  className: "btn btn-ghost btn-icon btn-sm",
1103
1105
  onClick: t,
1104
- children: /* @__PURE__ */ L(F, { size: 16 })
1106
+ children: /* @__PURE__ */ z(L, { size: 16 })
1105
1107
  })]
1106
1108
  });
1107
1109
  }
1108
- function et({ children: e, className: t = "" }) {
1109
- return /* @__PURE__ */ L("h3", {
1110
+ function tt({ children: e, className: t = "" }) {
1111
+ return /* @__PURE__ */ z("h3", {
1110
1112
  className: `dialog-title ${t}`,
1111
1113
  children: e
1112
1114
  });
1113
1115
  }
1114
- function tt({ children: e, className: t = "" }) {
1115
- return /* @__PURE__ */ L("p", {
1116
+ function nt({ children: e, className: t = "" }) {
1117
+ return /* @__PURE__ */ z("p", {
1116
1118
  className: `dialog-description ${t}`,
1117
1119
  children: e
1118
1120
  });
1119
1121
  }
1120
- function nt({ children: e, className: t = "" }) {
1121
- return /* @__PURE__ */ L("div", {
1122
+ function rt({ children: e, className: t = "" }) {
1123
+ return /* @__PURE__ */ z("div", {
1122
1124
  className: `dialog-body ${t}`,
1123
1125
  children: e
1124
1126
  });
1125
1127
  }
1126
- function rt({ children: e, className: t = "" }) {
1127
- return /* @__PURE__ */ L("div", {
1128
+ function it({ children: e, className: t = "" }) {
1129
+ return /* @__PURE__ */ z("div", {
1128
1130
  className: `dialog-footer ${t}`,
1129
1131
  children: e
1130
1132
  });
1131
1133
  }
1132
1134
  //#endregion
1135
+ //#region src/components/ui/Input.jsx
1136
+ var at = n(function({ id: e, label: t, labelMode: n = "stacked", description: r, error: i, clearable: a = !1, startIcon: o, endIcon: c, placeholder: d, value: f, defaultValue: p, className: m = "", inputClassName: h = "", disabled: g = !1, type: _ = "text", "aria-describedby": v, "aria-invalid": y, onChange: b, ...x }, S) {
1137
+ let C = l(null), w = s(), T = e || w, E = i && i !== !0 ? i : r, D = E ? `${T}-helper` : void 0, O = !!(i || y), k = !!(t && n === "floating"), A = [v, D].filter(Boolean).join(" ") || void 0, j = k ? " " : d, M = f !== void 0, [N, P] = u(() => String(p ?? "")), F = a && !g && (M ? String(f ?? "") : N).length > 0;
1138
+ function I(e) {
1139
+ C.current = e, typeof S == "function" ? S(e) : S && (S.current = e);
1140
+ }
1141
+ function R(e) {
1142
+ M || P(e.target.value), b?.(e);
1143
+ }
1144
+ function V() {
1145
+ let e = C.current;
1146
+ e && ((Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype, "value")?.set)?.call(e, ""), e.dispatchEvent(new Event("input", { bubbles: !0 })), e.focus());
1147
+ }
1148
+ return /* @__PURE__ */ B("div", {
1149
+ className: ["fcc-input-field", m].filter(Boolean).join(" "),
1150
+ children: [
1151
+ t && !k ? /* @__PURE__ */ z("label", {
1152
+ className: "fcc-input-label",
1153
+ htmlFor: T,
1154
+ children: t
1155
+ }) : null,
1156
+ /* @__PURE__ */ B("div", {
1157
+ className: [
1158
+ "fcc-input-control",
1159
+ k ? "has-floating-label" : "",
1160
+ O ? "is-invalid" : "",
1161
+ g ? "is-disabled" : ""
1162
+ ].filter(Boolean).join(" "),
1163
+ children: [
1164
+ o ? /* @__PURE__ */ z("span", {
1165
+ className: "fcc-input-icon",
1166
+ "aria-hidden": "true",
1167
+ children: o
1168
+ }) : null,
1169
+ k ? /* @__PURE__ */ B("div", {
1170
+ className: "fcc-input-floating-slot",
1171
+ children: [/* @__PURE__ */ z("input", {
1172
+ ...x,
1173
+ ref: I,
1174
+ id: T,
1175
+ type: _,
1176
+ value: f,
1177
+ defaultValue: p,
1178
+ placeholder: j,
1179
+ disabled: g,
1180
+ "aria-invalid": O || void 0,
1181
+ "aria-describedby": A,
1182
+ onChange: R,
1183
+ className: [
1184
+ "fcc-input-element",
1185
+ "has-floating-label",
1186
+ h
1187
+ ].filter(Boolean).join(" ")
1188
+ }), /* @__PURE__ */ z("label", {
1189
+ className: "fcc-input-floating-label",
1190
+ htmlFor: T,
1191
+ children: t
1192
+ })]
1193
+ }) : /* @__PURE__ */ z("input", {
1194
+ ...x,
1195
+ ref: I,
1196
+ id: T,
1197
+ type: _,
1198
+ value: f,
1199
+ defaultValue: p,
1200
+ placeholder: j,
1201
+ disabled: g,
1202
+ "aria-invalid": O || void 0,
1203
+ "aria-describedby": A,
1204
+ onChange: R,
1205
+ className: ["fcc-input-element", h].filter(Boolean).join(" ")
1206
+ }),
1207
+ F ? /* @__PURE__ */ z("button", {
1208
+ type: "button",
1209
+ className: "fcc-input-clear",
1210
+ onClick: V,
1211
+ "aria-label": `Clear ${t || "input"}`,
1212
+ children: /* @__PURE__ */ z(L, { size: 12 })
1213
+ }) : null,
1214
+ c ? /* @__PURE__ */ z("span", {
1215
+ className: "fcc-input-icon",
1216
+ "aria-hidden": "true",
1217
+ children: c
1218
+ }) : null
1219
+ ]
1220
+ }),
1221
+ E ? /* @__PURE__ */ z("div", {
1222
+ id: D,
1223
+ className: ["fcc-input-helper", O ? "is-error" : ""].filter(Boolean).join(" "),
1224
+ children: E
1225
+ }) : null
1226
+ ]
1227
+ });
1228
+ });
1229
+ //#endregion
1133
1230
  //#region src/components/ui/DropdownMenu.jsx
1134
- function it({ trigger: e, children: t, align: n = "left", className: r = "" }) {
1135
- let [i, a] = l(!1), s = c(null);
1231
+ function ot({ trigger: e, children: t, align: n = "left", className: r = "" }) {
1232
+ let [i, a] = u(!1), s = l(null);
1136
1233
  return o(() => {
1137
1234
  function e(e) {
1138
1235
  s.current && !s.current.contains(e.target) && a(!1);
1139
1236
  }
1140
1237
  return document.addEventListener("mousedown", e), () => document.removeEventListener("mousedown", e);
1141
- }, []), /* @__PURE__ */ R("div", {
1238
+ }, []), /* @__PURE__ */ B("div", {
1142
1239
  ref: s,
1143
1240
  className: `dropdown-wrapper ${r}`,
1144
1241
  style: { position: "relative" },
1145
- children: [/* @__PURE__ */ L("div", {
1242
+ children: [/* @__PURE__ */ z("div", {
1146
1243
  onClick: () => a(!i),
1147
1244
  children: e
1148
- }), i && /* @__PURE__ */ L("div", {
1245
+ }), i && /* @__PURE__ */ z("div", {
1149
1246
  className: `dropdown dropdown-align-${n}`,
1150
1247
  onClick: () => a(!1),
1151
1248
  children: t
1152
1249
  })]
1153
1250
  });
1154
1251
  }
1155
- function at({ icon: e, children: t, shortcut: n, active: r, onClick: i, className: a = "" }) {
1156
- return /* @__PURE__ */ R("div", {
1252
+ function st({ icon: e, children: t, shortcut: n, active: r, onClick: i, className: a = "" }) {
1253
+ return /* @__PURE__ */ B("div", {
1157
1254
  className: `dropdown-item ${r ? "active" : ""} ${a}`,
1158
1255
  onClick: i,
1159
1256
  children: [
1160
- e && /* @__PURE__ */ L("span", {
1257
+ e && /* @__PURE__ */ z("span", {
1161
1258
  className: "dropdown-item-icon",
1162
1259
  children: e
1163
1260
  }),
1164
- /* @__PURE__ */ L("span", {
1261
+ /* @__PURE__ */ z("span", {
1165
1262
  style: { flex: 1 },
1166
1263
  children: t
1167
1264
  }),
1168
- n && /* @__PURE__ */ L("span", {
1265
+ n && /* @__PURE__ */ z("span", {
1169
1266
  className: "dropdown-shortcut",
1170
1267
  children: n
1171
1268
  })
1172
1269
  ]
1173
1270
  });
1174
1271
  }
1175
- function ot({ checked: e, onCheckedChange: t, children: n, className: r = "" }) {
1176
- return /* @__PURE__ */ R("div", {
1272
+ function ct({ checked: e, onCheckedChange: t, children: n, className: r = "" }) {
1273
+ return /* @__PURE__ */ B("div", {
1177
1274
  className: `dropdown-item ${r}`,
1178
1275
  onClick: () => t?.(!e),
1179
- children: [/* @__PURE__ */ L("span", {
1276
+ children: [/* @__PURE__ */ z("span", {
1180
1277
  className: "dropdown-item-icon",
1181
1278
  style: { opacity: +!!e },
1182
- children: /* @__PURE__ */ L(m, { size: 14 })
1279
+ children: /* @__PURE__ */ z(h, { size: 14 })
1183
1280
  }), n]
1184
1281
  });
1185
1282
  }
1186
- function st({ children: e, className: t = "" }) {
1187
- return /* @__PURE__ */ L("div", {
1283
+ function lt({ children: e, className: t = "" }) {
1284
+ return /* @__PURE__ */ z("div", {
1188
1285
  className: `dropdown-label ${t}`,
1189
1286
  children: e
1190
1287
  });
1191
1288
  }
1192
- function ct({ className: e = "" }) {
1193
- return /* @__PURE__ */ L("div", { className: `dropdown-divider ${e}` });
1289
+ function ut({ className: e = "" }) {
1290
+ return /* @__PURE__ */ z("div", { className: `dropdown-divider ${e}` });
1194
1291
  }
1195
1292
  //#endregion
1196
1293
  //#region src/components/ui/SearchableSelect.jsx
1197
- function lt({ options: e = [], value: t, onChange: n, placeholder: r = "Select...", searchPlaceholder: i = "Search...", allowEmpty: a = !1, disabled: s = !1, className: u = "" }) {
1198
- let [d, f] = l(!1), [p, h] = l(""), [g, v] = l(0), y = c(null), b = c(null), x = e.filter((e) => e.label.toLowerCase().includes(p.toLowerCase()) || e.description && e.description.toLowerCase().includes(p.toLowerCase())), S = e.find((e) => e.value === t);
1294
+ function dt({ options: e = [], value: t, onChange: n, placeholder: r = "Select...", searchPlaceholder: i = "Search...", allowEmpty: a = !1, disabled: s = !1, className: c = "" }) {
1295
+ let [d, f] = u(!1), [p, m] = u(""), [g, _] = u(0), y = l(null), b = l(null), x = e.filter((e) => e.label.toLowerCase().includes(p.toLowerCase()) || e.description && e.description.toLowerCase().includes(p.toLowerCase())), S = e.find((e) => e.value === t);
1199
1296
  o(() => {
1200
1297
  d && b.current && b.current.focus();
1201
1298
  }, [d]), o(() => {
@@ -1205,54 +1302,54 @@ function lt({ options: e = [], value: t, onChange: n, placeholder: r = "Select..
1205
1302
  return document.addEventListener("mousedown", e), () => document.removeEventListener("mousedown", e);
1206
1303
  }, []);
1207
1304
  function C(e) {
1208
- e.key === "ArrowDown" ? (e.preventDefault(), v((e) => Math.min(e + 1, x.length - 1))) : e.key === "ArrowUp" ? (e.preventDefault(), v((e) => Math.max(e - 1, 0))) : e.key === "Enter" && x[g] ? (n?.(x[g].value), f(!1), h("")) : e.key === "Escape" && (f(!1), h(""));
1305
+ e.key === "ArrowDown" ? (e.preventDefault(), _((e) => Math.min(e + 1, x.length - 1))) : e.key === "ArrowUp" ? (e.preventDefault(), _((e) => Math.max(e - 1, 0))) : e.key === "Enter" && x[g] ? (n?.(x[g].value), f(!1), m("")) : e.key === "Escape" && (f(!1), m(""));
1209
1306
  }
1210
- return /* @__PURE__ */ R("div", {
1307
+ return /* @__PURE__ */ B("div", {
1211
1308
  ref: y,
1212
- className: `searchable-select ${u}`,
1213
- children: [/* @__PURE__ */ R("button", {
1309
+ className: `searchable-select ${c}`,
1310
+ children: [/* @__PURE__ */ B("button", {
1214
1311
  className: "searchable-select-trigger",
1215
1312
  onClick: () => !s && f(!d),
1216
1313
  disabled: s,
1217
1314
  type: "button",
1218
- children: [/* @__PURE__ */ L("span", {
1315
+ children: [/* @__PURE__ */ z("span", {
1219
1316
  className: S ? "" : "searchable-select-placeholder",
1220
1317
  children: S ? S.label : r
1221
- }), /* @__PURE__ */ L(_, {
1318
+ }), /* @__PURE__ */ z(v, {
1222
1319
  size: 14,
1223
1320
  className: "searchable-select-chevron"
1224
1321
  })]
1225
- }), d && /* @__PURE__ */ R("div", {
1322
+ }), d && /* @__PURE__ */ B("div", {
1226
1323
  className: "searchable-select-dropdown",
1227
- children: [/* @__PURE__ */ R("div", {
1324
+ children: [/* @__PURE__ */ B("div", {
1228
1325
  className: "searchable-select-search",
1229
1326
  children: [
1230
- /* @__PURE__ */ L(M, { size: 14 }),
1231
- /* @__PURE__ */ L("input", {
1327
+ /* @__PURE__ */ z(N, { size: 14 }),
1328
+ /* @__PURE__ */ z("input", {
1232
1329
  ref: b,
1233
1330
  value: p,
1234
1331
  onChange: (e) => {
1235
- h(e.target.value), v(0);
1332
+ m(e.target.value), _(0);
1236
1333
  },
1237
1334
  onKeyDown: C,
1238
1335
  placeholder: i,
1239
1336
  className: "searchable-select-input"
1240
1337
  }),
1241
- p && /* @__PURE__ */ L("button", {
1338
+ p && /* @__PURE__ */ z("button", {
1242
1339
  className: "searchable-select-clear",
1243
- onClick: () => h(""),
1244
- children: /* @__PURE__ */ L(F, { size: 12 })
1340
+ onClick: () => m(""),
1341
+ children: /* @__PURE__ */ z(L, { size: 12 })
1245
1342
  })
1246
1343
  ]
1247
- }), /* @__PURE__ */ R("div", {
1344
+ }), /* @__PURE__ */ B("div", {
1248
1345
  className: "searchable-select-options",
1249
1346
  children: [
1250
- a && /* @__PURE__ */ L("div", {
1347
+ a && /* @__PURE__ */ z("div", {
1251
1348
  className: `searchable-select-option ${t ? "" : "selected"}`,
1252
1349
  onClick: () => {
1253
- n?.(null), f(!1), h("");
1350
+ n?.(null), f(!1), m("");
1254
1351
  },
1255
- children: /* @__PURE__ */ L("span", {
1352
+ children: /* @__PURE__ */ z("span", {
1256
1353
  style: {
1257
1354
  color: "var(--text-tertiary)",
1258
1355
  fontStyle: "italic"
@@ -1260,21 +1357,21 @@ function lt({ options: e = [], value: t, onChange: n, placeholder: r = "Select..
1260
1357
  children: "None"
1261
1358
  })
1262
1359
  }),
1263
- x.map((e, r) => /* @__PURE__ */ R("div", {
1360
+ x.map((e, r) => /* @__PURE__ */ B("div", {
1264
1361
  className: `searchable-select-option ${r === g ? "highlighted" : ""} ${e.value === t ? "selected" : ""}`,
1265
1362
  onClick: () => {
1266
- n?.(e.value), f(!1), h("");
1363
+ n?.(e.value), f(!1), m("");
1267
1364
  },
1268
- onMouseEnter: () => v(r),
1269
- children: [/* @__PURE__ */ R("div", {
1365
+ onMouseEnter: () => _(r),
1366
+ children: [/* @__PURE__ */ B("div", {
1270
1367
  className: "searchable-select-option-content",
1271
- children: [/* @__PURE__ */ L("span", { children: e.label }), e.description && /* @__PURE__ */ L("span", {
1368
+ children: [/* @__PURE__ */ z("span", { children: e.label }), e.description && /* @__PURE__ */ z("span", {
1272
1369
  className: "searchable-select-option-desc",
1273
1370
  children: e.description
1274
1371
  })]
1275
- }), e.value === t && /* @__PURE__ */ L(m, { size: 14 })]
1372
+ }), e.value === t && /* @__PURE__ */ z(h, { size: 14 })]
1276
1373
  }, e.value)),
1277
- x.length === 0 && /* @__PURE__ */ L("div", {
1374
+ x.length === 0 && /* @__PURE__ */ z("div", {
1278
1375
  className: "searchable-select-empty",
1279
1376
  children: "No results found"
1280
1377
  })
@@ -1285,8 +1382,8 @@ function lt({ options: e = [], value: t, onChange: n, placeholder: r = "Select..
1285
1382
  }
1286
1383
  //#endregion
1287
1384
  //#region src/components/ui/Sheet.jsx
1288
- function ut({ open: e, onClose: t, side: n = "right", title: r, children: i, className: a = "" }) {
1289
- let s = c(null);
1385
+ function ft({ open: e, onClose: t, side: n = "right", title: r, children: i, className: a = "" }) {
1386
+ let s = l(null);
1290
1387
  return o(() => (e ? document.body.style.overflow = "hidden" : document.body.style.overflow = "", () => {
1291
1388
  document.body.style.overflow = "";
1292
1389
  }), [e]), o(() => {
@@ -1294,54 +1391,54 @@ function ut({ open: e, onClose: t, side: n = "right", title: r, children: i, cla
1294
1391
  e.key === "Escape" && t?.();
1295
1392
  }
1296
1393
  return e && document.addEventListener("keydown", n), () => document.removeEventListener("keydown", n);
1297
- }, [e, t]), e ? /* @__PURE__ */ L("div", {
1394
+ }, [e, t]), e ? /* @__PURE__ */ z("div", {
1298
1395
  className: "sheet-overlay",
1299
1396
  ref: s,
1300
1397
  onClick: (e) => {
1301
1398
  e.target === s.current && t?.();
1302
1399
  },
1303
- children: /* @__PURE__ */ R("div", {
1400
+ children: /* @__PURE__ */ B("div", {
1304
1401
  className: `sheet sheet-${n} ${a}`,
1305
- children: [r && /* @__PURE__ */ R("div", {
1402
+ children: [r && /* @__PURE__ */ B("div", {
1306
1403
  className: "sheet-header",
1307
- children: [/* @__PURE__ */ L("h3", {
1404
+ children: [/* @__PURE__ */ z("h3", {
1308
1405
  className: "sheet-title",
1309
1406
  children: r
1310
- }), /* @__PURE__ */ L("button", {
1407
+ }), /* @__PURE__ */ z("button", {
1311
1408
  className: "btn btn-ghost btn-icon btn-sm",
1312
1409
  onClick: t,
1313
- children: /* @__PURE__ */ L(F, { size: 16 })
1410
+ children: /* @__PURE__ */ z(L, { size: 16 })
1314
1411
  })]
1315
- }), /* @__PURE__ */ L("div", {
1412
+ }), /* @__PURE__ */ z("div", {
1316
1413
  className: "sheet-body",
1317
1414
  children: i
1318
1415
  })]
1319
1416
  })
1320
1417
  }) : null;
1321
1418
  }
1322
- function dt({ children: e, className: t = "" }) {
1323
- return /* @__PURE__ */ L("div", {
1419
+ function pt({ children: e, className: t = "" }) {
1420
+ return /* @__PURE__ */ z("div", {
1324
1421
  className: `sheet-footer ${t}`,
1325
1422
  children: e
1326
1423
  });
1327
1424
  }
1328
1425
  //#endregion
1329
1426
  //#region src/components/ui/StatusMetric.jsx
1330
- function ft(...e) {
1427
+ function mt(...e) {
1331
1428
  return e.filter(Boolean).join(" ");
1332
1429
  }
1333
- var pt = {
1430
+ var ht = {
1334
1431
  default: "",
1335
1432
  warning: "status-metric--warning"
1336
1433
  };
1337
- function mt({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconSize: i = 12, className: a = "" }) {
1338
- let o = r || (t === "warning" ? d : x);
1339
- return /* @__PURE__ */ R("span", {
1340
- className: ft("status-metric", pt[t], a),
1341
- children: [n && o && /* @__PURE__ */ L("span", {
1434
+ function gt({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconSize: i = 12, className: a = "" }) {
1435
+ let o = r || (t === "warning" ? f : S);
1436
+ return /* @__PURE__ */ B("span", {
1437
+ className: mt("status-metric", ht[t], a),
1438
+ children: [n && o && /* @__PURE__ */ z("span", {
1342
1439
  className: "status-metric-icon",
1343
- children: /* @__PURE__ */ L(o, { size: i })
1344
- }), /* @__PURE__ */ L("span", {
1440
+ children: /* @__PURE__ */ z(o, { size: i })
1441
+ }), /* @__PURE__ */ z("span", {
1345
1442
  className: "status-metric-text",
1346
1443
  children: e
1347
1444
  })]
@@ -1349,19 +1446,19 @@ function mt({ children: e, tone: t = "default", showIcon: n = !0, icon: r, iconS
1349
1446
  }
1350
1447
  //#endregion
1351
1448
  //#region src/components/ui/Switch.jsx
1352
- function ht({ checked: e = !1, onCheckedChange: t, disabled: n = !1, size: r = "md", label: i }) {
1353
- return /* @__PURE__ */ R("div", {
1449
+ function _t({ checked: e = !1, onCheckedChange: t, disabled: n = !1, size: r = "md", label: i }) {
1450
+ return /* @__PURE__ */ B("div", {
1354
1451
  className: "toggle-row",
1355
- children: [i && /* @__PURE__ */ L("span", {
1452
+ children: [i && /* @__PURE__ */ z("span", {
1356
1453
  className: "toggle-text",
1357
1454
  children: i
1358
- }), /* @__PURE__ */ L("button", {
1455
+ }), /* @__PURE__ */ z("button", {
1359
1456
  className: `toggle ${e ? "active" : ""} ${r === "sm" ? "toggle-sm" : ""}`,
1360
1457
  onClick: () => !n && t?.(!e),
1361
1458
  disabled: n,
1362
1459
  role: "switch",
1363
1460
  "aria-checked": e,
1364
- children: /* @__PURE__ */ L("div", { className: "toggle-knob" })
1461
+ children: /* @__PURE__ */ z("div", { className: "toggle-knob" })
1365
1462
  })]
1366
1463
  });
1367
1464
  }
@@ -1369,41 +1466,73 @@ function ht({ checked: e = !1, onCheckedChange: t, disabled: n = !1, size: r = "
1369
1466
  //#region src/components/ui/Tabs.jsx
1370
1467
  var Z = e({
1371
1468
  value: "",
1372
- onChange: () => {}
1469
+ onChange: () => {},
1470
+ registerTrigger: () => {},
1471
+ getTriggerNode: () => null
1373
1472
  });
1374
- function gt({ defaultValue: e, value: t, onValueChange: n, children: r, className: i = "" }) {
1375
- let [a, o] = l(e || ""), s = t === void 0 ? a : t, c = n || o;
1376
- return /* @__PURE__ */ L(Z.Provider, {
1473
+ function vt({ defaultValue: e, value: t, onValueChange: n, children: r, className: a = "" }) {
1474
+ let [o, s] = u(e || ""), c = l(/* @__PURE__ */ new Map()), d = t === void 0 ? o : t, f = n || s, p = i((e, t) => {
1475
+ if (t) {
1476
+ c.current.set(e, t);
1477
+ return;
1478
+ }
1479
+ c.current.delete(e);
1480
+ }, []), m = i((e) => c.current.get(e) || null, []);
1481
+ return /* @__PURE__ */ z(Z.Provider, {
1377
1482
  value: {
1378
- value: s,
1379
- onChange: c
1483
+ value: d,
1484
+ onChange: f,
1485
+ registerTrigger: p,
1486
+ getTriggerNode: m
1380
1487
  },
1381
- children: /* @__PURE__ */ L("div", {
1382
- className: i,
1488
+ children: /* @__PURE__ */ z("div", {
1489
+ className: a,
1383
1490
  children: r
1384
1491
  })
1385
1492
  });
1386
1493
  }
1387
- function _t({ children: e, className: t = "" }) {
1388
- return /* @__PURE__ */ L("div", {
1494
+ function yt({ children: e, className: t = "" }) {
1495
+ let { value: n, getTriggerNode: r } = a(Z), i = l(null);
1496
+ return c(() => {
1497
+ let e = i.current, t = r(n);
1498
+ if (!e) return;
1499
+ if (!t) {
1500
+ e.style.setProperty("--tabs-indicator-width", "0px"), e.style.setProperty("--tabs-indicator-x", "0px"), e.removeAttribute("data-tabs-indicator-ready");
1501
+ return;
1502
+ }
1503
+ let a = () => {
1504
+ e.style.setProperty("--tabs-indicator-width", `${t.offsetWidth}px`), e.style.setProperty("--tabs-indicator-x", `${t.offsetLeft}px`), e.setAttribute("data-tabs-indicator-ready", "true");
1505
+ };
1506
+ a();
1507
+ let o = typeof ResizeObserver < "u" ? new ResizeObserver(a) : null;
1508
+ return o?.observe(e), o?.observe(t), window.addEventListener("resize", a), () => {
1509
+ o?.disconnect(), window.removeEventListener("resize", a);
1510
+ };
1511
+ }, [n, r]), /* @__PURE__ */ B("div", {
1512
+ ref: i,
1389
1513
  className: `tabs ${t}`,
1390
- children: e
1514
+ role: "tablist",
1515
+ children: [/* @__PURE__ */ z("span", {
1516
+ className: "tabs-indicator",
1517
+ "aria-hidden": "true"
1518
+ }), e]
1391
1519
  });
1392
1520
  }
1393
- function vt({ value: e, children: t, className: n = "" }) {
1394
- let { value: r, onChange: i } = a(Z), o = r === e;
1395
- return /* @__PURE__ */ L("button", {
1396
- className: `tab ${o ? "active" : ""} ${n}`,
1521
+ function bt({ value: e, children: t, className: n = "" }) {
1522
+ let { value: r, onChange: i, registerTrigger: o } = a(Z), s = r === e;
1523
+ return /* @__PURE__ */ z("button", {
1524
+ ref: (t) => o(e, t),
1525
+ className: `tab ${s ? "active" : ""} ${n}`,
1397
1526
  onClick: () => i(e),
1398
1527
  role: "tab",
1399
- "aria-selected": o,
1528
+ "aria-selected": s,
1400
1529
  type: "button",
1401
1530
  children: t
1402
1531
  });
1403
1532
  }
1404
- function yt({ value: e, children: t, className: n = "" }) {
1533
+ function xt({ value: e, children: t, className: n = "" }) {
1405
1534
  let { value: r } = a(Z);
1406
- return r === e ? /* @__PURE__ */ L("div", {
1535
+ return r === e ? /* @__PURE__ */ z("div", {
1407
1536
  className: n,
1408
1537
  role: "tabpanel",
1409
1538
  children: t
@@ -1411,23 +1540,23 @@ function yt({ value: e, children: t, className: n = "" }) {
1411
1540
  }
1412
1541
  //#endregion
1413
1542
  //#region src/components/ui/Tooltip.jsx
1414
- function bt({ content: e, side: t = "top", children: n, className: r = "" }) {
1415
- let [i, a] = l(!1), o = c(null);
1543
+ function St({ content: e, side: t = "top", children: n, className: r = "" }) {
1544
+ let [i, a] = u(!1), o = l(null);
1416
1545
  function s() {
1417
1546
  o.current = setTimeout(() => a(!0), 300);
1418
1547
  }
1419
- function u() {
1548
+ function c() {
1420
1549
  clearTimeout(o.current), a(!1);
1421
1550
  }
1422
- return /* @__PURE__ */ R("div", {
1551
+ return /* @__PURE__ */ B("div", {
1423
1552
  className: `tooltip-wrapper ${r}`,
1424
1553
  onMouseEnter: s,
1425
- onMouseLeave: u,
1554
+ onMouseLeave: c,
1426
1555
  style: {
1427
1556
  position: "relative",
1428
1557
  display: "inline-flex"
1429
1558
  },
1430
- children: [n, i && /* @__PURE__ */ L("div", {
1559
+ children: [n, i && /* @__PURE__ */ z("div", {
1431
1560
  className: `tooltip tooltip-${t}`,
1432
1561
  children: e
1433
1562
  })]
@@ -1435,17 +1564,17 @@ function bt({ content: e, side: t = "top", children: n, className: r = "" }) {
1435
1564
  }
1436
1565
  //#endregion
1437
1566
  //#region src/components/ui/viewModeDefaults.js
1438
- var xt = {
1439
- kanban: S,
1440
- board: S,
1441
- columns: S,
1442
- table: E,
1443
- list: E,
1444
- rows: E,
1445
- grid: T,
1446
- calendar: p,
1447
- map: k
1448
- }, St = [{
1567
+ var Ct = {
1568
+ kanban: C,
1569
+ board: C,
1570
+ columns: C,
1571
+ table: D,
1572
+ list: D,
1573
+ rows: D,
1574
+ grid: E,
1575
+ calendar: m,
1576
+ map: A
1577
+ }, wt = [{
1449
1578
  value: "kanban",
1450
1579
  label: "Kanban",
1451
1580
  title: "Board View"
@@ -1456,14 +1585,14 @@ var xt = {
1456
1585
  }];
1457
1586
  //#endregion
1458
1587
  //#region src/components/ui/ViewModeToggle.jsx
1459
- function Ct(e) {
1460
- return e.icon ? e.icon : xt[e.value] ?? null;
1588
+ function Tt(e) {
1589
+ return e.icon ? e.icon : Ct[e.value] ?? null;
1461
1590
  }
1462
- function wt(e, n) {
1591
+ function Et(e, n) {
1463
1592
  return e ? r(e) ? e : t(e, { size: n }) : null;
1464
1593
  }
1465
- function Tt({ options: e = St, value: t, defaultValue: n, onValueChange: r, ariaLabel: a = "View mode", iconSize: u = 16, showLabels: d = !1, className: f = "", optionClassName: p = "" }) {
1466
- let m = c(null), h = c(null), g = c(/* @__PURE__ */ new Map()), [_, v] = l(n ?? e[0]?.value ?? ""), y = t === void 0 ? _ : t, b = i(() => {
1594
+ function Dt({ options: e = wt, value: t, defaultValue: n, onValueChange: r, ariaLabel: a = "View mode", iconSize: s = 16, showLabels: d = !1, className: f = "", optionClassName: p = "" }) {
1595
+ let m = l(null), h = l(null), g = l(/* @__PURE__ */ new Map()), [_, v] = u(n ?? e[0]?.value ?? ""), y = t === void 0 ? _ : t, b = i(() => {
1467
1596
  let e = h.current, t = g.current.get(y);
1468
1597
  if (e) {
1469
1598
  if (!t) {
@@ -1476,13 +1605,13 @@ function Tt({ options: e = St, value: t, defaultValue: n, onValueChange: r, aria
1476
1605
  function x(e) {
1477
1606
  e.disabled || (t === void 0 && v(e.value), r?.(e.value, e));
1478
1607
  }
1479
- return s(() => {
1608
+ return c(() => {
1480
1609
  b();
1481
1610
  }, [
1482
1611
  b,
1483
1612
  e,
1484
1613
  d,
1485
- u,
1614
+ s,
1486
1615
  f,
1487
1616
  p
1488
1617
  ]), o(() => {
@@ -1507,10 +1636,10 @@ function Tt({ options: e = St, value: t, defaultValue: n, onValueChange: r, aria
1507
1636
  b,
1508
1637
  e,
1509
1638
  d,
1510
- u,
1639
+ s,
1511
1640
  f,
1512
1641
  p
1513
- ]), /* @__PURE__ */ R("div", {
1642
+ ]), /* @__PURE__ */ B("div", {
1514
1643
  ref: m,
1515
1644
  className: [
1516
1645
  "view-mode-toggle",
@@ -1519,13 +1648,13 @@ function Tt({ options: e = St, value: t, defaultValue: n, onValueChange: r, aria
1519
1648
  ].filter(Boolean).join(" "),
1520
1649
  role: "group",
1521
1650
  "aria-label": a,
1522
- children: [/* @__PURE__ */ L("span", {
1651
+ children: [/* @__PURE__ */ z("span", {
1523
1652
  ref: h,
1524
1653
  "aria-hidden": "true",
1525
1654
  className: "view-mode-toggle-indicator"
1526
1655
  }), e.map((e) => {
1527
- let t = e.value === y, n = wt(Ct(e), u);
1528
- return /* @__PURE__ */ R("button", {
1656
+ let t = e.value === y, n = Et(Tt(e), s);
1657
+ return /* @__PURE__ */ B("button", {
1529
1658
  type: "button",
1530
1659
  "aria-pressed": t,
1531
1660
  disabled: e.disabled,
@@ -1541,10 +1670,10 @@ function Tt({ options: e = St, value: t, defaultValue: n, onValueChange: r, aria
1541
1670
  p
1542
1671
  ].filter(Boolean).join(" "),
1543
1672
  onClick: () => x(e),
1544
- children: [n && /* @__PURE__ */ L("span", {
1673
+ children: [n && /* @__PURE__ */ z("span", {
1545
1674
  className: "view-mode-toggle-icon",
1546
1675
  children: n
1547
- }), d && /* @__PURE__ */ L("span", {
1676
+ }), d && /* @__PURE__ */ z("span", {
1548
1677
  className: "view-mode-toggle-label",
1549
1678
  children: e.label
1550
1679
  })]
@@ -1554,11 +1683,11 @@ function Tt({ options: e = St, value: t, defaultValue: n, onValueChange: r, aria
1554
1683
  }
1555
1684
  //#endregion
1556
1685
  //#region src/components/ui/WorkspaceTabs.jsx
1557
- function Et(e, n) {
1686
+ function Ot(e, n) {
1558
1687
  return e ? r(e) ? e : t(e, { size: n }) : null;
1559
1688
  }
1560
- function Dt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLabel: a = "Workspace tabs", iconSize: u = 14, variant: d = "plain", className: f = "", itemClassName: p = "" }) {
1561
- let m = c(null), h = c(null), g = c(/* @__PURE__ */ new Map()), [_, v] = l(n ?? e[0]?.id ?? ""), y = t === void 0 ? _ : t, b = i(() => {
1689
+ function kt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLabel: a = "Workspace tabs", iconSize: s = 14, variant: d = "plain", className: f = "", itemClassName: p = "" }) {
1690
+ let m = l(null), h = l(null), g = l(/* @__PURE__ */ new Map()), [_, v] = u(n ?? e[0]?.id ?? ""), y = t === void 0 ? _ : t, b = i(() => {
1562
1691
  let e = h.current, t = g.current.get(y);
1563
1692
  if (e) {
1564
1693
  if (!t) {
@@ -1571,12 +1700,12 @@ function Dt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
1571
1700
  function x(e) {
1572
1701
  e.disabled || (t === void 0 && v(e.id), r?.(e.id, e));
1573
1702
  }
1574
- return s(() => {
1703
+ return c(() => {
1575
1704
  b();
1576
1705
  }, [
1577
1706
  b,
1578
1707
  e,
1579
- u,
1708
+ s,
1580
1709
  d,
1581
1710
  f,
1582
1711
  p
@@ -1601,11 +1730,11 @@ function Dt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
1601
1730
  }, [
1602
1731
  b,
1603
1732
  e,
1604
- u,
1733
+ s,
1605
1734
  d,
1606
1735
  f,
1607
1736
  p
1608
- ]), /* @__PURE__ */ R("div", {
1737
+ ]), /* @__PURE__ */ B("div", {
1609
1738
  ref: m,
1610
1739
  className: [
1611
1740
  "workspace-tabs",
@@ -1614,13 +1743,13 @@ function Dt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
1614
1743
  ].filter(Boolean).join(" "),
1615
1744
  role: "tablist",
1616
1745
  "aria-label": a,
1617
- children: [/* @__PURE__ */ L("span", {
1746
+ children: [/* @__PURE__ */ z("span", {
1618
1747
  ref: h,
1619
1748
  "aria-hidden": "true",
1620
1749
  className: "workspace-tabs-indicator"
1621
1750
  }), e.map((e) => {
1622
- let t = e.id === y, n = Et(e.icon, u);
1623
- return /* @__PURE__ */ R("button", {
1751
+ let t = e.id === y, n = Ot(e.icon, s);
1752
+ return /* @__PURE__ */ B("button", {
1624
1753
  type: "button",
1625
1754
  role: "tab",
1626
1755
  "aria-selected": t,
@@ -1637,15 +1766,15 @@ function Dt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
1637
1766
  ].filter(Boolean).join(" "),
1638
1767
  onClick: () => x(e),
1639
1768
  children: [
1640
- n && /* @__PURE__ */ L("span", {
1769
+ n && /* @__PURE__ */ z("span", {
1641
1770
  className: "workspace-tab-icon",
1642
1771
  children: n
1643
1772
  }),
1644
- /* @__PURE__ */ L("span", {
1773
+ /* @__PURE__ */ z("span", {
1645
1774
  className: "workspace-tab-label",
1646
1775
  children: e.label
1647
1776
  }),
1648
- e.badge != null && /* @__PURE__ */ L("span", {
1777
+ e.badge != null && /* @__PURE__ */ z("span", {
1649
1778
  className: "workspace-tab-badge",
1650
1779
  children: e.badge
1651
1780
  })
@@ -1656,35 +1785,35 @@ function Dt({ items: e = [], value: t, defaultValue: n, onValueChange: r, ariaLa
1656
1785
  }
1657
1786
  //#endregion
1658
1787
  //#region src/components/data/ActivityFeed.jsx
1659
- function Ot({ items: e = [], className: t = "" }) {
1660
- return /* @__PURE__ */ L("div", {
1788
+ function At({ items: e = [], className: t = "" }) {
1789
+ return /* @__PURE__ */ z("div", {
1661
1790
  className: `activity-feed ${t}`,
1662
- children: e.map((e, t) => /* @__PURE__ */ R("div", {
1791
+ children: e.map((e, t) => /* @__PURE__ */ B("div", {
1663
1792
  className: "activity-item",
1664
- children: [/* @__PURE__ */ L("div", {
1793
+ children: [/* @__PURE__ */ z("div", {
1665
1794
  className: "activity-avatar",
1666
- children: /* @__PURE__ */ L(Y, {
1795
+ children: /* @__PURE__ */ z(Y, {
1667
1796
  name: e.user,
1668
1797
  size: "sm"
1669
1798
  })
1670
- }), /* @__PURE__ */ R("div", {
1799
+ }), /* @__PURE__ */ B("div", {
1671
1800
  className: "activity-content",
1672
1801
  children: [
1673
- /* @__PURE__ */ R("div", {
1802
+ /* @__PURE__ */ B("div", {
1674
1803
  className: "activity-header",
1675
- children: [/* @__PURE__ */ L("span", {
1804
+ children: [/* @__PURE__ */ z("span", {
1676
1805
  className: "activity-name",
1677
1806
  children: e.user
1678
- }), /* @__PURE__ */ L("span", {
1807
+ }), /* @__PURE__ */ z("span", {
1679
1808
  className: "activity-time",
1680
1809
  children: e.time
1681
1810
  })]
1682
1811
  }),
1683
- /* @__PURE__ */ L("div", {
1812
+ /* @__PURE__ */ z("div", {
1684
1813
  className: "activity-text",
1685
1814
  children: e.text
1686
1815
  }),
1687
- e.meta && /* @__PURE__ */ L("div", {
1816
+ e.meta && /* @__PURE__ */ z("div", {
1688
1817
  className: "activity-meta",
1689
1818
  children: e.meta
1690
1819
  })
@@ -1695,8 +1824,8 @@ function Ot({ items: e = [], className: t = "" }) {
1695
1824
  }
1696
1825
  //#endregion
1697
1826
  //#region src/components/data/CommandBar.jsx
1698
- function kt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i = "Type a command or search..." }) {
1699
- let [a, s] = l(""), [u, d] = l(0), f = c(null);
1827
+ function jt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i = "Type a command or search..." }) {
1828
+ let [a, s] = u(""), [c, d] = u(0), f = l(null);
1700
1829
  if (o(() => {
1701
1830
  if (e) {
1702
1831
  let e = setTimeout(() => {
@@ -1718,21 +1847,21 @@ function kt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i =
1718
1847
  showGroup: t === 0 || e.group !== p[t - 1].group
1719
1848
  }));
1720
1849
  function h(e) {
1721
- e.key === "ArrowDown" ? (e.preventDefault(), d((e) => Math.min(e + 1, p.length - 1))) : e.key === "ArrowUp" ? (e.preventDefault(), d((e) => Math.max(e - 1, 0))) : e.key === "Enter" && p[u] ? (r?.(p[u]), t?.()) : e.key === "Escape" && t?.();
1850
+ e.key === "ArrowDown" ? (e.preventDefault(), d((e) => Math.min(e + 1, p.length - 1))) : e.key === "ArrowUp" ? (e.preventDefault(), d((e) => Math.max(e - 1, 0))) : e.key === "Enter" && p[c] ? (r?.(p[c]), t?.()) : e.key === "Escape" && t?.();
1722
1851
  }
1723
- return /* @__PURE__ */ L("div", {
1852
+ return /* @__PURE__ */ z("div", {
1724
1853
  className: "dialog-overlay",
1725
1854
  onClick: (e) => {
1726
1855
  e.target === e.currentTarget && t?.();
1727
1856
  },
1728
- children: /* @__PURE__ */ R("div", {
1857
+ children: /* @__PURE__ */ B("div", {
1729
1858
  className: "command-palette",
1730
- children: [/* @__PURE__ */ R("div", {
1859
+ children: [/* @__PURE__ */ B("div", {
1731
1860
  className: "command-input-wrapper",
1732
- children: [/* @__PURE__ */ L("span", {
1861
+ children: [/* @__PURE__ */ z("span", {
1733
1862
  className: "command-input-icon",
1734
- children: /* @__PURE__ */ L(M, { size: 16 })
1735
- }), /* @__PURE__ */ L("input", {
1863
+ children: /* @__PURE__ */ z(N, { size: 16 })
1864
+ }), /* @__PURE__ */ z("input", {
1736
1865
  ref: f,
1737
1866
  className: "command-input",
1738
1867
  value: a,
@@ -1742,29 +1871,29 @@ function kt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i =
1742
1871
  onKeyDown: h,
1743
1872
  placeholder: i
1744
1873
  })]
1745
- }), /* @__PURE__ */ R("div", {
1874
+ }), /* @__PURE__ */ B("div", {
1746
1875
  className: "command-results",
1747
- children: [m.map((e, n) => /* @__PURE__ */ R("div", { children: [e.showGroup && /* @__PURE__ */ L("div", {
1876
+ children: [m.map((e, n) => /* @__PURE__ */ B("div", { children: [e.showGroup && /* @__PURE__ */ z("div", {
1748
1877
  className: "command-group-label",
1749
1878
  children: e.group
1750
- }), /* @__PURE__ */ R("div", {
1751
- className: `dropdown-item ${n === u ? "active" : ""}`,
1879
+ }), /* @__PURE__ */ B("div", {
1880
+ className: `dropdown-item ${n === c ? "active" : ""}`,
1752
1881
  onClick: () => {
1753
1882
  r?.(e), t?.();
1754
1883
  },
1755
1884
  onMouseEnter: () => d(n),
1756
1885
  children: [
1757
- e.icon && /* @__PURE__ */ L("span", {
1886
+ e.icon && /* @__PURE__ */ z("span", {
1758
1887
  className: "dropdown-item-icon",
1759
1888
  children: e.icon
1760
1889
  }),
1761
1890
  e.label,
1762
- e.shortcut && /* @__PURE__ */ L("span", {
1891
+ e.shortcut && /* @__PURE__ */ z("span", {
1763
1892
  className: "dropdown-shortcut",
1764
1893
  children: e.shortcut
1765
1894
  })
1766
1895
  ]
1767
- })] }, e.id || n)), p.length === 0 && /* @__PURE__ */ L("div", {
1896
+ })] }, e.id || n)), p.length === 0 && /* @__PURE__ */ z("div", {
1768
1897
  style: {
1769
1898
  padding: "var(--space-4)",
1770
1899
  textAlign: "center",
@@ -1779,35 +1908,35 @@ function kt({ open: e, onClose: t, groups: n = [], onSelect: r, placeholder: i =
1779
1908
  }
1780
1909
  //#endregion
1781
1910
  //#region src/components/data/DataTable.jsx
1782
- function At({ columns: e, data: t, onRowClick: n, className: r = "" }) {
1783
- let [i, a] = l(null), [o, s] = l("asc");
1911
+ function Mt({ columns: e, data: t, onRowClick: n, className: r = "" }) {
1912
+ let [i, a] = u(null), [o, s] = u("asc");
1784
1913
  function c(e) {
1785
1914
  i === e ? s((e) => e === "asc" ? "desc" : "asc") : (a(e), s("asc"));
1786
1915
  }
1787
- let u = i ? [...t].sort((e, t) => {
1916
+ let l = i ? [...t].sort((e, t) => {
1788
1917
  let n = e[i], r = t[i], a = typeof n == "number" ? n - r : String(n).localeCompare(String(r));
1789
1918
  return o === "asc" ? a : -a;
1790
1919
  }) : t;
1791
- return /* @__PURE__ */ L("div", {
1920
+ return /* @__PURE__ */ z("div", {
1792
1921
  className: `table-wrapper ${r}`,
1793
- children: /* @__PURE__ */ R("table", { children: [/* @__PURE__ */ L("thead", { children: /* @__PURE__ */ L("tr", { children: e.map((e) => /* @__PURE__ */ L("th", {
1922
+ children: /* @__PURE__ */ B("table", { children: [/* @__PURE__ */ z("thead", { children: /* @__PURE__ */ z("tr", { children: e.map((e) => /* @__PURE__ */ z("th", {
1794
1923
  onClick: () => e.sortable !== !1 && c(e.key),
1795
1924
  style: {
1796
1925
  cursor: e.sortable === !1 ? "default" : "pointer",
1797
1926
  width: e.width
1798
1927
  },
1799
- children: /* @__PURE__ */ R("span", {
1928
+ children: /* @__PURE__ */ B("span", {
1800
1929
  className: "th-content",
1801
- children: [e.label, e.sortable !== !1 && /* @__PURE__ */ L("span", {
1930
+ children: [e.label, e.sortable !== !1 && /* @__PURE__ */ z("span", {
1802
1931
  className: "th-sort-icon",
1803
- children: i === e.key ? L(o === "asc" ? y : _, { size: 12 }) : /* @__PURE__ */ L(b, { size: 12 })
1932
+ children: i === e.key ? z(o === "asc" ? b : v, { size: 12 }) : /* @__PURE__ */ z(x, { size: 12 })
1804
1933
  })]
1805
1934
  })
1806
- }, e.key)) }) }), /* @__PURE__ */ R("tbody", { children: [u.map((t, r) => /* @__PURE__ */ L("tr", {
1935
+ }, e.key)) }) }), /* @__PURE__ */ B("tbody", { children: [l.map((t, r) => /* @__PURE__ */ z("tr", {
1807
1936
  onClick: () => n?.(t),
1808
1937
  style: { cursor: n ? "pointer" : "default" },
1809
- children: e.map((e) => /* @__PURE__ */ L("td", { children: e.render ? e.render(t[e.key], t) : t[e.key] }, e.key))
1810
- }, t.id || r)), u.length === 0 && /* @__PURE__ */ L("tr", { children: /* @__PURE__ */ L("td", {
1938
+ children: e.map((e) => /* @__PURE__ */ z("td", { children: e.render ? e.render(t[e.key], t) : t[e.key] }, e.key))
1939
+ }, t.id || r)), l.length === 0 && /* @__PURE__ */ z("tr", { children: /* @__PURE__ */ z("td", {
1811
1940
  colSpan: e.length,
1812
1941
  style: {
1813
1942
  textAlign: "center",
@@ -1820,44 +1949,44 @@ function At({ columns: e, data: t, onRowClick: n, className: r = "" }) {
1820
1949
  }
1821
1950
  //#endregion
1822
1951
  //#region src/components/data/FilterBar.jsx
1823
- function jt({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAll: r, children: i, className: a = "" }) {
1952
+ function Nt({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAll: r, children: i, className: a = "" }) {
1824
1953
  let o = n.some((e) => e.active);
1825
- return /* @__PURE__ */ R("div", {
1954
+ return /* @__PURE__ */ B("div", {
1826
1955
  className: `filter-bar ${a}`,
1827
1956
  children: [
1828
- /* @__PURE__ */ R("div", {
1957
+ /* @__PURE__ */ B("div", {
1829
1958
  className: "filter-bar-search",
1830
1959
  children: [
1831
- /* @__PURE__ */ L(M, { size: 14 }),
1832
- /* @__PURE__ */ L("input", {
1960
+ /* @__PURE__ */ z(N, { size: 14 }),
1961
+ /* @__PURE__ */ z("input", {
1833
1962
  className: "filter-bar-input",
1834
1963
  value: e,
1835
1964
  onChange: (e) => t?.(e.target.value),
1836
1965
  placeholder: "Search..."
1837
1966
  }),
1838
- e && /* @__PURE__ */ L("button", {
1967
+ e && /* @__PURE__ */ z("button", {
1839
1968
  className: "filter-bar-clear",
1840
1969
  onClick: () => t?.(""),
1841
- children: /* @__PURE__ */ L(F, { size: 12 })
1970
+ children: /* @__PURE__ */ z(L, { size: 12 })
1842
1971
  })
1843
1972
  ]
1844
1973
  }),
1845
- /* @__PURE__ */ R("div", {
1974
+ /* @__PURE__ */ B("div", {
1846
1975
  className: "filter-bar-filters",
1847
1976
  children: [
1848
- /* @__PURE__ */ L(C, {
1977
+ /* @__PURE__ */ z(w, {
1849
1978
  size: 14,
1850
1979
  style: { color: "var(--text-tertiary)" }
1851
1980
  }),
1852
- n.map((e) => /* @__PURE__ */ R("button", {
1981
+ n.map((e) => /* @__PURE__ */ B("button", {
1853
1982
  className: `filter-chip ${e.active ? "active" : ""}`,
1854
1983
  onClick: e.onClick,
1855
- children: [e.label, e.active && e.value && /* @__PURE__ */ L("span", {
1984
+ children: [e.label, e.active && e.value && /* @__PURE__ */ z("span", {
1856
1985
  className: "filter-chip-value",
1857
1986
  children: e.value
1858
1987
  })]
1859
1988
  }, e.label)),
1860
- o && r && /* @__PURE__ */ L("button", {
1989
+ o && r && /* @__PURE__ */ z("button", {
1861
1990
  className: "filter-bar-clear-all",
1862
1991
  onClick: r,
1863
1992
  children: "Clear all"
@@ -1873,76 +2002,76 @@ function jt({ searchValue: e = "", onSearchChange: t, filters: n = [], onClearAl
1873
2002
  function Q(...e) {
1874
2003
  return e.filter(Boolean).join(" ");
1875
2004
  }
1876
- function Mt({ children: e, className: t = "", style: n }) {
1877
- return /* @__PURE__ */ L("div", {
2005
+ function Pt({ children: e, className: t = "", style: n }) {
2006
+ return /* @__PURE__ */ z("div", {
1878
2007
  className: Q("kanban-board", t),
1879
2008
  style: n,
1880
2009
  children: e
1881
2010
  });
1882
2011
  }
1883
- function Nt({ title: e, count: t, color: n, headerAction: r = null, countVariant: i = "pill", children: a, className: o = "", style: s, headerClassName: c = "", headerStyle: l, countClassName: u = "", bodyClassName: d = "", bodyStyle: f }) {
1884
- return /* @__PURE__ */ R("div", {
2012
+ function Ft({ title: e, count: t, color: n, headerAction: r = null, countVariant: i = "pill", children: a, className: o = "", style: s, headerClassName: c = "", headerStyle: l, countClassName: u = "", bodyClassName: d = "", bodyStyle: f }) {
2013
+ return /* @__PURE__ */ B("div", {
1885
2014
  className: Q("kanban-column", o),
1886
2015
  style: s,
1887
- children: [/* @__PURE__ */ R("div", {
2016
+ children: [/* @__PURE__ */ B("div", {
1888
2017
  className: Q("kanban-column-header", c),
1889
2018
  style: l,
1890
- children: [/* @__PURE__ */ R("div", {
2019
+ children: [/* @__PURE__ */ B("div", {
1891
2020
  className: "kanban-column-title",
1892
2021
  children: [
1893
- n && /* @__PURE__ */ L("span", {
2022
+ n && /* @__PURE__ */ z("span", {
1894
2023
  className: "kanban-column-dot",
1895
2024
  style: { background: n }
1896
2025
  }),
1897
- /* @__PURE__ */ L("span", {
2026
+ /* @__PURE__ */ z("span", {
1898
2027
  className: "kanban-column-title-label",
1899
2028
  children: e
1900
2029
  }),
1901
- t != null && /* @__PURE__ */ L(X, {
2030
+ t != null && /* @__PURE__ */ z(X, {
1902
2031
  showDot: !1,
1903
2032
  className: Q("workflow-column-count", "kanban-column-count", i === "inline" ? "kanban-column-count--inline" : "", u),
1904
2033
  children: t
1905
2034
  })
1906
2035
  ]
1907
- }), r && /* @__PURE__ */ L("div", {
2036
+ }), r && /* @__PURE__ */ z("div", {
1908
2037
  className: "kanban-column-header-meta",
1909
- children: /* @__PURE__ */ L("div", {
2038
+ children: /* @__PURE__ */ z("div", {
1910
2039
  className: "kanban-column-header-action",
1911
2040
  children: r
1912
2041
  })
1913
2042
  })]
1914
- }), /* @__PURE__ */ L("div", {
2043
+ }), /* @__PURE__ */ z("div", {
1915
2044
  className: Q("kanban-column-body", d),
1916
2045
  style: f,
1917
2046
  children: a
1918
2047
  })]
1919
2048
  });
1920
2049
  }
1921
- function Pt({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd: a, children: o, onClick: s, className: c = "", style: l }) {
2050
+ function It({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd: a, children: o, onClick: s, className: c = "", style: l }) {
1922
2051
  let u = a ?? r;
1923
- return /* @__PURE__ */ L("div", {
2052
+ return /* @__PURE__ */ z("div", {
1924
2053
  className: Q("kanban-card", c),
1925
2054
  onClick: s,
1926
2055
  style: l,
1927
- children: o || /* @__PURE__ */ R(I, { children: [/* @__PURE__ */ R("div", {
2056
+ children: o || /* @__PURE__ */ B(R, { children: [/* @__PURE__ */ B("div", {
1928
2057
  className: "kanban-card-body",
1929
2058
  children: [
1930
- e && /* @__PURE__ */ L("div", {
2059
+ e && /* @__PURE__ */ z("div", {
1931
2060
  className: "kanban-card-title",
1932
2061
  children: e
1933
2062
  }),
1934
- t && /* @__PURE__ */ L("div", {
2063
+ t && /* @__PURE__ */ z("div", {
1935
2064
  className: "kanban-card-subtitle",
1936
2065
  children: t
1937
2066
  }),
1938
- n && /* @__PURE__ */ L("div", {
2067
+ n && /* @__PURE__ */ z("div", {
1939
2068
  className: "kanban-card-badges",
1940
2069
  children: n
1941
2070
  })
1942
2071
  ]
1943
- }), (u || i) && /* @__PURE__ */ R("div", {
2072
+ }), (u || i) && /* @__PURE__ */ B("div", {
1944
2073
  className: "kanban-card-footer",
1945
- children: [i && /* @__PURE__ */ L("div", {
2074
+ children: [i && /* @__PURE__ */ z("div", {
1946
2075
  className: "kanban-card-footer-text",
1947
2076
  children: i
1948
2077
  }), u]
@@ -1954,72 +2083,72 @@ function Pt({ title: e, subtitle: t, badges: n, avatar: r, footer: i, footerEnd:
1954
2083
  function $(...e) {
1955
2084
  return e.filter(Boolean).join(" ");
1956
2085
  }
1957
- function Ft({ children: e, className: t = "" }) {
1958
- return /* @__PURE__ */ L("div", {
2086
+ function Lt({ children: e, className: t = "" }) {
2087
+ return /* @__PURE__ */ z("div", {
1959
2088
  className: $("table-board", t),
1960
2089
  children: e
1961
2090
  });
1962
2091
  }
1963
- function It({ title: e, count: t, accentColor: n, open: r, defaultOpen: i = !0, onOpenChange: a, children: o, className: s = "" }) {
1964
- let [c, u] = l(i), d = r != null, f = d ? r : c;
2092
+ function Rt({ title: e, count: t, accentColor: n, open: r, defaultOpen: i = !0, onOpenChange: a, children: o, className: s = "" }) {
2093
+ let [c, l] = u(i), d = r != null, f = d ? r : c;
1965
2094
  function p() {
1966
2095
  let e = !f;
1967
- d || u(e), a?.(e);
2096
+ d || l(e), a?.(e);
1968
2097
  }
1969
- return /* @__PURE__ */ R("section", {
2098
+ return /* @__PURE__ */ B("section", {
1970
2099
  className: $("table-board-group", s),
1971
2100
  style: n ? { "--table-board-group-accent-color": n } : void 0,
1972
- children: [/* @__PURE__ */ R("button", {
2101
+ children: [/* @__PURE__ */ B("button", {
1973
2102
  type: "button",
1974
2103
  className: "table-board-group-header",
1975
2104
  onClick: p,
1976
2105
  "aria-expanded": f,
1977
2106
  children: [
1978
- /* @__PURE__ */ L("span", {
2107
+ /* @__PURE__ */ z("span", {
1979
2108
  className: $("table-board-group-chevron", !f && "collapsed"),
1980
- children: /* @__PURE__ */ L(_, { size: 12 })
2109
+ children: /* @__PURE__ */ z(v, { size: 12 })
1981
2110
  }),
1982
- /* @__PURE__ */ L("span", {
2111
+ /* @__PURE__ */ z("span", {
1983
2112
  className: "table-board-group-label",
1984
2113
  children: e
1985
2114
  }),
1986
- t != null && /* @__PURE__ */ L("span", {
2115
+ t != null && /* @__PURE__ */ z("span", {
1987
2116
  className: "table-board-group-count",
1988
2117
  children: t
1989
2118
  })
1990
2119
  ]
1991
- }), /* @__PURE__ */ L("div", {
2120
+ }), /* @__PURE__ */ z("div", {
1992
2121
  className: $("table-board-group-panel", f && "open"),
1993
- children: /* @__PURE__ */ L("div", {
2122
+ children: /* @__PURE__ */ z("div", {
1994
2123
  className: "table-board-group-panel-inner",
1995
2124
  children: o
1996
2125
  })
1997
2126
  })]
1998
2127
  });
1999
2128
  }
2000
- function Lt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title: i, subtitle: a, subtitleInline: s = !1, pills: u = [], maxVisibleLeadingPills: f, pinnedTrailingPillsCount: p = 0, metric: m, metricTone: h = "default", metricIcon: g, showMetricIcon: _ = !0, avatar: v, avatarImageUrl: y, avatarLabel: b, avatarName: S, avatarStyle: C, meta: w, onClick: T, className: E = "" }) {
2001
- let D = typeof T == "function", O = c(null), [k, A] = l(!1), j = Array.isArray(u) ? u : [], M = Math.max(0, Math.min(p, j.length)), N = M > 0 ? j.slice(0, -M) : j, ee = M > 0 ? j.slice(-M) : [], P = typeof f == "number" && f >= 0 ? N.slice(0, f) : N, F = Math.max(0, N.length - P.length), I = [
2002
- ...P,
2003
- ...F > 0 ? [{
2004
- label: `+${F}`,
2129
+ function zt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title: i, subtitle: a, subtitleInline: s = !1, pills: c = [], maxVisibleLeadingPills: d, pinnedTrailingPillsCount: p = 0, metric: m, metricTone: h = "default", metricIcon: g, showMetricIcon: _ = !0, avatar: v, avatarImageUrl: y, avatarLabel: b, avatarName: x, avatarStyle: C, meta: w, onClick: T, className: E = "" }) {
2130
+ let D = typeof T == "function", O = l(null), [k, A] = u(!1), j = Array.isArray(c) ? c : [], M = Math.max(0, Math.min(p, j.length)), N = M > 0 ? j.slice(0, -M) : j, P = M > 0 ? j.slice(-M) : [], F = typeof d == "number" && d >= 0 ? N.slice(0, d) : N, I = Math.max(0, N.length - F.length), L = [
2131
+ ...F,
2132
+ ...I > 0 ? [{
2133
+ label: `+${I}`,
2005
2134
  color: "var(--text-quaternary)"
2006
2135
  }] : [],
2007
- ...ee
2136
+ ...P
2008
2137
  ];
2009
- function z(e) {
2138
+ function R(e) {
2010
2139
  D && (e.key === "Enter" || e.key === " ") && (e.preventDefault(), T());
2011
2140
  }
2012
- let B = S || w || b, V = C || (y ? void 0 : { background: "var(--accent-blue)" }), H = g || (h === "warning" ? d : x), U = v || (y || b || B ? /* @__PURE__ */ L(Y, {
2141
+ let V = x || w || b, H = C || (y ? void 0 : { background: "var(--accent-blue)" }), U = g || (h === "warning" ? f : S), ee = v || (y || b || V ? /* @__PURE__ */ z(Y, {
2013
2142
  imageUrl: y,
2014
2143
  initials: b,
2015
- name: B,
2144
+ name: V,
2016
2145
  size: "sm",
2017
2146
  className: "table-board-avatar",
2018
- style: V
2147
+ style: H
2019
2148
  }) : null);
2020
2149
  return o(() => {
2021
2150
  let e = O.current;
2022
- if (!e || I.length === 0) return;
2151
+ if (!e || L.length === 0) return;
2023
2152
  let t = () => {
2024
2153
  A(e.scrollWidth - e.clientWidth > 1);
2025
2154
  };
@@ -2031,50 +2160,50 @@ function Lt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
2031
2160
  }
2032
2161
  return window.addEventListener("resize", t), () => window.removeEventListener("resize", t);
2033
2162
  }, [
2034
- I.length,
2035
- u,
2036
- f,
2163
+ L.length,
2164
+ c,
2165
+ d,
2037
2166
  p
2038
- ]), /* @__PURE__ */ R("div", {
2167
+ ]), /* @__PURE__ */ B("div", {
2039
2168
  className: $("table-board-row", D && "clickable", E),
2040
2169
  onClick: T,
2041
- onKeyDown: z,
2170
+ onKeyDown: R,
2042
2171
  role: D ? "button" : void 0,
2043
2172
  tabIndex: D ? 0 : void 0,
2044
2173
  children: [
2045
- /* @__PURE__ */ L("span", {
2174
+ /* @__PURE__ */ z("span", {
2046
2175
  className: "table-board-priority",
2047
2176
  children: e
2048
2177
  }),
2049
- t && /* @__PURE__ */ L("span", {
2178
+ t && /* @__PURE__ */ z("span", {
2050
2179
  className: "table-board-id",
2051
2180
  children: t
2052
2181
  }),
2053
- /* @__PURE__ */ L("span", {
2182
+ /* @__PURE__ */ z("span", {
2054
2183
  className: "table-board-status",
2055
- children: /* @__PURE__ */ L("span", {
2184
+ children: /* @__PURE__ */ z("span", {
2056
2185
  className: "table-board-status-dot",
2057
2186
  style: { background: n }
2058
2187
  })
2059
2188
  }),
2060
- /* @__PURE__ */ R("span", {
2189
+ /* @__PURE__ */ B("span", {
2061
2190
  className: $("table-board-title-block", s && "inline-subtitle"),
2062
- children: [/* @__PURE__ */ L("span", {
2191
+ children: [/* @__PURE__ */ z("span", {
2063
2192
  className: "table-board-title",
2064
2193
  children: i
2065
- }), a != null && a !== "" && /* @__PURE__ */ L("span", {
2194
+ }), a != null && a !== "" && /* @__PURE__ */ z("span", {
2066
2195
  className: $("table-board-subtitle", s && "inline"),
2067
2196
  children: a
2068
2197
  })]
2069
2198
  }),
2070
- /* @__PURE__ */ L("span", { className: "table-board-spacer" }),
2071
- I.length > 0 && /* @__PURE__ */ L("span", {
2199
+ /* @__PURE__ */ z("span", { className: "table-board-spacer" }),
2200
+ L.length > 0 && /* @__PURE__ */ z("span", {
2072
2201
  ref: O,
2073
2202
  className: $("table-board-pills", k && "has-overflow"),
2074
- children: I.map((e, t) => /* @__PURE__ */ R("span", {
2203
+ children: L.map((e, t) => /* @__PURE__ */ B("span", {
2075
2204
  className: "table-board-pill",
2076
2205
  children: [
2077
- e.showDot !== !1 && /* @__PURE__ */ L("span", {
2206
+ e.showDot !== !1 && /* @__PURE__ */ z("span", {
2078
2207
  className: "table-board-pill-dot",
2079
2208
  style: { background: e.color || "var(--text-quaternary)" }
2080
2209
  }),
@@ -2083,18 +2212,18 @@ function Lt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
2083
2212
  ]
2084
2213
  }, `${e.label}-${t}`))
2085
2214
  }),
2086
- m != null && (r(m) ? m : /* @__PURE__ */ L(X, {
2215
+ m != null && (r(m) ? m : /* @__PURE__ */ z(X, {
2087
2216
  className: "table-board-metric",
2088
2217
  showDot: !1,
2089
- children: /* @__PURE__ */ L(mt, {
2218
+ children: /* @__PURE__ */ z(gt, {
2090
2219
  tone: h,
2091
- icon: H,
2220
+ icon: U,
2092
2221
  showIcon: _,
2093
2222
  children: m
2094
2223
  })
2095
2224
  })),
2096
- U,
2097
- w && /* @__PURE__ */ L("span", {
2225
+ ee,
2226
+ w && /* @__PURE__ */ z("span", {
2098
2227
  className: "table-board-meta",
2099
2228
  children: w
2100
2229
  })
@@ -2103,40 +2232,40 @@ function Lt({ priority: e, id: t, statusColor: n = "var(--accent-yellow)", title
2103
2232
  }
2104
2233
  //#endregion
2105
2234
  //#region src/components/data/KPICard.jsx
2106
- function Rt({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral", icon: a, className: o = "" }) {
2235
+ function Bt({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral", icon: a, className: o = "" }) {
2107
2236
  let s = {
2108
2237
  up: "var(--accent-green)",
2109
2238
  down: "var(--accent-red)",
2110
2239
  neutral: "var(--text-tertiary)"
2111
- }, c = i === "up" ? P : i === "down" ? ee : A;
2112
- return /* @__PURE__ */ R("div", {
2240
+ }, c = i === "up" ? I : i === "down" ? F : j;
2241
+ return /* @__PURE__ */ B("div", {
2113
2242
  className: `kpi-card ${o}`,
2114
2243
  children: [
2115
- /* @__PURE__ */ R("div", {
2244
+ /* @__PURE__ */ B("div", {
2116
2245
  className: "kpi-header",
2117
- children: [/* @__PURE__ */ L("span", {
2246
+ children: [/* @__PURE__ */ z("span", {
2118
2247
  className: "kpi-title",
2119
2248
  children: e
2120
- }), a && /* @__PURE__ */ L("span", {
2249
+ }), a && /* @__PURE__ */ z("span", {
2121
2250
  className: "kpi-icon",
2122
2251
  children: a
2123
2252
  })]
2124
2253
  }),
2125
- /* @__PURE__ */ L("div", {
2254
+ /* @__PURE__ */ z("div", {
2126
2255
  className: "kpi-value",
2127
2256
  children: t
2128
2257
  }),
2129
- (n !== void 0 || r) && /* @__PURE__ */ R("div", {
2258
+ (n !== void 0 || r) && /* @__PURE__ */ B("div", {
2130
2259
  className: "kpi-footer",
2131
- children: [/* @__PURE__ */ R("span", {
2260
+ children: [/* @__PURE__ */ B("span", {
2132
2261
  className: "kpi-trend",
2133
2262
  style: { color: s[i] },
2134
- children: [/* @__PURE__ */ L(c, { size: 12 }), n !== void 0 && /* @__PURE__ */ R("span", { children: [
2263
+ children: [/* @__PURE__ */ z(c, { size: 12 }), n !== void 0 && /* @__PURE__ */ B("span", { children: [
2135
2264
  n > 0 ? "+" : "",
2136
2265
  n,
2137
2266
  "%"
2138
2267
  ] })]
2139
- }), r && /* @__PURE__ */ L("span", {
2268
+ }), r && /* @__PURE__ */ z("span", {
2140
2269
  className: "kpi-change-label",
2141
2270
  children: r
2142
2271
  })]
@@ -2144,24 +2273,24 @@ function Rt({ title: e, value: t, change: n, changeLabel: r, trend: i = "neutral
2144
2273
  ]
2145
2274
  });
2146
2275
  }
2147
- function zt({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
2148
- return /* @__PURE__ */ R("div", {
2276
+ function Vt({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
2277
+ return /* @__PURE__ */ B("div", {
2149
2278
  className: `stat-card ${i}`,
2150
- children: [r && /* @__PURE__ */ L("div", {
2279
+ children: [r && /* @__PURE__ */ z("div", {
2151
2280
  className: "stat-card-accent",
2152
2281
  style: { background: r }
2153
- }), /* @__PURE__ */ R("div", {
2282
+ }), /* @__PURE__ */ B("div", {
2154
2283
  className: "stat-card-content",
2155
2284
  children: [
2156
- /* @__PURE__ */ L("span", {
2285
+ /* @__PURE__ */ z("span", {
2157
2286
  className: "stat-card-label",
2158
2287
  children: e
2159
2288
  }),
2160
- /* @__PURE__ */ L("span", {
2289
+ /* @__PURE__ */ z("span", {
2161
2290
  className: "stat-card-value",
2162
2291
  children: t
2163
2292
  }),
2164
- n && /* @__PURE__ */ L("span", {
2293
+ n && /* @__PURE__ */ z("span", {
2165
2294
  className: "stat-card-subtitle",
2166
2295
  children: n
2167
2296
  })
@@ -2171,56 +2300,56 @@ function zt({ label: e, value: t, subtitle: n, color: r, className: i = "" }) {
2171
2300
  }
2172
2301
  //#endregion
2173
2302
  //#region src/components/data/NotificationsPanel.jsx
2174
- function Bt({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className: r = "" }) {
2303
+ function Ht({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className: r = "" }) {
2175
2304
  let i = e.filter((e) => !e.read);
2176
- return /* @__PURE__ */ R("div", {
2305
+ return /* @__PURE__ */ B("div", {
2177
2306
  className: `notifications-panel ${r}`,
2178
- children: [/* @__PURE__ */ R("div", {
2307
+ children: [/* @__PURE__ */ B("div", {
2179
2308
  className: "notifications-header",
2180
- children: [/* @__PURE__ */ R("div", {
2309
+ children: [/* @__PURE__ */ B("div", {
2181
2310
  className: "notifications-title",
2182
2311
  children: [
2183
- /* @__PURE__ */ L(f, { size: 16 }),
2184
- /* @__PURE__ */ L("span", { children: "Notifications" }),
2185
- i.length > 0 && /* @__PURE__ */ L("span", {
2312
+ /* @__PURE__ */ z(p, { size: 16 }),
2313
+ /* @__PURE__ */ z("span", { children: "Notifications" }),
2314
+ i.length > 0 && /* @__PURE__ */ z("span", {
2186
2315
  className: "badge badge-purple",
2187
2316
  style: { marginLeft: "var(--space-1)" },
2188
2317
  children: i.length
2189
2318
  })
2190
2319
  ]
2191
- }), i.length > 0 && /* @__PURE__ */ R("button", {
2320
+ }), i.length > 0 && /* @__PURE__ */ B("button", {
2192
2321
  className: "btn btn-ghost btn-sm",
2193
2322
  onClick: n,
2194
- children: [/* @__PURE__ */ L(h, { size: 14 }), " Mark all read"]
2323
+ children: [/* @__PURE__ */ z(g, { size: 14 }), " Mark all read"]
2195
2324
  })]
2196
- }), /* @__PURE__ */ R("div", {
2325
+ }), /* @__PURE__ */ B("div", {
2197
2326
  className: "notifications-list",
2198
- children: [e.length === 0 && /* @__PURE__ */ L("div", {
2327
+ children: [e.length === 0 && /* @__PURE__ */ z("div", {
2199
2328
  className: "notifications-empty",
2200
2329
  children: "No notifications"
2201
- }), e.map((e) => /* @__PURE__ */ R("div", {
2330
+ }), e.map((e) => /* @__PURE__ */ B("div", {
2202
2331
  className: `notification-item ${e.read ? "" : "unread"}`,
2203
2332
  onClick: () => !e.read && t?.(e.id),
2204
2333
  children: [
2205
- /* @__PURE__ */ L(Y, {
2334
+ /* @__PURE__ */ z(Y, {
2206
2335
  name: e.user,
2207
2336
  size: "sm"
2208
2337
  }),
2209
- /* @__PURE__ */ R("div", {
2338
+ /* @__PURE__ */ B("div", {
2210
2339
  className: "notification-content",
2211
- children: [/* @__PURE__ */ R("div", {
2340
+ children: [/* @__PURE__ */ B("div", {
2212
2341
  className: "notification-text",
2213
2342
  children: [
2214
- /* @__PURE__ */ L("strong", { children: e.user }),
2343
+ /* @__PURE__ */ z("strong", { children: e.user }),
2215
2344
  " ",
2216
2345
  e.text
2217
2346
  ]
2218
- }), /* @__PURE__ */ L("span", {
2347
+ }), /* @__PURE__ */ z("span", {
2219
2348
  className: "notification-time",
2220
2349
  children: e.time
2221
2350
  })]
2222
2351
  }),
2223
- !e.read && /* @__PURE__ */ L("div", { className: "notification-dot" })
2352
+ !e.read && /* @__PURE__ */ z("div", { className: "notification-dot" })
2224
2353
  ]
2225
2354
  }, e.id))]
2226
2355
  })]
@@ -2228,46 +2357,46 @@ function Bt({ notifications: e = [], onMarkRead: t, onMarkAllRead: n, className:
2228
2357
  }
2229
2358
  //#endregion
2230
2359
  //#region src/components/Icons.jsx
2231
- function Vt() {
2232
- return /* @__PURE__ */ L("svg", {
2360
+ function Ut() {
2361
+ return /* @__PURE__ */ z("svg", {
2233
2362
  width: "16",
2234
2363
  height: "16",
2235
2364
  viewBox: "0 0 16 16",
2236
2365
  fill: "currentColor",
2237
- children: /* @__PURE__ */ L("path", { d: "M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5l-2.5-2.5a.5.5 0 0 0-.354-.146H8.5a.5.5 0 0 0-.5.5v2.793L6.854 9.001a.5.5 0 0 0-.708 0L2 13.147V3Zm12 8.207V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-.44l4.5-4.5L8.146 9.707a.5.5 0 0 0 .708 0L11.5 7.06l2.5 2.5V11.207Z" })
2366
+ children: /* @__PURE__ */ z("path", { d: "M2 3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6.5l-2.5-2.5a.5.5 0 0 0-.354-.146H8.5a.5.5 0 0 0-.5.5v2.793L6.854 9.001a.5.5 0 0 0-.708 0L2 13.147V3Zm12 8.207V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-.44l4.5-4.5L8.146 9.707a.5.5 0 0 0 .708 0L11.5 7.06l2.5 2.5V11.207Z" })
2238
2367
  });
2239
2368
  }
2240
- function Ht() {
2241
- return /* @__PURE__ */ R("svg", {
2369
+ function Wt() {
2370
+ return /* @__PURE__ */ B("svg", {
2242
2371
  width: "16",
2243
2372
  height: "16",
2244
2373
  viewBox: "0 0 16 16",
2245
2374
  fill: "currentColor",
2246
- children: [/* @__PURE__ */ L("circle", {
2375
+ children: [/* @__PURE__ */ z("circle", {
2247
2376
  cx: "8",
2248
2377
  cy: "8",
2249
2378
  r: "6",
2250
2379
  fill: "none",
2251
2380
  stroke: "currentColor",
2252
2381
  strokeWidth: "1.5"
2253
- }), /* @__PURE__ */ L("circle", {
2382
+ }), /* @__PURE__ */ z("circle", {
2254
2383
  cx: "8",
2255
2384
  cy: "8",
2256
2385
  r: "2"
2257
2386
  })]
2258
2387
  });
2259
2388
  }
2260
- function Ut() {
2261
- return /* @__PURE__ */ L("svg", {
2389
+ function Gt() {
2390
+ return /* @__PURE__ */ z("svg", {
2262
2391
  width: "16",
2263
2392
  height: "16",
2264
2393
  viewBox: "0 0 16 16",
2265
2394
  fill: "currentColor",
2266
- children: /* @__PURE__ */ L("path", { d: "M8 1l2.2 4.4L15 6.3l-3.5 3.4.8 4.9L8 12.4 3.7 14.6l.8-4.9L1 6.3l4.8-.9L8 1Z" })
2395
+ children: /* @__PURE__ */ z("path", { d: "M8 1l2.2 4.4L15 6.3l-3.5 3.4.8 4.9L8 12.4 3.7 14.6l.8-4.9L1 6.3l4.8-.9L8 1Z" })
2267
2396
  });
2268
2397
  }
2269
- function Wt() {
2270
- return /* @__PURE__ */ L("svg", {
2398
+ function Kt() {
2399
+ return /* @__PURE__ */ z("svg", {
2271
2400
  width: "16",
2272
2401
  height: "16",
2273
2402
  viewBox: "0 0 16 16",
@@ -2276,45 +2405,45 @@ function Wt() {
2276
2405
  strokeWidth: "1.5",
2277
2406
  strokeLinecap: "round",
2278
2407
  strokeLinejoin: "round",
2279
- children: /* @__PURE__ */ L("path", { d: "M1 8h3l2-5 2 10 2-5h3" })
2408
+ children: /* @__PURE__ */ z("path", { d: "M1 8h3l2-5 2 10 2-5h3" })
2280
2409
  });
2281
2410
  }
2282
- function Gt() {
2283
- return /* @__PURE__ */ L("svg", {
2411
+ function qt() {
2412
+ return /* @__PURE__ */ z("svg", {
2284
2413
  width: "16",
2285
2414
  height: "16",
2286
2415
  viewBox: "0 0 16 16",
2287
2416
  fill: "currentColor",
2288
- children: /* @__PURE__ */ L("path", { d: "M3 2h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm1 3v2h8V5H4Zm0 4v2h5V9H4Z" })
2417
+ children: /* @__PURE__ */ z("path", { d: "M3 2h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm1 3v2h8V5H4Zm0 4v2h5V9H4Z" })
2289
2418
  });
2290
2419
  }
2291
- function Kt() {
2292
- return /* @__PURE__ */ L("svg", {
2420
+ function Jt() {
2421
+ return /* @__PURE__ */ z("svg", {
2293
2422
  width: "16",
2294
2423
  height: "16",
2295
2424
  viewBox: "0 0 16 16",
2296
2425
  fill: "currentColor",
2297
- children: /* @__PURE__ */ L("path", { d: "M2 3.5A1.5 1.5 0 0 1 3.5 2h3.379a1.5 1.5 0 0 1 1.06.44l.622.62A1.5 1.5 0 0 0 9.622 3.5H12.5A1.5 1.5 0 0 1 14 5v7.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 12.5v-9Z" })
2426
+ children: /* @__PURE__ */ z("path", { d: "M2 3.5A1.5 1.5 0 0 1 3.5 2h3.379a1.5 1.5 0 0 1 1.06.44l.622.62A1.5 1.5 0 0 0 9.622 3.5H12.5A1.5 1.5 0 0 1 14 5v7.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 12.5v-9Z" })
2298
2427
  });
2299
2428
  }
2300
- function qt() {
2301
- return /* @__PURE__ */ R("svg", {
2429
+ function Yt() {
2430
+ return /* @__PURE__ */ B("svg", {
2302
2431
  width: "16",
2303
2432
  height: "16",
2304
2433
  viewBox: "0 0 16 16",
2305
2434
  fill: "currentColor",
2306
2435
  children: [
2307
- /* @__PURE__ */ L("circle", {
2436
+ /* @__PURE__ */ z("circle", {
2308
2437
  cx: "4",
2309
2438
  cy: "8",
2310
2439
  r: "1.5"
2311
2440
  }),
2312
- /* @__PURE__ */ L("circle", {
2441
+ /* @__PURE__ */ z("circle", {
2313
2442
  cx: "8",
2314
2443
  cy: "8",
2315
2444
  r: "1.5"
2316
2445
  }),
2317
- /* @__PURE__ */ L("circle", {
2446
+ /* @__PURE__ */ z("circle", {
2318
2447
  cx: "12",
2319
2448
  cy: "8",
2320
2449
  r: "1.5"
@@ -2322,26 +2451,26 @@ function qt() {
2322
2451
  ]
2323
2452
  });
2324
2453
  }
2325
- function Jt() {
2326
- return /* @__PURE__ */ R("svg", {
2454
+ function Xt() {
2455
+ return /* @__PURE__ */ B("svg", {
2327
2456
  width: "16",
2328
2457
  height: "16",
2329
2458
  viewBox: "0 0 16 16",
2330
2459
  fill: "none",
2331
2460
  stroke: "currentColor",
2332
2461
  strokeWidth: "1.5",
2333
- children: [/* @__PURE__ */ L("circle", {
2462
+ children: [/* @__PURE__ */ z("circle", {
2334
2463
  cx: "7",
2335
2464
  cy: "7",
2336
2465
  r: "4.5"
2337
- }), /* @__PURE__ */ L("path", {
2466
+ }), /* @__PURE__ */ z("path", {
2338
2467
  d: "M10.5 10.5L14 14",
2339
2468
  strokeLinecap: "round"
2340
2469
  })]
2341
2470
  });
2342
2471
  }
2343
- function Yt() {
2344
- return /* @__PURE__ */ L("svg", {
2472
+ function Zt() {
2473
+ return /* @__PURE__ */ z("svg", {
2345
2474
  width: "16",
2346
2475
  height: "16",
2347
2476
  viewBox: "0 0 16 16",
@@ -2350,11 +2479,11 @@ function Yt() {
2350
2479
  strokeWidth: "1.5",
2351
2480
  strokeLinecap: "round",
2352
2481
  strokeLinejoin: "round",
2353
- children: /* @__PURE__ */ L("path", { d: "M11 2l3 3-8 8H3v-3l8-8Z" })
2482
+ children: /* @__PURE__ */ z("path", { d: "M11 2l3 3-8 8H3v-3l8-8Z" })
2354
2483
  });
2355
2484
  }
2356
- function Xt() {
2357
- return /* @__PURE__ */ L("svg", {
2485
+ function Qt() {
2486
+ return /* @__PURE__ */ z("svg", {
2358
2487
  width: "14",
2359
2488
  height: "14",
2360
2489
  viewBox: "0 0 14 14",
@@ -2363,11 +2492,11 @@ function Xt() {
2363
2492
  strokeWidth: "1.5",
2364
2493
  strokeLinecap: "round",
2365
2494
  strokeLinejoin: "round",
2366
- children: /* @__PURE__ */ L("path", { d: "M3.5 5.5L7 9l3.5-3.5" })
2495
+ children: /* @__PURE__ */ z("path", { d: "M3.5 5.5L7 9l3.5-3.5" })
2367
2496
  });
2368
2497
  }
2369
- function Zt() {
2370
- return /* @__PURE__ */ L("svg", {
2498
+ function $t() {
2499
+ return /* @__PURE__ */ z("svg", {
2371
2500
  width: "14",
2372
2501
  height: "14",
2373
2502
  viewBox: "0 0 14 14",
@@ -2376,24 +2505,24 @@ function Zt() {
2376
2505
  strokeWidth: "1.5",
2377
2506
  strokeLinecap: "round",
2378
2507
  strokeLinejoin: "round",
2379
- children: /* @__PURE__ */ L("path", { d: "M3.5 9L7 5.5 10.5 9" })
2508
+ children: /* @__PURE__ */ z("path", { d: "M3.5 9L7 5.5 10.5 9" })
2380
2509
  });
2381
2510
  }
2382
- function Qt() {
2383
- return /* @__PURE__ */ L("svg", {
2511
+ function en() {
2512
+ return /* @__PURE__ */ z("svg", {
2384
2513
  width: "14",
2385
2514
  height: "14",
2386
2515
  viewBox: "0 0 14 14",
2387
2516
  fill: "#c9a84e",
2388
- children: /* @__PURE__ */ L("path", { d: "M7 1l1.76 3.52L13 5.26l-3 2.94.7 4.13L7 10.4 3.3 12.33l.7-4.13-3-2.94 4.24-.74L7 1Z" })
2517
+ children: /* @__PURE__ */ z("path", { d: "M7 1l1.76 3.52L13 5.26l-3 2.94.7 4.13L7 10.4 3.3 12.33l.7-4.13-3-2.94 4.24-.74L7 1Z" })
2389
2518
  });
2390
2519
  }
2391
- function $t() {
2392
- return /* @__PURE__ */ R("svg", {
2520
+ function tn() {
2521
+ return /* @__PURE__ */ B("svg", {
2393
2522
  width: "14",
2394
2523
  height: "14",
2395
2524
  viewBox: "0 0 14 14",
2396
- children: [/* @__PURE__ */ L("circle", {
2525
+ children: [/* @__PURE__ */ z("circle", {
2397
2526
  cx: "7",
2398
2527
  cy: "7",
2399
2528
  r: "5.5",
@@ -2401,7 +2530,7 @@ function $t() {
2401
2530
  stroke: "#c9a84e",
2402
2531
  strokeWidth: "1.5",
2403
2532
  strokeDasharray: "8.6 2.9"
2404
- }), /* @__PURE__ */ L("circle", {
2533
+ }), /* @__PURE__ */ z("circle", {
2405
2534
  cx: "7",
2406
2535
  cy: "7",
2407
2536
  r: "2",
@@ -2409,17 +2538,17 @@ function $t() {
2409
2538
  })]
2410
2539
  });
2411
2540
  }
2412
- function en() {
2413
- return /* @__PURE__ */ R("svg", {
2541
+ function nn() {
2542
+ return /* @__PURE__ */ B("svg", {
2414
2543
  width: "14",
2415
2544
  height: "14",
2416
2545
  viewBox: "0 0 14 14",
2417
- children: [/* @__PURE__ */ L("circle", {
2546
+ children: [/* @__PURE__ */ z("circle", {
2418
2547
  cx: "7",
2419
2548
  cy: "7",
2420
2549
  r: "6",
2421
2550
  fill: "#5bb98e"
2422
- }), /* @__PURE__ */ L("path", {
2551
+ }), /* @__PURE__ */ z("path", {
2423
2552
  d: "M4.5 7l2 2 3-3.5",
2424
2553
  stroke: "#08090a",
2425
2554
  strokeWidth: "1.5",
@@ -2429,12 +2558,12 @@ function en() {
2429
2558
  })]
2430
2559
  });
2431
2560
  }
2432
- function tn() {
2433
- return /* @__PURE__ */ L("svg", {
2561
+ function rn() {
2562
+ return /* @__PURE__ */ z("svg", {
2434
2563
  width: "14",
2435
2564
  height: "14",
2436
2565
  viewBox: "0 0 14 14",
2437
- children: /* @__PURE__ */ L("circle", {
2566
+ children: /* @__PURE__ */ z("circle", {
2438
2567
  cx: "7",
2439
2568
  cy: "7",
2440
2569
  r: "5.5",
@@ -2444,12 +2573,12 @@ function tn() {
2444
2573
  })
2445
2574
  });
2446
2575
  }
2447
- function nn() {
2448
- return /* @__PURE__ */ L("svg", {
2576
+ function an() {
2577
+ return /* @__PURE__ */ z("svg", {
2449
2578
  width: "14",
2450
2579
  height: "14",
2451
2580
  viewBox: "0 0 14 14",
2452
- children: /* @__PURE__ */ L("circle", {
2581
+ children: /* @__PURE__ */ z("circle", {
2453
2582
  cx: "7",
2454
2583
  cy: "7",
2455
2584
  r: "5.5",
@@ -2460,19 +2589,19 @@ function nn() {
2460
2589
  })
2461
2590
  });
2462
2591
  }
2463
- function rn() {
2464
- return /* @__PURE__ */ R("svg", {
2592
+ function on() {
2593
+ return /* @__PURE__ */ B("svg", {
2465
2594
  width: "14",
2466
2595
  height: "14",
2467
2596
  viewBox: "0 0 14 14",
2468
- children: [/* @__PURE__ */ L("circle", {
2597
+ children: [/* @__PURE__ */ z("circle", {
2469
2598
  cx: "7",
2470
2599
  cy: "7",
2471
2600
  r: "5.5",
2472
2601
  fill: "none",
2473
2602
  stroke: "#6b6d71",
2474
2603
  strokeWidth: "1.5"
2475
- }), /* @__PURE__ */ L("path", {
2604
+ }), /* @__PURE__ */ z("path", {
2476
2605
  d: "M4.5 7h5",
2477
2606
  stroke: "#6b6d71",
2478
2607
  strokeWidth: "1.5",
@@ -2480,37 +2609,37 @@ function rn() {
2480
2609
  })]
2481
2610
  });
2482
2611
  }
2483
- function an() {
2484
- return /* @__PURE__ */ L("svg", {
2612
+ function sn() {
2613
+ return /* @__PURE__ */ z("svg", {
2485
2614
  width: "14",
2486
2615
  height: "14",
2487
2616
  viewBox: "0 0 14 14",
2488
2617
  fill: "#c75a5a",
2489
- children: /* @__PURE__ */ L("path", { d: "M7 1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1Zm0 10a1.25 1.25 0 1 1 0 2.5A1.25 1.25 0 0 1 7 11Z" })
2618
+ children: /* @__PURE__ */ z("path", { d: "M7 1a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1Zm0 10a1.25 1.25 0 1 1 0 2.5A1.25 1.25 0 0 1 7 11Z" })
2490
2619
  });
2491
2620
  }
2492
- function on() {
2493
- return /* @__PURE__ */ R("svg", {
2621
+ function cn() {
2622
+ return /* @__PURE__ */ B("svg", {
2494
2623
  width: "14",
2495
2624
  height: "14",
2496
2625
  viewBox: "0 0 14 14",
2497
2626
  fill: "#c4a06a",
2498
2627
  children: [
2499
- /* @__PURE__ */ L("rect", {
2628
+ /* @__PURE__ */ z("rect", {
2500
2629
  x: "2",
2501
2630
  y: "8",
2502
2631
  width: "2.5",
2503
2632
  height: "4",
2504
2633
  rx: "0.5"
2505
2634
  }),
2506
- /* @__PURE__ */ L("rect", {
2635
+ /* @__PURE__ */ z("rect", {
2507
2636
  x: "5.75",
2508
2637
  y: "5",
2509
2638
  width: "2.5",
2510
2639
  height: "7",
2511
2640
  rx: "0.5"
2512
2641
  }),
2513
- /* @__PURE__ */ L("rect", {
2642
+ /* @__PURE__ */ z("rect", {
2514
2643
  x: "9.5",
2515
2644
  y: "2",
2516
2645
  width: "2.5",
@@ -2520,13 +2649,13 @@ function on() {
2520
2649
  ]
2521
2650
  });
2522
2651
  }
2523
- function sn() {
2524
- return /* @__PURE__ */ R("svg", {
2652
+ function ln() {
2653
+ return /* @__PURE__ */ B("svg", {
2525
2654
  width: "14",
2526
2655
  height: "14",
2527
2656
  viewBox: "0 0 14 14",
2528
2657
  children: [
2529
- /* @__PURE__ */ L("rect", {
2658
+ /* @__PURE__ */ z("rect", {
2530
2659
  x: "2",
2531
2660
  y: "8",
2532
2661
  width: "2.5",
@@ -2534,7 +2663,7 @@ function sn() {
2534
2663
  rx: "0.5",
2535
2664
  fill: "#c9a84e"
2536
2665
  }),
2537
- /* @__PURE__ */ L("rect", {
2666
+ /* @__PURE__ */ z("rect", {
2538
2667
  x: "5.75",
2539
2668
  y: "5",
2540
2669
  width: "2.5",
@@ -2542,7 +2671,7 @@ function sn() {
2542
2671
  rx: "0.5",
2543
2672
  fill: "#c9a84e"
2544
2673
  }),
2545
- /* @__PURE__ */ L("rect", {
2674
+ /* @__PURE__ */ z("rect", {
2546
2675
  x: "9.5",
2547
2676
  y: "2",
2548
2677
  width: "2.5",
@@ -2553,13 +2682,13 @@ function sn() {
2553
2682
  ]
2554
2683
  });
2555
2684
  }
2556
- function cn() {
2557
- return /* @__PURE__ */ R("svg", {
2685
+ function un() {
2686
+ return /* @__PURE__ */ B("svg", {
2558
2687
  width: "14",
2559
2688
  height: "14",
2560
2689
  viewBox: "0 0 14 14",
2561
2690
  children: [
2562
- /* @__PURE__ */ L("rect", {
2691
+ /* @__PURE__ */ z("rect", {
2563
2692
  x: "2",
2564
2693
  y: "8",
2565
2694
  width: "2.5",
@@ -2567,7 +2696,7 @@ function cn() {
2567
2696
  rx: "0.5",
2568
2697
  fill: "#5bb98e"
2569
2698
  }),
2570
- /* @__PURE__ */ L("rect", {
2699
+ /* @__PURE__ */ z("rect", {
2571
2700
  x: "5.75",
2572
2701
  y: "5",
2573
2702
  width: "2.5",
@@ -2575,7 +2704,7 @@ function cn() {
2575
2704
  rx: "0.5",
2576
2705
  fill: "#4e5054"
2577
2706
  }),
2578
- /* @__PURE__ */ L("rect", {
2707
+ /* @__PURE__ */ z("rect", {
2579
2708
  x: "9.5",
2580
2709
  y: "2",
2581
2710
  width: "2.5",
@@ -2586,8 +2715,8 @@ function cn() {
2586
2715
  ]
2587
2716
  });
2588
2717
  }
2589
- function ln() {
2590
- return /* @__PURE__ */ L("svg", {
2718
+ function dn() {
2719
+ return /* @__PURE__ */ z("svg", {
2591
2720
  width: "14",
2592
2721
  height: "14",
2593
2722
  viewBox: "0 0 14 14",
@@ -2595,11 +2724,11 @@ function ln() {
2595
2724
  stroke: "currentColor",
2596
2725
  strokeWidth: "1.5",
2597
2726
  strokeLinecap: "round",
2598
- children: /* @__PURE__ */ L("path", { d: "M6 8l2-2m-2.5-.5L4 7a2.83 2.83 0 0 0 4 4l1.5-1.5m-1-5L10 3a2.83 2.83 0 0 1 4 4l-1.5 1.5" })
2727
+ children: /* @__PURE__ */ z("path", { d: "M6 8l2-2m-2.5-.5L4 7a2.83 2.83 0 0 0 4 4l1.5-1.5m-1-5L10 3a2.83 2.83 0 0 1 4 4l-1.5 1.5" })
2599
2728
  });
2600
2729
  }
2601
- function un() {
2602
- return /* @__PURE__ */ L("svg", {
2730
+ function fn() {
2731
+ return /* @__PURE__ */ z("svg", {
2603
2732
  width: "14",
2604
2733
  height: "14",
2605
2734
  viewBox: "0 0 14 14",
@@ -2608,11 +2737,11 @@ function un() {
2608
2737
  strokeWidth: "1.5",
2609
2738
  strokeLinecap: "round",
2610
2739
  strokeLinejoin: "round",
2611
- children: /* @__PURE__ */ L("path", { d: "M2.5 4h9M5 4V2.5h4V4m-4.5 1v5.5m3-5.5v5.5M3.5 4l.5 8h6l.5-8" })
2740
+ children: /* @__PURE__ */ z("path", { d: "M2.5 4h9M5 4V2.5h4V4m-4.5 1v5.5m3-5.5v5.5M3.5 4l.5 8h6l.5-8" })
2612
2741
  });
2613
2742
  }
2614
- function dn() {
2615
- return /* @__PURE__ */ R("svg", {
2743
+ function pn() {
2744
+ return /* @__PURE__ */ B("svg", {
2616
2745
  width: "14",
2617
2746
  height: "14",
2618
2747
  viewBox: "0 0 14 14",
@@ -2621,15 +2750,15 @@ function dn() {
2621
2750
  strokeWidth: "1.5",
2622
2751
  strokeLinecap: "round",
2623
2752
  strokeLinejoin: "round",
2624
- children: [/* @__PURE__ */ L("path", { d: "M5.5 1.5h3l.5 1.5 1.5.5 1.5-.5 1.5 1.5-1 1.5.5 1.5h2v2h-2l-.5 1.5 1 1.5-1.5 1.5-1.5-.5-1.5.5-.5 1.5h-3l-.5-1.5L3.5 11.5 2 12 .5 10.5l1-1.5L1 7.5H-1v-2h2l.5-1.5-1-1.5L2 1l1.5.5L5 1l.5-.5Z" }), /* @__PURE__ */ L("circle", {
2753
+ children: [/* @__PURE__ */ z("path", { d: "M5.5 1.5h3l.5 1.5 1.5.5 1.5-.5 1.5 1.5-1 1.5.5 1.5h2v2h-2l-.5 1.5 1 1.5-1.5 1.5-1.5-.5-1.5.5-.5 1.5h-3l-.5-1.5L3.5 11.5 2 12 .5 10.5l1-1.5L1 7.5H-1v-2h2l.5-1.5-1-1.5L2 1l1.5.5L5 1l.5-.5Z" }), /* @__PURE__ */ z("circle", {
2625
2754
  cx: "7",
2626
2755
  cy: "7",
2627
2756
  r: "2"
2628
2757
  })]
2629
2758
  });
2630
2759
  }
2631
- function fn() {
2632
- return /* @__PURE__ */ L("svg", {
2760
+ function mn() {
2761
+ return /* @__PURE__ */ z("svg", {
2633
2762
  width: "14",
2634
2763
  height: "14",
2635
2764
  viewBox: "0 0 14 14",
@@ -2637,11 +2766,11 @@ function fn() {
2637
2766
  stroke: "currentColor",
2638
2767
  strokeWidth: "1.5",
2639
2768
  strokeLinecap: "round",
2640
- children: /* @__PURE__ */ L("path", { d: "M3.5 3.5l7 7M10.5 3.5l-7 7" })
2769
+ children: /* @__PURE__ */ z("path", { d: "M3.5 3.5l7 7M10.5 3.5l-7 7" })
2641
2770
  });
2642
2771
  }
2643
- function pn() {
2644
- return /* @__PURE__ */ L("svg", {
2772
+ function hn() {
2773
+ return /* @__PURE__ */ z("svg", {
2645
2774
  width: "14",
2646
2775
  height: "14",
2647
2776
  viewBox: "0 0 14 14",
@@ -2650,11 +2779,11 @@ function pn() {
2650
2779
  strokeWidth: "2",
2651
2780
  strokeLinecap: "round",
2652
2781
  strokeLinejoin: "round",
2653
- children: /* @__PURE__ */ L("path", { d: "M3 7.5l3 3 5-6" })
2782
+ children: /* @__PURE__ */ z("path", { d: "M3 7.5l3 3 5-6" })
2654
2783
  });
2655
2784
  }
2656
- function mn() {
2657
- return /* @__PURE__ */ R("svg", {
2785
+ function gn() {
2786
+ return /* @__PURE__ */ B("svg", {
2658
2787
  width: "14",
2659
2788
  height: "14",
2660
2789
  viewBox: "0 0 14 14",
@@ -2663,17 +2792,17 @@ function mn() {
2663
2792
  strokeWidth: "1.5",
2664
2793
  strokeLinecap: "round",
2665
2794
  strokeLinejoin: "round",
2666
- children: [/* @__PURE__ */ L("rect", {
2795
+ children: [/* @__PURE__ */ z("rect", {
2667
2796
  x: "4.5",
2668
2797
  y: "4.5",
2669
2798
  width: "7",
2670
2799
  height: "7",
2671
2800
  rx: "1"
2672
- }), /* @__PURE__ */ L("path", { d: "M9.5 4.5V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v5.5a1 1 0 0 0 1 1h1.5" })]
2801
+ }), /* @__PURE__ */ z("path", { d: "M9.5 4.5V3a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v5.5a1 1 0 0 0 1 1h1.5" })]
2673
2802
  });
2674
2803
  }
2675
- function hn() {
2676
- return /* @__PURE__ */ L("svg", {
2804
+ function _n() {
2805
+ return /* @__PURE__ */ z("svg", {
2677
2806
  width: "14",
2678
2807
  height: "14",
2679
2808
  viewBox: "0 0 14 14",
@@ -2682,11 +2811,11 @@ function hn() {
2682
2811
  strokeWidth: "1.5",
2683
2812
  strokeLinecap: "round",
2684
2813
  strokeLinejoin: "round",
2685
- children: /* @__PURE__ */ L("path", { d: "M5.5 12a1.5 1.5 0 0 0 3 0M7 1a4 4 0 0 0-4 4c0 3-1.5 4.5-1.5 4.5h11S11 8 11 5a4 4 0 0 0-4-4Z" })
2814
+ children: /* @__PURE__ */ z("path", { d: "M5.5 12a1.5 1.5 0 0 0 3 0M7 1a4 4 0 0 0-4 4c0 3-1.5 4.5-1.5 4.5h11S11 8 11 5a4 4 0 0 0-4-4Z" })
2686
2815
  });
2687
2816
  }
2688
- function gn() {
2689
- return /* @__PURE__ */ R("svg", {
2817
+ function vn() {
2818
+ return /* @__PURE__ */ B("svg", {
2690
2819
  width: "14",
2691
2820
  height: "14",
2692
2821
  viewBox: "0 0 14 14",
@@ -2695,17 +2824,17 @@ function gn() {
2695
2824
  strokeWidth: "1.5",
2696
2825
  strokeLinecap: "round",
2697
2826
  strokeLinejoin: "round",
2698
- children: [/* @__PURE__ */ L("rect", {
2827
+ children: [/* @__PURE__ */ z("rect", {
2699
2828
  x: "1.5",
2700
2829
  y: "2.5",
2701
2830
  width: "11",
2702
2831
  height: "10",
2703
2832
  rx: "1"
2704
- }), /* @__PURE__ */ L("path", { d: "M4.5 1v2.5M9.5 1v2.5M1.5 5.5h11" })]
2833
+ }), /* @__PURE__ */ z("path", { d: "M4.5 1v2.5M9.5 1v2.5M1.5 5.5h11" })]
2705
2834
  });
2706
2835
  }
2707
- function _n() {
2708
- return /* @__PURE__ */ L("svg", {
2836
+ function yn() {
2837
+ return /* @__PURE__ */ z("svg", {
2709
2838
  width: "14",
2710
2839
  height: "14",
2711
2840
  viewBox: "0 0 14 14",
@@ -2714,20 +2843,20 @@ function _n() {
2714
2843
  strokeWidth: "1.5",
2715
2844
  strokeLinecap: "round",
2716
2845
  strokeLinejoin: "round",
2717
- children: /* @__PURE__ */ L("path", { d: "M1.5 3h11M3.5 7h7M5.5 11h3" })
2846
+ children: /* @__PURE__ */ z("path", { d: "M1.5 3h11M3.5 7h7M5.5 11h3" })
2718
2847
  });
2719
2848
  }
2720
- function vn() {
2721
- return /* @__PURE__ */ R("svg", {
2849
+ function bn() {
2850
+ return /* @__PURE__ */ B("svg", {
2722
2851
  width: "14",
2723
2852
  height: "14",
2724
2853
  viewBox: "0 0 14 14",
2725
2854
  fill: "currentColor",
2726
- children: [/* @__PURE__ */ L("circle", {
2855
+ children: [/* @__PURE__ */ z("circle", {
2727
2856
  cx: "7",
2728
2857
  cy: "4.5",
2729
2858
  r: "2.5"
2730
- }), /* @__PURE__ */ L("path", {
2859
+ }), /* @__PURE__ */ z("path", {
2731
2860
  d: "M2.5 12.5a4.5 4.5 0 0 1 9 0",
2732
2861
  fill: "none",
2733
2862
  stroke: "currentColor",
@@ -2735,8 +2864,8 @@ function vn() {
2735
2864
  })]
2736
2865
  });
2737
2866
  }
2738
- function yn() {
2739
- return /* @__PURE__ */ R("svg", {
2867
+ function xn() {
2868
+ return /* @__PURE__ */ B("svg", {
2740
2869
  width: "14",
2741
2870
  height: "14",
2742
2871
  viewBox: "0 0 14 14",
@@ -2745,7 +2874,7 @@ function yn() {
2745
2874
  strokeWidth: "1.5",
2746
2875
  strokeLinecap: "round",
2747
2876
  strokeLinejoin: "round",
2748
- children: [/* @__PURE__ */ L("path", { d: "M1.5 8.5V2a.5.5 0 0 1 .5-.5h6.5L13 6l-5.5 5.5L1.5 8.5Z" }), /* @__PURE__ */ L("circle", {
2877
+ children: [/* @__PURE__ */ z("path", { d: "M1.5 8.5V2a.5.5 0 0 1 .5-.5h6.5L13 6l-5.5 5.5L1.5 8.5Z" }), /* @__PURE__ */ z("circle", {
2749
2878
  cx: "5",
2750
2879
  cy: "5",
2751
2880
  r: "1",
@@ -2754,4 +2883,4 @@ function yn() {
2754
2883
  });
2755
2884
  }
2756
2885
  //#endregion
2757
- export { Le as Accordion, Ie as AccordionItem, Ot as ActivityFeed, Me as AppLoader, Y as Avatar, X as Badge, hn as BellIcon, We as Button, gn as CalendarIcon, Ke as Card, Xe as CardContent, Ye as CardDescription, Ze as CardFooter, qe as CardHeader, Je as CardTitle, pn as CheckIcon, Xt as ChevronDown, Zt as ChevronUp, fn as CloseIcon, kt as CommandBar, mn as CopyIcon, xt as DEFAULT_ICON_BY_VALUE, St as DEFAULT_VIEW_MODE_OPTIONS, At as DataTable, Qe as Dialog, nt as DialogBody, tt as DialogDescription, rt as DialogFooter, $e as DialogHeader, et as DialogTitle, it as DropdownMenu, ot as DropdownMenuCheckboxItem, at as DropdownMenuItem, st as DropdownMenuLabel, ct as DropdownMenuSeparator, Yt as EditIcon, ke as FCCAppShell, Ae as FCCBrandLogo, be as FCCBreadcrumbs, ae as FCCDesignProvider, Fe as FCCDetailsPanel, Se as FCCHeaderStatus, Pe as FCCLoader, we as FCCMainWindow, J as FCCSidePanel, he as FCCSidePanelAction, ce as FCCSidePanelBody, pe as FCCSidePanelCard, ge as FCCSidePanelChatWrap, me as FCCSidePanelContact, _e as FCCSidePanelConversation, de as FCCSidePanelGroupLabel, se as FCCSidePanelHeader, fe as FCCSidePanelItem, ve as FCCSidePanelMessage, ue as FCCSidePanelSearch, le as FCCSidePanelTabs, Oe as FCCSidebar, je as FCCThemeToggle, Ce as FCCWorkspaceHeader, jt as FilterBar, _n as FilterIcon, Vt as InboxIcon, Gt as InitiativesIcon, Ht as IssuesIcon, Rt as KPICard, Mt as KanbanBoard, Pt as KanbanCard, Nt as KanbanColumn, yn as LabelIcon, ln as LinkIcon, qt as MoreIcon, Bt as NotificationsPanel, on as PriorityHigh, cn as PriorityLow, sn as PriorityMedium, an as PriorityUrgent, Kt as ProjectsIcon, Wt as PulseIcon, Ut as ReviewsIcon, Jt as SearchIcon, lt as SearchableSelect, dn as SettingsIcon, ut as Sheet, dt as SheetFooter, Ne as Spinner, Qt as StarIcon, zt as StatCard, nn as StatusBacklog, rn as StatusCancelled, en as StatusDone, $t as StatusInProgress, mt as StatusMetric, tn as StatusTodo, ht as Switch, Ft as TableBoard, It as TableBoardGroup, Lt as TableBoardRow, gt as Tabs, yt as TabsContent, _t as TabsList, vt as TabsTrigger, G as ThemeProvider, U as ToastProvider, bt as Tooltip, un as TrashIcon, vn as UserIcon, Tt as ViewModeToggle, Dt as WorkspaceTabs, K as useTheme, te as useToast };
2886
+ export { Re as Accordion, Le as AccordionItem, At as ActivityFeed, Ne as AppLoader, Y as Avatar, X as Badge, _n as BellIcon, Ge as Button, vn as CalendarIcon, qe as Card, Ze as CardContent, Xe as CardDescription, Qe as CardFooter, Je as CardHeader, Ye as CardTitle, hn as CheckIcon, Qt as ChevronDown, $t as ChevronUp, mn as CloseIcon, jt as CommandBar, gn as CopyIcon, Ct as DEFAULT_ICON_BY_VALUE, wt as DEFAULT_VIEW_MODE_OPTIONS, Mt as DataTable, $e as Dialog, rt as DialogBody, nt as DialogDescription, it as DialogFooter, et as DialogHeader, tt as DialogTitle, ot as DropdownMenu, ct as DropdownMenuCheckboxItem, st as DropdownMenuItem, lt as DropdownMenuLabel, ut as DropdownMenuSeparator, Zt as EditIcon, Ae as FCCAppShell, je as FCCBrandLogo, xe as FCCBreadcrumbs, ae as FCCDesignProvider, Ie as FCCDetailsPanel, Ce as FCCHeaderStatus, Fe as FCCLoader, Te as FCCMainWindow, se as FCCSidePanel, ge as FCCSidePanelAction, le as FCCSidePanelBody, me as FCCSidePanelCard, _e as FCCSidePanelChatWrap, he as FCCSidePanelContact, ve as FCCSidePanelConversation, fe as FCCSidePanelGroupLabel, ce as FCCSidePanelHeader, pe as FCCSidePanelItem, ye as FCCSidePanelMessage, de as FCCSidePanelSearch, ue as FCCSidePanelTabs, ke as FCCSidebar, Me as FCCThemeToggle, we as FCCWorkspaceHeader, Nt as FilterBar, yn as FilterIcon, Ut as InboxIcon, qt as InitiativesIcon, at as Input, Wt as IssuesIcon, Bt as KPICard, Pt as KanbanBoard, It as KanbanCard, Ft as KanbanColumn, xn as LabelIcon, dn as LinkIcon, Yt as MoreIcon, Ht as NotificationsPanel, cn as PriorityHigh, un as PriorityLow, ln as PriorityMedium, sn as PriorityUrgent, Jt as ProjectsIcon, Kt as PulseIcon, Gt as ReviewsIcon, Xt as SearchIcon, dt as SearchableSelect, pn as SettingsIcon, ft as Sheet, pt as SheetFooter, Pe as Spinner, en as StarIcon, Vt as StatCard, an as StatusBacklog, on as StatusCancelled, nn as StatusDone, tn as StatusInProgress, gt as StatusMetric, rn as StatusTodo, _t as Switch, Lt as TableBoard, Rt as TableBoardGroup, zt as TableBoardRow, vt as Tabs, xt as TabsContent, yt as TabsList, bt as TabsTrigger, K as ThemeProvider, W as ToastProvider, St as Tooltip, fn as TrashIcon, bn as UserIcon, Dt as ViewModeToggle, kt as WorkspaceTabs, q as useTheme, te as useToast };