@alpic-ai/ui 0.0.0-dev.g3e02cb4 → 0.0.0-dev.g3f43f7b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/accordion-card.d.mts +5 -4
- package/dist/components/accordion.d.mts +5 -4
- package/dist/components/alert.d.mts +8 -6
- package/dist/components/attachment-tile.d.mts +3 -1
- package/dist/components/avatar.d.mts +7 -5
- package/dist/components/badge.d.mts +4 -2
- package/dist/components/breadcrumb.d.mts +9 -8
- package/dist/components/button.d.mts +4 -2
- package/dist/components/card.d.mts +8 -7
- package/dist/components/checkbox.d.mts +2 -1
- package/dist/components/collapsible.d.mts +4 -3
- package/dist/components/combobox.d.mts +11 -10
- package/dist/components/command.d.mts +9 -8
- package/dist/components/copyable.d.mts +3 -2
- package/dist/components/description-list.d.mts +5 -4
- package/dist/components/dialog.d.mts +14 -12
- package/dist/components/dropdown-menu.d.mts +16 -14
- package/dist/components/form.d.mts +18 -35
- package/dist/components/github-button.d.mts +2 -1
- package/dist/components/input-group.d.mts +6 -4
- package/dist/components/input.d.mts +2 -1
- package/dist/components/label.d.mts +2 -1
- package/dist/components/page-loader.d.mts +3 -1
- package/dist/components/pagination.d.mts +2 -1
- package/dist/components/popover.d.mts +5 -4
- package/dist/components/radio-group.d.mts +3 -2
- package/dist/components/scroll-area.d.mts +3 -2
- package/dist/components/select-trigger-variants.d.mts +3 -1
- package/dist/components/select.d.mts +9 -8
- package/dist/components/separator.d.mts +2 -1
- package/dist/components/sheet.d.mts +10 -9
- package/dist/components/shimmer-text.d.mts +3 -1
- package/dist/components/sidebar.d.mts +25 -23
- package/dist/components/skeleton.d.mts +4 -2
- package/dist/components/sonner.d.mts +3 -2
- package/dist/components/spinner.d.mts +5 -3
- package/dist/components/status-dot.d.mts +4 -2
- package/dist/components/switch.d.mts +2 -1
- package/dist/components/table.d.mts +9 -8
- package/dist/components/tabs.d.mts +11 -9
- package/dist/components/tag.d.mts +5 -3
- package/dist/components/task-progress.d.mts +3 -1
- package/dist/components/textarea.d.mts +2 -1
- package/dist/components/toggle-group.d.mts +5 -3
- package/dist/components/tooltip-icon-button.d.mts +2 -1
- package/dist/components/tooltip.d.mts +5 -4
- package/dist/components/typography.d.mts +5 -4
- package/dist/components/wizard.d.mts +3 -2
- package/package.json +1 -1
|
@@ -1,28 +1,30 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
5
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
4
6
|
|
|
5
7
|
//#region src/components/dropdown-menu.d.ts
|
|
6
8
|
declare function DropdownMenu({
|
|
7
9
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Root>):
|
|
10
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
9
11
|
declare function DropdownMenuPortal({
|
|
10
12
|
...props
|
|
11
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>):
|
|
13
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): _$react_jsx_runtime0.JSX.Element;
|
|
12
14
|
declare function DropdownMenuTrigger({
|
|
13
15
|
...props
|
|
14
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>):
|
|
16
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
|
|
15
17
|
declare function DropdownMenuContent({
|
|
16
18
|
className,
|
|
17
19
|
sideOffset,
|
|
18
20
|
...props
|
|
19
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Content>):
|
|
21
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
|
|
20
22
|
declare function DropdownMenuGroup({
|
|
21
23
|
...props
|
|
22
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Group>):
|
|
24
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Group>): _$react_jsx_runtime0.JSX.Element;
|
|
23
25
|
declare const dropdownMenuItemVariants: (props?: ({
|
|
24
26
|
variant?: "default" | "destructive" | null | undefined;
|
|
25
|
-
} &
|
|
27
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
26
28
|
declare function DropdownMenuItem({
|
|
27
29
|
className,
|
|
28
30
|
inset,
|
|
@@ -30,30 +32,30 @@ declare function DropdownMenuItem({
|
|
|
30
32
|
...props
|
|
31
33
|
}: React.ComponentProps<typeof DropdownMenuPrimitive.Item> & VariantProps<typeof dropdownMenuItemVariants> & {
|
|
32
34
|
inset?: boolean;
|
|
33
|
-
}):
|
|
35
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
34
36
|
declare function DropdownMenuLabel({
|
|
35
37
|
className,
|
|
36
38
|
inset,
|
|
37
39
|
...props
|
|
38
40
|
}: React.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
39
41
|
inset?: boolean;
|
|
40
|
-
}):
|
|
42
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
41
43
|
declare function DropdownMenuHeader({
|
|
42
44
|
className,
|
|
43
45
|
children,
|
|
44
46
|
...props
|
|
45
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
47
|
+
}: React.HTMLAttributes<HTMLDivElement>): _$react_jsx_runtime0.JSX.Element;
|
|
46
48
|
declare function DropdownMenuSeparator({
|
|
47
49
|
className,
|
|
48
50
|
...props
|
|
49
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>):
|
|
51
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>): _$react_jsx_runtime0.JSX.Element;
|
|
50
52
|
declare function DropdownMenuShortcut({
|
|
51
53
|
className,
|
|
52
54
|
...props
|
|
53
|
-
}: React.ComponentProps<"span">):
|
|
55
|
+
}: React.ComponentProps<"span">): _$react_jsx_runtime0.JSX.Element;
|
|
54
56
|
declare function DropdownMenuSub({
|
|
55
57
|
...props
|
|
56
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>):
|
|
58
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.Sub>): _$react_jsx_runtime0.JSX.Element;
|
|
57
59
|
declare function DropdownMenuSubTrigger({
|
|
58
60
|
className,
|
|
59
61
|
inset,
|
|
@@ -61,10 +63,10 @@ declare function DropdownMenuSubTrigger({
|
|
|
61
63
|
...props
|
|
62
64
|
}: React.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
63
65
|
inset?: boolean;
|
|
64
|
-
}):
|
|
66
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
65
67
|
declare function DropdownMenuSubContent({
|
|
66
68
|
className,
|
|
67
69
|
...props
|
|
68
|
-
}: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>):
|
|
70
|
+
}: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): _$react_jsx_runtime0.JSX.Element;
|
|
69
71
|
//#endregion
|
|
70
72
|
export { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuHeader, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, dropdownMenuItemVariants };
|
|
@@ -1,40 +1,23 @@
|
|
|
1
1
|
import { InputProps } from "./input.mjs";
|
|
2
2
|
import { Label } from "./label.mjs";
|
|
3
3
|
import { TextareaProps } from "./textarea.mjs";
|
|
4
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
5
|
import * as React from "react";
|
|
5
6
|
import { Slot } from "@radix-ui/react-slot";
|
|
7
|
+
import * as _$react_hook_form0 from "react-hook-form";
|
|
6
8
|
import { ControllerProps, FieldPath, FieldValues } from "react-hook-form";
|
|
7
9
|
|
|
8
10
|
//#region src/components/form.d.ts
|
|
9
|
-
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(
|
|
10
|
-
children,
|
|
11
|
-
watch,
|
|
12
|
-
getValues,
|
|
13
|
-
getFieldState,
|
|
14
|
-
setError,
|
|
15
|
-
clearErrors,
|
|
16
|
-
setValue,
|
|
17
|
-
setValues,
|
|
18
|
-
trigger,
|
|
19
|
-
formState,
|
|
20
|
-
resetField,
|
|
21
|
-
reset,
|
|
22
|
-
handleSubmit,
|
|
23
|
-
unregister,
|
|
24
|
-
control,
|
|
25
|
-
register,
|
|
26
|
-
setFocus,
|
|
27
|
-
subscribe
|
|
28
|
-
}: import("react-hook-form").FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
11
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: _$react_hook_form0.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
29
12
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({
|
|
30
13
|
...props
|
|
31
|
-
}: ControllerProps<TFieldValues, TName>) =>
|
|
14
|
+
}: ControllerProps<TFieldValues, TName>) => _$react_jsx_runtime0.JSX.Element;
|
|
32
15
|
declare const useFormField: () => {
|
|
33
16
|
invalid: boolean;
|
|
34
17
|
isDirty: boolean;
|
|
35
18
|
isTouched: boolean;
|
|
36
19
|
isValidating: boolean;
|
|
37
|
-
error?:
|
|
20
|
+
error?: _$react_hook_form0.FieldError;
|
|
38
21
|
id: string;
|
|
39
22
|
name: string;
|
|
40
23
|
formItemId: string;
|
|
@@ -44,7 +27,7 @@ declare const useFormField: () => {
|
|
|
44
27
|
declare function FormItem({
|
|
45
28
|
className,
|
|
46
29
|
...props
|
|
47
|
-
}: React.ComponentProps<"div">):
|
|
30
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
48
31
|
interface FormLabelProps extends React.ComponentProps<typeof Label> {
|
|
49
32
|
required?: boolean;
|
|
50
33
|
tooltip?: string;
|
|
@@ -55,18 +38,18 @@ declare function FormLabel({
|
|
|
55
38
|
tooltip,
|
|
56
39
|
children,
|
|
57
40
|
...props
|
|
58
|
-
}: FormLabelProps):
|
|
41
|
+
}: FormLabelProps): _$react_jsx_runtime0.JSX.Element;
|
|
59
42
|
declare function FormControl({
|
|
60
43
|
...props
|
|
61
|
-
}: React.ComponentProps<typeof Slot>):
|
|
44
|
+
}: React.ComponentProps<typeof Slot>): _$react_jsx_runtime0.JSX.Element;
|
|
62
45
|
declare function FormDescription({
|
|
63
46
|
className,
|
|
64
47
|
...props
|
|
65
|
-
}: React.ComponentProps<"p">):
|
|
48
|
+
}: React.ComponentProps<"p">): _$react_jsx_runtime0.JSX.Element;
|
|
66
49
|
declare function FormMessage({
|
|
67
50
|
className,
|
|
68
51
|
...props
|
|
69
|
-
}: React.ComponentProps<"p">):
|
|
52
|
+
}: React.ComponentProps<"p">): _$react_jsx_runtime0.JSX.Element | null;
|
|
70
53
|
interface FormHeaderProps extends React.ComponentProps<"div"> {
|
|
71
54
|
title: string;
|
|
72
55
|
description?: string;
|
|
@@ -76,11 +59,11 @@ declare function FormHeader({
|
|
|
76
59
|
description,
|
|
77
60
|
className,
|
|
78
61
|
...props
|
|
79
|
-
}: FormHeaderProps):
|
|
62
|
+
}: FormHeaderProps): _$react_jsx_runtime0.JSX.Element;
|
|
80
63
|
declare function FormFields({
|
|
81
64
|
className,
|
|
82
65
|
...props
|
|
83
|
-
}: React.ComponentProps<"div">):
|
|
66
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
84
67
|
interface FormFieldBaseProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> {
|
|
85
68
|
control: ControllerProps<TFieldValues, TName>["control"];
|
|
86
69
|
name: TName;
|
|
@@ -100,7 +83,7 @@ declare function InputField<TFieldValues extends FieldValues, TName extends Fiel
|
|
|
100
83
|
description,
|
|
101
84
|
tooltip,
|
|
102
85
|
...inputProps
|
|
103
|
-
}: InputFieldProps<TFieldValues, TName>):
|
|
86
|
+
}: InputFieldProps<TFieldValues, TName>): _$react_jsx_runtime0.JSX.Element;
|
|
104
87
|
interface TextareaFieldProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> extends FormFieldBaseProps<TFieldValues, TName>, Omit<TextareaProps, "name" | "label"> {}
|
|
105
88
|
declare function TextareaField<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>>({
|
|
106
89
|
control,
|
|
@@ -111,7 +94,7 @@ declare function TextareaField<TFieldValues extends FieldValues, TName extends F
|
|
|
111
94
|
description,
|
|
112
95
|
tooltip,
|
|
113
96
|
...textareaProps
|
|
114
|
-
}: TextareaFieldProps<TFieldValues, TName>):
|
|
97
|
+
}: TextareaFieldProps<TFieldValues, TName>): _$react_jsx_runtime0.JSX.Element;
|
|
115
98
|
interface SelectFieldOption {
|
|
116
99
|
value: string;
|
|
117
100
|
label: string;
|
|
@@ -131,7 +114,7 @@ declare function SelectField<TFieldValues extends FieldValues, TName extends Fie
|
|
|
131
114
|
tooltip,
|
|
132
115
|
options,
|
|
133
116
|
placeholder
|
|
134
|
-
}: SelectFieldProps<TFieldValues, TName>):
|
|
117
|
+
}: SelectFieldProps<TFieldValues, TName>): _$react_jsx_runtime0.JSX.Element;
|
|
135
118
|
interface RadioFieldProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> extends FormFieldBaseProps<TFieldValues, TName> {
|
|
136
119
|
options: SelectFieldOption[];
|
|
137
120
|
}
|
|
@@ -144,7 +127,7 @@ declare function RadioField<TFieldValues extends FieldValues, TName extends Fiel
|
|
|
144
127
|
description,
|
|
145
128
|
tooltip,
|
|
146
129
|
options
|
|
147
|
-
}: RadioFieldProps<TFieldValues, TName>):
|
|
130
|
+
}: RadioFieldProps<TFieldValues, TName>): _$react_jsx_runtime0.JSX.Element;
|
|
148
131
|
interface ChecklistFieldProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> extends FormFieldBaseProps<TFieldValues, TName> {
|
|
149
132
|
options: SelectFieldOption[];
|
|
150
133
|
}
|
|
@@ -157,7 +140,7 @@ declare function ChecklistField<TFieldValues extends FieldValues, TName extends
|
|
|
157
140
|
description,
|
|
158
141
|
tooltip,
|
|
159
142
|
options
|
|
160
|
-
}: ChecklistFieldProps<TFieldValues, TName>):
|
|
143
|
+
}: ChecklistFieldProps<TFieldValues, TName>): _$react_jsx_runtime0.JSX.Element;
|
|
161
144
|
interface CheckboxFieldProps<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>> extends Omit<FormFieldBaseProps<TFieldValues, TName>, "required"> {}
|
|
162
145
|
declare function CheckboxField<TFieldValues extends FieldValues, TName extends FieldPath<TFieldValues>>({
|
|
163
146
|
control,
|
|
@@ -166,6 +149,6 @@ declare function CheckboxField<TFieldValues extends FieldValues, TName extends F
|
|
|
166
149
|
label,
|
|
167
150
|
description,
|
|
168
151
|
tooltip
|
|
169
|
-
}: CheckboxFieldProps<TFieldValues, TName>):
|
|
152
|
+
}: CheckboxFieldProps<TFieldValues, TName>): _$react_jsx_runtime0.JSX.Element;
|
|
170
153
|
//#endregion
|
|
171
154
|
export { CheckboxField, ChecklistField, Form, FormControl, FormDescription, FormField, FormFields, FormHeader, FormItem, FormLabel, FormMessage, InputField, RadioField, SelectField, type SelectFieldOption, TextareaField, useFormField };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Button } from "./button.mjs";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
3
|
import { ComponentProps } from "react";
|
|
3
4
|
|
|
4
5
|
//#region src/components/github-button.d.ts
|
|
@@ -7,6 +8,6 @@ declare function GitHubButton({
|
|
|
7
8
|
className,
|
|
8
9
|
children,
|
|
9
10
|
...props
|
|
10
|
-
}: GitHubButtonProps):
|
|
11
|
+
}: GitHubButtonProps): _$react_jsx_runtime0.JSX.Element;
|
|
11
12
|
//#endregion
|
|
12
13
|
export { GitHubButton, type GitHubButtonProps };
|
|
@@ -1,23 +1,25 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import { VariantProps } from "class-variance-authority";
|
|
2
3
|
import * as React from "react";
|
|
4
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
3
5
|
|
|
4
6
|
//#region src/components/input-group.d.ts
|
|
5
7
|
declare function InputGroup({
|
|
6
8
|
className,
|
|
7
9
|
children,
|
|
8
10
|
...props
|
|
9
|
-
}: React.ComponentProps<"fieldset">):
|
|
11
|
+
}: React.ComponentProps<"fieldset">): _$react_jsx_runtime0.JSX.Element;
|
|
10
12
|
declare const inputGroupAddonVariants: (props?: ({
|
|
11
13
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
12
|
-
} &
|
|
14
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
13
15
|
declare function InputGroupAddon({
|
|
14
16
|
className,
|
|
15
17
|
align,
|
|
16
18
|
...props
|
|
17
|
-
}: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>):
|
|
19
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): _$react_jsx_runtime0.JSX.Element;
|
|
18
20
|
declare function InputGroupTextarea({
|
|
19
21
|
className,
|
|
20
22
|
...props
|
|
21
|
-
}: React.ComponentProps<"textarea">):
|
|
23
|
+
}: React.ComponentProps<"textarea">): _$react_jsx_runtime0.JSX.Element;
|
|
22
24
|
//#endregion
|
|
23
25
|
export { InputGroup, InputGroupAddon, InputGroupTextarea };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/components/input.d.ts
|
|
@@ -23,6 +24,6 @@ declare function Input({
|
|
|
23
24
|
leadingIcon,
|
|
24
25
|
size,
|
|
25
26
|
...props
|
|
26
|
-
}: InputProps):
|
|
27
|
+
}: InputProps): _$react_jsx_runtime0.JSX.Element;
|
|
27
28
|
//#endregion
|
|
28
29
|
export { Input, type InputProps };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
3
4
|
|
|
@@ -5,6 +6,6 @@ import * as LabelPrimitive from "@radix-ui/react-label";
|
|
|
5
6
|
declare function Label({
|
|
6
7
|
className,
|
|
7
8
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof LabelPrimitive.Root>):
|
|
9
|
+
}: React.ComponentProps<typeof LabelPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
9
10
|
//#endregion
|
|
10
11
|
export { Label };
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
|
|
1
3
|
//#region src/components/page-loader.d.ts
|
|
2
4
|
interface PageLoaderProps {
|
|
3
5
|
className?: string;
|
|
4
6
|
}
|
|
5
7
|
declare function PageLoader({
|
|
6
8
|
className
|
|
7
|
-
}: PageLoaderProps):
|
|
9
|
+
}: PageLoaderProps): _$react_jsx_runtime0.JSX.Element;
|
|
8
10
|
//#endregion
|
|
9
11
|
export { PageLoader, type PageLoaderProps };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/components/pagination.d.ts
|
|
@@ -12,6 +13,6 @@ declare function Pagination({
|
|
|
12
13
|
onPageChange,
|
|
13
14
|
className,
|
|
14
15
|
...props
|
|
15
|
-
}: PaginationProps):
|
|
16
|
+
}: PaginationProps): _$react_jsx_runtime0.JSX.Element | null;
|
|
16
17
|
//#endregion
|
|
17
18
|
export { Pagination, type PaginationProps };
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
3
4
|
|
|
4
5
|
//#region src/components/popover.d.ts
|
|
5
6
|
declare function Popover({
|
|
6
7
|
...props
|
|
7
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
8
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
8
9
|
declare function PopoverTrigger({
|
|
9
10
|
...props
|
|
10
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Trigger>):
|
|
11
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
|
|
11
12
|
declare function PopoverAnchor({
|
|
12
13
|
...props
|
|
13
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Anchor>):
|
|
14
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Anchor>): _$react_jsx_runtime0.JSX.Element;
|
|
14
15
|
declare function PopoverContent({
|
|
15
16
|
className,
|
|
16
17
|
align,
|
|
17
18
|
sideOffset,
|
|
18
19
|
...props
|
|
19
|
-
}: React.ComponentProps<typeof PopoverPrimitive.Content>):
|
|
20
|
+
}: React.ComponentProps<typeof PopoverPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
|
|
20
21
|
//#endregion
|
|
21
22
|
export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
3
4
|
|
|
@@ -5,10 +6,10 @@ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
|
|
|
5
6
|
declare function RadioGroup({
|
|
6
7
|
className,
|
|
7
8
|
...props
|
|
8
|
-
}: React.ComponentProps<typeof RadioGroupPrimitive.Root>):
|
|
9
|
+
}: React.ComponentProps<typeof RadioGroupPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
9
10
|
declare function RadioGroupItem({
|
|
10
11
|
className,
|
|
11
12
|
...props
|
|
12
|
-
}: React.ComponentProps<typeof RadioGroupPrimitive.Item>):
|
|
13
|
+
}: React.ComponentProps<typeof RadioGroupPrimitive.Item>): _$react_jsx_runtime0.JSX.Element;
|
|
13
14
|
//#endregion
|
|
14
15
|
export { RadioGroup, RadioGroupItem };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
|
|
3
4
|
|
|
@@ -6,11 +7,11 @@ declare function ScrollArea({
|
|
|
6
7
|
className,
|
|
7
8
|
children,
|
|
8
9
|
...props
|
|
9
|
-
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>):
|
|
10
|
+
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
10
11
|
declare function ScrollBar({
|
|
11
12
|
className,
|
|
12
13
|
orientation,
|
|
13
14
|
...props
|
|
14
|
-
}: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>):
|
|
15
|
+
}: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): _$react_jsx_runtime0.JSX.Element;
|
|
15
16
|
//#endregion
|
|
16
17
|
export { ScrollArea, ScrollBar };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as _$class_variance_authority_types0 from "class-variance-authority/types";
|
|
2
|
+
|
|
1
3
|
//#region src/components/select-trigger-variants.d.ts
|
|
2
4
|
/**
|
|
3
5
|
* Shared trigger styles for Select and Combobox.
|
|
@@ -6,6 +8,6 @@
|
|
|
6
8
|
*/
|
|
7
9
|
declare const selectTriggerVariants: (props?: ({
|
|
8
10
|
size?: "sm" | "md" | null | undefined;
|
|
9
|
-
} &
|
|
11
|
+
} & _$class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
12
|
//#endregion
|
|
11
13
|
export { selectTriggerVariants };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { selectTriggerVariants } from "./select-trigger-variants.mjs";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
3
|
import { VariantProps } from "class-variance-authority";
|
|
3
4
|
import * as React from "react";
|
|
4
5
|
import * as SelectPrimitive from "@radix-ui/react-select";
|
|
@@ -6,37 +7,37 @@ import * as SelectPrimitive from "@radix-ui/react-select";
|
|
|
6
7
|
//#region src/components/select.d.ts
|
|
7
8
|
declare function Select({
|
|
8
9
|
...props
|
|
9
|
-
}: React.ComponentProps<typeof SelectPrimitive.Root>):
|
|
10
|
+
}: React.ComponentProps<typeof SelectPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
10
11
|
declare function SelectGroup({
|
|
11
12
|
...props
|
|
12
|
-
}: React.ComponentProps<typeof SelectPrimitive.Group>):
|
|
13
|
+
}: React.ComponentProps<typeof SelectPrimitive.Group>): _$react_jsx_runtime0.JSX.Element;
|
|
13
14
|
declare function SelectValue({
|
|
14
15
|
...props
|
|
15
|
-
}: React.ComponentProps<typeof SelectPrimitive.Value>):
|
|
16
|
+
}: React.ComponentProps<typeof SelectPrimitive.Value>): _$react_jsx_runtime0.JSX.Element;
|
|
16
17
|
declare function SelectTrigger({
|
|
17
18
|
className,
|
|
18
19
|
size,
|
|
19
20
|
children,
|
|
20
21
|
...props
|
|
21
|
-
}: React.ComponentProps<typeof SelectPrimitive.Trigger> & VariantProps<typeof selectTriggerVariants>):
|
|
22
|
+
}: React.ComponentProps<typeof SelectPrimitive.Trigger> & VariantProps<typeof selectTriggerVariants>): _$react_jsx_runtime0.JSX.Element;
|
|
22
23
|
declare function SelectContent({
|
|
23
24
|
className,
|
|
24
25
|
children,
|
|
25
26
|
position,
|
|
26
27
|
...props
|
|
27
|
-
}: React.ComponentProps<typeof SelectPrimitive.Content>):
|
|
28
|
+
}: React.ComponentProps<typeof SelectPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
|
|
28
29
|
declare function SelectLabel({
|
|
29
30
|
className,
|
|
30
31
|
...props
|
|
31
|
-
}: React.ComponentProps<typeof SelectPrimitive.Label>):
|
|
32
|
+
}: React.ComponentProps<typeof SelectPrimitive.Label>): _$react_jsx_runtime0.JSX.Element;
|
|
32
33
|
declare function SelectItem({
|
|
33
34
|
className,
|
|
34
35
|
children,
|
|
35
36
|
...props
|
|
36
|
-
}: React.ComponentProps<typeof SelectPrimitive.Item>):
|
|
37
|
+
}: React.ComponentProps<typeof SelectPrimitive.Item>): _$react_jsx_runtime0.JSX.Element;
|
|
37
38
|
declare function SelectSeparator({
|
|
38
39
|
className,
|
|
39
40
|
...props
|
|
40
|
-
}: React.ComponentProps<typeof SelectPrimitive.Separator>):
|
|
41
|
+
}: React.ComponentProps<typeof SelectPrimitive.Separator>): _$react_jsx_runtime0.JSX.Element;
|
|
41
42
|
//#endregion
|
|
42
43
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, selectTriggerVariants };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as SeparatorPrimitive from "@radix-ui/react-separator";
|
|
3
4
|
|
|
@@ -7,6 +8,6 @@ declare function Separator({
|
|
|
7
8
|
orientation,
|
|
8
9
|
decorative,
|
|
9
10
|
...props
|
|
10
|
-
}: React.ComponentProps<typeof SeparatorPrimitive.Root>):
|
|
11
|
+
}: React.ComponentProps<typeof SeparatorPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
11
12
|
//#endregion
|
|
12
13
|
export { Separator };
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
1
2
|
import * as React from "react";
|
|
2
3
|
import * as SheetPrimitive from "@radix-ui/react-dialog";
|
|
3
4
|
|
|
4
5
|
//#region src/components/sheet.d.ts
|
|
5
6
|
declare function Sheet({
|
|
6
7
|
...props
|
|
7
|
-
}: React.ComponentProps<typeof SheetPrimitive.Root>):
|
|
8
|
+
}: React.ComponentProps<typeof SheetPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
|
|
8
9
|
declare function SheetTrigger({
|
|
9
10
|
...props
|
|
10
|
-
}: React.ComponentProps<typeof SheetPrimitive.Trigger>):
|
|
11
|
+
}: React.ComponentProps<typeof SheetPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
|
|
11
12
|
declare function SheetClose({
|
|
12
13
|
...props
|
|
13
|
-
}: React.ComponentProps<typeof SheetPrimitive.Close>):
|
|
14
|
+
}: React.ComponentProps<typeof SheetPrimitive.Close>): _$react_jsx_runtime0.JSX.Element;
|
|
14
15
|
declare function SheetPortal({
|
|
15
16
|
...props
|
|
16
|
-
}: React.ComponentProps<typeof SheetPrimitive.Portal>):
|
|
17
|
+
}: React.ComponentProps<typeof SheetPrimitive.Portal>): _$react_jsx_runtime0.JSX.Element;
|
|
17
18
|
declare function SheetContent({
|
|
18
19
|
className,
|
|
19
20
|
children,
|
|
@@ -21,22 +22,22 @@ declare function SheetContent({
|
|
|
21
22
|
...props
|
|
22
23
|
}: React.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
23
24
|
side?: "top" | "right" | "bottom" | "left";
|
|
24
|
-
}):
|
|
25
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
25
26
|
declare function SheetHeader({
|
|
26
27
|
className,
|
|
27
28
|
...props
|
|
28
|
-
}: React.ComponentProps<"div">):
|
|
29
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
29
30
|
declare function SheetFooter({
|
|
30
31
|
className,
|
|
31
32
|
...props
|
|
32
|
-
}: React.ComponentProps<"div">):
|
|
33
|
+
}: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
|
|
33
34
|
declare function SheetTitle({
|
|
34
35
|
className,
|
|
35
36
|
...props
|
|
36
|
-
}: React.ComponentProps<typeof SheetPrimitive.Title>):
|
|
37
|
+
}: React.ComponentProps<typeof SheetPrimitive.Title>): _$react_jsx_runtime0.JSX.Element;
|
|
37
38
|
declare function SheetDescription({
|
|
38
39
|
className,
|
|
39
40
|
...props
|
|
40
|
-
}: React.ComponentProps<typeof SheetPrimitive.Description>):
|
|
41
|
+
}: React.ComponentProps<typeof SheetPrimitive.Description>): _$react_jsx_runtime0.JSX.Element;
|
|
41
42
|
//#endregion
|
|
42
43
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetPortal, SheetTitle, SheetTrigger };
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
|
|
1
3
|
//#region src/components/shimmer-text.d.ts
|
|
2
4
|
declare function ShimmerText({
|
|
3
5
|
children,
|
|
@@ -5,6 +7,6 @@ declare function ShimmerText({
|
|
|
5
7
|
}: {
|
|
6
8
|
children: string | number;
|
|
7
9
|
className?: string;
|
|
8
|
-
}):
|
|
10
|
+
}): _$react_jsx_runtime0.JSX.Element;
|
|
9
11
|
//#endregion
|
|
10
12
|
export { ShimmerText };
|