@godxjp/ui 8.0.0 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-G2WYOCDL.js → chunk-3EMDVI7X.js} +1 -1
- package/dist/{chunk-RGIYKJPW.js → chunk-67HEX3OS.js} +1 -1
- package/dist/{chunk-WN52SCGE.js → chunk-IAKROVSG.js} +1 -1
- package/dist/{chunk-XDUZ7JJL.js → chunk-MISVV4IT.js} +1 -1
- package/dist/{chunk-4R7RQDXI.js → chunk-PZ4LO723.js} +1 -1
- package/dist/chunk-Q7AU6WDX.js +261 -0
- package/dist/{chunk-SKIRU7GC.js → chunk-V45EK6S7.js} +1 -1
- package/dist/chunk-WFUIE252.js +61 -0
- package/dist/components/admin/index.js +21 -21
- package/dist/components/data-display/index.d.ts +12 -1
- package/dist/components/data-display/index.js +60 -7
- package/dist/components/data-entry/autocomplete.js +4 -4
- package/dist/components/data-entry/calendar.js +2 -2
- package/dist/components/data-entry/cascader.js +3 -3
- package/dist/components/data-entry/date-picker.js +3 -3
- package/dist/components/data-entry/date-range-picker.js +3 -3
- package/dist/components/data-entry/index.d.ts +65 -3
- package/dist/components/data-entry/index.js +16 -16
- package/dist/components/data-entry/select.js +4 -4
- package/dist/components/data-entry/transfer.js +2 -2
- package/dist/components/data-entry/tree-select.js +3 -3
- package/dist/components/data-entry/upload.js +3 -3
- package/dist/components/feedback/index.d.ts +18 -2
- package/dist/components/feedback/index.js +5 -5
- package/dist/components/layout/index.js +2 -2
- package/dist/components/navigation/index.js +6 -6
- package/dist/components/navigation/pagination.js +5 -5
- package/dist/components/ui/index.js +17 -17
- package/dist/index.js +28 -28
- package/dist/props/index.js +1 -1
- package/dist/styles/control.css +58 -0
- package/dist/styles/data-display-layout.css +25 -0
- package/dist/styles/feedback-layout.css +17 -0
- package/package.json +6 -2
- package/dist/chunk-2H65B4JA.js +0 -1
- package/dist/chunk-XMBCNMJI.js +0 -61
- package/dist/{chunk-NG23LVTM.js → chunk-3FUXNL5A.js} +1 -1
- package/dist/{chunk-IOGU3ZWF.js → chunk-7577VIAC.js} +1 -1
- package/dist/{chunk-A7PKMT7Y.js → chunk-N5SDFNSJ.js} +1 -1
- package/dist/{chunk-Z6HNY2PL.js → chunk-NGT3I6OG.js} +2 -2
- package/dist/{chunk-XZM2GNAY.js → chunk-PKGPNZA4.js} +1 -1
- package/dist/{chunk-A22MCA3X.js → chunk-TV7WEENM.js} +1 -1
- package/dist/{chunk-6QXQQAOQ.js → chunk-WY4RSEYC.js} +1 -1
- package/dist/{chunk-WTVLZVBA.js → chunk-YXJ3FS6O.js} +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { Input } from './input.js';
|
|
2
|
+
export { InputProps } from './input.js';
|
|
2
3
|
export { Label } from './label.js';
|
|
3
4
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from './select.js';
|
|
4
5
|
export { C as Checkbox, a as CheckboxGroup } from '../../checkbox-ChRsR7Nk.js';
|
|
@@ -22,7 +23,8 @@ export { Cascader, TreeFieldNames, TreeOption } from './cascader.js';
|
|
|
22
23
|
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from './tree-select.js';
|
|
23
24
|
export { Transfer } from './transfer.js';
|
|
24
25
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from './command.js';
|
|
25
|
-
import 'react';
|
|
26
|
+
import * as React from 'react';
|
|
27
|
+
import * as input_otp from 'input-otp';
|
|
26
28
|
import 'class-variance-authority/types';
|
|
27
29
|
import '@radix-ui/react-label';
|
|
28
30
|
import 'class-variance-authority';
|
|
@@ -55,4 +57,64 @@ declare function CountrySelect({ id, name, options, defaultValue, required, allo
|
|
|
55
57
|
*/
|
|
56
58
|
declare function SearchSelect({ value, onValueChange, options: staticOptions, loadOptions, renderOption, selectedLabel, placeholder, searchPlaceholder, emptyMessage, loadingMessage, clearLabel, clearable, disabled, name, id, className, "data-testid": dataTestId, }: SearchSelectProp): react_jsx_runtime.JSX.Element;
|
|
57
59
|
|
|
58
|
-
|
|
60
|
+
type PasswordInputProps = Omit<React.ComponentPropsWithoutRef<typeof Input>, "type">;
|
|
61
|
+
declare const PasswordInput: React.ForwardRefExoticComponent<PasswordInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
62
|
+
|
|
63
|
+
declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
64
|
+
value?: string;
|
|
65
|
+
onChange?: (newValue: string) => unknown;
|
|
66
|
+
maxLength: number;
|
|
67
|
+
textAlign?: "left" | "center" | "right";
|
|
68
|
+
onComplete?: (...args: any[]) => unknown;
|
|
69
|
+
pushPasswordManagerStrategy?: "increase-width" | "none";
|
|
70
|
+
pasteTransformer?: (pasted: string) => string;
|
|
71
|
+
containerClassName?: string;
|
|
72
|
+
noScriptCSSFallback?: string | null;
|
|
73
|
+
} & {
|
|
74
|
+
render: (props: input_otp.RenderProps) => React.ReactNode;
|
|
75
|
+
children?: never;
|
|
76
|
+
} & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
77
|
+
value?: string;
|
|
78
|
+
onChange?: (newValue: string) => unknown;
|
|
79
|
+
maxLength: number;
|
|
80
|
+
textAlign?: "left" | "center" | "right";
|
|
81
|
+
onComplete?: (...args: any[]) => unknown;
|
|
82
|
+
pushPasswordManagerStrategy?: "increase-width" | "none";
|
|
83
|
+
pasteTransformer?: (pasted: string) => string;
|
|
84
|
+
containerClassName?: string;
|
|
85
|
+
noScriptCSSFallback?: string | null;
|
|
86
|
+
} & {
|
|
87
|
+
render?: never;
|
|
88
|
+
children: React.ReactNode;
|
|
89
|
+
} & React.RefAttributes<HTMLInputElement>, "ref">) & React.RefAttributes<HTMLInputElement>>;
|
|
90
|
+
declare const InputOTPGroup: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
91
|
+
declare const InputOTPSlot: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
92
|
+
index: number;
|
|
93
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
94
|
+
declare const InputOTPSeparator: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
95
|
+
|
|
96
|
+
type RatingProps = {
|
|
97
|
+
value?: number;
|
|
98
|
+
defaultValue?: number;
|
|
99
|
+
onValueChange?: (value: number) => void;
|
|
100
|
+
max?: number;
|
|
101
|
+
readOnly?: boolean;
|
|
102
|
+
disabled?: boolean;
|
|
103
|
+
name?: string;
|
|
104
|
+
className?: string;
|
|
105
|
+
"aria-label"?: string;
|
|
106
|
+
};
|
|
107
|
+
declare const Rating: React.ForwardRefExoticComponent<RatingProps & React.RefAttributes<HTMLDivElement>>;
|
|
108
|
+
|
|
109
|
+
type TagInputProps = {
|
|
110
|
+
value?: string[];
|
|
111
|
+
defaultValue?: string[];
|
|
112
|
+
onValueChange?: (tags: string[]) => void;
|
|
113
|
+
placeholder?: string;
|
|
114
|
+
disabled?: boolean;
|
|
115
|
+
name?: string;
|
|
116
|
+
className?: string;
|
|
117
|
+
};
|
|
118
|
+
declare const TagInput: React.ForwardRefExoticComponent<TagInputProps & React.RefAttributes<HTMLInputElement>>;
|
|
119
|
+
|
|
120
|
+
export { CountryOptionLabel, CountryOptionLabelProp, CountrySelect, CountrySelectProp as CountrySelectProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, type PasswordInputProps, Rating, type RatingProps, SearchSelect, SearchSelectProp as SearchSelectProps, TagInput, type TagInputProps };
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export { CountryOptionLabel, CountrySelect } from '../../chunk-
|
|
1
|
+
export { CountryOptionLabel, CountrySelect, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, PasswordInput, Rating, TagInput } from '../../chunk-Q7AU6WDX.js';
|
|
2
2
|
export { Toggle, ToggleGroup, ToggleGroupItem } from '../../chunk-FYM3MJSK.js';
|
|
3
3
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-25RYBC5T.js';
|
|
4
4
|
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
5
5
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
6
6
|
export { TimePicker } from '../../chunk-RGPF3HU6.js';
|
|
7
7
|
export { ColorPicker } from '../../chunk-3TS3G4U3.js';
|
|
8
|
-
export { DatePicker } from '../../chunk-
|
|
9
|
-
export { DateRangePicker } from '../../chunk-
|
|
10
|
-
export { Autocomplete } from '../../chunk-
|
|
11
|
-
export { Calendar } from '../../chunk-
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
8
|
+
export { DatePicker } from '../../chunk-67HEX3OS.js';
|
|
9
|
+
export { DateRangePicker } from '../../chunk-IAKROVSG.js';
|
|
10
|
+
export { Autocomplete } from '../../chunk-MISVV4IT.js';
|
|
11
|
+
export { Calendar } from '../../chunk-7577VIAC.js';
|
|
12
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-NGT3I6OG.js';
|
|
13
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-3EMDVI7X.js';
|
|
14
|
+
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
15
|
+
export { SearchInput, Transfer } from '../../chunk-3FUXNL5A.js';
|
|
16
|
+
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-TV7WEENM.js';
|
|
14
17
|
import '../../chunk-4R7QL3MW.js';
|
|
15
18
|
import '../../chunk-P4HFJQID.js';
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export { Cascader } from '../../chunk-XZM2GNAY.js';
|
|
19
|
+
export { SearchSelect } from '../../chunk-WY4RSEYC.js';
|
|
20
|
+
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
21
|
+
export { Cascader } from '../../chunk-PKGPNZA4.js';
|
|
20
22
|
import '../../chunk-SMLKNECP.js';
|
|
21
23
|
export { Checkbox, CheckboxGroup } from '../../chunk-O24Z3ULJ.js';
|
|
22
24
|
export { ChoiceField, Field } from '../../chunk-26CPAKUP.js';
|
|
23
|
-
import '../../chunk-TILFZBTE.js';
|
|
24
|
-
import '../../chunk-3KPEZ5CF.js';
|
|
25
|
-
export { SearchSelect } from '../../chunk-6QXQQAOQ.js';
|
|
26
25
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
27
|
-
|
|
26
|
+
import '../../chunk-TILFZBTE.js';
|
|
28
27
|
import '../../chunk-DY5C44UP.js';
|
|
29
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-3KPEZ5CF.js';
|
|
30
29
|
import '../../chunk-IBK5D2Q6.js';
|
|
30
|
+
import '../../chunk-M4PZNAMV.js';
|
|
31
31
|
export { FormField } from '../../chunk-F7PG4OEV.js';
|
|
32
32
|
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
33
33
|
import '../../chunk-RLGHEV4A.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-HTEL5DQI.js';
|
|
1
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-3EMDVI7X.js';
|
|
2
|
+
import '../../chunk-WY4RSEYC.js';
|
|
4
3
|
import '../../chunk-VOHTRR5X.js';
|
|
4
|
+
import '../../chunk-HTEL5DQI.js';
|
|
5
5
|
import '../../chunk-DY5C44UP.js';
|
|
6
|
-
import '../../chunk-M4PZNAMV.js';
|
|
7
6
|
import '../../chunk-IBK5D2Q6.js';
|
|
7
|
+
import '../../chunk-M4PZNAMV.js';
|
|
8
8
|
import '../../chunk-RLGHEV4A.js';
|
|
9
9
|
import '../../chunk-FXFJF4YA.js';
|
|
10
10
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export { Transfer } from '../../chunk-
|
|
1
|
+
export { Transfer } from '../../chunk-3FUXNL5A.js';
|
|
2
|
+
import '../../chunk-VOHTRR5X.js';
|
|
2
3
|
import '../../chunk-SMLKNECP.js';
|
|
3
4
|
import '../../chunk-O24Z3ULJ.js';
|
|
4
5
|
import '../../chunk-26CPAKUP.js';
|
|
5
6
|
import '../../chunk-3KPEZ5CF.js';
|
|
6
|
-
import '../../chunk-VOHTRR5X.js';
|
|
7
7
|
import '../../chunk-M4PZNAMV.js';
|
|
8
8
|
import '../../chunk-7PWBC4BY.js';
|
|
9
9
|
import '../../chunk-RLGHEV4A.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-
|
|
1
|
+
export { SHOW_ALL, SHOW_CHILD, SHOW_PARENT, TreeSelect } from '../../chunk-TV7WEENM.js';
|
|
2
2
|
import '../../chunk-SMLKNECP.js';
|
|
3
3
|
import '../../chunk-O24Z3ULJ.js';
|
|
4
4
|
import '../../chunk-26CPAKUP.js';
|
|
5
|
-
import '../../chunk-3KPEZ5CF.js';
|
|
6
5
|
import '../../chunk-HTEL5DQI.js';
|
|
7
6
|
import '../../chunk-DY5C44UP.js';
|
|
8
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-3KPEZ5CF.js';
|
|
9
8
|
import '../../chunk-IBK5D2Q6.js';
|
|
9
|
+
import '../../chunk-M4PZNAMV.js';
|
|
10
10
|
import '../../chunk-7PWBC4BY.js';
|
|
11
11
|
import '../../chunk-RLGHEV4A.js';
|
|
12
12
|
import '../../chunk-FXFJF4YA.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
1
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-NGT3I6OG.js';
|
|
2
|
+
import '../../chunk-CRERCLIZ.js';
|
|
2
3
|
import '../../chunk-4R7QL3MW.js';
|
|
3
4
|
import '../../chunk-P4HFJQID.js';
|
|
4
|
-
import '../../chunk-CRERCLIZ.js';
|
|
5
5
|
import '../../chunk-VOHTRR5X.js';
|
|
6
|
-
import '../../chunk-M4PZNAMV.js';
|
|
7
6
|
import '../../chunk-IBK5D2Q6.js';
|
|
7
|
+
import '../../chunk-M4PZNAMV.js';
|
|
8
8
|
import '../../chunk-7PWBC4BY.js';
|
|
9
9
|
import '../../chunk-RLGHEV4A.js';
|
|
10
10
|
import '../../chunk-FXFJF4YA.js';
|
|
@@ -7,8 +7,10 @@ export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, A
|
|
|
7
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
8
|
import * as React from 'react';
|
|
9
9
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
10
|
+
import * as vaul from 'vaul';
|
|
11
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
12
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
10
13
|
export { A as AlertActionsProp, A as AlertActionsProps, a as AlertContentProp, a as AlertContentProps, b as AlertDescriptionProp, b as AlertDescriptionProps, c as AlertDialogProp, c as AlertDialogProps, d as AlertProp, d as AlertProps, e as AlertQueryErrorProp, e as AlertQueryErrorProps, f as AlertTitleProp, f as AlertTitleProps, D as DialogConfirmProp, D as DialogConfirmProps } from '../../feedback.prop-BR5JOpPl.js';
|
|
11
|
-
import '@radix-ui/react-dialog';
|
|
12
14
|
import '@radix-ui/react-alert-dialog';
|
|
13
15
|
import '../../shared.prop-BsNSXeqD.js';
|
|
14
16
|
import '../../content.prop-DrV_zDy-.js';
|
|
@@ -26,4 +28,18 @@ declare function Tooltip({ delayDuration, ...props }: React.ComponentProps<typeo
|
|
|
26
28
|
declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
27
29
|
declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
declare function Drawer({ shouldScaleBackground, ...props }: React.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
32
|
+
declare namespace Drawer {
|
|
33
|
+
var displayName: string;
|
|
34
|
+
}
|
|
35
|
+
declare const DrawerTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
36
|
+
declare const DrawerClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
37
|
+
declare const DrawerPortal: typeof vaul.Portal;
|
|
38
|
+
declare const DrawerOverlay: React.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
39
|
+
declare const DrawerContent: React.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
declare function DrawerHeader({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
41
|
+
declare function DrawerFooter({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
42
|
+
declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
43
|
+
declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
44
|
+
|
|
45
|
+
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from '../../chunk-WFUIE252.js';
|
|
2
2
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-BHV2FUOA.js';
|
|
3
3
|
export { toast, useToast } from '../../chunk-B3WX53JQ.js';
|
|
4
4
|
export { Skeleton, SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from '../../chunk-AINW5WYN.js';
|
|
5
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-TMDGV4CN.js';
|
|
6
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
7
5
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../../chunk-32WO3YLB.js';
|
|
6
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-TMDGV4CN.js';
|
|
8
7
|
import '../../chunk-4R7QL3MW.js';
|
|
9
8
|
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogConfirm, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from '../../chunk-P4HFJQID.js';
|
|
10
|
-
|
|
9
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
11
10
|
import '../../chunk-VOHTRR5X.js';
|
|
12
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-TILFZBTE.js';
|
|
13
12
|
import '../../chunk-IBK5D2Q6.js';
|
|
13
|
+
import '../../chunk-M4PZNAMV.js';
|
|
14
14
|
import '../../chunk-7PWBC4BY.js';
|
|
15
15
|
import '../../chunk-RLGHEV4A.js';
|
|
16
16
|
import '../../chunk-FXFJF4YA.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { AppShell, Breadcrumb, PageContainer, PageInset, ResponsiveGrid, Separator, Sidebar, SplitPane, Stack, Topbar } from '../../chunk-
|
|
1
|
+
export { AppShell, Breadcrumb, PageContainer, PageInset, ResponsiveGrid, Separator, Sidebar, SplitPane, Stack, Topbar } from '../../chunk-YXJ3FS6O.js';
|
|
2
2
|
export { AspectRatio } from '../../chunk-FRU44GA2.js';
|
|
3
|
-
import '../../chunk-32WO3YLB.js';
|
|
4
3
|
import '../../chunk-TO33OY4L.js';
|
|
4
|
+
import '../../chunk-32WO3YLB.js';
|
|
5
5
|
import '../../chunk-DV52WNXO.js';
|
|
6
6
|
export { Flex, Inline } from '../../chunk-TILFZBTE.js';
|
|
7
7
|
import '../../chunk-DY5C44UP.js';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
export { DateFormatPicker, FilterBar, FilterGroup, LocalePicker, PageHeader, TimeFormatPicker, TimezonePicker, Toolbar, ToolbarGroup } from '../../chunk-
|
|
1
|
+
export { DateFormatPicker, FilterBar, FilterGroup, LocalePicker, PageHeader, TimeFormatPicker, TimezonePicker, Toolbar, ToolbarGroup } from '../../chunk-PZ4LO723.js';
|
|
2
2
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-TO33OY4L.js';
|
|
3
|
-
export { Pagination } from '../../chunk-
|
|
3
|
+
export { Pagination } from '../../chunk-V45EK6S7.js';
|
|
4
4
|
export { Steps } from '../../chunk-OJZ6C2HM.js';
|
|
5
5
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
6
|
-
import '../../chunk-
|
|
7
|
-
import '../../chunk-
|
|
8
|
-
import '../../chunk-HTEL5DQI.js';
|
|
6
|
+
import '../../chunk-3EMDVI7X.js';
|
|
7
|
+
import '../../chunk-WY4RSEYC.js';
|
|
9
8
|
import '../../chunk-VOHTRR5X.js';
|
|
9
|
+
import '../../chunk-HTEL5DQI.js';
|
|
10
10
|
import '../../chunk-DY5C44UP.js';
|
|
11
|
-
import '../../chunk-M4PZNAMV.js';
|
|
12
11
|
import '../../chunk-IBK5D2Q6.js';
|
|
12
|
+
import '../../chunk-M4PZNAMV.js';
|
|
13
13
|
import '../../chunk-RLGHEV4A.js';
|
|
14
14
|
import '../../chunk-FXFJF4YA.js';
|
|
15
15
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { Pagination } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
3
|
-
import '../../chunk-
|
|
4
|
-
import '../../chunk-HTEL5DQI.js';
|
|
1
|
+
export { Pagination } from '../../chunk-V45EK6S7.js';
|
|
2
|
+
import '../../chunk-3EMDVI7X.js';
|
|
3
|
+
import '../../chunk-WY4RSEYC.js';
|
|
5
4
|
import '../../chunk-VOHTRR5X.js';
|
|
5
|
+
import '../../chunk-HTEL5DQI.js';
|
|
6
6
|
import '../../chunk-DY5C44UP.js';
|
|
7
|
-
import '../../chunk-M4PZNAMV.js';
|
|
8
7
|
import '../../chunk-IBK5D2Q6.js';
|
|
8
|
+
import '../../chunk-M4PZNAMV.js';
|
|
9
9
|
import '../../chunk-RLGHEV4A.js';
|
|
10
10
|
import '../../chunk-FXFJF4YA.js';
|
|
11
11
|
import '../../chunk-U7N2A7A3.js';
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
export { Avatar, AvatarFallback, AvatarImage } from '../../chunk-SEG2YBXF.js';
|
|
2
2
|
export { Card, CardAction, CardContent, CardCover, CardDescription, CardFooter, CardHeader, CardTitle, StatCard } from '../../chunk-O2OUNXV4.js';
|
|
3
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-BHV2FUOA.js';
|
|
4
3
|
export { Toggle, ToggleGroup, ToggleGroupItem, toggleVariants } from '../../chunk-FYM3MJSK.js';
|
|
5
4
|
export { Radio, RadioGroupOptions as RadioGroup, RadioGroupRoot, RadioItem } from '../../chunk-25RYBC5T.js';
|
|
6
5
|
export { Switch } from '../../chunk-R2W2FX5Q.js';
|
|
7
6
|
export { Textarea } from '../../chunk-EOTOCNT7.js';
|
|
8
7
|
export { TimePicker } from '../../chunk-RGPF3HU6.js';
|
|
9
8
|
export { ColorPicker } from '../../chunk-3TS3G4U3.js';
|
|
10
|
-
export { DatePicker } from '../../chunk-
|
|
11
|
-
export { DateRangePicker } from '../../chunk-
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-TMDGV4CN.js';
|
|
16
|
-
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
9
|
+
export { DatePicker } from '../../chunk-67HEX3OS.js';
|
|
10
|
+
export { DateRangePicker } from '../../chunk-IAKROVSG.js';
|
|
11
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from '../../chunk-BHV2FUOA.js';
|
|
12
|
+
export { Autocomplete } from '../../chunk-MISVV4IT.js';
|
|
13
|
+
export { Calendar } from '../../chunk-7577VIAC.js';
|
|
17
14
|
export { AspectRatio } from '../../chunk-FRU44GA2.js';
|
|
18
15
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from '../../chunk-TO33OY4L.js';
|
|
19
|
-
export { Pagination } from '../../chunk-
|
|
16
|
+
export { Pagination } from '../../chunk-V45EK6S7.js';
|
|
20
17
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from '../../chunk-V3N266PT.js';
|
|
21
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-
|
|
18
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from '../../chunk-NGT3I6OG.js';
|
|
19
|
+
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue } from '../../chunk-3EMDVI7X.js';
|
|
20
|
+
export { Slider } from '../../chunk-CRERCLIZ.js';
|
|
21
|
+
export { Skeleton } from '../../chunk-AINW5WYN.js';
|
|
22
|
+
export { Alert, AlertActions, AlertBase, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from '../../chunk-TMDGV4CN.js';
|
|
22
23
|
import '../../chunk-4R7QL3MW.js';
|
|
23
24
|
export { AlertDialog, Dialog, DialogAction, DialogCancel, DialogClose, DialogConfirm, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from '../../chunk-P4HFJQID.js';
|
|
24
|
-
export {
|
|
25
|
-
|
|
25
|
+
export { Toaster } from '../../chunk-TO7URV7U.js';
|
|
26
|
+
import '../../chunk-WY4RSEYC.js';
|
|
27
|
+
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
26
28
|
export { Checkbox } from '../../chunk-O24Z3ULJ.js';
|
|
27
29
|
import '../../chunk-26CPAKUP.js';
|
|
30
|
+
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
28
31
|
import '../../chunk-TILFZBTE.js';
|
|
29
32
|
export { Badge } from '../../chunk-UIYEAUWA.js';
|
|
33
|
+
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
30
34
|
export { ScrollArea, ScrollBar } from '../../chunk-3KPEZ5CF.js';
|
|
31
35
|
export { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '../../chunk-4MMIMZMK.js';
|
|
32
|
-
import '../../chunk-6QXQQAOQ.js';
|
|
33
|
-
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '../../chunk-HTEL5DQI.js';
|
|
34
|
-
export { Input } from '../../chunk-VOHTRR5X.js';
|
|
35
|
-
export { Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger } from '../../chunk-DY5C44UP.js';
|
|
36
|
-
export { Button, buttonVariants } from '../../chunk-M4PZNAMV.js';
|
|
37
36
|
import '../../chunk-IBK5D2Q6.js';
|
|
37
|
+
export { Button, buttonVariants } from '../../chunk-M4PZNAMV.js';
|
|
38
38
|
export { Label } from '../../chunk-7PWBC4BY.js';
|
|
39
39
|
import '../../chunk-RLGHEV4A.js';
|
|
40
40
|
import '../../chunk-FXFJF4YA.js';
|
package/dist/index.js
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
import './chunk-
|
|
2
|
-
import './chunk-BHV2FUOA.js';
|
|
3
|
-
import './chunk-XMBCNMJI.js';
|
|
1
|
+
import './chunk-Q7AU6WDX.js';
|
|
4
2
|
import './chunk-FYM3MJSK.js';
|
|
5
3
|
import './chunk-25RYBC5T.js';
|
|
6
4
|
import './chunk-R2W2FX5Q.js';
|
|
7
5
|
import './chunk-EOTOCNT7.js';
|
|
8
6
|
import './chunk-RGPF3HU6.js';
|
|
9
7
|
import './chunk-3TS3G4U3.js';
|
|
10
|
-
import './chunk-
|
|
11
|
-
import './chunk-
|
|
12
|
-
import './chunk-
|
|
13
|
-
import './chunk-
|
|
8
|
+
import './chunk-67HEX3OS.js';
|
|
9
|
+
import './chunk-IAKROVSG.js';
|
|
10
|
+
import './chunk-WFUIE252.js';
|
|
11
|
+
import './chunk-BHV2FUOA.js';
|
|
12
|
+
import './chunk-MISVV4IT.js';
|
|
13
|
+
import './chunk-7577VIAC.js';
|
|
14
14
|
export { FormFieldControl, FormRoot, useZodForm } from './chunk-7WRZG2IG.js';
|
|
15
15
|
import './chunk-HKD6ERY7.js';
|
|
16
|
-
export {
|
|
17
|
-
export { toast, useToast } from './chunk-B3WX53JQ.js';
|
|
18
|
-
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-AINW5WYN.js';
|
|
19
|
-
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-TMDGV4CN.js';
|
|
20
|
-
export { Toaster } from './chunk-TO7URV7U.js';
|
|
21
|
-
export { PageContainer, Stack } from './chunk-WTVLZVBA.js';
|
|
16
|
+
export { PageContainer, Stack } from './chunk-YXJ3FS6O.js';
|
|
22
17
|
import './chunk-FRU44GA2.js';
|
|
23
|
-
|
|
24
|
-
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from './chunk-4R7RQDXI.js';
|
|
18
|
+
export { FilterBar, FilterGroup, PageHeader, Toolbar, ToolbarGroup } from './chunk-PZ4LO723.js';
|
|
25
19
|
import './chunk-TO33OY4L.js';
|
|
26
|
-
export { Pagination } from './chunk-
|
|
20
|
+
export { Pagination } from './chunk-V45EK6S7.js';
|
|
27
21
|
export { Steps } from './chunk-OJZ6C2HM.js';
|
|
28
22
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './chunk-V3N266PT.js';
|
|
29
|
-
export {
|
|
30
|
-
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-
|
|
23
|
+
export { AlertMutationFeedback, ButtonRefetch, DataState, InfiniteQueryState, MutationFeedback, PrefetchLink, QueryRefetchButton, flattenItemPages } from './chunk-N43OKOFT.js';
|
|
24
|
+
export { Upload, collectUploadCommitActions, createUploadItem, useUploadDraft } from './chunk-NGT3I6OG.js';
|
|
25
|
+
import './chunk-3EMDVI7X.js';
|
|
26
|
+
import './chunk-CRERCLIZ.js';
|
|
27
|
+
export { SearchInput, Transfer, useDebouncedValue, useTimeoutFlag } from './chunk-3FUXNL5A.js';
|
|
28
|
+
export { TreeSelect } from './chunk-TV7WEENM.js';
|
|
29
|
+
export { toast, useToast } from './chunk-B3WX53JQ.js';
|
|
30
|
+
export { SkeletonCard, SkeletonDetail, SkeletonRows, SkeletonStat, SkeletonTable } from './chunk-AINW5WYN.js';
|
|
31
|
+
import './chunk-32WO3YLB.js';
|
|
32
|
+
export { Alert, AlertActions, AlertContent, AlertDescription, AlertQueryError, AlertTitle } from './chunk-TMDGV4CN.js';
|
|
31
33
|
export { formatBytes, formatCurrency, formatDateLong, formatDateTime, formatRelative, humanError, shortId } from './chunk-4R7QL3MW.js';
|
|
32
34
|
export { AlertDialog, Dialog, DialogConfirm, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from './chunk-P4HFJQID.js';
|
|
33
|
-
|
|
34
|
-
import './chunk-
|
|
35
|
-
|
|
36
|
-
export { Cascader } from './chunk-
|
|
35
|
+
export { Toaster } from './chunk-TO7URV7U.js';
|
|
36
|
+
import './chunk-WY4RSEYC.js';
|
|
37
|
+
import './chunk-VOHTRR5X.js';
|
|
38
|
+
export { Cascader } from './chunk-PKGPNZA4.js';
|
|
37
39
|
import './chunk-SMLKNECP.js';
|
|
38
40
|
import './chunk-O24Z3ULJ.js';
|
|
39
41
|
export { ChoiceField, Field } from './chunk-26CPAKUP.js';
|
|
40
|
-
|
|
42
|
+
import './chunk-HTEL5DQI.js';
|
|
43
|
+
export { DataTable, Descriptions, EmptyState } from './chunk-N5SDFNSJ.js';
|
|
41
44
|
import './chunk-DV52WNXO.js';
|
|
42
45
|
export { Flex, Inline } from './chunk-TILFZBTE.js';
|
|
43
46
|
export { Badge } from './chunk-UIYEAUWA.js';
|
|
47
|
+
import './chunk-DY5C44UP.js';
|
|
44
48
|
import './chunk-3KPEZ5CF.js';
|
|
45
49
|
import './chunk-4MMIMZMK.js';
|
|
46
|
-
import './chunk-6QXQQAOQ.js';
|
|
47
|
-
import './chunk-HTEL5DQI.js';
|
|
48
|
-
import './chunk-VOHTRR5X.js';
|
|
49
|
-
import './chunk-DY5C44UP.js';
|
|
50
|
-
import './chunk-M4PZNAMV.js';
|
|
51
50
|
import './chunk-IBK5D2Q6.js';
|
|
51
|
+
import './chunk-M4PZNAMV.js';
|
|
52
52
|
export { FormField } from './chunk-F7PG4OEV.js';
|
|
53
53
|
import './chunk-7PWBC4BY.js';
|
|
54
54
|
import './chunk-RLGHEV4A.js';
|
package/dist/props/index.js
CHANGED
package/dist/styles/control.css
CHANGED
|
@@ -570,3 +570,61 @@
|
|
|
570
570
|
}
|
|
571
571
|
}
|
|
572
572
|
}
|
|
573
|
+
|
|
574
|
+
/* PasswordInput */
|
|
575
|
+
.ui-password-input { position: relative; display: block; }
|
|
576
|
+
.ui-password-input-field { padding-right: 2.5rem; }
|
|
577
|
+
.ui-password-input-toggle {
|
|
578
|
+
position: absolute; inset-block: 0; inset-inline-end: 0; display: inline-flex;
|
|
579
|
+
align-items: center; justify-content: center; width: 2.5rem;
|
|
580
|
+
color: hsl(var(--muted-foreground)); background: transparent; border: 0; cursor: pointer;
|
|
581
|
+
}
|
|
582
|
+
.ui-password-input-toggle:hover { color: hsl(var(--foreground)); }
|
|
583
|
+
.ui-password-input-toggle svg { width: 1rem; height: 1rem; }
|
|
584
|
+
|
|
585
|
+
/* InputOTP */
|
|
586
|
+
.ui-otp-container { display: flex; align-items: center; gap: var(--space-2); }
|
|
587
|
+
.ui-otp-input:disabled { cursor: not-allowed; }
|
|
588
|
+
.ui-otp-group { display: flex; align-items: center; }
|
|
589
|
+
.ui-otp-slot {
|
|
590
|
+
position: relative; display: flex; width: 2.25rem; height: 2.25rem;
|
|
591
|
+
align-items: center; justify-content: center; font-size: 0.875rem;
|
|
592
|
+
border: 1px solid hsl(var(--border)); border-inline-start-width: 0;
|
|
593
|
+
background: hsl(var(--background)); transition: box-shadow 0.15s ease;
|
|
594
|
+
}
|
|
595
|
+
.ui-otp-group .ui-otp-slot:first-child {
|
|
596
|
+
border-inline-start-width: 1px; border-start-start-radius: var(--radius-md); border-end-start-radius: var(--radius-md);
|
|
597
|
+
}
|
|
598
|
+
.ui-otp-group .ui-otp-slot:last-child { border-start-end-radius: var(--radius-md); border-end-end-radius: var(--radius-md); }
|
|
599
|
+
.ui-otp-slot[data-active="true"] { z-index: 1; box-shadow: 0 0 0 2px hsl(var(--ring)); }
|
|
600
|
+
.ui-otp-caret-wrapper { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
|
|
601
|
+
.ui-otp-caret { width: 1px; height: 1rem; background: hsl(var(--foreground)); animation: ui-otp-blink 1s step-end infinite; }
|
|
602
|
+
@keyframes ui-otp-blink { 50% { opacity: 0; } }
|
|
603
|
+
.ui-otp-separator-icon { width: 1rem; height: 1rem; color: hsl(var(--muted-foreground)); }
|
|
604
|
+
|
|
605
|
+
/* Rating */
|
|
606
|
+
.ui-rating { display: inline-flex; align-items: center; gap: var(--space-1); }
|
|
607
|
+
.ui-rating-star { background: transparent; border: 0; padding: 0; cursor: pointer; color: hsl(var(--muted-foreground) / 0.45); line-height: 0; }
|
|
608
|
+
.ui-rating-star:disabled { cursor: default; }
|
|
609
|
+
.ui-rating-star svg { width: 1.25rem; height: 1.25rem; }
|
|
610
|
+
.ui-rating-star-filled { color: hsl(var(--warning)); }
|
|
611
|
+
.ui-rating-star-filled svg { fill: currentColor; }
|
|
612
|
+
.ui-rating-star:focus-visible { outline: 2px solid hsl(var(--ring)); outline-offset: 2px; border-radius: var(--radius-sm); }
|
|
613
|
+
|
|
614
|
+
/* TagInput */
|
|
615
|
+
.ui-tag-input {
|
|
616
|
+
display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-1);
|
|
617
|
+
min-height: 2.25rem; padding: var(--space-1) var(--space-2);
|
|
618
|
+
border: 1px solid hsl(var(--input)); border-radius: var(--radius-md); background: hsl(var(--background));
|
|
619
|
+
}
|
|
620
|
+
.ui-tag-input:focus-within { box-shadow: 0 0 0 2px hsl(var(--ring)); border-color: hsl(var(--ring)); }
|
|
621
|
+
.ui-tag-input-disabled { opacity: 0.6; cursor: not-allowed; }
|
|
622
|
+
.ui-tag-input-chip {
|
|
623
|
+
display: inline-flex; align-items: center; gap: var(--space-1); font-size: 0.8125rem;
|
|
624
|
+
padding: 0.0625rem var(--space-2); border-radius: var(--radius-sm);
|
|
625
|
+
background: hsl(var(--secondary)); color: hsl(var(--secondary-foreground));
|
|
626
|
+
}
|
|
627
|
+
.ui-tag-input-remove { display: inline-flex; background: transparent; border: 0; padding: 0; cursor: pointer; color: inherit; opacity: 0.7; }
|
|
628
|
+
.ui-tag-input-remove:hover { opacity: 1; }
|
|
629
|
+
.ui-tag-input-remove svg { width: 0.75rem; height: 0.75rem; }
|
|
630
|
+
.ui-tag-input-field { flex: 1; min-width: 6rem; border: 0; outline: none; background: transparent; font-size: 0.875rem; color: inherit; }
|
|
@@ -186,3 +186,28 @@
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
}
|
|
189
|
+
|
|
190
|
+
/* Accordion */
|
|
191
|
+
.ui-accordion-item { border-bottom: 1px solid hsl(var(--border)); }
|
|
192
|
+
.ui-accordion-header { display: flex; }
|
|
193
|
+
.ui-accordion-trigger {
|
|
194
|
+
display: flex; flex: 1; align-items: center; justify-content: space-between;
|
|
195
|
+
gap: var(--space-2); padding-block: var(--space-4); font-weight: 500; text-align: left;
|
|
196
|
+
transition: color 0.15s ease;
|
|
197
|
+
}
|
|
198
|
+
.ui-accordion-trigger:hover { text-decoration: underline; }
|
|
199
|
+
.ui-accordion-chevron {
|
|
200
|
+
width: 1rem; height: 1rem; color: hsl(var(--muted-foreground));
|
|
201
|
+
transition: transform 0.2s ease; flex-shrink: 0;
|
|
202
|
+
}
|
|
203
|
+
.ui-accordion-trigger[data-state="open"] .ui-accordion-chevron { transform: rotate(180deg); }
|
|
204
|
+
.ui-accordion-content { overflow: hidden; font-size: 0.875rem; }
|
|
205
|
+
.ui-accordion-content-inner { padding-bottom: var(--space-4); }
|
|
206
|
+
|
|
207
|
+
/* HoverCard */
|
|
208
|
+
.ui-hover-card-content {
|
|
209
|
+
z-index: 50; width: 16rem; border-radius: var(--radius-md);
|
|
210
|
+
border: 1px solid hsl(var(--border)); background: hsl(var(--popover));
|
|
211
|
+
color: hsl(var(--popover-foreground)); padding: var(--space-4);
|
|
212
|
+
box-shadow: var(--shadow-md); outline: none;
|
|
213
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
/* Drawer (bottom-sheet, vaul) */
|
|
3
|
+
.ui-drawer-overlay { position: fixed; inset: 0; z-index: 50; background: hsl(var(--overlay, 0 0% 0% / 0.4)); }
|
|
4
|
+
.ui-drawer-content {
|
|
5
|
+
position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 50;
|
|
6
|
+
display: flex; flex-direction: column; max-height: 82vh;
|
|
7
|
+
border-start-start-radius: var(--radius-lg); border-start-end-radius: var(--radius-lg);
|
|
8
|
+
border: 1px solid hsl(var(--border)); background: hsl(var(--background));
|
|
9
|
+
}
|
|
10
|
+
.ui-drawer-handle {
|
|
11
|
+
margin: var(--space-3) auto; height: 0.375rem; width: 6rem; flex-shrink: 0;
|
|
12
|
+
border-radius: 9999px; background: hsl(var(--muted));
|
|
13
|
+
}
|
|
14
|
+
.ui-drawer-header { display: grid; gap: var(--space-1); padding: var(--space-4); text-align: center; }
|
|
15
|
+
.ui-drawer-footer { display: flex; flex-direction: column; gap: var(--space-2); margin-top: auto; padding: var(--space-4); }
|
|
16
|
+
.ui-drawer-title { font-weight: 600; line-height: 1.2; }
|
|
17
|
+
.ui-drawer-description { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@godxjp/ui",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "@godxjp/ui — shared React UI framework (shadcn + Radix + Tailwind v4).",
|
|
6
6
|
"files": [
|
|
@@ -262,6 +262,7 @@
|
|
|
262
262
|
"dependencies": {
|
|
263
263
|
"@date-fns/tz": "^1.5.0",
|
|
264
264
|
"@fontsource/m-plus-2": "^5.2.9",
|
|
265
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
265
266
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
266
267
|
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
267
268
|
"@radix-ui/react-avatar": "^1.1.11",
|
|
@@ -270,6 +271,7 @@
|
|
|
270
271
|
"@radix-ui/react-context": "^1.1.2",
|
|
271
272
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
272
273
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
274
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
273
275
|
"@radix-ui/react-label": "^2.1.8",
|
|
274
276
|
"@radix-ui/react-popover": "^1.1.15",
|
|
275
277
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
@@ -287,11 +289,13 @@
|
|
|
287
289
|
"clsx": "^2.1.1",
|
|
288
290
|
"cmdk": "^1.1.1",
|
|
289
291
|
"date-fns": "^4.1.0",
|
|
292
|
+
"input-otp": "^1.4.2",
|
|
290
293
|
"lucide-react": "^1.14.0",
|
|
291
294
|
"react-day-picker": "^10.0.1",
|
|
292
295
|
"sonner": "^2.0.7",
|
|
293
296
|
"tailwind-merge": "^3.5.0",
|
|
294
|
-
"tailwindcss-animate": "^1.0.7"
|
|
297
|
+
"tailwindcss-animate": "^1.0.7",
|
|
298
|
+
"vaul": "^1.1.2"
|
|
295
299
|
},
|
|
296
300
|
"devDependencies": {
|
|
297
301
|
"@eslint/js": "^9.39.4",
|
package/dist/chunk-2H65B4JA.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|