@snapcall/design-system 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +212 -0
- package/dist/index.d.ts +198 -18
- package/dist/index.js +3711 -408
- package/dist/index.mjs +3622 -403
- package/dist/style.css +1 -1
- package/dist/tailwind.config.js +81 -11
- package/dist/tailwind.css +2 -2
- package/package.json +39 -33
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import { ReactElement, SVGProps } from 'react';
|
|
4
|
+
import { VariantProps } from 'class-variance-authority';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
|
+
import { OverlayTriggerState, useOverlayTriggerState } from 'react-stately';
|
|
7
|
+
import { AriaTextFieldProps } from 'react-aria';
|
|
8
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
9
|
+
|
|
10
|
+
declare const buttonVariants: (props?: ({
|
|
11
|
+
variant?: "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | "link" | null | undefined;
|
|
12
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
13
|
+
declare const buttonSizes: (props?: ({
|
|
14
|
+
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
15
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
16
|
+
interface ButtonProps extends react.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
|
|
17
|
+
icon?: boolean;
|
|
18
|
+
asChild?: boolean;
|
|
19
|
+
}
|
|
20
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
21
|
+
|
|
22
|
+
declare const badgeVariants: (props?: ({
|
|
23
|
+
variant?: "outline" | "default" | "fill" | null | undefined;
|
|
24
|
+
color?: "gray" | "green" | "red" | "yellow" | "blue" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "orange" | null | undefined;
|
|
25
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
26
|
+
interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
27
|
+
}
|
|
28
|
+
declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
30
|
+
interface DrawerProps {
|
|
31
|
+
state: OverlayTriggerState;
|
|
32
|
+
placement?: 'top' | 'right' | 'bottom' | 'left';
|
|
33
|
+
container?: Element;
|
|
34
|
+
children: ReactElement | ((close: () => void) => ReactElement);
|
|
35
|
+
}
|
|
36
|
+
declare const Drawer: ({ state, placement, container, children, ...props }: DrawerProps) => react_jsx_runtime.JSX.Element | null;
|
|
37
|
+
declare const useDrawerState: typeof useOverlayTriggerState;
|
|
38
|
+
|
|
39
|
+
interface TextFieldProps extends AriaTextFieldProps {
|
|
40
|
+
}
|
|
41
|
+
declare const TextField: (props: TextFieldProps) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
|
|
43
|
+
declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
|
|
44
|
+
declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
46
|
+
declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
47
|
+
|
|
48
|
+
type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
|
|
49
|
+
interface IconProps extends SVGAttributes {
|
|
50
|
+
size?: string | number;
|
|
51
|
+
duotone?: boolean;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
|
|
56
|
+
declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
|
|
58
|
+
declare const ArrowDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
|
|
60
|
+
declare const ArrowLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
|
|
62
|
+
declare const ArrowRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
|
|
64
|
+
declare const ArrowUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
|
|
66
|
+
declare const BellIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
|
|
68
|
+
declare const CalendarIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
|
|
70
|
+
declare const CalendarCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
|
|
72
|
+
declare const CalendarPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
|
|
74
|
+
declare const CameraIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
|
|
76
|
+
declare const CameraOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
|
|
78
|
+
declare const CheckCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
|
|
80
|
+
declare const ChevronDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
|
|
82
|
+
declare const ChevronLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
|
|
84
|
+
declare const ChevronRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
|
|
86
|
+
declare const ChevronUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
|
|
88
|
+
declare const CopyIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
|
|
90
|
+
declare const CursorClickIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
|
|
92
|
+
declare const DownloadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
|
|
94
|
+
declare const EditIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
|
|
96
|
+
declare const ExpandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
|
|
98
|
+
declare const FlipBackwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
|
|
100
|
+
declare const FlipForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
|
|
102
|
+
declare const HelpCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
|
|
104
|
+
declare const HomeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
|
|
106
|
+
declare const ImageIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
|
|
108
|
+
declare const ImageDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
|
|
110
|
+
declare const ImageXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
|
|
112
|
+
declare const InfoCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
|
|
114
|
+
declare const LightbulbIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
|
|
116
|
+
declare const LockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
|
|
118
|
+
declare const LogInIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
|
|
120
|
+
declare const MagicWandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
|
|
122
|
+
declare const MailIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
|
|
124
|
+
declare const MenuIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
|
|
126
|
+
declare const MessageChatSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
|
|
128
|
+
declare const MessagePlusSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
|
|
130
|
+
declare const MessageTextSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
|
|
132
|
+
declare const MicrophoneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
|
|
134
|
+
declare const MicrophoneOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
|
|
136
|
+
declare const MonitorIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
|
|
138
|
+
declare const NotificationBoxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
|
|
140
|
+
declare const PauseCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
|
|
142
|
+
declare const PhoneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
|
|
144
|
+
declare const PieChartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
|
|
146
|
+
declare const PlayCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
|
|
148
|
+
declare const PlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
|
|
150
|
+
declare const PlusCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
|
|
152
|
+
declare const PuzzlePieceIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
|
|
154
|
+
declare const QrCodeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
|
|
156
|
+
declare const ReceiptCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
|
|
158
|
+
declare const RecordingIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
|
|
160
|
+
declare const RefreshCcwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
|
|
162
|
+
declare const RefreshCwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
|
|
164
|
+
declare const RocketIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
|
|
166
|
+
declare const SaveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
|
|
168
|
+
declare const SearchMdIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
|
|
170
|
+
declare const SendIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
|
|
172
|
+
declare const SettingsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
|
|
174
|
+
declare const ShareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
|
|
176
|
+
declare const SkipBackIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
|
|
178
|
+
declare const SkipForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
179
|
+
|
|
180
|
+
declare const StarsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
181
|
+
|
|
182
|
+
declare const TrashIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
183
|
+
|
|
184
|
+
declare const TrendDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
|
|
186
|
+
declare const TrendUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
187
|
+
|
|
188
|
+
declare const UserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
189
|
+
|
|
190
|
+
declare const UserPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
191
|
+
|
|
192
|
+
declare const UserXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
193
|
+
|
|
194
|
+
declare const UsersIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
|
|
196
|
+
declare const UsersPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
197
|
+
|
|
198
|
+
declare const UsersXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
|
|
200
|
+
declare const VideoRecorderIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
201
|
+
|
|
202
|
+
declare const VideoRecorderOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
203
|
+
|
|
204
|
+
declare const VolumeMaxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
205
|
+
|
|
206
|
+
declare const VolumeXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
207
|
+
|
|
208
|
+
declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
209
|
+
|
|
210
|
+
declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
211
|
+
|
|
212
|
+
export { ActivityIcon, AlertCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, DownloadIcon, Drawer, DrawerProps, EditIcon, ExpandIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Tabs, TabsContent, TabsList, TabsTrigger, TextField, TextFieldProps, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, useDrawerState };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,24 +1,31 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
1
|
+
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import { ReactElement, SVGProps } from 'react';
|
|
4
|
+
import { VariantProps } from 'class-variance-authority';
|
|
5
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
6
|
import { OverlayTriggerState, useOverlayTriggerState } from 'react-stately';
|
|
7
|
+
import { AriaTextFieldProps } from 'react-aria';
|
|
8
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
5
9
|
|
|
6
|
-
|
|
7
|
-
variant?:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
declare const buttonVariants: (props?: ({
|
|
11
|
+
variant?: "primary" | "secondary" | "tertiary" | "outline" | "outlineBlue" | "destructive" | "ghostBlue" | "ghostRed" | "ghostGray" | "link" | null | undefined;
|
|
12
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
13
|
+
declare const buttonSizes: (props?: ({
|
|
14
|
+
size?: "xs" | "sm" | "md" | "lg" | null | undefined;
|
|
15
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
16
|
+
interface ButtonProps extends react.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants>, VariantProps<typeof buttonSizes> {
|
|
17
|
+
icon?: boolean;
|
|
18
|
+
asChild?: boolean;
|
|
13
19
|
}
|
|
14
|
-
declare const Button:
|
|
20
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
15
21
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
22
|
+
declare const badgeVariants: (props?: ({
|
|
23
|
+
variant?: "outline" | "default" | "fill" | null | undefined;
|
|
24
|
+
color?: "gray" | "green" | "red" | "yellow" | "blue" | "crimson" | "violet" | "cyan" | "teal" | "brown" | "orange" | null | undefined;
|
|
25
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
26
|
+
interface BadgeProps extends Omit<react.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof badgeVariants> {
|
|
20
27
|
}
|
|
21
|
-
declare
|
|
28
|
+
declare function Badge({ className, variant, color, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
22
29
|
|
|
23
30
|
interface DrawerProps {
|
|
24
31
|
state: OverlayTriggerState;
|
|
@@ -26,7 +33,180 @@ interface DrawerProps {
|
|
|
26
33
|
container?: Element;
|
|
27
34
|
children: ReactElement | ((close: () => void) => ReactElement);
|
|
28
35
|
}
|
|
29
|
-
declare const Drawer: ({ state, placement, container, children, ...props }: DrawerProps) => JSX.Element | null;
|
|
36
|
+
declare const Drawer: ({ state, placement, container, children, ...props }: DrawerProps) => react_jsx_runtime.JSX.Element | null;
|
|
30
37
|
declare const useDrawerState: typeof useOverlayTriggerState;
|
|
31
38
|
|
|
32
|
-
|
|
39
|
+
interface TextFieldProps extends AriaTextFieldProps {
|
|
40
|
+
}
|
|
41
|
+
declare const TextField: (props: TextFieldProps) => react_jsx_runtime.JSX.Element;
|
|
42
|
+
|
|
43
|
+
declare const Tabs: react.ForwardRefExoticComponent<TabsPrimitive.TabsProps & react.RefAttributes<HTMLDivElement>>;
|
|
44
|
+
declare const TabsList: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
declare const TabsTrigger: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & react.RefAttributes<HTMLButtonElement>, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
46
|
+
declare const TabsContent: react.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
47
|
+
|
|
48
|
+
type SVGAttributes = Partial<SVGProps<SVGSVGElement>>;
|
|
49
|
+
interface IconProps extends SVGAttributes {
|
|
50
|
+
size?: string | number;
|
|
51
|
+
duotone?: boolean;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare const ActivityIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
55
|
+
|
|
56
|
+
declare const AlertCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
57
|
+
|
|
58
|
+
declare const ArrowDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
59
|
+
|
|
60
|
+
declare const ArrowLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
61
|
+
|
|
62
|
+
declare const ArrowRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
63
|
+
|
|
64
|
+
declare const ArrowUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
65
|
+
|
|
66
|
+
declare const BellIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
67
|
+
|
|
68
|
+
declare const CalendarIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
69
|
+
|
|
70
|
+
declare const CalendarCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
71
|
+
|
|
72
|
+
declare const CalendarPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
73
|
+
|
|
74
|
+
declare const CameraIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
75
|
+
|
|
76
|
+
declare const CameraOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
77
|
+
|
|
78
|
+
declare const CheckCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
79
|
+
|
|
80
|
+
declare const ChevronDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
81
|
+
|
|
82
|
+
declare const ChevronLeftIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
83
|
+
|
|
84
|
+
declare const ChevronRightIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
|
|
86
|
+
declare const ChevronUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
87
|
+
|
|
88
|
+
declare const CopyIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
89
|
+
|
|
90
|
+
declare const CursorClickIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
91
|
+
|
|
92
|
+
declare const DownloadIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
93
|
+
|
|
94
|
+
declare const EditIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
|
|
96
|
+
declare const ExpandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
97
|
+
|
|
98
|
+
declare const FlipBackwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
99
|
+
|
|
100
|
+
declare const FlipForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
101
|
+
|
|
102
|
+
declare const HelpCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
103
|
+
|
|
104
|
+
declare const HomeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
|
|
106
|
+
declare const ImageIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
107
|
+
|
|
108
|
+
declare const ImageDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
109
|
+
|
|
110
|
+
declare const ImageXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
111
|
+
|
|
112
|
+
declare const InfoCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
113
|
+
|
|
114
|
+
declare const LightbulbIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
|
|
116
|
+
declare const LockIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
117
|
+
|
|
118
|
+
declare const LogInIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
119
|
+
|
|
120
|
+
declare const MagicWandIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
121
|
+
|
|
122
|
+
declare const MailIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
123
|
+
|
|
124
|
+
declare const MenuIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
|
|
126
|
+
declare const MessageChatSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
127
|
+
|
|
128
|
+
declare const MessagePlusSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
129
|
+
|
|
130
|
+
declare const MessageTextSquareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
131
|
+
|
|
132
|
+
declare const MicrophoneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
133
|
+
|
|
134
|
+
declare const MicrophoneOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
|
|
136
|
+
declare const MonitorIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
137
|
+
|
|
138
|
+
declare const NotificationBoxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
139
|
+
|
|
140
|
+
declare const PauseCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
141
|
+
|
|
142
|
+
declare const PhoneIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
143
|
+
|
|
144
|
+
declare const PieChartIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
|
|
146
|
+
declare const PlayCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
147
|
+
|
|
148
|
+
declare const PlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
149
|
+
|
|
150
|
+
declare const PlusCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
151
|
+
|
|
152
|
+
declare const PuzzlePieceIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
153
|
+
|
|
154
|
+
declare const QrCodeIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
|
|
156
|
+
declare const ReceiptCheckIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
157
|
+
|
|
158
|
+
declare const RecordingIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
159
|
+
|
|
160
|
+
declare const RefreshCcwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
161
|
+
|
|
162
|
+
declare const RefreshCwIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
163
|
+
|
|
164
|
+
declare const RocketIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
|
|
166
|
+
declare const SaveIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
167
|
+
|
|
168
|
+
declare const SearchMdIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
169
|
+
|
|
170
|
+
declare const SendIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
171
|
+
|
|
172
|
+
declare const SettingsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
173
|
+
|
|
174
|
+
declare const ShareIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
|
|
176
|
+
declare const SkipBackIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
177
|
+
|
|
178
|
+
declare const SkipForwardIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
179
|
+
|
|
180
|
+
declare const StarsIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
181
|
+
|
|
182
|
+
declare const TrashIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
183
|
+
|
|
184
|
+
declare const TrendDownIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
|
|
186
|
+
declare const TrendUpIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
187
|
+
|
|
188
|
+
declare const UserIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
189
|
+
|
|
190
|
+
declare const UserPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
191
|
+
|
|
192
|
+
declare const UserXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
193
|
+
|
|
194
|
+
declare const UsersIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
|
|
196
|
+
declare const UsersPlusIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
197
|
+
|
|
198
|
+
declare const UsersXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
199
|
+
|
|
200
|
+
declare const VideoRecorderIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
201
|
+
|
|
202
|
+
declare const VideoRecorderOffIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
203
|
+
|
|
204
|
+
declare const VolumeMaxIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
205
|
+
|
|
206
|
+
declare const VolumeXIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
207
|
+
|
|
208
|
+
declare const XCircleIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
209
|
+
|
|
210
|
+
declare const XCloseIcon: react.ForwardRefExoticComponent<Omit<IconProps, "ref"> & react.RefAttributes<SVGSVGElement>>;
|
|
211
|
+
|
|
212
|
+
export { ActivityIcon, AlertCircleIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, Badge, BadgeProps, BellIcon, Button, ButtonProps, CalendarCheckIcon, CalendarIcon, CalendarPlusIcon, CameraIcon, CameraOffIcon, CheckCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CopyIcon, CursorClickIcon, DownloadIcon, Drawer, DrawerProps, EditIcon, ExpandIcon, FlipBackwardIcon, FlipForwardIcon, HelpCircleIcon, HomeIcon, ImageDownIcon, ImageIcon, ImageXIcon, InfoCircleIcon, LightbulbIcon, LockIcon, LogInIcon, MagicWandIcon, MailIcon, MenuIcon, MessageChatSquareIcon, MessagePlusSquareIcon, MessageTextSquareIcon, MicrophoneIcon, MicrophoneOffIcon, MonitorIcon, NotificationBoxIcon, PauseCircleIcon, PhoneIcon, PieChartIcon, PlayCircleIcon, PlusCircleIcon, PlusIcon, PuzzlePieceIcon, QrCodeIcon, ReceiptCheckIcon, RecordingIcon, RefreshCcwIcon, RefreshCwIcon, RocketIcon, SaveIcon, SearchMdIcon, SendIcon, SettingsIcon, ShareIcon, SkipBackIcon, SkipForwardIcon, StarsIcon, Tabs, TabsContent, TabsList, TabsTrigger, TextField, TextFieldProps, TrashIcon, TrendDownIcon, TrendUpIcon, UserIcon, UserPlusIcon, UserXIcon, UsersIcon, UsersPlusIcon, UsersXIcon, VideoRecorderIcon, VideoRecorderOffIcon, VolumeMaxIcon, VolumeXIcon, XCircleIcon, XCloseIcon, useDrawerState };
|