@kadoui/react 2.1.2 → 2.1.4
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/react-components/Choice/Choice.d.ts +4 -2
- package/dist/react-components/Choice/Choice.d.ts.map +1 -1
- package/dist/react-components/Choice/Choice.js +4 -2
- package/dist/react-components/Choice/ChoiceThumb.d.ts +3 -0
- package/dist/react-components/Choice/ChoiceThumb.d.ts.map +1 -0
- package/dist/react-components/Choice/ChoiceThumb.js +4 -0
- package/dist/react-components/Choice/ChoiceToggle.d.ts +3 -0
- package/dist/react-components/Choice/ChoiceToggle.d.ts.map +1 -0
- package/dist/react-components/Choice/ChoiceToggle.js +33 -0
- package/dist/react-components/Choice/choiceTypes.d.ts +1 -0
- package/dist/react-components/Choice/choiceTypes.d.ts.map +1 -1
- package/dist/react-components/Modal/Modal.d.ts +1 -1
- package/dist/react-components/Modal/Modal.d.ts.map +1 -1
- package/dist/react-components/Modal/Modal.js +1 -1
- package/dist/react-components/Modal/ModalBody.d.ts.map +1 -1
- package/dist/react-components/Modal/ModalBody.js +1 -1
- package/dist/react-components/Modal/ModalToggle.d.ts +3 -0
- package/dist/react-components/Modal/ModalToggle.d.ts.map +1 -0
- package/dist/react-components/Modal/ModalToggle.js +11 -0
- package/dist/react-components/Otp/OtpRoot.d.ts.map +1 -1
- package/dist/react-components/Otp/OtpRoot.js +2 -2
- package/dist/react-components/Otp/otpTypes.d.ts +1 -1
- package/dist/react-components/Otp/otpTypes.d.ts.map +1 -1
- package/dist/react-exports.d.ts +0 -1
- package/dist/react-exports.d.ts.map +1 -1
- package/dist/react-exports.js +0 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { ChoiceRoot } from "./ChoiceRoot";
|
|
2
|
-
import {
|
|
2
|
+
import { ChoiceThumb } from "./ChoiceThumb";
|
|
3
|
+
import { ChoiceToggle } from "./ChoiceToggle";
|
|
3
4
|
import { ChoiceNavigation } from "./ChoiceNavigation";
|
|
4
5
|
export declare const Choice: typeof ChoiceRoot & {
|
|
5
6
|
Navigation: typeof ChoiceNavigation;
|
|
6
|
-
|
|
7
|
+
Toggle: typeof ChoiceToggle;
|
|
8
|
+
Thumb: typeof ChoiceThumb;
|
|
7
9
|
};
|
|
8
10
|
export * from "./choiceTypes";
|
|
9
11
|
//# sourceMappingURL=Choice.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Choice.d.ts","sourceRoot":"","sources":["../../../src/react-components/Choice/Choice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"Choice.d.ts","sourceRoot":"","sources":["../../../src/react-components/Choice/Choice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAEtD,eAAO,MAAM,MAAM;;;;CAIjB,CAAC;AAEH,cAAc,eAAe,CAAC"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ChoiceRoot } from "./ChoiceRoot";
|
|
2
|
-
import {
|
|
2
|
+
import { ChoiceThumb } from "./ChoiceThumb";
|
|
3
|
+
import { ChoiceToggle } from "./ChoiceToggle";
|
|
3
4
|
import { ChoiceNavigation } from "./ChoiceNavigation";
|
|
4
5
|
export const Choice = Object.assign(ChoiceRoot, {
|
|
5
6
|
Navigation: ChoiceNavigation,
|
|
6
|
-
|
|
7
|
+
Toggle: ChoiceToggle,
|
|
8
|
+
Thumb: ChoiceThumb
|
|
7
9
|
});
|
|
8
10
|
export * from "./choiceTypes";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChoiceThumb.d.ts","sourceRoot":"","sources":["../../../src/react-components/Choice/ChoiceThumb.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAElD,wBAAgB,WAAW,CAAC,CAAC,EAAE,iBAAiB,2CAI/C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChoiceToggle.d.ts","sourceRoot":"","sources":["../../../src/react-components/Choice/ChoiceToggle.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAEzD,wBAAgB,YAAY,CAAC,EAC3B,UAAU,EACV,OAAO,EACP,GAAG,CAAC,EACL,EAAE,mBAAmB,2CAiCrB"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { use } from "react";
|
|
4
|
+
import { ChoiceContext } from "./ChoiceContext";
|
|
5
|
+
export function ChoiceToggle({ choiceName, onClick, ...p }) {
|
|
6
|
+
const { multiple, activeChoice, setActiveChoice, requiredOne } = use(ChoiceContext);
|
|
7
|
+
const isActive = multiple
|
|
8
|
+
? activeChoice.includes(choiceName)
|
|
9
|
+
: activeChoice === choiceName;
|
|
10
|
+
return (_jsx("button", { "data-state": isActive, onClick: (ev) => {
|
|
11
|
+
onClick?.(ev);
|
|
12
|
+
if (isActive) {
|
|
13
|
+
if (multiple) {
|
|
14
|
+
if (!requiredOne || activeChoice.length > 1) {
|
|
15
|
+
setActiveChoice((prev) => prev.filter((item) => item !== choiceName));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
else {
|
|
19
|
+
if (!requiredOne) {
|
|
20
|
+
setActiveChoice(null);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
if (multiple) {
|
|
26
|
+
setActiveChoice((prev) => [...prev, choiceName]);
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
setActiveChoice(choiceName);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}, ...p }));
|
|
33
|
+
}
|
|
@@ -19,5 +19,6 @@ export type ChoiceTriggerPropsT = ComponentProps<"button"> & {
|
|
|
19
19
|
choiceName: string;
|
|
20
20
|
};
|
|
21
21
|
export type ChoiceNavigationPropsT = AccessNavigationPropsT;
|
|
22
|
+
export type ChoiceThumbPropsT = ComponentProps<"span">;
|
|
22
23
|
export {};
|
|
23
24
|
//# sourceMappingURL=choiceTypes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"choiceTypes.d.ts","sourceRoot":"","sources":["../../../src/react-components/Choice/choiceTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEtE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAEnF,KAAK,UAAU,GAAG;IAChB,QAAQ,EAAE,IAAI,CAAC;IACf,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;CACrD,CAAC;AAEF,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC;IACjB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;CAC1D,CAAC;AAEF,KAAK,WAAW,GAAG,WAAW,GAAG,UAAU,CAAC;AAE5C,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG;IACzC,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,cAAc,CAAC,KAAK,CAAC,GAAG,cAAc,CAAC;AAEtE,MAAM,MAAM,mBAAmB,GAAG,cAAc,CAAC,QAAQ,CAAC,GAAG;IAC3D,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"choiceTypes.d.ts","sourceRoot":"","sources":["../../../src/react-components/Choice/choiceTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAEtE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAEnF,KAAK,UAAU,GAAG;IAChB,QAAQ,EAAE,IAAI,CAAC;IACf,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;CACrD,CAAC;AAEF,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC;IACjB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,eAAe,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC;CAC1D,CAAC;AAEF,KAAK,WAAW,GAAG,WAAW,GAAG,UAAU,CAAC;AAE5C,MAAM,MAAM,cAAc,GAAG,WAAW,GAAG;IACzC,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,cAAc,CAAC,KAAK,CAAC,GAAG,cAAc,CAAC;AAEtE,MAAM,MAAM,mBAAmB,GAAG,cAAc,CAAC,QAAQ,CAAC,GAAG;IAC3D,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,sBAAsB,CAAC;AAE5D,MAAM,MAAM,iBAAiB,GAAG,cAAc,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -2,7 +2,7 @@ import { ModalRoot } from "./ModalRoot";
|
|
|
2
2
|
import { ModalBody } from "./ModalBody";
|
|
3
3
|
import { ModalHeader } from "./ModalHeader";
|
|
4
4
|
import { ModalPortal } from "./ModalPortal";
|
|
5
|
-
import { ModalToggle } from "./
|
|
5
|
+
import { ModalToggle } from "./ModalToggle";
|
|
6
6
|
import { ModalContent } from "./ModalContent";
|
|
7
7
|
export declare const Modal: typeof ModalRoot & {
|
|
8
8
|
Toggle: typeof ModalToggle;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../src/react-components/Modal/Modal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Modal.d.ts","sourceRoot":"","sources":["../../../src/react-components/Modal/Modal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,eAAO,MAAM,KAAK;;;;;;CAMhB,CAAC;AAEH,cAAc,cAAc,CAAC"}
|
|
@@ -2,7 +2,7 @@ import { ModalRoot } from "./ModalRoot";
|
|
|
2
2
|
import { ModalBody } from "./ModalBody";
|
|
3
3
|
import { ModalHeader } from "./ModalHeader";
|
|
4
4
|
import { ModalPortal } from "./ModalPortal";
|
|
5
|
-
import { ModalToggle } from "./
|
|
5
|
+
import { ModalToggle } from "./ModalToggle";
|
|
6
6
|
import { ModalContent } from "./ModalContent";
|
|
7
7
|
export const Modal = Object.assign(ModalRoot, {
|
|
8
8
|
Toggle: ModalToggle,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModalBody.d.ts","sourceRoot":"","sources":["../../../src/react-components/Modal/ModalBody.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ModalBody.d.ts","sourceRoot":"","sources":["../../../src/react-components/Modal/ModalBody.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGpD,wBAAgB,SAAS,CAAC,CAAC,EAAE,eAAe,2CA4B3C"}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
import { use, useEffect, useRef } from "react";
|
|
4
4
|
import { AnimatePresence, motion } from "framer-motion";
|
|
5
|
-
import { FRAMER_MOTION_DURATION } from "../../configs";
|
|
6
5
|
import { ModalContext } from "./ModalContext";
|
|
6
|
+
import { FRAMER_MOTION_DURATION } from "../../configs";
|
|
7
7
|
export function ModalBody(p) {
|
|
8
8
|
const { isOpen } = use(ModalContext);
|
|
9
9
|
const bodyRef = useRef(null);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ModalToggle.d.ts","sourceRoot":"","sources":["../../../src/react-components/Modal/ModalToggle.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,wBAAgB,WAAW,CAAC,EAAE,OAAO,EAAE,GAAG,KAAK,EAAE,EAAE,iBAAiB,2CAYnE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { use } from "react";
|
|
4
|
+
import { ModalContext } from "./ModalContext";
|
|
5
|
+
export function ModalToggle({ onClick, ...props }) {
|
|
6
|
+
const { setOpen } = use(ModalContext);
|
|
7
|
+
return (_jsx("button", { onClick: (ev) => {
|
|
8
|
+
onClick?.(ev);
|
|
9
|
+
setOpen((prev) => !prev);
|
|
10
|
+
}, ...props }));
|
|
11
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OtpRoot.d.ts","sourceRoot":"","sources":["../../../src/react-components/Otp/OtpRoot.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"OtpRoot.d.ts","sourceRoot":"","sources":["../../../src/react-components/Otp/OtpRoot.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAGhD,wBAAgB,OAAO,CAAC,EAAE,SAAS,EAAE,GAAG,CAAC,EAAE,EAAE,aAAa,2CAsBzD"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
import { useEffect, useRef } from "react";
|
|
4
|
-
import { AccessNavigation } from "../AccessNavigation/AccessNavigation";
|
|
5
4
|
import { OtpContext } from "./OtpContext";
|
|
5
|
+
import { AccessNavigation } from "../AccessNavigation/AccessNavigation";
|
|
6
6
|
export function OtpRoot({ autoFocus, ...p }) {
|
|
7
7
|
const inputs = useRef([]);
|
|
8
8
|
useEffect(() => {
|
|
@@ -13,5 +13,5 @@ export function OtpRoot({ autoFocus, ...p }) {
|
|
|
13
13
|
const getInputsValue = () => {
|
|
14
14
|
return inputs?.current.map((input) => input?.value || "").join("") || "";
|
|
15
15
|
};
|
|
16
|
-
return (_jsx(OtpContext, { value: { inputs, getInputsValue }, children: _jsx(AccessNavigation, { direction: "x", ...p }) }));
|
|
16
|
+
return (_jsx(OtpContext, { value: { inputs, getInputsValue }, children: _jsx(AccessNavigation, { dir: "ltr", direction: "x", ...p }) }));
|
|
17
17
|
}
|
|
@@ -4,7 +4,7 @@ export type OtpContextT = {
|
|
|
4
4
|
inputs?: RefObject<(HTMLInputElement | null)[]>;
|
|
5
5
|
getInputsValue: () => string;
|
|
6
6
|
};
|
|
7
|
-
export type OtpRootPropsT = Omit<AccessNavigationPropsT, "direction"> & {
|
|
7
|
+
export type OtpRootPropsT = Omit<AccessNavigationPropsT, "direction" | "dir"> & {
|
|
8
8
|
autoFocus?: boolean;
|
|
9
9
|
};
|
|
10
10
|
export type OtpInputsPropsT = ComponentProps<"input"> & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"otpTypes.d.ts","sourceRoot":"","sources":["../../../src/react-components/Otp/otpTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAEnF,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,CAAC,EAAE,SAAS,CAAC,CAAC,gBAAgB,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC;IAChD,cAAc,EAAE,MAAM,MAAM,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,sBAAsB,EAAE,WAAW,CAAC,GAAG;
|
|
1
|
+
{"version":3,"file":"otpTypes.d.ts","sourceRoot":"","sources":["../../../src/react-components/Otp/otpTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAEnF,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,CAAC,EAAE,SAAS,CAAC,CAAC,gBAAgB,GAAG,IAAI,CAAC,EAAE,CAAC,CAAC;IAChD,cAAc,EAAE,MAAM,MAAM,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,sBAAsB,EAAE,WAAW,GAAG,KAAK,CAAC,GAAG;IAC9E,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,cAAc,CAAC,OAAO,CAAC,GAAG;IACtD,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,cAAc,CAAC,OAAO,CAAC,CAAC"}
|
package/dist/react-exports.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ export * from "./react-components/ClientOnly/ClientOnly";
|
|
|
7
7
|
export * from "./react-components/Clipboard/Clipboard";
|
|
8
8
|
export * from "./react-components/ContextMenu/ContextMenu";
|
|
9
9
|
export * from "./react-components/Drawer/Drawer";
|
|
10
|
-
export { DrawerSheet } from "./react-components/DrawerSheet/index";
|
|
11
10
|
export * from "./react-components/Modal/Modal";
|
|
12
11
|
export * from "./react-components/Otp/Otp";
|
|
13
12
|
export * from "./react-components/Pagination/Pagination";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react-exports.d.ts","sourceRoot":"","sources":["../src/react-exports.ts"],"names":[],"mappings":"AAAA,cAAc,sDAAsD,CAAC;AACrE,cAAc,wCAAwC,CAAC;AACvD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,
|
|
1
|
+
{"version":3,"file":"react-exports.d.ts","sourceRoot":"","sources":["../src/react-exports.ts"],"names":[],"mappings":"AAAA,cAAc,sDAAsD,CAAC;AACrE,cAAc,wCAAwC,CAAC;AACvD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4CAA4C,CAAC;AAC3D,cAAc,sCAAsC,CAAC;AACrD,cAAc,0CAA0C,CAAC;AACzD,cAAc,wCAAwC,CAAC;AACvD,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0CAA0C,CAAC;AACzD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wCAAwC,CAAC;AACvD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC;AACnD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC;AACjD,cAAc,gCAAgC,CAAC"}
|
package/dist/react-exports.js
CHANGED
|
@@ -7,7 +7,6 @@ export * from "./react-components/ClientOnly/ClientOnly";
|
|
|
7
7
|
export * from "./react-components/Clipboard/Clipboard";
|
|
8
8
|
export * from "./react-components/ContextMenu/ContextMenu";
|
|
9
9
|
export * from "./react-components/Drawer/Drawer";
|
|
10
|
-
export { DrawerSheet } from "./react-components/DrawerSheet/index";
|
|
11
10
|
export * from "./react-components/Modal/Modal";
|
|
12
11
|
export * from "./react-components/Otp/Otp";
|
|
13
12
|
export * from "./react-components/Pagination/Pagination";
|