@medway-ui/core 1.11.0 → 1.11.2
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 -205
- package/dist/index.d.ts +212 -205
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
3
|
-
import * as React from 'react';
|
|
3
|
+
import * as React$1 from 'react';
|
|
4
|
+
import { ComponentProps, HTMLAttributes } from 'react';
|
|
4
5
|
import { VariantProps } from 'class-variance-authority';
|
|
5
6
|
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Progress as Progress$1, Checkbox as Checkbox$1, Collapsible as Collapsible$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Tabs as Tabs$1, Separator as Separator$1, Tooltip as Tooltip$1, Switch as Switch$1 } from 'radix-ui';
|
|
6
7
|
|
|
7
|
-
interface AlertProps extends React.ComponentProps<"div"> {
|
|
8
|
+
interface AlertProps extends React$1.ComponentProps<"div"> {
|
|
8
9
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error";
|
|
9
10
|
onClose?: () => void;
|
|
10
11
|
}
|
|
@@ -12,78 +13,78 @@ declare const alertVariants: (props?: ({
|
|
|
12
13
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error" | null | undefined;
|
|
13
14
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
14
15
|
declare function Alert({ className, variant, onClose, children, ...props }: AlertProps): react_jsx_runtime.JSX.Element;
|
|
15
|
-
declare function AlertContainer({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
16
|
-
declare function AlertContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
17
|
-
declare function AlertIcon({ className, icon, ...props }: React.ComponentProps<"div"> & {
|
|
18
|
-
icon?: React.ReactNode;
|
|
16
|
+
declare function AlertContainer({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
17
|
+
declare function AlertContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
18
|
+
declare function AlertIcon({ className, icon, ...props }: React$1.ComponentProps<"div"> & {
|
|
19
|
+
icon?: React$1.ReactNode;
|
|
19
20
|
}): react_jsx_runtime.JSX.Element;
|
|
20
|
-
declare function AlertTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
21
|
-
declare function AlertDescription({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
22
|
-
declare function AlertActions({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
21
|
+
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
22
|
+
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
23
|
+
declare function AlertActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
23
24
|
declare const alertButtonVariants: (props?: ({
|
|
24
25
|
variant?: "regular" | "basic" | null | undefined;
|
|
25
26
|
alertVariant?: "regular" | "emphasis" | "success" | "warning" | "error" | null | undefined;
|
|
26
27
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
27
|
-
interface AlertButtonProps extends React.ComponentProps<"button">, VariantProps<typeof alertButtonVariants> {
|
|
28
|
+
interface AlertButtonProps extends React$1.ComponentProps<"button">, VariantProps<typeof alertButtonVariants> {
|
|
28
29
|
}
|
|
29
30
|
declare function AlertButton({ className, variant, ...props }: AlertButtonProps): react_jsx_runtime.JSX.Element;
|
|
30
31
|
|
|
31
|
-
declare function AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
32
|
-
declare function AlertDialogTrigger({ ...props }: React.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
33
|
-
declare function AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
34
|
-
declare function AlertDialogOverlay({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
35
|
-
declare function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Content>): react_jsx_runtime.JSX.Element;
|
|
36
|
-
declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
37
|
-
declare function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
38
|
-
declare function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
39
|
-
declare function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
40
|
-
declare function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Action>): react_jsx_runtime.JSX.Element;
|
|
41
|
-
declare function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof AlertDialog$1.Cancel>): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
33
|
+
declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
34
|
+
declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
35
|
+
declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
36
|
+
declare function AlertDialogContent({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Content>): react_jsx_runtime.JSX.Element;
|
|
37
|
+
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
38
|
+
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
39
|
+
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
40
|
+
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
41
|
+
declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Action>): react_jsx_runtime.JSX.Element;
|
|
42
|
+
declare function AlertDialogCancel({ className, ...props }: React$1.ComponentProps<typeof AlertDialog$1.Cancel>): react_jsx_runtime.JSX.Element;
|
|
42
43
|
|
|
43
44
|
declare const avatarVariants: (props?: ({
|
|
44
45
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
45
46
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
46
|
-
interface AvatarProps extends React.ComponentProps<typeof Avatar$1.Root>, VariantProps<typeof avatarVariants> {
|
|
47
|
+
interface AvatarProps extends React$1.ComponentProps<typeof Avatar$1.Root>, VariantProps<typeof avatarVariants> {
|
|
47
48
|
src?: string;
|
|
48
49
|
alt?: string;
|
|
49
|
-
fallback?: React.ReactNode;
|
|
50
|
+
fallback?: React$1.ReactNode;
|
|
50
51
|
badge?: number | string;
|
|
51
52
|
}
|
|
52
53
|
declare function Avatar({ className, size, badge, children, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
53
|
-
declare function AvatarImage({ className, ...props }: React.ComponentProps<typeof Avatar$1.Image>): react_jsx_runtime.JSX.Element;
|
|
54
|
-
declare function AvatarFallback({ className, ...props }: React.ComponentProps<typeof Avatar$1.Fallback>): react_jsx_runtime.JSX.Element;
|
|
54
|
+
declare function AvatarImage({ className, ...props }: React$1.ComponentProps<typeof Avatar$1.Image>): react_jsx_runtime.JSX.Element;
|
|
55
|
+
declare function AvatarFallback({ className, ...props }: React$1.ComponentProps<typeof Avatar$1.Fallback>): react_jsx_runtime.JSX.Element;
|
|
55
56
|
|
|
56
57
|
declare const badgeVariants: (props?: ({
|
|
57
58
|
variant?: "regular" | "warning" | "error" | "freemium" | null | undefined;
|
|
58
59
|
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
59
60
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
60
61
|
type BadgeAnimation = "shine";
|
|
61
|
-
interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
62
|
+
interface BadgeProps extends React$1.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
|
|
62
63
|
asChild?: boolean;
|
|
63
|
-
icon?: React.ReactNode;
|
|
64
|
+
icon?: React$1.ReactNode;
|
|
64
65
|
animation?: BadgeAnimation;
|
|
65
66
|
}
|
|
66
67
|
declare function Badge({ className, variant, size, icon, animation, asChild, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
67
68
|
|
|
68
|
-
declare function Breadcrumb({ ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
69
|
-
declare function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
70
|
-
interface BreadcrumbItemProps extends React.ComponentProps<"li"> {
|
|
71
|
-
icon?: React.ReactNode;
|
|
69
|
+
declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
71
|
+
interface BreadcrumbItemProps extends React$1.ComponentProps<"li"> {
|
|
72
|
+
icon?: React$1.ReactNode;
|
|
72
73
|
}
|
|
73
74
|
declare function BreadcrumbItem({ className, icon, children, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
|
|
74
|
-
interface BreadcrumbLinkProps extends React.ComponentProps<"a"> {
|
|
75
|
+
interface BreadcrumbLinkProps extends React$1.ComponentProps<"a"> {
|
|
75
76
|
asChild?: boolean;
|
|
76
77
|
}
|
|
77
78
|
declare function BreadcrumbLink({ asChild, className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
|
|
78
|
-
declare function BreadcrumbPage({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
79
|
-
declare function BreadcrumbSeparator({ children, className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
80
|
-
declare function BreadcrumbEllipsis({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
79
|
+
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
80
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
81
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
81
82
|
|
|
82
|
-
interface ButtonProps extends React.ComponentProps<"button">, VariantProps<typeof buttonVariants> {
|
|
83
|
+
interface ButtonProps extends React$1.ComponentProps<"button">, VariantProps<typeof buttonVariants> {
|
|
83
84
|
asChild?: boolean;
|
|
84
85
|
containerClassName?: string;
|
|
85
|
-
iconRight?: React.ReactNode;
|
|
86
|
-
iconLeft?: React.ReactNode;
|
|
86
|
+
iconRight?: React$1.ReactNode;
|
|
87
|
+
iconLeft?: React$1.ReactNode;
|
|
87
88
|
badge?: number | string;
|
|
88
89
|
loading?: boolean;
|
|
89
90
|
alert?: string;
|
|
@@ -94,7 +95,7 @@ declare const buttonVariants: (props?: ({
|
|
|
94
95
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
95
96
|
declare function Button({ className, containerClassName, variant, size, asChild, iconRight, iconLeft, badge, loading, alert, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
96
97
|
|
|
97
|
-
interface ProgressCircleProps extends React.ComponentProps<"div"> {
|
|
98
|
+
interface ProgressCircleProps extends React$1.ComponentProps<"div"> {
|
|
98
99
|
value: number | string;
|
|
99
100
|
size?: number;
|
|
100
101
|
strokeWidth?: number;
|
|
@@ -106,121 +107,122 @@ interface ProgressCircleProps extends React.ComponentProps<"div"> {
|
|
|
106
107
|
}
|
|
107
108
|
declare function ProgressCircle({ className, indicatorClassName, trackClassName, valueClassName, label, labelClassName, value, size, strokeWidth, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
|
|
108
109
|
|
|
109
|
-
interface ProgressProps extends React.ComponentProps<typeof Progress$1.Root> {
|
|
110
|
+
interface ProgressProps extends React$1.ComponentProps<typeof Progress$1.Root> {
|
|
110
111
|
indicatorClassName?: string;
|
|
111
112
|
label?: string;
|
|
112
113
|
}
|
|
113
114
|
declare function Progress({ className, indicatorClassName, label, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
114
115
|
|
|
115
|
-
interface CardWeekProps extends React.ComponentProps<"div"> {
|
|
116
|
+
interface CardWeekProps extends React$1.ComponentProps<"div"> {
|
|
116
117
|
done?: boolean;
|
|
117
118
|
postponed?: boolean;
|
|
118
119
|
skipped?: boolean;
|
|
119
120
|
}
|
|
120
|
-
interface CardWeekBreadcrumbProps extends React.ComponentProps<"div"> {
|
|
121
|
+
interface CardWeekBreadcrumbProps extends React$1.ComponentProps<"div"> {
|
|
121
122
|
tag?: string;
|
|
122
|
-
tagIcon?: React.ReactElement;
|
|
123
|
+
tagIcon?: React$1.ReactElement;
|
|
123
124
|
}
|
|
124
|
-
interface CardWeekTextProps extends React.ComponentProps<"div"> {
|
|
125
|
+
interface CardWeekTextProps extends React$1.ComponentProps<"div"> {
|
|
125
126
|
isTime?: boolean;
|
|
126
127
|
}
|
|
127
128
|
declare function CardWeek({ className, done, postponed, skipped, ...props }: CardWeekProps): react_jsx_runtime.JSX.Element;
|
|
128
129
|
declare function CardWeekBreadcrumb({ className, children, tag, tagIcon, ...props }: CardWeekBreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
129
|
-
declare function CardWeekContainer({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
130
|
-
declare function CardWeekHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
131
|
-
declare function CardWeekTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
132
|
-
declare function CardWeekDescription({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
133
|
-
declare function CardWeekTags({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
130
|
+
declare function CardWeekContainer({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
131
|
+
declare function CardWeekHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
132
|
+
declare function CardWeekTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
133
|
+
declare function CardWeekDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
134
|
+
declare function CardWeekTags({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
134
135
|
declare function CardWeekProgressCircle({ className, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
|
|
135
136
|
declare function CardWeekProgress({ className, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
136
|
-
declare function CardWeekFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
137
|
-
declare function CardWeekContent({ className, children, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
137
|
+
declare function CardWeekFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
138
|
+
declare function CardWeekContent({ className, children, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
138
139
|
declare function CardWeekText({ className, children, isTime, ...props }: CardWeekTextProps): react_jsx_runtime.JSX.Element;
|
|
139
|
-
declare function CardWeekStatus({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
140
|
-
declare function CardWeekActions({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
140
|
+
declare function CardWeekStatus({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element | null;
|
|
141
|
+
declare function CardWeekActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
141
142
|
|
|
142
143
|
declare const checkboxVariants: (props?: ({
|
|
143
144
|
variant?: "regular" | null | undefined;
|
|
144
145
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
145
146
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
146
|
-
interface CheckboxProps extends React.ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
|
147
|
+
interface CheckboxProps extends React$1.ComponentProps<typeof Checkbox$1.Root>, VariantProps<typeof checkboxVariants> {
|
|
147
148
|
uncheckIcon?: boolean;
|
|
148
149
|
}
|
|
149
150
|
declare function Checkbox({ className, size, variant, uncheckIcon, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
|
|
150
151
|
|
|
151
152
|
type AnimationType = "accordion" | "fade";
|
|
152
|
-
interface CollapsibleContentProps extends React.ComponentProps<typeof Collapsible$1.Content> {
|
|
153
|
+
interface CollapsibleContentProps extends React$1.ComponentProps<typeof Collapsible$1.Content> {
|
|
153
154
|
className?: string;
|
|
154
155
|
}
|
|
155
|
-
interface CollapsibleProps extends React.ComponentProps<typeof Collapsible$1.Root> {
|
|
156
|
+
interface CollapsibleProps extends React$1.ComponentProps<typeof Collapsible$1.Root> {
|
|
156
157
|
animation?: AnimationType;
|
|
157
158
|
}
|
|
158
159
|
declare function Collapsible({ animation, ...props }: CollapsibleProps): react_jsx_runtime.JSX.Element;
|
|
159
|
-
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
160
|
+
declare function CollapsibleTrigger({ ...props }: React$1.ComponentProps<typeof Collapsible$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
160
161
|
declare function CollapsibleContent({ className, ...props }: CollapsibleContentProps): react_jsx_runtime.JSX.Element;
|
|
161
162
|
|
|
162
|
-
declare function Dialog({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
163
|
-
declare function DialogTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
164
|
-
declare function DialogPortal({ ...props }: React.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
165
|
-
declare function DialogClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
166
|
-
declare function DialogOverlay({ className, ...props }: React.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
167
|
-
interface DialogContainerProps extends React.ComponentProps<typeof Dialog$1.Content> {
|
|
163
|
+
declare function Dialog({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
164
|
+
declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
165
|
+
declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
166
|
+
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
167
|
+
declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
168
|
+
interface DialogContainerProps extends React$1.ComponentProps<typeof Dialog$1.Content> {
|
|
168
169
|
showCloseButton?: boolean;
|
|
169
170
|
overlayClassName?: string;
|
|
170
171
|
}
|
|
171
172
|
declare function DialogContainer({ className, overlayClassName, children, showCloseButton, ...props }: DialogContainerProps): react_jsx_runtime.JSX.Element;
|
|
172
173
|
declare function DialogContent({ className, children, }: {
|
|
173
174
|
className?: string;
|
|
174
|
-
children: React.ReactNode;
|
|
175
|
+
children: React$1.ReactNode;
|
|
175
176
|
}): react_jsx_runtime.JSX.Element;
|
|
176
|
-
interface DialogHeaderProps extends React.ComponentProps<"div"> {
|
|
177
|
+
interface DialogHeaderProps extends React$1.ComponentProps<"div"> {
|
|
177
178
|
separator?: boolean;
|
|
178
179
|
}
|
|
179
180
|
declare function DialogHeader({ className, separator, ...props }: DialogHeaderProps): react_jsx_runtime.JSX.Element;
|
|
180
|
-
interface DialogFooterProps extends React.ComponentProps<"div"> {
|
|
181
|
+
interface DialogFooterProps extends React$1.ComponentProps<"div"> {
|
|
181
182
|
separator?: boolean;
|
|
182
183
|
}
|
|
183
184
|
declare function DialogFooter({ className, separator, ...props }: DialogFooterProps): react_jsx_runtime.JSX.Element;
|
|
184
|
-
interface DialogTitleProps extends React.ComponentProps<typeof Dialog$1.Title> {
|
|
185
|
-
iconLeft?: React.ReactNode;
|
|
186
|
-
iconRight?: React.ReactNode;
|
|
185
|
+
interface DialogTitleProps extends React$1.ComponentProps<typeof Dialog$1.Title> {
|
|
186
|
+
iconLeft?: React$1.ReactNode;
|
|
187
|
+
iconRight?: React$1.ReactNode;
|
|
187
188
|
}
|
|
188
189
|
declare function DialogTitle({ className, iconLeft, iconRight, children, ...props }: DialogTitleProps): react_jsx_runtime.JSX.Element;
|
|
189
|
-
declare function DialogDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
190
|
-
|
|
191
|
-
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
192
|
-
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
193
|
-
declare function DropdownMenuTrigger({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
194
|
-
declare function DropdownMenuContent({ className, sideOffset, side, ...props }: React.ComponentProps<typeof DropdownMenu$1.Content>): react_jsx_runtime.JSX.Element;
|
|
195
|
-
declare function DropdownMenuGroup({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Group>): react_jsx_runtime.JSX.Element;
|
|
196
|
-
declare function DropdownMenuItem({ className, inset, variant, ...props }: React.ComponentProps<typeof DropdownMenu$1.Item> & {
|
|
190
|
+
declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
191
|
+
|
|
192
|
+
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Root>): react_jsx_runtime.JSX.Element;
|
|
193
|
+
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
194
|
+
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare function DropdownMenuContent({ className, sideOffset, side, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Content>): react_jsx_runtime.JSX.Element;
|
|
196
|
+
declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Group>): react_jsx_runtime.JSX.Element;
|
|
197
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Item> & {
|
|
197
198
|
inset?: boolean;
|
|
198
199
|
variant?: "default" | "destructive";
|
|
199
200
|
}): react_jsx_runtime.JSX.Element;
|
|
200
|
-
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React.ComponentProps<typeof DropdownMenu$1.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
201
|
-
declare function DropdownMenuRadioGroup({ ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
202
|
-
declare function DropdownMenuRadioItem({ className, children, ...props }: React.ComponentProps<typeof DropdownMenu$1.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
203
|
-
interface DropdownMenuLabelProps extends React.ComponentProps<typeof DropdownMenu$1.Label> {
|
|
201
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
202
|
+
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
203
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
204
|
+
interface DropdownMenuLabelProps extends React$1.ComponentProps<typeof DropdownMenu$1.Label> {
|
|
204
205
|
inset?: boolean;
|
|
205
206
|
}
|
|
206
207
|
declare function DropdownMenuLabel({ className, inset, ...props }: DropdownMenuLabelProps): react_jsx_runtime.JSX.Element;
|
|
207
|
-
declare function DropdownMenuSeparator({ className, ...props }: React.ComponentProps<typeof DropdownMenu$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
208
|
-
declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
209
|
-
declare function DropdownMenuSub({ ...props }: React.ComponentProps<typeof DropdownMenu$1.Sub>): react_jsx_runtime.JSX.Element;
|
|
210
|
-
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React.ComponentProps<typeof DropdownMenu$1.SubTrigger> & {
|
|
208
|
+
declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
209
|
+
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
210
|
+
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenu$1.Sub>): react_jsx_runtime.JSX.Element;
|
|
211
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.SubTrigger> & {
|
|
211
212
|
inset?: boolean;
|
|
212
213
|
}): react_jsx_runtime.JSX.Element;
|
|
213
|
-
declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenu$1.SubContent>): react_jsx_runtime.JSX.Element;
|
|
214
|
+
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenu$1.SubContent>): react_jsx_runtime.JSX.Element;
|
|
214
215
|
|
|
215
|
-
declare function Input({ className, type, ...props }: React.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
216
|
+
declare function Input({ className, type, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
216
217
|
|
|
218
|
+
interface LabelProps extends React$1.ComponentProps<typeof Label$1.Root>, VariantProps<typeof labelVariants> {
|
|
219
|
+
block?: boolean;
|
|
220
|
+
}
|
|
217
221
|
declare const labelVariants: (props?: ({
|
|
218
222
|
variant?: "regular" | null | undefined;
|
|
219
223
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
220
224
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
221
|
-
|
|
222
|
-
}
|
|
223
|
-
declare function Label({ className, variant, size, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
225
|
+
declare function Label({ className, variant, size, block, ...props }: LabelProps): react_jsx_runtime.JSX.Element;
|
|
224
226
|
|
|
225
227
|
interface LoadingProps {
|
|
226
228
|
size?: number;
|
|
@@ -251,25 +253,25 @@ interface PaginationProps {
|
|
|
251
253
|
}
|
|
252
254
|
type PaginationLinkProps = {
|
|
253
255
|
isActive?: boolean;
|
|
254
|
-
iconLeft?: React.ReactNode;
|
|
255
|
-
iconRight?: React.ReactNode;
|
|
256
|
+
iconLeft?: React$1.ReactNode;
|
|
257
|
+
iconRight?: React$1.ReactNode;
|
|
256
258
|
size?: "sm" | "md" | "lg";
|
|
257
259
|
variant?: ButtonVariant;
|
|
258
260
|
activeVariant?: ButtonVariant;
|
|
259
261
|
inactiveVariant?: ButtonVariant;
|
|
260
|
-
} & React.ComponentProps<"button">;
|
|
262
|
+
} & React$1.ComponentProps<"button">;
|
|
261
263
|
type ButtonVariant = NonNullable<VariantProps<typeof buttonVariants>["variant"]>;
|
|
262
|
-
declare function PaginationRoot({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
263
|
-
declare function PaginationContent({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
264
|
-
declare function PaginationInfo({ count, label, className, ...props }: React.ComponentProps<"p"> & {
|
|
264
|
+
declare function PaginationRoot({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
265
|
+
declare function PaginationContent({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
266
|
+
declare function PaginationInfo({ count, label, className, ...props }: React$1.ComponentProps<"p"> & {
|
|
265
267
|
count?: number;
|
|
266
268
|
label?: string;
|
|
267
269
|
}): react_jsx_runtime.JSX.Element;
|
|
268
|
-
declare function PaginationItem({ className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
270
|
+
declare function PaginationItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
269
271
|
declare function PaginationLink({ className, isActive, iconLeft, iconRight, size, variant, activeVariant, inactiveVariant, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
270
|
-
declare function PaginationPrevious({ className, size, variant, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
271
|
-
declare function PaginationNext({ className, size, variant, ...props }: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
272
|
-
declare function PaginationEllipsis({ className, size, ...props }: React.ComponentProps<"span"> & {
|
|
272
|
+
declare function PaginationPrevious({ className, size, variant, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
273
|
+
declare function PaginationNext({ className, size, variant, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
274
|
+
declare function PaginationEllipsis({ className, size, ...props }: React$1.ComponentProps<"span"> & {
|
|
273
275
|
size?: "sm" | "md" | "lg";
|
|
274
276
|
}): react_jsx_runtime.JSX.Element;
|
|
275
277
|
declare function calculatePageNumbers(currentPage: number, totalPages: number, maxVisible?: number): number[];
|
|
@@ -279,57 +281,57 @@ declare const radioGroupVariants: (props?: ({
|
|
|
279
281
|
variant?: "regular" | null | undefined;
|
|
280
282
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
281
283
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
282
|
-
declare function RadioGroup({ className, ...props }: React.ComponentProps<typeof RadioGroup$1.Root>): react_jsx_runtime.JSX.Element;
|
|
283
|
-
interface RadioGroupItemProps extends React.ComponentProps<typeof RadioGroup$1.Item>, VariantProps<typeof radioGroupVariants> {
|
|
284
|
+
declare function RadioGroup({ className, ...props }: React$1.ComponentProps<typeof RadioGroup$1.Root>): react_jsx_runtime.JSX.Element;
|
|
285
|
+
interface RadioGroupItemProps extends React$1.ComponentProps<typeof RadioGroup$1.Item>, VariantProps<typeof radioGroupVariants> {
|
|
284
286
|
}
|
|
285
287
|
declare function RadioGroupItem({ className, size, variant, ...props }: RadioGroupItemProps): react_jsx_runtime.JSX.Element;
|
|
286
288
|
|
|
287
|
-
interface RankingProps extends React.TableHTMLAttributes<HTMLTableElement> {
|
|
288
|
-
children?: React.ReactNode;
|
|
289
|
+
interface RankingProps extends React$1.TableHTMLAttributes<HTMLTableElement> {
|
|
290
|
+
children?: React$1.ReactNode;
|
|
289
291
|
}
|
|
290
|
-
interface RankingItemProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
291
|
-
children?: React.ReactNode;
|
|
292
|
+
interface RankingItemProps extends React$1.HTMLAttributes<HTMLTableRowElement> {
|
|
293
|
+
children?: React$1.ReactNode;
|
|
292
294
|
}
|
|
293
|
-
interface RankingNumberProps extends React.HTMLAttributes<HTMLTableCellElement> {
|
|
294
|
-
children: React.ReactNode;
|
|
295
|
+
interface RankingNumberProps extends React$1.HTMLAttributes<HTMLTableCellElement> {
|
|
296
|
+
children: React$1.ReactNode;
|
|
295
297
|
}
|
|
296
|
-
interface RankingTopicColumnProps extends React.HTMLAttributes<HTMLTableCellElement> {
|
|
297
|
-
children: React.ReactNode;
|
|
298
|
+
interface RankingTopicColumnProps extends React$1.HTMLAttributes<HTMLTableCellElement> {
|
|
299
|
+
children: React$1.ReactNode;
|
|
298
300
|
}
|
|
299
|
-
interface RankingTopicContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
300
|
-
children: React.ReactNode;
|
|
301
|
+
interface RankingTopicContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
302
|
+
children: React$1.ReactNode;
|
|
301
303
|
}
|
|
302
|
-
interface RankingSpecialtyProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
303
|
-
children: React.ReactNode;
|
|
304
|
+
interface RankingSpecialtyProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
305
|
+
children: React$1.ReactNode;
|
|
304
306
|
}
|
|
305
|
-
interface RankingTopicProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
306
|
-
children: React.ReactNode;
|
|
307
|
+
interface RankingTopicProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
308
|
+
children: React$1.ReactNode;
|
|
307
309
|
}
|
|
308
|
-
interface RankingSuperFocusProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
309
|
-
children?: React.ReactNode;
|
|
310
|
+
interface RankingSuperFocusProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
311
|
+
children?: React$1.ReactNode;
|
|
310
312
|
}
|
|
311
|
-
interface RankingAssigneesColumnProps extends React.HTMLAttributes<HTMLTableCellElement> {
|
|
312
|
-
children: React.ReactNode;
|
|
313
|
+
interface RankingAssigneesColumnProps extends React$1.HTMLAttributes<HTMLTableCellElement> {
|
|
314
|
+
children: React$1.ReactNode;
|
|
313
315
|
}
|
|
314
|
-
interface RankingAssigneeLabelProps extends React.HTMLAttributes<HTMLParagraphElement> {
|
|
315
|
-
children: React.ReactNode;
|
|
316
|
+
interface RankingAssigneeLabelProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
|
|
317
|
+
children: React$1.ReactNode;
|
|
316
318
|
}
|
|
317
|
-
interface RankingAssigneeGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
318
|
-
children: React.ReactNode;
|
|
319
|
+
interface RankingAssigneeGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
320
|
+
children: React$1.ReactNode;
|
|
319
321
|
}
|
|
320
|
-
interface RankingAssigneeItemProps extends React.ComponentProps<typeof Avatar> {
|
|
322
|
+
interface RankingAssigneeItemProps extends React$1.ComponentProps<typeof Avatar> {
|
|
321
323
|
src?: string;
|
|
322
324
|
alt?: string;
|
|
323
325
|
fallback?: string;
|
|
324
326
|
}
|
|
325
|
-
interface RankingPriorityProps extends React.HTMLAttributes<HTMLTableCellElement> {
|
|
326
|
-
children: React.ReactNode;
|
|
327
|
-
icon?: React.ReactElement;
|
|
327
|
+
interface RankingPriorityProps extends React$1.HTMLAttributes<HTMLTableCellElement> {
|
|
328
|
+
children: React$1.ReactNode;
|
|
329
|
+
icon?: React$1.ReactElement;
|
|
328
330
|
}
|
|
329
|
-
interface RankingPercentageProps extends React.HTMLAttributes<HTMLTableCellElement> {
|
|
331
|
+
interface RankingPercentageProps extends React$1.HTMLAttributes<HTMLTableCellElement> {
|
|
330
332
|
value: number;
|
|
331
333
|
}
|
|
332
|
-
interface RankingButtonProps extends Omit<React.ComponentProps<typeof Button>, "iconRight" | "onClick"> {
|
|
334
|
+
interface RankingButtonProps extends Omit<React$1.ComponentProps<typeof Button>, "iconRight" | "onClick"> {
|
|
333
335
|
onClick?: () => void;
|
|
334
336
|
}
|
|
335
337
|
declare function Ranking({ children, className, ...props }: RankingProps): react_jsx_runtime.JSX.Element;
|
|
@@ -348,11 +350,14 @@ declare function RankingPriority({ children, className, icon, ...props }: Rankin
|
|
|
348
350
|
declare function RankingPercentage({ value, className, ...props }: RankingPercentageProps): react_jsx_runtime.JSX.Element;
|
|
349
351
|
declare function RankingButton({ children, className, onClick, ...props }: RankingButtonProps): react_jsx_runtime.JSX.Element;
|
|
350
352
|
|
|
351
|
-
declare function ScrollArea({ className, children, ...props }: React.ComponentProps<typeof ScrollArea$1.Root>): react_jsx_runtime.JSX.Element;
|
|
352
|
-
declare function ScrollBar({ className, orientation, ...props }: React.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
353
|
+
declare function ScrollArea({ className, children, ...props }: React$1.ComponentProps<typeof ScrollArea$1.Root>): react_jsx_runtime.JSX.Element;
|
|
354
|
+
declare function ScrollBar({ className, orientation, ...props }: React$1.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
353
355
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
+
interface SelectProps extends ComponentProps<typeof Select$1.Root> {
|
|
357
|
+
invalid?: boolean;
|
|
358
|
+
}
|
|
359
|
+
declare function Select({ invalid, ...props }: SelectProps): react_jsx_runtime.JSX.Element;
|
|
360
|
+
interface SelectLabelProps extends HTMLAttributes<HTMLLabelElement> {
|
|
356
361
|
htmlFor?: string;
|
|
357
362
|
}
|
|
358
363
|
declare function SelectWrapper({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -366,17 +371,18 @@ declare function SelectItem({ className, children, ...props }: React.ComponentPr
|
|
|
366
371
|
declare function SelectSeparator({ className, ...props }: React.ComponentProps<typeof Select$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
367
372
|
declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof Select$1.ScrollUpButton>): react_jsx_runtime.JSX.Element;
|
|
368
373
|
declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps<typeof Select$1.ScrollDownButton>): react_jsx_runtime.JSX.Element;
|
|
374
|
+
declare function SelectText({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
369
375
|
|
|
370
376
|
type SegmentSize = "sm" | "md" | "lg";
|
|
371
|
-
declare function SegmentControl({ className, size, children, ...props }: React.ComponentProps<typeof Tabs$1.Root> & {
|
|
377
|
+
declare function SegmentControl({ className, size, children, ...props }: React$1.ComponentProps<typeof Tabs$1.Root> & {
|
|
372
378
|
size?: SegmentSize;
|
|
373
379
|
}): react_jsx_runtime.JSX.Element;
|
|
374
|
-
interface SegmentControlListProps extends React.ComponentProps<typeof Tabs$1.List> {
|
|
380
|
+
interface SegmentControlListProps extends React$1.ComponentProps<typeof Tabs$1.List> {
|
|
375
381
|
containerClassName?: string;
|
|
376
382
|
}
|
|
377
383
|
declare function SegmentControlList({ className, containerClassName, ...props }: SegmentControlListProps): react_jsx_runtime.JSX.Element;
|
|
378
|
-
interface SegmentControlTriggerProps extends React.ComponentProps<typeof Tabs$1.Trigger> {
|
|
379
|
-
icon?: React.ReactNode;
|
|
384
|
+
interface SegmentControlTriggerProps extends React$1.ComponentProps<typeof Tabs$1.Trigger> {
|
|
385
|
+
icon?: React$1.ReactNode;
|
|
380
386
|
badge?: number | string;
|
|
381
387
|
badgeVariant?: BadgeProps["variant"];
|
|
382
388
|
}
|
|
@@ -384,26 +390,26 @@ declare const segmentControlTriggerVariants: (props?: ({
|
|
|
384
390
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
385
391
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
386
392
|
declare function SegmentControlTrigger({ className, icon, badge, badgeVariant, children, ...props }: SegmentControlTriggerProps): react_jsx_runtime.JSX.Element;
|
|
387
|
-
declare function SegmentControlContent({ className, ...props }: React.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
393
|
+
declare function SegmentControlContent({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
388
394
|
|
|
389
|
-
declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
|
|
395
|
+
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof Separator$1.Root>): react_jsx_runtime.JSX.Element;
|
|
390
396
|
|
|
391
|
-
declare function Sheet({ ...props }: React.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
392
|
-
declare function SheetTrigger({ ...props }: React.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
393
|
-
declare function SheetClose({ ...props }: React.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
394
|
-
interface SheetContentProps extends React.ComponentProps<typeof Dialog$1.Content> {
|
|
397
|
+
declare function Sheet({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
|
|
398
|
+
declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
399
|
+
declare function SheetClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
|
|
400
|
+
interface SheetContentProps extends React$1.ComponentProps<typeof Dialog$1.Content> {
|
|
395
401
|
side?: "top" | "right" | "bottom" | "left";
|
|
396
402
|
}
|
|
397
403
|
declare function SheetContent({ className, children, side, ...props }: SheetContentProps): react_jsx_runtime.JSX.Element;
|
|
398
|
-
declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
399
|
-
declare function SheetFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
400
|
-
declare function SheetTitle({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
401
|
-
declare function SheetDescription({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
404
|
+
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
405
|
+
declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
406
|
+
declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
|
|
407
|
+
declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
|
|
402
408
|
|
|
403
|
-
declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
|
|
404
|
-
declare function Tooltip({ ...props }: React.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
|
|
405
|
-
declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
406
|
-
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof Tooltip$1.Content>): react_jsx_runtime.JSX.Element;
|
|
409
|
+
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
|
|
410
|
+
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
|
|
411
|
+
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
412
|
+
declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof Tooltip$1.Content>): react_jsx_runtime.JSX.Element;
|
|
407
413
|
|
|
408
414
|
type SidebarContextProps = {
|
|
409
415
|
state: "expanded" | "collapsed";
|
|
@@ -415,19 +421,19 @@ type SidebarContextProps = {
|
|
|
415
421
|
toggleSidebar: () => void;
|
|
416
422
|
};
|
|
417
423
|
declare function useSidebar(): SidebarContextProps;
|
|
418
|
-
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, children, ...props }: React.ComponentProps<"div"> & {
|
|
424
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
419
425
|
defaultOpen?: boolean;
|
|
420
426
|
open?: boolean;
|
|
421
427
|
onOpenChange?: (open: boolean) => void;
|
|
422
428
|
}): react_jsx_runtime.JSX.Element;
|
|
423
|
-
declare function Sidebar({ side, variant, collapsible, className, containerClassName, children, ...props }: React.ComponentProps<"div"> & {
|
|
429
|
+
declare function Sidebar({ side, variant, collapsible, className, containerClassName, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
424
430
|
side?: "left" | "right";
|
|
425
431
|
variant?: "sidebar" | "floating" | "inset";
|
|
426
432
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
427
433
|
containerClassName?: string;
|
|
428
434
|
}): react_jsx_runtime.JSX.Element;
|
|
429
|
-
declare function SidebarTrigger({ className, onClick, sizeIcon, icon, showTooltip, tooltipContent, enableHover, ...props }: React.ComponentProps<typeof Button> & {
|
|
430
|
-
icon?: React.ReactNode;
|
|
435
|
+
declare function SidebarTrigger({ className, onClick, sizeIcon, icon, showTooltip, tooltipContent, enableHover, ...props }: React$1.ComponentProps<typeof Button> & {
|
|
436
|
+
icon?: React$1.ReactNode;
|
|
431
437
|
sizeIcon?: string;
|
|
432
438
|
showTooltip?: boolean;
|
|
433
439
|
tooltipContent?: {
|
|
@@ -436,68 +442,69 @@ declare function SidebarTrigger({ className, onClick, sizeIcon, icon, showToolti
|
|
|
436
442
|
};
|
|
437
443
|
enableHover?: boolean;
|
|
438
444
|
}): react_jsx_runtime.JSX.Element;
|
|
439
|
-
declare function SidebarRail({ className, ...props }: React.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
440
|
-
declare function SidebarInset({ className, ...props }: React.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
|
|
441
|
-
declare function SidebarInput({ className, ...props }: React.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
442
|
-
declare function SidebarHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
443
|
-
declare function SidebarFooter({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
444
|
-
declare function SidebarSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
445
|
-
declare function SidebarContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
446
|
-
declare function SidebarGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
447
|
-
declare function SidebarGroupLabel({ className, asChild, ...props }: React.ComponentProps<"div"> & {
|
|
445
|
+
declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
446
|
+
declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
|
|
447
|
+
declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
448
|
+
declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
449
|
+
declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
450
|
+
declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
451
|
+
declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
452
|
+
declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
453
|
+
declare function SidebarGroupLabel({ className, asChild, ...props }: React$1.ComponentProps<"div"> & {
|
|
448
454
|
asChild?: boolean;
|
|
449
455
|
}): react_jsx_runtime.JSX.Element;
|
|
450
|
-
declare function SidebarGroupAction({ className, asChild, ...props }: React.ComponentProps<"button"> & {
|
|
456
|
+
declare function SidebarGroupAction({ className, asChild, ...props }: React$1.ComponentProps<"button"> & {
|
|
451
457
|
asChild?: boolean;
|
|
452
458
|
}): react_jsx_runtime.JSX.Element;
|
|
453
|
-
declare function SidebarGroupContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
454
|
-
declare function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
455
|
-
declare function SidebarMenuItem({ className, isActive, children, ...props }: React.ComponentProps<"li"> & {
|
|
459
|
+
declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
460
|
+
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
461
|
+
declare function SidebarMenuItem({ className, isActive, children, ...props }: React$1.ComponentProps<"li"> & {
|
|
456
462
|
isActive?: boolean;
|
|
457
463
|
}): react_jsx_runtime.JSX.Element;
|
|
458
464
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
459
465
|
variant?: "section" | "default" | "outline" | null | undefined;
|
|
460
466
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
461
467
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
462
|
-
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React.ComponentProps<"button"> & {
|
|
468
|
+
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<"button"> & {
|
|
463
469
|
asChild?: boolean;
|
|
464
470
|
isActive?: boolean;
|
|
465
|
-
tooltip?: string | React.ComponentProps<typeof TooltipContent>;
|
|
471
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
466
472
|
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
467
|
-
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React.ComponentProps<"button"> & {
|
|
473
|
+
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React$1.ComponentProps<"button"> & {
|
|
468
474
|
asChild?: boolean;
|
|
469
475
|
showOnHover?: boolean;
|
|
470
476
|
}): react_jsx_runtime.JSX.Element;
|
|
471
|
-
declare function SidebarMenuBadge({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
472
|
-
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React.ComponentProps<"div"> & {
|
|
477
|
+
declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
478
|
+
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<"div"> & {
|
|
473
479
|
showIcon?: boolean;
|
|
474
480
|
}): react_jsx_runtime.JSX.Element;
|
|
475
|
-
declare function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
476
|
-
declare function SidebarMenuSubItem({ className, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
481
|
+
declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
482
|
+
declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
477
483
|
declare function SidebarMenuItemTitle({ icon, title, }: {
|
|
478
|
-
icon?: React.ReactNode;
|
|
484
|
+
icon?: React$1.ReactNode;
|
|
479
485
|
title: string;
|
|
480
486
|
}): react_jsx_runtime.JSX.Element;
|
|
481
487
|
declare function SidebarMenuItemCollapse(): react_jsx_runtime.JSX.Element;
|
|
482
|
-
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React.ComponentProps<"a"> & {
|
|
488
|
+
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React$1.ComponentProps<"a"> & {
|
|
483
489
|
asChild?: boolean;
|
|
484
490
|
size?: "sm" | "md";
|
|
485
491
|
isActive?: boolean;
|
|
486
492
|
}): react_jsx_runtime.JSX.Element;
|
|
487
493
|
|
|
488
|
-
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
494
|
+
declare function Skeleton({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
489
495
|
|
|
490
496
|
declare const switchVariants: (props?: ({
|
|
497
|
+
variant?: "regular" | null | undefined;
|
|
491
498
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
492
499
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
493
|
-
interface SwitchProps extends React.ComponentProps<typeof Switch$1.Root>, VariantProps<typeof switchVariants> {
|
|
494
|
-
checkedIcon?: React.ReactNode;
|
|
495
|
-
uncheckedIcon?: React.ReactNode;
|
|
500
|
+
interface SwitchProps extends React$1.ComponentProps<typeof Switch$1.Root>, VariantProps<typeof switchVariants> {
|
|
501
|
+
checkedIcon?: React$1.ReactNode;
|
|
502
|
+
uncheckedIcon?: React$1.ReactNode;
|
|
496
503
|
}
|
|
497
|
-
declare function Switch({ className, size, checkedIcon, uncheckedIcon, checked, defaultChecked, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
504
|
+
declare function Switch({ className, size, variant, checkedIcon, uncheckedIcon, checked, defaultChecked, ...props }: SwitchProps): react_jsx_runtime.JSX.Element;
|
|
498
505
|
|
|
499
506
|
interface SwitcherProps {
|
|
500
|
-
children: React.ReactNode;
|
|
507
|
+
children: React$1.ReactNode;
|
|
501
508
|
value?: string;
|
|
502
509
|
onValueChange?: (value: string) => void;
|
|
503
510
|
open?: boolean;
|
|
@@ -505,30 +512,30 @@ interface SwitcherProps {
|
|
|
505
512
|
onOpenChange?: (open: boolean) => void;
|
|
506
513
|
}
|
|
507
514
|
interface SwitcherTriggerProps {
|
|
508
|
-
children: React.ReactNode;
|
|
515
|
+
children: React$1.ReactNode;
|
|
509
516
|
asChild?: boolean;
|
|
510
517
|
className?: string;
|
|
511
518
|
}
|
|
512
519
|
interface SwitcherContentProps {
|
|
513
|
-
children: React.ReactNode;
|
|
520
|
+
children: React$1.ReactNode;
|
|
514
521
|
className?: string;
|
|
515
522
|
align?: "start" | "center" | "end";
|
|
516
523
|
side?: "top" | "right" | "bottom" | "left";
|
|
517
524
|
}
|
|
518
525
|
interface SwitcherGroupProps {
|
|
519
|
-
children: React.ReactNode;
|
|
526
|
+
children: React$1.ReactNode;
|
|
520
527
|
label?: string;
|
|
521
528
|
}
|
|
522
529
|
interface SwitcherItemProps {
|
|
523
|
-
children: React.ReactNode;
|
|
530
|
+
children: React$1.ReactNode;
|
|
524
531
|
value?: string;
|
|
525
532
|
onClick?: () => void;
|
|
526
|
-
icon?: string | React.ReactNode;
|
|
533
|
+
icon?: string | React$1.ReactNode;
|
|
527
534
|
}
|
|
528
535
|
interface SwitcherFooterProps {
|
|
529
|
-
children: React.ReactNode;
|
|
536
|
+
children: React$1.ReactNode;
|
|
530
537
|
onClick?: () => void;
|
|
531
|
-
icon?: React.ReactNode;
|
|
538
|
+
icon?: React$1.ReactNode;
|
|
532
539
|
}
|
|
533
540
|
declare function Switcher({ children, value, onValueChange, open, defaultOpen, onOpenChange, }: SwitcherProps): react_jsx_runtime.JSX.Element;
|
|
534
541
|
declare function SwitcherTrigger({ children, asChild, className, }: SwitcherTriggerProps): react_jsx_runtime.JSX.Element;
|
|
@@ -550,14 +557,14 @@ declare function SwitcherSeparator(): react_jsx_runtime.JSX.Element;
|
|
|
550
557
|
|
|
551
558
|
type TabsVariant = "header" | "standalone";
|
|
552
559
|
type TabsSize = "md" | "lg";
|
|
553
|
-
interface TabsProps extends React.ComponentProps<typeof Tabs$1.Root>, VariantProps<typeof tabsListVariants> {
|
|
560
|
+
interface TabsProps extends React$1.ComponentProps<typeof Tabs$1.Root>, VariantProps<typeof tabsListVariants> {
|
|
554
561
|
size?: TabsSize;
|
|
555
562
|
responsive?: boolean;
|
|
556
563
|
}
|
|
557
|
-
type TabsListProps = React.ComponentProps<typeof Tabs$1.List>;
|
|
558
|
-
interface TabsTriggerProps extends React.ComponentProps<typeof Tabs$1.Trigger> {
|
|
559
|
-
icon?: React.ReactNode;
|
|
560
|
-
badge?: React.ReactNode;
|
|
564
|
+
type TabsListProps = React$1.ComponentProps<typeof Tabs$1.List>;
|
|
565
|
+
interface TabsTriggerProps extends React$1.ComponentProps<typeof Tabs$1.Trigger> {
|
|
566
|
+
icon?: React$1.ReactNode;
|
|
567
|
+
badge?: React$1.ReactNode;
|
|
561
568
|
}
|
|
562
569
|
declare function useTabsContext(): {
|
|
563
570
|
variant: TabsVariant;
|
|
@@ -578,11 +585,11 @@ declare const tabsContentVariants: (props?: ({
|
|
|
578
585
|
declare function Tabs({ className, variant, size, responsive, children, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
579
586
|
declare function TabsList({ className, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
|
|
580
587
|
declare function TabsTrigger({ className, children, icon, badge, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
581
|
-
declare function TabsContent({ className, ...props }: React.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
588
|
+
declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.Content>): react_jsx_runtime.JSX.Element;
|
|
582
589
|
|
|
583
|
-
interface TagProps extends React.ComponentProps<"span">, VariantProps<typeof tagVariants> {
|
|
590
|
+
interface TagProps extends React$1.ComponentProps<"span">, VariantProps<typeof tagVariants> {
|
|
584
591
|
asChild?: boolean;
|
|
585
|
-
icon?: React.ReactElement;
|
|
592
|
+
icon?: React$1.ReactElement;
|
|
586
593
|
}
|
|
587
594
|
declare const tagVariants: (props?: ({
|
|
588
595
|
variant?: "regular" | "emphasis" | "success" | "warning" | "error" | "go" | "regular-soft" | "regular-basic" | "emphasis-soft" | "emphasis-basic" | "error-soft" | "error-basic" | "warning-soft" | "warning-basic" | "success-soft" | "success-basic" | "gray" | "gray-soft" | "gray-basic" | "cm" | "cm-soft" | "cm-basic" | "go-soft" | "go-basic" | "cir" | "cir-soft" | "cir-basic" | "ped" | "ped-soft" | "ped-basic" | "prev" | "prev-soft" | "prev-basic" | null | undefined;
|
|
@@ -592,18 +599,18 @@ declare function Tag({ className, variant, asChild, icon, children, ...props }:
|
|
|
592
599
|
declare const tileVariants: (props?: ({
|
|
593
600
|
variant?: "regular" | "go" | "cm" | "cir" | "ped" | "prev" | null | undefined;
|
|
594
601
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
595
|
-
interface TileProps extends React.ComponentProps<"div">, VariantProps<typeof tileVariants> {
|
|
602
|
+
interface TileProps extends React$1.ComponentProps<"div">, VariantProps<typeof tileVariants> {
|
|
596
603
|
asChild?: boolean;
|
|
597
604
|
disabled?: boolean;
|
|
598
605
|
inactive?: boolean;
|
|
599
606
|
}
|
|
600
607
|
declare function Tile({ className, variant, asChild, disabled, inactive, ...props }: TileProps): react_jsx_runtime.JSX.Element;
|
|
601
|
-
declare function TileIcon({ className, icon, ...props }: React.ComponentProps<"div"> & {
|
|
602
|
-
icon?: React.ReactNode;
|
|
608
|
+
declare function TileIcon({ className, icon, ...props }: React$1.ComponentProps<"div"> & {
|
|
609
|
+
icon?: React$1.ReactNode;
|
|
603
610
|
}): react_jsx_runtime.JSX.Element;
|
|
604
|
-
declare function TileTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
605
|
-
declare function TileDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
611
|
+
declare function TileTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
612
|
+
declare function TileDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
606
613
|
|
|
607
614
|
declare function useIsMobile(): boolean;
|
|
608
615
|
|
|
609
|
-
export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeAnimation, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingButton, type RankingButtonProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPercentage, type RankingPercentageProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Select, SelectContent, SelectGroup, SelectHeader, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectWrapper, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, checkboxVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, useIsMobile, useSidebar, useTabsContext };
|
|
616
|
+
export { Alert, AlertActions, AlertButton, type AlertButtonProps, AlertContainer, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, type AlertProps, AlertTitle, type AnimationType, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeAnimation, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CardWeek, CardWeekActions, CardWeekBreadcrumb, type CardWeekBreadcrumbProps, CardWeekContainer, CardWeekContent, CardWeekDescription, CardWeekFooter, CardWeekHeader, CardWeekProgress, CardWeekProgressCircle, type CardWeekProps, CardWeekStatus, CardWeekTags, CardWeekText, type CardWeekTextProps, CardWeekTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, Dialog, DialogClose, DialogContainer, type DialogContainerProps, DialogContent, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Input, Label, type LabelProps, Loading, type LoadingProps, Logo, type LogoProps, LogoShort, Pagination, PaginationContent, PaginationEllipsis, PaginationInfo, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type PaginationProps, PaginationRoot, Progress, ProgressCircle, type ProgressCircleProps, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Ranking, RankingAssigneeGroup, type RankingAssigneeGroupProps, RankingAssigneeItem, type RankingAssigneeItemProps, RankingAssigneeLabel, type RankingAssigneeLabelProps, RankingAssigneesColumn, type RankingAssigneesColumnProps, RankingButton, type RankingButtonProps, RankingItem, type RankingItemProps, RankingNumber, type RankingNumberProps, RankingPercentage, type RankingPercentageProps, RankingPriority, type RankingPriorityProps, type RankingProps, RankingSpecialty, type RankingSpecialtyProps, RankingSuperFocus, type RankingSuperFocusProps, RankingTopic, RankingTopicColumn, type RankingTopicColumnProps, RankingTopicContent, type RankingTopicContentProps, type RankingTopicProps, ScrollArea, ScrollBar, SegmentControl, SegmentControlContent, SegmentControlList, type SegmentControlListProps, SegmentControlTrigger, type SegmentControlTriggerProps, Select, SelectContent, SelectGroup, SelectHeader, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectText, SelectTrigger, SelectValue, SelectWrapper, Separator, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuItemCollapse, SidebarMenuItemTitle, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, type SwitchProps, Switcher, SwitcherContent, type SwitcherContentProps, SwitcherFooter, type SwitcherFooterProps, SwitcherGroup, type SwitcherGroupProps, SwitcherItem, type SwitcherItemProps, type SwitcherProps, SwitcherSeparator, SwitcherTrigger, type SwitcherTriggerProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsSize, TabsTrigger, type TabsTriggerProps, type TabsVariant, Tag, type TagProps, Tile, TileDescription, TileIcon, type TileProps, TileTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertButtonVariants, alertVariants, avatarVariants, badgeVariants, buttonVariants, calculatePageNumbers, checkboxVariants, labelVariants, radioGroupVariants, segmentControlTriggerVariants, switchVariants, tabsContentVariants, tabsListVariants, tabsTriggerVariants, tagVariants, tileVariants, useIsMobile, useSidebar, useTabsContext };
|