@misael703/ui 1.40.0 → 1.41.1

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 (40) hide show
  1. package/dist/{chunk-C3A6EWSR.mjs → chunk-3JYYZOEJ.mjs} +3 -3
  2. package/dist/{chunk-C3A6EWSR.mjs.map → chunk-3JYYZOEJ.mjs.map} +1 -1
  3. package/dist/{chunk-H4EL7J2O.js → chunk-565UJQ2M.js} +4 -4
  4. package/dist/{chunk-H4EL7J2O.js.map → chunk-565UJQ2M.js.map} +1 -1
  5. package/dist/{chunk-ZXKYAHSH.mjs → chunk-63LUAWJS.mjs} +3 -3
  6. package/dist/{chunk-ZXKYAHSH.mjs.map → chunk-63LUAWJS.mjs.map} +1 -1
  7. package/dist/{chunk-6KIM3DOH.mjs → chunk-6EHY7GB7.mjs} +5 -2
  8. package/dist/chunk-6EHY7GB7.mjs.map +1 -0
  9. package/dist/{chunk-BZSOS7QT.js → chunk-C7UG47HQ.js} +3 -3
  10. package/dist/{chunk-BZSOS7QT.js.map → chunk-C7UG47HQ.js.map} +1 -1
  11. package/dist/{chunk-DWLTIERK.js → chunk-F3PTSBHH.js} +3 -3
  12. package/dist/{chunk-DWLTIERK.js.map → chunk-F3PTSBHH.js.map} +1 -1
  13. package/dist/{chunk-UQJMVWM5.mjs → chunk-FD3Y5IP7.mjs} +3 -3
  14. package/dist/{chunk-UQJMVWM5.mjs.map → chunk-FD3Y5IP7.mjs.map} +1 -1
  15. package/dist/{chunk-WA4OHLWQ.js → chunk-JJ54RD36.js} +4 -4
  16. package/dist/{chunk-WA4OHLWQ.js.map → chunk-JJ54RD36.js.map} +1 -1
  17. package/dist/{chunk-PJA77NAF.mjs → chunk-VOSVV3LL.mjs} +3 -3
  18. package/dist/{chunk-PJA77NAF.mjs.map → chunk-VOSVV3LL.mjs.map} +1 -1
  19. package/dist/{chunk-NMUTNNAC.js → chunk-YKGRS57B.js} +5 -2
  20. package/dist/chunk-YKGRS57B.js.map +1 -0
  21. package/dist/components/AppShell.js +4 -4
  22. package/dist/components/AppShell.mjs +2 -2
  23. package/dist/components/Commerce.js +14 -14
  24. package/dist/components/Commerce.mjs +3 -3
  25. package/dist/components/DataTable.d.mts +20 -7
  26. package/dist/components/DataTable.d.ts +20 -7
  27. package/dist/components/DataTable.js +7 -7
  28. package/dist/components/DataTable.mjs +1 -1
  29. package/dist/components/Editing.js +8 -8
  30. package/dist/components/Editing.mjs +3 -3
  31. package/dist/components/Overlay.js +4 -4
  32. package/dist/components/Overlay.mjs +2 -2
  33. package/dist/hooks/index.js +5 -5
  34. package/dist/hooks/index.mjs +1 -1
  35. package/dist/index.js +33 -33
  36. package/dist/index.mjs +7 -7
  37. package/dist/styles.css +1 -1
  38. package/package.json +1 -1
  39. package/dist/chunk-6KIM3DOH.mjs.map +0 -1
  40. package/dist/chunk-NMUTNNAC.js.map +0 -1
@@ -48,14 +48,27 @@ interface DataTableProps<T> {
48
48
  error?: React.ReactNode;
49
49
  loading?: boolean;
50
50
  /**
51
- * Sticky-position the table header so it stays visible while the body
52
- * scrolls. The wrapper itself becomes the vertical scroll container
53
- * (the table is already overflow-x:auto, so an outer scroller can't reach
54
- * the header). Defaults to `max-height: 70vh`; override by passing a
55
- * `className` with a different `max-height`. Do NOT wrap `<DataTable>` in
56
- * your own `overflow-y:auto` container — that breaks the sticky context.
51
+ * Keep the table header pinned while rows scroll past it
52
+ * (`position: sticky`). The header sticks to the nearest scrolling
53
+ * ancestor: pair it with `maxHeight` to scroll inside a bounded box, or
54
+ * leave `maxHeight` unset to let the header stick to an outer scroller
55
+ * (a `Modal` body, the page) one scroll, no nested scrollbar.
56
+ *
57
+ * NOTE: a wide table needs its own horizontal scroll, which only exists in
58
+ * the bounded (`maxHeight`) mode. Without `maxHeight` the wrap is not a
59
+ * scroll container, so a wider-than-container table overflows its parent —
60
+ * use `maxHeight` for wide tables, or keep the table within its width.
57
61
  */
58
62
  stickyHeader?: boolean;
63
+ /**
64
+ * Cap the table's height and scroll its body inside a bounded box (the
65
+ * wrap becomes the vertical scroll container). Accepts any CSS length
66
+ * (`'70vh'`, `480`, `'30rem'`). Combine with `stickyHeader` for a
67
+ * scroll-region table whose header stays pinned to the box. Leaving this
68
+ * unset (with `stickyHeader`) makes the header stick to an outer scroller
69
+ * instead — see `stickyHeader`.
70
+ */
71
+ maxHeight?: string | number;
59
72
  /**
60
73
  * Layout for narrow viewports (`<600px`):
61
74
  * - `'table'` (default): the table scrolls horizontally inside its wrapper.
@@ -140,7 +153,7 @@ interface DataTableProps<T> {
140
153
  * - No virtualization; tested up to ~200 rows. For large datasets, plug
141
154
  * in react-window/tanstack-virtual around the body rows.
142
155
  */
143
- declare function DataTable<T>({ columns, rows, rowKey, sort, onSortChange, selectable, selectedKeys, onSelectionChange, empty, error, loading, stickyHeader, mobileLayout, ariaLabel, rowLabel, className, density, rowHref, onRowClick, renderRow, toolbar, surface, }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
156
+ declare function DataTable<T>({ columns, rows, rowKey, sort, onSortChange, selectable, selectedKeys, onSelectionChange, empty, error, loading, stickyHeader, maxHeight, mobileLayout, ariaLabel, rowLabel, className, density, rowHref, onRowClick, renderRow, toolbar, surface, }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
144
157
  interface AccordionProps {
145
158
  multiple?: boolean;
146
159
  defaultOpen?: string[];
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunkNMUTNNAC_js = require('../chunk-NMUTNNAC.js');
4
+ var chunkYKGRS57B_js = require('../chunk-YKGRS57B.js');
5
5
  require('../chunk-6SSTTJV4.js');
6
6
  require('../chunk-A423552C.js');
7
7
  require('../chunk-W725MLGN.js');
@@ -13,27 +13,27 @@ require('../chunk-PASF6T4H.js');
13
13
 
14
14
  Object.defineProperty(exports, "Accordion", {
15
15
  enumerable: true,
16
- get: function () { return chunkNMUTNNAC_js.Accordion; }
16
+ get: function () { return chunkYKGRS57B_js.Accordion; }
17
17
  });
18
18
  Object.defineProperty(exports, "AccordionItem", {
19
19
  enumerable: true,
20
- get: function () { return chunkNMUTNNAC_js.AccordionItem; }
20
+ get: function () { return chunkYKGRS57B_js.AccordionItem; }
21
21
  });
22
22
  Object.defineProperty(exports, "Breadcrumbs", {
23
23
  enumerable: true,
24
- get: function () { return chunkNMUTNNAC_js.Breadcrumbs; }
24
+ get: function () { return chunkYKGRS57B_js.Breadcrumbs; }
25
25
  });
26
26
  Object.defineProperty(exports, "DataTable", {
27
27
  enumerable: true,
28
- get: function () { return chunkNMUTNNAC_js.DataTable; }
28
+ get: function () { return chunkYKGRS57B_js.DataTable; }
29
29
  });
30
30
  Object.defineProperty(exports, "TablePagination", {
31
31
  enumerable: true,
32
- get: function () { return chunkNMUTNNAC_js.TablePagination; }
32
+ get: function () { return chunkYKGRS57B_js.TablePagination; }
33
33
  });
34
34
  Object.defineProperty(exports, "TableToolbar", {
35
35
  enumerable: true,
36
- get: function () { return chunkNMUTNNAC_js.TableToolbar; }
36
+ get: function () { return chunkYKGRS57B_js.TableToolbar; }
37
37
  });
38
38
  //# sourceMappingURL=DataTable.js.map
39
39
  //# sourceMappingURL=DataTable.js.map
@@ -1,5 +1,5 @@
1
1
  'use client';
2
- export { Accordion, AccordionItem, Breadcrumbs, DataTable, TablePagination, TableToolbar } from '../chunk-6KIM3DOH.mjs';
2
+ export { Accordion, AccordionItem, Breadcrumbs, DataTable, TablePagination, TableToolbar } from '../chunk-6EHY7GB7.mjs';
3
3
  import '../chunk-SUQLII3F.mjs';
4
4
  import '../chunk-CNQ7HZQT.mjs';
5
5
  import '../chunk-OWIPC5NO.mjs';
@@ -1,14 +1,14 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunkH4EL7J2O_js = require('../chunk-H4EL7J2O.js');
5
- require('../chunk-DWLTIERK.js');
4
+ var chunk565UJQ2M_js = require('../chunk-565UJQ2M.js');
5
+ require('../chunk-F3PTSBHH.js');
6
6
  require('../chunk-6SSTTJV4.js');
7
7
  require('../chunk-2KZ4NI3X.js');
8
- require('../chunk-D2H4VZVL.js');
9
8
  require('../chunk-FL4ZCWUF.js');
10
9
  require('../chunk-NPXEZCTA.js');
11
10
  require('../chunk-55P5FA5Q.js');
11
+ require('../chunk-D2H4VZVL.js');
12
12
  require('../chunk-UBSBSZPB.js');
13
13
  require('../chunk-XMLBKK7X.js');
14
14
  require('../chunk-CRKYET66.js');
@@ -19,23 +19,23 @@ require('../chunk-PASF6T4H.js');
19
19
 
20
20
  Object.defineProperty(exports, "ConfirmDialog", {
21
21
  enumerable: true,
22
- get: function () { return chunkH4EL7J2O_js.ConfirmDialog; }
22
+ get: function () { return chunk565UJQ2M_js.ConfirmDialog; }
23
23
  });
24
24
  Object.defineProperty(exports, "DescriptionList", {
25
25
  enumerable: true,
26
- get: function () { return chunkH4EL7J2O_js.DescriptionList; }
26
+ get: function () { return chunk565UJQ2M_js.DescriptionList; }
27
27
  });
28
28
  Object.defineProperty(exports, "DescriptionListItem", {
29
29
  enumerable: true,
30
- get: function () { return chunkH4EL7J2O_js.DescriptionListItem; }
30
+ get: function () { return chunk565UJQ2M_js.DescriptionListItem; }
31
31
  });
32
32
  Object.defineProperty(exports, "DiffViewer", {
33
33
  enumerable: true,
34
- get: function () { return chunkH4EL7J2O_js.DiffViewer; }
34
+ get: function () { return chunk565UJQ2M_js.DiffViewer; }
35
35
  });
36
36
  Object.defineProperty(exports, "TransferList", {
37
37
  enumerable: true,
38
- get: function () { return chunkH4EL7J2O_js.TransferList; }
38
+ get: function () { return chunk565UJQ2M_js.TransferList; }
39
39
  });
40
40
  //# sourceMappingURL=Editing.js.map
41
41
  //# sourceMappingURL=Editing.js.map
@@ -1,12 +1,12 @@
1
1
  'use client';
2
- export { ConfirmDialog, DescriptionList, DescriptionListItem, DiffViewer, TransferList } from '../chunk-C3A6EWSR.mjs';
3
- import '../chunk-PJA77NAF.mjs';
2
+ export { ConfirmDialog, DescriptionList, DescriptionListItem, DiffViewer, TransferList } from '../chunk-3JYYZOEJ.mjs';
3
+ import '../chunk-VOSVV3LL.mjs';
4
4
  import '../chunk-SUQLII3F.mjs';
5
5
  import '../chunk-QQE3XOEM.mjs';
6
- import '../chunk-R5DCDEB5.mjs';
7
6
  import '../chunk-U3JH4T3A.mjs';
8
7
  import '../chunk-6W7ZGWNA.mjs';
9
8
  import '../chunk-XOV4D6J3.mjs';
9
+ import '../chunk-R5DCDEB5.mjs';
10
10
  import '../chunk-SXAGF7EG.mjs';
11
11
  import '../chunk-6P2TKRTL.mjs';
12
12
  import '../chunk-5XT2LX3I.mjs';
@@ -1,12 +1,12 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunkDWLTIERK_js = require('../chunk-DWLTIERK.js');
4
+ var chunkF3PTSBHH_js = require('../chunk-F3PTSBHH.js');
5
5
  require('../chunk-2KZ4NI3X.js');
6
- require('../chunk-D2H4VZVL.js');
7
6
  require('../chunk-FL4ZCWUF.js');
8
7
  require('../chunk-NPXEZCTA.js');
9
8
  require('../chunk-55P5FA5Q.js');
9
+ require('../chunk-D2H4VZVL.js');
10
10
  require('../chunk-UBSBSZPB.js');
11
11
  require('../chunk-XMLBKK7X.js');
12
12
  require('../chunk-CRKYET66.js');
@@ -17,11 +17,11 @@ require('../chunk-PASF6T4H.js');
17
17
 
18
18
  Object.defineProperty(exports, "Drawer", {
19
19
  enumerable: true,
20
- get: function () { return chunkDWLTIERK_js.Drawer; }
20
+ get: function () { return chunkF3PTSBHH_js.Drawer; }
21
21
  });
22
22
  Object.defineProperty(exports, "Modal", {
23
23
  enumerable: true,
24
- get: function () { return chunkDWLTIERK_js.Modal; }
24
+ get: function () { return chunkF3PTSBHH_js.Modal; }
25
25
  });
26
26
  //# sourceMappingURL=Overlay.js.map
27
27
  //# sourceMappingURL=Overlay.js.map
@@ -1,10 +1,10 @@
1
1
  'use client';
2
- export { Drawer, Modal } from '../chunk-PJA77NAF.mjs';
2
+ export { Drawer, Modal } from '../chunk-VOSVV3LL.mjs';
3
3
  import '../chunk-QQE3XOEM.mjs';
4
- import '../chunk-R5DCDEB5.mjs';
5
4
  import '../chunk-U3JH4T3A.mjs';
6
5
  import '../chunk-6W7ZGWNA.mjs';
7
6
  import '../chunk-XOV4D6J3.mjs';
7
+ import '../chunk-R5DCDEB5.mjs';
8
8
  import '../chunk-SXAGF7EG.mjs';
9
9
  import '../chunk-6P2TKRTL.mjs';
10
10
  import '../chunk-5XT2LX3I.mjs';
@@ -2,19 +2,15 @@
2
2
  'use strict';
3
3
 
4
4
  require('../chunk-2KZ4NI3X.js');
5
- var chunkD2H4VZVL_js = require('../chunk-D2H4VZVL.js');
6
5
  var chunkFL4ZCWUF_js = require('../chunk-FL4ZCWUF.js');
7
6
  var chunkNPXEZCTA_js = require('../chunk-NPXEZCTA.js');
8
7
  var chunk55P5FA5Q_js = require('../chunk-55P5FA5Q.js');
8
+ var chunkD2H4VZVL_js = require('../chunk-D2H4VZVL.js');
9
9
  var chunkXMLBKK7X_js = require('../chunk-XMLBKK7X.js');
10
10
  var chunkCRKYET66_js = require('../chunk-CRKYET66.js');
11
11
 
12
12
 
13
13
 
14
- Object.defineProperty(exports, "useScrollLock", {
15
- enumerable: true,
16
- get: function () { return chunkD2H4VZVL_js.useScrollLock; }
17
- });
18
14
  Object.defineProperty(exports, "useDelayedUnmount", {
19
15
  enumerable: true,
20
16
  get: function () { return chunkFL4ZCWUF_js.useDelayedUnmount; }
@@ -27,6 +23,10 @@ Object.defineProperty(exports, "useFocusTrap", {
27
23
  enumerable: true,
28
24
  get: function () { return chunk55P5FA5Q_js.useFocusTrap; }
29
25
  });
26
+ Object.defineProperty(exports, "useScrollLock", {
27
+ enumerable: true,
28
+ get: function () { return chunkD2H4VZVL_js.useScrollLock; }
29
+ });
30
30
  Object.defineProperty(exports, "useDismiss", {
31
31
  enumerable: true,
32
32
  get: function () { return chunkXMLBKK7X_js.useDismiss; }
@@ -1,9 +1,9 @@
1
1
  'use client';
2
2
  import '../chunk-QQE3XOEM.mjs';
3
- export { useScrollLock } from '../chunk-R5DCDEB5.mjs';
4
3
  export { useDelayedUnmount } from '../chunk-U3JH4T3A.mjs';
5
4
  export { useEscape } from '../chunk-6W7ZGWNA.mjs';
6
5
  export { useFocusTrap } from '../chunk-XOV4D6J3.mjs';
6
+ export { useScrollLock } from '../chunk-R5DCDEB5.mjs';
7
7
  export { useDismiss } from '../chunk-6P2TKRTL.mjs';
8
8
  export { usePopoverPosition } from '../chunk-5XT2LX3I.mjs';
9
9
  //# sourceMappingURL=index.mjs.map
package/dist/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
+ require('./chunk-4REALDR3.js');
4
5
  require('./chunk-2LTV7VB5.js');
5
6
  var chunk5LSPN6Q6_js = require('./chunk-5LSPN6Q6.js');
6
- require('./chunk-4REALDR3.js');
7
7
  var chunk3PAZJYH6_js = require('./chunk-3PAZJYH6.js');
8
8
  var chunkJFYTJUT3_js = require('./chunk-JFYTJUT3.js');
9
9
  var chunkMW7HQCFC_js = require('./chunk-MW7HQCFC.js');
@@ -18,17 +18,17 @@ var chunkDYZM6NZU_js = require('./chunk-DYZM6NZU.js');
18
18
  var chunkHCTY5QYL_js = require('./chunk-HCTY5QYL.js');
19
19
  var chunkTX4BUYX4_js = require('./chunk-TX4BUYX4.js');
20
20
  var chunkVBB2XHBB_js = require('./chunk-VBB2XHBB.js');
21
- var chunkH4EL7J2O_js = require('./chunk-H4EL7J2O.js');
21
+ var chunk565UJQ2M_js = require('./chunk-565UJQ2M.js');
22
22
  var chunkDPMY5RV6_js = require('./chunk-DPMY5RV6.js');
23
23
  var chunkAJJBJQAH_js = require('./chunk-AJJBJQAH.js');
24
24
  var chunk3JRP3DGM_js = require('./chunk-3JRP3DGM.js');
25
25
  var chunk6II4NJQM_js = require('./chunk-6II4NJQM.js');
26
26
  var chunkAWYCGJJX_js = require('./chunk-AWYCGJJX.js');
27
27
  var chunkD44PGK5V_js = require('./chunk-D44PGK5V.js');
28
- var chunkWA4OHLWQ_js = require('./chunk-WA4OHLWQ.js');
29
- var chunkDWLTIERK_js = require('./chunk-DWLTIERK.js');
28
+ var chunkJJ54RD36_js = require('./chunk-JJ54RD36.js');
29
+ var chunkF3PTSBHH_js = require('./chunk-F3PTSBHH.js');
30
30
  var chunk2PNXLTEM_js = require('./chunk-2PNXLTEM.js');
31
- var chunkNMUTNNAC_js = require('./chunk-NMUTNNAC.js');
31
+ var chunkYKGRS57B_js = require('./chunk-YKGRS57B.js');
32
32
  var chunk6SSTTJV4_js = require('./chunk-6SSTTJV4.js');
33
33
  var chunkA423552C_js = require('./chunk-A423552C.js');
34
34
  var chunkDZC4SOLV_js = require('./chunk-DZC4SOLV.js');
@@ -39,12 +39,12 @@ var chunkW725MLGN_js = require('./chunk-W725MLGN.js');
39
39
  var chunkMVJITG75_js = require('./chunk-MVJITG75.js');
40
40
  var chunkWAGWB35Q_js = require('./chunk-WAGWB35Q.js');
41
41
  var chunk3PXYCXDW_js = require('./chunk-3PXYCXDW.js');
42
- var chunkBZSOS7QT_js = require('./chunk-BZSOS7QT.js');
42
+ var chunkC7UG47HQ_js = require('./chunk-C7UG47HQ.js');
43
43
  require('./chunk-2KZ4NI3X.js');
44
- require('./chunk-D2H4VZVL.js');
45
44
  require('./chunk-FL4ZCWUF.js');
46
45
  require('./chunk-NPXEZCTA.js');
47
46
  require('./chunk-55P5FA5Q.js');
47
+ require('./chunk-D2H4VZVL.js');
48
48
  var chunkUBSBSZPB_js = require('./chunk-UBSBSZPB.js');
49
49
  var chunkXMLBKK7X_js = require('./chunk-XMLBKK7X.js');
50
50
  var chunkCRKYET66_js = require('./chunk-CRKYET66.js');
@@ -292,23 +292,23 @@ Object.defineProperty(exports, "NotificationCenter", {
292
292
  });
293
293
  Object.defineProperty(exports, "ConfirmDialog", {
294
294
  enumerable: true,
295
- get: function () { return chunkH4EL7J2O_js.ConfirmDialog; }
295
+ get: function () { return chunk565UJQ2M_js.ConfirmDialog; }
296
296
  });
297
297
  Object.defineProperty(exports, "DescriptionList", {
298
298
  enumerable: true,
299
- get: function () { return chunkH4EL7J2O_js.DescriptionList; }
299
+ get: function () { return chunk565UJQ2M_js.DescriptionList; }
300
300
  });
301
301
  Object.defineProperty(exports, "DescriptionListItem", {
302
302
  enumerable: true,
303
- get: function () { return chunkH4EL7J2O_js.DescriptionListItem; }
303
+ get: function () { return chunk565UJQ2M_js.DescriptionListItem; }
304
304
  });
305
305
  Object.defineProperty(exports, "DiffViewer", {
306
306
  enumerable: true,
307
- get: function () { return chunkH4EL7J2O_js.DiffViewer; }
307
+ get: function () { return chunk565UJQ2M_js.DiffViewer; }
308
308
  });
309
309
  Object.defineProperty(exports, "TransferList", {
310
310
  enumerable: true,
311
- get: function () { return chunkH4EL7J2O_js.TransferList; }
311
+ get: function () { return chunk565UJQ2M_js.TransferList; }
312
312
  });
313
313
  Object.defineProperty(exports, "BulkActionBar", {
314
314
  enumerable: true,
@@ -376,55 +376,55 @@ Object.defineProperty(exports, "_internal", {
376
376
  });
377
377
  Object.defineProperty(exports, "AddressForm", {
378
378
  enumerable: true,
379
- get: function () { return chunkWA4OHLWQ_js.AddressForm; }
379
+ get: function () { return chunkJJ54RD36_js.AddressForm; }
380
380
  });
381
381
  Object.defineProperty(exports, "CartDrawer", {
382
382
  enumerable: true,
383
- get: function () { return chunkWA4OHLWQ_js.CartDrawer; }
383
+ get: function () { return chunkJJ54RD36_js.CartDrawer; }
384
384
  });
385
385
  Object.defineProperty(exports, "CompareTable", {
386
386
  enumerable: true,
387
- get: function () { return chunkWA4OHLWQ_js.CompareTable; }
387
+ get: function () { return chunkJJ54RD36_js.CompareTable; }
388
388
  });
389
389
  Object.defineProperty(exports, "FreeShippingProgress", {
390
390
  enumerable: true,
391
- get: function () { return chunkWA4OHLWQ_js.FreeShippingProgress; }
391
+ get: function () { return chunkJJ54RD36_js.FreeShippingProgress; }
392
392
  });
393
393
  Object.defineProperty(exports, "OrderSummary", {
394
394
  enumerable: true,
395
- get: function () { return chunkWA4OHLWQ_js.OrderSummary; }
395
+ get: function () { return chunkJJ54RD36_js.OrderSummary; }
396
396
  });
397
397
  Object.defineProperty(exports, "PriceDisplay", {
398
398
  enumerable: true,
399
- get: function () { return chunkWA4OHLWQ_js.PriceDisplay; }
399
+ get: function () { return chunkJJ54RD36_js.PriceDisplay; }
400
400
  });
401
401
  Object.defineProperty(exports, "PromoCodeInput", {
402
402
  enumerable: true,
403
- get: function () { return chunkWA4OHLWQ_js.PromoCodeInput; }
403
+ get: function () { return chunkJJ54RD36_js.PromoCodeInput; }
404
404
  });
405
405
  Object.defineProperty(exports, "QuantitySelector", {
406
406
  enumerable: true,
407
- get: function () { return chunkWA4OHLWQ_js.QuantitySelector; }
407
+ get: function () { return chunkJJ54RD36_js.QuantitySelector; }
408
408
  });
409
409
  Object.defineProperty(exports, "Rating", {
410
410
  enumerable: true,
411
- get: function () { return chunkWA4OHLWQ_js.Rating; }
411
+ get: function () { return chunkJJ54RD36_js.Rating; }
412
412
  });
413
413
  Object.defineProperty(exports, "VariantSelector", {
414
414
  enumerable: true,
415
- get: function () { return chunkWA4OHLWQ_js.VariantSelector; }
415
+ get: function () { return chunkJJ54RD36_js.VariantSelector; }
416
416
  });
417
417
  Object.defineProperty(exports, "WishlistButton", {
418
418
  enumerable: true,
419
- get: function () { return chunkWA4OHLWQ_js.WishlistButton; }
419
+ get: function () { return chunkJJ54RD36_js.WishlistButton; }
420
420
  });
421
421
  Object.defineProperty(exports, "Drawer", {
422
422
  enumerable: true,
423
- get: function () { return chunkDWLTIERK_js.Drawer; }
423
+ get: function () { return chunkF3PTSBHH_js.Drawer; }
424
424
  });
425
425
  Object.defineProperty(exports, "Modal", {
426
426
  enumerable: true,
427
- get: function () { return chunkDWLTIERK_js.Modal; }
427
+ get: function () { return chunkF3PTSBHH_js.Modal; }
428
428
  });
429
429
  Object.defineProperty(exports, "ContextMenu", {
430
430
  enumerable: true,
@@ -432,27 +432,27 @@ Object.defineProperty(exports, "ContextMenu", {
432
432
  });
433
433
  Object.defineProperty(exports, "Accordion", {
434
434
  enumerable: true,
435
- get: function () { return chunkNMUTNNAC_js.Accordion; }
435
+ get: function () { return chunkYKGRS57B_js.Accordion; }
436
436
  });
437
437
  Object.defineProperty(exports, "AccordionItem", {
438
438
  enumerable: true,
439
- get: function () { return chunkNMUTNNAC_js.AccordionItem; }
439
+ get: function () { return chunkYKGRS57B_js.AccordionItem; }
440
440
  });
441
441
  Object.defineProperty(exports, "Breadcrumbs", {
442
442
  enumerable: true,
443
- get: function () { return chunkNMUTNNAC_js.Breadcrumbs; }
443
+ get: function () { return chunkYKGRS57B_js.Breadcrumbs; }
444
444
  });
445
445
  Object.defineProperty(exports, "DataTable", {
446
446
  enumerable: true,
447
- get: function () { return chunkNMUTNNAC_js.DataTable; }
447
+ get: function () { return chunkYKGRS57B_js.DataTable; }
448
448
  });
449
449
  Object.defineProperty(exports, "TablePagination", {
450
450
  enumerable: true,
451
- get: function () { return chunkNMUTNNAC_js.TablePagination; }
451
+ get: function () { return chunkYKGRS57B_js.TablePagination; }
452
452
  });
453
453
  Object.defineProperty(exports, "TableToolbar", {
454
454
  enumerable: true,
455
- get: function () { return chunkNMUTNNAC_js.TableToolbar; }
455
+ get: function () { return chunkYKGRS57B_js.TableToolbar; }
456
456
  });
457
457
  Object.defineProperty(exports, "Checkbox", {
458
458
  enumerable: true,
@@ -688,11 +688,11 @@ Object.defineProperty(exports, "resetBrand", {
688
688
  });
689
689
  Object.defineProperty(exports, "AppShell", {
690
690
  enumerable: true,
691
- get: function () { return chunkBZSOS7QT_js.AppShell; }
691
+ get: function () { return chunkC7UG47HQ_js.AppShell; }
692
692
  });
693
693
  Object.defineProperty(exports, "PageHeader", {
694
694
  enumerable: true,
695
- get: function () { return chunkBZSOS7QT_js.PageHeader; }
695
+ get: function () { return chunkC7UG47HQ_js.PageHeader; }
696
696
  });
697
697
  Object.defineProperty(exports, "LocaleProvider", {
698
698
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use client';
2
+ import './chunk-CHVTPN3K.mjs';
2
3
  import './chunk-XTHC46M2.mjs';
3
4
  export { SegmentedControl, SegmentedControlItem, Toggle, ToggleGroup, ToggleGroupItem } from './chunk-4N2PCBGA.mjs';
4
- import './chunk-CHVTPN3K.mjs';
5
5
  export { PermissionMatrix } from './chunk-T42OS6SD.mjs';
6
6
  export { Combobox, DatePicker, FileUpload, MonthPicker, YearPicker } from './chunk-JHSQYS7K.mjs';
7
7
  export { Popover } from './chunk-FR4JV3JA.mjs';
@@ -16,17 +16,17 @@ export { CategoryNav, Hero, Testimonial } from './chunk-XRWMJVSI.mjs';
16
16
  export { Menubar } from './chunk-YXUYWO2W.mjs';
17
17
  export { NavigationMenu } from './chunk-OIYIWG53.mjs';
18
18
  export { NotificationCenter } from './chunk-FZQDUHPA.mjs';
19
- export { ConfirmDialog, DescriptionList, DescriptionListItem, DiffViewer, TransferList } from './chunk-C3A6EWSR.mjs';
19
+ export { ConfirmDialog, DescriptionList, DescriptionListItem, DiffViewer, TransferList } from './chunk-3JYYZOEJ.mjs';
20
20
  export { BulkActionBar, FilterBar, FilterField, FilterPanel, FilterSection, SortDropdown } from './chunk-5THFLAUQ.mjs';
21
21
  export { ImageGallery, Lightbox } from './chunk-DQO3VZ2X.mjs';
22
22
  export { HoverCard } from './chunk-X36H75RR.mjs';
23
23
  export { InputOTP } from './chunk-IVL7P3MF.mjs';
24
24
  export { Collapsible, CollapsibleContent, CollapsibleTrigger } from './chunk-2UV37SEN.mjs';
25
25
  export { AttachmentList, CommentThread, _internal } from './chunk-G5I2VVOC.mjs';
26
- export { AddressForm, CartDrawer, CompareTable, FreeShippingProgress, OrderSummary, PriceDisplay, PromoCodeInput, QuantitySelector, Rating, VariantSelector, WishlistButton } from './chunk-UQJMVWM5.mjs';
27
- export { Drawer, Modal } from './chunk-PJA77NAF.mjs';
26
+ export { AddressForm, CartDrawer, CompareTable, FreeShippingProgress, OrderSummary, PriceDisplay, PromoCodeInput, QuantitySelector, Rating, VariantSelector, WishlistButton } from './chunk-FD3Y5IP7.mjs';
27
+ export { Drawer, Modal } from './chunk-VOSVV3LL.mjs';
28
28
  export { ContextMenu } from './chunk-NS6CI6RP.mjs';
29
- export { Accordion, AccordionItem, Breadcrumbs, DataTable, TablePagination, TableToolbar } from './chunk-6KIM3DOH.mjs';
29
+ export { Accordion, AccordionItem, Breadcrumbs, DataTable, TablePagination, TableToolbar } from './chunk-6EHY7GB7.mjs';
30
30
  export { Checkbox, FormField, Input, InputGroup, InputGroupAddon, Label, Radio, Select, Switch, Textarea } from './chunk-SUQLII3F.mjs';
31
31
  export { EmptyState, Kpi, NumberInput, Pagination } from './chunk-CNQ7HZQT.mjs';
32
32
  export { Alert, Badge, Card, CardBody, CardFooter, CardHeader, Chip, ChipGroup, ProductCard, Skeleton, Spinner } from './chunk-LAMT2PHX.mjs';
@@ -37,12 +37,12 @@ export { format } from './chunk-OWIPC5NO.mjs';
37
37
  export { addMonths, buildMonthGrid, dateFormatPlaceholder, detectFormatFromLocale, formatDate, formatRelativeDay, isSameDay, isToday, isTomorrow, isYesterday, parseDate, resolveDateFormat, startOfMonth } from './chunk-4QHE5H36.mjs';
38
38
  export { Portal } from './chunk-FKBQYQQD.mjs';
39
39
  export { BRAND_DEFAULTS, configureBrand, getBrand, resetBrand } from './chunk-5GEWIK4T.mjs';
40
- export { AppShell, PageHeader } from './chunk-ZXKYAHSH.mjs';
40
+ export { AppShell, PageHeader } from './chunk-63LUAWJS.mjs';
41
41
  import './chunk-QQE3XOEM.mjs';
42
- import './chunk-R5DCDEB5.mjs';
43
42
  import './chunk-U3JH4T3A.mjs';
44
43
  import './chunk-6W7ZGWNA.mjs';
45
44
  import './chunk-XOV4D6J3.mjs';
45
+ import './chunk-R5DCDEB5.mjs';
46
46
  export { LocaleProvider, esMessages, useLocale } from './chunk-SXAGF7EG.mjs';
47
47
  export { useDismiss } from './chunk-6P2TKRTL.mjs';
48
48
  export { usePopoverPosition } from './chunk-5XT2LX3I.mjs';