@saas-ui/react 3.0.0-next.7 → 3.0.0-next.9
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/CHANGELOG.md +12 -0
- package/dist/_tsup-dts-rollup.d.cts +10 -20
- package/dist/_tsup-dts-rollup.d.ts +10 -20
- package/dist/chunk-AA5L5WPD.js +9 -0
- package/dist/{chunk-PAFMCX5C.js → chunk-D72A4SU3.js} +1 -1
- package/dist/{chunk-Q7I3QDL4.js → chunk-FVUEAELO.js} +1 -8
- package/dist/{chunk-ZQ23HEVM.js → chunk-OWFY465Z.js} +6 -4
- package/dist/components/box/index.cjs +4 -2
- package/dist/components/box/index.d.cts +2 -0
- package/dist/components/box/index.d.ts +2 -0
- package/dist/components/box/index.js +5 -3
- package/dist/components/info-tip/index.cjs +6 -11
- package/dist/components/info-tip/index.js +4 -3
- package/dist/components/popover/index.cjs +1 -8
- package/dist/components/popover/index.js +1 -1
- package/dist/components/toggle-tip/index.cjs +6 -11
- package/dist/components/toggle-tip/index.js +3 -2
- package/dist/index.cjs +17 -23
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +90 -88
- package/package.json +1 -1
- package/dist/chunk-2YXHXL6J.js +0 -10
package/CHANGELOG.md
CHANGED
@@ -192,6 +192,8 @@ import { SlotRecipeProps as SlotRecipeProps_3 } from '@chakra-ui/react';
|
|
192
192
|
import { SlotRecipeVariantRecord } from '@chakra-ui/react';
|
193
193
|
import { Spacer } from '@chakra-ui/react/spacer';
|
194
194
|
import { SpacerProps } from '@chakra-ui/react/spacer';
|
195
|
+
import { Span } from '@chakra-ui/react/box';
|
196
|
+
import { SpanProps } from '@chakra-ui/react/box';
|
195
197
|
import { SpinnerProps as SpinnerProps_2 } from '#components/spinner';
|
196
198
|
import type { SpinnerProps as SpinnerProps_3 } from '@chakra-ui/react/spinner';
|
197
199
|
import { Stack } from '@chakra-ui/react/stack';
|
@@ -2805,23 +2807,10 @@ maxWidth: "full";
|
|
2805
2807
|
|
2806
2808
|
declare const Content_2 = forwardRef<HTMLDivElement, ContentProps_3>(
|
2807
2809
|
declare function PopoverContent(props, ref) {
|
2808
|
-
// TODO: fix this, somehow the experimental dts build fails when deconstructing props
|
2809
|
-
const portalled = props.portalled ?? false
|
2810
|
-
const portalRef = props.portalRef ?? undefined
|
2811
|
-
const children = props.children ?? null
|
2812
|
-
|
2813
|
-
delete props.portalled
|
2814
|
-
delete props.portalRef
|
2815
|
-
delete props.children
|
2816
|
-
|
2817
2810
|
return (
|
2818
|
-
<Portal disabled={!portalled} container={portalRef}>
|
2819
2811
|
<ChakraPopover.Positioner>
|
2820
|
-
<ChakraPopover.Content ref={ref} {...props}
|
2821
|
-
{children}
|
2822
|
-
</ChakraPopover.Content>
|
2812
|
+
<ChakraPopover.Content ref={ref} {...props} />
|
2823
2813
|
</ChakraPopover.Positioner>
|
2824
|
-
</Portal>
|
2825
2814
|
)
|
2826
2815
|
},
|
2827
2816
|
);
|
@@ -2847,10 +2836,7 @@ declare interface ContentProps_2 extends HoverCard_2.ContentProps {
|
|
2847
2836
|
portalRef?: React_2.RefObject<HTMLElement>;
|
2848
2837
|
}
|
2849
2838
|
|
2850
|
-
declare interface ContentProps_3 extends Popover_3.ContentProps {
|
2851
|
-
portalled?: boolean
|
2852
|
-
portalRef?: RefObject<HTMLElement>
|
2853
|
-
}
|
2839
|
+
declare interface ContentProps_3 extends Popover_3.ContentProps {}
|
2854
2840
|
|
2855
2841
|
export declare type ContentProps_alias_1 = ActionBarContentProps;
|
2856
2842
|
|
@@ -2872,8 +2858,6 @@ export declare interface ContentProps_alias_4 extends Menu_2.ContentProps {
|
|
2872
2858
|
}
|
2873
2859
|
|
2874
2860
|
export declare interface ContentProps_alias_5 extends Popover_3.ContentProps {
|
2875
|
-
portalled?: boolean;
|
2876
|
-
portalRef?: RefObject<HTMLElement>;
|
2877
2861
|
}
|
2878
2862
|
|
2879
2863
|
export declare const Context: (props: DialogContextProps) => ReactNode;
|
@@ -13748,6 +13732,12 @@ export declare const spacing: {
|
|
13748
13732
|
};
|
13749
13733
|
};
|
13750
13734
|
|
13735
|
+
export { Span }
|
13736
|
+
export { Span as Span_alias_1 }
|
13737
|
+
|
13738
|
+
export { SpanProps }
|
13739
|
+
export { SpanProps as SpanProps_alias_1 }
|
13740
|
+
|
13751
13741
|
declare const Spinner: ForwardRefExoticComponent<SpinnerProps & RefAttributes<HTMLDivElement>>;
|
13752
13742
|
export { Spinner }
|
13753
13743
|
export { Spinner as Spinner_alias_1 }
|
@@ -192,6 +192,8 @@ import { SlotRecipeProps as SlotRecipeProps_3 } from '@chakra-ui/react';
|
|
192
192
|
import { SlotRecipeVariantRecord } from '@chakra-ui/react';
|
193
193
|
import { Spacer } from '@chakra-ui/react/spacer';
|
194
194
|
import { SpacerProps } from '@chakra-ui/react/spacer';
|
195
|
+
import { Span } from '@chakra-ui/react/box';
|
196
|
+
import { SpanProps } from '@chakra-ui/react/box';
|
195
197
|
import { SpinnerProps as SpinnerProps_2 } from '#components/spinner';
|
196
198
|
import type { SpinnerProps as SpinnerProps_3 } from '@chakra-ui/react/spinner';
|
197
199
|
import { Stack } from '@chakra-ui/react/stack';
|
@@ -2805,23 +2807,10 @@ maxWidth: "full";
|
|
2805
2807
|
|
2806
2808
|
declare const Content_2 = forwardRef<HTMLDivElement, ContentProps_3>(
|
2807
2809
|
declare function PopoverContent(props, ref) {
|
2808
|
-
// TODO: fix this, somehow the experimental dts build fails when deconstructing props
|
2809
|
-
const portalled = props.portalled ?? false
|
2810
|
-
const portalRef = props.portalRef ?? undefined
|
2811
|
-
const children = props.children ?? null
|
2812
|
-
|
2813
|
-
delete props.portalled
|
2814
|
-
delete props.portalRef
|
2815
|
-
delete props.children
|
2816
|
-
|
2817
2810
|
return (
|
2818
|
-
<Portal disabled={!portalled} container={portalRef}>
|
2819
2811
|
<ChakraPopover.Positioner>
|
2820
|
-
<ChakraPopover.Content ref={ref} {...props}
|
2821
|
-
{children}
|
2822
|
-
</ChakraPopover.Content>
|
2812
|
+
<ChakraPopover.Content ref={ref} {...props} />
|
2823
2813
|
</ChakraPopover.Positioner>
|
2824
|
-
</Portal>
|
2825
2814
|
)
|
2826
2815
|
},
|
2827
2816
|
);
|
@@ -2847,10 +2836,7 @@ declare interface ContentProps_2 extends HoverCard_2.ContentProps {
|
|
2847
2836
|
portalRef?: React_2.RefObject<HTMLElement>;
|
2848
2837
|
}
|
2849
2838
|
|
2850
|
-
declare interface ContentProps_3 extends Popover_3.ContentProps {
|
2851
|
-
portalled?: boolean
|
2852
|
-
portalRef?: RefObject<HTMLElement>
|
2853
|
-
}
|
2839
|
+
declare interface ContentProps_3 extends Popover_3.ContentProps {}
|
2854
2840
|
|
2855
2841
|
export declare type ContentProps_alias_1 = ActionBarContentProps;
|
2856
2842
|
|
@@ -2872,8 +2858,6 @@ export declare interface ContentProps_alias_4 extends Menu_2.ContentProps {
|
|
2872
2858
|
}
|
2873
2859
|
|
2874
2860
|
export declare interface ContentProps_alias_5 extends Popover_3.ContentProps {
|
2875
|
-
portalled?: boolean;
|
2876
|
-
portalRef?: RefObject<HTMLElement>;
|
2877
2861
|
}
|
2878
2862
|
|
2879
2863
|
export declare const Context: (props: DialogContextProps) => ReactNode;
|
@@ -13748,6 +13732,12 @@ export declare const spacing: {
|
|
13748
13732
|
};
|
13749
13733
|
};
|
13750
13734
|
|
13735
|
+
export { Span }
|
13736
|
+
export { Span as Span_alias_1 }
|
13737
|
+
|
13738
|
+
export { SpanProps }
|
13739
|
+
export { SpanProps as SpanProps_alias_1 }
|
13740
|
+
|
13751
13741
|
declare const Spinner: ForwardRefExoticComponent<SpinnerProps & RefAttributes<HTMLDivElement>>;
|
13752
13742
|
export { Spinner }
|
13753
13743
|
export { Spinner as Spinner_alias_1 }
|
@@ -24,17 +24,10 @@ __export(popover_exports, {
|
|
24
24
|
});
|
25
25
|
import { forwardRef } from "react";
|
26
26
|
import { Popover as ChakraPopover } from "@chakra-ui/react/popover";
|
27
|
-
import { Portal } from "@chakra-ui/react/portal";
|
28
27
|
import { jsx } from "react/jsx-runtime";
|
29
28
|
var Content = forwardRef(
|
30
29
|
function PopoverContent(props, ref) {
|
31
|
-
|
32
|
-
const portalRef = props.portalRef ?? void 0;
|
33
|
-
const children = props.children ?? null;
|
34
|
-
delete props.portalled;
|
35
|
-
delete props.portalRef;
|
36
|
-
delete props.children;
|
37
|
-
return /* @__PURE__ */ jsx(Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ jsx(ChakraPopover.Positioner, { children: /* @__PURE__ */ jsx(ChakraPopover.Content, { ref, ...props, children }) }) });
|
30
|
+
return /* @__PURE__ */ jsx(ChakraPopover.Positioner, { children: /* @__PURE__ */ jsx(ChakraPopover.Content, { ref, ...props }) });
|
38
31
|
}
|
39
32
|
);
|
40
33
|
var Arrow = forwardRef(
|
@@ -1,7 +1,10 @@
|
|
1
1
|
'use client'
|
2
|
+
import {
|
3
|
+
Portal
|
4
|
+
} from "./chunk-UZUMIWPJ.js";
|
2
5
|
import {
|
3
6
|
popover_exports
|
4
|
-
} from "./chunk-
|
7
|
+
} from "./chunk-FVUEAELO.js";
|
5
8
|
|
6
9
|
// src/components/toggle-tip/toggle-tip.tsx
|
7
10
|
import * as React from "react";
|
@@ -18,7 +21,7 @@ var ToggleTip = React.forwardRef(
|
|
18
21
|
} = props;
|
19
22
|
return /* @__PURE__ */ jsxs(popover_exports.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [
|
20
23
|
/* @__PURE__ */ jsx(popover_exports.Trigger, { asChild: true, children }),
|
21
|
-
/* @__PURE__ */ jsxs(
|
24
|
+
/* @__PURE__ */ jsx(Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ jsxs(
|
22
25
|
popover_exports.Content,
|
23
26
|
{
|
24
27
|
width: "auto",
|
@@ -26,14 +29,13 @@ var ToggleTip = React.forwardRef(
|
|
26
29
|
py: "1",
|
27
30
|
textStyle: "xs",
|
28
31
|
rounded: "sm",
|
29
|
-
portalled,
|
30
32
|
ref,
|
31
33
|
children: [
|
32
34
|
showArrow && /* @__PURE__ */ jsx(popover_exports.Arrow, {}),
|
33
35
|
content
|
34
36
|
]
|
35
37
|
}
|
36
|
-
)
|
38
|
+
) })
|
37
39
|
] });
|
38
40
|
}
|
39
41
|
);
|
@@ -21,11 +21,13 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
21
21
|
// src/components/box/index.ts
|
22
22
|
var box_exports = {};
|
23
23
|
__export(box_exports, {
|
24
|
-
Box: () => import_box.Box
|
24
|
+
Box: () => import_box.Box,
|
25
|
+
Span: () => import_box.Span
|
25
26
|
});
|
26
27
|
module.exports = __toCommonJS(box_exports);
|
27
28
|
var import_box = require("@chakra-ui/react/box");
|
28
29
|
// Annotate the CommonJS export names for ESM import in node:
|
29
30
|
0 && (module.exports = {
|
30
|
-
Box
|
31
|
+
Box,
|
32
|
+
Span
|
31
33
|
});
|
@@ -1,2 +1,4 @@
|
|
1
1
|
export { Box_alias_1 as Box } from '../../_tsup-dts-rollup.cjs';
|
2
2
|
export { BoxProps_alias_1 as BoxProps } from '../../_tsup-dts-rollup.cjs';
|
3
|
+
export { Span_alias_1 as Span } from '../../_tsup-dts-rollup.cjs';
|
4
|
+
export { SpanProps_alias_1 as SpanProps } from '../../_tsup-dts-rollup.cjs';
|
@@ -1,2 +1,4 @@
|
|
1
1
|
export { Box_alias_1 as Box } from '../../_tsup-dts-rollup.js';
|
2
2
|
export { BoxProps_alias_1 as BoxProps } from '../../_tsup-dts-rollup.js';
|
3
|
+
export { Span_alias_1 as Span } from '../../_tsup-dts-rollup.js';
|
4
|
+
export { SpanProps_alias_1 as SpanProps } from '../../_tsup-dts-rollup.js';
|
@@ -211,7 +211,6 @@ __export(popover_exports, {
|
|
211
211
|
});
|
212
212
|
var import_react3 = require("react");
|
213
213
|
var import_popover = require("@chakra-ui/react/popover");
|
214
|
-
var import_portal = require("@chakra-ui/react/portal");
|
215
214
|
|
216
215
|
// src/components/close-button/close-button.tsx
|
217
216
|
var import_react2 = require("react");
|
@@ -226,13 +225,7 @@ var CloseButton = (0, import_react2.forwardRef)(
|
|
226
225
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
227
226
|
var Content = (0, import_react3.forwardRef)(
|
228
227
|
function PopoverContent(props, ref) {
|
229
|
-
|
230
|
-
const portalRef = props.portalRef ?? void 0;
|
231
|
-
const children = props.children ?? null;
|
232
|
-
delete props.portalled;
|
233
|
-
delete props.portalRef;
|
234
|
-
delete props.children;
|
235
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_portal.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Content, { ref, ...props, children }) }) });
|
228
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Content, { ref, ...props }) });
|
236
229
|
}
|
237
230
|
);
|
238
231
|
var Arrow = (0, import_react3.forwardRef)(
|
@@ -264,6 +257,9 @@ var Body = import_popover.Popover.Body;
|
|
264
257
|
var Trigger = import_popover.Popover.Trigger;
|
265
258
|
var Context = import_popover.Popover.Context;
|
266
259
|
|
260
|
+
// src/components/portal/index.ts
|
261
|
+
var import_portal = require("@chakra-ui/react/portal");
|
262
|
+
|
267
263
|
// src/components/toggle-tip/toggle-tip.tsx
|
268
264
|
var import_jsx_runtime5 = require("react/jsx-runtime");
|
269
265
|
var ToggleTip = React.forwardRef(
|
@@ -278,7 +274,7 @@ var ToggleTip = React.forwardRef(
|
|
278
274
|
} = props;
|
279
275
|
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(popover_exports.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [
|
280
276
|
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(popover_exports.Trigger, { asChild: true, children }),
|
281
|
-
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
277
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_portal.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
282
278
|
popover_exports.Content,
|
283
279
|
{
|
284
280
|
width: "auto",
|
@@ -286,14 +282,13 @@ var ToggleTip = React.forwardRef(
|
|
286
282
|
py: "1",
|
287
283
|
textStyle: "xs",
|
288
284
|
rounded: "sm",
|
289
|
-
portalled,
|
290
285
|
ref,
|
291
286
|
children: [
|
292
287
|
showArrow && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(popover_exports.Arrow, {}),
|
293
288
|
content
|
294
289
|
]
|
295
290
|
}
|
296
|
-
)
|
291
|
+
) })
|
297
292
|
] });
|
298
293
|
}
|
299
294
|
);
|
@@ -1,9 +1,10 @@
|
|
1
1
|
'use client'
|
2
2
|
import {
|
3
3
|
InfoTip
|
4
|
-
} from "../../chunk-
|
5
|
-
import "../../chunk-
|
6
|
-
import "../../chunk-
|
4
|
+
} from "../../chunk-D72A4SU3.js";
|
5
|
+
import "../../chunk-OWFY465Z.js";
|
6
|
+
import "../../chunk-UZUMIWPJ.js";
|
7
|
+
import "../../chunk-FVUEAELO.js";
|
7
8
|
import "../../chunk-KTLWEUNW.js";
|
8
9
|
import "../../chunk-JMYI6YXR.js";
|
9
10
|
import "../../chunk-U2CWQDXE.js";
|
@@ -43,7 +43,6 @@ __export(popover_exports, {
|
|
43
43
|
});
|
44
44
|
var import_react3 = require("react");
|
45
45
|
var import_popover = require("@chakra-ui/react/popover");
|
46
|
-
var import_portal = require("@chakra-ui/react/portal");
|
47
46
|
|
48
47
|
// src/components/close-button/close-button.tsx
|
49
48
|
var import_react2 = require("react");
|
@@ -212,13 +211,7 @@ var CloseButton = (0, import_react2.forwardRef)(
|
|
212
211
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
213
212
|
var Content = (0, import_react3.forwardRef)(
|
214
213
|
function PopoverContent(props, ref) {
|
215
|
-
|
216
|
-
const portalRef = props.portalRef ?? void 0;
|
217
|
-
const children = props.children ?? null;
|
218
|
-
delete props.portalled;
|
219
|
-
delete props.portalRef;
|
220
|
-
delete props.children;
|
221
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_portal.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Content, { ref, ...props, children }) }) });
|
214
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Content, { ref, ...props }) });
|
222
215
|
}
|
223
216
|
);
|
224
217
|
var Arrow = (0, import_react3.forwardRef)(
|
@@ -56,7 +56,6 @@ __export(popover_exports, {
|
|
56
56
|
});
|
57
57
|
var import_react3 = require("react");
|
58
58
|
var import_popover = require("@chakra-ui/react/popover");
|
59
|
-
var import_portal = require("@chakra-ui/react/portal");
|
60
59
|
|
61
60
|
// src/components/close-button/close-button.tsx
|
62
61
|
var import_react2 = require("react");
|
@@ -225,13 +224,7 @@ var CloseButton = (0, import_react2.forwardRef)(
|
|
225
224
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
226
225
|
var Content = (0, import_react3.forwardRef)(
|
227
226
|
function PopoverContent(props, ref) {
|
228
|
-
|
229
|
-
const portalRef = props.portalRef ?? void 0;
|
230
|
-
const children = props.children ?? null;
|
231
|
-
delete props.portalled;
|
232
|
-
delete props.portalRef;
|
233
|
-
delete props.children;
|
234
|
-
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_portal.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Content, { ref, ...props, children }) }) });
|
227
|
+
return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_popover.Popover.Content, { ref, ...props }) });
|
235
228
|
}
|
236
229
|
);
|
237
230
|
var Arrow = (0, import_react3.forwardRef)(
|
@@ -263,6 +256,9 @@ var Body = import_popover.Popover.Body;
|
|
263
256
|
var Trigger = import_popover.Popover.Trigger;
|
264
257
|
var Context = import_popover.Popover.Context;
|
265
258
|
|
259
|
+
// src/components/portal/index.ts
|
260
|
+
var import_portal = require("@chakra-ui/react/portal");
|
261
|
+
|
266
262
|
// src/components/toggle-tip/toggle-tip.tsx
|
267
263
|
var import_jsx_runtime5 = require("react/jsx-runtime");
|
268
264
|
var ToggleTip = React.forwardRef(
|
@@ -277,7 +273,7 @@ var ToggleTip = React.forwardRef(
|
|
277
273
|
} = props;
|
278
274
|
return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(popover_exports.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [
|
279
275
|
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(popover_exports.Trigger, { asChild: true, children }),
|
280
|
-
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
276
|
+
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(import_portal.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
|
281
277
|
popover_exports.Content,
|
282
278
|
{
|
283
279
|
width: "auto",
|
@@ -285,14 +281,13 @@ var ToggleTip = React.forwardRef(
|
|
285
281
|
py: "1",
|
286
282
|
textStyle: "xs",
|
287
283
|
rounded: "sm",
|
288
|
-
portalled,
|
289
284
|
ref,
|
290
285
|
children: [
|
291
286
|
showArrow && /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(popover_exports.Arrow, {}),
|
292
287
|
content
|
293
288
|
]
|
294
289
|
}
|
295
|
-
)
|
290
|
+
) })
|
296
291
|
] });
|
297
292
|
}
|
298
293
|
);
|
@@ -1,8 +1,9 @@
|
|
1
1
|
'use client'
|
2
2
|
import {
|
3
3
|
ToggleTip
|
4
|
-
} from "../../chunk-
|
5
|
-
import "../../chunk-
|
4
|
+
} from "../../chunk-OWFY465Z.js";
|
5
|
+
import "../../chunk-UZUMIWPJ.js";
|
6
|
+
import "../../chunk-FVUEAELO.js";
|
6
7
|
import "../../chunk-JMYI6YXR.js";
|
7
8
|
import "../../chunk-U2CWQDXE.js";
|
8
9
|
import "../../chunk-OJZPPAT6.js";
|
package/dist/index.cjs
CHANGED
@@ -108,7 +108,7 @@ __export(index_exports, {
|
|
108
108
|
PersonaAvatar: () => PersonaAvatar2,
|
109
109
|
PinInput: () => PinInput,
|
110
110
|
Popover: () => popover_exports,
|
111
|
-
Portal: () =>
|
111
|
+
Portal: () => import_portal4.Portal,
|
112
112
|
Presence: () => import_presence3.Presence,
|
113
113
|
Progress: () => import_progress.Progress,
|
114
114
|
ProgressCircle: () => import_progress_circle.ProgressCircle,
|
@@ -130,6 +130,7 @@ __export(index_exports, {
|
|
130
130
|
SkipNavLink: () => import_skip_nav.SkipNavLink,
|
131
131
|
Slider: () => Slider,
|
132
132
|
Spacer: () => import_spacer.Spacer,
|
133
|
+
Span: () => import_box3.Span,
|
133
134
|
Spinner: () => Spinner,
|
134
135
|
Stack: () => import_stack3.Stack,
|
135
136
|
StackSeparator: () => import_stack3.StackSeparator,
|
@@ -10355,17 +10356,10 @@ __export(popover_exports, {
|
|
10355
10356
|
});
|
10356
10357
|
var import_react54 = require("react");
|
10357
10358
|
var import_popover = require("@chakra-ui/react/popover");
|
10358
|
-
var import_portal4 = require("@chakra-ui/react/portal");
|
10359
10359
|
var import_jsx_runtime24 = require("react/jsx-runtime");
|
10360
10360
|
var Content5 = (0, import_react54.forwardRef)(
|
10361
10361
|
function PopoverContent(props, ref) {
|
10362
|
-
|
10363
|
-
const portalRef = props.portalRef ?? void 0;
|
10364
|
-
const children = props.children ?? null;
|
10365
|
-
delete props.portalled;
|
10366
|
-
delete props.portalRef;
|
10367
|
-
delete props.children;
|
10368
|
-
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_portal4.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_popover.Popover.Content, { ref, ...props, children }) }) });
|
10362
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_popover.Popover.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_popover.Popover.Content, { ref, ...props }) });
|
10369
10363
|
}
|
10370
10364
|
);
|
10371
10365
|
var Arrow2 = (0, import_react54.forwardRef)(
|
@@ -10397,6 +10391,9 @@ var Body3 = import_popover.Popover.Body;
|
|
10397
10391
|
var Trigger5 = import_popover.Popover.Trigger;
|
10398
10392
|
var Context3 = import_popover.Popover.Context;
|
10399
10393
|
|
10394
|
+
// src/components/portal/index.ts
|
10395
|
+
var import_portal4 = require("@chakra-ui/react/portal");
|
10396
|
+
|
10400
10397
|
// src/components/toggle-tip/toggle-tip.tsx
|
10401
10398
|
var import_jsx_runtime25 = require("react/jsx-runtime");
|
10402
10399
|
var ToggleTip = React9.forwardRef(
|
@@ -10411,7 +10408,7 @@ var ToggleTip = React9.forwardRef(
|
|
10411
10408
|
} = props;
|
10412
10409
|
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(popover_exports.Root, { ...rest, positioning: { ...rest.positioning, gutter: 4 }, children: [
|
10413
10410
|
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(popover_exports.Trigger, { asChild: true, children }),
|
10414
|
-
/* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
10411
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(import_portal4.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
10415
10412
|
popover_exports.Content,
|
10416
10413
|
{
|
10417
10414
|
width: "auto",
|
@@ -10419,14 +10416,13 @@ var ToggleTip = React9.forwardRef(
|
|
10419
10416
|
py: "1",
|
10420
10417
|
textStyle: "xs",
|
10421
10418
|
rounded: "sm",
|
10422
|
-
portalled,
|
10423
10419
|
ref,
|
10424
10420
|
children: [
|
10425
10421
|
showArrow && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(popover_exports.Arrow, {}),
|
10426
10422
|
content
|
10427
10423
|
]
|
10428
10424
|
}
|
10429
|
-
)
|
10425
|
+
) })
|
10430
10426
|
] });
|
10431
10427
|
}
|
10432
10428
|
);
|
@@ -10622,12 +10618,12 @@ __export(menu_exports, {
|
|
10622
10618
|
var import_react62 = require("react");
|
10623
10619
|
var import_center = require("@chakra-ui/react/center");
|
10624
10620
|
var import_menu = require("@chakra-ui/react/menu");
|
10625
|
-
var
|
10621
|
+
var import_portal6 = require("@chakra-ui/react/portal");
|
10626
10622
|
var import_jsx_runtime32 = require("react/jsx-runtime");
|
10627
10623
|
var MenuContent = (0, import_react62.forwardRef)(
|
10628
10624
|
function MenuContent2(props, ref) {
|
10629
10625
|
const { portalled = true, portalRef, ...rest } = props;
|
10630
|
-
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
10626
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_portal6.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_menu.Menu.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_menu.Menu.Content, { ref, ...rest }) }) });
|
10631
10627
|
}
|
10632
10628
|
);
|
10633
10629
|
var MenuArrow = (0, import_react62.forwardRef)(
|
@@ -11453,7 +11449,7 @@ __export(namespace_exports, {
|
|
11453
11449
|
|
11454
11450
|
// src/components/select/select.tsx
|
11455
11451
|
var import_react79 = require("react");
|
11456
|
-
var
|
11452
|
+
var import_portal7 = require("@chakra-ui/react/portal");
|
11457
11453
|
var import_select2 = require("@chakra-ui/react/select");
|
11458
11454
|
var import_jsx_runtime42 = require("react/jsx-runtime");
|
11459
11455
|
var SelectTrigger = (0, import_react79.forwardRef)(
|
@@ -11483,7 +11479,7 @@ var SelectClearTrigger = (0, import_react79.forwardRef)(function SelectClearTrig
|
|
11483
11479
|
var SelectContent = (0, import_react79.forwardRef)(
|
11484
11480
|
function SelectContent2(props, ref) {
|
11485
11481
|
const { portalled = true, portalRef, ...rest } = props;
|
11486
|
-
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
11482
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_portal7.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_select2.Select.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(import_select2.Select.Content, { ...rest, ref }) }) });
|
11487
11483
|
}
|
11488
11484
|
);
|
11489
11485
|
var SelectItem = (0, import_react79.forwardRef)(
|
@@ -11925,7 +11921,7 @@ var import_timeline = require("@chakra-ui/react/timeline");
|
|
11925
11921
|
|
11926
11922
|
// src/components/toaster/toaster.tsx
|
11927
11923
|
var import_react87 = require("react");
|
11928
|
-
var
|
11924
|
+
var import_portal8 = require("@chakra-ui/react/portal");
|
11929
11925
|
var import_stack2 = require("@chakra-ui/react/stack");
|
11930
11926
|
var import_toast = require("@chakra-ui/react/toast");
|
11931
11927
|
var import_jsx_runtime52 = require("react/jsx-runtime");
|
@@ -11943,7 +11939,7 @@ var Toaster = (props) => {
|
|
11943
11939
|
});
|
11944
11940
|
return toast;
|
11945
11941
|
}, [options]);
|
11946
|
-
return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
|
11942
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_portal8.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_toast.Toaster, { toaster, insetInline: { mdDown: "4" }, children: (toast2) => {
|
11947
11943
|
const closable = toast2.meta?.closable === false ? false : defaultClosable && toast2.type !== "loading";
|
11948
11944
|
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(ToastRoot, { children: [
|
11949
11945
|
toast2.type === "loading" ? /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(Spinner, { size: "sm", color: "colorPalette.solid", mt: "0.5" }) : /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(import_toast.Toast.Indicator, {}),
|
@@ -11976,7 +11972,7 @@ function ToastRoot(props) {
|
|
11976
11972
|
|
11977
11973
|
// src/components/tooltip/tooltip.tsx
|
11978
11974
|
var import_react88 = require("react");
|
11979
|
-
var
|
11975
|
+
var import_portal9 = require("@chakra-ui/react/portal");
|
11980
11976
|
var import_tooltip = require("@chakra-ui/react/tooltip");
|
11981
11977
|
var import_jsx_runtime53 = require("react/jsx-runtime");
|
11982
11978
|
var Tooltip = (0, import_react88.forwardRef)(
|
@@ -11994,7 +11990,7 @@ var Tooltip = (0, import_react88.forwardRef)(
|
|
11994
11990
|
if (disabled) return children;
|
11995
11991
|
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(import_tooltip.Tooltip.Root, { ...rest, children: [
|
11996
11992
|
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_tooltip.Tooltip.Trigger, { asChild: true, children }),
|
11997
|
-
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
|
11993
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_portal9.Portal, { disabled: !portalled, container: portalRef, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_tooltip.Tooltip.Positioner, { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(import_tooltip.Tooltip.Content, { ref, ...contentProps, children: [
|
11998
11994
|
showArrow && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_tooltip.Tooltip.Arrow, { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(import_tooltip.Tooltip.ArrowTip, {}) }),
|
11999
11995
|
content
|
12000
11996
|
] }) }) })
|
@@ -12047,9 +12043,6 @@ var import_group3 = require("@chakra-ui/react/group");
|
|
12047
12043
|
// src/components/highlight/index.ts
|
12048
12044
|
var import_highlight = require("@chakra-ui/react/highlight");
|
12049
12045
|
|
12050
|
-
// src/components/portal/index.ts
|
12051
|
-
var import_portal9 = require("@chakra-ui/react/portal");
|
12052
|
-
|
12053
12046
|
// src/components/presence/index.ts
|
12054
12047
|
var import_presence3 = require("@chakra-ui/react/presence");
|
12055
12048
|
|
@@ -12178,6 +12171,7 @@ var import_wrap = require("@chakra-ui/react/wrap");
|
|
12178
12171
|
SkipNavLink,
|
12179
12172
|
Slider,
|
12180
12173
|
Spacer,
|
12174
|
+
Span,
|
12181
12175
|
Spinner,
|
12182
12176
|
Stack,
|
12183
12177
|
StackSeparator,
|
package/dist/index.d.cts
CHANGED
@@ -202,6 +202,8 @@ export { Bleed } from './_tsup-dts-rollup.cjs';
|
|
202
202
|
export { BleedProps } from './_tsup-dts-rollup.cjs';
|
203
203
|
export { Box } from './_tsup-dts-rollup.cjs';
|
204
204
|
export { BoxProps } from './_tsup-dts-rollup.cjs';
|
205
|
+
export { Span } from './_tsup-dts-rollup.cjs';
|
206
|
+
export { SpanProps } from './_tsup-dts-rollup.cjs';
|
205
207
|
export { Center } from './_tsup-dts-rollup.cjs';
|
206
208
|
export { CenterProps } from './_tsup-dts-rollup.cjs';
|
207
209
|
export { ClientOnly } from './_tsup-dts-rollup.cjs';
|
package/dist/index.d.ts
CHANGED
@@ -202,6 +202,8 @@ export { Bleed } from './_tsup-dts-rollup.js';
|
|
202
202
|
export { BleedProps } from './_tsup-dts-rollup.js';
|
203
203
|
export { Box } from './_tsup-dts-rollup.js';
|
204
204
|
export { BoxProps } from './_tsup-dts-rollup.js';
|
205
|
+
export { Span } from './_tsup-dts-rollup.js';
|
206
|
+
export { SpanProps } from './_tsup-dts-rollup.js';
|
205
207
|
export { Center } from './_tsup-dts-rollup.js';
|
206
208
|
export { CenterProps } from './_tsup-dts-rollup.js';
|
207
209
|
export { ClientOnly } from './_tsup-dts-rollup.js';
|
package/dist/index.js
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
import {
|
2
|
-
Wrap
|
3
|
-
} from "./chunk-LGLJ2QUW.js";
|
4
1
|
import {
|
5
2
|
Em,
|
6
3
|
Strong,
|
7
4
|
Text
|
8
5
|
} from "./chunk-J5UCKCIO.js";
|
9
6
|
import {
|
10
|
-
|
11
|
-
} from "./chunk-
|
7
|
+
Wrap
|
8
|
+
} from "./chunk-LGLJ2QUW.js";
|
12
9
|
import {
|
13
10
|
Tag
|
14
11
|
} from "./chunk-WJZED26X.js";
|
15
12
|
import {
|
16
13
|
Timeline
|
17
14
|
} from "./chunk-QLN2CBY6.js";
|
15
|
+
import {
|
16
|
+
Textarea
|
17
|
+
} from "./chunk-CQD32UVJ.js";
|
18
18
|
import {
|
19
19
|
Toggle
|
20
20
|
} from "./chunk-PEVIP5UT.js";
|
@@ -28,38 +28,44 @@ import {
|
|
28
28
|
import {
|
29
29
|
VisuallyHidden
|
30
30
|
} from "./chunk-HHTTORZ6.js";
|
31
|
-
import {
|
32
|
-
Spacer
|
33
|
-
} from "./chunk-UAX5344Y.js";
|
34
31
|
import {
|
35
32
|
stat_exports
|
36
33
|
} from "./chunk-3RHNNKPC.js";
|
34
|
+
import {
|
35
|
+
HStack,
|
36
|
+
Stack,
|
37
|
+
StackSeparator,
|
38
|
+
VStack
|
39
|
+
} from "./chunk-QNKQFCKJ.js";
|
37
40
|
import {
|
38
41
|
Status
|
39
42
|
} from "./chunk-U3EPRSD3.js";
|
40
43
|
import {
|
41
44
|
steps_exports
|
42
45
|
} from "./chunk-XQTIY2ND.js";
|
43
|
-
import {
|
44
|
-
Switch
|
45
|
-
} from "./chunk-3E6URZ5P.js";
|
46
46
|
import {
|
47
47
|
Table
|
48
48
|
} from "./chunk-TH6YCBEG.js";
|
49
49
|
import {
|
50
|
-
|
51
|
-
|
52
|
-
useSidebarItemStyles,
|
53
|
-
useSidebarStyles
|
54
|
-
} from "./chunk-U23VDAWJ.js";
|
50
|
+
Switch
|
51
|
+
} from "./chunk-3E6URZ5P.js";
|
55
52
|
import {
|
56
53
|
Tabs,
|
57
54
|
useTabsContext,
|
58
55
|
useTabsStyles
|
59
56
|
} from "./chunk-5YNHX4C7.js";
|
60
57
|
import {
|
61
|
-
|
62
|
-
} from "./chunk-
|
58
|
+
Show
|
59
|
+
} from "./chunk-LU2H6GWC.js";
|
60
|
+
import {
|
61
|
+
SegmentedControl
|
62
|
+
} from "./chunk-KFDVVTMT.js";
|
63
|
+
import {
|
64
|
+
sidebar_exports,
|
65
|
+
useSidebar,
|
66
|
+
useSidebarItemStyles,
|
67
|
+
useSidebarStyles
|
68
|
+
} from "./chunk-U23VDAWJ.js";
|
63
69
|
import {
|
64
70
|
SkipNavContent,
|
65
71
|
SkipNavLink
|
@@ -69,18 +75,12 @@ import {
|
|
69
75
|
SkeletonCircle,
|
70
76
|
SkeletonText
|
71
77
|
} from "./chunk-UEXUCHDD.js";
|
72
|
-
import {
|
73
|
-
RadioGroup
|
74
|
-
} from "./chunk-NCNHDETB.js";
|
75
78
|
import {
|
76
79
|
Slider
|
77
80
|
} from "./chunk-HREBIPVW.js";
|
78
81
|
import {
|
79
|
-
|
80
|
-
|
81
|
-
StackSeparator,
|
82
|
-
VStack
|
83
|
-
} from "./chunk-QNKQFCKJ.js";
|
82
|
+
Spacer
|
83
|
+
} from "./chunk-UAX5344Y.js";
|
84
84
|
import {
|
85
85
|
Radio
|
86
86
|
} from "./chunk-PZWP36YA.js";
|
@@ -90,41 +90,41 @@ import {
|
|
90
90
|
import {
|
91
91
|
RatingGroup
|
92
92
|
} from "./chunk-HQVBJT5Y.js";
|
93
|
+
import {
|
94
|
+
RadioGroup
|
95
|
+
} from "./chunk-NCNHDETB.js";
|
93
96
|
import {
|
94
97
|
SearchInput
|
95
98
|
} from "./chunk-C5YLE76Q.js";
|
96
99
|
import {
|
97
|
-
|
98
|
-
} from "./chunk-
|
99
|
-
import {
|
100
|
-
Show
|
101
|
-
} from "./chunk-LU2H6GWC.js";
|
100
|
+
namespace_exports
|
101
|
+
} from "./chunk-2UMNJBGS.js";
|
102
102
|
import {
|
103
103
|
Separator
|
104
104
|
} from "./chunk-27OMFCPD.js";
|
105
|
+
import {
|
106
|
+
PinInput
|
107
|
+
} from "./chunk-RYKJOZ3B.js";
|
105
108
|
import {
|
106
109
|
Persona,
|
107
110
|
PersonaAvatar,
|
108
111
|
defaultPersonaPresenceOptions
|
109
112
|
} from "./chunk-TYGGMKHU.js";
|
110
|
-
import {
|
111
|
-
PinInput
|
112
|
-
} from "./chunk-RYKJOZ3B.js";
|
113
113
|
import {
|
114
114
|
Presence
|
115
115
|
} from "./chunk-PONMXNY4.js";
|
116
|
-
import {
|
117
|
-
ProgressCircle
|
118
|
-
} from "./chunk-7HAGRXKM.js";
|
119
116
|
import {
|
120
117
|
Progress
|
121
118
|
} from "./chunk-6YZ76Q2W.js";
|
122
119
|
import {
|
123
|
-
|
124
|
-
} from "./chunk-
|
120
|
+
ProgressCircle
|
121
|
+
} from "./chunk-7HAGRXKM.js";
|
125
122
|
import {
|
126
123
|
QrCode
|
127
124
|
} from "./chunk-K3MFCSAW.js";
|
125
|
+
import {
|
126
|
+
Mark
|
127
|
+
} from "./chunk-EWCBYJA7.js";
|
128
128
|
import {
|
129
129
|
menu_exports
|
130
130
|
} from "./chunk-DEP2DH7P.js";
|
@@ -132,24 +132,27 @@ import {
|
|
132
132
|
NativeSelect
|
133
133
|
} from "./chunk-TKJXJEXT.js";
|
134
134
|
import {
|
135
|
-
|
136
|
-
} from "./chunk-
|
137
|
-
import {
|
138
|
-
NumberInput
|
139
|
-
} from "./chunk-RFBD2ZNL.js";
|
135
|
+
navbar_exports
|
136
|
+
} from "./chunk-DJNPK2LM.js";
|
140
137
|
import {
|
141
138
|
page_exports,
|
142
139
|
usePageStyles
|
143
140
|
} from "./chunk-ZJ2VD224.js";
|
141
|
+
import {
|
142
|
+
NumberInput
|
143
|
+
} from "./chunk-RFBD2ZNL.js";
|
144
|
+
import {
|
145
|
+
pagination_exports
|
146
|
+
} from "./chunk-6XSCENTR.js";
|
144
147
|
import {
|
145
148
|
PasswordInput
|
146
149
|
} from "./chunk-TXIFPX2A.js";
|
147
150
|
import {
|
148
|
-
|
149
|
-
} from "./chunk-
|
151
|
+
Image
|
152
|
+
} from "./chunk-FD2V4Y66.js";
|
150
153
|
import {
|
151
|
-
|
152
|
-
} from "./chunk-
|
154
|
+
List
|
155
|
+
} from "./chunk-C5KFNMWU.js";
|
153
156
|
import {
|
154
157
|
Loader
|
155
158
|
} from "./chunk-DHFAFRZ4.js";
|
@@ -160,11 +163,11 @@ import {
|
|
160
163
|
Spinner
|
161
164
|
} from "./chunk-MK3OG2I4.js";
|
162
165
|
import {
|
163
|
-
|
164
|
-
} from "./chunk-
|
166
|
+
Heading
|
167
|
+
} from "./chunk-HZX4AGO5.js";
|
165
168
|
import {
|
166
|
-
|
167
|
-
} from "./chunk-
|
169
|
+
Highlight
|
170
|
+
} from "./chunk-TGEP2YAT.js";
|
168
171
|
import {
|
169
172
|
hover_card_exports
|
170
173
|
} from "./chunk-MZ2RY4NU.js";
|
@@ -174,40 +177,40 @@ import {
|
|
174
177
|
import {
|
175
178
|
IconBadge
|
176
179
|
} from "./chunk-NSFGACD7.js";
|
177
|
-
import {
|
178
|
-
FormatByte,
|
179
|
-
FormatNumber
|
180
|
-
} from "./chunk-6WZK2RBQ.js";
|
181
|
-
import {
|
182
|
-
Image
|
183
|
-
} from "./chunk-FD2V4Y66.js";
|
184
180
|
import {
|
185
181
|
InfoTip
|
186
|
-
} from "./chunk-
|
182
|
+
} from "./chunk-D72A4SU3.js";
|
187
183
|
import {
|
188
184
|
ToggleTip
|
189
|
-
} from "./chunk-
|
185
|
+
} from "./chunk-OWFY465Z.js";
|
186
|
+
import {
|
187
|
+
Portal
|
188
|
+
} from "./chunk-UZUMIWPJ.js";
|
190
189
|
import {
|
191
190
|
popover_exports
|
192
|
-
} from "./chunk-
|
191
|
+
} from "./chunk-FVUEAELO.js";
|
193
192
|
import {
|
194
193
|
Float
|
195
194
|
} from "./chunk-XD7U6L2E.js";
|
196
|
-
import {
|
197
|
-
Grid
|
198
|
-
} from "./chunk-EZZW6JOU.js";
|
199
195
|
import {
|
200
196
|
FocusTrap
|
201
197
|
} from "./chunk-EWATHRZA.js";
|
202
198
|
import {
|
203
|
-
|
204
|
-
|
199
|
+
FormatByte,
|
200
|
+
FormatNumber
|
201
|
+
} from "./chunk-6WZK2RBQ.js";
|
202
|
+
import {
|
203
|
+
Grid
|
204
|
+
} from "./chunk-EZZW6JOU.js";
|
205
205
|
import {
|
206
206
|
Group
|
207
207
|
} from "./chunk-3CKGT42F.js";
|
208
208
|
import {
|
209
|
-
|
210
|
-
} from "./chunk-
|
209
|
+
grid_list_exports
|
210
|
+
} from "./chunk-ZUT5GZTD.js";
|
211
|
+
import {
|
212
|
+
dialog_exports
|
213
|
+
} from "./chunk-HXNGSQQG.js";
|
211
214
|
import {
|
212
215
|
drawer_exports
|
213
216
|
} from "./chunk-HHKMVSL4.js";
|
@@ -230,9 +233,6 @@ import {
|
|
230
233
|
Fieldset,
|
231
234
|
useFieldsetContext
|
232
235
|
} from "./chunk-FPRTN3I7.js";
|
233
|
-
import {
|
234
|
-
Container
|
235
|
-
} from "./chunk-PIQURQGB.js";
|
236
236
|
import {
|
237
237
|
file_upload_exports,
|
238
238
|
useFileUploadContext
|
@@ -240,28 +240,28 @@ import {
|
|
240
240
|
import {
|
241
241
|
Code
|
242
242
|
} from "./chunk-YMCOU2N5.js";
|
243
|
+
import {
|
244
|
+
Collapsible
|
245
|
+
} from "./chunk-PEJYADAS.js";
|
243
246
|
import {
|
244
247
|
ColorPicker
|
245
248
|
} from "./chunk-JR5RLXCK.js";
|
246
249
|
import {
|
247
250
|
ColorSwatch
|
248
251
|
} from "./chunk-TYMVLD3B.js";
|
249
|
-
import {
|
250
|
-
Collapsible
|
251
|
-
} from "./chunk-PEJYADAS.js";
|
252
252
|
import {
|
253
253
|
Command
|
254
254
|
} from "./chunk-5ZKEXMBN.js";
|
255
255
|
import {
|
256
256
|
Kbd
|
257
257
|
} from "./chunk-OQU4LWZW.js";
|
258
|
+
import {
|
259
|
+
Container
|
260
|
+
} from "./chunk-PIQURQGB.js";
|
258
261
|
import {
|
259
262
|
DataList,
|
260
263
|
useDataListStyles
|
261
264
|
} from "./chunk-52XM5VXJ.js";
|
262
|
-
import {
|
263
|
-
dialog_exports
|
264
|
-
} from "./chunk-HXNGSQQG.js";
|
265
265
|
import {
|
266
266
|
Card
|
267
267
|
} from "./chunk-7DF4NQNZ.js";
|
@@ -271,12 +271,12 @@ import {
|
|
271
271
|
import {
|
272
272
|
Checkbox
|
273
273
|
} from "./chunk-Z3SWPGPQ.js";
|
274
|
-
import {
|
275
|
-
Checkmark
|
276
|
-
} from "./chunk-UIP2CHMU.js";
|
277
274
|
import {
|
278
275
|
CheckboxCard
|
279
276
|
} from "./chunk-NLMFEUVO.js";
|
277
|
+
import {
|
278
|
+
Checkmark
|
279
|
+
} from "./chunk-UIP2CHMU.js";
|
280
280
|
import {
|
281
281
|
ClientOnly
|
282
282
|
} from "./chunk-4N4SHDPB.js";
|
@@ -296,6 +296,10 @@ import {
|
|
296
296
|
Avatar,
|
297
297
|
AvatarGroup
|
298
298
|
} from "./chunk-FN7TU5F5.js";
|
299
|
+
import {
|
300
|
+
Badge,
|
301
|
+
BadgePropsProvider
|
302
|
+
} from "./chunk-R2J5USV6.js";
|
299
303
|
import {
|
300
304
|
BackButton
|
301
305
|
} from "./chunk-KHCQMSP7.js";
|
@@ -308,19 +312,16 @@ import {
|
|
308
312
|
useLink,
|
309
313
|
useSui
|
310
314
|
} from "./chunk-ZULBHMWG.js";
|
311
|
-
import {
|
312
|
-
Badge,
|
313
|
-
BadgePropsProvider
|
314
|
-
} from "./chunk-R2J5USV6.js";
|
315
315
|
import {
|
316
316
|
Bleed
|
317
317
|
} from "./chunk-Y2S4O4UY.js";
|
318
|
-
import {
|
319
|
-
Box
|
320
|
-
} from "./chunk-2YXHXL6J.js";
|
321
318
|
import {
|
322
319
|
Blockquote
|
323
320
|
} from "./chunk-GSWLAOIM.js";
|
321
|
+
import {
|
322
|
+
Box,
|
323
|
+
Span
|
324
|
+
} from "./chunk-AA5L5WPD.js";
|
324
325
|
import {
|
325
326
|
breadcrumb_exports
|
326
327
|
} from "./chunk-CRFTMIQA.js";
|
@@ -491,6 +492,7 @@ export {
|
|
491
492
|
SkipNavLink,
|
492
493
|
Slider,
|
493
494
|
Spacer,
|
495
|
+
Span,
|
494
496
|
Spinner,
|
495
497
|
Stack,
|
496
498
|
StackSeparator,
|
package/package.json
CHANGED