@misael703/ui 1.50.0 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunk-6D5UP23V.js +63 -0
- package/dist/chunk-6D5UP23V.js.map +1 -0
- package/dist/{chunk-4N2PCBGA.mjs → chunk-CNV2E2M5.mjs} +51 -6
- package/dist/chunk-CNV2E2M5.mjs.map +1 -0
- package/dist/chunk-HT43MPKW.js +5 -0
- package/dist/{chunk-2KZ4NI3X.js.map → chunk-HT43MPKW.js.map} +1 -1
- package/dist/chunk-JT6OOSI2.mjs +4 -0
- package/dist/{chunk-QQE3XOEM.mjs.map → chunk-JT6OOSI2.mjs.map} +1 -1
- package/dist/{chunk-5LSPN6Q6.js → chunk-NBWCHPRN.js} +51 -6
- package/dist/chunk-NBWCHPRN.js.map +1 -0
- package/dist/{chunk-2IKGRN2O.js → chunk-UZX2SE42.js} +48 -34
- package/dist/chunk-UZX2SE42.js.map +1 -0
- package/dist/{chunk-LPKS5CM5.mjs → chunk-VNRZAYM7.mjs} +48 -34
- package/dist/chunk-VNRZAYM7.mjs.map +1 -0
- package/dist/chunk-YTKPENNW.mjs +41 -0
- package/dist/chunk-YTKPENNW.mjs.map +1 -0
- package/dist/components/AppShell.js +2 -1
- package/dist/components/AppShell.mjs +2 -1
- package/dist/components/Commerce.js +2 -1
- package/dist/components/Commerce.mjs +2 -1
- package/dist/components/DataTable.d.mts +19 -4
- package/dist/components/DataTable.d.ts +19 -4
- package/dist/components/DataTable.js +9 -8
- package/dist/components/DataTable.mjs +2 -1
- package/dist/components/Editing.js +2 -1
- package/dist/components/Editing.mjs +2 -1
- package/dist/components/Overlay.js +2 -1
- package/dist/components/Overlay.mjs +2 -1
- package/dist/components/Toggle.d.mts +7 -1
- package/dist/components/Toggle.d.ts +7 -1
- package/dist/components/Toggle.js +6 -6
- package/dist/components/Toggle.mjs +1 -1
- package/dist/hooks/index.d.mts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +6 -1
- package/dist/hooks/index.mjs +2 -1
- package/dist/hooks/useVirtualRows.d.mts +40 -0
- package/dist/hooks/useVirtualRows.d.ts +40 -0
- package/dist/hooks/useVirtualRows.js +13 -0
- package/dist/hooks/useVirtualRows.js.map +1 -0
- package/dist/hooks/useVirtualRows.mjs +4 -0
- package/dist/hooks/useVirtualRows.mjs.map +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +20 -15
- package/dist/index.mjs +4 -3
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/dist/chunk-2IKGRN2O.js.map +0 -1
- package/dist/chunk-2KZ4NI3X.js +0 -5
- package/dist/chunk-4N2PCBGA.mjs.map +0 -1
- package/dist/chunk-5LSPN6Q6.js.map +0 -1
- package/dist/chunk-LPKS5CM5.mjs.map +0 -1
- package/dist/chunk-QQE3XOEM.mjs +0 -4
|
@@ -18,6 +18,12 @@ interface ToggleGroupBaseProps {
|
|
|
18
18
|
className?: string;
|
|
19
19
|
ariaLabel?: string;
|
|
20
20
|
children: React.ReactNode;
|
|
21
|
+
/**
|
|
22
|
+
* Sliding active indicator: a single pill that animates between segments
|
|
23
|
+
* instead of the active item lighting up in place. Only meaningful for
|
|
24
|
+
* `type="single"`. On by default for `SegmentedControl`, off otherwise.
|
|
25
|
+
*/
|
|
26
|
+
indicator?: boolean;
|
|
21
27
|
}
|
|
22
28
|
interface ToggleGroupSingleProps extends ToggleGroupBaseProps {
|
|
23
29
|
type: 'single';
|
|
@@ -47,7 +53,7 @@ declare function ToggleGroup(props: ToggleGroupProps): react_jsx_runtime.JSX.Ele
|
|
|
47
53
|
* </SegmentedControl>
|
|
48
54
|
*/
|
|
49
55
|
type SegmentedControlProps = Omit<ToggleGroupSingleProps, 'type'>;
|
|
50
|
-
declare function SegmentedControl({ className, ...rest }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
|
|
56
|
+
declare function SegmentedControl({ className, indicator, ...rest }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
|
|
51
57
|
interface ToggleGroupItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'value'> {
|
|
52
58
|
value: string;
|
|
53
59
|
/**
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkNBWCHPRN_js = require('../chunk-NBWCHPRN.js');
|
|
5
5
|
require('../chunk-PASF6T4H.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "SegmentedControl", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkNBWCHPRN_js.SegmentedControl; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "SegmentedControlItem", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkNBWCHPRN_js.SegmentedControlItem; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "Toggle", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkNBWCHPRN_js.Toggle; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "ToggleGroup", {
|
|
22
22
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunkNBWCHPRN_js.ToggleGroup; }
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "ToggleGroupItem", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunkNBWCHPRN_js.ToggleGroupItem; }
|
|
28
28
|
});
|
|
29
29
|
//# sourceMappingURL=Toggle.js.map
|
|
30
30
|
//# sourceMappingURL=Toggle.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
export { SegmentedControl, SegmentedControlItem, Toggle, ToggleGroup, ToggleGroupItem } from '../chunk-
|
|
2
|
+
export { SegmentedControl, SegmentedControlItem, Toggle, ToggleGroup, ToggleGroupItem } from '../chunk-CNV2E2M5.mjs';
|
|
3
3
|
import '../chunk-IEPCH3JB.mjs';
|
|
4
4
|
//# sourceMappingURL=Toggle.mjs.map
|
|
5
5
|
//# sourceMappingURL=Toggle.mjs.map
|
package/dist/hooks/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { useDelayedUnmount } from './useDelayedUnmount.mjs';
|
|
2
2
|
export { PopoverAlign, PopoverPosition, PopoverSide, UsePopoverPositionOptions, VirtualElement, usePopoverPosition } from './usePopoverPosition.mjs';
|
|
3
3
|
export { UseDismissOptions, useDismiss } from './useDismiss.mjs';
|
|
4
|
+
export { UseVirtualRowsOptions, VirtualRowsRange, useVirtualRows } from './useVirtualRows.mjs';
|
|
4
5
|
export { useFocusTrap } from './useFocusTrap.mjs';
|
|
5
6
|
export { useEscape } from './useEscape.mjs';
|
|
6
7
|
export { useScrollLock } from './useScrollLock.mjs';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { useDelayedUnmount } from './useDelayedUnmount.js';
|
|
2
2
|
export { PopoverAlign, PopoverPosition, PopoverSide, UsePopoverPositionOptions, VirtualElement, usePopoverPosition } from './usePopoverPosition.js';
|
|
3
3
|
export { UseDismissOptions, useDismiss } from './useDismiss.js';
|
|
4
|
+
export { UseVirtualRowsOptions, VirtualRowsRange, useVirtualRows } from './useVirtualRows.js';
|
|
4
5
|
export { useFocusTrap } from './useFocusTrap.js';
|
|
5
6
|
export { useEscape } from './useEscape.js';
|
|
6
7
|
export { useScrollLock } from './useScrollLock.js';
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
require('../chunk-
|
|
4
|
+
require('../chunk-HT43MPKW.js');
|
|
5
5
|
var chunkD2H4VZVL_js = require('../chunk-D2H4VZVL.js');
|
|
6
6
|
var chunkFL4ZCWUF_js = require('../chunk-FL4ZCWUF.js');
|
|
7
7
|
var chunkNPXEZCTA_js = require('../chunk-NPXEZCTA.js');
|
|
8
8
|
var chunk55P5FA5Q_js = require('../chunk-55P5FA5Q.js');
|
|
9
|
+
var chunk6D5UP23V_js = require('../chunk-6D5UP23V.js');
|
|
9
10
|
var chunkXMLBKK7X_js = require('../chunk-XMLBKK7X.js');
|
|
10
11
|
var chunkCRKYET66_js = require('../chunk-CRKYET66.js');
|
|
11
12
|
|
|
@@ -27,6 +28,10 @@ Object.defineProperty(exports, "useFocusTrap", {
|
|
|
27
28
|
enumerable: true,
|
|
28
29
|
get: function () { return chunk55P5FA5Q_js.useFocusTrap; }
|
|
29
30
|
});
|
|
31
|
+
Object.defineProperty(exports, "useVirtualRows", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return chunk6D5UP23V_js.useVirtualRows; }
|
|
34
|
+
});
|
|
30
35
|
Object.defineProperty(exports, "useDismiss", {
|
|
31
36
|
enumerable: true,
|
|
32
37
|
get: function () { return chunkXMLBKK7X_js.useDismiss; }
|
package/dist/hooks/index.mjs
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import '../chunk-
|
|
2
|
+
import '../chunk-JT6OOSI2.mjs';
|
|
3
3
|
export { useScrollLock } from '../chunk-R5DCDEB5.mjs';
|
|
4
4
|
export { useDelayedUnmount } from '../chunk-U3JH4T3A.mjs';
|
|
5
5
|
export { useEscape } from '../chunk-6W7ZGWNA.mjs';
|
|
6
6
|
export { useFocusTrap } from '../chunk-XOV4D6J3.mjs';
|
|
7
|
+
export { useVirtualRows } from '../chunk-YTKPENNW.mjs';
|
|
7
8
|
export { useDismiss } from '../chunk-6P2TKRTL.mjs';
|
|
8
9
|
export { usePopoverPosition } from '../chunk-5XT2LX3I.mjs';
|
|
9
10
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Fixed-height row windowing, zero dependencies. Renders only the rows
|
|
5
|
+
* inside (viewport + overscan) and replaces the rest with two pixel-exact
|
|
6
|
+
* spacers, so a 10k-row table costs ~40 DOM rows.
|
|
7
|
+
*
|
|
8
|
+
* Deliberately FIXED-height only: variable heights need a measurement
|
|
9
|
+
* cache (tanstack-virtual territory) and the kit's dense table rows are
|
|
10
|
+
* uniform by design. Anything that breaks uniformity (row expansion,
|
|
11
|
+
* mobile cards, wrapping `comfortable` cells) must not be combined with
|
|
12
|
+
* this — `DataTable` gates those combinations off automatically.
|
|
13
|
+
*/
|
|
14
|
+
interface UseVirtualRowsOptions {
|
|
15
|
+
/** Total row count (the full dataset length, not the rendered window). */
|
|
16
|
+
count: number;
|
|
17
|
+
/** Fixed pixel height of every row. The math trusts it: measure once in devtools. */
|
|
18
|
+
rowHeight: number;
|
|
19
|
+
/** Extra rows rendered above/below the viewport. Default 6. */
|
|
20
|
+
overscan?: number;
|
|
21
|
+
/**
|
|
22
|
+
* When `false` the hook is inert and returns the full range with zero
|
|
23
|
+
* padding — callers keep one uniform render path instead of forking on
|
|
24
|
+
* "virtual or not" (hooks can't be called conditionally).
|
|
25
|
+
*/
|
|
26
|
+
enabled?: boolean;
|
|
27
|
+
}
|
|
28
|
+
interface VirtualRowsRange {
|
|
29
|
+
/** First rendered index (inclusive). */
|
|
30
|
+
start: number;
|
|
31
|
+
/** Last rendered index (exclusive). */
|
|
32
|
+
end: number;
|
|
33
|
+
/** Pixel height of the spacer above the window. */
|
|
34
|
+
padTop: number;
|
|
35
|
+
/** Pixel height of the spacer below the window. */
|
|
36
|
+
padBottom: number;
|
|
37
|
+
}
|
|
38
|
+
declare function useVirtualRows(scrollRef: React.RefObject<HTMLElement | null>, { count, rowHeight, overscan, enabled }: UseVirtualRowsOptions): VirtualRowsRange;
|
|
39
|
+
|
|
40
|
+
export { type UseVirtualRowsOptions, type VirtualRowsRange, useVirtualRows };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Fixed-height row windowing, zero dependencies. Renders only the rows
|
|
5
|
+
* inside (viewport + overscan) and replaces the rest with two pixel-exact
|
|
6
|
+
* spacers, so a 10k-row table costs ~40 DOM rows.
|
|
7
|
+
*
|
|
8
|
+
* Deliberately FIXED-height only: variable heights need a measurement
|
|
9
|
+
* cache (tanstack-virtual territory) and the kit's dense table rows are
|
|
10
|
+
* uniform by design. Anything that breaks uniformity (row expansion,
|
|
11
|
+
* mobile cards, wrapping `comfortable` cells) must not be combined with
|
|
12
|
+
* this — `DataTable` gates those combinations off automatically.
|
|
13
|
+
*/
|
|
14
|
+
interface UseVirtualRowsOptions {
|
|
15
|
+
/** Total row count (the full dataset length, not the rendered window). */
|
|
16
|
+
count: number;
|
|
17
|
+
/** Fixed pixel height of every row. The math trusts it: measure once in devtools. */
|
|
18
|
+
rowHeight: number;
|
|
19
|
+
/** Extra rows rendered above/below the viewport. Default 6. */
|
|
20
|
+
overscan?: number;
|
|
21
|
+
/**
|
|
22
|
+
* When `false` the hook is inert and returns the full range with zero
|
|
23
|
+
* padding — callers keep one uniform render path instead of forking on
|
|
24
|
+
* "virtual or not" (hooks can't be called conditionally).
|
|
25
|
+
*/
|
|
26
|
+
enabled?: boolean;
|
|
27
|
+
}
|
|
28
|
+
interface VirtualRowsRange {
|
|
29
|
+
/** First rendered index (inclusive). */
|
|
30
|
+
start: number;
|
|
31
|
+
/** Last rendered index (exclusive). */
|
|
32
|
+
end: number;
|
|
33
|
+
/** Pixel height of the spacer above the window. */
|
|
34
|
+
padTop: number;
|
|
35
|
+
/** Pixel height of the spacer below the window. */
|
|
36
|
+
padBottom: number;
|
|
37
|
+
}
|
|
38
|
+
declare function useVirtualRows(scrollRef: React.RefObject<HTMLElement | null>, { count, rowHeight, overscan, enabled }: UseVirtualRowsOptions): VirtualRowsRange;
|
|
39
|
+
|
|
40
|
+
export { type UseVirtualRowsOptions, type VirtualRowsRange, useVirtualRows };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var chunk6D5UP23V_js = require('../chunk-6D5UP23V.js');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "useVirtualRows", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunk6D5UP23V_js.useVirtualRows; }
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=useVirtualRows.js.map
|
|
13
|
+
//# sourceMappingURL=useVirtualRows.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"useVirtualRows.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"useVirtualRows.mjs"}
|
package/dist/index.d.mts
CHANGED
|
@@ -47,5 +47,6 @@ export { Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger }
|
|
|
47
47
|
export { Portal, PortalProps } from './components/Portal.mjs';
|
|
48
48
|
export { PopoverAlign, PopoverPosition, PopoverSide, UsePopoverPositionOptions, VirtualElement, usePopoverPosition } from './hooks/usePopoverPosition.mjs';
|
|
49
49
|
export { UseDismissOptions, useDismiss } from './hooks/useDismiss.mjs';
|
|
50
|
+
export { UseVirtualRowsOptions, VirtualRowsRange, useVirtualRows } from './hooks/useVirtualRows.mjs';
|
|
50
51
|
import 'react/jsx-runtime';
|
|
51
52
|
import 'react';
|
package/dist/index.d.ts
CHANGED
|
@@ -47,5 +47,6 @@ export { Collapsible, CollapsibleContent, CollapsibleProps, CollapsibleTrigger }
|
|
|
47
47
|
export { Portal, PortalProps } from './components/Portal.js';
|
|
48
48
|
export { PopoverAlign, PopoverPosition, PopoverSide, UsePopoverPositionOptions, VirtualElement, usePopoverPosition } from './hooks/usePopoverPosition.js';
|
|
49
49
|
export { UseDismissOptions, useDismiss } from './hooks/useDismiss.js';
|
|
50
|
+
export { UseVirtualRowsOptions, VirtualRowsRange, useVirtualRows } from './hooks/useVirtualRows.js';
|
|
50
51
|
import 'react/jsx-runtime';
|
|
51
52
|
import 'react';
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ require('./chunk-4REALDR3.js');
|
|
|
5
5
|
var chunkCTOPKHEE_js = require('./chunk-CTOPKHEE.js');
|
|
6
6
|
require('./chunk-2LTV7VB5.js');
|
|
7
7
|
var chunkL5R6FKHH_js = require('./chunk-L5R6FKHH.js');
|
|
8
|
-
var
|
|
8
|
+
var chunkNBWCHPRN_js = require('./chunk-NBWCHPRN.js');
|
|
9
9
|
var chunkEI2V2GGG_js = require('./chunk-EI2V2GGG.js');
|
|
10
10
|
var chunkMR2KQSBB_js = require('./chunk-MR2KQSBB.js');
|
|
11
11
|
var chunkQHRP73CS_js = require('./chunk-QHRP73CS.js');
|
|
@@ -30,7 +30,7 @@ var chunkMIUDP3FD_js = require('./chunk-MIUDP3FD.js');
|
|
|
30
30
|
var chunkQ4MSQLMS_js = require('./chunk-Q4MSQLMS.js');
|
|
31
31
|
var chunkT3IZPDGQ_js = require('./chunk-T3IZPDGQ.js');
|
|
32
32
|
var chunk2PNXLTEM_js = require('./chunk-2PNXLTEM.js');
|
|
33
|
-
var
|
|
33
|
+
var chunkUZX2SE42_js = require('./chunk-UZX2SE42.js');
|
|
34
34
|
var chunkMW7HQCFC_js = require('./chunk-MW7HQCFC.js');
|
|
35
35
|
var chunkAKUGR3AX_js = require('./chunk-AKUGR3AX.js');
|
|
36
36
|
var chunk6SSTTJV4_js = require('./chunk-6SSTTJV4.js');
|
|
@@ -42,11 +42,12 @@ var chunkJDK4GEME_js = require('./chunk-JDK4GEME.js');
|
|
|
42
42
|
var chunkWAGWB35Q_js = require('./chunk-WAGWB35Q.js');
|
|
43
43
|
var chunk3PXYCXDW_js = require('./chunk-3PXYCXDW.js');
|
|
44
44
|
var chunkCJLCPURD_js = require('./chunk-CJLCPURD.js');
|
|
45
|
-
require('./chunk-
|
|
45
|
+
require('./chunk-HT43MPKW.js');
|
|
46
46
|
require('./chunk-D2H4VZVL.js');
|
|
47
47
|
require('./chunk-FL4ZCWUF.js');
|
|
48
48
|
require('./chunk-NPXEZCTA.js');
|
|
49
49
|
require('./chunk-55P5FA5Q.js');
|
|
50
|
+
var chunk6D5UP23V_js = require('./chunk-6D5UP23V.js');
|
|
50
51
|
var chunkMJMLNETS_js = require('./chunk-MJMLNETS.js');
|
|
51
52
|
var chunkXMLBKK7X_js = require('./chunk-XMLBKK7X.js');
|
|
52
53
|
var chunkCRKYET66_js = require('./chunk-CRKYET66.js');
|
|
@@ -77,23 +78,23 @@ Object.defineProperty(exports, "useToast", {
|
|
|
77
78
|
});
|
|
78
79
|
Object.defineProperty(exports, "SegmentedControl", {
|
|
79
80
|
enumerable: true,
|
|
80
|
-
get: function () { return
|
|
81
|
+
get: function () { return chunkNBWCHPRN_js.SegmentedControl; }
|
|
81
82
|
});
|
|
82
83
|
Object.defineProperty(exports, "SegmentedControlItem", {
|
|
83
84
|
enumerable: true,
|
|
84
|
-
get: function () { return
|
|
85
|
+
get: function () { return chunkNBWCHPRN_js.SegmentedControlItem; }
|
|
85
86
|
});
|
|
86
87
|
Object.defineProperty(exports, "Toggle", {
|
|
87
88
|
enumerable: true,
|
|
88
|
-
get: function () { return
|
|
89
|
+
get: function () { return chunkNBWCHPRN_js.Toggle; }
|
|
89
90
|
});
|
|
90
91
|
Object.defineProperty(exports, "ToggleGroup", {
|
|
91
92
|
enumerable: true,
|
|
92
|
-
get: function () { return
|
|
93
|
+
get: function () { return chunkNBWCHPRN_js.ToggleGroup; }
|
|
93
94
|
});
|
|
94
95
|
Object.defineProperty(exports, "ToggleGroupItem", {
|
|
95
96
|
enumerable: true,
|
|
96
|
-
get: function () { return
|
|
97
|
+
get: function () { return chunkNBWCHPRN_js.ToggleGroupItem; }
|
|
97
98
|
});
|
|
98
99
|
Object.defineProperty(exports, "PermissionMatrix", {
|
|
99
100
|
enumerable: true,
|
|
@@ -473,31 +474,31 @@ Object.defineProperty(exports, "ContextMenu", {
|
|
|
473
474
|
});
|
|
474
475
|
Object.defineProperty(exports, "Accordion", {
|
|
475
476
|
enumerable: true,
|
|
476
|
-
get: function () { return
|
|
477
|
+
get: function () { return chunkUZX2SE42_js.Accordion; }
|
|
477
478
|
});
|
|
478
479
|
Object.defineProperty(exports, "AccordionItem", {
|
|
479
480
|
enumerable: true,
|
|
480
|
-
get: function () { return
|
|
481
|
+
get: function () { return chunkUZX2SE42_js.AccordionItem; }
|
|
481
482
|
});
|
|
482
483
|
Object.defineProperty(exports, "Breadcrumbs", {
|
|
483
484
|
enumerable: true,
|
|
484
|
-
get: function () { return
|
|
485
|
+
get: function () { return chunkUZX2SE42_js.Breadcrumbs; }
|
|
485
486
|
});
|
|
486
487
|
Object.defineProperty(exports, "ColumnToggle", {
|
|
487
488
|
enumerable: true,
|
|
488
|
-
get: function () { return
|
|
489
|
+
get: function () { return chunkUZX2SE42_js.ColumnToggle; }
|
|
489
490
|
});
|
|
490
491
|
Object.defineProperty(exports, "DataTable", {
|
|
491
492
|
enumerable: true,
|
|
492
|
-
get: function () { return
|
|
493
|
+
get: function () { return chunkUZX2SE42_js.DataTable; }
|
|
493
494
|
});
|
|
494
495
|
Object.defineProperty(exports, "TablePagination", {
|
|
495
496
|
enumerable: true,
|
|
496
|
-
get: function () { return
|
|
497
|
+
get: function () { return chunkUZX2SE42_js.TablePagination; }
|
|
497
498
|
});
|
|
498
499
|
Object.defineProperty(exports, "TableToolbar", {
|
|
499
500
|
enumerable: true,
|
|
500
|
-
get: function () { return
|
|
501
|
+
get: function () { return chunkUZX2SE42_js.TableToolbar; }
|
|
501
502
|
});
|
|
502
503
|
Object.defineProperty(exports, "Popover", {
|
|
503
504
|
enumerable: true,
|
|
@@ -719,6 +720,10 @@ Object.defineProperty(exports, "PageHeader", {
|
|
|
719
720
|
enumerable: true,
|
|
720
721
|
get: function () { return chunkCJLCPURD_js.PageHeader; }
|
|
721
722
|
});
|
|
723
|
+
Object.defineProperty(exports, "useVirtualRows", {
|
|
724
|
+
enumerable: true,
|
|
725
|
+
get: function () { return chunk6D5UP23V_js.useVirtualRows; }
|
|
726
|
+
});
|
|
722
727
|
Object.defineProperty(exports, "LocaleProvider", {
|
|
723
728
|
enumerable: true,
|
|
724
729
|
get: function () { return chunkMJMLNETS_js.LocaleProvider; }
|
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,7 @@ import './chunk-CHVTPN3K.mjs';
|
|
|
3
3
|
export { formatCurrency, formatNumber } from './chunk-WYOJ7YRQ.mjs';
|
|
4
4
|
import './chunk-XTHC46M2.mjs';
|
|
5
5
|
export { ToastProvider, useToast } from './chunk-JL77KUET.mjs';
|
|
6
|
-
export { SegmentedControl, SegmentedControlItem, Toggle, ToggleGroup, ToggleGroupItem } from './chunk-
|
|
6
|
+
export { SegmentedControl, SegmentedControlItem, Toggle, ToggleGroup, ToggleGroupItem } from './chunk-CNV2E2M5.mjs';
|
|
7
7
|
export { PermissionMatrix } from './chunk-C4XPGEU2.mjs';
|
|
8
8
|
export { Combobox, DatePicker, FileUpload, MonthPicker, YearPicker } from './chunk-MMFYXM3J.mjs';
|
|
9
9
|
export { ResizableGroup, ResizableHandle, ResizablePanel } from './chunk-ML5IYW5D.mjs';
|
|
@@ -28,7 +28,7 @@ export { AttachmentList, CommentThread, _internal } from './chunk-EE3VOAU4.mjs';
|
|
|
28
28
|
export { AddressForm, CartDrawer, CompareTable, FreeShippingProgress, OrderSummary, PriceDisplay, PromoCodeInput, QuantitySelector, Rating, VariantSelector, WishlistButton } from './chunk-3TS54SJB.mjs';
|
|
29
29
|
export { Drawer, Modal } from './chunk-AP655IUN.mjs';
|
|
30
30
|
export { ContextMenu } from './chunk-NS6CI6RP.mjs';
|
|
31
|
-
export { Accordion, AccordionItem, Breadcrumbs, ColumnToggle, DataTable, TablePagination, TableToolbar } from './chunk-
|
|
31
|
+
export { Accordion, AccordionItem, Breadcrumbs, ColumnToggle, DataTable, TablePagination, TableToolbar } from './chunk-VNRZAYM7.mjs';
|
|
32
32
|
export { Popover } from './chunk-FR4JV3JA.mjs';
|
|
33
33
|
export { EmptyState, Kpi, NumberInput, Pagination } from './chunk-YEIU5W7E.mjs';
|
|
34
34
|
export { Checkbox, FormField, Input, InputGroup, InputGroupAddon, Label, Radio, Select, Switch, Textarea } from './chunk-SUQLII3F.mjs';
|
|
@@ -40,11 +40,12 @@ export { format } from './chunk-SDR7JKDF.mjs';
|
|
|
40
40
|
export { Portal } from './chunk-FKBQYQQD.mjs';
|
|
41
41
|
export { BRAND_DEFAULTS, configureBrand, getBrand, resetBrand } from './chunk-5GEWIK4T.mjs';
|
|
42
42
|
export { AppShell, PageHeader } from './chunk-LDCG4KDI.mjs';
|
|
43
|
-
import './chunk-
|
|
43
|
+
import './chunk-JT6OOSI2.mjs';
|
|
44
44
|
import './chunk-R5DCDEB5.mjs';
|
|
45
45
|
import './chunk-U3JH4T3A.mjs';
|
|
46
46
|
import './chunk-6W7ZGWNA.mjs';
|
|
47
47
|
import './chunk-XOV4D6J3.mjs';
|
|
48
|
+
export { useVirtualRows } from './chunk-YTKPENNW.mjs';
|
|
48
49
|
export { LocaleProvider, esMessages, useLocale } from './chunk-H6ZT2DJ2.mjs';
|
|
49
50
|
export { useDismiss } from './chunk-6P2TKRTL.mjs';
|
|
50
51
|
export { usePopoverPosition } from './chunk-5XT2LX3I.mjs';
|