@causw/core 0.0.13 → 0.0.15
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/Avatar/Avatar.d.cts +2 -2
- package/dist/components/Avatar/Avatar.d.mts +2 -2
- package/dist/components/Avatar/Avatar.styles.d.mts +3 -3
- package/dist/components/BottomNavigation/BottomNavigation.d.mts +5 -5
- package/dist/components/BottomNavigation/BottomNavigation.styles.d.mts +3 -3
- package/dist/components/BottomSheet/BottomSheet.d.mts +6 -6
- package/dist/components/BottomSheet/BottomSheet.styles.d.mts +3 -3
- package/dist/components/Button/Button.d.mts +2 -2
- package/dist/components/Button/Button.d.mts.map +1 -1
- package/dist/components/Button/Button.styles.d.mts +3 -3
- package/dist/components/CTAButton/CTAButton.d.mts +2 -2
- package/dist/components/CTAButton/CTAButton.styles.d.mts +3 -3
- package/dist/components/Calendar/Calendar.d.mts +2 -2
- package/dist/components/Calendar/Calendar.styles.d.mts +3 -3
- package/dist/components/Checkbox/Checkbox.d.mts +4 -4
- package/dist/components/Checkbox/Checkbox.styles.d.mts +3 -3
- package/dist/components/Chip/Chip.d.cts +2 -2
- package/dist/components/Chip/Chip.styles.d.cts +3 -3
- package/dist/components/Dialog/Dialog.d.cts +13 -13
- package/dist/components/Dialog/Dialog.d.cts.map +1 -1
- package/dist/components/Dialog/Dialog.d.mts +5 -5
- package/dist/components/Dialog/Dialog.styles.d.cts +3 -3
- package/dist/components/Dialog/Dialog.styles.d.mts +3 -3
- package/dist/components/Drawer/Drawer.d.cts +11 -11
- package/dist/components/Drawer/Drawer.d.cts.map +1 -1
- package/dist/components/Drawer/Drawer.styles.d.cts +3 -3
- package/dist/components/Drawer/Drawer.styles.d.mts +3 -3
- package/dist/components/Dropdown/Dropdown.d.cts +3 -3
- package/dist/components/Dropdown/Dropdown.styles.d.cts +3 -3
- package/dist/components/Float/Float.styles.d.cts +3 -3
- package/dist/components/FloatingActionButton/FloatingActionButton.d.mts +2 -2
- package/dist/components/FloatingActionButton/FloatingActionButton.styles.d.mts +3 -3
- package/dist/components/Grid/Grid.styles.d.cts +3 -3
- package/dist/components/HStack/HStack.d.cts +2 -2
- package/dist/components/Modal/Modal.d.cts +10 -10
- package/dist/components/Modal/Modal.d.mts +7 -7
- package/dist/components/Modal/Modal.styles.d.mts +3 -3
- package/dist/components/Primitive/Primitive.d.mts +16 -16
- package/dist/components/Radio/Radio.d.cts +3 -3
- package/dist/components/Radio/Radio.d.mts +3 -3
- package/dist/components/Radio/Radio.d.mts.map +1 -1
- package/dist/components/RatioChart/RatioChart.d.cts +5 -5
- package/dist/components/RatioChart/RatioChartEditor.d.cts +2 -2
- package/dist/components/Select/Select.d.cts +5 -5
- package/dist/components/Select/Select.d.mts +5 -5
- package/dist/components/Select/Select.styles.d.mts +3 -3
- package/dist/components/Separator/Separator.styles.d.mts +3 -3
- package/dist/components/Sidebar/Sidebar.d.mts +8 -8
- package/dist/components/Sidebar/Sidebar.styles.d.mts +3 -3
- package/dist/components/Spacer/Spacer.styles.d.mts +3 -3
- package/dist/components/Tab/Tab.d.cts +6 -6
- package/dist/components/Tab/Tab.d.mts +6 -6
- package/dist/components/Tab/Tab.styles.d.mts +3 -3
- package/dist/components/Text/Text.d.cts +1 -1
- package/dist/components/Text/Text.d.mts +1 -1
- package/dist/components/Text/Text.styles.d.cts +3 -3
- package/dist/components/Text/Text.styles.d.mts +3 -3
- package/dist/components/TextArea/TextArea.d.cts +4 -4
- package/dist/components/TextArea/TextArea.d.mts +4 -4
- package/dist/components/TextArea/TextArea.styles.d.mts +3 -3
- package/dist/components/TextInput/TextInput.d.cts +2 -2
- package/dist/components/TextInput/TextInput.d.cts.map +1 -1
- package/dist/components/TextInput/TextInput.d.mts +2 -2
- package/dist/components/TextInput/TextInput.styles.d.cts +3 -3
- package/dist/components/TextInput/TextInput.styles.d.mts +3 -3
- package/dist/components/Toast/Toast.d.cts +5 -5
- package/dist/components/Toast/Toast.d.mts +3 -3
- package/dist/components/Toggle/Toggle.d.cts +4 -4
- package/dist/components/Toggle/Toggle.d.mts +4 -4
- package/dist/components/Toggle/Toggle.d.mts.map +1 -1
- package/dist/components/Toggle/Toggle.styles.d.mts +3 -3
- package/dist/components/VStack/VStack.d.cts +2 -2
- package/dist/components/VStack/VStack.d.mts +2 -2
- package/package.json +3 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PrimitiveProps } from "../Primitive/Primitive.cjs";
|
|
2
2
|
import { AvatarVariants } from "./Avatar.styles.cjs";
|
|
3
3
|
import * as React$1 from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime38 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Avatar/Avatar.d.ts
|
|
7
7
|
interface AvatarProps extends Omit<React$1.ComponentPropsWithoutRef<'span'>, 'alt'>, PrimitiveProps, AvatarVariants {
|
|
@@ -17,7 +17,7 @@ declare const Avatar: {
|
|
|
17
17
|
className,
|
|
18
18
|
fallback,
|
|
19
19
|
...props
|
|
20
|
-
}: AvatarProps):
|
|
20
|
+
}: AvatarProps): react_jsx_runtime38.JSX.Element;
|
|
21
21
|
displayName: string;
|
|
22
22
|
};
|
|
23
23
|
//#endregion
|
|
@@ -2,7 +2,7 @@ import { PrimitiveProps } from "../Primitive/Primitive.mjs";
|
|
|
2
2
|
import "../Primitive/index.mjs";
|
|
3
3
|
import { AvatarVariants } from "./Avatar.styles.mjs";
|
|
4
4
|
import * as React$1 from "react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime36 from "react/jsx-runtime";
|
|
6
6
|
|
|
7
7
|
//#region src/components/Avatar/Avatar.d.ts
|
|
8
8
|
interface AvatarProps extends Omit<React$1.ComponentPropsWithoutRef<'span'>, 'alt'>, PrimitiveProps, AvatarVariants {
|
|
@@ -18,7 +18,7 @@ declare const Avatar: {
|
|
|
18
18
|
className,
|
|
19
19
|
fallback,
|
|
20
20
|
...props
|
|
21
|
-
}: AvatarProps):
|
|
21
|
+
}: AvatarProps): react_jsx_runtime36.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
//#endregion
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants19 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Avatar/Avatar.styles.d.ts
|
|
5
|
-
declare const avatar:
|
|
5
|
+
declare const avatar: tailwind_variants19.TVReturnType<{
|
|
6
6
|
size: {
|
|
7
7
|
xs: {
|
|
8
8
|
root: string;
|
|
@@ -46,7 +46,7 @@ declare const avatar: tailwind_variants25.TVReturnType<{
|
|
|
46
46
|
root: string;
|
|
47
47
|
image: string;
|
|
48
48
|
fallback: string;
|
|
49
|
-
},
|
|
49
|
+
}, tailwind_variants19.TVReturnType<{
|
|
50
50
|
size: {
|
|
51
51
|
xs: {
|
|
52
52
|
root: string;
|
|
@@ -2,7 +2,7 @@ import { PrimitiveProps } from "../Primitive/Primitive.mjs";
|
|
|
2
2
|
import "../Primitive/index.mjs";
|
|
3
3
|
import { BottomNavigationVariants } from "./BottomNavigation.styles.mjs";
|
|
4
4
|
import { ComponentProps, SVGProps } from "react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime79 from "react/jsx-runtime";
|
|
6
6
|
|
|
7
7
|
//#region src/components/BottomNavigation/BottomNavigation.d.ts
|
|
8
8
|
interface BottomNavigationRootProps extends ComponentProps<'nav'>, PrimitiveProps {
|
|
@@ -25,24 +25,24 @@ declare const BottomNavigation: (({
|
|
|
25
25
|
selected,
|
|
26
26
|
onSelectChange,
|
|
27
27
|
...props
|
|
28
|
-
}: BottomNavigationRootProps) =>
|
|
28
|
+
}: BottomNavigationRootProps) => react_jsx_runtime79.JSX.Element) & {
|
|
29
29
|
Item: ({
|
|
30
30
|
selected,
|
|
31
31
|
value,
|
|
32
32
|
children,
|
|
33
33
|
onClick,
|
|
34
34
|
...props
|
|
35
|
-
}: BottomNavigationItemProps) =>
|
|
35
|
+
}: BottomNavigationItemProps) => react_jsx_runtime79.JSX.Element;
|
|
36
36
|
Icon: ({
|
|
37
37
|
children,
|
|
38
38
|
selected,
|
|
39
39
|
...props
|
|
40
|
-
}: BottomNavigationIconProps) =>
|
|
40
|
+
}: BottomNavigationIconProps) => react_jsx_runtime79.JSX.Element;
|
|
41
41
|
Label: ({
|
|
42
42
|
children,
|
|
43
43
|
selected,
|
|
44
44
|
...props
|
|
45
|
-
}: BottomNavigationLabelProps) =>
|
|
45
|
+
}: BottomNavigationLabelProps) => react_jsx_runtime79.JSX.Element;
|
|
46
46
|
};
|
|
47
47
|
//#endregion
|
|
48
48
|
export { BottomNavigation };
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants49 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/BottomNavigation/BottomNavigation.styles.d.ts
|
|
5
|
-
declare const bottomNavigation:
|
|
5
|
+
declare const bottomNavigation: tailwind_variants49.TVReturnType<{
|
|
6
6
|
selected: {
|
|
7
7
|
true: {
|
|
8
8
|
icon: string;
|
|
@@ -34,7 +34,7 @@ declare const bottomNavigation: tailwind_variants45.TVReturnType<{
|
|
|
34
34
|
item: string;
|
|
35
35
|
icon: string;
|
|
36
36
|
label: string;
|
|
37
|
-
},
|
|
37
|
+
}, tailwind_variants49.TVReturnType<{
|
|
38
38
|
selected: {
|
|
39
39
|
true: {
|
|
40
40
|
icon: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Drawer } from "../Drawer/Drawer.mjs";
|
|
2
2
|
import { HeaderAlign } from "./BottomSheet.styles.mjs";
|
|
3
3
|
import React from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime72 from "react/jsx-runtime";
|
|
5
5
|
import * as _radix_ui_react_dialog0 from "@radix-ui/react-dialog";
|
|
6
6
|
|
|
7
7
|
//#region src/components/BottomSheet/BottomSheet.d.ts
|
|
@@ -19,7 +19,7 @@ declare const BottomSheet: {
|
|
|
19
19
|
defaultOpen,
|
|
20
20
|
onOpenChange,
|
|
21
21
|
headerAlign
|
|
22
|
-
}: BottomSheetRootProps):
|
|
22
|
+
}: BottomSheetRootProps): react_jsx_runtime72.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
} & {
|
|
25
25
|
Trigger: React.ForwardRefExoticComponent<_radix_ui_react_dialog0.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -28,7 +28,7 @@ declare const BottomSheet: {
|
|
|
28
28
|
children,
|
|
29
29
|
className,
|
|
30
30
|
...props
|
|
31
|
-
}: React.ComponentProps<typeof Drawer.Content>):
|
|
31
|
+
}: React.ComponentProps<typeof Drawer.Content>): react_jsx_runtime72.JSX.Element;
|
|
32
32
|
displayName: string;
|
|
33
33
|
};
|
|
34
34
|
Header: {
|
|
@@ -38,7 +38,7 @@ declare const BottomSheet: {
|
|
|
38
38
|
}: {
|
|
39
39
|
title?: string;
|
|
40
40
|
className?: string;
|
|
41
|
-
}):
|
|
41
|
+
}): react_jsx_runtime72.JSX.Element;
|
|
42
42
|
displayName: string;
|
|
43
43
|
};
|
|
44
44
|
Body: {
|
|
@@ -50,7 +50,7 @@ declare const BottomSheet: {
|
|
|
50
50
|
children: React.ReactNode;
|
|
51
51
|
className?: string;
|
|
52
52
|
maxHeight?: string | number;
|
|
53
|
-
}):
|
|
53
|
+
}): react_jsx_runtime72.JSX.Element;
|
|
54
54
|
displayName: string;
|
|
55
55
|
};
|
|
56
56
|
Footer: {
|
|
@@ -60,7 +60,7 @@ declare const BottomSheet: {
|
|
|
60
60
|
}: {
|
|
61
61
|
children: React.ReactNode;
|
|
62
62
|
className?: string;
|
|
63
|
-
}):
|
|
63
|
+
}): react_jsx_runtime72.JSX.Element;
|
|
64
64
|
displayName: string;
|
|
65
65
|
};
|
|
66
66
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants45 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/BottomSheet/BottomSheet.styles.d.ts
|
|
5
|
-
declare const bottomSheet:
|
|
5
|
+
declare const bottomSheet: tailwind_variants45.TVReturnType<{
|
|
6
6
|
headerAlign: {
|
|
7
7
|
left: {
|
|
8
8
|
header: string;
|
|
@@ -32,7 +32,7 @@ declare const bottomSheet: tailwind_variants51.TVReturnType<{
|
|
|
32
32
|
header: string;
|
|
33
33
|
body: string;
|
|
34
34
|
footer: string;
|
|
35
|
-
},
|
|
35
|
+
}, tailwind_variants45.TVReturnType<{
|
|
36
36
|
headerAlign: {
|
|
37
37
|
left: {
|
|
38
38
|
header: string;
|
|
@@ -2,7 +2,7 @@ import { PrimitiveProps } from "../Primitive/Primitive.mjs";
|
|
|
2
2
|
import "../Primitive/index.mjs";
|
|
3
3
|
import { ButtonVariants } from "./Button.styles.mjs";
|
|
4
4
|
import { ComponentProps } from "react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime9 from "react/jsx-runtime";
|
|
6
6
|
|
|
7
7
|
//#region src/components/Button/Button.d.ts
|
|
8
8
|
interface ButtonProps extends Omit<ComponentProps<'button'>, 'color'>, ButtonVariants, PrimitiveProps {}
|
|
@@ -14,7 +14,7 @@ declare function Button({
|
|
|
14
14
|
className,
|
|
15
15
|
children,
|
|
16
16
|
...props
|
|
17
|
-
}: ButtonProps):
|
|
17
|
+
}: ButtonProps): react_jsx_runtime9.JSX.Element;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { Button, ButtonProps };
|
|
20
20
|
//# sourceMappingURL=Button.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.mts","names":[],"sources":["../../../src/components/Button/Button.tsx"],"mappings":";;;;;;;UAKiB,WAAA,SAEb,IAAA,CAAK,cAAA,sBACL,cAAA,EACA,cAAA;AAAA,iBAEY,MAAA,CAAA;EACd,IAAA;EACA,KAAA;EACA,SAAA;EACA,QAAA;EACA,SAAA;EACA,QAAA;EAAA,GACG;AAAA,GACF,WAAA,GAAW,
|
|
1
|
+
{"version":3,"file":"Button.d.mts","names":[],"sources":["../../../src/components/Button/Button.tsx"],"mappings":";;;;;;;UAKiB,WAAA,SAEb,IAAA,CAAK,cAAA,sBACL,cAAA,EACA,cAAA;AAAA,iBAEY,MAAA,CAAA;EACd,IAAA;EACA,KAAA;EACA,SAAA;EACA,QAAA;EACA,SAAA;EACA,QAAA;EAAA,GACG;AAAA,GACF,WAAA,GAAW,kBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants31 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Button/Button.styles.d.ts
|
|
5
|
-
declare const button:
|
|
5
|
+
declare const button: tailwind_variants31.TVReturnType<{
|
|
6
6
|
size: {
|
|
7
7
|
sm: string;
|
|
8
8
|
md: string;
|
|
@@ -38,7 +38,7 @@ declare const button: tailwind_variants37.TVReturnType<{
|
|
|
38
38
|
true: string;
|
|
39
39
|
false: string;
|
|
40
40
|
};
|
|
41
|
-
}, undefined,
|
|
41
|
+
}, undefined, tailwind_variants31.TVReturnType<{
|
|
42
42
|
size: {
|
|
43
43
|
sm: string;
|
|
44
44
|
md: string;
|
|
@@ -2,7 +2,7 @@ import { PrimitiveProps } from "../Primitive/Primitive.mjs";
|
|
|
2
2
|
import "../Primitive/index.mjs";
|
|
3
3
|
import { CTAButtonVariants } from "./CTAButton.styles.mjs";
|
|
4
4
|
import { ComponentProps } from "react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime16 from "react/jsx-runtime";
|
|
6
6
|
|
|
7
7
|
//#region src/components/CTAButton/CTAButton.d.ts
|
|
8
8
|
interface CTAButtonProps extends Omit<ComponentProps<'button'>, 'color'>, PrimitiveProps, CTAButtonVariants {}
|
|
@@ -13,7 +13,7 @@ declare function CTAButton({
|
|
|
13
13
|
className,
|
|
14
14
|
children,
|
|
15
15
|
...props
|
|
16
|
-
}: CTAButtonProps):
|
|
16
|
+
}: CTAButtonProps): react_jsx_runtime16.JSX.Element;
|
|
17
17
|
//#endregion
|
|
18
18
|
export { CTAButton, CTAButtonProps };
|
|
19
19
|
//# sourceMappingURL=CTAButton.d.mts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants37 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/CTAButton/CTAButton.styles.d.ts
|
|
5
|
-
declare const ctaButton:
|
|
5
|
+
declare const ctaButton: tailwind_variants37.TVReturnType<{
|
|
6
6
|
color: {
|
|
7
7
|
blue: string;
|
|
8
8
|
red: string;
|
|
@@ -34,7 +34,7 @@ declare const ctaButton: tailwind_variants39.TVReturnType<{
|
|
|
34
34
|
true: string;
|
|
35
35
|
false: string;
|
|
36
36
|
};
|
|
37
|
-
}, undefined,
|
|
37
|
+
}, undefined, tailwind_variants37.TVReturnType<{
|
|
38
38
|
color: {
|
|
39
39
|
blue: string;
|
|
40
40
|
red: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CalendarVariants, eventBarStyles } from "./Calendar.styles.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime83 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Calendar/Calendar.d.ts
|
|
5
5
|
type CalendarEvent = {
|
|
@@ -32,7 +32,7 @@ declare const Calendar: {
|
|
|
32
32
|
onDateClick,
|
|
33
33
|
onEventClick,
|
|
34
34
|
enableHover
|
|
35
|
-
}: CalendarProps):
|
|
35
|
+
}: CalendarProps): react_jsx_runtime83.JSX.Element;
|
|
36
36
|
displayName: string;
|
|
37
37
|
};
|
|
38
38
|
//#endregion
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants51 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Calendar/Calendar.styles.d.ts
|
|
5
|
-
declare const calendar:
|
|
5
|
+
declare const calendar: tailwind_variants51.TVReturnType<{
|
|
6
6
|
size: {
|
|
7
7
|
sm: {
|
|
8
8
|
wrapper: string;
|
|
@@ -170,7 +170,7 @@ declare const calendar: tailwind_variants47.TVReturnType<{
|
|
|
170
170
|
dayNumber: string;
|
|
171
171
|
eventList: string[];
|
|
172
172
|
eventItemHeight: string;
|
|
173
|
-
},
|
|
173
|
+
}, tailwind_variants51.TVReturnType<{
|
|
174
174
|
size: {
|
|
175
175
|
sm: {
|
|
176
176
|
wrapper: string;
|
|
@@ -5,7 +5,7 @@ import "../Text/index.mjs";
|
|
|
5
5
|
import "../../utils/index.mjs";
|
|
6
6
|
import { CheckboxVariants } from "./Checkbox.styles.mjs";
|
|
7
7
|
import React from "react";
|
|
8
|
-
import * as
|
|
8
|
+
import * as react_jsx_runtime13 from "react/jsx-runtime";
|
|
9
9
|
|
|
10
10
|
//#region src/components/Checkbox/Checkbox.d.ts
|
|
11
11
|
interface CheckboxRootProps extends Omit<React.ComponentProps<'label'>, 'onChange'>, CheckboxVariants {
|
|
@@ -23,11 +23,11 @@ declare const Checkbox: {
|
|
|
23
23
|
children,
|
|
24
24
|
className,
|
|
25
25
|
...props
|
|
26
|
-
}: CheckboxRootProps):
|
|
26
|
+
}: CheckboxRootProps): react_jsx_runtime13.JSX.Element;
|
|
27
27
|
displayName: string;
|
|
28
28
|
} & {
|
|
29
29
|
Indicator: {
|
|
30
|
-
():
|
|
30
|
+
(): react_jsx_runtime13.JSX.Element;
|
|
31
31
|
displayName: string;
|
|
32
32
|
};
|
|
33
33
|
Label: {
|
|
@@ -37,7 +37,7 @@ declare const Checkbox: {
|
|
|
37
37
|
textColor,
|
|
38
38
|
className,
|
|
39
39
|
...props
|
|
40
|
-
}: CheckboxLabelProps<E>):
|
|
40
|
+
}: CheckboxLabelProps<E>): react_jsx_runtime13.JSX.Element;
|
|
41
41
|
displayName: string;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants35 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Checkbox/Checkbox.styles.d.ts
|
|
5
|
-
declare const checkbox:
|
|
5
|
+
declare const checkbox: tailwind_variants35.TVReturnType<{
|
|
6
6
|
checked: {
|
|
7
7
|
true: {
|
|
8
8
|
indicator: string;
|
|
@@ -46,7 +46,7 @@ declare const checkbox: tailwind_variants33.TVReturnType<{
|
|
|
46
46
|
indicator: string;
|
|
47
47
|
indicatorIcon: string;
|
|
48
48
|
label: string;
|
|
49
|
-
},
|
|
49
|
+
}, tailwind_variants35.TVReturnType<{
|
|
50
50
|
checked: {
|
|
51
51
|
true: {
|
|
52
52
|
indicator: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PrimitiveProps } from "../Primitive/Primitive.cjs";
|
|
2
2
|
import { ChipVariants } from "./Chip.styles.cjs";
|
|
3
3
|
import * as React$1 from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime37 from "react/jsx-runtime";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Chip/Chip.d.ts
|
|
7
7
|
interface ChipProps extends Omit<React$1.ComponentPropsWithoutRef<'div'>, 'color'>, PrimitiveProps, ChipVariants {}
|
|
@@ -14,7 +14,7 @@ declare const Chip: {
|
|
|
14
14
|
onClick,
|
|
15
15
|
className,
|
|
16
16
|
...props
|
|
17
|
-
}: ChipProps):
|
|
17
|
+
}: ChipProps): react_jsx_runtime37.JSX.Element;
|
|
18
18
|
displayName: string;
|
|
19
19
|
};
|
|
20
20
|
//#endregion
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants17 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Chip/Chip.styles.d.ts
|
|
5
|
-
declare const chip:
|
|
5
|
+
declare const chip: tailwind_variants17.TVReturnType<{
|
|
6
6
|
color: {
|
|
7
7
|
white: string;
|
|
8
8
|
lightgray: string;
|
|
@@ -30,7 +30,7 @@ declare const chip: tailwind_variants15.TVReturnType<{
|
|
|
30
30
|
true: string;
|
|
31
31
|
false: string;
|
|
32
32
|
};
|
|
33
|
-
}, undefined,
|
|
33
|
+
}, undefined, tailwind_variants17.TVReturnType<{
|
|
34
34
|
color: {
|
|
35
35
|
white: string;
|
|
36
36
|
lightgray: string;
|
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
import { PrimitiveProps } from "../Primitive/Primitive.cjs";
|
|
2
2
|
import { DialogSizeOptions, DialogVariants } from "./Dialog.styles.cjs";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react11 from "react";
|
|
4
4
|
import { ComponentProps } from "react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime31 from "react/jsx-runtime";
|
|
6
6
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
7
7
|
|
|
8
8
|
//#region src/components/Dialog/Dialog.d.ts
|
|
9
|
-
declare const DialogRoot:
|
|
9
|
+
declare const DialogRoot: react11.FC<DialogPrimitive.DialogProps>;
|
|
10
10
|
type DialogProps = ComponentProps<typeof DialogRoot>;
|
|
11
|
-
declare const DialogTrigger:
|
|
11
|
+
declare const DialogTrigger: react11.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react11.RefAttributes<HTMLButtonElement>>;
|
|
12
12
|
type DialogTriggerProps = ComponentProps<typeof DialogTrigger>;
|
|
13
|
-
declare const DialogPortal:
|
|
13
|
+
declare const DialogPortal: react11.FC<DialogPrimitive.DialogPortalProps>;
|
|
14
14
|
type DialogPortalProps = ComponentProps<typeof DialogPortal>;
|
|
15
|
-
declare const DialogClose:
|
|
15
|
+
declare const DialogClose: react11.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react11.RefAttributes<HTMLButtonElement>>;
|
|
16
16
|
type DialogCloseProps = ComponentProps<typeof DialogClose>;
|
|
17
17
|
type DialogOverlayProps = ComponentProps<typeof DialogPrimitive.Overlay>;
|
|
18
18
|
interface DialogContentProps extends ComponentProps<typeof DialogPrimitive.Content>, DialogSizeOptions, DialogVariants {}
|
|
19
19
|
type DialogTitleProps = ComponentProps<typeof DialogPrimitive.Title>;
|
|
20
20
|
type DialogDescriptionProps = ComponentProps<typeof DialogPrimitive.Description>;
|
|
21
21
|
type DialogFooterProps = ComponentProps<'div'> & PrimitiveProps;
|
|
22
|
-
declare const Dialog:
|
|
23
|
-
Trigger:
|
|
22
|
+
declare const Dialog: react11.FC<DialogPrimitive.DialogProps> & {
|
|
23
|
+
Trigger: react11.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react11.RefAttributes<HTMLButtonElement>>;
|
|
24
24
|
Content: {
|
|
25
25
|
({
|
|
26
26
|
className,
|
|
27
27
|
children,
|
|
28
28
|
...props
|
|
29
|
-
}: DialogContentProps):
|
|
29
|
+
}: DialogContentProps): react_jsx_runtime31.JSX.Element;
|
|
30
30
|
displayName: string | undefined;
|
|
31
31
|
};
|
|
32
32
|
Title: {
|
|
33
33
|
({
|
|
34
34
|
className,
|
|
35
35
|
...props
|
|
36
|
-
}: DialogTitleProps):
|
|
36
|
+
}: DialogTitleProps): react_jsx_runtime31.JSX.Element;
|
|
37
37
|
displayName: string | undefined;
|
|
38
38
|
};
|
|
39
39
|
Description: {
|
|
40
40
|
({
|
|
41
41
|
className,
|
|
42
42
|
...props
|
|
43
|
-
}: DialogDescriptionProps):
|
|
43
|
+
}: DialogDescriptionProps): react_jsx_runtime31.JSX.Element;
|
|
44
44
|
displayName: string | undefined;
|
|
45
45
|
};
|
|
46
46
|
Footer: {
|
|
47
47
|
({
|
|
48
48
|
className,
|
|
49
49
|
...props
|
|
50
|
-
}: DialogFooterProps):
|
|
50
|
+
}: DialogFooterProps): react_jsx_runtime31.JSX.Element;
|
|
51
51
|
displayName: string;
|
|
52
52
|
};
|
|
53
|
-
Close:
|
|
53
|
+
Close: react11.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react11.RefAttributes<HTMLButtonElement>>;
|
|
54
54
|
};
|
|
55
55
|
//#endregion
|
|
56
56
|
export { Dialog, DialogCloseProps, DialogContentProps, DialogDescriptionProps, DialogFooterProps, DialogOverlayProps, DialogPortalProps, DialogProps, DialogTitleProps, DialogTriggerProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dialog.d.cts","names":[],"sources":["../../../src/components/Dialog/Dialog.tsx"],"mappings":";;;;;;;;cAYM,UAAA,EAAU,
|
|
1
|
+
{"version":3,"file":"Dialog.d.cts","names":[],"sources":["../../../src/components/Dialog/Dialog.tsx"],"mappings":";;;;;;;;cAYM,UAAA,EAAU,OAAA,CAAA,EAAA,CAAA,eAAA,CAAA,WAAA;AAAA,KACJ,WAAA,GAAc,cAAA,QAAsB,UAAA;AAAA,cAE1C,aAAA,EAAa,OAAA,CAAA,yBAAA,CAAA,eAAA,CAAA,kBAAA,GAAA,OAAA,CAAA,aAAA,CAAA,iBAAA;AAAA,KACP,kBAAA,GAAqB,cAAA,QAAsB,aAAA;AAAA,cAEjD,YAAA,EAAY,OAAA,CAAA,EAAA,CAAA,eAAA,CAAA,iBAAA;AAAA,KACN,iBAAA,GAAoB,cAAA,QAAsB,YAAA;AAAA,cAEhD,WAAA,EAAW,OAAA,CAAA,yBAAA,CAAA,eAAA,CAAA,gBAAA,GAAA,OAAA,CAAA,aAAA,CAAA,iBAAA;AAAA,KACL,gBAAA,GAAmB,cAAA,QAAsB,WAAA;AAAA,KAEzC,kBAAA,GAAqB,cAAA,QAAsB,eAAA,CAAgB,OAAA;AAAA,UAWtD,kBAAA,SAEb,cAAA,QAAsB,eAAA,CAAgB,OAAA,GACtC,iBAAA,EACA,cAAA;AAAA,KA0BQ,gBAAA,GAAmB,cAAA,QAAsB,eAAA,CAAgB,KAAA;AAAA,KAOzD,sBAAA,GAAyB,cAAA,QAC5B,eAAA,CAAgB,WAAA;AAAA,KAQb,iBAAA,GAAoB,cAAA,UAAwB,cAAA;AAAA,cAO3C,MAAA,EAAM,OAAA,CAAA,EAAA,CAAA,eAAA,CAAA,WAAA;;;;;;;OA3ChB,kBAAA,GAAkB,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;OAsByB,gBAAA,GAAgB,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;OASV,sBAAA,GAAsB,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;;OAO3B,iBAAA,GAAiB,mBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -3,7 +3,7 @@ import "../Primitive/index.mjs";
|
|
|
3
3
|
import { DialogSizeOptions, DialogVariants } from "./Dialog.styles.mjs";
|
|
4
4
|
import * as react0 from "react";
|
|
5
5
|
import { ComponentProps } from "react";
|
|
6
|
-
import * as
|
|
6
|
+
import * as react_jsx_runtime25 from "react/jsx-runtime";
|
|
7
7
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
8
8
|
|
|
9
9
|
//#region src/components/Dialog/Dialog.d.ts
|
|
@@ -27,28 +27,28 @@ declare const Dialog: react0.FC<DialogPrimitive.DialogProps> & {
|
|
|
27
27
|
className,
|
|
28
28
|
children,
|
|
29
29
|
...props
|
|
30
|
-
}: DialogContentProps):
|
|
30
|
+
}: DialogContentProps): react_jsx_runtime25.JSX.Element;
|
|
31
31
|
displayName: string | undefined;
|
|
32
32
|
};
|
|
33
33
|
Title: {
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: DialogTitleProps):
|
|
37
|
+
}: DialogTitleProps): react_jsx_runtime25.JSX.Element;
|
|
38
38
|
displayName: string | undefined;
|
|
39
39
|
};
|
|
40
40
|
Description: {
|
|
41
41
|
({
|
|
42
42
|
className,
|
|
43
43
|
...props
|
|
44
|
-
}: DialogDescriptionProps):
|
|
44
|
+
}: DialogDescriptionProps): react_jsx_runtime25.JSX.Element;
|
|
45
45
|
displayName: string | undefined;
|
|
46
46
|
};
|
|
47
47
|
Footer: {
|
|
48
48
|
({
|
|
49
49
|
className,
|
|
50
50
|
...props
|
|
51
|
-
}: DialogFooterProps):
|
|
51
|
+
}: DialogFooterProps): react_jsx_runtime25.JSX.Element;
|
|
52
52
|
displayName: string;
|
|
53
53
|
};
|
|
54
54
|
Close: react0.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react0.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants13 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Dialog/Dialog.styles.d.ts
|
|
5
|
-
declare const dialog:
|
|
5
|
+
declare const dialog: tailwind_variants13.TVReturnType<{
|
|
6
6
|
fullscreen: {
|
|
7
7
|
true: {
|
|
8
8
|
content: string;
|
|
@@ -22,7 +22,7 @@ declare const dialog: tailwind_variants17.TVReturnType<{
|
|
|
22
22
|
overlay: string;
|
|
23
23
|
content: string;
|
|
24
24
|
close: string;
|
|
25
|
-
},
|
|
25
|
+
}, tailwind_variants13.TVReturnType<{
|
|
26
26
|
fullscreen: {
|
|
27
27
|
true: {
|
|
28
28
|
content: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants11 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Dialog/Dialog.styles.d.ts
|
|
5
|
-
declare const dialog:
|
|
5
|
+
declare const dialog: tailwind_variants11.TVReturnType<{
|
|
6
6
|
fullscreen: {
|
|
7
7
|
true: {
|
|
8
8
|
content: string;
|
|
@@ -22,7 +22,7 @@ declare const dialog: tailwind_variants13.TVReturnType<{
|
|
|
22
22
|
overlay: string;
|
|
23
23
|
content: string;
|
|
24
24
|
close: string;
|
|
25
|
-
},
|
|
25
|
+
}, tailwind_variants11.TVReturnType<{
|
|
26
26
|
fullscreen: {
|
|
27
27
|
true: {
|
|
28
28
|
content: string;
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
import { DrawerVariants } from "./Drawer.styles.cjs";
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
2
|
+
import * as react0 from "react";
|
|
3
|
+
import * as react_jsx_runtime18 from "react/jsx-runtime";
|
|
4
4
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
5
5
|
|
|
6
6
|
//#region src/components/Drawer/Drawer.d.ts
|
|
7
7
|
type DrawerOverlayProps = React.ComponentProps<typeof DialogPrimitive.Overlay>;
|
|
8
8
|
type DrawerContentProps = React.ComponentProps<typeof DialogPrimitive.Content> & DrawerVariants;
|
|
9
|
-
declare const Drawer:
|
|
10
|
-
Root:
|
|
11
|
-
Trigger:
|
|
12
|
-
Close:
|
|
13
|
-
Portal:
|
|
9
|
+
declare const Drawer: react0.FC<DialogPrimitive.DialogProps> & {
|
|
10
|
+
Root: react0.FC<DialogPrimitive.DialogProps>;
|
|
11
|
+
Trigger: react0.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react0.RefAttributes<HTMLButtonElement>>;
|
|
12
|
+
Close: react0.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & react0.RefAttributes<HTMLButtonElement>>;
|
|
13
|
+
Portal: react0.FC<DialogPrimitive.DialogPortalProps>;
|
|
14
14
|
Overlay: ({
|
|
15
15
|
className,
|
|
16
16
|
...props
|
|
17
|
-
}: DrawerOverlayProps) =>
|
|
17
|
+
}: DrawerOverlayProps) => react_jsx_runtime18.JSX.Element;
|
|
18
18
|
Content: ({
|
|
19
19
|
position,
|
|
20
20
|
className,
|
|
21
21
|
children,
|
|
22
22
|
...props
|
|
23
|
-
}: DrawerContentProps) =>
|
|
24
|
-
Title:
|
|
25
|
-
Description:
|
|
23
|
+
}: DrawerContentProps) => react_jsx_runtime18.JSX.Element;
|
|
24
|
+
Title: react0.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & react0.RefAttributes<HTMLHeadingElement>>;
|
|
25
|
+
Description: react0.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & react0.RefAttributes<HTMLParagraphElement>>;
|
|
26
26
|
};
|
|
27
27
|
//#endregion
|
|
28
28
|
export { Drawer };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Drawer.d.cts","names":[],"sources":["../../../src/components/Drawer/Drawer.tsx"],"mappings":";;;;;;KAUK,kBAAA,GAAqB,KAAA,CAAM,cAAA,QAAsB,eAAA,CAAgB,OAAA;AAAA,KASjE,kBAAA,GAAqB,KAAA,CAAM,cAAA,QAAsB,eAAA,CAAgB,OAAA,IACpE,cAAA;AAAA,cAgBW,MAAA,EAAM,
|
|
1
|
+
{"version":3,"file":"Drawer.d.cts","names":[],"sources":["../../../src/components/Drawer/Drawer.tsx"],"mappings":";;;;;;KAUK,kBAAA,GAAqB,KAAA,CAAM,cAAA,QAAsB,eAAA,CAAgB,OAAA;AAAA,KASjE,kBAAA,GAAqB,KAAA,CAAM,cAAA,QAAsB,eAAA,CAAgB,OAAA,IACpE,cAAA;AAAA,cAgBW,MAAA,EAAM,MAAA,CAAA,EAAA,CAAA,eAAA,CAAA,WAAA;;;;;;;;KAxB6B,kBAAA,KAAkB,mBAAA,CAAA,GAAA,CAAA,OAAA;;;;;;KAe/D,kBAAA,KAAkB,mBAAA,CAAA,GAAA,CAAA,OAAA"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants41 from "tailwind-variants";
|
|
2
2
|
import { VariantProps } from "tailwind-variants";
|
|
3
3
|
|
|
4
4
|
//#region src/components/Drawer/Drawer.styles.d.ts
|
|
5
|
-
declare const drawer:
|
|
5
|
+
declare const drawer: tailwind_variants41.TVReturnType<{
|
|
6
6
|
position: {
|
|
7
7
|
bottom: {
|
|
8
8
|
content: string;
|
|
@@ -20,7 +20,7 @@ declare const drawer: tailwind_variants45.TVReturnType<{
|
|
|
20
20
|
}, {
|
|
21
21
|
overlay: string[];
|
|
22
22
|
content: string[];
|
|
23
|
-
},
|
|
23
|
+
}, tailwind_variants41.TVReturnType<{
|
|
24
24
|
position: {
|
|
25
25
|
bottom: {
|
|
26
26
|
content: string;
|