@gnome-ui/react 1.14.0 → 1.16.0

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
@@ -2,6 +2,48 @@ import { Fragment as e, jsx as t, jsxs as n } from "react/jsx-runtime";
2
2
  import { Children as r, cloneElement as i, createContext as a, isValidElement as o, useCallback as s, useContext as c, useEffect as l, useId as u, useRef as d, useState as f } from "react";
3
3
  import { createPortal as p } from "react-dom";
4
4
  var m = {
5
+ blockquote: "_blockquote_j7x50_3",
6
+ body: "_body_j7x50_15",
7
+ icon: "_icon_j7x50_21",
8
+ content: "_content_j7x50_28",
9
+ footer: "_footer_j7x50_36",
10
+ cite: "_cite_j7x50_42",
11
+ default: "_default_j7x50_48",
12
+ info: "_info_j7x50_52",
13
+ warning: "_warning_j7x50_61",
14
+ error: "_error_j7x50_70",
15
+ success: "_success_j7x50_79"
16
+ };
17
+ //#endregion
18
+ //#region src/components/Blockquote/Blockquote.tsx
19
+ function h({ variant: e = "default", icon: r, cite: i, children: a, className: o, ...s }) {
20
+ return /* @__PURE__ */ n("blockquote", {
21
+ className: [
22
+ m.blockquote,
23
+ m[e],
24
+ o
25
+ ].filter(Boolean).join(" "),
26
+ ...s,
27
+ children: [/* @__PURE__ */ n("div", {
28
+ className: m.body,
29
+ children: [r && /* @__PURE__ */ t("span", {
30
+ className: m.icon,
31
+ "aria-hidden": "true",
32
+ children: r
33
+ }), /* @__PURE__ */ t("p", {
34
+ className: m.content,
35
+ children: a
36
+ })]
37
+ }), i !== void 0 && /* @__PURE__ */ t("footer", {
38
+ className: m.footer,
39
+ children: /* @__PURE__ */ t("cite", {
40
+ className: m.cite,
41
+ children: i
42
+ })
43
+ })]
44
+ });
45
+ }
46
+ var g = {
5
47
  button: "_button_1qgdy_1",
6
48
  pill: "_pill_1qgdy_52",
7
49
  circular: "_circular_1qgdy_59",
@@ -16,14 +58,14 @@ var m = {
16
58
  };
17
59
  //#endregion
18
60
  //#region src/components/Button/Button.tsx
19
- function h({ variant: e = "default", size: t = "md", shape: r = "default", osd: i = !1, leadingIcon: a, trailingIcon: o, children: s, className: c, ...l }) {
61
+ function _({ variant: e = "default", size: t = "md", shape: r = "default", osd: i = !1, leadingIcon: a, trailingIcon: o, children: s, className: c, ...l }) {
20
62
  return /* @__PURE__ */ n("button", {
21
63
  className: [
22
- m.button,
23
- m[e],
24
- t === "md" ? null : m[t],
25
- r === "default" ? null : m[r],
26
- i ? m.osd : null,
64
+ g.button,
65
+ g[e],
66
+ t === "md" ? null : g[t],
67
+ r === "default" ? null : g[r],
68
+ i ? g.osd : null,
27
69
  c
28
70
  ].filter(Boolean).join(" "),
29
71
  ...l,
@@ -36,20 +78,20 @@ function h({ variant: e = "default", size: t = "md", shape: r = "default", osd:
36
78
  }
37
79
  //#endregion
38
80
  //#region src/components/Text/Text.module.css
39
- var g = "_text_102e3_1", _ = "_heading_102e3_41", v = "_body_102e3_48", y = "_document_102e3_55", b = "_caption_102e3_62", x = "_monospace_102e3_78", S = "_numeric_102e3_85", C = {
40
- text: g,
81
+ var v = "_text_102e3_1", y = "_heading_102e3_41", b = "_body_102e3_48", x = "_document_102e3_55", S = "_caption_102e3_62", C = "_monospace_102e3_78", w = "_numeric_102e3_85", T = {
82
+ text: v,
41
83
  "large-title": "_large-title_102e3_9",
42
84
  "title-1": "_title-1_102e3_16",
43
85
  "title-2": "_title-2_102e3_22",
44
86
  "title-3": "_title-3_102e3_28",
45
87
  "title-4": "_title-4_102e3_34",
46
- heading: _,
47
- body: v,
48
- document: y,
49
- caption: b,
88
+ heading: y,
89
+ body: b,
90
+ document: x,
91
+ caption: S,
50
92
  "caption-heading": "_caption-heading_102e3_69",
51
- monospace: x,
52
- numeric: S,
93
+ monospace: C,
94
+ numeric: w,
53
95
  "color-default": "_color-default_102e3_95",
54
96
  "color-dim": "_color-dim_102e3_99",
55
97
  "color-accent": "_color-accent_102e3_103",
@@ -57,7 +99,7 @@ var g = "_text_102e3_1", _ = "_heading_102e3_41", v = "_body_102e3_48", y = "_do
57
99
  "color-success": "_color-success_102e3_111",
58
100
  "color-warning": "_color-warning_102e3_115",
59
101
  "color-error": "_color-error_102e3_119"
60
- }, w = {
102
+ }, E = {
61
103
  "large-title": "h1",
62
104
  "title-1": "h1",
63
105
  "title-2": "h2",
@@ -71,12 +113,12 @@ var g = "_text_102e3_1", _ = "_heading_102e3_41", v = "_body_102e3_48", y = "_do
71
113
  monospace: "code",
72
114
  numeric: "span"
73
115
  };
74
- function T({ variant: e = "body", color: n = "default", as: r, className: i, children: a, ...o }) {
75
- return /* @__PURE__ */ t(r ?? w[e], {
116
+ function D({ variant: e = "body", color: n = "default", as: r, className: i, children: a, ...o }) {
117
+ return /* @__PURE__ */ t(r ?? E[e], {
76
118
  className: [
77
- C.text,
78
- C[e],
79
- C[`color-${n}`],
119
+ T.text,
120
+ T[e],
121
+ T[`color-${n}`],
80
122
  i
81
123
  ].filter(Boolean).join(" "),
82
124
  ...o,
@@ -85,29 +127,29 @@ function T({ variant: e = "body", color: n = "default", as: r, className: i, chi
85
127
  }
86
128
  //#endregion
87
129
  //#region src/components/Card/Card.module.css
88
- var E = "_card_7f351_1", D = "_interactive_7f351_19", O = {
89
- card: E,
130
+ var O = "_card_7f351_1", k = "_interactive_7f351_19", A = {
131
+ card: O,
90
132
  "padding-none": "_padding-none_7f351_12",
91
133
  "padding-sm": "_padding-sm_7f351_13",
92
134
  "padding-md": "_padding-md_7f351_14",
93
135
  "padding-lg": "_padding-lg_7f351_15",
94
- interactive: D
136
+ interactive: k
95
137
  };
96
138
  //#endregion
97
139
  //#region src/components/Card/Card.tsx
98
- function k({ interactive: e = !1, padding: n = "md", as: r, className: i, children: a, ...o }) {
140
+ function j({ interactive: e = !1, padding: n = "md", as: r, className: i, children: a, ...o }) {
99
141
  return /* @__PURE__ */ t(r ?? (e ? "button" : "div"), {
100
142
  className: [
101
- O.card,
102
- O[`padding-${n}`],
103
- e ? O.interactive : null,
143
+ A.card,
144
+ A[`padding-${n}`],
145
+ e ? A.interactive : null,
104
146
  i
105
147
  ].filter(Boolean).join(" "),
106
148
  ...o,
107
149
  children: a
108
150
  });
109
151
  }
110
- var A = {
152
+ var M = {
111
153
  spinner: "_spinner_101bb_3",
112
154
  spin: "_spin_101bb_3",
113
155
  sm: "_sm_101bb_15",
@@ -116,10 +158,10 @@ var A = {
116
158
  };
117
159
  //#endregion
118
160
  //#region src/components/Spinner/Spinner.tsx
119
- function j({ size: e = "md", label: n = "Loading…", className: r, ...i }) {
161
+ function N({ size: e = "md", label: n = "Loading…", className: r, ...i }) {
120
162
  let a = [
121
- A.spinner,
122
- A[e],
163
+ M.spinner,
164
+ M[e],
123
165
  r
124
166
  ].filter(Boolean).join(" ");
125
167
  return /* @__PURE__ */ t("span", {
@@ -130,7 +172,7 @@ function j({ size: e = "md", label: n = "Loading…", className: r, ...i }) {
130
172
  ...i
131
173
  });
132
174
  }
133
- var M = {
175
+ var P = {
134
176
  avatar: "_avatar_1f2cd_3",
135
177
  sm: "_sm_1f2cd_17",
136
178
  md: "_md_1f2cd_22",
@@ -147,7 +189,7 @@ var M = {
147
189
  "color-brown": "_color-brown_1f2cd_75",
148
190
  "color-teal": "_color-teal_1f2cd_76",
149
191
  "color-slate": "_color-slate_1f2cd_77"
150
- }, N = [
192
+ }, ee = [
151
193
  "blue",
152
194
  "green",
153
195
  "yellow",
@@ -158,20 +200,20 @@ var M = {
158
200
  "teal",
159
201
  "slate"
160
202
  ];
161
- function P(e) {
203
+ function te(e) {
162
204
  let t = 0;
163
205
  for (let n = 0; n < e.length; n++) t = t * 31 + e.charCodeAt(n) >>> 0;
164
- return N[t % N.length];
206
+ return ee[t % ee.length];
165
207
  }
166
- function ee(e) {
208
+ function ne(e) {
167
209
  let t = e.trim().split(/\s+/).filter(Boolean);
168
210
  return t.length === 0 ? "" : t.length === 1 ? t[0].charAt(0).toUpperCase() : t[0].charAt(0).toUpperCase() + t[t.length - 1].charAt(0).toUpperCase();
169
211
  }
170
- function te({ name: e = "", src: n, alt: r, size: i = "md", color: a, className: o, ...s }) {
171
- let c = a ?? (e ? P(e) : "blue"), l = ee(e), u = [
172
- M.avatar,
173
- M[i],
174
- n ? null : M[`color-${c}`],
212
+ function re({ name: e = "", src: n, alt: r, size: i = "md", color: a, className: o, ...s }) {
213
+ let c = a ?? (e ? te(e) : "blue"), l = ne(e), u = [
214
+ P.avatar,
215
+ P[i],
216
+ n ? null : P[`color-${c}`],
175
217
  o
176
218
  ].filter(Boolean).join(" ");
177
219
  return /* @__PURE__ */ t("span", {
@@ -182,25 +224,25 @@ function te({ name: e = "", src: n, alt: r, size: i = "md", color: a, className:
182
224
  children: n ? /* @__PURE__ */ t("img", {
183
225
  src: n,
184
226
  alt: r ?? e,
185
- className: M.image
227
+ className: P.image
186
228
  }) : /* @__PURE__ */ t("span", {
187
229
  "aria-hidden": "true",
188
- className: M.initials,
230
+ className: P.initials,
189
231
  children: l
190
232
  })
191
233
  });
192
234
  }
193
- var ne = {
235
+ var ie = {
194
236
  separator: "_separator_w9b4s_3",
195
237
  horizontal: "_horizontal_w9b4s_12",
196
238
  vertical: "_vertical_w9b4s_20"
197
239
  };
198
240
  //#endregion
199
241
  //#region src/components/Separator/Separator.tsx
200
- function re({ orientation: e = "horizontal", className: n, ...r }) {
242
+ function ae({ orientation: e = "horizontal", className: n, ...r }) {
201
243
  let i = [
202
- ne.separator,
203
- e === "vertical" ? ne.vertical : ne.horizontal,
244
+ ie.separator,
245
+ e === "vertical" ? ie.vertical : ie.horizontal,
204
246
  n
205
247
  ].filter(Boolean).join(" ");
206
248
  return e === "vertical" ? /* @__PURE__ */ t("div", {
@@ -215,32 +257,32 @@ function re({ orientation: e = "horizontal", className: n, ...r }) {
215
257
  }
216
258
  //#endregion
217
259
  //#region src/components/Switch/Switch.module.css
218
- var ie = { switch: "_switch_1h6fk_3" };
260
+ var oe = { switch: "_switch_1h6fk_3" };
219
261
  //#endregion
220
262
  //#region src/components/Switch/Switch.tsx
221
- function ae({ className: e, ...n }) {
263
+ function se({ className: e, ...n }) {
222
264
  return /* @__PURE__ */ t("input", {
223
265
  type: "checkbox",
224
266
  role: "switch",
225
- className: [ie.switch, e].filter(Boolean).join(" "),
267
+ className: [oe.switch, e].filter(Boolean).join(" "),
226
268
  ...n
227
269
  });
228
270
  }
229
- var oe = { checkbox: "_checkbox_jnffk_3" };
271
+ var ce = { checkbox: "_checkbox_jnffk_3" };
230
272
  //#endregion
231
273
  //#region src/components/Checkbox/Checkbox.tsx
232
- function se({ indeterminate: e = !1, className: n, ...r }) {
274
+ function le({ indeterminate: e = !1, className: n, ...r }) {
233
275
  let i = d(null);
234
276
  return l(() => {
235
277
  i.current && (i.current.indeterminate = e);
236
278
  }, [e]), /* @__PURE__ */ t("input", {
237
279
  ref: i,
238
280
  type: "checkbox",
239
- className: [oe.checkbox, n].filter(Boolean).join(" "),
281
+ className: [ce.checkbox, n].filter(Boolean).join(" "),
240
282
  ...r
241
283
  });
242
284
  }
243
- var ce = {
285
+ var F = {
244
286
  wrapper: "_wrapper_q91d8_3",
245
287
  disabled: "_disabled_q91d8_9",
246
288
  label: "_label_q91d8_15",
@@ -251,14 +293,14 @@ var ce = {
251
293
  };
252
294
  //#endregion
253
295
  //#region src/components/TextField/TextField.tsx
254
- function le({ label: e, helperText: r, error: i, id: a, className: o, disabled: s, ...c }) {
296
+ function ue({ label: e, helperText: r, error: i, id: a, className: o, disabled: s, ...c }) {
255
297
  let l = u(), d = a ?? l, f = `${d}-help`;
256
298
  return /* @__PURE__ */ n("div", {
257
- className: [ce.wrapper, s ? ce.disabled : null].filter(Boolean).join(" "),
299
+ className: [F.wrapper, s ? F.disabled : null].filter(Boolean).join(" "),
258
300
  children: [
259
301
  e && /* @__PURE__ */ t("label", {
260
302
  htmlFor: d,
261
- className: ce.label,
303
+ className: F.label,
262
304
  children: e
263
305
  }),
264
306
  /* @__PURE__ */ t("input", {
@@ -267,31 +309,31 @@ function le({ label: e, helperText: r, error: i, id: a, className: o, disabled:
267
309
  "aria-describedby": i || r ? f : void 0,
268
310
  "aria-invalid": i ? !0 : void 0,
269
311
  className: [
270
- ce.input,
271
- i ? ce.errorInput : null,
312
+ F.input,
313
+ i ? F.errorInput : null,
272
314
  o
273
315
  ].filter(Boolean).join(" "),
274
316
  ...c
275
317
  }),
276
318
  (i || r) && /* @__PURE__ */ t("span", {
277
319
  id: f,
278
- className: [ce.hint, i ? ce.errorHint : null].filter(Boolean).join(" "),
320
+ className: [F.hint, i ? F.errorHint : null].filter(Boolean).join(" "),
279
321
  children: i ?? r
280
322
  })
281
323
  ]
282
324
  });
283
325
  }
284
- var ue = { radio: "_radio_1vybt_3" };
326
+ var de = { radio: "_radio_1vybt_3" };
285
327
  //#endregion
286
328
  //#region src/components/RadioButton/RadioButton.tsx
287
- function de({ className: e, ...n }) {
329
+ function fe({ className: e, ...n }) {
288
330
  return /* @__PURE__ */ t("input", {
289
331
  type: "radio",
290
- className: [ue.radio, e].filter(Boolean).join(" "),
332
+ className: [de.radio, e].filter(Boolean).join(" "),
291
333
  ...n
292
334
  });
293
335
  }
294
- var fe = {
336
+ var pe = {
295
337
  track: "_track_n3qbv_3",
296
338
  fill: "_fill_n3qbv_14",
297
339
  indeterminate: "_indeterminate_n3qbv_24",
@@ -299,7 +341,7 @@ var fe = {
299
341
  };
300
342
  //#endregion
301
343
  //#region src/components/ProgressBar/ProgressBar.tsx
302
- function pe({ value: e, className: n, "aria-label": r, "aria-labelledby": i, ...a }) {
344
+ function me({ value: e, className: n, "aria-label": r, "aria-labelledby": i, ...a }) {
303
345
  let o = e == null, s = o ? void 0 : Math.min(1, Math.max(0, e)), c = s === void 0 ? void 0 : s * 100;
304
346
  return /* @__PURE__ */ t("div", {
305
347
  role: "progressbar",
@@ -308,56 +350,56 @@ function pe({ value: e, className: n, "aria-label": r, "aria-labelledby": i, ...
308
350
  "aria-valuenow": s === void 0 ? void 0 : Math.round(c),
309
351
  "aria-valuemin": o ? void 0 : 0,
310
352
  "aria-valuemax": o ? void 0 : 100,
311
- className: [fe.track, n].filter(Boolean).join(" "),
353
+ className: [pe.track, n].filter(Boolean).join(" "),
312
354
  ...a,
313
355
  children: /* @__PURE__ */ t("div", {
314
- className: [fe.fill, o ? fe.indeterminate : null].filter(Boolean).join(" "),
356
+ className: [pe.fill, o ? pe.indeterminate : null].filter(Boolean).join(" "),
315
357
  style: o ? void 0 : { width: `${c}%` }
316
358
  })
317
359
  });
318
360
  }
319
361
  //#endregion
320
362
  //#region src/components/Banner/Banner.module.css
321
- var me = "_banner_1x3b0_3", he = "_message_1x3b0_17", ge = "_actions_1x3b0_24", _e = "_actionBtn_1x3b0_33", ve = "_dismissBtn_1x3b0_55", ye = "_info_1x3b0_85", be = "_warning_1x3b0_99", xe = "_error_1x3b0_113", Se = "_success_1x3b0_127", Ce = {
322
- banner: me,
323
- message: he,
324
- actions: ge,
325
- actionBtn: _e,
326
- dismissBtn: ve,
327
- info: ye,
363
+ var he = "_banner_1x3b0_3", ge = "_message_1x3b0_17", _e = "_actions_1x3b0_24", ve = "_actionBtn_1x3b0_33", ye = "_dismissBtn_1x3b0_55", be = "_info_1x3b0_85", xe = "_warning_1x3b0_99", Se = "_error_1x3b0_113", Ce = "_success_1x3b0_127", we = {
364
+ banner: he,
365
+ message: ge,
366
+ actions: _e,
367
+ actionBtn: ve,
368
+ dismissBtn: ye,
369
+ info: be,
328
370
  "actionBtn-info": "_actionBtn-info_1x3b0_90",
329
- warning: be,
371
+ warning: xe,
330
372
  "actionBtn-warning": "_actionBtn-warning_1x3b0_104",
331
- error: xe,
373
+ error: Se,
332
374
  "actionBtn-error": "_actionBtn-error_1x3b0_118",
333
- success: Se,
375
+ success: Ce,
334
376
  "actionBtn-success": "_actionBtn-success_1x3b0_132"
335
377
  };
336
378
  //#endregion
337
379
  //#region src/components/Banner/Banner.tsx
338
- function we({ variant: e = "info", children: r, actionLabel: i, onAction: a, dismissible: o = !1, onDismiss: s, className: c, ...l }) {
380
+ function Te({ variant: e = "info", children: r, actionLabel: i, onAction: a, dismissible: o = !1, onDismiss: s, className: c, ...l }) {
339
381
  return /* @__PURE__ */ n("div", {
340
382
  role: "status",
341
383
  "aria-live": "polite",
342
384
  className: [
343
- Ce.banner,
344
- Ce[e],
385
+ we.banner,
386
+ we[e],
345
387
  c
346
388
  ].filter(Boolean).join(" "),
347
389
  ...l,
348
390
  children: [/* @__PURE__ */ t("span", {
349
- className: Ce.message,
391
+ className: we.message,
350
392
  children: r
351
393
  }), (i || o) && /* @__PURE__ */ n("span", {
352
- className: Ce.actions,
394
+ className: we.actions,
353
395
  children: [i && /* @__PURE__ */ t("button", {
354
396
  type: "button",
355
- className: [Ce.actionBtn, Ce[`actionBtn-${e}`]].filter(Boolean).join(" "),
397
+ className: [we.actionBtn, we[`actionBtn-${e}`]].filter(Boolean).join(" "),
356
398
  onClick: a,
357
399
  children: i
358
400
  }), o && /* @__PURE__ */ t("button", {
359
401
  type: "button",
360
- className: Ce.dismissBtn,
402
+ className: we.dismissBtn,
361
403
  onClick: s,
362
404
  "aria-label": "Dismiss",
363
405
  children: /* @__PURE__ */ t("svg", {
@@ -372,7 +414,7 @@ function we({ variant: e = "info", children: r, actionLabel: i, onAction: a, dis
372
414
  })]
373
415
  });
374
416
  }
375
- var Te = {
417
+ var Ee = {
376
418
  headerBar: "_headerBar_1rr5r_3",
377
419
  flat: "_flat_1rr5r_22",
378
420
  slot: "_slot_1rr5r_29",
@@ -382,35 +424,35 @@ var Te = {
382
424
  };
383
425
  //#endregion
384
426
  //#region src/components/HeaderBar/HeaderBar.tsx
385
- function Ee({ title: e, start: r, end: i, flat: a = !1, className: o, ...s }) {
427
+ function De({ title: e, start: r, end: i, flat: a = !1, className: o, ...s }) {
386
428
  return /* @__PURE__ */ n("header", {
387
429
  className: [
388
- Te.headerBar,
389
- a ? Te.flat : null,
430
+ Ee.headerBar,
431
+ a ? Ee.flat : null,
390
432
  o
391
433
  ].filter(Boolean).join(" "),
392
434
  ...s,
393
435
  children: [
394
436
  /* @__PURE__ */ t("div", {
395
- className: Te.slot,
437
+ className: Ee.slot,
396
438
  children: r
397
439
  }),
398
440
  /* @__PURE__ */ t("div", {
399
- className: Te.titleSlot,
441
+ className: Ee.titleSlot,
400
442
  "aria-live": "polite",
401
443
  children: typeof e == "string" ? /* @__PURE__ */ t("span", {
402
- className: Te.title,
444
+ className: Ee.title,
403
445
  children: e
404
446
  }) : e
405
447
  }),
406
448
  /* @__PURE__ */ t("div", {
407
- className: [Te.slot, Te.slotEnd].filter(Boolean).join(" "),
449
+ className: [Ee.slot, Ee.slotEnd].filter(Boolean).join(" "),
408
450
  children: i
409
451
  })
410
452
  ]
411
453
  });
412
454
  }
413
- var De = {
455
+ var Oe = {
414
456
  footer: "_footer_10xz9_3",
415
457
  flat: "_flat_10xz9_23",
416
458
  slot: "_slot_10xz9_29",
@@ -419,31 +461,31 @@ var De = {
419
461
  };
420
462
  //#endregion
421
463
  //#region src/components/Footer/Footer.tsx
422
- function Oe({ start: e, end: r, children: i, flat: a = !1, className: o, ...s }) {
464
+ function ke({ start: e, end: r, children: i, flat: a = !1, className: o, ...s }) {
423
465
  return /* @__PURE__ */ n("footer", {
424
466
  className: [
425
- De.footer,
426
- a ? De.flat : null,
467
+ Oe.footer,
468
+ a ? Oe.flat : null,
427
469
  o
428
470
  ].filter(Boolean).join(" "),
429
471
  ...s,
430
472
  children: [
431
473
  /* @__PURE__ */ t("div", {
432
- className: De.slot,
474
+ className: Oe.slot,
433
475
  children: e
434
476
  }),
435
477
  i != null && /* @__PURE__ */ t("div", {
436
- className: De.center,
478
+ className: Oe.center,
437
479
  children: i
438
480
  }),
439
481
  /* @__PURE__ */ t("div", {
440
- className: [De.slot, De.slotEnd].filter(Boolean).join(" "),
482
+ className: [Oe.slot, Oe.slotEnd].filter(Boolean).join(" "),
441
483
  children: r
442
484
  })
443
485
  ]
444
486
  });
445
487
  }
446
- var ke = {
488
+ var Ae = {
447
489
  wrapper: "_wrapper_1apop_3",
448
490
  badge: "_badge_1apop_11",
449
491
  anchored: "_anchored_1apop_32",
@@ -456,32 +498,32 @@ var ke = {
456
498
  };
457
499
  //#endregion
458
500
  //#region src/components/Badge/Badge.tsx
459
- function Ae({ variant: e = "accent", dot: r = !1, children: i, anchor: a, className: o, ...s }) {
501
+ function je({ variant: e = "accent", dot: r = !1, children: i, anchor: a, className: o, ...s }) {
460
502
  let c = /* @__PURE__ */ t("span", {
461
503
  className: [
462
- ke.badge,
463
- ke[e],
464
- r ? ke.dot : null,
465
- a ? ke.anchored : null,
504
+ Ae.badge,
505
+ Ae[e],
506
+ r ? Ae.dot : null,
507
+ a ? Ae.anchored : null,
466
508
  o
467
509
  ].filter(Boolean).join(" "),
468
510
  ...s,
469
511
  children: !r && i
470
512
  });
471
513
  return a ? /* @__PURE__ */ n("span", {
472
- className: ke.wrapper,
514
+ className: Ae.wrapper,
473
515
  children: [a, c]
474
516
  }) : c;
475
517
  }
476
518
  //#endregion
477
519
  //#region src/components/Icon/Icon.tsx
478
- var je = {
520
+ var Me = {
479
521
  sm: 12,
480
522
  md: 16,
481
523
  lg: 20
482
524
  };
483
- function F({ icon: e, size: n = "md", label: r, width: i, height: a, ...o }) {
484
- let s = je[n];
525
+ function I({ icon: e, size: n = "md", label: r, width: i, height: a, ...o }) {
526
+ let s = Me[n];
485
527
  return /* @__PURE__ */ t("svg", {
486
528
  xmlns: "http://www.w3.org/2000/svg",
487
529
  viewBox: e.viewBox,
@@ -502,43 +544,43 @@ function F({ icon: e, size: n = "md", label: r, width: i, height: a, ...o }) {
502
544
  }
503
545
  //#endregion
504
546
  //#region ../icons/dist/index.js
505
- var Me = {
547
+ var Ne = {
506
548
  viewBox: "0 0 16 16",
507
549
  paths: [{
508
550
  d: "m2.5 5 5.5 6 5.5-6z",
509
551
  fillRule: "evenodd"
510
552
  }]
511
- }, Ne = {
553
+ }, Pe = {
512
554
  viewBox: "0 0 16 16",
513
555
  paths: [{
514
556
  d: "M3.293 3.293a1 1 0 0 1 1.414 0L8 6.586l3.293-3.293a1 1 0 1 1 1.414 1.414L9.414 8l3.293 3.293a1 1 0 0 1-1.414 1.414L8 9.414l-3.293 3.293a1 1 0 0 1-1.414-1.414L6.586 8 3.293 4.707a1 1 0 0 1 0-1.414z",
515
557
  fillRule: "evenodd"
516
558
  }]
517
- }, Pe = {
559
+ }, Fe = {
518
560
  viewBox: "0 0 16 16",
519
561
  paths: [{
520
562
  d: "M6.5 1a5.5 5.5 0 0 1 4.33 8.92l3.13 3.13-1.41 1.41-3.13-3.13A5.5 5.5 0 1 1 6.5 1zm0 2a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7z",
521
563
  fillRule: "evenodd"
522
564
  }]
523
- }, Fe = {
565
+ }, Ie = {
524
566
  viewBox: "0 0 16 16",
525
567
  paths: [{
526
568
  d: "M8 3C4.5 3 1.5 5.667 0 8c1.5 2.333 4.5 5 8 5s6.5-2.667 8-5c-1.5-2.333-4.5-5-8-5zm0 8a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm0-4.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z",
527
569
  fillRule: "evenodd"
528
570
  }]
529
- }, Ie = {
571
+ }, Le = {
530
572
  viewBox: "0 0 16 16",
531
573
  paths: [{
532
574
  d: "M1.293 1.293a1 1 0 0 1 1.414 0l12 12a1 1 0 0 1-1.414 1.414l-1.88-1.88A8.8 8.8 0 0 1 8 13C4.5 13 1.5 10.333 0 8c.637-1.023 1.52-2.049 2.6-2.893L1.293 2.707a1 1 0 0 1 0-1.414zM5.03 6.444 7.09 8.505A1.5 1.5 0 0 0 9.494 6.91L7.432 4.848A3 3 0 0 0 5.03 6.444zM8 3c.645 0 1.27.083 1.867.237l-1.59 1.59A3 3 0 0 0 5.173 7.92L3.584 6.333C4.51 4.95 6.152 3 8 3zm5.4 2.107C14.48 5.951 15.363 6.977 16 8c-1.5 2.333-4.5 5-8 5a8.8 8.8 0 0 1-2.072-.249l1.538-1.538a3 3 0 0 0 3.703-3.703L12.81 5.87c.202.076.4.156.59.237z",
533
575
  fillRule: "evenodd"
534
576
  }]
535
- }, Le = {
577
+ }, Re = {
536
578
  viewBox: "0 0 16 16",
537
579
  paths: [{
538
580
  d: "M13.5 3 6 11.5 2.5 8 1 9.5l5 5 9-10z",
539
581
  fillRule: "evenodd"
540
582
  }]
541
- }, I = {
583
+ }, ze = {
542
584
  wrapper: "_wrapper_1rkb1_3",
543
585
  open: "_open_1rkb1_13",
544
586
  bar: "_bar_1rkb1_20",
@@ -551,7 +593,7 @@ var Me = {
551
593
  };
552
594
  //#endregion
553
595
  //#region src/components/SearchBar/SearchBar.tsx
554
- function Re({ open: e, onClose: r, onClear: i, children: a, value: o, onChange: c, placeholder: u = "Search…", disabled: f, inline: p = !1, className: m, ...h }) {
596
+ function Be({ open: e, onClose: r, onClear: i, children: a, value: o, onChange: c, placeholder: u = "Search…", disabled: f, inline: p = !1, className: m, ...h }) {
555
597
  let g = d(null);
556
598
  l(() => {
557
599
  if (e) {
@@ -564,23 +606,23 @@ function Re({ open: e, onClose: r, onClear: i, children: a, value: o, onChange:
564
606
  }, [r, h]), v = o !== void 0 && o !== "";
565
607
  return /* @__PURE__ */ n("div", {
566
608
  className: [
567
- I.wrapper,
568
- e ? I.open : null,
609
+ ze.wrapper,
610
+ e ? ze.open : null,
569
611
  m
570
612
  ].filter(Boolean).join(" "),
571
613
  "aria-hidden": !e,
572
614
  children: [/* @__PURE__ */ n("div", {
573
615
  className: [
574
- I.bar,
575
- p ? I.inline : null,
576
- f ? I.disabled : null
616
+ ze.bar,
617
+ p ? ze.inline : null,
618
+ f ? ze.disabled : null
577
619
  ].filter(Boolean).join(" "),
578
620
  children: [
579
621
  /* @__PURE__ */ t("span", {
580
- className: I.searchIcon,
622
+ className: ze.searchIcon,
581
623
  "aria-hidden": !0,
582
- children: /* @__PURE__ */ t(F, {
583
- icon: Pe,
624
+ children: /* @__PURE__ */ t(I, {
625
+ icon: Fe,
584
626
  size: "md"
585
627
  })
586
628
  }),
@@ -593,32 +635,32 @@ function Re({ open: e, onClose: r, onClear: i, children: a, value: o, onChange:
593
635
  placeholder: u,
594
636
  disabled: f,
595
637
  tabIndex: e ? void 0 : -1,
596
- className: I.input,
638
+ className: ze.input,
597
639
  onKeyDown: _,
598
640
  ...h
599
641
  }),
600
642
  v && /* @__PURE__ */ t("button", {
601
643
  type: "button",
602
- className: I.clearButton,
644
+ className: ze.clearButton,
603
645
  "aria-label": "Clear search",
604
646
  tabIndex: e ? void 0 : -1,
605
647
  disabled: f,
606
648
  onClick: () => {
607
649
  i?.(), g.current?.focus();
608
650
  },
609
- children: /* @__PURE__ */ t(F, {
610
- icon: Ne,
651
+ children: /* @__PURE__ */ t(I, {
652
+ icon: Pe,
611
653
  size: "md"
612
654
  })
613
655
  })
614
656
  ]
615
657
  }), a && /* @__PURE__ */ t("div", {
616
- className: I.filterRow,
658
+ className: ze.filterRow,
617
659
  children: a
618
660
  })]
619
661
  });
620
662
  }
621
- var ze = {
663
+ var Ve = {
622
664
  page: "_page_cb4hq_3",
623
665
  iconWrap: "_iconWrap_cb4hq_20",
624
666
  title: "_title_cb4hq_33",
@@ -628,8 +670,8 @@ var ze = {
628
670
  };
629
671
  //#endregion
630
672
  //#region src/components/StatusPage/StatusPage.tsx
631
- function Be({ icon: e, iconNode: r, title: i, description: a, children: o, compact: s = !1, className: c, ...l }) {
632
- let u = s ? 64 : 128, d = e ? /* @__PURE__ */ t(F, {
673
+ function He({ icon: e, iconNode: r, title: i, description: a, children: o, compact: s = !1, className: c, ...l }) {
674
+ let u = s ? 64 : 128, d = e ? /* @__PURE__ */ t(I, {
633
675
  icon: e,
634
676
  width: u,
635
677
  height: u,
@@ -637,27 +679,27 @@ function Be({ icon: e, iconNode: r, title: i, description: a, children: o, compa
637
679
  }) : r ?? null;
638
680
  return /* @__PURE__ */ n("div", {
639
681
  className: [
640
- ze.page,
641
- s ? ze.compact : null,
682
+ Ve.page,
683
+ s ? Ve.compact : null,
642
684
  c
643
685
  ].filter(Boolean).join(" "),
644
686
  ...l,
645
687
  children: [
646
688
  d && /* @__PURE__ */ t("div", {
647
- className: ze.iconWrap,
689
+ className: Ve.iconWrap,
648
690
  "aria-hidden": "true",
649
691
  children: d
650
692
  }),
651
693
  /* @__PURE__ */ t("p", {
652
- className: ze.title,
694
+ className: Ve.title,
653
695
  children: i
654
696
  }),
655
697
  a && /* @__PURE__ */ t("p", {
656
- className: ze.description,
698
+ className: Ve.description,
657
699
  children: a
658
700
  }),
659
701
  o && /* @__PURE__ */ t("div", {
660
- className: ze.actions,
702
+ className: Ve.actions,
661
703
  children: o
662
704
  })
663
705
  ]
@@ -665,18 +707,18 @@ function Be({ icon: e, iconNode: r, title: i, description: a, children: o, compa
665
707
  }
666
708
  //#endregion
667
709
  //#region src/hooks/useBreakpoint.ts
668
- var Ve = {
710
+ var Ue = {
669
711
  narrow: 400,
670
712
  medium: 550,
671
713
  wide: 860
672
714
  };
673
- function He() {
715
+ function We() {
674
716
  let e = () => {
675
717
  let e = typeof window < "u" ? window.innerWidth : 1280;
676
718
  return {
677
- isNarrow: e <= Ve.narrow,
678
- isMedium: e <= Ve.medium,
679
- isWide: e <= Ve.wide,
719
+ isNarrow: e <= Ue.narrow,
720
+ isMedium: e <= Ue.medium,
721
+ isWide: e <= Ue.wide,
680
722
  width: e
681
723
  };
682
724
  }, [t, n] = f(e);
@@ -687,46 +729,46 @@ function He() {
687
729
  }
688
730
  //#endregion
689
731
  //#region src/components/Sidebar/Sidebar.module.css
690
- var Ue = "_sidebar_b80pp_3", We = "_section_b80pp_21", Ge = "_sectionTitle_b80pp_33", Ke = "_list_b80pp_47", qe = "_item_b80pp_58", Je = "_itemBtn_b80pp_64", Ye = "_active_b80pp_111", Xe = "_itemIcon_b80pp_127", Ze = "_itemLabel_b80pp_140", Qe = "_itemSuffix_b80pp_150", $e = "_contextMenu_b80pp_159", et = "_contextMenuItem_b80pp_183", tt = "_contextMenuDestructive_b80pp_219", nt = "_searchWrap_b80pp_225", rt = "_pageMode_b80pp_236", it = "_dragOver_b80pp_243", at = "_collapsed_b80pp_251", ot = "_itemCollapsed_b80pp_262", L = {
691
- sidebar: Ue,
692
- section: We,
693
- sectionTitle: Ge,
694
- list: Ke,
695
- item: qe,
696
- itemBtn: Je,
697
- active: Ye,
698
- itemIcon: Xe,
699
- itemLabel: Ze,
700
- itemSuffix: Qe,
701
- contextMenu: $e,
732
+ var Ge = "_sidebar_b80pp_3", Ke = "_section_b80pp_21", qe = "_sectionTitle_b80pp_33", Je = "_list_b80pp_47", Ye = "_item_b80pp_58", Xe = "_itemBtn_b80pp_64", Ze = "_active_b80pp_111", Qe = "_itemIcon_b80pp_127", $e = "_itemLabel_b80pp_140", et = "_itemSuffix_b80pp_150", tt = "_contextMenu_b80pp_159", nt = "_contextMenuItem_b80pp_183", rt = "_contextMenuDestructive_b80pp_219", it = "_searchWrap_b80pp_225", at = "_pageMode_b80pp_236", ot = "_dragOver_b80pp_243", st = "_collapsed_b80pp_251", ct = "_itemCollapsed_b80pp_262", L = {
733
+ sidebar: Ge,
734
+ section: Ke,
735
+ sectionTitle: qe,
736
+ list: Je,
737
+ item: Ye,
738
+ itemBtn: Xe,
739
+ active: Ze,
740
+ itemIcon: Qe,
741
+ itemLabel: $e,
742
+ itemSuffix: et,
743
+ contextMenu: tt,
702
744
  "menu-in": "_menu-in_b80pp_1",
703
- contextMenuItem: et,
704
- contextMenuDestructive: tt,
705
- searchWrap: nt,
706
- pageMode: rt,
707
- dragOver: it,
708
- collapsed: at,
709
- itemCollapsed: ot
710
- }, st = a(!1);
711
- function ct() {
712
- return c(st);
745
+ contextMenuItem: nt,
746
+ contextMenuDestructive: rt,
747
+ searchWrap: it,
748
+ pageMode: at,
749
+ dragOver: ot,
750
+ collapsed: st,
751
+ itemCollapsed: ct
752
+ }, lt = a(!1);
753
+ function ut() {
754
+ return c(lt);
713
755
  }
714
- var lt = a("");
715
- function ut(e, t) {
756
+ var dt = a("");
757
+ function ft(e, t) {
716
758
  let n = 0;
717
759
  return r.forEach(e, (e) => {
718
760
  if (!o(e)) return;
719
761
  let r = e.props;
720
- typeof r.label == "string" ? r.label.toLowerCase().includes(t.toLowerCase()) && n++ : r.children && (n += ut(r.children, t));
762
+ typeof r.label == "string" ? r.label.toLowerCase().includes(t.toLowerCase()) && n++ : r.children && (n += ft(r.children, t));
721
763
  }), n;
722
764
  }
723
- function dt({ children: e, collapsed: r = !1, searchable: i, filter: a, onFilterChange: o, mode: s, className: c, ...l }) {
724
- let [u, d] = f(""), { isNarrow: p } = He(), m = a !== void 0, h = m ? a : u, g = (e) => {
765
+ function pt({ children: e, collapsed: r = !1, searchable: i, filter: a, onFilterChange: o, mode: s, className: c, ...l }) {
766
+ let [u, d] = f(""), { isNarrow: p } = We(), m = a !== void 0, h = m ? a : u, g = (e) => {
725
767
  m || d(e), o?.(e);
726
- }, _ = h.length > 0, v = s ?? (p ? "page" : "sidebar"), y = !_ || ut(e, h) > 0;
727
- return /* @__PURE__ */ t(st.Provider, {
768
+ }, _ = h.length > 0, v = s ?? (p ? "page" : "sidebar"), y = !_ || ft(e, h) > 0;
769
+ return /* @__PURE__ */ t(lt.Provider, {
728
770
  value: r,
729
- children: /* @__PURE__ */ t(lt.Provider, {
771
+ children: /* @__PURE__ */ t(dt.Provider, {
730
772
  value: h,
731
773
  children: /* @__PURE__ */ n("nav", {
732
774
  className: [
@@ -738,7 +780,7 @@ function dt({ children: e, collapsed: r = !1, searchable: i, filter: a, onFilter
738
780
  ...l,
739
781
  children: [i && /* @__PURE__ */ t("div", {
740
782
  className: L.searchWrap,
741
- children: /* @__PURE__ */ t(Re, {
783
+ children: /* @__PURE__ */ t(Be, {
742
784
  open: !0,
743
785
  value: h,
744
786
  onChange: (e) => g(e.target.value),
@@ -746,7 +788,7 @@ function dt({ children: e, collapsed: r = !1, searchable: i, filter: a, onFilter
746
788
  onClear: () => g(""),
747
789
  inline: !0
748
790
  })
749
- }), _ && !y ? /* @__PURE__ */ t(Be, {
791
+ }), _ && !y ? /* @__PURE__ */ t(He, {
750
792
  title: "No Results",
751
793
  description: "No items match your search.",
752
794
  compact: !0
@@ -757,7 +799,7 @@ function dt({ children: e, collapsed: r = !1, searchable: i, filter: a, onFilter
757
799
  }
758
800
  //#endregion
759
801
  //#region src/components/Sidebar/SidebarSection.tsx
760
- function ft({ title: e, children: r, className: i, ...a }) {
802
+ function mt({ title: e, children: r, className: i, ...a }) {
761
803
  return /* @__PURE__ */ n("section", {
762
804
  className: [L.section, i].filter(Boolean).join(" "),
763
805
  ...a,
@@ -771,15 +813,15 @@ function ft({ title: e, children: r, className: i, ...a }) {
771
813
  })]
772
814
  });
773
815
  }
774
- var pt = {
816
+ var ht = {
775
817
  tooltip: "_tooltip_y4het_3",
776
818
  visible: "_visible_y4het_29",
777
819
  top: "_top_y4het_55",
778
820
  bottom: "_bottom_y4het_62",
779
821
  left: "_left_y4het_69",
780
822
  right: "_right_y4het_76"
781
- }, mt = 6;
782
- function ht(e, t, n) {
823
+ }, gt = 6;
824
+ function _t(e, t, n) {
783
825
  let r = window.innerWidth, i = window.innerHeight, a = [
784
826
  n,
785
827
  n === "top" || n === "bottom" ? n === "top" ? "bottom" : "top" : n === "left" ? "right" : "left",
@@ -790,7 +832,7 @@ function ht(e, t, n) {
790
832
  ];
791
833
  for (let n of a) {
792
834
  let a = 0, o = 0;
793
- n === "top" ? (a = e.top - t.height - mt, o = e.left + e.width / 2 - t.width / 2) : n === "bottom" ? (a = e.bottom + mt, o = e.left + e.width / 2 - t.width / 2) : n === "left" ? (a = e.top + e.height / 2 - t.height / 2, o = e.left - t.width - mt) : (a = e.top + e.height / 2 - t.height / 2, o = e.right + mt);
835
+ n === "top" ? (a = e.top - t.height - gt, o = e.left + e.width / 2 - t.width / 2) : n === "bottom" ? (a = e.bottom + gt, o = e.left + e.width / 2 - t.width / 2) : n === "left" ? (a = e.top + e.height / 2 - t.height / 2, o = e.left - t.width - gt) : (a = e.top + e.height / 2 - t.height / 2, o = e.right + gt);
794
836
  let s = o >= 8 && o + t.width <= r - 8, c = a >= 8 && a + t.height <= i - 8;
795
837
  if (s && c) return {
796
838
  top: Math.max(8, Math.min(a, i - t.height - 8)),
@@ -799,17 +841,17 @@ function ht(e, t, n) {
799
841
  };
800
842
  }
801
843
  let o = 0, s = 0;
802
- return n === "top" && (o = e.top - t.height - mt, s = e.left + e.width / 2 - t.width / 2), n === "bottom" && (o = e.bottom + mt, s = e.left + e.width / 2 - t.width / 2), n === "left" && (o = e.top + e.height / 2 - t.height / 2, s = e.left - t.width - mt), n === "right" && (o = e.top + e.height / 2 - t.height / 2, s = e.right + mt), {
844
+ return n === "top" && (o = e.top - t.height - gt, s = e.left + e.width / 2 - t.width / 2), n === "bottom" && (o = e.bottom + gt, s = e.left + e.width / 2 - t.width / 2), n === "left" && (o = e.top + e.height / 2 - t.height / 2, s = e.left - t.width - gt), n === "right" && (o = e.top + e.height / 2 - t.height / 2, s = e.right + gt), {
803
845
  top: Math.max(8, Math.min(o, i - t.height - 8)),
804
846
  left: Math.max(8, Math.min(s, window.innerWidth - t.width - 8)),
805
847
  placement: n
806
848
  };
807
849
  }
808
- function gt({ label: r, placement: a = "top", delay: o = 500, children: c }) {
850
+ function vt({ label: r, placement: a = "top", delay: o = 500, children: c }) {
809
851
  let m = u(), [h, g] = f(!1), [_, v] = f(null), y = d(null), b = d(null), x = d(null), S = () => {
810
852
  x.current &&= (clearTimeout(x.current), null);
811
853
  }, C = s(() => {
812
- !y.current || !b.current || v(ht(y.current.getBoundingClientRect(), b.current.getBoundingClientRect(), a));
854
+ !y.current || !b.current || v(_t(y.current.getBoundingClientRect(), b.current.getBoundingClientRect(), a));
813
855
  }, [a]);
814
856
  l(() => {
815
857
  if (h) return C(), window.addEventListener("scroll", C, {
@@ -853,9 +895,9 @@ function gt({ label: r, placement: a = "top", delay: o = 500, children: c }) {
853
895
  id: m,
854
896
  role: "tooltip",
855
897
  className: [
856
- pt.tooltip,
857
- _ ? pt[_.placement] : null,
858
- h && _ ? pt.visible : null
898
+ ht.tooltip,
899
+ _ ? ht[_.placement] : null,
900
+ h && _ ? ht.visible : null
859
901
  ].filter(Boolean).join(" "),
860
902
  style: _ ? {
861
903
  top: _.top,
@@ -871,8 +913,8 @@ function gt({ label: r, placement: a = "top", delay: o = 500, children: c }) {
871
913
  }
872
914
  //#endregion
873
915
  //#region src/components/Sidebar/SidebarItem.tsx
874
- function _t({ label: e, icon: r, active: i = !1, suffix: a, badge: o, tooltip: u, menuItems: m, onDrop: h, acceptTypes: g, className: _, ...v }) {
875
- let y = ct(), b = c(lt), x = a ?? o, S = y ? u ?? e : u, C = b.length > 0 && !e.toLowerCase().includes(b.toLowerCase()), [w, T] = f(!1), E = (e) => {
916
+ function yt({ label: e, icon: r, active: i = !1, suffix: a, badge: o, tooltip: u, menuItems: m, onDrop: h, acceptTypes: g, className: _, ...v }) {
917
+ let y = ut(), b = c(dt), x = a ?? o, S = y ? u ?? e : u, C = b.length > 0 && !e.toLowerCase().includes(b.toLowerCase()), [w, T] = f(!1), E = (e) => {
876
918
  h && (g?.length && !g.some((t) => e.dataTransfer.types.includes(t)) || (e.preventDefault(), T(!0)));
877
919
  }, D = () => T(!1), O = (e) => {
878
920
  h && (e.preventDefault(), T(!1), h(e));
@@ -920,7 +962,7 @@ function _t({ label: e, icon: r, active: i = !1, suffix: a, badge: o, tooltip: u
920
962
  children: [
921
963
  r && /* @__PURE__ */ t("span", {
922
964
  className: L.itemIcon,
923
- children: /* @__PURE__ */ t(F, {
965
+ children: /* @__PURE__ */ t(I, {
924
966
  icon: r,
925
967
  size: "md",
926
968
  "aria-hidden": !0
@@ -939,7 +981,7 @@ function _t({ label: e, icon: r, active: i = !1, suffix: a, badge: o, tooltip: u
939
981
  return /* @__PURE__ */ n("li", {
940
982
  className: L.item,
941
983
  hidden: C || void 0,
942
- children: [S ? /* @__PURE__ */ t(gt, {
984
+ children: [S ? /* @__PURE__ */ t(vt, {
943
985
  label: S,
944
986
  placement: "right",
945
987
  children: te
@@ -964,7 +1006,7 @@ function _t({ label: e, icon: r, active: i = !1, suffix: a, badge: o, tooltip: u
964
1006
  }), document.body)]
965
1007
  });
966
1008
  }
967
- var vt = {
1009
+ var bt = {
968
1010
  spin: "_spin_7d4yi_3",
969
1011
  disabled: "_disabled_7d4yi_36",
970
1012
  btn: "_btn_7d4yi_43",
@@ -972,15 +1014,15 @@ var vt = {
972
1014
  };
973
1015
  //#endregion
974
1016
  //#region src/components/SpinButton/SpinButton.tsx
975
- function yt(e) {
1017
+ function xt(e) {
976
1018
  let t = e.toString(), n = t.indexOf(".");
977
1019
  return n === -1 ? 0 : t.length - n - 1;
978
1020
  }
979
- function bt(e, t, n) {
1021
+ function St(e, t, n) {
980
1022
  return Math.min(n, Math.max(t, e));
981
1023
  }
982
- function xt({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, decimals: c, disabled: l = !1, className: u, "aria-label": d, "aria-labelledby": f, ...p }) {
983
- let m = c ?? yt(o), h = s((e) => r(parseFloat(bt(e, i, a).toFixed(m))), [
1024
+ function Ct({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, decimals: c, disabled: l = !1, className: u, "aria-label": d, "aria-labelledby": f, ...p }) {
1025
+ let m = c ?? xt(o), h = s((e) => r(parseFloat(St(e, i, a).toFixed(m))), [
984
1026
  r,
985
1027
  i,
986
1028
  a,
@@ -1024,8 +1066,8 @@ function xt({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, deci
1024
1066
  tabIndex: l ? -1 : 0,
1025
1067
  onKeyDown: l ? void 0 : g,
1026
1068
  className: [
1027
- vt.spin,
1028
- l ? vt.disabled : null,
1069
+ bt.spin,
1070
+ l ? bt.disabled : null,
1029
1071
  u
1030
1072
  ].filter(Boolean).join(" "),
1031
1073
  ...p,
@@ -1035,12 +1077,12 @@ function xt({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, deci
1035
1077
  tabIndex: -1,
1036
1078
  "aria-hidden": "true",
1037
1079
  disabled: l || e <= i,
1038
- className: vt.btn,
1080
+ className: bt.btn,
1039
1081
  onClick: () => h(e - o),
1040
1082
  children: "−"
1041
1083
  }),
1042
1084
  /* @__PURE__ */ t("span", {
1043
- className: vt.value,
1085
+ className: bt.value,
1044
1086
  "aria-hidden": "true",
1045
1087
  children: e.toFixed(m)
1046
1088
  }),
@@ -1049,7 +1091,7 @@ function xt({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, deci
1049
1091
  tabIndex: -1,
1050
1092
  "aria-hidden": "true",
1051
1093
  disabled: l || e >= a,
1052
- className: vt.btn,
1094
+ className: bt.btn,
1053
1095
  onClick: () => h(e + o),
1054
1096
  children: "+"
1055
1097
  })
@@ -1069,7 +1111,7 @@ var R = {
1069
1111
  };
1070
1112
  //#endregion
1071
1113
  //#region src/components/Tabs/TabBar.tsx
1072
- function St({ children: e, className: n, inline: r = !1, "aria-label": i = "Tabs", ...a }) {
1114
+ function wt({ children: e, className: n, inline: r = !1, "aria-label": i = "Tabs", ...a }) {
1073
1115
  let o = d(null);
1074
1116
  function s(e) {
1075
1117
  let t = Array.from(o.current?.querySelectorAll("[role=tab]:not(:disabled)") ?? []), n = t.findIndex((e) => e === document.activeElement);
@@ -1101,7 +1143,7 @@ function St({ children: e, className: n, inline: r = !1, "aria-label": i = "Tabs
1101
1143
  }
1102
1144
  //#endregion
1103
1145
  //#region src/components/Tabs/TabItem.tsx
1104
- function Ct({ label: e, icon: r, active: i = !1, panelId: a, onClose: o, closeLabel: s = "Close tab", className: c, disabled: l, ...u }) {
1146
+ function Tt({ label: e, icon: r, active: i = !1, panelId: a, onClose: o, closeLabel: s = "Close tab", className: c, disabled: l, ...u }) {
1105
1147
  return /* @__PURE__ */ n("button", {
1106
1148
  role: "tab",
1107
1149
  type: "button",
@@ -1119,7 +1161,7 @@ function Ct({ label: e, icon: r, active: i = !1, panelId: a, onClose: o, closeLa
1119
1161
  children: [
1120
1162
  r && /* @__PURE__ */ t("span", {
1121
1163
  className: R.tabIcon,
1122
- children: /* @__PURE__ */ t(F, {
1164
+ children: /* @__PURE__ */ t(I, {
1123
1165
  icon: r,
1124
1166
  size: "sm",
1125
1167
  "aria-hidden": !0
@@ -1147,7 +1189,7 @@ function Ct({ label: e, icon: r, active: i = !1, panelId: a, onClose: o, closeLa
1147
1189
  }
1148
1190
  //#endregion
1149
1191
  //#region src/components/Tabs/TabPanel.tsx
1150
- function wt({ id: e, active: n = !1, className: r, children: i, ...a }) {
1192
+ function Et({ id: e, active: n = !1, className: r, children: i, ...a }) {
1151
1193
  return /* @__PURE__ */ t("div", {
1152
1194
  id: e,
1153
1195
  role: "tabpanel",
@@ -1171,7 +1213,7 @@ var z = {
1171
1213
  };
1172
1214
  //#endregion
1173
1215
  //#region src/components/ActionRow/ActionRow.tsx
1174
- function Tt({ title: e, subtitle: r, leading: i, trailing: a, interactive: o = !1, variant: s = "default", className: c, ...l }) {
1216
+ function Dt({ title: e, subtitle: r, leading: i, trailing: a, interactive: o = !1, variant: s = "default", className: c, ...l }) {
1175
1217
  let u = o ? "button" : "div", d = s === "property";
1176
1218
  return /* @__PURE__ */ n(u, {
1177
1219
  className: [
@@ -1203,7 +1245,7 @@ function Tt({ title: e, subtitle: r, leading: i, trailing: a, interactive: o = !
1203
1245
  ]
1204
1246
  });
1205
1247
  }
1206
- var Et = {
1248
+ var Ot = {
1207
1249
  list: "_list_1mn4t_3",
1208
1250
  item: "_item_1mn4t_17",
1209
1251
  divider: "_divider_1mn4t_25",
@@ -1212,26 +1254,26 @@ var Et = {
1212
1254
  };
1213
1255
  //#endregion
1214
1256
  //#region src/components/BoxedList/BoxedList.tsx
1215
- function Dt({ children: e, variant: i = "default", className: a, ...o }) {
1257
+ function kt({ children: e, variant: i = "default", className: a, ...o }) {
1216
1258
  let s = r.toArray(e).filter(Boolean), c = i === "separate";
1217
1259
  return /* @__PURE__ */ t("ul", {
1218
1260
  role: "list",
1219
1261
  className: [
1220
- Et.list,
1221
- c ? Et.separate : null,
1262
+ Ot.list,
1263
+ c ? Ot.separate : null,
1222
1264
  a
1223
1265
  ].filter(Boolean).join(" "),
1224
1266
  ...o,
1225
1267
  children: s.map((e, r) => /* @__PURE__ */ n("li", {
1226
- className: c ? Et.separateItem : Et.item,
1268
+ className: c ? Ot.separateItem : Ot.item,
1227
1269
  children: [!c && r > 0 && /* @__PURE__ */ t("div", {
1228
- className: Et.divider,
1270
+ className: Ot.divider,
1229
1271
  "aria-hidden": "true"
1230
1272
  }), e]
1231
1273
  }, r))
1232
1274
  });
1233
1275
  }
1234
- var Ot = {
1276
+ var At = {
1235
1277
  switcher: "_switcher_1uh9r_3",
1236
1278
  item: "_item_1uh9r_18",
1237
1279
  active: "_active_1uh9r_45",
@@ -1240,7 +1282,7 @@ var Ot = {
1240
1282
  };
1241
1283
  //#endregion
1242
1284
  //#region src/components/ViewSwitcher/ViewSwitcher.tsx
1243
- function kt({ children: e, className: n, "aria-label": r = "View switcher", ...i }) {
1285
+ function jt({ children: e, className: n, "aria-label": r = "View switcher", ...i }) {
1244
1286
  let a = d(null);
1245
1287
  function o(e) {
1246
1288
  let t = Array.from(a.current?.querySelectorAll("[role=radio]:not(:disabled)") ?? []), n = t.findIndex((e) => e === document.activeElement);
@@ -1258,14 +1300,14 @@ function kt({ children: e, className: n, "aria-label": r = "View switcher", ...i
1258
1300
  role: "radiogroup",
1259
1301
  "aria-label": r,
1260
1302
  onKeyDown: o,
1261
- className: [Ot.switcher, n].filter(Boolean).join(" "),
1303
+ className: [At.switcher, n].filter(Boolean).join(" "),
1262
1304
  ...i,
1263
1305
  children: e
1264
1306
  });
1265
1307
  }
1266
1308
  //#endregion
1267
1309
  //#region src/components/ViewSwitcher/ViewSwitcherItem.tsx
1268
- function At({ label: e, icon: r, active: i = !1, className: a, disabled: o, ...s }) {
1310
+ function Mt({ label: e, icon: r, active: i = !1, className: a, disabled: o, ...s }) {
1269
1311
  return /* @__PURE__ */ n("button", {
1270
1312
  type: "button",
1271
1313
  role: "radio",
@@ -1273,40 +1315,40 @@ function At({ label: e, icon: r, active: i = !1, className: a, disabled: o, ...s
1273
1315
  tabIndex: i ? 0 : -1,
1274
1316
  disabled: o,
1275
1317
  className: [
1276
- Ot.item,
1277
- i ? Ot.active : null,
1318
+ At.item,
1319
+ i ? At.active : null,
1278
1320
  a
1279
1321
  ].filter(Boolean).join(" "),
1280
1322
  ...s,
1281
1323
  children: [r && /* @__PURE__ */ t("span", {
1282
- className: Ot.itemIcon,
1283
- children: /* @__PURE__ */ t(F, {
1324
+ className: At.itemIcon,
1325
+ children: /* @__PURE__ */ t(I, {
1284
1326
  icon: r,
1285
1327
  size: "md",
1286
1328
  "aria-hidden": !0
1287
1329
  })
1288
1330
  }), /* @__PURE__ */ t("span", {
1289
- className: Ot.itemLabel,
1331
+ className: At.itemLabel,
1290
1332
  children: e
1291
1333
  })]
1292
1334
  });
1293
1335
  }
1294
1336
  //#endregion
1295
1337
  //#region src/components/Toast/Toast.module.css
1296
- var jt = "_toaster_1tgvb_3", Mt = "_toasterBottom_1tgvb_18", Nt = "_toasterTop_1tgvb_22", Pt = "_toast_1tgvb_3", Ft = "_title_1tgvb_69", It = "_actions_1tgvb_76", Lt = "_actionBtn_1tgvb_85", Rt = "_dismissBtn_1tgvb_118", zt = {
1297
- toaster: jt,
1298
- toasterBottom: Mt,
1299
- toasterTop: Nt,
1300
- toast: Pt,
1338
+ var Nt = "_toaster_1tgvb_3", Pt = "_toasterBottom_1tgvb_18", Ft = "_toasterTop_1tgvb_22", It = "_toast_1tgvb_3", Lt = "_title_1tgvb_69", Rt = "_actions_1tgvb_76", zt = "_actionBtn_1tgvb_85", Bt = "_dismissBtn_1tgvb_118", Vt = {
1339
+ toaster: Nt,
1340
+ toasterBottom: Pt,
1341
+ toasterTop: Ft,
1342
+ toast: It,
1301
1343
  "toast-in": "_toast-in_1tgvb_1",
1302
- title: Ft,
1303
- actions: It,
1304
- actionBtn: Lt,
1305
- dismissBtn: Rt
1344
+ title: Lt,
1345
+ actions: Rt,
1346
+ actionBtn: zt,
1347
+ dismissBtn: Bt
1306
1348
  };
1307
1349
  //#endregion
1308
1350
  //#region src/components/Toast/Toast.tsx
1309
- function Bt({ title: e, duration: r = 3e3, onDismiss: i, actionLabel: a, onAction: o, dismissible: s = !1, className: c, ...u }) {
1351
+ function Ht({ title: e, duration: r = 3e3, onDismiss: i, actionLabel: a, onAction: o, dismissible: s = !1, className: c, ...u }) {
1310
1352
  let f = d(null), p = d(r), m = d(0), h = () => {
1311
1353
  f.current &&= (clearTimeout(f.current), null);
1312
1354
  }, g = (e) => {
@@ -1327,31 +1369,31 @@ function Bt({ title: e, duration: r = 3e3, onDismiss: i, actionLabel: a, onActio
1327
1369
  role: "status",
1328
1370
  "aria-live": "polite",
1329
1371
  "aria-atomic": "true",
1330
- className: [zt.toast, c].filter(Boolean).join(" "),
1372
+ className: [Vt.toast, c].filter(Boolean).join(" "),
1331
1373
  onMouseEnter: _,
1332
1374
  onMouseLeave: v,
1333
1375
  onFocus: _,
1334
1376
  onBlur: v,
1335
1377
  ...u,
1336
1378
  children: [/* @__PURE__ */ t("span", {
1337
- className: zt.title,
1379
+ className: Vt.title,
1338
1380
  children: e
1339
1381
  }), (a || s) && /* @__PURE__ */ n("span", {
1340
- className: zt.actions,
1382
+ className: Vt.actions,
1341
1383
  children: [a && /* @__PURE__ */ t("button", {
1342
1384
  type: "button",
1343
- className: zt.actionBtn,
1385
+ className: Vt.actionBtn,
1344
1386
  onClick: y,
1345
1387
  children: a
1346
1388
  }), s && /* @__PURE__ */ t("button", {
1347
1389
  type: "button",
1348
- className: zt.dismissBtn,
1390
+ className: Vt.dismissBtn,
1349
1391
  "aria-label": "Dismiss",
1350
1392
  onClick: () => {
1351
1393
  h(), i?.();
1352
1394
  },
1353
- children: /* @__PURE__ */ t(F, {
1354
- icon: Ne,
1395
+ children: /* @__PURE__ */ t(I, {
1396
+ icon: Pe,
1355
1397
  size: "md",
1356
1398
  "aria-hidden": !0
1357
1399
  })
@@ -1361,12 +1403,12 @@ function Bt({ title: e, duration: r = 3e3, onDismiss: i, actionLabel: a, onActio
1361
1403
  }
1362
1404
  //#endregion
1363
1405
  //#region src/components/Toast/Toaster.tsx
1364
- function Vt({ position: e = "bottom", children: n, container: r, className: i, ...a }) {
1406
+ function Ut({ position: e = "bottom", children: n, container: r, className: i, ...a }) {
1365
1407
  let o = /* @__PURE__ */ t("div", {
1366
1408
  "aria-label": "Notifications",
1367
1409
  className: [
1368
- zt.toaster,
1369
- e === "top" ? zt.toasterTop : zt.toasterBottom,
1410
+ Vt.toaster,
1411
+ e === "top" ? Vt.toasterTop : Vt.toasterBottom,
1370
1412
  i
1371
1413
  ].filter(Boolean).join(" "),
1372
1414
  ...a,
@@ -1376,57 +1418,57 @@ function Vt({ position: e = "bottom", children: n, container: r, className: i, .
1376
1418
  }
1377
1419
  //#endregion
1378
1420
  //#region src/components/Dialog/Dialog.module.css
1379
- var Ht = "_backdrop_zx0yn_3", Ut = "_dialog_zx0yn_26", Wt = "_title_zx0yn_56", Gt = "_body_zx0yn_70", Kt = "_footer_zx0yn_85", qt = "_btn_zx0yn_92", Jt = "_dialogAbout_zx0yn_155", Yt = "_aboutHeader_zx0yn_162", Xt = "_aboutIcon_zx0yn_171", Zt = "_aboutAppName_zx0yn_180", Qt = "_aboutVersion_zx0yn_187", $t = "_aboutTabBar_zx0yn_194", en = "_aboutTabBtn_zx0yn_201", tn = "_aboutTabBtnActive_zx0yn_220", nn = "_aboutTabContent_zx0yn_233", rn = "_aboutSection_zx0yn_238", an = "_aboutComments_zx0yn_243", on = "_aboutInfoList_zx0yn_252", sn = "_aboutInfoLabel_zx0yn_259", cn = "_aboutInfoValue_zx0yn_267", ln = "_aboutLink_zx0yn_275", un = "_aboutCreditGroup_zx0yn_283", dn = "_aboutCreditTitle_zx0yn_287", fn = "_aboutCreditList_zx0yn_297", pn = "_aboutCreditItem_zx0yn_306", mn = "_aboutCopyright_zx0yn_312", hn = "_aboutLicenseType_zx0yn_319", gn = "_aboutLicenseText_zx0yn_326", B = {
1380
- backdrop: Ht,
1421
+ var Wt = "_backdrop_zx0yn_3", Gt = "_dialog_zx0yn_26", Kt = "_title_zx0yn_56", qt = "_body_zx0yn_70", Jt = "_footer_zx0yn_85", Yt = "_btn_zx0yn_92", Xt = "_dialogAbout_zx0yn_155", Zt = "_aboutHeader_zx0yn_162", Qt = "_aboutIcon_zx0yn_171", $t = "_aboutAppName_zx0yn_180", en = "_aboutVersion_zx0yn_187", tn = "_aboutTabBar_zx0yn_194", nn = "_aboutTabBtn_zx0yn_201", rn = "_aboutTabBtnActive_zx0yn_220", an = "_aboutTabContent_zx0yn_233", on = "_aboutSection_zx0yn_238", sn = "_aboutComments_zx0yn_243", cn = "_aboutInfoList_zx0yn_252", ln = "_aboutInfoLabel_zx0yn_259", un = "_aboutInfoValue_zx0yn_267", dn = "_aboutLink_zx0yn_275", fn = "_aboutCreditGroup_zx0yn_283", pn = "_aboutCreditTitle_zx0yn_287", mn = "_aboutCreditList_zx0yn_297", hn = "_aboutCreditItem_zx0yn_306", gn = "_aboutCopyright_zx0yn_312", _n = "_aboutLicenseType_zx0yn_319", vn = "_aboutLicenseText_zx0yn_326", B = {
1422
+ backdrop: Wt,
1381
1423
  "backdrop-in": "_backdrop-in_zx0yn_1",
1382
- dialog: Ut,
1424
+ dialog: Gt,
1383
1425
  "dialog-in": "_dialog-in_zx0yn_1",
1384
- title: Wt,
1385
- body: Gt,
1386
- footer: Kt,
1387
- btn: qt,
1426
+ title: Kt,
1427
+ body: qt,
1428
+ footer: Jt,
1429
+ btn: Yt,
1388
1430
  "btn-default": "_btn-default_zx0yn_140",
1389
1431
  "btn-suggested": "_btn-suggested_zx0yn_144",
1390
1432
  "btn-destructive": "_btn-destructive_zx0yn_149",
1391
- dialogAbout: Jt,
1392
- aboutHeader: Yt,
1393
- aboutIcon: Xt,
1394
- aboutAppName: Zt,
1395
- aboutVersion: Qt,
1396
- aboutTabBar: $t,
1397
- aboutTabBtn: en,
1398
- aboutTabBtnActive: tn,
1399
- aboutTabContent: nn,
1400
- aboutSection: rn,
1401
- aboutComments: an,
1402
- aboutInfoList: on,
1403
- aboutInfoLabel: sn,
1404
- aboutInfoValue: cn,
1405
- aboutLink: ln,
1406
- aboutCreditGroup: un,
1407
- aboutCreditTitle: dn,
1408
- aboutCreditList: fn,
1409
- aboutCreditItem: pn,
1410
- aboutCopyright: mn,
1411
- aboutLicenseType: hn,
1412
- aboutLicenseText: gn
1413
- }, _n = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
1414
- function vn(e, t) {
1433
+ dialogAbout: Xt,
1434
+ aboutHeader: Zt,
1435
+ aboutIcon: Qt,
1436
+ aboutAppName: $t,
1437
+ aboutVersion: en,
1438
+ aboutTabBar: tn,
1439
+ aboutTabBtn: nn,
1440
+ aboutTabBtnActive: rn,
1441
+ aboutTabContent: an,
1442
+ aboutSection: on,
1443
+ aboutComments: sn,
1444
+ aboutInfoList: cn,
1445
+ aboutInfoLabel: ln,
1446
+ aboutInfoValue: un,
1447
+ aboutLink: dn,
1448
+ aboutCreditGroup: fn,
1449
+ aboutCreditTitle: pn,
1450
+ aboutCreditList: mn,
1451
+ aboutCreditItem: hn,
1452
+ aboutCopyright: gn,
1453
+ aboutLicenseType: _n,
1454
+ aboutLicenseText: vn
1455
+ }, yn = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
1456
+ function bn(e, t) {
1415
1457
  if (e.key !== "Tab") return;
1416
- let n = Array.from(t.current?.querySelectorAll(_n) ?? []);
1458
+ let n = Array.from(t.current?.querySelectorAll(yn) ?? []);
1417
1459
  if (!n.length) return;
1418
1460
  let r = n[0], i = n[n.length - 1];
1419
1461
  e.shiftKey ? document.activeElement === r && (e.preventDefault(), i.focus()) : document.activeElement === i && (e.preventDefault(), r.focus());
1420
1462
  }
1421
- var yn = {
1463
+ var xn = {
1422
1464
  details: "Details",
1423
1465
  credits: "Credits",
1424
1466
  legal: "Legal"
1425
1467
  };
1426
- function bn({ open: r, title: i, children: a, buttons: o = [], onClose: c, closeOnBackdrop: m = !0, role: h = "dialog", responses: g, onResponse: _, variant: v, applicationName: y, applicationIcon: b, version: x, comments: S, developerName: C, website: w, websiteLabel: T, developers: E, designers: D, artists: O, copyright: k, licenseType: A, licenseText: j, links: M, className: N, ...P }) {
1468
+ function Sn({ open: r, title: i, children: a, buttons: o = [], onClose: c, closeOnBackdrop: m = !0, role: h = "dialog", responses: g, onResponse: _, variant: v, applicationName: y, applicationIcon: b, version: x, comments: S, developerName: C, website: w, websiteLabel: T, developers: E, designers: D, artists: O, copyright: k, licenseType: A, licenseText: j, links: M, className: N, ...P }) {
1427
1469
  let ee = d(null), te = u(), ne = d(null), [re, ie] = f("details"), ae = !!g, oe = v === "about";
1428
1470
  l(() => {
1429
- r ? (ne.current = document.activeElement, (ee.current?.querySelector(_n))?.focus()) : (ne.current?.focus(), oe && ie("details"));
1471
+ r ? (ne.current = document.activeElement, (ee.current?.querySelector(yn))?.focus()) : (ne.current?.focus(), oe && ie("details"));
1430
1472
  }, [r, oe]);
1431
1473
  let se = s(() => {
1432
1474
  let e = g?.find((e) => e.variant !== "destructive" && !e.disabled);
@@ -1436,18 +1478,18 @@ function bn({ open: r, title: i, children: a, buttons: o = [], onClose: c, close
1436
1478
  e.preventDefault(), ae ? se() : c?.();
1437
1479
  return;
1438
1480
  }
1439
- vn(e, ee);
1481
+ bn(e, ee);
1440
1482
  }, [
1441
1483
  ae,
1442
1484
  se,
1443
1485
  c
1444
1486
  ]);
1445
1487
  if (!r) return null;
1446
- let ue = [
1488
+ let F = [
1447
1489
  "details",
1448
1490
  !!(E?.length || D?.length || O?.length) && "credits",
1449
1491
  !!(k || A || j) && "legal"
1450
- ].filter(Boolean), de = () => oe ? /* @__PURE__ */ t("div", {
1492
+ ].filter(Boolean), ue = () => oe ? /* @__PURE__ */ t("div", {
1451
1493
  className: B.footer,
1452
1494
  children: /* @__PURE__ */ t("button", {
1453
1495
  type: "button",
@@ -1473,7 +1515,7 @@ function bn({ open: r, title: i, children: a, buttons: o = [], onClose: c, close
1473
1515
  onClick: e.onClick,
1474
1516
  children: e.label
1475
1517
  }, e.label))
1476
- }) : null, fe = () => /* @__PURE__ */ n(e, { children: [
1518
+ }) : null, de = () => /* @__PURE__ */ n(e, { children: [
1477
1519
  /* @__PURE__ */ n("div", {
1478
1520
  className: B.aboutHeader,
1479
1521
  children: [
@@ -1492,16 +1534,16 @@ function bn({ open: r, title: i, children: a, buttons: o = [], onClose: c, close
1492
1534
  })
1493
1535
  ]
1494
1536
  }),
1495
- ue.length > 1 && /* @__PURE__ */ t("div", {
1537
+ F.length > 1 && /* @__PURE__ */ t("div", {
1496
1538
  className: B.aboutTabBar,
1497
1539
  role: "tablist",
1498
- children: ue.map((e) => /* @__PURE__ */ t("button", {
1540
+ children: F.map((e) => /* @__PURE__ */ t("button", {
1499
1541
  type: "button",
1500
1542
  role: "tab",
1501
1543
  "aria-selected": re === e,
1502
1544
  className: [B.aboutTabBtn, re === e ? B.aboutTabBtnActive : null].filter(Boolean).join(" "),
1503
1545
  onClick: () => ie(e),
1504
- children: yn[e]
1546
+ children: xn[e]
1505
1547
  }, e))
1506
1548
  }),
1507
1549
  /* @__PURE__ */ n("div", {
@@ -1599,7 +1641,7 @@ function bn({ open: r, title: i, children: a, buttons: o = [], onClose: c, close
1599
1641
  })
1600
1642
  ]
1601
1643
  })
1602
- ] }), pe = /* @__PURE__ */ t("div", {
1644
+ ] }), fe = /* @__PURE__ */ t("div", {
1603
1645
  className: B.backdrop,
1604
1646
  onClick: ce,
1605
1647
  "aria-hidden": "true",
@@ -1616,45 +1658,45 @@ function bn({ open: r, title: i, children: a, buttons: o = [], onClose: c, close
1616
1658
  onKeyDown: le,
1617
1659
  onClick: (e) => e.stopPropagation(),
1618
1660
  ...P,
1619
- children: [oe ? fe() : /* @__PURE__ */ n(e, { children: [i && /* @__PURE__ */ t("div", {
1661
+ children: [oe ? de() : /* @__PURE__ */ n(e, { children: [i && /* @__PURE__ */ t("div", {
1620
1662
  id: te,
1621
1663
  className: B.title,
1622
1664
  children: i
1623
1665
  }), a && /* @__PURE__ */ t("div", {
1624
1666
  className: B.body,
1625
1667
  children: a
1626
- })] }), de()]
1668
+ })] }), ue()]
1627
1669
  })
1628
1670
  });
1629
- return typeof document > "u" ? pe : p(pe, document.body);
1671
+ return typeof document > "u" ? fe : p(fe, document.body);
1630
1672
  }
1631
1673
  //#endregion
1632
1674
  //#region src/components/Dropdown/Dropdown.module.css
1633
- var xn = "_wrapper_1hi05_3", Sn = "_trigger_1hi05_11", Cn = "_triggerOpen_1hi05_63", wn = "_triggerLabel_1hi05_73", Tn = "_placeholder_1hi05_81", En = "_chevron_1hi05_87", Dn = "_chevronOpen_1hi05_94", On = "_list_1hi05_100", kn = "_listDown_1hi05_129", An = "_listUp_1hi05_133", jn = "_option_1hi05_145", Mn = "_optionActive_1hi05_162", Nn = "_optionSelected_1hi05_166", Pn = "_optionDisabled_1hi05_170", Fn = "_optionText_1hi05_178", In = "_optionLabel_1hi05_186", Ln = "_optionDesc_1hi05_192", Rn = "_checkIcon_1hi05_202", V = {
1634
- wrapper: xn,
1635
- trigger: Sn,
1636
- triggerOpen: Cn,
1637
- triggerLabel: wn,
1638
- placeholder: Tn,
1639
- chevron: En,
1640
- chevronOpen: Dn,
1641
- list: On,
1675
+ var Cn = "_wrapper_1hi05_3", wn = "_trigger_1hi05_11", Tn = "_triggerOpen_1hi05_63", En = "_triggerLabel_1hi05_73", Dn = "_placeholder_1hi05_81", On = "_chevron_1hi05_87", kn = "_chevronOpen_1hi05_94", An = "_list_1hi05_100", jn = "_listDown_1hi05_129", Mn = "_listUp_1hi05_133", Nn = "_option_1hi05_145", Pn = "_optionActive_1hi05_162", Fn = "_optionSelected_1hi05_166", In = "_optionDisabled_1hi05_170", Ln = "_optionText_1hi05_178", Rn = "_optionLabel_1hi05_186", zn = "_optionDesc_1hi05_192", Bn = "_checkIcon_1hi05_202", V = {
1676
+ wrapper: Cn,
1677
+ trigger: wn,
1678
+ triggerOpen: Tn,
1679
+ triggerLabel: En,
1680
+ placeholder: Dn,
1681
+ chevron: On,
1682
+ chevronOpen: kn,
1683
+ list: An,
1642
1684
  "list-in": "_list-in_1hi05_1",
1643
- listDown: kn,
1644
- listUp: An,
1685
+ listDown: jn,
1686
+ listUp: Mn,
1645
1687
  "list-in-up": "_list-in-up_1hi05_1",
1646
- option: jn,
1647
- optionActive: Mn,
1648
- optionSelected: Nn,
1649
- optionDisabled: Pn,
1650
- optionText: Fn,
1651
- optionLabel: In,
1652
- optionDesc: Ln,
1653
- checkIcon: Rn
1688
+ option: Nn,
1689
+ optionActive: Pn,
1690
+ optionSelected: Fn,
1691
+ optionDisabled: In,
1692
+ optionText: Ln,
1693
+ optionLabel: Rn,
1694
+ optionDesc: zn,
1695
+ checkIcon: Bn
1654
1696
  };
1655
1697
  //#endregion
1656
1698
  //#region src/components/Dropdown/Dropdown.tsx
1657
- function zn({ options: e, value: r, onChange: i, placeholder: a = "Select an option", disabled: o, className: c, ...p }) {
1699
+ function Vn({ options: e, value: r, onChange: i, placeholder: a = "Select an option", disabled: o, className: c, ...p }) {
1658
1700
  let [m, h] = f(!1), [g, _] = f(-1), [v, y] = f(!1), b = u(), x = u(), S = d(null), C = d(null), w = e.find((e) => e.value === r), T = s(() => {
1659
1701
  if (!S.current) return;
1660
1702
  let t = S.current.getBoundingClientRect(), n = window.innerHeight - t.bottom, r = Math.min(e.length * 48 + 8, 280);
@@ -1756,8 +1798,8 @@ function zn({ options: e, value: r, onChange: i, placeholder: a = "Select an opt
1756
1798
  children: [/* @__PURE__ */ t("span", {
1757
1799
  className: [V.triggerLabel, w ? null : V.placeholder].filter(Boolean).join(" "),
1758
1800
  children: w?.label ?? a
1759
- }), /* @__PURE__ */ t(F, {
1760
- icon: Me,
1801
+ }), /* @__PURE__ */ t(I, {
1802
+ icon: Ne,
1761
1803
  size: "md",
1762
1804
  "aria-hidden": !0,
1763
1805
  className: [V.chevron, m ? V.chevronOpen : null].filter(Boolean).join(" ")
@@ -1792,8 +1834,8 @@ function zn({ options: e, value: r, onChange: i, placeholder: a = "Select an opt
1792
1834
  className: V.optionDesc,
1793
1835
  children: e.description
1794
1836
  })]
1795
- }), e.value === r && /* @__PURE__ */ t(F, {
1796
- icon: Le,
1837
+ }), e.value === r && /* @__PURE__ */ t(I, {
1838
+ icon: Re,
1797
1839
  size: "md",
1798
1840
  "aria-hidden": !0,
1799
1841
  className: V.checkIcon
@@ -1802,7 +1844,7 @@ function zn({ options: e, value: r, onChange: i, placeholder: a = "Select an opt
1802
1844
  })]
1803
1845
  });
1804
1846
  }
1805
- var H = {
1847
+ var Hn = {
1806
1848
  wrapper: "_wrapper_11zhs_3",
1807
1849
  hasLabels: "_hasLabels_11zhs_11",
1808
1850
  track: "_track_11zhs_17",
@@ -1815,21 +1857,21 @@ var H = {
1815
1857
  };
1816
1858
  //#endregion
1817
1859
  //#region src/components/Slider/Slider.tsx
1818
- function Bn(e, t, n) {
1860
+ function Un(e, t, n) {
1819
1861
  return Math.min(n, Math.max(t, e));
1820
1862
  }
1821
- function Vn(e, t, n, r) {
1863
+ function Wn(e, t, n, r) {
1822
1864
  return parseFloat((Math.round((e - t) / n) * n + t).toFixed(r));
1823
1865
  }
1824
- function Hn(e) {
1866
+ function Gn(e) {
1825
1867
  let t = e.toString(), n = t.indexOf(".");
1826
1868
  return n === -1 ? 0 : t.length - n - 1;
1827
1869
  }
1828
- function Un({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, disabled: c = !1, marks: l, className: u, "aria-label": f, "aria-labelledby": p, "aria-describedby": m, ...h }) {
1829
- let g = d(null), _ = Hn(o), v = (Bn(e, i, a) - i) / (a - i) * 100, y = s((e) => {
1870
+ function Kn({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, disabled: c = !1, marks: l, className: u, "aria-label": f, "aria-labelledby": p, "aria-describedby": m, ...h }) {
1871
+ let g = d(null), _ = Gn(o), v = (Un(e, i, a) - i) / (a - i) * 100, y = s((e) => {
1830
1872
  if (!g.current) return;
1831
1873
  let { left: t, width: n } = g.current.getBoundingClientRect();
1832
- r(Bn(Vn((e - t) / n * (a - i) + i, i, o, _), i, a));
1874
+ r(Un(Wn((e - t) / n * (a - i) + i, i, o, _), i, a));
1833
1875
  }, [
1834
1876
  i,
1835
1877
  a,
@@ -1842,7 +1884,7 @@ function Un({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, disa
1842
1884
  e.currentTarget.hasPointerCapture(e.pointerId) && y(e.clientX);
1843
1885
  }, [y]), S = s((t) => {
1844
1886
  let n = (e) => {
1845
- t.preventDefault(), r(Bn(Vn(e, i, o, _), i, a));
1887
+ t.preventDefault(), r(Un(Wn(e, i, o, _), i, a));
1846
1888
  };
1847
1889
  switch (t.key) {
1848
1890
  case "ArrowRight":
@@ -1876,8 +1918,8 @@ function Un({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, disa
1876
1918
  ]), C = l && l.length > 0, w = C && l.some((e) => e.label);
1877
1919
  return /* @__PURE__ */ n("div", {
1878
1920
  className: [
1879
- H.wrapper,
1880
- w ? H.hasLabels : null,
1921
+ Hn.wrapper,
1922
+ w ? Hn.hasLabels : null,
1881
1923
  u
1882
1924
  ].filter(Boolean).join(" "),
1883
1925
  ...h,
@@ -1892,36 +1934,36 @@ function Un({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, disa
1892
1934
  "aria-labelledby": p,
1893
1935
  "aria-describedby": m,
1894
1936
  "aria-disabled": c || void 0,
1895
- className: [H.track, c ? H.disabled : null].filter(Boolean).join(" "),
1937
+ className: [Hn.track, c ? Hn.disabled : null].filter(Boolean).join(" "),
1896
1938
  onPointerDown: b,
1897
1939
  onPointerMove: x,
1898
1940
  onKeyDown: c ? void 0 : S,
1899
1941
  children: [
1900
1942
  /* @__PURE__ */ t("div", {
1901
- className: H.fill,
1943
+ className: Hn.fill,
1902
1944
  style: { width: `${v}%` }
1903
1945
  }),
1904
1946
  /* @__PURE__ */ t("div", {
1905
- className: H.thumb,
1947
+ className: Hn.thumb,
1906
1948
  style: { left: `${v}%` },
1907
1949
  "aria-hidden": "true"
1908
1950
  }),
1909
1951
  C && l.map((e) => {
1910
- let n = (Bn(e.value, i, a) - i) / (a - i) * 100;
1952
+ let n = (Un(e.value, i, a) - i) / (a - i) * 100;
1911
1953
  return /* @__PURE__ */ t("div", {
1912
- className: H.tick,
1954
+ className: Hn.tick,
1913
1955
  style: { left: `${n}%` },
1914
1956
  "aria-hidden": "true"
1915
1957
  }, e.value);
1916
1958
  })
1917
1959
  ]
1918
1960
  }), w && /* @__PURE__ */ t("div", {
1919
- className: H.labels,
1961
+ className: Hn.labels,
1920
1962
  "aria-hidden": "true",
1921
1963
  children: l.map((e) => {
1922
- let n = (Bn(e.value, i, a) - i) / (a - i) * 100;
1964
+ let n = (Un(e.value, i, a) - i) / (a - i) * 100;
1923
1965
  return /* @__PURE__ */ t("span", {
1924
- className: H.markLabel,
1966
+ className: Hn.markLabel,
1925
1967
  style: { left: `${n}%` },
1926
1968
  children: e.label
1927
1969
  }, e.value);
@@ -1929,7 +1971,7 @@ function Un({ value: e, onChange: r, min: i = 0, max: a = 100, step: o = 1, disa
1929
1971
  })]
1930
1972
  });
1931
1973
  }
1932
- var Wn = {
1974
+ var qn = {
1933
1975
  panel: "_panel_1tk9v_3",
1934
1976
  visible: "_visible_1tk9v_36",
1935
1977
  arrow: "_arrow_1tk9v_44",
@@ -1937,8 +1979,8 @@ var Wn = {
1937
1979
  top: "_top_1tk9v_67",
1938
1980
  left: "_left_1tk9v_75",
1939
1981
  right: "_right_1tk9v_83"
1940
- }, Gn = 8, U = 10, Kn = 6;
1941
- function qn(e, t, n) {
1982
+ }, Jn = 8, H = 10, Yn = 6;
1983
+ function Xn(e, t, n) {
1942
1984
  let r = window.innerWidth, i = window.innerHeight, a = [...new Set([
1943
1985
  n,
1944
1986
  n === "top" ? "bottom" : n === "bottom" ? "top" : n === "left" ? "right" : "left",
@@ -1949,21 +1991,21 @@ function qn(e, t, n) {
1949
1991
  ])];
1950
1992
  function o(n) {
1951
1993
  return n === "bottom" ? {
1952
- top: e.bottom + Gn,
1994
+ top: e.bottom + Jn,
1953
1995
  left: e.left + e.width / 2 - t.width / 2
1954
1996
  } : n === "top" ? {
1955
- top: e.top - t.height - Gn,
1997
+ top: e.top - t.height - Jn,
1956
1998
  left: e.left + e.width / 2 - t.width / 2
1957
1999
  } : n === "left" ? {
1958
2000
  top: e.top + e.height / 2 - t.height / 2,
1959
- left: e.left - t.width - Gn
2001
+ left: e.left - t.width - Jn
1960
2002
  } : {
1961
2003
  top: e.top + e.height / 2 - t.height / 2,
1962
- left: e.right + Gn
2004
+ left: e.right + Jn
1963
2005
  };
1964
2006
  }
1965
2007
  for (let n of a) {
1966
- let { top: a, left: s } = o(n), c = s >= U && s + t.width <= r - U, l = a >= U && a + t.height <= i - U;
2008
+ let { top: a, left: s } = o(n), c = s >= H && s + t.width <= r - H, l = a >= H && a + t.height <= i - H;
1967
2009
  if (c && l) return {
1968
2010
  top: a,
1969
2011
  left: s,
@@ -1972,35 +2014,35 @@ function qn(e, t, n) {
1972
2014
  };
1973
2015
  }
1974
2016
  for (let n of a) {
1975
- let { top: a, left: s } = o(n), c = a >= U && a + t.height <= i - U, l = s >= U && s + t.width <= r - U;
2017
+ let { top: a, left: s } = o(n), c = a >= H && a + t.height <= i - H, l = s >= H && s + t.width <= r - H;
1976
2018
  if ((n === "top" || n === "bottom") && c) {
1977
- let i = Math.max(U, Math.min(s, r - t.width - U)), o = e.left + e.width / 2 - i;
2019
+ let i = Math.max(H, Math.min(s, r - t.width - H)), o = e.left + e.width / 2 - i;
1978
2020
  return {
1979
2021
  top: a,
1980
2022
  left: i,
1981
2023
  placement: n,
1982
- arrowOffset: Math.max(Kn + 4, Math.min(o, t.width - Kn - 4))
2024
+ arrowOffset: Math.max(Yn + 4, Math.min(o, t.width - Yn - 4))
1983
2025
  };
1984
2026
  }
1985
2027
  if ((n === "left" || n === "right") && l) {
1986
- let r = Math.max(U, Math.min(a, i - t.height - U)), o = e.top + e.height / 2 - r;
2028
+ let r = Math.max(H, Math.min(a, i - t.height - H)), o = e.top + e.height / 2 - r;
1987
2029
  return {
1988
2030
  top: r,
1989
2031
  left: s,
1990
2032
  placement: n,
1991
- arrowOffset: Math.max(Kn + 4, Math.min(o, t.height - Kn - 4))
2033
+ arrowOffset: Math.max(Yn + 4, Math.min(o, t.height - Yn - 4))
1992
2034
  };
1993
2035
  }
1994
2036
  }
1995
- let s = e.bottom + Gn, c = e.left + e.width / 2 - t.width / 2, l = Math.max(U, Math.min(s, i - t.height - U)), u = Math.max(U, Math.min(c, r - t.width - U)), d = e.left + e.width / 2 - u;
2037
+ let s = e.bottom + Jn, c = e.left + e.width / 2 - t.width / 2, l = Math.max(H, Math.min(s, i - t.height - H)), u = Math.max(H, Math.min(c, r - t.width - H)), d = e.left + e.width / 2 - u;
1996
2038
  return {
1997
2039
  top: l,
1998
2040
  left: u,
1999
2041
  placement: "bottom",
2000
- arrowOffset: Math.max(Kn + 4, Math.min(d, t.width - Kn - 4))
2042
+ arrowOffset: Math.max(Yn + 4, Math.min(d, t.width - Yn - 4))
2001
2043
  };
2002
2044
  }
2003
- function Jn({ content: r, placement: a = "bottom", open: o, onClose: c, onOpenChange: m, children: h }) {
2045
+ function Zn({ content: r, placement: a = "bottom", open: o, onClose: c, onOpenChange: m, children: h }) {
2004
2046
  let g = o !== void 0, [_, v] = f(!1), y = g ? o : _, [b, x] = f(null), S = u(), C = u(), w = d(null), T = d(null), E = d(null), D = s(() => {
2005
2047
  g ? c?.() : v(!1), m?.(!1);
2006
2048
  }, [
@@ -2015,7 +2057,7 @@ function Jn({ content: r, placement: a = "bottom", open: o, onClose: c, onOpenCh
2015
2057
  g,
2016
2058
  m
2017
2059
  ]), k = s(() => {
2018
- !w.current || !T.current || x(qn(w.current.getBoundingClientRect(), T.current.getBoundingClientRect(), a));
2060
+ !w.current || !T.current || x(Xn(w.current.getBoundingClientRect(), T.current.getBoundingClientRect(), a));
2019
2061
  }, [a]);
2020
2062
  l(() => {
2021
2063
  if (!y) return;
@@ -2057,9 +2099,9 @@ function Jn({ content: r, placement: a = "bottom", open: o, onClose: c, onOpenCh
2057
2099
  "aria-labelledby": S,
2058
2100
  tabIndex: -1,
2059
2101
  className: [
2060
- Wn.panel,
2061
- b ? Wn[b.placement] : null,
2062
- y && b ? Wn.visible : null
2102
+ qn.panel,
2103
+ b ? qn[b.placement] : null,
2104
+ y && b ? qn.visible : null
2063
2105
  ].filter(Boolean).join(" "),
2064
2106
  style: b ? {
2065
2107
  top: b.top,
@@ -2072,25 +2114,25 @@ function Jn({ content: r, placement: a = "bottom", open: o, onClose: c, onOpenCh
2072
2114
  },
2073
2115
  onKeyDown: A,
2074
2116
  children: [/* @__PURE__ */ t("div", {
2075
- className: Wn.arrow,
2117
+ className: qn.arrow,
2076
2118
  "aria-hidden": "true",
2077
2119
  style: b?.arrowOffset === void 0 ? void 0 : b.placement === "top" || b.placement === "bottom" ? {
2078
- left: b.arrowOffset - Kn,
2120
+ left: b.arrowOffset - Yn,
2079
2121
  marginLeft: 0
2080
2122
  } : {
2081
- top: b.arrowOffset - Kn,
2123
+ top: b.arrowOffset - Yn,
2082
2124
  marginTop: 0
2083
2125
  }
2084
2126
  }), r]
2085
2127
  });
2086
2128
  return /* @__PURE__ */ n(e, { children: [j, y && (typeof document < "u" ? p(M, document.body) : M)] });
2087
2129
  }
2088
- var Yn = { clamp: "_clamp_1j51b_6" };
2130
+ var Qn = { clamp: "_clamp_1j51b_6" };
2089
2131
  //#endregion
2090
2132
  //#region src/components/Clamp/Clamp.tsx
2091
- function Xn({ maximumSize: e = 600, children: n, className: r, style: i, ...a }) {
2133
+ function $n({ maximumSize: e = 600, children: n, className: r, style: i, ...a }) {
2092
2134
  return /* @__PURE__ */ t("div", {
2093
- className: [Yn.clamp, r].filter(Boolean).join(" "),
2135
+ className: [Qn.clamp, r].filter(Boolean).join(" "),
2094
2136
  style: {
2095
2137
  maxWidth: e,
2096
2138
  ...i
@@ -2099,7 +2141,7 @@ function Xn({ maximumSize: e = 600, children: n, className: r, style: i, ...a })
2099
2141
  children: n
2100
2142
  });
2101
2143
  }
2102
- var W = {
2144
+ var U = {
2103
2145
  root: "_root_yaj3r_3",
2104
2146
  expanded: "_expanded_yaj3r_12",
2105
2147
  sidebar: "_sidebar_yaj3r_16",
@@ -2111,12 +2153,12 @@ var W = {
2111
2153
  };
2112
2154
  //#endregion
2113
2155
  //#region src/components/NavigationSplitView/NavigationSplitView.tsx
2114
- function Zn({ sidebar: e, content: r, showContent: i = !1, minSidebarWidth: a = 180, maxSidebarWidth: o = 280, sidebarWidthFraction: s = .25, className: c, style: l, ...u }) {
2115
- let { isNarrow: d } = He(), f = `clamp(${a}px, ${s * 100}%, ${o}px)`;
2156
+ function er({ sidebar: e, content: r, showContent: i = !1, minSidebarWidth: a = 180, maxSidebarWidth: o = 280, sidebarWidthFraction: s = .25, className: c, style: l, ...u }) {
2157
+ let { isNarrow: d } = We(), f = `clamp(${a}px, ${s * 100}%, ${o}px)`;
2116
2158
  return /* @__PURE__ */ n("div", {
2117
2159
  className: [
2118
- W.root,
2119
- d ? W.collapsed : W.expanded,
2160
+ U.root,
2161
+ d ? U.collapsed : U.expanded,
2120
2162
  c
2121
2163
  ].filter(Boolean).join(" "),
2122
2164
  style: {
@@ -2126,23 +2168,23 @@ function Zn({ sidebar: e, content: r, showContent: i = !1, minSidebarWidth: a =
2126
2168
  ...u,
2127
2169
  children: [
2128
2170
  /* @__PURE__ */ t("div", {
2129
- className: [W.sidebar, d && i ? W.paneHidden : W.paneVisible].filter(Boolean).join(" "),
2171
+ className: [U.sidebar, d && i ? U.paneHidden : U.paneVisible].filter(Boolean).join(" "),
2130
2172
  "aria-hidden": d && i,
2131
2173
  children: e
2132
2174
  }),
2133
2175
  !d && /* @__PURE__ */ t("div", {
2134
- className: W.divider,
2176
+ className: U.divider,
2135
2177
  "aria-hidden": "true"
2136
2178
  }),
2137
2179
  /* @__PURE__ */ t("div", {
2138
- className: [W.contentPane, d && !i ? W.paneHidden : W.paneVisible].filter(Boolean).join(" "),
2180
+ className: [U.contentPane, d && !i ? U.paneHidden : U.paneVisible].filter(Boolean).join(" "),
2139
2181
  "aria-hidden": d && !i,
2140
2182
  children: r
2141
2183
  })
2142
2184
  ]
2143
2185
  });
2144
2186
  }
2145
- var G = {
2187
+ var W = {
2146
2188
  root: "_root_1xl2w_3",
2147
2189
  wide: "_wide_1xl2w_13",
2148
2190
  end: "_end_1xl2w_17",
@@ -2157,8 +2199,8 @@ var G = {
2157
2199
  };
2158
2200
  //#endregion
2159
2201
  //#region src/components/OverlaySplitView/OverlaySplitView.tsx
2160
- function Qn({ sidebar: e, content: r, showSidebar: i = !1, onClose: a, sidebarPosition: o = "start", minSidebarWidth: s = 180, maxSidebarWidth: c = 280, sidebarWidthFraction: u = .25, className: f, style: p, ...m }) {
2161
- let { isNarrow: h } = He(), g = d(null), _ = `clamp(${s}px, ${u * 100}%, ${c}px)`;
2202
+ function tr({ sidebar: e, content: r, showSidebar: i = !1, onClose: a, sidebarPosition: o = "start", minSidebarWidth: s = 180, maxSidebarWidth: c = 280, sidebarWidthFraction: u = .25, className: f, style: p, ...m }) {
2203
+ let { isNarrow: h } = We(), g = d(null), _ = `clamp(${s}px, ${u * 100}%, ${c}px)`;
2162
2204
  l(() => {
2163
2205
  if (!h || !i) return;
2164
2206
  let e = (e) => {
@@ -2175,9 +2217,9 @@ function Qn({ sidebar: e, content: r, showSidebar: i = !1, onClose: a, sidebarPo
2175
2217
  let v = o === "end";
2176
2218
  return /* @__PURE__ */ n("div", {
2177
2219
  className: [
2178
- G.root,
2179
- h ? G.narrow : G.wide,
2180
- v ? G.end : G.start,
2220
+ W.root,
2221
+ h ? W.narrow : W.wide,
2222
+ v ? W.end : W.start,
2181
2223
  f
2182
2224
  ].filter(Boolean).join(" "),
2183
2225
  style: {
@@ -2187,69 +2229,69 @@ function Qn({ sidebar: e, content: r, showSidebar: i = !1, onClose: a, sidebarPo
2187
2229
  ...m,
2188
2230
  children: [
2189
2231
  h && /* @__PURE__ */ t("div", {
2190
- className: [G.backdrop, i ? G.backdropVisible : null].filter(Boolean).join(" "),
2232
+ className: [W.backdrop, i ? W.backdropVisible : null].filter(Boolean).join(" "),
2191
2233
  "aria-hidden": "true",
2192
2234
  onClick: a
2193
2235
  }),
2194
2236
  /* @__PURE__ */ t("div", {
2195
2237
  ref: g,
2196
- className: [G.sidebar, h ? i ? G.sidebarOpen : G.sidebarClosed : null].filter(Boolean).join(" "),
2238
+ className: [W.sidebar, h ? i ? W.sidebarOpen : W.sidebarClosed : null].filter(Boolean).join(" "),
2197
2239
  "aria-hidden": h && !i,
2198
2240
  children: e
2199
2241
  }),
2200
2242
  /* @__PURE__ */ t("div", {
2201
- className: G.content,
2243
+ className: W.content,
2202
2244
  children: r
2203
2245
  })
2204
2246
  ]
2205
2247
  });
2206
2248
  }
2207
- var $n = { bar: "_bar_njcvu_3" };
2249
+ var nr = { bar: "_bar_njcvu_3" };
2208
2250
  //#endregion
2209
2251
  //#region src/components/ViewSwitcherBar/ViewSwitcherBar.tsx
2210
- function er({ children: e, reveal: n = !0, className: r, ...i }) {
2252
+ function rr({ children: e, reveal: n = !0, className: r, ...i }) {
2211
2253
  return n ? /* @__PURE__ */ t("div", {
2212
2254
  role: "navigation",
2213
2255
  "aria-label": "Bottom navigation",
2214
- className: [$n.bar, r].filter(Boolean).join(" "),
2256
+ className: [nr.bar, r].filter(Boolean).join(" "),
2215
2257
  ...i,
2216
2258
  children: e
2217
2259
  }) : null;
2218
2260
  }
2219
- var tr = {
2261
+ var ir = {
2220
2262
  link: "_link_x1qyh_1",
2221
2263
  externalIcon: "_externalIcon_x1qyh_36"
2222
2264
  };
2223
2265
  //#endregion
2224
2266
  //#region src/components/Link/Link.tsx
2225
- function nr({ external: e = !1, children: r, className: i, target: a, rel: o, ...s }) {
2267
+ function ar({ external: e = !1, children: r, className: i, target: a, rel: o, ...s }) {
2226
2268
  let c = e || a === "_blank";
2227
2269
  return /* @__PURE__ */ n("a", {
2228
- className: [tr.link, i].filter(Boolean).join(" "),
2270
+ className: [ir.link, i].filter(Boolean).join(" "),
2229
2271
  target: c ? "_blank" : a,
2230
2272
  rel: c ? "noopener noreferrer" : o,
2231
2273
  ...s,
2232
2274
  children: [r, c && /* @__PURE__ */ t("span", {
2233
- className: tr.externalIcon,
2275
+ className: ir.externalIcon,
2234
2276
  "aria-label": "(opens in new tab)",
2235
2277
  children: "↗"
2236
2278
  })]
2237
2279
  });
2238
2280
  }
2239
- var rr = {
2281
+ var or = {
2240
2282
  group: "_group_1fa3l_3",
2241
2283
  item: "_item_1fa3l_18",
2242
2284
  iconOnly: "_iconOnly_1fa3l_48",
2243
2285
  active: "_active_1fa3l_53",
2244
2286
  itemIcon: "_itemIcon_1fa3l_86",
2245
2287
  itemLabel: "_itemLabel_1fa3l_92"
2246
- }, ir = a(null);
2247
- function ar() {
2248
- let e = c(ir);
2288
+ }, sr = a(null);
2289
+ function cr() {
2290
+ let e = c(sr);
2249
2291
  if (!e) throw Error("ToggleGroupItem must be used inside ToggleGroup");
2250
2292
  return e;
2251
2293
  }
2252
- function or({ value: e, onValueChange: n, "aria-label": r = "Options", children: i, className: a, ...o }) {
2294
+ function lr({ value: e, onValueChange: n, "aria-label": r = "Options", children: i, className: a, ...o }) {
2253
2295
  let s = d(null);
2254
2296
  function c(e) {
2255
2297
  let t = Array.from(s.current?.querySelectorAll("[role=radio]:not(:disabled)") ?? []), n = t.findIndex((e) => e === document.activeElement);
@@ -2262,7 +2304,7 @@ function or({ value: e, onValueChange: n, "aria-label": r = "Options", children:
2262
2304
  else return;
2263
2305
  e.preventDefault(), t[r].focus(), t[r].click();
2264
2306
  }
2265
- return /* @__PURE__ */ t(ir.Provider, {
2307
+ return /* @__PURE__ */ t(sr.Provider, {
2266
2308
  value: {
2267
2309
  value: e,
2268
2310
  onValueChange: n
@@ -2272,7 +2314,7 @@ function or({ value: e, onValueChange: n, "aria-label": r = "Options", children:
2272
2314
  role: "radiogroup",
2273
2315
  "aria-label": r,
2274
2316
  onKeyDown: c,
2275
- className: [rr.group, a].filter(Boolean).join(" "),
2317
+ className: [or.group, a].filter(Boolean).join(" "),
2276
2318
  ...o,
2277
2319
  children: i
2278
2320
  })
@@ -2280,8 +2322,8 @@ function or({ value: e, onValueChange: n, "aria-label": r = "Options", children:
2280
2322
  }
2281
2323
  //#endregion
2282
2324
  //#region src/components/ToggleGroup/ToggleGroupItem.tsx
2283
- function sr({ name: e, label: r, icon: i, disabled: a, className: o, ...s }) {
2284
- let { value: c, onValueChange: l } = ar(), u = c === e, d = i && !r;
2325
+ function ur({ name: e, label: r, icon: i, disabled: a, className: o, ...s }) {
2326
+ let { value: c, onValueChange: l } = cr(), u = c === e, d = i && !r;
2285
2327
  return /* @__PURE__ */ n("button", {
2286
2328
  type: "button",
2287
2329
  role: "radio",
@@ -2290,28 +2332,28 @@ function sr({ name: e, label: r, icon: i, disabled: a, className: o, ...s }) {
2290
2332
  disabled: a,
2291
2333
  onClick: () => l(e),
2292
2334
  className: [
2293
- rr.item,
2294
- u ? rr.active : null,
2295
- d ? rr.iconOnly : null,
2335
+ or.item,
2336
+ u ? or.active : null,
2337
+ d ? or.iconOnly : null,
2296
2338
  o
2297
2339
  ].filter(Boolean).join(" "),
2298
2340
  ...s,
2299
2341
  children: [i && /* @__PURE__ */ t("span", {
2300
- className: rr.itemIcon,
2301
- children: /* @__PURE__ */ t(F, {
2342
+ className: or.itemIcon,
2343
+ children: /* @__PURE__ */ t(I, {
2302
2344
  icon: i,
2303
2345
  size: "md",
2304
2346
  "aria-hidden": !0
2305
2347
  })
2306
2348
  }), r && /* @__PURE__ */ t("span", {
2307
- className: rr.itemLabel,
2349
+ className: or.itemLabel,
2308
2350
  children: r
2309
2351
  })]
2310
2352
  });
2311
2353
  }
2312
2354
  //#endregion
2313
2355
  //#region src/components/Box/Box.tsx
2314
- function cr({ orientation: e = "vertical", spacing: n = 6, align: r, justify: i = "start", className: a, style: o, children: s, ...c }) {
2356
+ function dr({ orientation: e = "vertical", spacing: n = 6, align: r, justify: i = "start", className: a, style: o, children: s, ...c }) {
2315
2357
  let l = e === "horizontal" ? "center" : "stretch";
2316
2358
  return /* @__PURE__ */ t("div", {
2317
2359
  className: a,
@@ -2327,13 +2369,13 @@ function cr({ orientation: e = "vertical", spacing: n = 6, align: r, justify: i
2327
2369
  children: s
2328
2370
  });
2329
2371
  }
2330
- var lr = {
2372
+ var fr = {
2331
2373
  wrapBox: "_wrapBox_1ik0x_1",
2332
2374
  reverse: "_reverse_1ik0x_10"
2333
2375
  };
2334
2376
  //#endregion
2335
2377
  //#region src/components/WrapBox/WrapBox.tsx
2336
- function ur({ childSpacing: e = 6, lineSpacing: n, justify: r = "start", align: i = "center", wrapReverse: a = !1, children: o, className: s, style: c, ...l }) {
2378
+ function pr({ childSpacing: e = 6, lineSpacing: n, justify: r = "start", align: i = "center", wrapReverse: a = !1, children: o, className: s, style: c, ...l }) {
2337
2379
  let u = typeof e == "number" ? `${e}px` : e, d = n == null ? u : typeof n == "number" ? `${n}px` : n, f = {
2338
2380
  "--wrapbox-gap": u,
2339
2381
  "--wrapbox-row-gap": d,
@@ -2343,8 +2385,8 @@ function ur({ childSpacing: e = 6, lineSpacing: n, justify: r = "start", align:
2343
2385
  };
2344
2386
  return /* @__PURE__ */ t("div", {
2345
2387
  className: [
2346
- lr.wrapBox,
2347
- a ? lr.reverse : null,
2388
+ fr.wrapBox,
2389
+ a ? fr.reverse : null,
2348
2390
  s
2349
2391
  ].filter(Boolean).join(" "),
2350
2392
  style: f,
@@ -2352,7 +2394,7 @@ function ur({ childSpacing: e = 6, lineSpacing: n, justify: r = "start", align:
2352
2394
  children: o
2353
2395
  });
2354
2396
  }
2355
- var dr = {
2397
+ var mr = {
2356
2398
  chip: "_chip_e26qc_3",
2357
2399
  selectable: "_selectable_e26qc_31",
2358
2400
  selected: "_selected_e26qc_55",
@@ -2363,37 +2405,37 @@ var dr = {
2363
2405
  };
2364
2406
  //#endregion
2365
2407
  //#region src/components/Chip/Chip.tsx
2366
- function fr({ label: r, icon: i, onRemove: a, selectable: o = !1, selected: s = !1, onToggle: c, disabled: l = !1, className: u, ...d }) {
2408
+ function hr({ label: r, icon: i, onRemove: a, selectable: o = !1, selected: s = !1, onToggle: c, disabled: l = !1, className: u, ...d }) {
2367
2409
  let f = o && !a, p = [
2368
- dr.chip,
2369
- s ? dr.selected : null,
2370
- l ? dr.disabled : null,
2371
- f ? dr.selectable : null,
2410
+ mr.chip,
2411
+ s ? mr.selected : null,
2412
+ l ? mr.disabled : null,
2413
+ f ? mr.selectable : null,
2372
2414
  u
2373
2415
  ].filter(Boolean).join(" "), m = /* @__PURE__ */ n(e, { children: [
2374
2416
  i && /* @__PURE__ */ t("span", {
2375
- className: dr.icon,
2376
- children: /* @__PURE__ */ t(F, {
2417
+ className: mr.icon,
2418
+ children: /* @__PURE__ */ t(I, {
2377
2419
  icon: i,
2378
2420
  size: "sm",
2379
2421
  "aria-hidden": !0
2380
2422
  })
2381
2423
  }),
2382
2424
  /* @__PURE__ */ t("span", {
2383
- className: dr.label,
2425
+ className: mr.label,
2384
2426
  children: r
2385
2427
  }),
2386
2428
  a && /* @__PURE__ */ t("button", {
2387
2429
  type: "button",
2388
- className: dr.remove,
2430
+ className: mr.remove,
2389
2431
  "aria-label": `Remove ${r}`,
2390
2432
  disabled: l,
2391
2433
  onClick: (e) => {
2392
2434
  e.stopPropagation(), a();
2393
2435
  },
2394
2436
  tabIndex: l ? -1 : 0,
2395
- children: /* @__PURE__ */ t(F, {
2396
- icon: Ne,
2437
+ children: /* @__PURE__ */ t(I, {
2438
+ icon: Pe,
2397
2439
  size: "sm",
2398
2440
  "aria-hidden": !0
2399
2441
  })
@@ -2417,30 +2459,30 @@ function fr({ label: r, icon: i, onRemove: a, selectable: o = !1, selected: s =
2417
2459
  }
2418
2460
  //#endregion
2419
2461
  //#region src/components/ShortcutsDialog/ShortcutsDialog.module.css
2420
- var pr = "_backdrop_zvuhh_3", mr = "_dialog_zvuhh_26", hr = "_header_zvuhh_59", gr = "_title_zvuhh_67", _r = "_closeBtn_zvuhh_74", vr = "_searchRow_zvuhh_112", yr = "_searchIcon_zvuhh_124", br = "_searchInput_zvuhh_132", xr = "_searchClear_zvuhh_151", Sr = "_body_zvuhh_174", Cr = "_empty_zvuhh_182", wr = "_section_zvuhh_193", Tr = "_sectionTitle_zvuhh_199", Er = "_list_zvuhh_209", Dr = "_row_zvuhh_225", Or = "_keys_zvuhh_240", kr = "_keyCap_zvuhh_247", Ar = "_plus_zvuhh_277", jr = "_description_zvuhh_284", K = {
2421
- backdrop: pr,
2462
+ var gr = "_backdrop_zvuhh_3", _r = "_dialog_zvuhh_26", vr = "_header_zvuhh_59", yr = "_title_zvuhh_67", br = "_closeBtn_zvuhh_74", xr = "_searchRow_zvuhh_112", Sr = "_searchIcon_zvuhh_124", Cr = "_searchInput_zvuhh_132", wr = "_searchClear_zvuhh_151", Tr = "_body_zvuhh_174", Er = "_empty_zvuhh_182", Dr = "_section_zvuhh_193", Or = "_sectionTitle_zvuhh_199", kr = "_list_zvuhh_209", Ar = "_row_zvuhh_225", jr = "_keys_zvuhh_240", Mr = "_keyCap_zvuhh_247", Nr = "_plus_zvuhh_277", Pr = "_description_zvuhh_284", G = {
2463
+ backdrop: gr,
2422
2464
  "backdrop-in": "_backdrop-in_zvuhh_1",
2423
- dialog: mr,
2465
+ dialog: _r,
2424
2466
  "dialog-in": "_dialog-in_zvuhh_1",
2425
- header: hr,
2426
- title: gr,
2427
- closeBtn: _r,
2428
- searchRow: vr,
2429
- searchIcon: yr,
2430
- searchInput: br,
2431
- searchClear: xr,
2432
- body: Sr,
2433
- empty: Cr,
2434
- section: wr,
2435
- sectionTitle: Tr,
2436
- list: Er,
2437
- row: Dr,
2438
- keys: Or,
2439
- keyCap: kr,
2440
- plus: Ar,
2441
- description: jr
2442
- }, Mr = "button:not([disabled]), [href], input:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
2443
- function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a }) {
2467
+ header: vr,
2468
+ title: yr,
2469
+ closeBtn: br,
2470
+ searchRow: xr,
2471
+ searchIcon: Sr,
2472
+ searchInput: Cr,
2473
+ searchClear: wr,
2474
+ body: Tr,
2475
+ empty: Er,
2476
+ section: Dr,
2477
+ sectionTitle: Or,
2478
+ list: kr,
2479
+ row: Ar,
2480
+ keys: jr,
2481
+ keyCap: Mr,
2482
+ plus: Nr,
2483
+ description: Pr
2484
+ }, Fr = "button:not([disabled]), [href], input:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
2485
+ function Ir({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a }) {
2444
2486
  let [o, c] = f(""), u = d(null), m = d(null), h = d(null), g = d(`shortcuts-title-${Math.random().toString(36).slice(2, 9)}`);
2445
2487
  l(() => {
2446
2488
  e ? (h.current = document.activeElement, requestAnimationFrame(() => m.current?.focus())) : (c(""), h.current?.focus());
@@ -2451,7 +2493,7 @@ function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a
2451
2493
  return;
2452
2494
  }
2453
2495
  if (e.key !== "Tab") return;
2454
- let t = Array.from(u.current?.querySelectorAll(Mr) ?? []);
2496
+ let t = Array.from(u.current?.querySelectorAll(Fr) ?? []);
2455
2497
  if (t.length === 0) return;
2456
2498
  let n = t[0], i = t[t.length - 1];
2457
2499
  e.shiftKey ? document.activeElement === n && (e.preventDefault(), i.focus()) : document.activeElement === i && (e.preventDefault(), n.focus());
@@ -2461,7 +2503,7 @@ function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a
2461
2503
  ...e,
2462
2504
  shortcuts: e.shortcuts.filter(({ description: e, keys: t }) => !v || e.toLowerCase().includes(v) || t.some((e) => e.toLowerCase().includes(v)))
2463
2505
  })).filter((e) => e.shortcuts.length > 0), b = /* @__PURE__ */ t("div", {
2464
- className: K.backdrop,
2506
+ className: G.backdrop,
2465
2507
  onClick: r,
2466
2508
  "aria-hidden": "true",
2467
2509
  children: /* @__PURE__ */ n("div", {
@@ -2469,36 +2511,36 @@ function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a
2469
2511
  role: "dialog",
2470
2512
  "aria-modal": "true",
2471
2513
  "aria-labelledby": g.current,
2472
- className: K.dialog,
2514
+ className: G.dialog,
2473
2515
  onKeyDown: _,
2474
2516
  onClick: (e) => e.stopPropagation(),
2475
2517
  children: [
2476
2518
  /* @__PURE__ */ n("div", {
2477
- className: K.header,
2519
+ className: G.header,
2478
2520
  children: [/* @__PURE__ */ t("span", {
2479
2521
  id: g.current,
2480
- className: K.title,
2522
+ className: G.title,
2481
2523
  children: i
2482
2524
  }), /* @__PURE__ */ t("button", {
2483
2525
  type: "button",
2484
- className: K.closeBtn,
2526
+ className: G.closeBtn,
2485
2527
  "aria-label": "Close",
2486
2528
  onClick: r,
2487
2529
  children: "×"
2488
2530
  })]
2489
2531
  }),
2490
2532
  /* @__PURE__ */ n("div", {
2491
- className: K.searchRow,
2533
+ className: G.searchRow,
2492
2534
  children: [
2493
2535
  /* @__PURE__ */ t("span", {
2494
- className: K.searchIcon,
2536
+ className: G.searchIcon,
2495
2537
  "aria-hidden": "true",
2496
2538
  children: "⌕"
2497
2539
  }),
2498
2540
  /* @__PURE__ */ t("input", {
2499
2541
  ref: m,
2500
2542
  type: "search",
2501
- className: K.searchInput,
2543
+ className: G.searchInput,
2502
2544
  placeholder: "Search shortcuts…",
2503
2545
  value: o,
2504
2546
  onChange: (e) => c(e.target.value),
@@ -2506,7 +2548,7 @@ function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a
2506
2548
  }),
2507
2549
  o && /* @__PURE__ */ t("button", {
2508
2550
  type: "button",
2509
- className: K.searchClear,
2551
+ className: G.searchClear,
2510
2552
  "aria-label": "Clear search",
2511
2553
  onClick: () => {
2512
2554
  c(""), m.current?.focus();
@@ -2516,38 +2558,38 @@ function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a
2516
2558
  ]
2517
2559
  }),
2518
2560
  /* @__PURE__ */ t("div", {
2519
- className: K.body,
2561
+ className: G.body,
2520
2562
  role: "list",
2521
2563
  children: y.length === 0 ? /* @__PURE__ */ n("p", {
2522
- className: K.empty,
2564
+ className: G.empty,
2523
2565
  children: [
2524
2566
  "No shortcuts match \"",
2525
2567
  o,
2526
2568
  "\""
2527
2569
  ]
2528
2570
  }) : y.map((e) => /* @__PURE__ */ n("section", {
2529
- className: K.section,
2571
+ className: G.section,
2530
2572
  children: [/* @__PURE__ */ t("h3", {
2531
- className: K.sectionTitle,
2573
+ className: G.sectionTitle,
2532
2574
  children: e.title
2533
2575
  }), /* @__PURE__ */ t("ul", {
2534
- className: K.list,
2576
+ className: G.list,
2535
2577
  children: e.shortcuts.map((e) => /* @__PURE__ */ n("li", {
2536
- className: K.row,
2578
+ className: G.row,
2537
2579
  role: "listitem",
2538
2580
  children: [/* @__PURE__ */ t("span", {
2539
- className: K.keys,
2581
+ className: G.keys,
2540
2582
  "aria-label": e.keys.join(" + "),
2541
2583
  children: e.keys.map((r, i) => /* @__PURE__ */ n("span", {
2542
- className: K.keyCap,
2584
+ className: G.keyCap,
2543
2585
  children: [/* @__PURE__ */ t("kbd", { children: r }), i < e.keys.length - 1 && /* @__PURE__ */ t("span", {
2544
- className: K.plus,
2586
+ className: G.plus,
2545
2587
  "aria-hidden": "true",
2546
2588
  children: "+"
2547
2589
  })]
2548
2590
  }, i))
2549
2591
  }), /* @__PURE__ */ t("span", {
2550
- className: K.description,
2592
+ className: G.description,
2551
2593
  children: e.description
2552
2594
  })]
2553
2595
  }, e.description))
@@ -2559,7 +2601,7 @@ function Nr({ open: e, onClose: r, title: i = "Keyboard Shortcuts", sections: a
2559
2601
  });
2560
2602
  return typeof document > "u" ? b : p(b, document.body);
2561
2603
  }
2562
- var Pr = {
2604
+ var Lr = {
2563
2605
  sidebar: "_sidebar_kmj4b_3",
2564
2606
  list: "_list_kmj4b_17",
2565
2607
  item: "_item_kmj4b_28",
@@ -2569,13 +2611,13 @@ var Pr = {
2569
2611
  itemLabel: "_itemLabel_kmj4b_119",
2570
2612
  itemSuffix: "_itemSuffix_kmj4b_129",
2571
2613
  count: "_count_kmj4b_136"
2572
- }, Fr = a(null);
2573
- function Ir() {
2574
- let e = c(Fr);
2614
+ }, Rr = a(null);
2615
+ function zr() {
2616
+ let e = c(Rr);
2575
2617
  if (!e) throw Error("ViewSwitcherSidebarItem must be used inside ViewSwitcherSidebar");
2576
2618
  return e;
2577
2619
  }
2578
- function Lr({ value: e, onValueChange: n, "aria-label": r = "Views", children: i, className: a, ...o }) {
2620
+ function Br({ value: e, onValueChange: n, "aria-label": r = "Views", children: i, className: a, ...o }) {
2579
2621
  let s = d(null);
2580
2622
  function c(e) {
2581
2623
  let t = Array.from(s.current?.querySelectorAll("[role=radio]:not(:disabled)") ?? []), n = t.findIndex((e) => e === document.activeElement);
@@ -2588,20 +2630,20 @@ function Lr({ value: e, onValueChange: n, "aria-label": r = "Views", children: i
2588
2630
  else return;
2589
2631
  e.preventDefault(), t[r].focus(), t[r].click();
2590
2632
  }
2591
- return /* @__PURE__ */ t(Fr.Provider, {
2633
+ return /* @__PURE__ */ t(Rr.Provider, {
2592
2634
  value: {
2593
2635
  value: e,
2594
2636
  onValueChange: n
2595
2637
  },
2596
2638
  children: /* @__PURE__ */ t("nav", {
2597
- className: [Pr.sidebar, a].filter(Boolean).join(" "),
2639
+ className: [Lr.sidebar, a].filter(Boolean).join(" "),
2598
2640
  onKeyDown: c,
2599
2641
  ...o,
2600
2642
  children: /* @__PURE__ */ t("ul", {
2601
2643
  ref: s,
2602
2644
  role: "radiogroup",
2603
2645
  "aria-label": r,
2604
- className: Pr.list,
2646
+ className: Lr.list,
2605
2647
  children: i
2606
2648
  })
2607
2649
  })
@@ -2609,10 +2651,10 @@ function Lr({ value: e, onValueChange: n, "aria-label": r = "Views", children: i
2609
2651
  }
2610
2652
  //#endregion
2611
2653
  //#region src/components/ViewSwitcherSidebar/ViewSwitcherSidebarItem.tsx
2612
- function Rr({ name: e, label: r, icon: i, count: a, suffix: o, disabled: s, className: c, ...l }) {
2613
- let { value: u, onValueChange: d } = Ir(), f = u === e, p = o ?? a ?? null;
2654
+ function Vr({ name: e, label: r, icon: i, count: a, suffix: o, disabled: s, className: c, ...l }) {
2655
+ let { value: u, onValueChange: d } = zr(), f = u === e, p = o ?? a ?? null;
2614
2656
  return /* @__PURE__ */ t("li", {
2615
- className: Pr.item,
2657
+ className: Lr.item,
2616
2658
  children: /* @__PURE__ */ n("button", {
2617
2659
  type: "button",
2618
2660
  role: "radio",
@@ -2621,28 +2663,28 @@ function Rr({ name: e, label: r, icon: i, count: a, suffix: o, disabled: s, clas
2621
2663
  disabled: s,
2622
2664
  onClick: () => d(e),
2623
2665
  className: [
2624
- Pr.itemBtn,
2625
- f ? Pr.active : null,
2666
+ Lr.itemBtn,
2667
+ f ? Lr.active : null,
2626
2668
  c
2627
2669
  ].filter(Boolean).join(" "),
2628
2670
  ...l,
2629
2671
  children: [
2630
2672
  i && /* @__PURE__ */ t("span", {
2631
- className: Pr.itemIcon,
2632
- children: /* @__PURE__ */ t(F, {
2673
+ className: Lr.itemIcon,
2674
+ children: /* @__PURE__ */ t(I, {
2633
2675
  icon: i,
2634
2676
  size: "md",
2635
2677
  "aria-hidden": !0
2636
2678
  })
2637
2679
  }),
2638
2680
  /* @__PURE__ */ t("span", {
2639
- className: Pr.itemLabel,
2681
+ className: Lr.itemLabel,
2640
2682
  children: r
2641
2683
  }),
2642
2684
  p != null && /* @__PURE__ */ t("span", {
2643
- className: Pr.itemSuffix,
2685
+ className: Lr.itemSuffix,
2644
2686
  children: typeof p == "number" ? /* @__PURE__ */ t("span", {
2645
- className: Pr.count,
2687
+ className: Lr.count,
2646
2688
  children: p > 99 ? "99+" : p
2647
2689
  }) : p
2648
2690
  })
@@ -2652,7 +2694,7 @@ function Rr({ name: e, label: r, icon: i, count: a, suffix: o, disabled: s, clas
2652
2694
  }
2653
2695
  //#endregion
2654
2696
  //#region src/components/BreakpointBin/BreakpointBin.tsx
2655
- function zr({ breakpoints: e, children: n, className: r, style: i, ...a }) {
2697
+ function Hr({ breakpoints: e, children: n, className: r, style: i, ...a }) {
2656
2698
  let o = d(null), [s, c] = f({
2657
2699
  activeBreakpoint: null,
2658
2700
  width: 0
@@ -2682,7 +2724,7 @@ function zr({ breakpoints: e, children: n, className: r, style: i, ...a }) {
2682
2724
  children: n(s)
2683
2725
  });
2684
2726
  }
2685
- var Br = {
2727
+ var Ur = {
2686
2728
  row: "_row_1ba2f_3",
2687
2729
  title: "_title_1ba2f_48",
2688
2730
  leading: "_leading_1ba2f_59",
@@ -2693,31 +2735,31 @@ var Br = {
2693
2735
  };
2694
2736
  //#endregion
2695
2737
  //#region src/components/ButtonRow/ButtonRow.tsx
2696
- function Vr({ title: e, variant: r = "default", leading: i, trailing: a, className: o, ...s }) {
2738
+ function Wr({ title: e, variant: r = "default", leading: i, trailing: a, className: o, ...s }) {
2697
2739
  return /* @__PURE__ */ n("button", {
2698
2740
  className: [
2699
- Br.row,
2700
- Br[r],
2741
+ Ur.row,
2742
+ Ur[r],
2701
2743
  o
2702
2744
  ].filter(Boolean).join(" "),
2703
2745
  ...s,
2704
2746
  children: [
2705
2747
  i && /* @__PURE__ */ t("span", {
2706
- className: Br.leading,
2748
+ className: Ur.leading,
2707
2749
  children: i
2708
2750
  }),
2709
2751
  /* @__PURE__ */ t("span", {
2710
- className: Br.title,
2752
+ className: Ur.title,
2711
2753
  children: e
2712
2754
  }),
2713
2755
  a && /* @__PURE__ */ t("span", {
2714
- className: Br.trailing,
2756
+ className: Ur.trailing,
2715
2757
  children: a
2716
2758
  })
2717
2759
  ]
2718
2760
  });
2719
2761
  }
2720
- var Hr = {
2762
+ var Gr = {
2721
2763
  container: "_container_4kjnf_3",
2722
2764
  primary: "_primary_4kjnf_14",
2723
2765
  toggle: "_toggle_4kjnf_15",
@@ -2731,7 +2773,7 @@ var Hr = {
2731
2773
  };
2732
2774
  //#endregion
2733
2775
  //#region src/components/SplitButton/SplitButton.tsx
2734
- function Ur({ label: r, variant: i = "default", dropdownContent: a, dropdownLabel: o = "More options", disabled: c = !1, onClick: u, className: m, ...h }) {
2776
+ function Kr({ label: r, variant: i = "default", dropdownContent: a, dropdownLabel: o = "More options", disabled: c = !1, onClick: u, className: m, ...h }) {
2735
2777
  let [g, _] = f(!1), [v, y] = f({}), b = d(null), x = d(null), S = d(null), C = s(() => _(!1), []), w = s(() => {
2736
2778
  if (!x.current || !S.current) return;
2737
2779
  let e = x.current.getBoundingClientRect(), t = S.current.getBoundingClientRect(), n = window.innerWidth, r = e.right - t.width;
@@ -2761,15 +2803,15 @@ function Ur({ label: r, variant: i = "default", dropdownContent: a, dropdownLabe
2761
2803
  let T = (e) => {
2762
2804
  e.key === "Escape" && (e.stopPropagation(), C(), x.current?.focus());
2763
2805
  }, E = [
2764
- Hr.container,
2765
- Hr[i],
2806
+ Gr.container,
2807
+ Gr[i],
2766
2808
  m
2767
2809
  ].filter(Boolean).join(" "), D = /* @__PURE__ */ t("div", {
2768
2810
  ref: S,
2769
2811
  role: "dialog",
2770
2812
  "aria-label": o,
2771
2813
  tabIndex: -1,
2772
- className: [Hr.dropdown, g ? Hr.dropdownVisible : null].filter(Boolean).join(" "),
2814
+ className: [Gr.dropdown, g ? Gr.dropdownVisible : null].filter(Boolean).join(" "),
2773
2815
  style: Object.keys(v).length ? {
2774
2816
  ...v,
2775
2817
  position: "fixed"
@@ -2788,26 +2830,26 @@ function Ur({ label: r, variant: i = "default", dropdownContent: a, dropdownLabe
2788
2830
  className: E,
2789
2831
  children: [
2790
2832
  /* @__PURE__ */ t("button", {
2791
- className: Hr.primary,
2833
+ className: Gr.primary,
2792
2834
  disabled: c,
2793
2835
  onClick: u,
2794
2836
  ...h,
2795
2837
  children: r
2796
2838
  }),
2797
2839
  /* @__PURE__ */ t("span", {
2798
- className: Hr.separator,
2840
+ className: Gr.separator,
2799
2841
  "aria-hidden": "true"
2800
2842
  }),
2801
2843
  /* @__PURE__ */ t("button", {
2802
2844
  ref: x,
2803
- className: Hr.toggle,
2845
+ className: Gr.toggle,
2804
2846
  disabled: c,
2805
2847
  "aria-label": o,
2806
2848
  "aria-haspopup": "dialog",
2807
2849
  "aria-expanded": g,
2808
2850
  onClick: () => _((e) => !e),
2809
2851
  children: /* @__PURE__ */ t("svg", {
2810
- className: Hr.chevron,
2852
+ className: Gr.chevron,
2811
2853
  width: "16",
2812
2854
  height: "16",
2813
2855
  viewBox: "0 0 16 16",
@@ -2826,56 +2868,56 @@ function Ur({ label: r, variant: i = "default", dropdownContent: a, dropdownLabe
2826
2868
  ]
2827
2869
  }), g && (typeof document < "u" ? p(D, document.body) : D)] });
2828
2870
  }
2829
- var Wr = {
2871
+ var qr = {
2830
2872
  toolbar: "_toolbar_1avgl_2",
2831
2873
  spacer: "_spacer_1avgl_20"
2832
2874
  };
2833
2875
  //#endregion
2834
2876
  //#region src/components/Toolbar/Toolbar.tsx
2835
- function Gr({ children: e, className: n, ...r }) {
2877
+ function Jr({ children: e, className: n, ...r }) {
2836
2878
  return /* @__PURE__ */ t("div", {
2837
- className: [Wr.toolbar, n].filter(Boolean).join(" "),
2879
+ className: [qr.toolbar, n].filter(Boolean).join(" "),
2838
2880
  ...r,
2839
2881
  children: e
2840
2882
  });
2841
2883
  }
2842
2884
  //#endregion
2843
2885
  //#region src/components/Toolbar/Spacer.tsx
2844
- function Kr({ className: e, ...n }) {
2886
+ function Yr({ className: e, ...n }) {
2845
2887
  return /* @__PURE__ */ t("div", {
2846
2888
  "aria-hidden": "true",
2847
- className: [Wr.spacer, e].filter(Boolean).join(" "),
2889
+ className: [qr.spacer, e].filter(Boolean).join(" "),
2848
2890
  ...n
2849
2891
  });
2850
2892
  }
2851
- var qr = {
2893
+ var Xr = {
2852
2894
  linked: "_linked_1tser_3",
2853
2895
  vertical: "_vertical_1tser_9"
2854
2896
  };
2855
2897
  //#endregion
2856
2898
  //#region src/components/LinkedGroup/LinkedGroup.tsx
2857
- function Jr({ children: e, vertical: n = !1, className: r, ...i }) {
2899
+ function Zr({ children: e, vertical: n = !1, className: r, ...i }) {
2858
2900
  return /* @__PURE__ */ t("div", {
2859
2901
  className: [
2860
- qr.linked,
2861
- n ? qr.vertical : null,
2902
+ Xr.linked,
2903
+ n ? Xr.vertical : null,
2862
2904
  r
2863
2905
  ].filter(Boolean).join(" "),
2864
2906
  ...i,
2865
2907
  children: e
2866
2908
  });
2867
2909
  }
2868
- var Yr = { frame: "_frame_1bq7b_2" };
2910
+ var Qr = { frame: "_frame_1bq7b_2" };
2869
2911
  //#endregion
2870
2912
  //#region src/components/Frame/Frame.tsx
2871
- function Xr({ children: e, className: n, ...r }) {
2913
+ function $r({ children: e, className: n, ...r }) {
2872
2914
  return /* @__PURE__ */ t("div", {
2873
- className: [Yr.frame, n].filter(Boolean).join(" "),
2915
+ className: [Qr.frame, n].filter(Boolean).join(" "),
2874
2916
  ...r,
2875
2917
  children: e
2876
2918
  });
2877
2919
  }
2878
- var q = {
2920
+ var K = {
2879
2921
  expanderRow: "_expanderRow_16el8_3",
2880
2922
  header: "_header_16el8_11",
2881
2923
  leading: "_leading_16el8_55",
@@ -2894,48 +2936,48 @@ var q = {
2894
2936
  };
2895
2937
  //#endregion
2896
2938
  //#region src/components/ExpanderRow/ExpanderRow.tsx
2897
- function Zr({ title: e, subtitle: i, leading: a, trailing: o, children: s, expanded: c, defaultExpanded: l = !1, onExpandedChange: d, className: p, ...m }) {
2939
+ function ei({ title: e, subtitle: i, leading: a, trailing: o, children: s, expanded: c, defaultExpanded: l = !1, onExpandedChange: d, className: p, ...m }) {
2898
2940
  let h = c !== void 0, [g, _] = f(l), v = h ? c : g, y = u(), b = u(), x = () => {
2899
2941
  let e = !v;
2900
2942
  h || _(e), d?.(e);
2901
2943
  }, S = r.toArray(s).filter(Boolean);
2902
2944
  return /* @__PURE__ */ n("div", {
2903
2945
  className: [
2904
- q.expanderRow,
2905
- v ? q.expanded : null,
2946
+ K.expanderRow,
2947
+ v ? K.expanded : null,
2906
2948
  p
2907
2949
  ].filter(Boolean).join(" "),
2908
2950
  ...m,
2909
2951
  children: [/* @__PURE__ */ n("button", {
2910
2952
  id: b,
2911
- className: q.header,
2953
+ className: K.header,
2912
2954
  "aria-expanded": v,
2913
2955
  "aria-controls": y,
2914
2956
  onClick: x,
2915
2957
  children: [
2916
2958
  a && /* @__PURE__ */ t("span", {
2917
- className: q.leading,
2959
+ className: K.leading,
2918
2960
  children: a
2919
2961
  }),
2920
2962
  /* @__PURE__ */ n("span", {
2921
- className: q.content,
2963
+ className: K.content,
2922
2964
  children: [/* @__PURE__ */ t("span", {
2923
- className: q.title,
2965
+ className: K.title,
2924
2966
  children: e
2925
2967
  }), i && /* @__PURE__ */ t("span", {
2926
- className: q.subtitle,
2968
+ className: K.subtitle,
2927
2969
  children: i
2928
2970
  })]
2929
2971
  }),
2930
2972
  o && /* @__PURE__ */ t("span", {
2931
- className: q.trailing,
2973
+ className: K.trailing,
2932
2974
  children: o
2933
2975
  }),
2934
2976
  /* @__PURE__ */ t("span", {
2935
- className: [q.chevronWrap, v ? q.chevronOpen : null].filter(Boolean).join(" "),
2977
+ className: [K.chevronWrap, v ? K.chevronOpen : null].filter(Boolean).join(" "),
2936
2978
  "aria-hidden": "true",
2937
2979
  children: /* @__PURE__ */ t("svg", {
2938
- className: q.chevron,
2980
+ className: K.chevron,
2939
2981
  width: "16",
2940
2982
  height: "16",
2941
2983
  viewBox: "0 0 16 16",
@@ -2955,13 +2997,13 @@ function Zr({ title: e, subtitle: i, leading: a, trailing: o, children: s, expan
2955
2997
  id: y,
2956
2998
  role: "region",
2957
2999
  "aria-labelledby": b,
2958
- className: q.panel,
3000
+ className: K.panel,
2959
3001
  children: /* @__PURE__ */ t("div", {
2960
- className: q.panelInner,
3002
+ className: K.panelInner,
2961
3003
  children: S.map((e, r) => /* @__PURE__ */ n("div", {
2962
- className: q.childItem,
3004
+ className: K.childItem,
2963
3005
  children: [/* @__PURE__ */ t("div", {
2964
- className: q.divider,
3006
+ className: K.divider,
2965
3007
  "aria-hidden": "true"
2966
3008
  }), e]
2967
3009
  }, r))
@@ -2969,7 +3011,7 @@ function Zr({ title: e, subtitle: i, leading: a, trailing: o, children: s, expan
2969
3011
  })]
2970
3012
  });
2971
3013
  }
2972
- var Qr = {
3014
+ var ti = {
2973
3015
  switcher: "_switcher_2tknm_3",
2974
3016
  item: "_item_2tknm_10",
2975
3017
  iconOnly: "_iconOnly_2tknm_38",
@@ -2979,13 +3021,13 @@ var Qr = {
2979
3021
  active: "_active_2tknm_68",
2980
3022
  flat: "_flat_2tknm_121",
2981
3023
  round: "_round_2tknm_169"
2982
- }, $r = a(null);
2983
- function ei() {
2984
- let e = c($r);
3024
+ }, ni = a(null);
3025
+ function ri() {
3026
+ let e = c(ni);
2985
3027
  if (!e) throw Error("InlineViewSwitcherItem must be used inside InlineViewSwitcher");
2986
3028
  return e;
2987
3029
  }
2988
- function ti({ value: e, onValueChange: n, variant: r = "default", "aria-label": i = "View switcher", children: a, className: o, ...s }) {
3030
+ function ii({ value: e, onValueChange: n, variant: r = "default", "aria-label": i = "View switcher", children: a, className: o, ...s }) {
2989
3031
  let c = d(null);
2990
3032
  function l(e) {
2991
3033
  let t = Array.from(c.current?.querySelectorAll("[role=radio]:not(:disabled)") ?? []), n = t.findIndex((e) => e === document.activeElement);
@@ -2998,7 +3040,7 @@ function ti({ value: e, onValueChange: n, variant: r = "default", "aria-label":
2998
3040
  else return;
2999
3041
  e.preventDefault(), t[r].focus(), t[r].click();
3000
3042
  }
3001
- return /* @__PURE__ */ t($r.Provider, {
3043
+ return /* @__PURE__ */ t(ni.Provider, {
3002
3044
  value: {
3003
3045
  value: e,
3004
3046
  onValueChange: n
@@ -3009,8 +3051,8 @@ function ti({ value: e, onValueChange: n, variant: r = "default", "aria-label":
3009
3051
  "aria-label": i,
3010
3052
  onKeyDown: l,
3011
3053
  className: [
3012
- Qr.switcher,
3013
- Qr[r],
3054
+ ti.switcher,
3055
+ ti[r],
3014
3056
  o
3015
3057
  ].filter(Boolean).join(" "),
3016
3058
  ...s,
@@ -3020,8 +3062,8 @@ function ti({ value: e, onValueChange: n, variant: r = "default", "aria-label":
3020
3062
  }
3021
3063
  //#endregion
3022
3064
  //#region src/components/InlineViewSwitcher/InlineViewSwitcherItem.tsx
3023
- function ni({ name: e, label: r, icon: i, disabled: a, className: o, ...s }) {
3024
- let { value: c, onValueChange: l } = ei(), u = c === e, d = i && !r;
3065
+ function ai({ name: e, label: r, icon: i, disabled: a, className: o, ...s }) {
3066
+ let { value: c, onValueChange: l } = ri(), u = c === e, d = i && !r;
3025
3067
  return /* @__PURE__ */ n("button", {
3026
3068
  type: "button",
3027
3069
  role: "radio",
@@ -3030,26 +3072,26 @@ function ni({ name: e, label: r, icon: i, disabled: a, className: o, ...s }) {
3030
3072
  disabled: a,
3031
3073
  onClick: () => l(e),
3032
3074
  className: [
3033
- Qr.item,
3034
- u ? Qr.active : null,
3035
- d ? Qr.iconOnly : null,
3075
+ ti.item,
3076
+ u ? ti.active : null,
3077
+ d ? ti.iconOnly : null,
3036
3078
  o
3037
3079
  ].filter(Boolean).join(" "),
3038
3080
  ...s,
3039
3081
  children: [i && /* @__PURE__ */ t("span", {
3040
- className: Qr.itemIcon,
3041
- children: /* @__PURE__ */ t(F, {
3082
+ className: ti.itemIcon,
3083
+ children: /* @__PURE__ */ t(I, {
3042
3084
  icon: i,
3043
3085
  size: "md",
3044
3086
  "aria-hidden": !0
3045
3087
  })
3046
3088
  }), r && /* @__PURE__ */ t("span", {
3047
- className: Qr.itemLabel,
3089
+ className: ti.itemLabel,
3048
3090
  children: r
3049
3091
  })]
3050
3092
  });
3051
3093
  }
3052
- var ri = {
3094
+ var oi = {
3053
3095
  row: "_row_jl3bc_3",
3054
3096
  disabled: "_disabled_jl3bc_41",
3055
3097
  leading: "_leading_jl3bc_49",
@@ -3062,7 +3104,7 @@ var ri = {
3062
3104
  };
3063
3105
  //#endregion
3064
3106
  //#region src/components/SwitchRow/SwitchRow.tsx
3065
- function ii({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o = !1, onCheckedChange: s, disabled: c = !1, className: l, onClick: d, ...p }) {
3107
+ function si({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o = !1, onCheckedChange: s, disabled: c = !1, className: l, onClick: d, ...p }) {
3066
3108
  let m = a !== void 0, [h, g] = f(o), _ = m ? a : h, v = u(), y = (e) => {
3067
3109
  let t = !_;
3068
3110
  m || g(t), s?.(t), d?.(e);
@@ -3073,37 +3115,37 @@ function ii({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o =
3073
3115
  "aria-labelledby": v,
3074
3116
  disabled: c,
3075
3117
  className: [
3076
- ri.row,
3077
- c ? ri.disabled : null,
3118
+ oi.row,
3119
+ c ? oi.disabled : null,
3078
3120
  l
3079
3121
  ].filter(Boolean).join(" "),
3080
3122
  onClick: y,
3081
3123
  ...p,
3082
3124
  children: [
3083
3125
  i && /* @__PURE__ */ t("span", {
3084
- className: ri.leading,
3126
+ className: oi.leading,
3085
3127
  children: i
3086
3128
  }),
3087
3129
  /* @__PURE__ */ n("span", {
3088
- className: ri.content,
3130
+ className: oi.content,
3089
3131
  id: v,
3090
3132
  children: [/* @__PURE__ */ t("span", {
3091
- className: ri.title,
3133
+ className: oi.title,
3092
3134
  children: e
3093
3135
  }), r && /* @__PURE__ */ t("span", {
3094
- className: ri.subtitle,
3136
+ className: oi.subtitle,
3095
3137
  children: r
3096
3138
  })]
3097
3139
  }),
3098
3140
  /* @__PURE__ */ t("span", {
3099
- className: ri.switchTrack,
3141
+ className: oi.switchTrack,
3100
3142
  "aria-hidden": "true",
3101
- children: /* @__PURE__ */ t("span", { className: [ri.switchThumb, _ ? ri.switchThumbOn : null].filter(Boolean).join(" ") })
3143
+ children: /* @__PURE__ */ t("span", { className: [oi.switchThumb, _ ? oi.switchThumbOn : null].filter(Boolean).join(" ") })
3102
3144
  })
3103
3145
  ]
3104
3146
  });
3105
3147
  }
3106
- var J = {
3148
+ var q = {
3107
3149
  row: "_row_1dije_3",
3108
3150
  disabled: "_disabled_1dije_41",
3109
3151
  checkboxWrap: "_checkboxWrap_1dije_49",
@@ -3117,7 +3159,7 @@ var J = {
3117
3159
  };
3118
3160
  //#endregion
3119
3161
  //#region src/components/CheckRow/CheckRow.tsx
3120
- function ai({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o = !1, onCheckedChange: s, disabled: c = !1, className: l, onClick: d, ...p }) {
3162
+ function ci({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o = !1, onCheckedChange: s, disabled: c = !1, className: l, onClick: d, ...p }) {
3121
3163
  let m = a !== void 0, [h, g] = f(o), _ = m ? a : h, v = u(), y = (e) => {
3122
3164
  let t = !_;
3123
3165
  m || g(t), s?.(t), d?.(e);
@@ -3128,20 +3170,20 @@ function ai({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o =
3128
3170
  "aria-labelledby": v,
3129
3171
  disabled: c,
3130
3172
  className: [
3131
- J.row,
3132
- c ? J.disabled : null,
3173
+ q.row,
3174
+ c ? q.disabled : null,
3133
3175
  l
3134
3176
  ].filter(Boolean).join(" "),
3135
3177
  onClick: y,
3136
3178
  ...p,
3137
3179
  children: [
3138
3180
  /* @__PURE__ */ t("span", {
3139
- className: J.checkboxWrap,
3181
+ className: q.checkboxWrap,
3140
3182
  "aria-hidden": "true",
3141
3183
  children: /* @__PURE__ */ t("span", {
3142
- className: [J.checkbox, _ ? J.checkboxChecked : null].filter(Boolean).join(" "),
3184
+ className: [q.checkbox, _ ? q.checkboxChecked : null].filter(Boolean).join(" "),
3143
3185
  children: _ && /* @__PURE__ */ t("svg", {
3144
- className: J.checkmark,
3186
+ className: q.checkmark,
3145
3187
  width: "12",
3146
3188
  height: "12",
3147
3189
  viewBox: "0 0 12 12",
@@ -3158,17 +3200,17 @@ function ai({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o =
3158
3200
  })
3159
3201
  }),
3160
3202
  i && /* @__PURE__ */ t("span", {
3161
- className: J.leading,
3203
+ className: q.leading,
3162
3204
  children: i
3163
3205
  }),
3164
3206
  /* @__PURE__ */ n("span", {
3165
- className: J.content,
3207
+ className: q.content,
3166
3208
  id: v,
3167
3209
  children: [/* @__PURE__ */ t("span", {
3168
- className: J.title,
3210
+ className: q.title,
3169
3211
  children: e
3170
3212
  }), r && /* @__PURE__ */ t("span", {
3171
- className: J.subtitle,
3213
+ className: q.subtitle,
3172
3214
  children: r
3173
3215
  })]
3174
3216
  })
@@ -3177,35 +3219,35 @@ function ai({ title: e, subtitle: r, leading: i, checked: a, defaultChecked: o =
3177
3219
  }
3178
3220
  //#endregion
3179
3221
  //#region src/components/ComboRow/ComboRow.module.css
3180
- var oi = "_row_46mn8_3", si = "_disabled_46mn8_16", ci = "_leading_46mn8_23", li = "_content_46mn8_32", ui = "_title_46mn8_40", di = "_subtitle_46mn8_51", fi = "_comboWrap_46mn8_65", pi = "_trigger_46mn8_73", mi = "_triggerOpen_46mn8_126", hi = "_triggerLabel_46mn8_136", gi = "_placeholder_46mn8_144", _i = "_chevron_46mn8_150", vi = "_chevronOpen_46mn8_157", yi = "_list_46mn8_163", bi = "_listDown_46mn8_192", xi = "_listUp_46mn8_196", Si = "_option_46mn8_208", Ci = "_optionActive_46mn8_225", wi = "_optionSelected_46mn8_229", Ti = "_optionDisabled_46mn8_233", Ei = "_optionLabel_46mn8_239", Di = "_checkIcon_46mn8_247", Y = {
3181
- row: oi,
3182
- disabled: si,
3183
- leading: ci,
3184
- content: li,
3185
- title: ui,
3186
- subtitle: di,
3187
- comboWrap: fi,
3188
- trigger: pi,
3189
- triggerOpen: mi,
3190
- triggerLabel: hi,
3191
- placeholder: gi,
3192
- chevron: _i,
3193
- chevronOpen: vi,
3194
- list: yi,
3222
+ var li = "_row_46mn8_3", ui = "_disabled_46mn8_16", di = "_leading_46mn8_23", fi = "_content_46mn8_32", pi = "_title_46mn8_40", mi = "_subtitle_46mn8_51", hi = "_comboWrap_46mn8_65", gi = "_trigger_46mn8_73", _i = "_triggerOpen_46mn8_126", vi = "_triggerLabel_46mn8_136", yi = "_placeholder_46mn8_144", bi = "_chevron_46mn8_150", xi = "_chevronOpen_46mn8_157", Si = "_list_46mn8_163", Ci = "_listDown_46mn8_192", wi = "_listUp_46mn8_196", Ti = "_option_46mn8_208", Ei = "_optionActive_46mn8_225", Di = "_optionSelected_46mn8_229", Oi = "_optionDisabled_46mn8_233", ki = "_optionLabel_46mn8_239", Ai = "_checkIcon_46mn8_247", J = {
3223
+ row: li,
3224
+ disabled: ui,
3225
+ leading: di,
3226
+ content: fi,
3227
+ title: pi,
3228
+ subtitle: mi,
3229
+ comboWrap: hi,
3230
+ trigger: gi,
3231
+ triggerOpen: _i,
3232
+ triggerLabel: vi,
3233
+ placeholder: yi,
3234
+ chevron: bi,
3235
+ chevronOpen: xi,
3236
+ list: Si,
3195
3237
  "list-in": "_list-in_46mn8_1",
3196
- listDown: bi,
3197
- listUp: xi,
3238
+ listDown: Ci,
3239
+ listUp: wi,
3198
3240
  "list-in-up": "_list-in-up_46mn8_1",
3199
- option: Si,
3200
- optionActive: Ci,
3201
- optionSelected: wi,
3202
- optionDisabled: Ti,
3203
- optionLabel: Ei,
3204
- checkIcon: Di
3241
+ option: Ti,
3242
+ optionActive: Ei,
3243
+ optionSelected: Di,
3244
+ optionDisabled: Oi,
3245
+ optionLabel: ki,
3246
+ checkIcon: Ai
3205
3247
  };
3206
3248
  //#endregion
3207
3249
  //#region src/components/ComboRow/ComboRow.tsx
3208
- function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultValue: c, onValueChange: p, disabled: m = !1, className: h, ...g }) {
3250
+ function ji({ title: e, subtitle: r, leading: i, options: a, value: o, defaultValue: c, onValueChange: p, disabled: m = !1, className: h, ...g }) {
3209
3251
  let _ = o !== void 0, [v, y] = f(c), b = _ ? o : v, [x, S] = f(!1), [C, w] = f(-1), [T, E] = f(!1), D = u(), O = u(), k = d(null), A = d(null), j = a.find((e) => e.value === b), M = s(() => {
3210
3252
  if (!k.current) return;
3211
3253
  let e = k.current.getBoundingClientRect(), t = window.innerHeight - e.bottom, n = Math.min(a.length * 44 + 8, 260);
@@ -3294,28 +3336,28 @@ function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultVa
3294
3336
  ]);
3295
3337
  return /* @__PURE__ */ n("div", {
3296
3338
  className: [
3297
- Y.row,
3298
- m ? Y.disabled : null,
3339
+ J.row,
3340
+ m ? J.disabled : null,
3299
3341
  h
3300
3342
  ].filter(Boolean).join(" "),
3301
3343
  ...g,
3302
3344
  children: [
3303
3345
  i && /* @__PURE__ */ t("span", {
3304
- className: Y.leading,
3346
+ className: J.leading,
3305
3347
  children: i
3306
3348
  }),
3307
3349
  /* @__PURE__ */ n("span", {
3308
- className: Y.content,
3350
+ className: J.content,
3309
3351
  children: [/* @__PURE__ */ t("span", {
3310
- className: Y.title,
3352
+ className: J.title,
3311
3353
  children: e
3312
3354
  }), r && /* @__PURE__ */ t("span", {
3313
- className: Y.subtitle,
3355
+ className: J.subtitle,
3314
3356
  children: r
3315
3357
  })]
3316
3358
  }),
3317
3359
  /* @__PURE__ */ n("div", {
3318
- className: Y.comboWrap,
3360
+ className: J.comboWrap,
3319
3361
  children: [/* @__PURE__ */ n("button", {
3320
3362
  ref: k,
3321
3363
  id: D,
@@ -3326,14 +3368,14 @@ function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultVa
3326
3368
  "aria-controls": O,
3327
3369
  "aria-activedescendant": x && C >= 0 ? `${O}-opt-${C}` : void 0,
3328
3370
  disabled: m,
3329
- className: [Y.trigger, x ? Y.triggerOpen : null].filter(Boolean).join(" "),
3371
+ className: [J.trigger, x ? J.triggerOpen : null].filter(Boolean).join(" "),
3330
3372
  onClick: () => x ? P() : N(),
3331
3373
  onKeyDown: te,
3332
3374
  children: [/* @__PURE__ */ t("span", {
3333
- className: [Y.triggerLabel, j ? null : Y.placeholder].filter(Boolean).join(" "),
3375
+ className: [J.triggerLabel, j ? null : J.placeholder].filter(Boolean).join(" "),
3334
3376
  children: j?.label ?? "—"
3335
3377
  }), /* @__PURE__ */ t("svg", {
3336
- className: [Y.chevron, x ? Y.chevronOpen : null].filter(Boolean).join(" "),
3378
+ className: [J.chevron, x ? J.chevronOpen : null].filter(Boolean).join(" "),
3337
3379
  width: "16",
3338
3380
  height: "16",
3339
3381
  viewBox: "0 0 16 16",
@@ -3354,7 +3396,7 @@ function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultVa
3354
3396
  role: "listbox",
3355
3397
  "aria-labelledby": D,
3356
3398
  tabIndex: -1,
3357
- className: [Y.list, T ? Y.listUp : Y.listDown].filter(Boolean).join(" "),
3399
+ className: [J.list, T ? J.listUp : J.listDown].filter(Boolean).join(" "),
3358
3400
  onKeyDown: ne,
3359
3401
  children: a.map((e, r) => /* @__PURE__ */ n("li", {
3360
3402
  id: `${O}-opt-${r}`,
@@ -3362,15 +3404,15 @@ function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultVa
3362
3404
  "aria-selected": e.value === b,
3363
3405
  "aria-disabled": e.disabled,
3364
3406
  className: [
3365
- Y.option,
3366
- e.value === b ? Y.optionSelected : null,
3367
- r === C ? Y.optionActive : null,
3368
- e.disabled ? Y.optionDisabled : null
3407
+ J.option,
3408
+ e.value === b ? J.optionSelected : null,
3409
+ r === C ? J.optionActive : null,
3410
+ e.disabled ? J.optionDisabled : null
3369
3411
  ].filter(Boolean).join(" "),
3370
3412
  onMouseEnter: () => !e.disabled && w(r),
3371
3413
  onClick: () => ee(e),
3372
3414
  children: [/* @__PURE__ */ t("span", {
3373
- className: Y.optionLabel,
3415
+ className: J.optionLabel,
3374
3416
  children: e.label
3375
3417
  }), e.value === b && /* @__PURE__ */ t("svg", {
3376
3418
  width: "16",
@@ -3378,7 +3420,7 @@ function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultVa
3378
3420
  viewBox: "0 0 16 16",
3379
3421
  "aria-hidden": "true",
3380
3422
  focusable: "false",
3381
- className: Y.checkIcon,
3423
+ className: J.checkIcon,
3382
3424
  children: /* @__PURE__ */ t("path", {
3383
3425
  d: "M3 8l4 4 6-6",
3384
3426
  fill: "none",
@@ -3394,7 +3436,7 @@ function Oi({ title: e, subtitle: r, leading: i, options: a, value: o, defaultVa
3394
3436
  ]
3395
3437
  });
3396
3438
  }
3397
- var X = {
3439
+ var Y = {
3398
3440
  row: "_row_1kogj_3",
3399
3441
  focused: "_focused_1kogj_16",
3400
3442
  disabled: "_disabled_1kogj_25",
@@ -3408,31 +3450,31 @@ var X = {
3408
3450
  };
3409
3451
  //#endregion
3410
3452
  //#region src/components/EntryRow/EntryRow.tsx
3411
- function ki({ title: e, value: r, defaultValue: i = "", onValueChange: a, leading: o, trailing: s, disabled: c, className: l, id: p, onChange: m, ...h }) {
3453
+ function Mi({ title: e, value: r, defaultValue: i = "", onValueChange: a, leading: o, trailing: s, disabled: c, className: l, id: p, onChange: m, ...h }) {
3412
3454
  let g = u(), _ = p ?? g, v = r !== void 0, [y, b] = f(String(i)), x = v ? String(r) : y, [S, C] = f(!1), w = d(null), T = S || x.length > 0;
3413
3455
  return /* @__PURE__ */ n("div", {
3414
3456
  className: [
3415
- X.row,
3416
- S ? X.focused : null,
3417
- c ? X.disabled : null,
3457
+ Y.row,
3458
+ S ? Y.focused : null,
3459
+ c ? Y.disabled : null,
3418
3460
  l
3419
3461
  ].filter(Boolean).join(" "),
3420
3462
  onClick: () => w.current?.focus(),
3421
3463
  children: [
3422
3464
  o && /* @__PURE__ */ t("span", {
3423
- className: X.leading,
3465
+ className: Y.leading,
3424
3466
  children: o
3425
3467
  }),
3426
3468
  /* @__PURE__ */ n("span", {
3427
- className: X.fieldWrap,
3469
+ className: Y.fieldWrap,
3428
3470
  children: [/* @__PURE__ */ t("label", {
3429
3471
  htmlFor: _,
3430
- className: [X.label, T ? X.labelFloated : null].filter(Boolean).join(" "),
3472
+ className: [Y.label, T ? Y.labelFloated : null].filter(Boolean).join(" "),
3431
3473
  children: e
3432
3474
  }), /* @__PURE__ */ t("input", {
3433
3475
  ref: w,
3434
3476
  id: _,
3435
- className: [X.input, T ? X.inputFloated : null].filter(Boolean).join(" "),
3477
+ className: [Y.input, T ? Y.inputFloated : null].filter(Boolean).join(" "),
3436
3478
  value: x,
3437
3479
  disabled: c,
3438
3480
  onFocus: () => C(!0),
@@ -3444,39 +3486,39 @@ function ki({ title: e, value: r, defaultValue: i = "", onValueChange: a, leadin
3444
3486
  })]
3445
3487
  }),
3446
3488
  s && /* @__PURE__ */ t("span", {
3447
- className: X.trailing,
3489
+ className: Y.trailing,
3448
3490
  children: s
3449
3491
  })
3450
3492
  ]
3451
3493
  });
3452
3494
  }
3453
- var Ai = { revealButton: "_revealButton_1j8z0_3" };
3495
+ var Ni = { revealButton: "_revealButton_1j8z0_3" };
3454
3496
  //#endregion
3455
3497
  //#region src/components/PasswordEntryRow/PasswordEntryRow.tsx
3456
- function ji({ trailing: r, disabled: i, ...a }) {
3498
+ function Pi({ trailing: r, disabled: i, ...a }) {
3457
3499
  let [o, s] = f(!1), c = /* @__PURE__ */ t("button", {
3458
3500
  type: "button",
3459
- className: Ai.revealButton,
3501
+ className: Ni.revealButton,
3460
3502
  onClick: (e) => {
3461
3503
  e.stopPropagation(), s((e) => !e);
3462
3504
  },
3463
3505
  "aria-label": o ? "Conceal password" : "Reveal password",
3464
3506
  "aria-pressed": o,
3465
3507
  disabled: i,
3466
- children: /* @__PURE__ */ t(F, {
3467
- icon: o ? Ie : Fe,
3508
+ children: /* @__PURE__ */ t(I, {
3509
+ icon: o ? Le : Ie,
3468
3510
  size: "md",
3469
3511
  "aria-hidden": !0
3470
3512
  })
3471
3513
  });
3472
- return /* @__PURE__ */ t(ki, {
3514
+ return /* @__PURE__ */ t(Mi, {
3473
3515
  ...a,
3474
3516
  type: o ? "text" : "password",
3475
3517
  disabled: i,
3476
3518
  trailing: /* @__PURE__ */ n(e, { children: [r, c] })
3477
3519
  });
3478
3520
  }
3479
- var Z = {
3521
+ var X = {
3480
3522
  row: "_row_ycg6f_3",
3481
3523
  disabled: "_disabled_ycg6f_16",
3482
3524
  leading: "_leading_ycg6f_23",
@@ -3489,16 +3531,16 @@ var Z = {
3489
3531
  };
3490
3532
  //#endregion
3491
3533
  //#region src/components/SpinRow/SpinRow.tsx
3492
- function Mi(e) {
3534
+ function Fi(e) {
3493
3535
  let t = e.toString(), n = t.indexOf(".");
3494
3536
  return n === -1 ? 0 : t.length - n - 1;
3495
3537
  }
3496
- function Ni(e, t, n) {
3538
+ function Ii(e, t, n) {
3497
3539
  return Math.min(n, Math.max(t, e));
3498
3540
  }
3499
- function Pi({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0, onValueChange: c, min: l = 0, max: d = 100, step: p = 1, decimals: m, disabled: h = !1, className: g, ..._ }) {
3500
- let v = a !== void 0, [y, b] = f(o), x = v ? a : y, S = m ?? Mi(p), C = u(), w = s((e) => {
3501
- let t = parseFloat(Ni(e, l, d).toFixed(S));
3541
+ function Li({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0, onValueChange: c, min: l = 0, max: d = 100, step: p = 1, decimals: m, disabled: h = !1, className: g, ..._ }) {
3542
+ let v = a !== void 0, [y, b] = f(o), x = v ? a : y, S = m ?? Fi(p), C = u(), w = s((e) => {
3543
+ let t = parseFloat(Ii(e, l, d).toFixed(S));
3502
3544
  v || b(t), c?.(t);
3503
3545
  }, [
3504
3546
  v,
@@ -3536,23 +3578,23 @@ function Pi({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0,
3536
3578
  ]);
3537
3579
  return /* @__PURE__ */ n("div", {
3538
3580
  className: [
3539
- Z.row,
3540
- h ? Z.disabled : null,
3581
+ X.row,
3582
+ h ? X.disabled : null,
3541
3583
  g
3542
3584
  ].filter(Boolean).join(" "),
3543
3585
  ..._,
3544
3586
  children: [
3545
3587
  i && /* @__PURE__ */ t("span", {
3546
- className: Z.leading,
3588
+ className: X.leading,
3547
3589
  children: i
3548
3590
  }),
3549
3591
  /* @__PURE__ */ n("span", {
3550
- className: Z.content,
3592
+ className: X.content,
3551
3593
  children: [/* @__PURE__ */ t("span", {
3552
- className: Z.title,
3594
+ className: X.title,
3553
3595
  children: e
3554
3596
  }), r && /* @__PURE__ */ t("span", {
3555
- className: Z.subtitle,
3597
+ className: X.subtitle,
3556
3598
  children: r
3557
3599
  })]
3558
3600
  }),
@@ -3565,14 +3607,14 @@ function Pi({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0,
3565
3607
  "aria-disabled": h || void 0,
3566
3608
  tabIndex: h ? -1 : 0,
3567
3609
  onKeyDown: h ? void 0 : T,
3568
- className: Z.spin,
3610
+ className: X.spin,
3569
3611
  children: [
3570
3612
  /* @__PURE__ */ t("button", {
3571
3613
  type: "button",
3572
3614
  tabIndex: -1,
3573
3615
  "aria-hidden": "true",
3574
3616
  disabled: h || x <= l,
3575
- className: Z.spinBtn,
3617
+ className: X.spinBtn,
3576
3618
  onClick: (e) => {
3577
3619
  e.stopPropagation(), w(x - p);
3578
3620
  },
@@ -3580,7 +3622,7 @@ function Pi({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0,
3580
3622
  }),
3581
3623
  /* @__PURE__ */ t("span", {
3582
3624
  id: C,
3583
- className: Z.spinValue,
3625
+ className: X.spinValue,
3584
3626
  "aria-hidden": "true",
3585
3627
  children: x.toFixed(S)
3586
3628
  }),
@@ -3589,7 +3631,7 @@ function Pi({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0,
3589
3631
  tabIndex: -1,
3590
3632
  "aria-hidden": "true",
3591
3633
  disabled: h || x >= d,
3592
- className: Z.spinBtn,
3634
+ className: X.spinBtn,
3593
3635
  onClick: (e) => {
3594
3636
  e.stopPropagation(), w(x + p);
3595
3637
  },
@@ -3602,50 +3644,50 @@ function Pi({ title: e, subtitle: r, leading: i, value: a, defaultValue: o = 0,
3602
3644
  }
3603
3645
  //#endregion
3604
3646
  //#region src/components/NavigationView/NavigationView.module.css
3605
- var Fi = "_view_1r1om_3", Ii = "_page_1r1om_12", Li = "_pageHeader_1r1om_23", Ri = "_pageTitle_1r1om_34", zi = "_pageContent_1r1om_43", Bi = "_enterForward_1r1om_52", Vi = "_enterBack_1r1om_56", Hi = {
3606
- view: Fi,
3607
- page: Ii,
3608
- pageHeader: Li,
3609
- pageTitle: Ri,
3610
- pageContent: zi,
3611
- enterForward: Bi,
3647
+ var Ri = "_view_1r1om_3", zi = "_page_1r1om_12", Bi = "_pageHeader_1r1om_23", Vi = "_pageTitle_1r1om_34", Hi = "_pageContent_1r1om_43", Ui = "_enterForward_1r1om_52", Wi = "_enterBack_1r1om_56", Gi = {
3648
+ view: Ri,
3649
+ page: zi,
3650
+ pageHeader: Bi,
3651
+ pageTitle: Vi,
3652
+ pageContent: Hi,
3653
+ enterForward: Ui,
3612
3654
  "slide-in-right": "_slide-in-right_1r1om_1",
3613
- enterBack: Vi,
3655
+ enterBack: Wi,
3614
3656
  "slide-in-left": "_slide-in-left_1r1om_1"
3615
- }, Ui = a({
3657
+ }, Ki = a({
3616
3658
  navigate: () => {},
3617
3659
  pop: () => {},
3618
3660
  canGoBack: !1,
3619
3661
  currentTag: "",
3620
3662
  direction: "forward"
3621
3663
  });
3622
- function Wi() {
3623
- return c(Ui);
3664
+ function qi() {
3665
+ return c(Ki);
3624
3666
  }
3625
- function Gi({ tag: e, title: r, children: i, className: a, ...o }) {
3626
- let { currentTag: s, direction: l } = c(Ui);
3667
+ function Ji({ tag: e, title: r, children: i, className: a, ...o }) {
3668
+ let { currentTag: s, direction: l } = c(Ki);
3627
3669
  return s === e ? /* @__PURE__ */ n("div", {
3628
3670
  className: [
3629
- Hi.page,
3630
- l === "forward" ? Hi.enterForward : Hi.enterBack,
3671
+ Gi.page,
3672
+ l === "forward" ? Gi.enterForward : Gi.enterBack,
3631
3673
  a
3632
3674
  ].filter(Boolean).join(" "),
3633
3675
  ...o,
3634
3676
  children: [/* @__PURE__ */ t("div", {
3635
- className: Hi.pageHeader,
3677
+ className: Gi.pageHeader,
3636
3678
  children: /* @__PURE__ */ t("span", {
3637
- className: Hi.pageTitle,
3679
+ className: Gi.pageTitle,
3638
3680
  children: r
3639
3681
  })
3640
3682
  }), /* @__PURE__ */ t("div", {
3641
- className: Hi.pageContent,
3683
+ className: Gi.pageContent,
3642
3684
  children: i
3643
3685
  })]
3644
3686
  }) : null;
3645
3687
  }
3646
- function Ki({ initialPage: e, children: n, className: r, ...i }) {
3688
+ function Yi({ initialPage: e, children: n, className: r, ...i }) {
3647
3689
  let [a, o] = f([e]), s = a[a.length - 1], c = a.length > 1, [l, u] = f("forward");
3648
- return /* @__PURE__ */ t(Ui.Provider, {
3690
+ return /* @__PURE__ */ t(Ki.Provider, {
3649
3691
  value: {
3650
3692
  navigate: (e) => {
3651
3693
  u("forward"), o((t) => [...t, e]);
@@ -3658,7 +3700,7 @@ function Ki({ initialPage: e, children: n, className: r, ...i }) {
3658
3700
  direction: l
3659
3701
  },
3660
3702
  children: /* @__PURE__ */ t("div", {
3661
- className: [Hi.view, r].filter(Boolean).join(" "),
3703
+ className: [Gi.view, r].filter(Boolean).join(" "),
3662
3704
  ...i,
3663
3705
  children: n
3664
3706
  })
@@ -3666,20 +3708,20 @@ function Ki({ initialPage: e, children: n, className: r, ...i }) {
3666
3708
  }
3667
3709
  //#endregion
3668
3710
  //#region src/components/BottomSheet/BottomSheet.module.css
3669
- var qi = "_backdrop_zzv98_3", Ji = "_sheet_zzv98_26", Yi = "_handle_zzv98_49", Xi = "_handleBar_zzv98_56", Zi = "_title_zzv98_66", Qi = "_content_zzv98_79", $i = {
3670
- backdrop: qi,
3711
+ var Xi = "_backdrop_zzv98_3", Zi = "_sheet_zzv98_26", Qi = "_handle_zzv98_49", $i = "_handleBar_zzv98_56", ea = "_title_zzv98_66", ta = "_content_zzv98_79", na = {
3712
+ backdrop: Xi,
3671
3713
  "backdrop-in": "_backdrop-in_zzv98_1",
3672
- sheet: Ji,
3714
+ sheet: Zi,
3673
3715
  "sheet-in": "_sheet-in_zzv98_1",
3674
- handle: Yi,
3675
- handleBar: Xi,
3676
- title: Zi,
3677
- content: Qi
3678
- }, ea = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
3679
- function ta({ open: e, title: r, children: i, onClose: a, closeOnBackdrop: o = !0, className: c, ...f }) {
3716
+ handle: Qi,
3717
+ handleBar: $i,
3718
+ title: ea,
3719
+ content: ta
3720
+ }, ra = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
3721
+ function ia({ open: e, title: r, children: i, onClose: a, closeOnBackdrop: o = !0, className: c, ...f }) {
3680
3722
  let m = d(null), h = u(), g = d(null);
3681
3723
  l(() => {
3682
- e ? (g.current = document.activeElement, (m.current?.querySelector(ea))?.focus()) : g.current?.focus();
3724
+ e ? (g.current = document.activeElement, (m.current?.querySelector(ra))?.focus()) : g.current?.focus();
3683
3725
  }, [e]);
3684
3726
  let _ = s((e) => {
3685
3727
  if (e.key === "Escape") {
@@ -3687,14 +3729,14 @@ function ta({ open: e, title: r, children: i, onClose: a, closeOnBackdrop: o = !
3687
3729
  return;
3688
3730
  }
3689
3731
  if (e.key !== "Tab") return;
3690
- let t = Array.from(m.current?.querySelectorAll(ea) ?? []);
3732
+ let t = Array.from(m.current?.querySelectorAll(ra) ?? []);
3691
3733
  if (t.length === 0) return;
3692
3734
  let n = t[0], r = t[t.length - 1];
3693
3735
  e.shiftKey ? document.activeElement === n && (e.preventDefault(), r.focus()) : document.activeElement === r && (e.preventDefault(), n.focus());
3694
3736
  }, [a]);
3695
3737
  if (!e) return null;
3696
3738
  let v = /* @__PURE__ */ t("div", {
3697
- className: $i.backdrop,
3739
+ className: na.backdrop,
3698
3740
  onClick: o ? a : void 0,
3699
3741
  "aria-hidden": "true",
3700
3742
  children: /* @__PURE__ */ n("div", {
@@ -3702,23 +3744,23 @@ function ta({ open: e, title: r, children: i, onClose: a, closeOnBackdrop: o = !
3702
3744
  role: "dialog",
3703
3745
  "aria-modal": "true",
3704
3746
  "aria-labelledby": r ? h : void 0,
3705
- className: [$i.sheet, c].filter(Boolean).join(" "),
3747
+ className: [na.sheet, c].filter(Boolean).join(" "),
3706
3748
  onKeyDown: _,
3707
3749
  onClick: (e) => e.stopPropagation(),
3708
3750
  ...f,
3709
3751
  children: [
3710
3752
  /* @__PURE__ */ t("div", {
3711
- className: $i.handle,
3753
+ className: na.handle,
3712
3754
  "aria-hidden": "true",
3713
- children: /* @__PURE__ */ t("div", { className: $i.handleBar })
3755
+ children: /* @__PURE__ */ t("div", { className: na.handleBar })
3714
3756
  }),
3715
3757
  r && /* @__PURE__ */ t("div", {
3716
3758
  id: h,
3717
- className: $i.title,
3759
+ className: na.title,
3718
3760
  children: r
3719
3761
  }),
3720
3762
  i && /* @__PURE__ */ t("div", {
3721
- className: $i.content,
3763
+ className: na.content,
3722
3764
  children: i
3723
3765
  })
3724
3766
  ]
@@ -3726,7 +3768,7 @@ function ta({ open: e, title: r, children: i, onClose: a, closeOnBackdrop: o = !
3726
3768
  });
3727
3769
  return typeof document > "u" ? v : p(v, document.body);
3728
3770
  }
3729
- var Q = {
3771
+ var Z = {
3730
3772
  carousel: "_carousel_117hp_3",
3731
3773
  horizontal: "_horizontal_117hp_20",
3732
3774
  vertical: "_vertical_117hp_27",
@@ -3740,9 +3782,9 @@ var Q = {
3740
3782
  };
3741
3783
  //#endregion
3742
3784
  //#region src/components/Carousel/Carousel.tsx
3743
- function na({ pages: e, currentPage: n, onPageSelected: r, className: i, ...a }) {
3785
+ function aa({ pages: e, currentPage: n, onPageSelected: r, className: i, ...a }) {
3744
3786
  return /* @__PURE__ */ t("div", {
3745
- className: [Q.indicatorDots, i].filter(Boolean).join(" "),
3787
+ className: [Z.indicatorDots, i].filter(Boolean).join(" "),
3746
3788
  role: "tablist",
3747
3789
  "aria-label": "Carousel pages",
3748
3790
  ...a,
@@ -3751,14 +3793,14 @@ function na({ pages: e, currentPage: n, onPageSelected: r, className: i, ...a })
3751
3793
  role: "tab",
3752
3794
  "aria-selected": i === n,
3753
3795
  "aria-label": `Page ${i + 1}`,
3754
- className: [Q.dot, i === n ? Q.dotActive : null].filter(Boolean).join(" "),
3796
+ className: [Z.dot, i === n ? Z.dotActive : null].filter(Boolean).join(" "),
3755
3797
  onClick: () => r?.(i)
3756
3798
  }, i))
3757
3799
  });
3758
3800
  }
3759
- function ra({ pages: e, currentPage: n, onPageSelected: r, className: i, ...a }) {
3801
+ function oa({ pages: e, currentPage: n, onPageSelected: r, className: i, ...a }) {
3760
3802
  return /* @__PURE__ */ t("div", {
3761
- className: [Q.indicatorLines, i].filter(Boolean).join(" "),
3803
+ className: [Z.indicatorLines, i].filter(Boolean).join(" "),
3762
3804
  role: "tablist",
3763
3805
  "aria-label": "Carousel pages",
3764
3806
  ...a,
@@ -3767,12 +3809,12 @@ function ra({ pages: e, currentPage: n, onPageSelected: r, className: i, ...a })
3767
3809
  role: "tab",
3768
3810
  "aria-selected": i === n,
3769
3811
  "aria-label": `Page ${i + 1}`,
3770
- className: [Q.line, i === n ? Q.lineActive : null].filter(Boolean).join(" "),
3812
+ className: [Z.line, i === n ? Z.lineActive : null].filter(Boolean).join(" "),
3771
3813
  onClick: () => r?.(i)
3772
3814
  }, i))
3773
3815
  });
3774
3816
  }
3775
- function ia({ children: e, orientation: n = "horizontal", spacing: i = 0, loop: a = !1, onPageChanged: o, page: c, className: u, ...p }) {
3817
+ function sa({ children: e, orientation: n = "horizontal", spacing: i = 0, loop: a = !1, onPageChanged: o, page: c, className: u, ...p }) {
3776
3818
  let m = d(null), h = r.count(e), [g, _] = f(0), v = c !== void 0, y = v ? c : g;
3777
3819
  l(() => {
3778
3820
  v && b(c, "smooth");
@@ -3828,15 +3870,15 @@ function ia({ children: e, orientation: n = "horizontal", spacing: i = 0, loop:
3828
3870
  "aria-roledescription": "carousel",
3829
3871
  tabIndex: 0,
3830
3872
  className: [
3831
- Q.carousel,
3832
- S ? Q.horizontal : Q.vertical,
3873
+ Z.carousel,
3874
+ S ? Z.horizontal : Z.vertical,
3833
3875
  u
3834
3876
  ].filter(Boolean).join(" "),
3835
3877
  style: S ? { columnGap: i || void 0 } : { rowGap: i || void 0 },
3836
3878
  onKeyDown: x,
3837
3879
  ...p,
3838
3880
  children: r.map(e, (e, n) => /* @__PURE__ */ t("div", {
3839
- className: Q.slide,
3881
+ className: Z.slide,
3840
3882
  role: "group",
3841
3883
  "aria-roledescription": "slide",
3842
3884
  "aria-label": `${n + 1} of ${h}`,
@@ -3846,49 +3888,49 @@ function ia({ children: e, orientation: n = "horizontal", spacing: i = 0, loop:
3846
3888
  }
3847
3889
  //#endregion
3848
3890
  //#region src/components/Bin/Bin.tsx
3849
- function aa({ children: e, ...n }) {
3891
+ function ca({ children: e, ...n }) {
3850
3892
  return /* @__PURE__ */ t("div", {
3851
3893
  ...n,
3852
3894
  children: e
3853
3895
  });
3854
3896
  }
3855
- var oa = {
3897
+ var la = {
3856
3898
  content: "_content_1xkwk_3",
3857
3899
  icon: "_icon_1xkwk_9",
3858
3900
  label: "_label_1xkwk_15"
3859
3901
  };
3860
3902
  //#endregion
3861
3903
  //#region src/components/ButtonContent/ButtonContent.tsx
3862
- function sa({ icon: e, label: r, iconPosition: i = "start", className: a, ...o }) {
3904
+ function ua({ icon: e, label: r, iconPosition: i = "start", className: a, ...o }) {
3863
3905
  return /* @__PURE__ */ n("span", {
3864
3906
  className: [
3865
- oa.content,
3866
- i === "end" ? oa.iconEnd : null,
3907
+ la.content,
3908
+ i === "end" ? la.iconEnd : null,
3867
3909
  a
3868
3910
  ].filter(Boolean).join(" "),
3869
3911
  ...o,
3870
3912
  children: [
3871
3913
  e && i === "start" && /* @__PURE__ */ t("span", {
3872
- className: oa.icon,
3914
+ className: la.icon,
3873
3915
  "aria-hidden": "true",
3874
3916
  children: e
3875
3917
  }),
3876
3918
  /* @__PURE__ */ t("span", {
3877
- className: oa.label,
3919
+ className: la.label,
3878
3920
  children: r
3879
3921
  }),
3880
3922
  e && i === "end" && /* @__PURE__ */ t("span", {
3881
- className: oa.icon,
3923
+ className: la.icon,
3882
3924
  "aria-hidden": "true",
3883
3925
  children: e
3884
3926
  })
3885
3927
  ]
3886
3928
  });
3887
3929
  }
3888
- var ca = {
3930
+ var da = {
3889
3931
  label: "_label_h3znl_3",
3890
3932
  key: "_key_h3znl_9"
3891
- }, la = {
3933
+ }, fa = {
3892
3934
  ctrl: "⌃",
3893
3935
  control: "⌃",
3894
3936
  shift: "⇧",
@@ -3916,22 +3958,22 @@ var ca = {
3916
3958
  home: "⇱",
3917
3959
  end: "⇲"
3918
3960
  };
3919
- function ua({ shortcut: e, symbols: n = !0, className: r, ...i }) {
3961
+ function pa({ shortcut: e, symbols: n = !0, className: r, ...i }) {
3920
3962
  let a = e.split("+").map((e) => e.trim()).filter(Boolean);
3921
3963
  return /* @__PURE__ */ t("span", {
3922
- className: [ca.label, r].filter(Boolean).join(" "),
3964
+ className: [da.label, r].filter(Boolean).join(" "),
3923
3965
  "aria-label": e,
3924
3966
  ...i,
3925
3967
  children: a.map((e, r) => {
3926
- let i = n ? la[e.toLowerCase()] ?? e : e;
3968
+ let i = n ? fa[e.toLowerCase()] ?? e : e;
3927
3969
  return /* @__PURE__ */ t("kbd", {
3928
- className: ca.key,
3970
+ className: da.key,
3929
3971
  children: i
3930
3972
  }, r);
3931
3973
  })
3932
3974
  });
3933
3975
  }
3934
- var da = {
3976
+ var ma = {
3935
3977
  toolbarView: "_toolbarView_134hf_3",
3936
3978
  top: "_top_134hf_11",
3937
3979
  content: "_content_134hf_16",
@@ -3939,47 +3981,47 @@ var da = {
3939
3981
  };
3940
3982
  //#endregion
3941
3983
  //#region src/components/ToolbarView/ToolbarView.tsx
3942
- function fa({ topBar: e, bottomBar: r, children: i, className: a, ...o }) {
3984
+ function ha({ topBar: e, bottomBar: r, children: i, className: a, ...o }) {
3943
3985
  return /* @__PURE__ */ n("div", {
3944
- className: [da.toolbarView, a].filter(Boolean).join(" "),
3986
+ className: [ma.toolbarView, a].filter(Boolean).join(" "),
3945
3987
  ...o,
3946
3988
  children: [
3947
3989
  e && /* @__PURE__ */ t("div", {
3948
- className: da.top,
3990
+ className: ma.top,
3949
3991
  children: e
3950
3992
  }),
3951
3993
  /* @__PURE__ */ t("div", {
3952
- className: da.content,
3994
+ className: ma.content,
3953
3995
  children: i
3954
3996
  }),
3955
3997
  r && /* @__PURE__ */ t("div", {
3956
- className: da.bottom,
3998
+ className: ma.bottom,
3957
3999
  children: r
3958
4000
  })
3959
4001
  ]
3960
4002
  });
3961
4003
  }
3962
- var pa = {
4004
+ var ga = {
3963
4005
  windowTitle: "_windowTitle_zm877_3",
3964
4006
  title: "_title_zm877_11",
3965
4007
  subtitle: "_subtitle_zm877_24"
3966
4008
  };
3967
4009
  //#endregion
3968
4010
  //#region src/components/WindowTitle/WindowTitle.tsx
3969
- function ma({ title: e, subtitle: r, className: i, ...a }) {
4011
+ function _a({ title: e, subtitle: r, className: i, ...a }) {
3970
4012
  return /* @__PURE__ */ n("div", {
3971
- className: [pa.windowTitle, i].filter(Boolean).join(" "),
4013
+ className: [ga.windowTitle, i].filter(Boolean).join(" "),
3972
4014
  ...a,
3973
4015
  children: [/* @__PURE__ */ t("span", {
3974
- className: pa.title,
4016
+ className: ga.title,
3975
4017
  children: e
3976
4018
  }), r && /* @__PURE__ */ t("span", {
3977
- className: pa.subtitle,
4019
+ className: ga.subtitle,
3978
4020
  children: r
3979
4021
  })]
3980
4022
  });
3981
4023
  }
3982
- var ha = {
4024
+ var va = {
3983
4025
  group: "_group_17s4f_3",
3984
4026
  header: "_header_17s4f_11",
3985
4027
  headerText: "_headerText_17s4f_17",
@@ -3990,85 +4032,85 @@ var ha = {
3990
4032
  };
3991
4033
  //#endregion
3992
4034
  //#region src/components/PreferencesGroup/PreferencesGroup.tsx
3993
- function ga({ title: e, description: r, headerSuffix: i, children: a, className: o, ...s }) {
4035
+ function ya({ title: e, description: r, headerSuffix: i, children: a, className: o, ...s }) {
3994
4036
  let c = e || r || i;
3995
4037
  return /* @__PURE__ */ n("div", {
3996
- className: [ha.group, o].filter(Boolean).join(" "),
4038
+ className: [va.group, o].filter(Boolean).join(" "),
3997
4039
  ...s,
3998
4040
  children: [c && /* @__PURE__ */ n("div", {
3999
- className: ha.header,
4041
+ className: va.header,
4000
4042
  children: [/* @__PURE__ */ n("div", {
4001
- className: ha.headerText,
4043
+ className: va.headerText,
4002
4044
  children: [e && /* @__PURE__ */ t("span", {
4003
- className: ha.title,
4045
+ className: va.title,
4004
4046
  children: e
4005
4047
  }), r && /* @__PURE__ */ t("span", {
4006
- className: ha.description,
4048
+ className: va.description,
4007
4049
  children: r
4008
4050
  })]
4009
4051
  }), i && /* @__PURE__ */ t("div", {
4010
- className: ha.suffix,
4052
+ className: va.suffix,
4011
4053
  children: i
4012
4054
  })]
4013
4055
  }), /* @__PURE__ */ t("div", {
4014
- className: ha.content,
4056
+ className: va.content,
4015
4057
  children: a
4016
4058
  })]
4017
4059
  });
4018
4060
  }
4019
- var _a = {
4061
+ var ba = {
4020
4062
  page: "_page_gt42j_3",
4021
4063
  inner: "_inner_gt42j_10"
4022
4064
  };
4023
4065
  //#endregion
4024
4066
  //#region src/components/PreferencesPage/PreferencesPage.tsx
4025
- function va({ title: e, iconName: n, children: r, className: i, ...a }) {
4067
+ function xa({ title: e, iconName: n, children: r, className: i, ...a }) {
4026
4068
  return /* @__PURE__ */ t("div", {
4027
- className: [_a.page, i].filter(Boolean).join(" "),
4069
+ className: [ba.page, i].filter(Boolean).join(" "),
4028
4070
  role: "tabpanel",
4029
4071
  ...a,
4030
4072
  children: /* @__PURE__ */ t("div", {
4031
- className: _a.inner,
4073
+ className: ba.inner,
4032
4074
  children: r
4033
4075
  })
4034
4076
  });
4035
4077
  }
4036
4078
  //#endregion
4037
4079
  //#region src/components/PreferencesDialog/PreferencesDialog.module.css
4038
- var ya = "_backdrop_1u1bd_3", ba = "_dialog_1u1bd_26", xa = "_dialogMulti_1u1bd_46", Sa = "_header_1u1bd_63", Ca = "_closeBtn_1u1bd_73", wa = "_title_1u1bd_102", Ta = "_searchWrap_1u1bd_112", Ea = "_searchInput_1u1bd_116", Da = "_body_1u1bd_143", Oa = "_sidebar_1u1bd_152", ka = "_navList_1u1bd_160", Aa = "_navItem_1u1bd_169", ja = "_navItemActive_1u1bd_190", Ma = "_navIcon_1u1bd_205", Na = "_navLabel_1u1bd_211", Pa = "_pageWrap_1u1bd_221", $ = {
4039
- backdrop: ya,
4080
+ var Sa = "_backdrop_1u1bd_3", Ca = "_dialog_1u1bd_26", wa = "_dialogMulti_1u1bd_46", Ta = "_header_1u1bd_63", Ea = "_closeBtn_1u1bd_73", Da = "_title_1u1bd_102", Oa = "_searchWrap_1u1bd_112", ka = "_searchInput_1u1bd_116", Aa = "_body_1u1bd_143", ja = "_sidebar_1u1bd_152", Ma = "_navList_1u1bd_160", Na = "_navItem_1u1bd_169", Pa = "_navItemActive_1u1bd_190", Fa = "_navIcon_1u1bd_205", Ia = "_navLabel_1u1bd_211", La = "_pageWrap_1u1bd_221", Q = {
4081
+ backdrop: Sa,
4040
4082
  "backdrop-in": "_backdrop-in_1u1bd_1",
4041
- dialog: ba,
4083
+ dialog: Ca,
4042
4084
  "dialog-in": "_dialog-in_1u1bd_1",
4043
- dialogMulti: xa,
4044
- header: Sa,
4045
- closeBtn: Ca,
4046
- title: wa,
4047
- searchWrap: Ta,
4048
- searchInput: Ea,
4049
- body: Da,
4050
- sidebar: Oa,
4051
- navList: ka,
4052
- navItem: Aa,
4053
- navItemActive: ja,
4054
- navIcon: Ma,
4055
- navLabel: Na,
4056
- pageWrap: Pa
4057
- }, Fa = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
4058
- function Ia(e, t) {
4085
+ dialogMulti: wa,
4086
+ header: Ta,
4087
+ closeBtn: Ea,
4088
+ title: Da,
4089
+ searchWrap: Oa,
4090
+ searchInput: ka,
4091
+ body: Aa,
4092
+ sidebar: ja,
4093
+ navList: Ma,
4094
+ navItem: Na,
4095
+ navItemActive: Pa,
4096
+ navIcon: Fa,
4097
+ navLabel: Ia,
4098
+ pageWrap: La
4099
+ }, Ra = "button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])";
4100
+ function za(e, t) {
4059
4101
  if (e.key !== "Tab") return;
4060
- let n = Array.from(t.current?.querySelectorAll(Fa) ?? []);
4102
+ let n = Array.from(t.current?.querySelectorAll(Ra) ?? []);
4061
4103
  if (!n.length) return;
4062
4104
  let r = n[0], i = n[n.length - 1];
4063
4105
  e.shiftKey ? document.activeElement === r && (e.preventDefault(), i.focus()) : document.activeElement === i && (e.preventDefault(), r.focus());
4064
4106
  }
4065
- function La({ open: e, onClose: a, children: c, searchable: m = !0, className: h, ...g }) {
4107
+ function Ba({ open: e, onClose: a, children: c, searchable: m = !0, className: h, ...g }) {
4066
4108
  let _ = d(null), v = d(null), y = u(), b = r.toArray(c).filter((e) => o(e)), [x, S] = f(0), [C, w] = f("");
4067
4109
  l(() => {
4068
4110
  if (e) {
4069
4111
  S(0), w("");
4070
4112
  let e = requestAnimationFrame(() => {
4071
- m && v.current ? v.current.focus() : (_.current?.querySelector(Fa))?.focus();
4113
+ m && v.current ? v.current.focus() : (_.current?.querySelector(Ra))?.focus();
4072
4114
  });
4073
4115
  return () => cancelAnimationFrame(e);
4074
4116
  }
@@ -4078,10 +4120,10 @@ function La({ open: e, onClose: a, children: c, searchable: m = !0, className: h
4078
4120
  e.stopPropagation(), a();
4079
4121
  return;
4080
4122
  }
4081
- Ia(e, _);
4123
+ za(e, _);
4082
4124
  }, [a]), E = b.length > 1, D = b[x] ?? b[0], O = C.trim().toLowerCase();
4083
4125
  return e ? p(/* @__PURE__ */ t("div", {
4084
- className: $.backdrop,
4126
+ className: Q.backdrop,
4085
4127
  onClick: (e) => {
4086
4128
  e.target === e.currentTarget && a();
4087
4129
  },
@@ -4092,79 +4134,160 @@ function La({ open: e, onClose: a, children: c, searchable: m = !0, className: h
4092
4134
  "aria-modal": "true",
4093
4135
  "aria-labelledby": y,
4094
4136
  className: [
4095
- $.dialog,
4096
- E ? $.dialogMulti : null,
4137
+ Q.dialog,
4138
+ E ? Q.dialogMulti : null,
4097
4139
  h
4098
4140
  ].filter(Boolean).join(" "),
4099
4141
  onKeyDown: T,
4100
4142
  ...g,
4101
4143
  children: [/* @__PURE__ */ n("div", {
4102
- className: $.header,
4144
+ className: Q.header,
4103
4145
  children: [
4104
4146
  /* @__PURE__ */ t("button", {
4105
4147
  type: "button",
4106
- className: $.closeBtn,
4148
+ className: Q.closeBtn,
4107
4149
  onClick: a,
4108
4150
  "aria-label": "Close preferences",
4109
4151
  children: "✕"
4110
4152
  }),
4111
4153
  /* @__PURE__ */ t("span", {
4112
4154
  id: y,
4113
- className: $.title,
4155
+ className: Q.title,
4114
4156
  children: "Preferences"
4115
4157
  }),
4116
4158
  m && /* @__PURE__ */ t("div", {
4117
- className: $.searchWrap,
4159
+ className: Q.searchWrap,
4118
4160
  children: /* @__PURE__ */ t("input", {
4119
4161
  ref: v,
4120
4162
  type: "search",
4121
4163
  placeholder: "Search…",
4122
4164
  value: C,
4123
4165
  onChange: (e) => w(e.target.value),
4124
- className: $.searchInput,
4166
+ className: Q.searchInput,
4125
4167
  "aria-label": "Search preferences"
4126
4168
  })
4127
4169
  })
4128
4170
  ]
4129
4171
  }), /* @__PURE__ */ n("div", {
4130
- className: $.body,
4172
+ className: Q.body,
4131
4173
  children: [E && /* @__PURE__ */ t("nav", {
4132
- className: $.sidebar,
4174
+ className: Q.sidebar,
4133
4175
  "aria-label": "Preferences pages",
4134
4176
  children: /* @__PURE__ */ t("ul", {
4135
4177
  role: "tablist",
4136
- className: $.navList,
4178
+ className: Q.navList,
4137
4179
  children: b.map((e, r) => /* @__PURE__ */ t("li", {
4138
4180
  role: "presentation",
4139
4181
  children: /* @__PURE__ */ n("button", {
4140
4182
  role: "tab",
4141
4183
  type: "button",
4142
4184
  "aria-selected": r === x,
4143
- className: [$.navItem, r === x ? $.navItemActive : null].filter(Boolean).join(" "),
4185
+ className: [Q.navItem, r === x ? Q.navItemActive : null].filter(Boolean).join(" "),
4144
4186
  onClick: () => S(r),
4145
4187
  children: [e.props.iconName && /* @__PURE__ */ t("span", {
4146
4188
  className: [
4147
- $.navIcon,
4189
+ Q.navIcon,
4148
4190
  "icon",
4149
4191
  e.props.iconName
4150
4192
  ].join(" "),
4151
4193
  "aria-hidden": "true"
4152
4194
  }), /* @__PURE__ */ t("span", {
4153
- className: $.navLabel,
4195
+ className: Q.navLabel,
4154
4196
  children: e.props.title
4155
4197
  })]
4156
4198
  })
4157
4199
  }, r))
4158
4200
  })
4159
4201
  }), /* @__PURE__ */ t("div", {
4160
- className: $.pageWrap,
4202
+ className: Q.pageWrap,
4161
4203
  children: D && i(D, { "data-search-query": O || void 0 })
4162
4204
  })]
4163
4205
  })]
4164
4206
  })
4165
4207
  }), document.body) : null;
4166
4208
  }
4209
+ var $ = {
4210
+ vertical: "_vertical_12mfk_12",
4211
+ item: "_item_12mfk_18",
4212
+ leading: "_leading_12mfk_25",
4213
+ nodeTrack: "_nodeTrack_12mfk_32",
4214
+ content: "_content_12mfk_41",
4215
+ horizontal: "_horizontal_12mfk_65",
4216
+ node: "_node_12mfk_32",
4217
+ nodeDot: "_nodeDot_12mfk_114",
4218
+ nodeWithIcon: "_nodeWithIcon_12mfk_121",
4219
+ iconWrap: "_iconWrap_12mfk_128",
4220
+ lineInvisible: "_lineInvisible_12mfk_139",
4221
+ line: "_line_12mfk_139",
4222
+ lineDotted: "_lineDotted_12mfk_153"
4223
+ };
4224
+ //#endregion
4225
+ //#region src/components/Timeline/Timeline.tsx
4226
+ function Va({ items: e, orientation: r = "vertical", variant: i = "default", className: a, ...o }) {
4227
+ let s = r === "horizontal", c = i !== "none";
4228
+ return /* @__PURE__ */ t("div", {
4229
+ role: "list",
4230
+ className: [
4231
+ $.root,
4232
+ s ? $.horizontal : $.vertical,
4233
+ a
4234
+ ].filter(Boolean).join(" "),
4235
+ ...o,
4236
+ children: e.map((r, a) => {
4237
+ let o = a === 0, l = a === e.length - 1, u = [$.line, i === "dotted" ? $.lineDotted : null].filter(Boolean).join(" "), d = /* @__PURE__ */ t("div", {
4238
+ className: [$.node, r.icon ? $.nodeWithIcon : $.nodeDot].filter(Boolean).join(" "),
4239
+ children: r.icon && /* @__PURE__ */ t("span", {
4240
+ className: $.iconWrap,
4241
+ "aria-hidden": "true",
4242
+ children: r.icon
4243
+ })
4244
+ });
4245
+ return /* @__PURE__ */ n("div", {
4246
+ role: "listitem",
4247
+ className: $.item,
4248
+ children: [
4249
+ /* @__PURE__ */ t("div", {
4250
+ className: $.leading,
4251
+ children: r.leading
4252
+ }),
4253
+ s ? /* @__PURE__ */ n("div", {
4254
+ className: $.nodeTrack,
4255
+ children: [
4256
+ /* @__PURE__ */ t("div", {
4257
+ className: [
4258
+ $.line,
4259
+ i === "dotted" ? $.lineDotted : null,
4260
+ o || !c ? $.lineInvisible : null
4261
+ ].filter(Boolean).join(" "),
4262
+ "aria-hidden": "true"
4263
+ }),
4264
+ d,
4265
+ /* @__PURE__ */ t("div", {
4266
+ className: [
4267
+ $.line,
4268
+ i === "dotted" ? $.lineDotted : null,
4269
+ l || !c ? $.lineInvisible : null
4270
+ ].filter(Boolean).join(" "),
4271
+ "aria-hidden": "true"
4272
+ })
4273
+ ]
4274
+ }) : /* @__PURE__ */ n("div", {
4275
+ className: $.nodeTrack,
4276
+ children: [d, !l && c && /* @__PURE__ */ t("div", {
4277
+ className: u,
4278
+ "aria-hidden": "true"
4279
+ })]
4280
+ }),
4281
+ /* @__PURE__ */ t("div", {
4282
+ className: $.content,
4283
+ children: r.content
4284
+ })
4285
+ ]
4286
+ }, a);
4287
+ })
4288
+ });
4289
+ }
4167
4290
  //#endregion
4168
- export { Tt as ActionRow, te as Avatar, Ae as Badge, we as Banner, aa as Bin, ta as BottomSheet, cr as Box, Dt as BoxedList, zr as BreakpointBin, h as Button, sa as ButtonContent, Vr as ButtonRow, k as Card, ia as Carousel, na as CarouselIndicatorDots, ra as CarouselIndicatorLines, ai as CheckRow, se as Checkbox, fr as Chip, Xn as Clamp, Oi as ComboRow, bn as Dialog, zn as Dropdown, ki as EntryRow, Zr as ExpanderRow, Oe as Footer, Xr as Frame, Ve as GNOME_BREAKPOINTS, Ee as HeaderBar, F as Icon, ti as InlineViewSwitcher, ni as InlineViewSwitcherItem, nr as Link, Jr as LinkedGroup, Gi as NavigationPage, Zn as NavigationSplitView, Ki as NavigationView, Qn as OverlaySplitView, ji as PasswordEntryRow, Jn as Popover, La as PreferencesDialog, ga as PreferencesGroup, va as PreferencesPage, pe as ProgressBar, de as RadioButton, Re as SearchBar, re as Separator, ua as ShortcutLabel, Nr as ShortcutsDialog, dt as Sidebar, st as SidebarCollapsedContext, _t as SidebarItem, ft as SidebarSection, Un as Slider, Kr as Spacer, xt as SpinButton, Pi as SpinRow, j as Spinner, Ur as SplitButton, Be as StatusPage, ae as Switch, ii as SwitchRow, St as TabBar, Ct as TabItem, wt as TabPanel, T as Text, le as TextField, Bt as Toast, Vt as Toaster, or as ToggleGroup, sr as ToggleGroupItem, Gr as Toolbar, fa as ToolbarView, gt as Tooltip, kt as ViewSwitcher, er as ViewSwitcherBar, At as ViewSwitcherItem, Lr as ViewSwitcherSidebar, Rr as ViewSwitcherSidebarItem, ma as WindowTitle, ur as WrapBox, He as useBreakpoint, Wi as useNavigation, ct as useSidebarCollapsed };
4291
+ export { Dt as ActionRow, re as Avatar, je as Badge, Te as Banner, ca as Bin, h as Blockquote, ia as BottomSheet, dr as Box, kt as BoxedList, Hr as BreakpointBin, _ as Button, ua as ButtonContent, Wr as ButtonRow, j as Card, sa as Carousel, aa as CarouselIndicatorDots, oa as CarouselIndicatorLines, ci as CheckRow, le as Checkbox, hr as Chip, $n as Clamp, ji as ComboRow, Sn as Dialog, Vn as Dropdown, Mi as EntryRow, ei as ExpanderRow, ke as Footer, $r as Frame, Ue as GNOME_BREAKPOINTS, De as HeaderBar, I as Icon, ii as InlineViewSwitcher, ai as InlineViewSwitcherItem, ar as Link, Zr as LinkedGroup, Ji as NavigationPage, er as NavigationSplitView, Yi as NavigationView, tr as OverlaySplitView, Pi as PasswordEntryRow, Zn as Popover, Ba as PreferencesDialog, ya as PreferencesGroup, xa as PreferencesPage, me as ProgressBar, fe as RadioButton, Be as SearchBar, ae as Separator, pa as ShortcutLabel, Ir as ShortcutsDialog, pt as Sidebar, lt as SidebarCollapsedContext, yt as SidebarItem, mt as SidebarSection, Kn as Slider, Yr as Spacer, Ct as SpinButton, Li as SpinRow, N as Spinner, Kr as SplitButton, He as StatusPage, se as Switch, si as SwitchRow, wt as TabBar, Tt as TabItem, Et as TabPanel, D as Text, ue as TextField, Va as Timeline, Ht as Toast, Ut as Toaster, lr as ToggleGroup, ur as ToggleGroupItem, Jr as Toolbar, ha as ToolbarView, vt as Tooltip, jt as ViewSwitcher, rr as ViewSwitcherBar, Mt as ViewSwitcherItem, Br as ViewSwitcherSidebar, Vr as ViewSwitcherSidebarItem, _a as WindowTitle, pr as WrapBox, We as useBreakpoint, qi as useNavigation, ut as useSidebarCollapsed };
4169
4292
 
4170
4293
  //# sourceMappingURL=index.js.map