@misael703/ui 1.61.0 → 1.62.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 (52) hide show
  1. package/dist/{chunk-EJY4QWHT.mjs → chunk-2GCYYHNG.mjs} +60 -30
  2. package/dist/chunk-2GCYYHNG.mjs.map +1 -0
  3. package/dist/{chunk-3RB4OZTJ.js → chunk-FI2XCF3F.js} +94 -14
  4. package/dist/chunk-FI2XCF3F.js.map +1 -0
  5. package/dist/{chunk-5G3DVB5B.mjs → chunk-GL5C55DU.mjs} +3 -3
  6. package/dist/{chunk-5G3DVB5B.mjs.map → chunk-GL5C55DU.mjs.map} +1 -1
  7. package/dist/{chunk-NUTHJQYH.js → chunk-JNISZPSL.js} +4 -4
  8. package/dist/{chunk-NUTHJQYH.js.map → chunk-JNISZPSL.js.map} +1 -1
  9. package/dist/{chunk-2ET7IM4U.js → chunk-K4VUQFUA.js} +60 -30
  10. package/dist/chunk-K4VUQFUA.js.map +1 -0
  11. package/dist/{chunk-DLPTIVZB.mjs → chunk-NHSPQDB2.mjs} +3 -3
  12. package/dist/{chunk-DLPTIVZB.mjs.map → chunk-NHSPQDB2.mjs.map} +1 -1
  13. package/dist/{chunk-M7QZCHMM.js → chunk-O4TKMQEY.js} +3 -3
  14. package/dist/{chunk-M7QZCHMM.js.map → chunk-O4TKMQEY.js.map} +1 -1
  15. package/dist/{chunk-JXRAMV3H.mjs → chunk-TJ5LRNVT.mjs} +94 -15
  16. package/dist/chunk-TJ5LRNVT.mjs.map +1 -0
  17. package/dist/{chunk-2UW2K5MV.mjs → chunk-UQJU332W.mjs} +3 -3
  18. package/dist/{chunk-2UW2K5MV.mjs.map → chunk-UQJU332W.mjs.map} +1 -1
  19. package/dist/{chunk-E6BTT4I7.js → chunk-V7MNWM6L.js} +4 -4
  20. package/dist/{chunk-E6BTT4I7.js.map → chunk-V7MNWM6L.js.map} +1 -1
  21. package/dist/{chunk-324O7B3R.js → chunk-X4EESFGG.js} +3 -3
  22. package/dist/{chunk-324O7B3R.js.map → chunk-X4EESFGG.js.map} +1 -1
  23. package/dist/{chunk-GNI5MH36.mjs → chunk-YKFZCOOB.mjs} +3 -3
  24. package/dist/{chunk-GNI5MH36.mjs.map → chunk-YKFZCOOB.mjs.map} +1 -1
  25. package/dist/components/AdvancedPickers.d.mts +29 -2
  26. package/dist/components/AdvancedPickers.d.ts +29 -2
  27. package/dist/components/AdvancedPickers.js +9 -5
  28. package/dist/components/AdvancedPickers.mjs +1 -1
  29. package/dist/components/AppShell.js +4 -4
  30. package/dist/components/AppShell.mjs +2 -2
  31. package/dist/components/Charts.d.mts +25 -5
  32. package/dist/components/Charts.d.ts +25 -5
  33. package/dist/components/Charts.js +6 -6
  34. package/dist/components/Charts.mjs +1 -1
  35. package/dist/components/Commerce.js +14 -14
  36. package/dist/components/Commerce.mjs +3 -3
  37. package/dist/components/Editing.js +9 -9
  38. package/dist/components/Editing.mjs +3 -3
  39. package/dist/components/Overlay.js +4 -4
  40. package/dist/components/Overlay.mjs +2 -2
  41. package/dist/hooks/index.js +5 -5
  42. package/dist/hooks/index.mjs +1 -1
  43. package/dist/index.d.mts +1 -1
  44. package/dist/index.d.ts +1 -1
  45. package/dist/index.js +42 -38
  46. package/dist/index.mjs +8 -8
  47. package/dist/styles.css +1 -1
  48. package/package.json +1 -1
  49. package/dist/chunk-2ET7IM4U.js.map +0 -1
  50. package/dist/chunk-3RB4OZTJ.js.map +0 -1
  51. package/dist/chunk-EJY4QWHT.mjs.map +0 -1
  52. package/dist/chunk-JXRAMV3H.mjs.map +0 -1
@@ -6,7 +6,10 @@ import * as React from 'react';
6
6
  * and passes the modules in via the `recharts` prop so consumers only pay for what they use.
7
7
  *
8
8
  * Recharts is treated as an implicit peer dependency: install it in the host
9
- * app if you use any chart component.
9
+ * app if you use any chart component. Use **recharts ≥ 3** — earlier versions use
10
+ * `defaultProps` on function components, which logs a deprecation warning under
11
+ * React 19. recharts 3 removed them; these wrappers use default parameters, so on
12
+ * recharts 3.8+ the console stays clean (verified).
10
13
  *
11
14
  * Usage in a Next.js client component:
12
15
  *
@@ -57,6 +60,17 @@ interface CartesianChartProps<D = any> extends BaseChartProps<D> {
57
60
  xTickAngle?: number;
58
61
  /** Format numeric values (value-axis ticks + tooltip). */
59
62
  valueFormatter?: (value: number) => string;
63
+ /**
64
+ * Allow fractional value-axis ticks. Default: auto — `false` when every series
65
+ * value is an integer (count data → no `0.25` ticks), `true` otherwise. Pass
66
+ * explicitly to override the auto-detection.
67
+ */
68
+ allowDecimals?: boolean;
69
+ /**
70
+ * Format the category label in the tooltip. Defaults to `xTickFormatter` so the
71
+ * tooltip matches the axis (e.g. both show `18 jun`, not the raw `2026-06-18`).
72
+ */
73
+ tooltipLabelFormatter?: (value: string) => string;
60
74
  }
61
75
  interface LineChartProps<D = any> extends CartesianChartProps<D> {
62
76
  smooth?: boolean;
@@ -64,16 +78,16 @@ interface LineChartProps<D = any> extends CartesianChartProps<D> {
64
78
  * straight segments — recommended for counts/stepped series (no phantom humps over zeros). */
65
79
  curve?: 'linear' | 'monotone';
66
80
  }
67
- declare function LineChart<D = any>({ recharts: R, data, categoryKey, series, height, className, ariaLabel, showGrid, showLegend, smooth, curve, xTickFormatter, xTickInterval, xTickAngle, valueFormatter, }: LineChartProps<D>): react_jsx_runtime.JSX.Element;
81
+ declare function LineChart<D = any>({ recharts: R, data, categoryKey, series, height, className, ariaLabel, showGrid, showLegend, smooth, curve, xTickFormatter, xTickInterval, xTickAngle, valueFormatter, allowDecimals, tooltipLabelFormatter, }: LineChartProps<D>): react_jsx_runtime.JSX.Element;
68
82
  interface AreaChartProps<D = any> extends LineChartProps<D> {
69
83
  stacked?: boolean;
70
84
  }
71
- declare function AreaChart<D = any>({ recharts: R, data, categoryKey, series, height, className, ariaLabel, showGrid, showLegend, smooth, curve, stacked, xTickFormatter, xTickInterval, xTickAngle, valueFormatter, }: AreaChartProps<D>): react_jsx_runtime.JSX.Element;
85
+ declare function AreaChart<D = any>({ recharts: R, data, categoryKey, series, height, className, ariaLabel, showGrid, showLegend, smooth, curve, stacked, xTickFormatter, xTickInterval, xTickAngle, valueFormatter, allowDecimals, tooltipLabelFormatter, }: AreaChartProps<D>): react_jsx_runtime.JSX.Element;
72
86
  interface BarChartProps<D = any> extends CartesianChartProps<D> {
73
87
  layout?: 'vertical' | 'horizontal';
74
88
  stacked?: boolean;
75
89
  }
76
- declare function BarChart<D = any>({ recharts: R, data, categoryKey, series, height, className, ariaLabel, layout, stacked, showGrid, showLegend, xTickFormatter, xTickInterval, xTickAngle, valueFormatter, }: BarChartProps<D>): react_jsx_runtime.JSX.Element;
90
+ declare function BarChart<D = any>({ recharts: R, data, categoryKey, series, height, className, ariaLabel, layout, stacked, showGrid, showLegend, xTickFormatter, xTickInterval, xTickAngle, valueFormatter, allowDecimals, tooltipLabelFormatter, }: BarChartProps<D>): react_jsx_runtime.JSX.Element;
77
91
  interface DonutChartProps extends Omit<BaseChartProps, 'data'> {
78
92
  data: Array<{
79
93
  name: string;
@@ -98,9 +112,15 @@ interface SparklineProps<D = any> {
98
112
  height?: number;
99
113
  color?: string;
100
114
  fill?: boolean;
115
+ /**
116
+ * Show a hover dot. Default `false` — a sparkline is glanceable/non-interactive
117
+ * (the fine detail lives in the big LineChart). When off there's no active dot
118
+ * to clip at the edges/base; when on, the margins are widened so it isn't cut.
119
+ */
120
+ interactive?: boolean;
101
121
  className?: string;
102
122
  ariaLabel?: string;
103
123
  }
104
- declare function Sparkline<D = any>({ recharts: R, data, dataKey, width, height, color, fill, className, ariaLabel, }: SparklineProps<D>): react_jsx_runtime.JSX.Element;
124
+ declare function Sparkline<D = any>({ recharts: R, data, dataKey, width, height, color, fill, interactive, className, ariaLabel, }: SparklineProps<D>): react_jsx_runtime.JSX.Element;
105
125
 
106
126
  export { AreaChart, type AreaChartProps, type AxisInterval, BarChart, type BarChartProps, type BaseChartProps, type CartesianChartProps, DonutChart, type DonutChartProps, LineChart, type LineChartProps, type RechartsLike, Sparkline, type SparklineProps };
@@ -1,30 +1,30 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunk2ET7IM4U_js = require('../chunk-2ET7IM4U.js');
4
+ var chunkK4VUQFUA_js = require('../chunk-K4VUQFUA.js');
5
5
  require('../chunk-PASF6T4H.js');
6
6
 
7
7
 
8
8
 
9
9
  Object.defineProperty(exports, "AreaChart", {
10
10
  enumerable: true,
11
- get: function () { return chunk2ET7IM4U_js.AreaChart; }
11
+ get: function () { return chunkK4VUQFUA_js.AreaChart; }
12
12
  });
13
13
  Object.defineProperty(exports, "BarChart", {
14
14
  enumerable: true,
15
- get: function () { return chunk2ET7IM4U_js.BarChart; }
15
+ get: function () { return chunkK4VUQFUA_js.BarChart; }
16
16
  });
17
17
  Object.defineProperty(exports, "DonutChart", {
18
18
  enumerable: true,
19
- get: function () { return chunk2ET7IM4U_js.DonutChart; }
19
+ get: function () { return chunkK4VUQFUA_js.DonutChart; }
20
20
  });
21
21
  Object.defineProperty(exports, "LineChart", {
22
22
  enumerable: true,
23
- get: function () { return chunk2ET7IM4U_js.LineChart; }
23
+ get: function () { return chunkK4VUQFUA_js.LineChart; }
24
24
  });
25
25
  Object.defineProperty(exports, "Sparkline", {
26
26
  enumerable: true,
27
- get: function () { return chunk2ET7IM4U_js.Sparkline; }
27
+ get: function () { return chunkK4VUQFUA_js.Sparkline; }
28
28
  });
29
29
  //# sourceMappingURL=Charts.js.map
30
30
  //# sourceMappingURL=Charts.js.map
@@ -1,5 +1,5 @@
1
1
  'use client';
2
- export { AreaChart, BarChart, DonutChart, LineChart, Sparkline } from '../chunk-EJY4QWHT.mjs';
2
+ export { AreaChart, BarChart, DonutChart, LineChart, Sparkline } from '../chunk-2GCYYHNG.mjs';
3
3
  import '../chunk-IEPCH3JB.mjs';
4
4
  //# sourceMappingURL=Charts.mjs.map
5
5
  //# sourceMappingURL=Charts.mjs.map
@@ -1,15 +1,15 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunkNUTHJQYH_js = require('../chunk-NUTHJQYH.js');
5
- require('../chunk-324O7B3R.js');
4
+ var chunkJNISZPSL_js = require('../chunk-JNISZPSL.js');
5
+ require('../chunk-X4EESFGG.js');
6
6
  require('../chunk-AB52PRTH.js');
7
7
  require('../chunk-3PXYCXDW.js');
8
8
  require('../chunk-HT43MPKW.js');
9
+ require('../chunk-55P5FA5Q.js');
9
10
  require('../chunk-D2H4VZVL.js');
10
11
  require('../chunk-FL4ZCWUF.js');
11
12
  require('../chunk-NPXEZCTA.js');
12
- require('../chunk-55P5FA5Q.js');
13
13
  require('../chunk-6D5UP23V.js');
14
14
  require('../chunk-DKOAATV2.js');
15
15
  require('../chunk-XMLBKK7X.js');
@@ -21,47 +21,47 @@ require('../chunk-PASF6T4H.js');
21
21
 
22
22
  Object.defineProperty(exports, "AddressForm", {
23
23
  enumerable: true,
24
- get: function () { return chunkNUTHJQYH_js.AddressForm; }
24
+ get: function () { return chunkJNISZPSL_js.AddressForm; }
25
25
  });
26
26
  Object.defineProperty(exports, "CartDrawer", {
27
27
  enumerable: true,
28
- get: function () { return chunkNUTHJQYH_js.CartDrawer; }
28
+ get: function () { return chunkJNISZPSL_js.CartDrawer; }
29
29
  });
30
30
  Object.defineProperty(exports, "CompareTable", {
31
31
  enumerable: true,
32
- get: function () { return chunkNUTHJQYH_js.CompareTable; }
32
+ get: function () { return chunkJNISZPSL_js.CompareTable; }
33
33
  });
34
34
  Object.defineProperty(exports, "FreeShippingProgress", {
35
35
  enumerable: true,
36
- get: function () { return chunkNUTHJQYH_js.FreeShippingProgress; }
36
+ get: function () { return chunkJNISZPSL_js.FreeShippingProgress; }
37
37
  });
38
38
  Object.defineProperty(exports, "OrderSummary", {
39
39
  enumerable: true,
40
- get: function () { return chunkNUTHJQYH_js.OrderSummary; }
40
+ get: function () { return chunkJNISZPSL_js.OrderSummary; }
41
41
  });
42
42
  Object.defineProperty(exports, "PriceDisplay", {
43
43
  enumerable: true,
44
- get: function () { return chunkNUTHJQYH_js.PriceDisplay; }
44
+ get: function () { return chunkJNISZPSL_js.PriceDisplay; }
45
45
  });
46
46
  Object.defineProperty(exports, "PromoCodeInput", {
47
47
  enumerable: true,
48
- get: function () { return chunkNUTHJQYH_js.PromoCodeInput; }
48
+ get: function () { return chunkJNISZPSL_js.PromoCodeInput; }
49
49
  });
50
50
  Object.defineProperty(exports, "QuantitySelector", {
51
51
  enumerable: true,
52
- get: function () { return chunkNUTHJQYH_js.QuantitySelector; }
52
+ get: function () { return chunkJNISZPSL_js.QuantitySelector; }
53
53
  });
54
54
  Object.defineProperty(exports, "Rating", {
55
55
  enumerable: true,
56
- get: function () { return chunkNUTHJQYH_js.Rating; }
56
+ get: function () { return chunkJNISZPSL_js.Rating; }
57
57
  });
58
58
  Object.defineProperty(exports, "VariantSelector", {
59
59
  enumerable: true,
60
- get: function () { return chunkNUTHJQYH_js.VariantSelector; }
60
+ get: function () { return chunkJNISZPSL_js.VariantSelector; }
61
61
  });
62
62
  Object.defineProperty(exports, "WishlistButton", {
63
63
  enumerable: true,
64
- get: function () { return chunkNUTHJQYH_js.WishlistButton; }
64
+ get: function () { return chunkJNISZPSL_js.WishlistButton; }
65
65
  });
66
66
  //# sourceMappingURL=Commerce.js.map
67
67
  //# sourceMappingURL=Commerce.js.map
@@ -1,13 +1,13 @@
1
1
  'use client';
2
- export { AddressForm, CartDrawer, CompareTable, FreeShippingProgress, OrderSummary, PriceDisplay, PromoCodeInput, QuantitySelector, Rating, VariantSelector, WishlistButton } from '../chunk-5G3DVB5B.mjs';
3
- import '../chunk-DLPTIVZB.mjs';
2
+ export { AddressForm, CartDrawer, CompareTable, FreeShippingProgress, OrderSummary, PriceDisplay, PromoCodeInput, QuantitySelector, Rating, VariantSelector, WishlistButton } from '../chunk-GL5C55DU.mjs';
3
+ import '../chunk-NHSPQDB2.mjs';
4
4
  import '../chunk-IGNKSI2E.mjs';
5
5
  import '../chunk-5GEWIK4T.mjs';
6
6
  import '../chunk-JT6OOSI2.mjs';
7
+ import '../chunk-XOV4D6J3.mjs';
7
8
  import '../chunk-R5DCDEB5.mjs';
8
9
  import '../chunk-U3JH4T3A.mjs';
9
10
  import '../chunk-6W7ZGWNA.mjs';
10
- import '../chunk-XOV4D6J3.mjs';
11
11
  import '../chunk-YTKPENNW.mjs';
12
12
  import '../chunk-OOIRRKJ7.mjs';
13
13
  import '../chunk-6P2TKRTL.mjs';
@@ -1,14 +1,14 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunkE6BTT4I7_js = require('../chunk-E6BTT4I7.js');
5
- require('../chunk-324O7B3R.js');
4
+ var chunkV7MNWM6L_js = require('../chunk-V7MNWM6L.js');
5
+ require('../chunk-X4EESFGG.js');
6
6
  require('../chunk-6SSTTJV4.js');
7
7
  require('../chunk-HT43MPKW.js');
8
+ require('../chunk-55P5FA5Q.js');
8
9
  require('../chunk-D2H4VZVL.js');
9
10
  require('../chunk-FL4ZCWUF.js');
10
11
  require('../chunk-NPXEZCTA.js');
11
- require('../chunk-55P5FA5Q.js');
12
12
  require('../chunk-6D5UP23V.js');
13
13
  require('../chunk-DKOAATV2.js');
14
14
  require('../chunk-XMLBKK7X.js');
@@ -20,27 +20,27 @@ require('../chunk-PASF6T4H.js');
20
20
 
21
21
  Object.defineProperty(exports, "ConfirmDialog", {
22
22
  enumerable: true,
23
- get: function () { return chunkE6BTT4I7_js.ConfirmDialog; }
23
+ get: function () { return chunkV7MNWM6L_js.ConfirmDialog; }
24
24
  });
25
25
  Object.defineProperty(exports, "DescriptionList", {
26
26
  enumerable: true,
27
- get: function () { return chunkE6BTT4I7_js.DescriptionList; }
27
+ get: function () { return chunkV7MNWM6L_js.DescriptionList; }
28
28
  });
29
29
  Object.defineProperty(exports, "DescriptionListItem", {
30
30
  enumerable: true,
31
- get: function () { return chunkE6BTT4I7_js.DescriptionListItem; }
31
+ get: function () { return chunkV7MNWM6L_js.DescriptionListItem; }
32
32
  });
33
33
  Object.defineProperty(exports, "DiffViewer", {
34
34
  enumerable: true,
35
- get: function () { return chunkE6BTT4I7_js.DiffViewer; }
35
+ get: function () { return chunkV7MNWM6L_js.DiffViewer; }
36
36
  });
37
37
  Object.defineProperty(exports, "EditableCell", {
38
38
  enumerable: true,
39
- get: function () { return chunkE6BTT4I7_js.EditableCell; }
39
+ get: function () { return chunkV7MNWM6L_js.EditableCell; }
40
40
  });
41
41
  Object.defineProperty(exports, "TransferList", {
42
42
  enumerable: true,
43
- get: function () { return chunkE6BTT4I7_js.TransferList; }
43
+ get: function () { return chunkV7MNWM6L_js.TransferList; }
44
44
  });
45
45
  //# sourceMappingURL=Editing.js.map
46
46
  //# sourceMappingURL=Editing.js.map
@@ -1,12 +1,12 @@
1
1
  'use client';
2
- export { ConfirmDialog, DescriptionList, DescriptionListItem, DiffViewer, EditableCell, TransferList } from '../chunk-GNI5MH36.mjs';
3
- import '../chunk-DLPTIVZB.mjs';
2
+ export { ConfirmDialog, DescriptionList, DescriptionListItem, DiffViewer, EditableCell, TransferList } from '../chunk-YKFZCOOB.mjs';
3
+ import '../chunk-NHSPQDB2.mjs';
4
4
  import '../chunk-SUQLII3F.mjs';
5
5
  import '../chunk-JT6OOSI2.mjs';
6
+ import '../chunk-XOV4D6J3.mjs';
6
7
  import '../chunk-R5DCDEB5.mjs';
7
8
  import '../chunk-U3JH4T3A.mjs';
8
9
  import '../chunk-6W7ZGWNA.mjs';
9
- import '../chunk-XOV4D6J3.mjs';
10
10
  import '../chunk-YTKPENNW.mjs';
11
11
  import '../chunk-OOIRRKJ7.mjs';
12
12
  import '../chunk-6P2TKRTL.mjs';
@@ -1,12 +1,12 @@
1
1
  'use client';
2
2
  'use strict';
3
3
 
4
- var chunk324O7B3R_js = require('../chunk-324O7B3R.js');
4
+ var chunkX4EESFGG_js = require('../chunk-X4EESFGG.js');
5
5
  require('../chunk-HT43MPKW.js');
6
+ require('../chunk-55P5FA5Q.js');
6
7
  require('../chunk-D2H4VZVL.js');
7
8
  require('../chunk-FL4ZCWUF.js');
8
9
  require('../chunk-NPXEZCTA.js');
9
- require('../chunk-55P5FA5Q.js');
10
10
  require('../chunk-6D5UP23V.js');
11
11
  require('../chunk-DKOAATV2.js');
12
12
  require('../chunk-XMLBKK7X.js');
@@ -18,11 +18,11 @@ require('../chunk-PASF6T4H.js');
18
18
 
19
19
  Object.defineProperty(exports, "Drawer", {
20
20
  enumerable: true,
21
- get: function () { return chunk324O7B3R_js.Drawer; }
21
+ get: function () { return chunkX4EESFGG_js.Drawer; }
22
22
  });
23
23
  Object.defineProperty(exports, "Modal", {
24
24
  enumerable: true,
25
- get: function () { return chunk324O7B3R_js.Modal; }
25
+ get: function () { return chunkX4EESFGG_js.Modal; }
26
26
  });
27
27
  //# sourceMappingURL=Overlay.js.map
28
28
  //# sourceMappingURL=Overlay.js.map
@@ -1,10 +1,10 @@
1
1
  'use client';
2
- export { Drawer, Modal } from '../chunk-DLPTIVZB.mjs';
2
+ export { Drawer, Modal } from '../chunk-NHSPQDB2.mjs';
3
3
  import '../chunk-JT6OOSI2.mjs';
4
+ import '../chunk-XOV4D6J3.mjs';
4
5
  import '../chunk-R5DCDEB5.mjs';
5
6
  import '../chunk-U3JH4T3A.mjs';
6
7
  import '../chunk-6W7ZGWNA.mjs';
7
- import '../chunk-XOV4D6J3.mjs';
8
8
  import '../chunk-YTKPENNW.mjs';
9
9
  import '../chunk-OOIRRKJ7.mjs';
10
10
  import '../chunk-6P2TKRTL.mjs';
@@ -2,16 +2,20 @@
2
2
  'use strict';
3
3
 
4
4
  require('../chunk-HT43MPKW.js');
5
+ var chunk55P5FA5Q_js = require('../chunk-55P5FA5Q.js');
5
6
  var chunkD2H4VZVL_js = require('../chunk-D2H4VZVL.js');
6
7
  var chunkFL4ZCWUF_js = require('../chunk-FL4ZCWUF.js');
7
8
  var chunkNPXEZCTA_js = require('../chunk-NPXEZCTA.js');
8
- var chunk55P5FA5Q_js = require('../chunk-55P5FA5Q.js');
9
9
  var chunk6D5UP23V_js = require('../chunk-6D5UP23V.js');
10
10
  var chunkXMLBKK7X_js = require('../chunk-XMLBKK7X.js');
11
11
  var chunkCRKYET66_js = require('../chunk-CRKYET66.js');
12
12
 
13
13
 
14
14
 
15
+ Object.defineProperty(exports, "useFocusTrap", {
16
+ enumerable: true,
17
+ get: function () { return chunk55P5FA5Q_js.useFocusTrap; }
18
+ });
15
19
  Object.defineProperty(exports, "useScrollLock", {
16
20
  enumerable: true,
17
21
  get: function () { return chunkD2H4VZVL_js.useScrollLock; }
@@ -24,10 +28,6 @@ Object.defineProperty(exports, "useEscape", {
24
28
  enumerable: true,
25
29
  get: function () { return chunkNPXEZCTA_js.useEscape; }
26
30
  });
27
- Object.defineProperty(exports, "useFocusTrap", {
28
- enumerable: true,
29
- get: function () { return chunk55P5FA5Q_js.useFocusTrap; }
30
- });
31
31
  Object.defineProperty(exports, "useVirtualRows", {
32
32
  enumerable: true,
33
33
  get: function () { return chunk6D5UP23V_js.useVirtualRows; }
@@ -1,9 +1,9 @@
1
1
  'use client';
2
2
  import '../chunk-JT6OOSI2.mjs';
3
+ export { useFocusTrap } from '../chunk-XOV4D6J3.mjs';
3
4
  export { useScrollLock } from '../chunk-R5DCDEB5.mjs';
4
5
  export { useDelayedUnmount } from '../chunk-U3JH4T3A.mjs';
5
6
  export { useEscape } from '../chunk-6W7ZGWNA.mjs';
6
- export { useFocusTrap } from '../chunk-XOV4D6J3.mjs';
7
7
  export { useVirtualRows } from '../chunk-YTKPENNW.mjs';
8
8
  export { useDismiss } from '../chunk-6P2TKRTL.mjs';
9
9
  export { usePopoverPosition } from '../chunk-5XT2LX3I.mjs';
package/dist/index.d.mts CHANGED
@@ -15,7 +15,7 @@ export { Combobox, ComboboxOption, ComboboxProps, DatePicker, DatePickerProps, F
15
15
  export { Accordion, AccordionItem, AccordionProps, BreadcrumbItem, Breadcrumbs, Column, ColumnToggle, ColumnToggleProps, DataTable, DataTableProps, TablePagination, TablePaginationProps, TableToolbar } from './components/DataTable.mjs';
16
16
  export { CheckboxGroup, CheckboxGroupProps, MoneyInput, MoneyInputProps, OptionItem, PhoneInput, PhoneInputProps, Progress, ProgressCircle, ProgressCircleProps, ProgressProps, RadioGroup, RadioGroupProps, Slider, SliderProps, TagInput, TagInputProps, TimeGranularity, TimePicker, TimePickerProps } from './components/InputsExtra.mjs';
17
17
  export { Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Menu, MenuItemProps, MenuProps, Stat, StatProps } from './components/Display2.mjs';
18
- export { CommandItem, CommandPalette, CommandPaletteProps, DateRange, DateRangePicker, DateRangePickerProps, MultiCombobox, MultiComboboxOption, MultiComboboxProps, UseCommandPaletteOptions, useCommandPalette } from './components/AdvancedPickers.mjs';
18
+ export { CommandItem, CommandPalette, CommandPaletteProps, DateRange, DateRangePicker, DateRangePickerProps, DateRangePresetItem, DateRangePresetKey, DateRangePresetsOptions, MultiCombobox, MultiComboboxOption, MultiComboboxProps, UseCommandPaletteOptions, dateRangePresets, useCommandPalette } from './components/AdvancedPickers.mjs';
19
19
  export { AppShell, AppShellHeader, AppShellHeaderApi, AppShellHeaderSlot, AppShellProps, AppShellTheme, NavItem, NavSection, PageHeader, PageHeaderProps } from './components/AppShell.mjs';
20
20
  export { AreaChart, AreaChartProps, AxisInterval, BarChart, BarChartProps, BaseChartProps, CartesianChartProps, DonutChart, DonutChartProps, LineChart, LineChartProps, RechartsLike, Sparkline, SparklineProps } from './components/Charts.mjs';
21
21
  export { BulletChart, BulletChartProps, BulletTone, CalendarHeatmap, CalendarHeatmapProps, DeltaBadge, DeltaBadgeProps, DeltaTone, HeatmapCell, Meter, MeterOptimum, MeterProps, ProportionBar, ProportionBarProps, ProportionSegment, Sparkbar, SparkbarProps, StatCard, StatCardProps } from './components/Metrics.mjs';
package/dist/index.d.ts CHANGED
@@ -15,7 +15,7 @@ export { Combobox, ComboboxOption, ComboboxProps, DatePicker, DatePickerProps, F
15
15
  export { Accordion, AccordionItem, AccordionProps, BreadcrumbItem, Breadcrumbs, Column, ColumnToggle, ColumnToggleProps, DataTable, DataTableProps, TablePagination, TablePaginationProps, TableToolbar } from './components/DataTable.js';
16
16
  export { CheckboxGroup, CheckboxGroupProps, MoneyInput, MoneyInputProps, OptionItem, PhoneInput, PhoneInputProps, Progress, ProgressCircle, ProgressCircleProps, ProgressProps, RadioGroup, RadioGroupProps, Slider, SliderProps, TagInput, TagInputProps, TimeGranularity, TimePicker, TimePickerProps } from './components/InputsExtra.js';
17
17
  export { Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Menu, MenuItemProps, MenuProps, Stat, StatProps } from './components/Display2.js';
18
- export { CommandItem, CommandPalette, CommandPaletteProps, DateRange, DateRangePicker, DateRangePickerProps, MultiCombobox, MultiComboboxOption, MultiComboboxProps, UseCommandPaletteOptions, useCommandPalette } from './components/AdvancedPickers.js';
18
+ export { CommandItem, CommandPalette, CommandPaletteProps, DateRange, DateRangePicker, DateRangePickerProps, DateRangePresetItem, DateRangePresetKey, DateRangePresetsOptions, MultiCombobox, MultiComboboxOption, MultiComboboxProps, UseCommandPaletteOptions, dateRangePresets, useCommandPalette } from './components/AdvancedPickers.js';
19
19
  export { AppShell, AppShellHeader, AppShellHeaderApi, AppShellHeaderSlot, AppShellProps, AppShellTheme, NavItem, NavSection, PageHeader, PageHeaderProps } from './components/AppShell.js';
20
20
  export { AreaChart, AreaChartProps, AxisInterval, BarChart, BarChartProps, BaseChartProps, CartesianChartProps, DonutChart, DonutChartProps, LineChart, LineChartProps, RechartsLike, Sparkline, SparklineProps } from './components/Charts.js';
21
21
  export { BulletChart, BulletChartProps, BulletTone, CalendarHeatmap, CalendarHeatmapProps, DeltaBadge, DeltaBadgeProps, DeltaTone, HeatmapCell, Meter, MeterOptimum, MeterProps, ProportionBar, ProportionBarProps, ProportionSegment, Sparkbar, SparkbarProps, StatCard, StatCardProps } from './components/Metrics.js';
package/dist/index.js CHANGED
@@ -2,11 +2,11 @@
2
2
  'use strict';
3
3
 
4
4
  require('./chunk-2LTV7VB5.js');
5
- require('./chunk-4REALDR3.js');
6
5
  var chunk7AJAQJOX_js = require('./chunk-7AJAQJOX.js');
7
6
  var chunkUW5DUEXJ_js = require('./chunk-UW5DUEXJ.js');
8
7
  var chunk7CA4IMXM_js = require('./chunk-7CA4IMXM.js');
9
8
  var chunkNBWCHPRN_js = require('./chunk-NBWCHPRN.js');
9
+ require('./chunk-4REALDR3.js');
10
10
  var chunkRPNLDCRV_js = require('./chunk-RPNLDCRV.js');
11
11
  var chunkEHTHHF2P_js = require('./chunk-EHTHHF2P.js');
12
12
  var chunkVFZ7VMU2_js = require('./chunk-VFZ7VMU2.js');
@@ -20,7 +20,7 @@ var chunkBULIPFOG_js = require('./chunk-BULIPFOG.js');
20
20
  var chunkCTOPKHEE_js = require('./chunk-CTOPKHEE.js');
21
21
  var chunkTX4BUYX4_js = require('./chunk-TX4BUYX4.js');
22
22
  var chunkHYB7EXRB_js = require('./chunk-HYB7EXRB.js');
23
- var chunkE6BTT4I7_js = require('./chunk-E6BTT4I7.js');
23
+ var chunkV7MNWM6L_js = require('./chunk-V7MNWM6L.js');
24
24
  var chunk53MN366Q_js = require('./chunk-53MN366Q.js');
25
25
  var chunkDF4CKUI6_js = require('./chunk-DF4CKUI6.js');
26
26
  var chunk3JRP3DGM_js = require('./chunk-3JRP3DGM.js');
@@ -28,8 +28,8 @@ var chunk6II4NJQM_js = require('./chunk-6II4NJQM.js');
28
28
  var chunkJKBJ2AKX_js = require('./chunk-JKBJ2AKX.js');
29
29
  var chunkZKDKPBUN_js = require('./chunk-ZKDKPBUN.js');
30
30
  var chunkUROEA7L4_js = require('./chunk-UROEA7L4.js');
31
- var chunkNUTHJQYH_js = require('./chunk-NUTHJQYH.js');
32
- var chunk324O7B3R_js = require('./chunk-324O7B3R.js');
31
+ var chunkJNISZPSL_js = require('./chunk-JNISZPSL.js');
32
+ var chunkX4EESFGG_js = require('./chunk-X4EESFGG.js');
33
33
  var chunk2PNXLTEM_js = require('./chunk-2PNXLTEM.js');
34
34
  var chunk3N24QPRP_js = require('./chunk-3N24QPRP.js');
35
35
  var chunkMW7HQCFC_js = require('./chunk-MW7HQCFC.js');
@@ -37,17 +37,17 @@ var chunkDYYMUXKH_js = require('./chunk-DYYMUXKH.js');
37
37
  var chunk6SSTTJV4_js = require('./chunk-6SSTTJV4.js');
38
38
  var chunkIH7U4FJT_js = require('./chunk-IH7U4FJT.js');
39
39
  var chunkAGMDYCGG_js = require('./chunk-AGMDYCGG.js');
40
- var chunk3RB4OZTJ_js = require('./chunk-3RB4OZTJ.js');
40
+ var chunkFI2XCF3F_js = require('./chunk-FI2XCF3F.js');
41
41
  var chunkMUXOT5KS_js = require('./chunk-MUXOT5KS.js');
42
42
  var chunkAB52PRTH_js = require('./chunk-AB52PRTH.js');
43
43
  var chunkWAGWB35Q_js = require('./chunk-WAGWB35Q.js');
44
44
  var chunk3PXYCXDW_js = require('./chunk-3PXYCXDW.js');
45
- var chunkM7QZCHMM_js = require('./chunk-M7QZCHMM.js');
45
+ var chunkO4TKMQEY_js = require('./chunk-O4TKMQEY.js');
46
46
  require('./chunk-HT43MPKW.js');
47
+ require('./chunk-55P5FA5Q.js');
47
48
  require('./chunk-D2H4VZVL.js');
48
49
  require('./chunk-FL4ZCWUF.js');
49
50
  require('./chunk-NPXEZCTA.js');
50
- require('./chunk-55P5FA5Q.js');
51
51
  var chunk6D5UP23V_js = require('./chunk-6D5UP23V.js');
52
52
  var chunkDKOAATV2_js = require('./chunk-DKOAATV2.js');
53
53
  var chunkXMLBKK7X_js = require('./chunk-XMLBKK7X.js');
@@ -56,7 +56,7 @@ var chunkAJ22SXI2_js = require('./chunk-AJ22SXI2.js');
56
56
  var chunkEUB4PHPI_js = require('./chunk-EUB4PHPI.js');
57
57
  var chunkGGILBESE_js = require('./chunk-GGILBESE.js');
58
58
  var chunkC4AKMVDZ_js = require('./chunk-C4AKMVDZ.js');
59
- var chunk2ET7IM4U_js = require('./chunk-2ET7IM4U.js');
59
+ var chunkK4VUQFUA_js = require('./chunk-K4VUQFUA.js');
60
60
  var chunkPASF6T4H_js = require('./chunk-PASF6T4H.js');
61
61
 
62
62
 
@@ -351,27 +351,27 @@ Object.defineProperty(exports, "UserCell", {
351
351
  });
352
352
  Object.defineProperty(exports, "ConfirmDialog", {
353
353
  enumerable: true,
354
- get: function () { return chunkE6BTT4I7_js.ConfirmDialog; }
354
+ get: function () { return chunkV7MNWM6L_js.ConfirmDialog; }
355
355
  });
356
356
  Object.defineProperty(exports, "DescriptionList", {
357
357
  enumerable: true,
358
- get: function () { return chunkE6BTT4I7_js.DescriptionList; }
358
+ get: function () { return chunkV7MNWM6L_js.DescriptionList; }
359
359
  });
360
360
  Object.defineProperty(exports, "DescriptionListItem", {
361
361
  enumerable: true,
362
- get: function () { return chunkE6BTT4I7_js.DescriptionListItem; }
362
+ get: function () { return chunkV7MNWM6L_js.DescriptionListItem; }
363
363
  });
364
364
  Object.defineProperty(exports, "DiffViewer", {
365
365
  enumerable: true,
366
- get: function () { return chunkE6BTT4I7_js.DiffViewer; }
366
+ get: function () { return chunkV7MNWM6L_js.DiffViewer; }
367
367
  });
368
368
  Object.defineProperty(exports, "EditableCell", {
369
369
  enumerable: true,
370
- get: function () { return chunkE6BTT4I7_js.EditableCell; }
370
+ get: function () { return chunkV7MNWM6L_js.EditableCell; }
371
371
  });
372
372
  Object.defineProperty(exports, "TransferList", {
373
373
  enumerable: true,
374
- get: function () { return chunkE6BTT4I7_js.TransferList; }
374
+ get: function () { return chunkV7MNWM6L_js.TransferList; }
375
375
  });
376
376
  Object.defineProperty(exports, "BulkActionBar", {
377
377
  enumerable: true,
@@ -447,55 +447,55 @@ Object.defineProperty(exports, "_internal", {
447
447
  });
448
448
  Object.defineProperty(exports, "AddressForm", {
449
449
  enumerable: true,
450
- get: function () { return chunkNUTHJQYH_js.AddressForm; }
450
+ get: function () { return chunkJNISZPSL_js.AddressForm; }
451
451
  });
452
452
  Object.defineProperty(exports, "CartDrawer", {
453
453
  enumerable: true,
454
- get: function () { return chunkNUTHJQYH_js.CartDrawer; }
454
+ get: function () { return chunkJNISZPSL_js.CartDrawer; }
455
455
  });
456
456
  Object.defineProperty(exports, "CompareTable", {
457
457
  enumerable: true,
458
- get: function () { return chunkNUTHJQYH_js.CompareTable; }
458
+ get: function () { return chunkJNISZPSL_js.CompareTable; }
459
459
  });
460
460
  Object.defineProperty(exports, "FreeShippingProgress", {
461
461
  enumerable: true,
462
- get: function () { return chunkNUTHJQYH_js.FreeShippingProgress; }
462
+ get: function () { return chunkJNISZPSL_js.FreeShippingProgress; }
463
463
  });
464
464
  Object.defineProperty(exports, "OrderSummary", {
465
465
  enumerable: true,
466
- get: function () { return chunkNUTHJQYH_js.OrderSummary; }
466
+ get: function () { return chunkJNISZPSL_js.OrderSummary; }
467
467
  });
468
468
  Object.defineProperty(exports, "PriceDisplay", {
469
469
  enumerable: true,
470
- get: function () { return chunkNUTHJQYH_js.PriceDisplay; }
470
+ get: function () { return chunkJNISZPSL_js.PriceDisplay; }
471
471
  });
472
472
  Object.defineProperty(exports, "PromoCodeInput", {
473
473
  enumerable: true,
474
- get: function () { return chunkNUTHJQYH_js.PromoCodeInput; }
474
+ get: function () { return chunkJNISZPSL_js.PromoCodeInput; }
475
475
  });
476
476
  Object.defineProperty(exports, "QuantitySelector", {
477
477
  enumerable: true,
478
- get: function () { return chunkNUTHJQYH_js.QuantitySelector; }
478
+ get: function () { return chunkJNISZPSL_js.QuantitySelector; }
479
479
  });
480
480
  Object.defineProperty(exports, "Rating", {
481
481
  enumerable: true,
482
- get: function () { return chunkNUTHJQYH_js.Rating; }
482
+ get: function () { return chunkJNISZPSL_js.Rating; }
483
483
  });
484
484
  Object.defineProperty(exports, "VariantSelector", {
485
485
  enumerable: true,
486
- get: function () { return chunkNUTHJQYH_js.VariantSelector; }
486
+ get: function () { return chunkJNISZPSL_js.VariantSelector; }
487
487
  });
488
488
  Object.defineProperty(exports, "WishlistButton", {
489
489
  enumerable: true,
490
- get: function () { return chunkNUTHJQYH_js.WishlistButton; }
490
+ get: function () { return chunkJNISZPSL_js.WishlistButton; }
491
491
  });
492
492
  Object.defineProperty(exports, "Drawer", {
493
493
  enumerable: true,
494
- get: function () { return chunk324O7B3R_js.Drawer; }
494
+ get: function () { return chunkX4EESFGG_js.Drawer; }
495
495
  });
496
496
  Object.defineProperty(exports, "Modal", {
497
497
  enumerable: true,
498
- get: function () { return chunk324O7B3R_js.Modal; }
498
+ get: function () { return chunkX4EESFGG_js.Modal; }
499
499
  });
500
500
  Object.defineProperty(exports, "ContextMenu", {
501
501
  enumerable: true,
@@ -651,19 +651,23 @@ Object.defineProperty(exports, "Stat", {
651
651
  });
652
652
  Object.defineProperty(exports, "CommandPalette", {
653
653
  enumerable: true,
654
- get: function () { return chunk3RB4OZTJ_js.CommandPalette; }
654
+ get: function () { return chunkFI2XCF3F_js.CommandPalette; }
655
655
  });
656
656
  Object.defineProperty(exports, "DateRangePicker", {
657
657
  enumerable: true,
658
- get: function () { return chunk3RB4OZTJ_js.DateRangePicker; }
658
+ get: function () { return chunkFI2XCF3F_js.DateRangePicker; }
659
659
  });
660
660
  Object.defineProperty(exports, "MultiCombobox", {
661
661
  enumerable: true,
662
- get: function () { return chunk3RB4OZTJ_js.MultiCombobox; }
662
+ get: function () { return chunkFI2XCF3F_js.MultiCombobox; }
663
+ });
664
+ Object.defineProperty(exports, "dateRangePresets", {
665
+ enumerable: true,
666
+ get: function () { return chunkFI2XCF3F_js.dateRangePresets; }
663
667
  });
664
668
  Object.defineProperty(exports, "useCommandPalette", {
665
669
  enumerable: true,
666
- get: function () { return chunk3RB4OZTJ_js.useCommandPalette; }
670
+ get: function () { return chunkFI2XCF3F_js.useCommandPalette; }
667
671
  });
668
672
  Object.defineProperty(exports, "addMonths", {
669
673
  enumerable: true,
@@ -747,11 +751,11 @@ Object.defineProperty(exports, "resetBrand", {
747
751
  });
748
752
  Object.defineProperty(exports, "AppShell", {
749
753
  enumerable: true,
750
- get: function () { return chunkM7QZCHMM_js.AppShell; }
754
+ get: function () { return chunkO4TKMQEY_js.AppShell; }
751
755
  });
752
756
  Object.defineProperty(exports, "PageHeader", {
753
757
  enumerable: true,
754
- get: function () { return chunkM7QZCHMM_js.PageHeader; }
758
+ get: function () { return chunkO4TKMQEY_js.PageHeader; }
755
759
  });
756
760
  Object.defineProperty(exports, "useVirtualRows", {
757
761
  enumerable: true,
@@ -1107,23 +1111,23 @@ Object.defineProperty(exports, "X", {
1107
1111
  });
1108
1112
  Object.defineProperty(exports, "AreaChart", {
1109
1113
  enumerable: true,
1110
- get: function () { return chunk2ET7IM4U_js.AreaChart; }
1114
+ get: function () { return chunkK4VUQFUA_js.AreaChart; }
1111
1115
  });
1112
1116
  Object.defineProperty(exports, "BarChart", {
1113
1117
  enumerable: true,
1114
- get: function () { return chunk2ET7IM4U_js.BarChart; }
1118
+ get: function () { return chunkK4VUQFUA_js.BarChart; }
1115
1119
  });
1116
1120
  Object.defineProperty(exports, "DonutChart", {
1117
1121
  enumerable: true,
1118
- get: function () { return chunk2ET7IM4U_js.DonutChart; }
1122
+ get: function () { return chunkK4VUQFUA_js.DonutChart; }
1119
1123
  });
1120
1124
  Object.defineProperty(exports, "LineChart", {
1121
1125
  enumerable: true,
1122
- get: function () { return chunk2ET7IM4U_js.LineChart; }
1126
+ get: function () { return chunkK4VUQFUA_js.LineChart; }
1123
1127
  });
1124
1128
  Object.defineProperty(exports, "Sparkline", {
1125
1129
  enumerable: true,
1126
- get: function () { return chunk2ET7IM4U_js.Sparkline; }
1130
+ get: function () { return chunkK4VUQFUA_js.Sparkline; }
1127
1131
  });
1128
1132
  Object.defineProperty(exports, "cx", {
1129
1133
  enumerable: true,