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