@herca/r-kit 0.0.35 → 0.0.36
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/components/calendar/index.cjs +443 -1469
- package/dist/components/calendar/index.cjs.map +1 -1
- package/dist/components/calendar/index.js +429 -1455
- package/dist/components/calendar/index.js.map +1 -1
- package/dist/components/checkbox/index.d.cts +2 -2
- package/dist/components/checkbox/index.d.ts +2 -2
- package/dist/components/date-picker/index.cjs +1641 -2667
- package/dist/components/date-picker/index.cjs.map +1 -1
- package/dist/components/date-picker/index.js +1629 -2655
- package/dist/components/date-picker/index.js.map +1 -1
- package/dist/components/modal/index.d.cts +3 -3
- package/dist/components/modal/index.d.ts +3 -3
- package/dist/components/sidebar/index.cjs.map +1 -1
- package/dist/components/sidebar/index.js.map +1 -1
- package/dist/components/switch/index.d.cts +1 -1
- package/dist/components/switch/index.d.ts +1 -1
- package/dist/{hooks/use-copy.cjs → components/useCopy/index.cjs} +3 -3
- package/dist/components/useCopy/index.cjs.map +1 -0
- package/dist/{hooks/use-copy.js → components/useCopy/index.js} +3 -3
- package/dist/components/useCopy/index.js.map +1 -0
- package/dist/{hooks/use-mobile.cjs → components/useIsMobile/index.cjs} +3 -3
- package/dist/components/useIsMobile/index.cjs.map +1 -0
- package/dist/{hooks/use-mobile.js → components/useIsMobile/index.js} +3 -3
- package/dist/components/useIsMobile/index.js.map +1 -0
- package/package.json +2 -2
- package/dist/hooks/use-copy.cjs.map +0 -1
- package/dist/hooks/use-copy.js.map +0 -1
- package/dist/hooks/use-mobile.cjs.map +0 -1
- package/dist/hooks/use-mobile.js.map +0 -1
- /package/dist/{hooks/use-copy.d.cts → components/useCopy/index.d.cts} +0 -0
- /package/dist/{hooks/use-copy.d.ts → components/useCopy/index.d.ts} +0 -0
- /package/dist/{hooks/use-mobile.d.cts → components/useIsMobile/index.d.cts} +0 -0
- /package/dist/{hooks/use-mobile.d.ts → components/useIsMobile/index.d.ts} +0 -0
|
@@ -3,12 +3,12 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
|
|
5
5
|
declare const modalVariants: (props?: ({
|
|
6
|
-
size?: "
|
|
7
|
-
state?: "
|
|
6
|
+
size?: "xs" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
7
|
+
state?: "open" | "closed" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
declare const modalOverlayVariants: (props?: ({
|
|
10
10
|
position?: "center" | "top" | "bottom" | null | undefined;
|
|
11
|
-
state?: "
|
|
11
|
+
state?: "open" | "closed" | null | undefined;
|
|
12
12
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13
13
|
type modalOverlayVariantsProps = VariantProps<typeof modalOverlayVariants>;
|
|
14
14
|
type ModalVariantProps = VariantProps<typeof modalVariants>;
|
|
@@ -3,12 +3,12 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
3
3
|
import { VariantProps } from 'class-variance-authority';
|
|
4
4
|
|
|
5
5
|
declare const modalVariants: (props?: ({
|
|
6
|
-
size?: "
|
|
7
|
-
state?: "
|
|
6
|
+
size?: "xs" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
7
|
+
state?: "open" | "closed" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
9
9
|
declare const modalOverlayVariants: (props?: ({
|
|
10
10
|
position?: "center" | "top" | "bottom" | null | undefined;
|
|
11
|
-
state?: "
|
|
11
|
+
state?: "open" | "closed" | null | undefined;
|
|
12
12
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
13
13
|
type modalOverlayVariantsProps = VariantProps<typeof modalOverlayVariants>;
|
|
14
14
|
type ModalVariantProps = VariantProps<typeof modalVariants>;
|