@duro-app/ui 2.0.1 → 3.0.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.
Files changed (82) hide show
  1. package/dist/components/ActionBar/ActionBar.stories.d.ts.map +1 -1
  2. package/dist/components/Alert/Alert.stories.d.ts.map +1 -1
  3. package/dist/components/Badge/Badge.stories.d.ts.map +1 -1
  4. package/dist/components/Button/Button.stories.d.ts.map +1 -1
  5. package/dist/components/Callout/Callout.stories.d.ts.map +1 -1
  6. package/dist/components/Card/Card.stories.d.ts.map +1 -1
  7. package/dist/components/Checkbox/Checkbox.stories.d.ts.map +1 -1
  8. package/dist/components/Cluster/Cluster.stories.d.ts.map +1 -1
  9. package/dist/components/ColorMode/ColorMode.stories.d.ts.map +1 -1
  10. package/dist/components/Field/Field.stories.d.ts.map +1 -1
  11. package/dist/components/Grid/Grid.d.ts +8 -1
  12. package/dist/components/Grid/Grid.d.ts.map +1 -1
  13. package/dist/components/Grid/Grid.meta.d.ts.map +1 -1
  14. package/dist/components/Grid/Grid.stories.d.ts +1 -0
  15. package/dist/components/Grid/Grid.stories.d.ts.map +1 -1
  16. package/dist/components/Grid/styles.css.d.ts +6 -0
  17. package/dist/components/Grid/styles.css.d.ts.map +1 -1
  18. package/dist/components/Inline/Inline.stories.d.ts.map +1 -1
  19. package/dist/components/Input/Input.stories.d.ts.map +1 -1
  20. package/dist/components/InputGroup/InputGroup.stories.d.ts.map +1 -1
  21. package/dist/components/LinkButton/LinkButton.stories.d.ts.map +1 -1
  22. package/dist/components/List/List.stories.d.ts.map +1 -1
  23. package/dist/components/PageShell/PageShell.meta.d.ts.map +1 -1
  24. package/dist/components/ScrollArea/ScrollArea.stories.d.ts.map +1 -1
  25. package/dist/components/SideNav/SideNav.meta.d.ts.map +1 -1
  26. package/dist/components/Spinner/Spinner.stories.d.ts.map +1 -1
  27. package/dist/components/Stack/Stack.stories.d.ts.map +1 -1
  28. package/dist/components/StatusIcon/StatusIcon.stories.d.ts.map +1 -1
  29. package/dist/components/Switch/Switch.stories.d.ts.map +1 -1
  30. package/dist/components/Table/Table.stories.d.ts.map +1 -1
  31. package/dist/components/Tabs/Tabs.meta.d.ts.map +1 -1
  32. package/dist/components/Tag/Tag.stories.d.ts.map +1 -1
  33. package/dist/components/Textarea/Textarea.stories.d.ts.map +1 -1
  34. package/dist/components/Toast/Toast.stories.d.ts.map +1 -1
  35. package/dist/components/Toggle/Toggle.stories.d.ts.map +1 -1
  36. package/dist/components/ToggleGroup/ToggleGroup.stories.d.ts.map +1 -1
  37. package/dist/components/Tooltip/Tooltip.stories.d.ts.map +1 -1
  38. package/dist/docs/Spacing.stories.d.ts.map +1 -1
  39. package/dist/docs/Typography.stories.d.ts.map +1 -1
  40. package/dist/docs/helpers.d.ts.map +1 -1
  41. package/dist/index.css +1 -1
  42. package/dist/index.js +209 -197
  43. package/dist/index.js.map +1 -1
  44. package/package.json +2 -2
  45. package/src/components/ActionBar/ActionBar.stories.tsx +7 -5
  46. package/src/components/Alert/Alert.stories.tsx +2 -1
  47. package/src/components/Badge/Badge.stories.tsx +3 -2
  48. package/src/components/Button/Button.stories.tsx +3 -2
  49. package/src/components/Callout/Callout.stories.tsx +2 -1
  50. package/src/components/Card/Card.stories.tsx +5 -3
  51. package/src/components/Checkbox/Checkbox.stories.tsx +2 -1
  52. package/src/components/Cluster/Cluster.stories.tsx +4 -3
  53. package/src/components/ColorMode/ColorMode.stories.tsx +2 -1
  54. package/src/components/Field/Field.stories.tsx +3 -2
  55. package/src/components/Grid/Grid.meta.ts +14 -2
  56. package/src/components/Grid/Grid.stories.tsx +24 -4
  57. package/src/components/Grid/Grid.tsx +21 -6
  58. package/src/components/Grid/styles.css.ts +21 -0
  59. package/src/components/Inline/Inline.stories.tsx +5 -4
  60. package/src/components/Input/Input.stories.tsx +2 -1
  61. package/src/components/InputGroup/InputGroup.stories.tsx +2 -1
  62. package/src/components/LinkButton/LinkButton.stories.tsx +3 -2
  63. package/src/components/List/List.stories.tsx +2 -1
  64. package/src/components/PageShell/PageShell.meta.ts +12 -1
  65. package/src/components/ScrollArea/ScrollArea.stories.tsx +12 -9
  66. package/src/components/SideNav/SideNav.meta.ts +5 -0
  67. package/src/components/Spinner/Spinner.stories.tsx +2 -1
  68. package/src/components/Stack/Stack.stories.tsx +5 -4
  69. package/src/components/StatusIcon/StatusIcon.stories.tsx +11 -4
  70. package/src/components/Switch/Switch.stories.tsx +2 -1
  71. package/src/components/Table/Table.stories.tsx +7 -2
  72. package/src/components/Tabs/Tabs.meta.ts +5 -0
  73. package/src/components/Tag/Tag.stories.tsx +11 -3
  74. package/src/components/Textarea/Textarea.stories.tsx +2 -1
  75. package/src/components/ThemeProvider/ThemeProvider.stories.tsx +9 -9
  76. package/src/components/Toast/Toast.stories.tsx +9 -2
  77. package/src/components/Toggle/Toggle.stories.tsx +2 -1
  78. package/src/components/ToggleGroup/ToggleGroup.stories.tsx +2 -1
  79. package/src/components/Tooltip/Tooltip.stories.tsx +3 -2
  80. package/src/docs/Spacing.stories.tsx +12 -11
  81. package/src/docs/Typography.stories.tsx +4 -3
  82. package/src/docs/helpers.tsx +5 -4
package/dist/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { jsxs as E, jsx as k, Fragment as Y } from "react/jsx-runtime";
2
2
  import { c as W, m as S, d as w, b as ao } from "./Table-P-UHkEqJ.js";
3
- import { M as zr, T as Tr } from "./Table-P-UHkEqJ.js";
4
- import { useRef as F, useSyncExternalStore as Ee, useContext as et, useId as lt, createContext as st, useEffect as O, useState as X, Children as co, isValidElement as uo, useCallback as Ft, useLayoutEffect as pe, useMemo as xo } from "react";
5
- import { useFormContext as ko, useController as po, useForm as go, FormProvider as fo } from "react-hook-form";
3
+ import { M as Tr, T as jr } from "./Table-P-UHkEqJ.js";
4
+ import { useRef as F, useSyncExternalStore as Ee, useContext as et, useId as lt, createContext as st, useEffect as O, useState as X, Children as co, isValidElement as uo, useCallback as Ft, useLayoutEffect as ke, useMemo as xo } from "react";
5
+ import { useFormContext as po, useController as ko, useForm as go, FormProvider as fo } from "react-hook-form";
6
6
  import { effectTsResolver as mo } from "@hookform/resolvers/effect-ts";
7
7
  import { createPortal as ge } from "react-dom";
8
8
  const ho = {
@@ -50,7 +50,7 @@ function bo() {
50
50
  };
51
51
  }
52
52
  const Ve = st(null);
53
- function Di({
53
+ function Ri({
54
54
  children: s
55
55
  }) {
56
56
  const t = F(null);
@@ -247,7 +247,7 @@ function $o(s) {
247
247
  }
248
248
  return null;
249
249
  }
250
- const Ri = $o, So = {
250
+ const Li = $o, So = {
251
251
  "x-circle": /* @__PURE__ */ E(Y, { children: [
252
252
  /* @__PURE__ */ k("circle", { cx: "12", cy: "12", r: "10" }),
253
253
  /* @__PURE__ */ k("line", { x1: "15", y1: "9", x2: "9", y2: "15" }),
@@ -513,7 +513,7 @@ const ne = {
513
513
  function zo(s, t) {
514
514
  return s === !1 ? null : s === void 0 ? /* @__PURE__ */ k(qt, { name: Co[t], size: "md" }) : typeof s == "string" ? /* @__PURE__ */ k(qt, { name: s, size: "md" }) : s;
515
515
  }
516
- function Li(s) {
516
+ function Gi(s) {
517
517
  const t = W.c(11), {
518
518
  variant: o,
519
519
  icon: e,
@@ -593,7 +593,7 @@ const Qt = !1, le = {
593
593
  sm: le.sizeSm,
594
594
  md: le.sizeMd
595
595
  };
596
- function Gi(s) {
596
+ function Bi(s) {
597
597
  const t = W.c(6), {
598
598
  variant: o,
599
599
  size: e,
@@ -779,7 +779,7 @@ const vt = {
779
779
  center: vt.verticalAlignCenter,
780
780
  end: vt.verticalAlignEnd
781
781
  };
782
- function Bi(s) {
782
+ function Ei(s) {
783
783
  const t = W.c(8), {
784
784
  children: o,
785
785
  orientation: e,
@@ -858,7 +858,7 @@ const Ht = {
858
858
  function Ro(s, t) {
859
859
  return s === !1 ? null : s === void 0 ? /* @__PURE__ */ k(qt, { name: Do[t], size: "xl" }) : typeof s == "string" ? /* @__PURE__ */ k(qt, { name: s, size: "xl" }) : s;
860
860
  }
861
- function Ei(s) {
861
+ function Vi(s) {
862
862
  const t = W.c(14), {
863
863
  variant: o,
864
864
  icon: e,
@@ -942,7 +942,7 @@ const _t = {
942
942
  compact: _t.sizeCompact,
943
943
  full: _t.sizeFull
944
944
  };
945
- function Vi(s) {
945
+ function Ai(s) {
946
946
  const t = W.c(10), {
947
947
  variant: o,
948
948
  size: e,
@@ -1151,7 +1151,7 @@ function Vo(s) {
1151
1151
  let f;
1152
1152
  return t[6] !== n || t[7] !== d || t[8] !== c || t[9] !== u || t[10] !== o ? (f = /* @__PURE__ */ k(Go, { value: o, checked: c, disabled: u, onChange: d, children: n }), t[6] = n, t[7] = d, t[8] = c, t[9] = u, t[10] = o, t[11] = f) : f = t[11], f;
1153
1153
  }
1154
- const Ai = {
1154
+ const qi = {
1155
1155
  Root: Eo,
1156
1156
  Item: Vo
1157
1157
  }, me = st(null);
@@ -1185,7 +1185,7 @@ const de = {
1185
1185
  $$css: "ColorInput/styles.css.ts:36"
1186
1186
  }
1187
1187
  };
1188
- function qi(s) {
1188
+ function Pi(s) {
1189
1189
  const t = W.c(19), {
1190
1190
  value: o,
1191
1191
  defaultValue: e,
@@ -1734,7 +1734,7 @@ function Zo(s) {
1734
1734
  children: i
1735
1735
  } = s, x = n === void 0 ? !1 : n, c = lt(), {
1736
1736
  control: u
1737
- } = ko();
1737
+ } = po();
1738
1738
  let p;
1739
1739
  t[0] !== u || t[1] !== o ? (p = {
1740
1740
  control: u,
@@ -1743,7 +1743,7 @@ function Zo(s) {
1743
1743
  const {
1744
1744
  field: d,
1745
1745
  fieldState: f
1746
- } = po(p), g = x || !!f.error, m = l ?? e.disabled, b = a ?? e.labelPosition, y = e.necessityIndicator, h = `${c}-control`, v = `${c}-description`, $ = `${c}-error`;
1746
+ } = ko(p), g = x || !!f.error, m = l ?? e.disabled, b = a ?? e.labelPosition, y = e.necessityIndicator, h = `${c}-control`, v = `${c}-description`, $ = `${c}-error`;
1747
1747
  let z;
1748
1748
  t[3] !== d.name || t[4] !== d.onBlur || t[5] !== d.onChange || t[6] !== d.ref || t[7] !== d.value ? (z = {
1749
1749
  value: d.value,
@@ -1857,7 +1857,7 @@ const je = {
1857
1857
  Description: ts,
1858
1858
  Error: es
1859
1859
  };
1860
- function Pi(s) {
1860
+ function Ni(s) {
1861
1861
  const t = W.c(36), {
1862
1862
  open: o,
1863
1863
  onOpenChange: e,
@@ -2221,7 +2221,7 @@ function ds(s) {
2221
2221
  let a;
2222
2222
  return t[4] !== n || t[5] !== r ? (a = /* @__PURE__ */ k("button", { "data-element-src": "DetailPanel/DetailPanel.tsx:293", onClick: r, "aria-label": n, ...S(w.button, ot.closeButton), type: "button", children: l }), t[4] = n, t[5] = r, t[6] = a) : a = t[6], a;
2223
2223
  }
2224
- const Ni = {
2224
+ const Oi = {
2225
2225
  Root: os,
2226
2226
  Content: is,
2227
2227
  Header: rs,
@@ -2453,8 +2453,8 @@ const Ni = {
2453
2453
  "display-k1xSpc": "display-x3nfvp2",
2454
2454
  $$css: "Drawer/styles.css.ts:248"
2455
2455
  }
2456
- }, us = 0.3, xs = 0.5, ue = 160, ks = 12;
2457
- function ps(s) {
2456
+ }, us = 0.3, xs = 0.5, ue = 160, ps = 12;
2457
+ function ks(s) {
2458
2458
  const t = W.c(26), {
2459
2459
  anchor: o,
2460
2460
  enabled: e,
@@ -2494,7 +2494,7 @@ function ps(s) {
2494
2494
  const C = v.closest("[data-drawer-viewport]")?.previousElementSibling;
2495
2495
  C && (C.style.opacity = String(Math.max(0, 1 - z)));
2496
2496
  } else {
2497
- const z = Math.abs(h), C = z / (z + $ * 0.5) * ks, T = Math.round(C);
2497
+ const z = Math.abs(h), C = z / (z + $ * 0.5) * ps, T = Math.round(C);
2498
2498
  v.style.transform = "", v.style.boxShadow = T > 0 ? `0 0 ${T * 2}px ${T}px rgba(0, 0, 0, 0.15)` : "";
2499
2499
  }
2500
2500
  }, t[4] = o, t[5] = i, t[6] = u) : u = t[6];
@@ -2725,7 +2725,7 @@ function $s(s) {
2725
2725
  enabled: y,
2726
2726
  onDismiss: p,
2727
2727
  panelRef: g
2728
- }, t[3] = i, t[4] = g, t[5] = p, t[6] = y, t[7] = h) : h = t[7], ps(h), !r)
2728
+ }, t[3] = i, t[4] = g, t[5] = p, t[6] = y, t[7] = h) : h = t[7], ks(h), !r)
2729
2729
  return null;
2730
2730
  const v = i === "left" || i === "right", $ = l && Z.backdropClosing, z = l && Me[a], C = !l && Z.backdropOpen;
2731
2731
  let T;
@@ -2803,7 +2803,7 @@ function js(s) {
2803
2803
  let a;
2804
2804
  return t[4] !== n || t[5] !== r ? (a = /* @__PURE__ */ k("button", { "data-element-src": "Drawer/Drawer.tsx:351", onClick: r, "aria-label": n, ...S(w.button, Z.closeButton), type: "button", children: l }), t[4] = n, t[5] = r, t[6] = a) : a = t[6], a;
2805
2805
  }
2806
- const Oi = {
2806
+ const Fi = {
2807
2807
  Root: ms,
2808
2808
  Trigger: hs,
2809
2809
  Portal: $s,
@@ -2836,7 +2836,7 @@ const Oi = {
2836
2836
  $$css: "EmptyState/styles.css.ts:22"
2837
2837
  }
2838
2838
  };
2839
- function Fi(s) {
2839
+ function Hi(s) {
2840
2840
  const t = W.c(8), {
2841
2841
  message: o,
2842
2842
  icon: e,
@@ -3004,7 +3004,7 @@ const Ke = {
3004
3004
  center: re.alignCenter,
3005
3005
  end: re.alignEnd
3006
3006
  };
3007
- function Hi(s) {
3007
+ function Xi(s) {
3008
3008
  const t = W.c(22), {
3009
3009
  level: o,
3010
3010
  variant: e,
@@ -3188,7 +3188,7 @@ function Vs(s) {
3188
3188
  let e;
3189
3189
  return t[0] !== o ? (e = /* @__PURE__ */ k("div", { "data-element-src": "List/List.tsx:98", role: "listitem", ...S(w.div, Gt.empty), children: o }), t[0] = o, t[1] = e) : e = t[1], e;
3190
3190
  }
3191
- const Xi = {
3191
+ const Ki = {
3192
3192
  Root: Ds,
3193
3193
  Item: Rs,
3194
3194
  Content: Ls,
@@ -3203,7 +3203,7 @@ const Xi = {
3203
3203
  $$css: "Form/Form.tsx:28"
3204
3204
  }
3205
3205
  };
3206
- function Ki(s) {
3206
+ function Yi(s) {
3207
3207
  const t = W.c(36), {
3208
3208
  schema: o,
3209
3209
  defaultValues: e,
@@ -3346,7 +3346,7 @@ function Ns(s) {
3346
3346
  let e;
3347
3347
  return t[0] !== o ? (e = /* @__PURE__ */ k("span", { "data-element-src": "Fieldset/Fieldset.tsx:44", ...S(w.span, Dt.legend), children: o }), t[0] = o, t[1] = e) : e = t[1], e;
3348
3348
  }
3349
- const Yi = {
3349
+ const Ui = {
3350
3350
  Root: Ps,
3351
3351
  Legend: Ns
3352
3352
  }, Yt = {
@@ -3444,7 +3444,7 @@ function Hs(s) {
3444
3444
  let f;
3445
3445
  return t[12] !== l || t[13] !== d ? (f = /* @__PURE__ */ k("span", { "data-element-src": "InputGroup/InputGroup.tsx:56", ...S(w.span, d), children: l }), t[12] = l, t[13] = d, t[14] = f) : f = t[14], f;
3446
3446
  }
3447
- const Ui = {
3447
+ const _i = {
3448
3448
  Root: Os,
3449
3449
  Addon: Hs
3450
3450
  }, te = {
@@ -3501,7 +3501,7 @@ const Ui = {
3501
3501
  default: te.sizeDefault,
3502
3502
  small: te.sizeSmall
3503
3503
  };
3504
- function _i(s) {
3504
+ function Ji(s) {
3505
3505
  const t = W.c(10), {
3506
3506
  href: o,
3507
3507
  variant: e,
@@ -3608,7 +3608,7 @@ function _s(s) {
3608
3608
  let e;
3609
3609
  return t[0] !== o ? (e = /* @__PURE__ */ k("div", { "data-element-src": "Panel/Panel.tsx:38", ...S(w.div, Zt.footer), children: o }), t[0] = o, t[1] = e) : e = t[1], e;
3610
3610
  }
3611
- const Ji = {
3611
+ const Zi = {
3612
3612
  Root: Ks,
3613
3613
  Header: Ys,
3614
3614
  Body: Us,
@@ -3751,7 +3751,7 @@ function Qs(s) {
3751
3751
  $
3752
3752
  ] }), t[23] = p, t[24] = v, t[25] = $, t[26] = f, t[27] = m, t[28] = z) : z = t[28], z;
3753
3753
  }
3754
- const Zi = {
3754
+ const Qi = {
3755
3755
  Root: Zs,
3756
3756
  Item: Qs
3757
3757
  }, St = {
@@ -3991,7 +3991,7 @@ function rn(s) {
3991
3991
  let R;
3992
3992
  return t[16] !== T || t[17] !== I || t[18] !== D ? (R = /* @__PURE__ */ k("div", { "data-element-src": "ScrollArea/ScrollArea.tsx:179", onPointerDown: T, onPointerMove: I, onPointerUp: L, ...S(w.div, D) }), t[16] = T, t[17] = I, t[18] = D, t[19] = R) : R = t[19], R;
3993
3993
  }
3994
- const Qi = {
3994
+ const tr = {
3995
3995
  Root: en,
3996
3996
  Viewport: on,
3997
3997
  Content: sn,
@@ -4171,10 +4171,10 @@ function ln(s) {
4171
4171
  b(!0);
4172
4172
  const J = M.current, tt = D.current;
4173
4173
  let ct = null;
4174
- for (const ut of tt) {
4175
- const xt = J.get(ut);
4176
- if (xt && xt.value === i) {
4177
- ct = ut;
4174
+ for (const xt of tt) {
4175
+ const pt = J.get(xt);
4176
+ if (pt && pt.value === i) {
4177
+ ct = xt;
4178
4178
  break;
4179
4179
  }
4180
4180
  }
@@ -4202,11 +4202,11 @@ function ln(s) {
4202
4202
  value: tt,
4203
4203
  element: ct
4204
4204
  });
4205
- const ut = M.current, xt = [...ut.keys()];
4206
- return xt.sort((yt, Et) => {
4207
- const $e = ut.get(yt)?.element, Se = ut.get(Et)?.element;
4205
+ const xt = M.current, pt = [...xt.keys()];
4206
+ return pt.sort((yt, Et) => {
4207
+ const $e = xt.get(yt)?.element, Se = xt.get(Et)?.element;
4208
4208
  return !$e || !Se ? 0 : $e.compareDocumentPosition(Se) & Node.DOCUMENT_POSITION_FOLLOWING ? -1 : 1;
4209
- }), D.current = xt, () => {
4209
+ }), D.current = pt, () => {
4210
4210
  M.current.delete(J), D.current = D.current.filter((yt) => yt !== J);
4211
4211
  };
4212
4212
  }, t[19] = P) : P = t[19];
@@ -4225,38 +4225,38 @@ function ln(s) {
4225
4225
  const J = T.current;
4226
4226
  if (!J || !m)
4227
4227
  return;
4228
- const tt = function(ut) {
4229
- const xt = Q();
4230
- if (!(xt.length === 0 && ut.key !== "Escape" && ut.key !== "Tab"))
4231
- t: switch (ut.key) {
4228
+ const tt = function(xt) {
4229
+ const pt = Q();
4230
+ if (!(pt.length === 0 && xt.key !== "Escape" && xt.key !== "Tab"))
4231
+ t: switch (xt.key) {
4232
4232
  case "ArrowDown": {
4233
- if (ut.preventDefault(), !m) {
4233
+ if (xt.preventDefault(), !m) {
4234
4234
  b(!0);
4235
4235
  return;
4236
4236
  }
4237
4237
  z((yt) => {
4238
- const Et = yt ? xt.indexOf(yt) : -1;
4239
- return xt[(Et + 1) % xt.length] ?? null;
4238
+ const Et = yt ? pt.indexOf(yt) : -1;
4239
+ return pt[(Et + 1) % pt.length] ?? null;
4240
4240
  });
4241
4241
  break t;
4242
4242
  }
4243
4243
  case "ArrowUp": {
4244
- ut.preventDefault(), z((yt) => {
4245
- const Et = yt ? xt.indexOf(yt) : 0;
4246
- return xt[(Et - 1 + xt.length) % xt.length] ?? null;
4244
+ xt.preventDefault(), z((yt) => {
4245
+ const Et = yt ? pt.indexOf(yt) : 0;
4246
+ return pt[(Et - 1 + pt.length) % pt.length] ?? null;
4247
4247
  });
4248
4248
  break t;
4249
4249
  }
4250
4250
  case "Home": {
4251
- ut.preventDefault(), z(xt[0] ?? null);
4251
+ xt.preventDefault(), z(pt[0] ?? null);
4252
4252
  break t;
4253
4253
  }
4254
4254
  case "End": {
4255
- ut.preventDefault(), z(xt[xt.length - 1] ?? null);
4255
+ xt.preventDefault(), z(pt[pt.length - 1] ?? null);
4256
4256
  break t;
4257
4257
  }
4258
4258
  case "Enter": {
4259
- ut.preventDefault(), z((yt) => {
4259
+ xt.preventDefault(), z((yt) => {
4260
4260
  if (yt) {
4261
4261
  const Et = M.current.get(yt);
4262
4262
  Et && A(Et.value);
@@ -4267,7 +4267,7 @@ function ln(s) {
4267
4267
  break t;
4268
4268
  }
4269
4269
  case "Escape": {
4270
- ut.preventDefault(), G(), j.current?.focus();
4270
+ xt.preventDefault(), G(), j.current?.focus();
4271
4271
  break t;
4272
4272
  }
4273
4273
  case "Tab":
@@ -4356,7 +4356,7 @@ const an = {
4356
4356
  function ye() {
4357
4357
  return et(Ze);
4358
4358
  }
4359
- function kn(s) {
4359
+ function pn(s) {
4360
4360
  const t = W.c(11), {
4361
4361
  theme: o,
4362
4362
  children: e
@@ -4374,7 +4374,7 @@ function kn(s) {
4374
4374
  d
4375
4375
  ] }), t[7] = p, t[8] = n, t[9] = x, t[10] = f) : f = t[10], f;
4376
4376
  }
4377
- function pn(s) {
4377
+ function kn(s) {
4378
4378
  const t = W.c(17), {
4379
4379
  name: o,
4380
4380
  defaultValue: e,
@@ -4496,7 +4496,7 @@ function mn(s) {
4496
4496
  return m(), window.addEventListener("resize", m), window.addEventListener("scroll", m, !0), () => {
4497
4497
  window.removeEventListener("resize", m), window.removeEventListener("scroll", m, !0);
4498
4498
  };
4499
- }, c = [e, r], t[0] = e, t[1] = r, t[2] = x, t[3] = c) : (x = t[2], c = t[3]), pe(x, c), !e || !a)
4499
+ }, c = [e, r], t[0] = e, t[1] = r, t[2] = x, t[3] = c) : (x = t[2], c = t[3]), ke(x, c), !e || !a)
4500
4500
  return null;
4501
4501
  let u;
4502
4502
  t[4] !== a.left || t[5] !== a.top || t[6] !== a.width ? (u = zt.popupPosition(a.top, a.left, a.width), t[4] = a.left, t[5] = a.top, t[6] = a.width, t[7] = u) : u = t[7];
@@ -4570,8 +4570,8 @@ function bn(s) {
4570
4570
  let i;
4571
4571
  return t[0] !== o ? (i = /* @__PURE__ */ k("div", { "data-element-src": "Combobox/Combobox.tsx:264", ...S(w.div, zt.empty), children: o }), t[0] = o, t[1] = i) : i = t[1], i;
4572
4572
  }
4573
- const tr = {
4574
- Root: pn,
4573
+ const er = {
4574
+ Root: kn,
4575
4575
  Input: gn,
4576
4576
  Trigger: fn,
4577
4577
  Popup: mn,
@@ -4928,7 +4928,7 @@ function zn(s) {
4928
4928
  return $(), window.addEventListener("resize", $), window.addEventListener("scroll", $, !0), () => {
4929
4929
  window.removeEventListener("resize", $), window.removeEventListener("scroll", $, !0);
4930
4930
  };
4931
- }, u = [e, l], t[0] = e, t[1] = l, t[2] = c, t[3] = u) : (c = t[2], u = t[3]), pe(c, u);
4931
+ }, u = [e, l], t[0] = e, t[1] = l, t[2] = c, t[3] = u) : (c = t[2], u = t[3]), ke(c, u);
4932
4932
  let p;
4933
4933
  t[4] !== n || t[5] !== e ? (p = e && /* @__PURE__ */ k("div", { "data-element-src": "Select/Select.tsx:146", ...S(w.div, wt.backdrop), onClick: n }), t[4] = n, t[5] = e, t[6] = p) : p = t[6];
4934
4934
  const d = !e, f = (!e || !i) && wt.hidden;
@@ -4994,7 +4994,7 @@ function jn(s) {
4994
4994
  let e;
4995
4995
  return t[0] !== o ? (e = /* @__PURE__ */ k("span", { "data-element-src": "Select/Select.tsx:228", ...S(w.span), children: o }), t[0] = o, t[1] = e) : e = t[1], e;
4996
4996
  }
4997
- const er = {
4997
+ const or = {
4998
4998
  Root: $n,
4999
4999
  Trigger: Sn,
5000
5000
  Value: wn,
@@ -5278,7 +5278,7 @@ function Dn(s) {
5278
5278
  y
5279
5279
  ] }), t[15] = y, t[16] = u, t[17] = d, t[18] = f, t[19] = m, t[20] = b, t[21] = o, t[22] = h) : h = t[22], h;
5280
5280
  }
5281
- const or = {
5281
+ const sr = {
5282
5282
  Root: In,
5283
5283
  Group: Mn,
5284
5284
  Section: Wn,
@@ -5332,7 +5332,7 @@ const or = {
5332
5332
  md: Jt.md,
5333
5333
  lg: Jt.lg
5334
5334
  };
5335
- function sr(s) {
5335
+ function nr(s) {
5336
5336
  const t = W.c(7), {
5337
5337
  size: o,
5338
5338
  label: e
@@ -5503,7 +5503,7 @@ const Bn = {
5503
5503
  error: Ct.iconError,
5504
5504
  info: Ct.iconInfo
5505
5505
  }, oo = st(null);
5506
- function nr() {
5506
+ function ir() {
5507
5507
  const s = et(oo);
5508
5508
  if (!s)
5509
5509
  throw new Error("useToast must be used within a <ToastProvider>");
@@ -5562,7 +5562,7 @@ function Vn(s) {
5562
5562
  j
5563
5563
  ] }), t[29] = h, t[30] = z, t[31] = j, t[32] = u, t[33] = p, t[34] = f, t[35] = I) : I = t[35], I;
5564
5564
  }
5565
- function ir({
5565
+ function rr({
5566
5566
  children: s
5567
5567
  }) {
5568
5568
  const t = F(null);
@@ -5605,7 +5605,7 @@ const De = {
5605
5605
  $$css: "StatusIcon/styles.css.ts:24"
5606
5606
  }
5607
5607
  };
5608
- function rr(s) {
5608
+ function lr(s) {
5609
5609
  const t = W.c(8), {
5610
5610
  name: o,
5611
5611
  size: e,
@@ -5729,7 +5729,7 @@ const It = {
5729
5729
  sm: It.removableSm,
5730
5730
  md: It.removableMd
5731
5731
  };
5732
- function lr({
5732
+ function ar({
5733
5733
  value: s,
5734
5734
  variant: t = "default",
5735
5735
  size: o = "md",
@@ -5963,7 +5963,7 @@ function Fn({
5963
5963
  };
5964
5964
  }, [t]), /* @__PURE__ */ k("input", { "data-element-src": "TagGroup/TagGroup.tsx:282", ref: n, type: "text", value: o, onChange: (l) => e(l.target.value), placeholder: s, disabled: t?.disabled, ...S(w.input, At.input), dir: "auto" });
5965
5965
  }
5966
- const ar = {
5966
+ const cr = {
5967
5967
  Root: Nn,
5968
5968
  List: On,
5969
5969
  Input: Fn
@@ -6202,7 +6202,7 @@ function Un(s) {
6202
6202
  z();
6203
6203
  const C = new ResizeObserver(z);
6204
6204
  return C.observe($), C.observe(v), () => C.disconnect();
6205
- }, d = [n, e, i], t[0] = n, t[1] = e, t[2] = i, t[3] = p, t[4] = d) : (p = t[3], d = t[4]), pe(p, d);
6205
+ }, d = [n, e, i], t[0] = n, t[1] = e, t[2] = i, t[3] = p, t[4] = d) : (p = t[3], d = t[4]), ke(p, d);
6206
6206
  let f, g;
6207
6207
  t[5] !== n || t[6] !== r || t[7] !== a || t[8] !== e || t[9] !== l ? (f = () => {
6208
6208
  const v = x.current;
@@ -6312,7 +6312,7 @@ function Jn(s) {
6312
6312
  let i;
6313
6313
  return t[2] !== e || t[3] !== a ? (i = /* @__PURE__ */ k("div", { "data-element-src": "Tabs/Tabs.tsx:245", role: "tabpanel", ...S(w.div, a), children: e }), t[2] = e, t[3] = a, t[4] = i) : i = t[4], i;
6314
6314
  }
6315
- const cr = {
6315
+ const dr = {
6316
6316
  Root: Yn,
6317
6317
  List: Un,
6318
6318
  Tab: _n,
@@ -6351,7 +6351,7 @@ const cr = {
6351
6351
  $$css: "Textarea/styles.css.ts:50"
6352
6352
  }
6353
6353
  };
6354
- function dr(s) {
6354
+ function ur(s) {
6355
6355
  const t = W.c(22), {
6356
6356
  variant: o,
6357
6357
  name: e,
@@ -6436,7 +6436,7 @@ function ii(s, t) {
6436
6436
  } catch {
6437
6437
  }
6438
6438
  }
6439
- function ur(s) {
6439
+ function xr(s) {
6440
6440
  const t = W.c(29), {
6441
6441
  children: o,
6442
6442
  defaultPreference: e,
@@ -6485,11 +6485,11 @@ function ur(s) {
6485
6485
  }, t[16] = M, t[17] = u, t[18] = m, t[19] = v, t[20] = j, t[21] = L) : L = t[21];
6486
6486
  const D = L;
6487
6487
  let R;
6488
- t[22] !== d || t[23] !== o || t[24] !== j ? (R = d ? /* @__PURE__ */ k(kn, { theme: j, children: o }) : o, t[22] = d, t[23] = o, t[24] = j, t[25] = R) : R = t[25];
6488
+ t[22] !== d || t[23] !== o || t[24] !== j ? (R = d ? /* @__PURE__ */ k(pn, { theme: j, children: o }) : o, t[22] = d, t[23] = o, t[24] = j, t[25] = R) : R = t[25];
6489
6489
  let G;
6490
6490
  return t[26] !== R || t[27] !== D ? (G = /* @__PURE__ */ k(io.Provider, { value: D, children: R }), t[26] = R, t[27] = D, t[28] = G) : G = t[28], G;
6491
6491
  }
6492
- function xr(s) {
6492
+ function pr(s) {
6493
6493
  const t = W.c(7), {
6494
6494
  size: o,
6495
6495
  "aria-label": e
@@ -6663,7 +6663,7 @@ const Ot = {
6663
6663
  default: Ot.sizeDefault,
6664
6664
  small: Ot.sizeSmall
6665
6665
  };
6666
- function pr(s) {
6666
+ function gr(s) {
6667
6667
  const t = W.c(23), {
6668
6668
  pressed: o,
6669
6669
  defaultPressed: e,
@@ -6702,7 +6702,7 @@ const Ge = {
6702
6702
  $$css: "ToggleGroup/styles.css.ts:14"
6703
6703
  }
6704
6704
  };
6705
- function gr(s) {
6705
+ function fr(s) {
6706
6706
  const t = W.c(21), {
6707
6707
  value: o,
6708
6708
  defaultValue: e,
@@ -6739,7 +6739,7 @@ function gr(s) {
6739
6739
  let T;
6740
6740
  return t[18] !== C || t[19] !== v ? (T = /* @__PURE__ */ k(ro.Provider, { value: v, children: C }), t[18] = C, t[19] = v, t[20] = T) : T = t[20], T;
6741
6741
  }
6742
- const ke = {
6742
+ const pe = {
6743
6743
  root: {
6744
6744
  "position-kVAEAm": "position-x1n2onr6",
6745
6745
  "display-k1xSpc": "display-x3nfvp2",
@@ -6827,9 +6827,9 @@ function ui(s) {
6827
6827
  placement: l
6828
6828
  }, t[3] = i, t[4] = l, t[5] = d, t[6] = c, t[7] = m) : m = t[7];
6829
6829
  let b;
6830
- t[8] !== e || t[9] !== i || t[10] !== l || t[11] !== c ? (b = i && /* @__PURE__ */ k("div", { "data-element-src": "Tooltip/Tooltip.tsx:63", id: c, role: "tooltip", ...S(w.div, ke.popup, ke[l]), children: e }), t[8] = e, t[9] = i, t[10] = l, t[11] = c, t[12] = b) : b = t[12];
6830
+ t[8] !== e || t[9] !== i || t[10] !== l || t[11] !== c ? (b = i && /* @__PURE__ */ k("div", { "data-element-src": "Tooltip/Tooltip.tsx:63", id: c, role: "tooltip", ...S(w.div, pe.popup, pe[l]), children: e }), t[8] = e, t[9] = i, t[10] = l, t[11] = c, t[12] = b) : b = t[12];
6831
6831
  let y;
6832
- t[13] !== o || t[14] !== b ? (y = /* @__PURE__ */ E("div", { "data-element-src": "Tooltip/Tooltip.tsx:60", ...S(w.div, ke.root), children: [
6832
+ t[13] !== o || t[14] !== b ? (y = /* @__PURE__ */ E("div", { "data-element-src": "Tooltip/Tooltip.tsx:60", ...S(w.div, pe.root), children: [
6833
6833
  o,
6834
6834
  b
6835
6835
  ] }), t[13] = o, t[14] = b, t[15] = y) : y = t[15];
@@ -6848,7 +6848,7 @@ function xi(s) {
6848
6848
  let i;
6849
6849
  return t[0] !== o || t[1] !== r || t[2] !== n || t[3] !== a ? (i = /* @__PURE__ */ k("div", { "data-element-src": "Tooltip/Tooltip.tsx:82", onPointerEnter: n, onPointerLeave: r, onFocus: n, onBlur: r, "aria-describedby": a, ...S(w.div), children: o }), t[0] = o, t[1] = r, t[2] = n, t[3] = a, t[4] = i) : i = t[4], i;
6850
6850
  }
6851
- const fr = {
6851
+ const mr = {
6852
6852
  Root: ui,
6853
6853
  Trigger: xi
6854
6854
  }, Vt = {
@@ -6919,7 +6919,7 @@ const fr = {
6919
6919
  $$css: "Switch/styles.css.ts:65"
6920
6920
  }
6921
6921
  };
6922
- function mr(s) {
6922
+ function hr(s) {
6923
6923
  const t = W.c(31), {
6924
6924
  checked: o,
6925
6925
  defaultChecked: e,
@@ -7011,7 +7011,7 @@ const bt = {
7011
7011
  "gap-kOIVth": "gap-x1a8amag",
7012
7012
  $$css: "Stack/styles.css.ts:20"
7013
7013
  }
7014
- }, ki = {
7014
+ }, pi = {
7015
7015
  xs: bt.gapXs,
7016
7016
  sm: bt.gapSm,
7017
7017
  ms: bt.gapMs,
@@ -7020,18 +7020,18 @@ const bt = {
7020
7020
  xl: bt.gapXl,
7021
7021
  xxl: bt.gapXxl,
7022
7022
  xxxl: bt.gapXxxl
7023
- }, pi = {
7023
+ }, ki = {
7024
7024
  start: bt.alignStart,
7025
7025
  center: bt.alignCenter,
7026
7026
  end: bt.alignEnd,
7027
7027
  stretch: bt.alignStretch
7028
7028
  };
7029
- function hr(s) {
7029
+ function yr(s) {
7030
7030
  const t = W.c(6), {
7031
7031
  gap: o,
7032
7032
  align: e,
7033
7033
  children: n
7034
- } = s, r = o === void 0 ? "md" : o, l = e === void 0 ? "stretch" : e, a = ki[r], i = pi[l];
7034
+ } = s, r = o === void 0 ? "md" : o, l = e === void 0 ? "stretch" : e, a = pi[r], i = ki[l];
7035
7035
  let x;
7036
7036
  t[0] !== a || t[1] !== i ? (x = [bt.base, a, i], t[0] = a, t[1] = i, t[2] = x) : x = t[2];
7037
7037
  let c;
@@ -7133,7 +7133,7 @@ const dt = {
7133
7133
  end: dt.justifyEnd,
7134
7134
  between: dt.justifyBetween
7135
7135
  };
7136
- function yr(s) {
7136
+ function br(s) {
7137
7137
  const t = W.c(7), {
7138
7138
  gap: o,
7139
7139
  align: e,
@@ -7145,7 +7145,7 @@ function yr(s) {
7145
7145
  let d;
7146
7146
  return t[4] !== r || t[5] !== p ? (d = /* @__PURE__ */ k("div", { "data-element-src": "Inline/Inline.tsx:41", ...S(w.div, p), children: r }), t[4] = r, t[5] = p, t[6] = d) : d = t[6], d;
7147
7147
  }
7148
- const pt = {
7148
+ const gt = {
7149
7149
  base: {
7150
7150
  "display-k1xSpc": "display-x78zum5",
7151
7151
  "flexDirection-kXwgrk": "flexDirection-x1q0g3np",
@@ -7213,25 +7213,25 @@ const pt = {
7213
7213
  $$css: "Cluster/styles.css.ts:24"
7214
7214
  }
7215
7215
  }, hi = {
7216
- xs: pt.gapXs,
7217
- sm: pt.gapSm,
7218
- ms: pt.gapMs,
7219
- md: pt.gapMd,
7220
- lg: pt.gapLg,
7221
- xl: pt.gapXl,
7222
- xxl: pt.gapXxl,
7223
- xxxl: pt.gapXxxl
7216
+ xs: gt.gapXs,
7217
+ sm: gt.gapSm,
7218
+ ms: gt.gapMs,
7219
+ md: gt.gapMd,
7220
+ lg: gt.gapLg,
7221
+ xl: gt.gapXl,
7222
+ xxl: gt.gapXxl,
7223
+ xxxl: gt.gapXxxl
7224
7224
  }, yi = {
7225
- start: pt.alignStart,
7226
- center: pt.alignCenter,
7227
- end: pt.alignEnd
7225
+ start: gt.alignStart,
7226
+ center: gt.alignCenter,
7227
+ end: gt.alignEnd
7228
7228
  }, bi = {
7229
- start: pt.justifyStart,
7230
- center: pt.justifyCenter,
7231
- end: pt.justifyEnd,
7232
- between: pt.justifyBetween
7229
+ start: gt.justifyStart,
7230
+ center: gt.justifyCenter,
7231
+ end: gt.justifyEnd,
7232
+ between: gt.justifyBetween
7233
7233
  };
7234
- function br(s) {
7234
+ function vr(s) {
7235
7235
  const t = W.c(7), {
7236
7236
  gap: o,
7237
7237
  align: e,
@@ -7239,108 +7239,120 @@ function br(s) {
7239
7239
  children: r
7240
7240
  } = s, l = o === void 0 ? "sm" : o, a = e === void 0 ? "start" : e, i = n === void 0 ? "start" : n, x = hi[l], c = yi[a], u = bi[i];
7241
7241
  let p;
7242
- t[0] !== x || t[1] !== c || t[2] !== u ? (p = [pt.base, x, c, u], t[0] = x, t[1] = c, t[2] = u, t[3] = p) : p = t[3];
7242
+ t[0] !== x || t[1] !== c || t[2] !== u ? (p = [gt.base, x, c, u], t[0] = x, t[1] = c, t[2] = u, t[3] = p) : p = t[3];
7243
7243
  let d;
7244
7244
  return t[4] !== r || t[5] !== p ? (d = /* @__PURE__ */ k("div", { "data-element-src": "Cluster/Cluster.tsx:39", ...S(w.div, p), children: r }), t[4] = r, t[5] = p, t[6] = d) : d = t[6], d;
7245
7245
  }
7246
7246
  const vi = {
7247
7247
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-xqketvx",
7248
- $$css: "Grid/styles.css.ts:14"
7249
- }, gt = {
7248
+ $$css: "Grid/styles.css.ts:19"
7249
+ }, ut = {
7250
7250
  base: {
7251
7251
  "display-k1xSpc": "display-xrvj5dj",
7252
- $$css: "Grid/styles.css.ts:5"
7252
+ $$css: "Grid/styles.css.ts:10"
7253
7253
  },
7254
7254
  col1: {
7255
7255
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-x1y6fwsi",
7256
- $$css: "Grid/styles.css.ts:8"
7256
+ $$css: "Grid/styles.css.ts:13"
7257
7257
  },
7258
7258
  col2: {
7259
7259
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-x1p9eum2",
7260
- $$css: "Grid/styles.css.ts:9"
7260
+ $$css: "Grid/styles.css.ts:14"
7261
7261
  },
7262
7262
  col3: {
7263
7263
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-x1wlfl8j",
7264
- $$css: "Grid/styles.css.ts:10"
7264
+ $$css: "Grid/styles.css.ts:15"
7265
7265
  },
7266
7266
  col4: {
7267
7267
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-xl501l6",
7268
- $$css: "Grid/styles.css.ts:11"
7268
+ $$css: "Grid/styles.css.ts:16"
7269
7269
  },
7270
7270
  col5: {
7271
7271
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-xkgyxu0",
7272
- $$css: "Grid/styles.css.ts:12"
7272
+ $$css: "Grid/styles.css.ts:17"
7273
7273
  },
7274
7274
  col6: {
7275
7275
  "gridTemplateColumns-kumcoG": "gridTemplateColumns-xu4o1vd",
7276
- $$css: "Grid/styles.css.ts:13"
7276
+ $$css: "Grid/styles.css.ts:18"
7277
7277
  },
7278
7278
  autoFit: (s) => [vi, {
7279
7279
  "--x-gridTemplateColumns": `repeat(auto-fill, minmax(${s}, 1fr))` != null ? `repeat(auto-fill, minmax(${s}, 1fr))` : void 0
7280
7280
  }],
7281
+ split: {
7282
+ "gridTemplateColumns-kumcoG": "gridTemplateColumns-x1y6fwsi gridTemplateColumns-xxiyio7",
7283
+ $$css: "Grid/styles.css.ts:26"
7284
+ },
7285
+ splitWide: {
7286
+ "gridTemplateColumns-kumcoG": "gridTemplateColumns-x1y6fwsi gridTemplateColumns-x1ri1lbn",
7287
+ $$css: "Grid/styles.css.ts:32"
7288
+ },
7281
7289
  gapXs: {
7282
7290
  "gap-kOIVth": "gap-xl5ne8a",
7283
- $$css: "Grid/styles.css.ts:17"
7291
+ $$css: "Grid/styles.css.ts:38"
7284
7292
  },
7285
7293
  gapSm: {
7286
7294
  "gap-kOIVth": "gap-x175yhtj",
7287
- $$css: "Grid/styles.css.ts:18"
7295
+ $$css: "Grid/styles.css.ts:39"
7288
7296
  },
7289
7297
  gapMs: {
7290
7298
  "gap-kOIVth": "gap-x1x2w4m1",
7291
- $$css: "Grid/styles.css.ts:19"
7299
+ $$css: "Grid/styles.css.ts:40"
7292
7300
  },
7293
7301
  gapMd: {
7294
7302
  "gap-kOIVth": "gap-xb6pwsi",
7295
- $$css: "Grid/styles.css.ts:20"
7303
+ $$css: "Grid/styles.css.ts:41"
7296
7304
  },
7297
7305
  gapLg: {
7298
7306
  "gap-kOIVth": "gap-x1038972",
7299
- $$css: "Grid/styles.css.ts:21"
7307
+ $$css: "Grid/styles.css.ts:42"
7300
7308
  },
7301
7309
  gapXl: {
7302
7310
  "gap-kOIVth": "gap-x8w6ti4",
7303
- $$css: "Grid/styles.css.ts:22"
7311
+ $$css: "Grid/styles.css.ts:43"
7304
7312
  },
7305
7313
  gapXxl: {
7306
7314
  "gap-kOIVth": "gap-x6m84cd",
7307
- $$css: "Grid/styles.css.ts:23"
7315
+ $$css: "Grid/styles.css.ts:44"
7308
7316
  },
7309
7317
  gapXxxl: {
7310
7318
  "gap-kOIVth": "gap-x1a8amag",
7311
- $$css: "Grid/styles.css.ts:24"
7319
+ $$css: "Grid/styles.css.ts:45"
7312
7320
  }
7313
7321
  }, $i = {
7314
- xs: gt.gapXs,
7315
- sm: gt.gapSm,
7316
- ms: gt.gapMs,
7317
- md: gt.gapMd,
7318
- lg: gt.gapLg,
7319
- xl: gt.gapXl,
7320
- xxl: gt.gapXxl,
7321
- xxxl: gt.gapXxxl
7322
+ xs: ut.gapXs,
7323
+ sm: ut.gapSm,
7324
+ ms: ut.gapMs,
7325
+ md: ut.gapMd,
7326
+ lg: ut.gapLg,
7327
+ xl: ut.gapXl,
7328
+ xxl: ut.gapXxl,
7329
+ xxxl: ut.gapXxxl
7322
7330
  }, Si = {
7323
- 1: gt.col1,
7324
- 2: gt.col2,
7325
- 3: gt.col3,
7326
- 4: gt.col4,
7327
- 5: gt.col5,
7328
- 6: gt.col6
7331
+ 1: ut.col1,
7332
+ 2: ut.col2,
7333
+ 3: ut.col3,
7334
+ 4: ut.col4,
7335
+ 5: ut.col5,
7336
+ 6: ut.col6
7337
+ }, wi = {
7338
+ split: ut.split,
7339
+ "split-wide": ut.splitWide
7329
7340
  };
7330
- function vr(s) {
7331
- const t = W.c(9), {
7341
+ function $r(s) {
7342
+ const t = W.c(10), {
7332
7343
  gap: o,
7333
7344
  columns: e,
7334
7345
  minColumnWidth: n,
7335
- children: r
7336
- } = s, l = o === void 0 ? "md" : o;
7337
- let a;
7338
- t[0] !== e || t[1] !== n ? (a = n ? gt.autoFit(n) : e ? Si[e] : void 0, t[0] = e, t[1] = n, t[2] = a) : a = t[2];
7339
- const i = a, x = $i[l];
7340
- let c;
7341
- t[3] !== i || t[4] !== x ? (c = [gt.base, x, i], t[3] = i, t[4] = x, t[5] = c) : c = t[5];
7346
+ layout: r,
7347
+ children: l
7348
+ } = s, a = o === void 0 ? "md" : o;
7349
+ let i;
7350
+ t[0] !== e || t[1] !== r || t[2] !== n ? (i = r ? wi[r] : n ? ut.autoFit(n) : e ? Si[e] : void 0, t[0] = e, t[1] = r, t[2] = n, t[3] = i) : i = t[3];
7351
+ const x = i, c = $i[a];
7342
7352
  let u;
7343
- return t[6] !== r || t[7] !== c ? (u = /* @__PURE__ */ k("div", { "data-element-src": "Grid/Grid.tsx:40", ...S(w.div, c), children: r }), t[6] = r, t[7] = c, t[8] = u) : u = t[8], u;
7353
+ t[4] !== x || t[5] !== c ? (u = [ut.base, c, x], t[4] = x, t[5] = c, t[6] = u) : u = t[6];
7354
+ let p;
7355
+ return t[7] !== l || t[8] !== u ? (p = /* @__PURE__ */ k("div", { "data-element-src": "Grid/Grid.tsx:55", ...S(w.div, u), children: l }), t[7] = l, t[8] = u, t[9] = p) : p = t[9], p;
7344
7356
  }
7345
7357
  const $t = {
7346
7358
  root: {
@@ -7389,23 +7401,23 @@ const $t = {
7389
7401
  "paddingBottom-kGO01o": "paddingBottom-x8ouyoa",
7390
7402
  $$css: "PageShell/styles.css.ts:24"
7391
7403
  }
7392
- }, wi = {
7404
+ }, Ci = {
7393
7405
  sm: $t.maxSm,
7394
7406
  md: $t.maxMd,
7395
7407
  lg: $t.maxLg,
7396
7408
  full: null
7397
- }, Ci = {
7409
+ }, zi = {
7398
7410
  sm: $t.padSm,
7399
7411
  md: $t.padMd,
7400
7412
  lg: $t.padLg
7401
7413
  };
7402
- function $r(s) {
7414
+ function Sr(s) {
7403
7415
  const t = W.c(12), {
7404
7416
  maxWidth: o,
7405
7417
  padding: e,
7406
7418
  header: n,
7407
7419
  children: r
7408
- } = s, l = o === void 0 ? "lg" : o, a = e === void 0 ? "md" : e, i = wi[l], x = Ci[a];
7420
+ } = s, l = o === void 0 ? "lg" : o, a = e === void 0 ? "md" : e, i = Ci[l], x = zi[a];
7409
7421
  let c;
7410
7422
  t[0] !== n || t[1] !== x ? (c = n != null && /* @__PURE__ */ k("header", { "data-element-src": "PageShell/PageShell.tsx:38", ...S(w.header, $t.container, $t.maxLg, x, $t.headerPadding), children: n }), t[0] = n, t[1] = x, t[2] = c) : c = t[2];
7411
7423
  let u;
@@ -7421,7 +7433,7 @@ function $r(s) {
7421
7433
  function Be(s) {
7422
7434
  return typeof s == "number" ? s : ao[s];
7423
7435
  }
7424
- function Sr(s) {
7436
+ function wr(s) {
7425
7437
  const t = W.c(8);
7426
7438
  let o;
7427
7439
  t[0] !== s ? (o = s === void 0 ? {} : s, t[0] = s, t[1] = o) : o = t[1];
@@ -7455,62 +7467,62 @@ function Sr(s) {
7455
7467
  }, t[6] = u, t[7] = g) : g = t[7], g;
7456
7468
  }
7457
7469
  export {
7458
- Ri as ActionBar,
7459
- Di as ActionBarProvider,
7460
- Li as Alert,
7461
- Gi as Badge,
7470
+ Li as ActionBar,
7471
+ Ri as ActionBarProvider,
7472
+ Gi as Alert,
7473
+ Bi as Badge,
7462
7474
  Ce as Button,
7463
- Bi as ButtonGroup,
7464
- Ei as Callout,
7465
- Vi as Card,
7475
+ Ei as ButtonGroup,
7476
+ Vi as Callout,
7477
+ Ai as Card,
7466
7478
  Go as Checkbox,
7467
- Ai as CheckboxGroup,
7468
- br as Cluster,
7469
- qi as ColorInput,
7470
- ur as ColorModeProvider,
7471
- xr as ColorModeToggle,
7472
- tr as Combobox,
7473
- Pi as ConfirmDialog,
7474
- Ni as DetailPanel,
7479
+ qi as CheckboxGroup,
7480
+ vr as Cluster,
7481
+ Pi as ColorInput,
7482
+ xr as ColorModeProvider,
7483
+ pr as ColorModeToggle,
7484
+ er as Combobox,
7485
+ Ni as ConfirmDialog,
7486
+ Oi as DetailPanel,
7475
7487
  Kt as Dialog,
7476
- Oi as Drawer,
7477
- Fi as EmptyState,
7488
+ Fi as Drawer,
7489
+ Hi as EmptyState,
7478
7490
  je as Field,
7479
- Yi as Fieldset,
7480
- Ki as Form,
7481
- vr as Grid,
7482
- Hi as Heading,
7491
+ Ui as Fieldset,
7492
+ Yi as Form,
7493
+ $r as Grid,
7494
+ Xi as Heading,
7483
7495
  qt as Icon,
7484
- yr as Inline,
7496
+ br as Inline,
7485
7497
  Uo as Input,
7486
- Ui as InputGroup,
7487
- _i as LinkButton,
7488
- Xi as List,
7489
- zr as Menu,
7490
- $r as PageShell,
7491
- Ji as Panel,
7492
- Zi as RadioGroup,
7493
- Qi as ScrollArea,
7494
- er as Select,
7495
- or as SideNav,
7496
- sr as Spinner,
7497
- hr as Stack,
7498
- rr as StatusIcon,
7499
- mr as Switch,
7500
- Tr as Table,
7501
- cr as Tabs,
7502
- lr as Tag,
7503
- ar as TagGroup,
7498
+ _i as InputGroup,
7499
+ Ji as LinkButton,
7500
+ Ki as List,
7501
+ Tr as Menu,
7502
+ Sr as PageShell,
7503
+ Zi as Panel,
7504
+ Qi as RadioGroup,
7505
+ tr as ScrollArea,
7506
+ or as Select,
7507
+ sr as SideNav,
7508
+ nr as Spinner,
7509
+ yr as Stack,
7510
+ lr as StatusIcon,
7511
+ hr as Switch,
7512
+ jr as Table,
7513
+ dr as Tabs,
7514
+ ar as Tag,
7515
+ cr as TagGroup,
7504
7516
  kr as Text,
7505
- dr as Textarea,
7506
- kn as ThemeProvider,
7507
- ir as ToastProvider,
7508
- pr as Toggle,
7509
- gr as ToggleGroup,
7510
- fr as Tooltip,
7517
+ ur as Textarea,
7518
+ pn as ThemeProvider,
7519
+ rr as ToastProvider,
7520
+ gr as Toggle,
7521
+ fr as ToggleGroup,
7522
+ mr as Tooltip,
7511
7523
  ei as useColorMode,
7512
- Sr as useContainerQuery,
7524
+ wr as useContainerQuery,
7513
7525
  ye as usePortalMount,
7514
- nr as useToast
7526
+ ir as useToast
7515
7527
  };
7516
7528
  //# sourceMappingURL=index.js.map