lecom-ui 5.2.87 → 5.2.89
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/README.md +1 -1
- package/dist/components/Accordion/Accordion.js +3 -10
- package/dist/components/Calendar/Calendar.js +380 -0
- package/dist/components/Collapse/Collapse.js +94 -0
- package/dist/components/Combobox/Combobox.js +128 -0
- package/dist/components/CustomDivider/CustomDivider.js +234 -0
- package/dist/components/DataTable/DataTable.utils.js +3 -10
- package/dist/components/DataTable/Table.js +2 -1
- package/dist/components/DatePicker/DatePicker.js +55 -0
- package/dist/components/Pagination/Pagination.js +3 -2
- package/dist/components/Steps/Steps.js +102 -0
- package/dist/components/Switch/Switch.js +42 -6
- package/dist/components/TagInput/TagInput.js +106 -0
- package/dist/index.d.ts +128 -9
- package/dist/index.js +9 -0
- package/dist/plugin/extend.js +78 -78
- package/dist/plugin/fontFaces.js +172 -172
- package/dist/plugin/general.js +12 -12
- package/dist/plugin/pluginDev.cjs +5 -5
- package/dist/plugin/pluginNext.cjs +5 -5
- package/dist/plugin/pluginNextTurbo.cjs +5 -5
- package/dist/plugin/pluginVite.cjs +5 -5
- package/dist/plugin/template.js +31 -31
- package/dist/plugin/typographies.js +152 -152
- package/dist/plugin/varsTheme.js +79 -79
- package/dist/style.min.css +1 -1
- package/package.json +10 -5
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
19
19
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
20
20
|
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
21
21
|
import * as react_hook_form from 'react-hook-form';
|
|
22
|
-
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
22
|
+
import { FieldValues, FieldPath, ControllerProps, Control } from 'react-hook-form';
|
|
23
23
|
export { useForm } from 'react-hook-form';
|
|
24
24
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
25
25
|
import { CustomStyles as CustomStyles$2 } from '@/components/Button';
|
|
@@ -36,6 +36,10 @@ export { TFunction, default as i18n } from 'i18next';
|
|
|
36
36
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
37
37
|
import * as vaul from 'vaul';
|
|
38
38
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
39
|
+
import { Locale } from 'date-fns';
|
|
40
|
+
export { ptBR } from 'date-fns/locale/pt-BR';
|
|
41
|
+
export { enUS } from 'date-fns/locale/en-US';
|
|
42
|
+
export { es } from 'date-fns/locale/es';
|
|
39
43
|
export { z as zod } from 'zod';
|
|
40
44
|
export { zodResolver } from '@hookform/resolvers/zod';
|
|
41
45
|
export { Translation, useTranslation } from 'react-i18next';
|
|
@@ -399,6 +403,7 @@ interface PaginationProps {
|
|
|
399
403
|
onChangePerPage?: (currentPerPage: number) => void;
|
|
400
404
|
className?: string;
|
|
401
405
|
activeColor?: BgColor$1;
|
|
406
|
+
showPerPageSelector?: boolean;
|
|
402
407
|
}
|
|
403
408
|
declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
404
409
|
declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
@@ -427,7 +432,7 @@ declare const PaginationIndex: {
|
|
|
427
432
|
displayName: string;
|
|
428
433
|
};
|
|
429
434
|
declare const Pagination: {
|
|
430
|
-
({ currentPage, itemsPage, perPage, totalRowsSelected, onChangePerPage, className, activeColor, }: PaginationProps): React$1.JSX.Element;
|
|
435
|
+
({ currentPage, itemsPage, perPage, totalRowsSelected, onChangePerPage, className, activeColor, showPerPageSelector, }: PaginationProps): React$1.JSX.Element;
|
|
431
436
|
displayName: string;
|
|
432
437
|
};
|
|
433
438
|
|
|
@@ -715,8 +720,8 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
715
720
|
|
|
716
721
|
declare const inputVariants: (props?: ({
|
|
717
722
|
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
718
|
-
size?: "
|
|
719
|
-
radius?: "
|
|
723
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
724
|
+
radius?: "default" | "small" | "large" | "full" | null | undefined;
|
|
720
725
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
721
726
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
722
727
|
sufix?: React$1.ReactNode;
|
|
@@ -875,7 +880,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
875
880
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
876
881
|
|
|
877
882
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
878
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement |
|
|
883
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLHeadingElement | HTMLParagraphElement | HTMLLabelElement | HTMLInputElement | HTMLUListElement | HTMLObjectElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableCaptionElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLFormElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLLegendElement | HTMLLinkElement | HTMLMapElement | HTMLMenuElement | HTMLMetaElement | HTMLMeterElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLPictureElement | HTMLPreElement | HTMLProgressElement | HTMLScriptElement | HTMLSelectElement | HTMLSlotElement | HTMLSourceElement | HTMLStyleElement | HTMLTableElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLVideoElement>, "id" | "onResize"> & {
|
|
879
884
|
className?: string;
|
|
880
885
|
collapsedSize?: number | undefined;
|
|
881
886
|
collapsible?: boolean | undefined;
|
|
@@ -932,7 +937,11 @@ interface SpinProps extends React$1.SVGAttributes<SVGSVGElement> {
|
|
|
932
937
|
}
|
|
933
938
|
declare const Spin: React$1.ForwardRefExoticComponent<SpinProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
934
939
|
|
|
935
|
-
|
|
940
|
+
interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {
|
|
941
|
+
loading?: boolean;
|
|
942
|
+
className?: string;
|
|
943
|
+
}
|
|
944
|
+
declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
936
945
|
|
|
937
946
|
declare const tagVariants: (props?: ({
|
|
938
947
|
color?: "blue" | "grey" | "purple" | "yellow" | "red" | "orange" | "green" | "pink" | "turquoise" | null | undefined;
|
|
@@ -1027,7 +1036,7 @@ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
|
|
|
1027
1036
|
|
|
1028
1037
|
declare const textareaVariants: (props?: ({
|
|
1029
1038
|
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
1030
|
-
radius?: "
|
|
1039
|
+
radius?: "default" | "small" | "large" | null | undefined;
|
|
1031
1040
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1032
1041
|
interface TextareaProps extends React$1.ComponentProps<'textarea'>, VariantProps<typeof textareaVariants> {
|
|
1033
1042
|
resize?: 'none' | 'both' | 'horizontal' | 'vertical';
|
|
@@ -1054,5 +1063,115 @@ declare const DrawerFooter: {
|
|
|
1054
1063
|
declare const DrawerTitle: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Title>>>;
|
|
1055
1064
|
declare const DrawerDescription: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Description> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Description>>>;
|
|
1056
1065
|
|
|
1057
|
-
|
|
1058
|
-
|
|
1066
|
+
type TimelineStepItem = {
|
|
1067
|
+
title: React$1.ReactNode;
|
|
1068
|
+
description?: React$1.ReactNode;
|
|
1069
|
+
status?: 'completed' | 'current' | 'pending' | 'error';
|
|
1070
|
+
};
|
|
1071
|
+
interface StepsProps {
|
|
1072
|
+
items: TimelineStepItem[];
|
|
1073
|
+
current?: number;
|
|
1074
|
+
className?: string;
|
|
1075
|
+
dotSize?: 'small' | 'medium' | 'large';
|
|
1076
|
+
color?: string;
|
|
1077
|
+
}
|
|
1078
|
+
declare const Steps: React$1.FC<StepsProps>;
|
|
1079
|
+
|
|
1080
|
+
interface ComboboxOption {
|
|
1081
|
+
label: string;
|
|
1082
|
+
value: string;
|
|
1083
|
+
disabled?: boolean;
|
|
1084
|
+
}
|
|
1085
|
+
interface ComboboxGroup {
|
|
1086
|
+
label: string;
|
|
1087
|
+
options: ComboboxOption[];
|
|
1088
|
+
}
|
|
1089
|
+
type ComboboxProps = {
|
|
1090
|
+
options: (ComboboxOption | ComboboxGroup)[];
|
|
1091
|
+
value: string | null;
|
|
1092
|
+
onChange: (value: string | null) => void;
|
|
1093
|
+
placeholder?: string;
|
|
1094
|
+
disabled?: boolean;
|
|
1095
|
+
notFoundContent?: React$1.ReactNode;
|
|
1096
|
+
status?: 'default' | 'error';
|
|
1097
|
+
searchTerm?: string;
|
|
1098
|
+
triggerClassName?: string;
|
|
1099
|
+
contentClassName?: string;
|
|
1100
|
+
};
|
|
1101
|
+
declare function Combobox({ options, value, onChange, placeholder, disabled, notFoundContent, status, searchTerm, triggerClassName, contentClassName, }: ComboboxProps): React$1.JSX.Element;
|
|
1102
|
+
|
|
1103
|
+
interface TagValue {
|
|
1104
|
+
label: string;
|
|
1105
|
+
value: string;
|
|
1106
|
+
}
|
|
1107
|
+
interface TagInputProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1108
|
+
value: TagValue[];
|
|
1109
|
+
onRemove: (value: string) => void;
|
|
1110
|
+
placeholder?: string;
|
|
1111
|
+
disabled?: boolean;
|
|
1112
|
+
readOnly?: boolean;
|
|
1113
|
+
className?: string;
|
|
1114
|
+
variant?: 'default' | 'filled' | 'borderless';
|
|
1115
|
+
radius?: 'default' | 'full';
|
|
1116
|
+
}
|
|
1117
|
+
declare function TagInput({ value, onRemove, placeholder, disabled, readOnly, className, variant, radius, ...props }: TagInputProps): React$1.JSX.Element;
|
|
1118
|
+
|
|
1119
|
+
interface CustomDividerProps {
|
|
1120
|
+
name?: string;
|
|
1121
|
+
control?: Control<any>;
|
|
1122
|
+
isActive?: boolean;
|
|
1123
|
+
isGroupDivider?: boolean;
|
|
1124
|
+
orientation?: 'left' | 'center' | 'right';
|
|
1125
|
+
dashed?: boolean;
|
|
1126
|
+
plain?: boolean;
|
|
1127
|
+
lineOnly?: boolean;
|
|
1128
|
+
optionLabels?: [string, string];
|
|
1129
|
+
ButtonComponent?: typeof Button;
|
|
1130
|
+
buttonSize?: 'small' | 'medium' | 'large' | 'extraLarge' | null | undefined;
|
|
1131
|
+
buttonClassName?: string;
|
|
1132
|
+
className?: string;
|
|
1133
|
+
style?: React$1.CSSProperties;
|
|
1134
|
+
children?: React$1.ReactNode;
|
|
1135
|
+
}
|
|
1136
|
+
declare function CustomDivider({ name, control, isActive, isGroupDivider, orientation, dashed, plain, lineOnly, optionLabels, ButtonComponent, buttonSize, buttonClassName, className, style, children, }: CustomDividerProps): React$1.JSX.Element;
|
|
1137
|
+
declare namespace CustomDivider {
|
|
1138
|
+
var displayName: string;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
type ExpandIconPosition = 'start' | 'end';
|
|
1142
|
+
declare const collapseTriggerVariants: (props?: ({
|
|
1143
|
+
size?: "small" | "medium" | "large" | null | undefined;
|
|
1144
|
+
ghost?: boolean | null | undefined;
|
|
1145
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1146
|
+
interface CollapsePanelProps extends React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> {
|
|
1147
|
+
header: React$1.ReactNode;
|
|
1148
|
+
children: React$1.ReactNode;
|
|
1149
|
+
extra?: React$1.ReactNode;
|
|
1150
|
+
expandIcon?: React$1.ReactNode;
|
|
1151
|
+
expandIconPosition?: ExpandIconPosition;
|
|
1152
|
+
size?: 'small' | 'medium' | 'large';
|
|
1153
|
+
ghost?: boolean;
|
|
1154
|
+
disabled?: boolean;
|
|
1155
|
+
className?: string;
|
|
1156
|
+
}
|
|
1157
|
+
declare const Collapse: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>> & {
|
|
1158
|
+
Panel: React$1.ForwardRefExoticComponent<CollapsePanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1159
|
+
};
|
|
1160
|
+
|
|
1161
|
+
interface DatePickerProps {
|
|
1162
|
+
className?: string;
|
|
1163
|
+
variant?: 'outlined' | 'filled' | 'ghost' | null;
|
|
1164
|
+
locale?: Locale;
|
|
1165
|
+
placeholder?: string;
|
|
1166
|
+
value?: Date;
|
|
1167
|
+
onChange?: (date: Date | undefined) => void;
|
|
1168
|
+
format?: string;
|
|
1169
|
+
status?: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare function DatePicker({ className, variant, locale, placeholder, value, onChange, format, status, }: DatePickerProps): React$1.JSX.Element;
|
|
1172
|
+
declare namespace DatePicker {
|
|
1173
|
+
var displayName: string;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, CadastroFacil, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapse, Combobox, CustomDivider, DataTable, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogScroll, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorEmptyDisplay, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Input, Layout, LogoLecom, LogoLecomBrand, ModoTeste, MultiSelect, Notification, Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationIndex, PaginationItem, PaginationLast, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Rpa, SairModoTeste, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Skeleton, Spin, Steps, Switch, TOAST_REMOVE_DELAY, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagInput, Textarea, ToggleGroup, ToggleGroupItem, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Translations, TypeMessageNotification, Typography, Upload, accordionVariants, buttonVariants, collapseTriggerVariants, colors, fonts, initializeI18n, inputVariants, notificationVariants, reducer, tagVariants, textareaVariants, toast, typographyVariants, useFormField, useIsMobile, useNotificationToast, usePagination, useSidebar };
|
|
1177
|
+
export type { BgColor, BuildCellSelect, BuildColumns, BuildHeaderSelect, ButtonProps, CadastroFacilProps, CalloutNotificationProps, ChartConfig, CheckboxProps, CheckedCell, CheckedCellChange, CheckedHeader, CheckedHeaderChange, Color, ColorToken, Column, ColumnRender, ColumnSort, ColumnSortClient, ColumnTitle, ComboboxGroup, ComboboxOption, ComboboxProps, CustomStyles$1 as CustomStyles, DataTableProps, DatePickerProps, DialogContentProps, ErrorEmptyDisplayProps, ExpandIconPosition, File, FillColor, Fonts, Header, HeaderProps, InlineNotificationProps, InputProps, LayoutProps, LogoLecomBrandProps, LogoLecomProps, Meta, ModoTesteProps, NotificationProps, PaginationProps, Row, RpaProps, SideBarProps, SpinProps, StepsProps, SwitchProps, TableProps, TagInputProps, TagProps, TagValue, TextColor, TextareaProps, TimelineStepItem, ToastNotificationProps, ToasterToast, TooltipContentProps, TypographyProps, UploadProps, UsePaginationItem };
|
package/dist/index.js
CHANGED
|
@@ -43,6 +43,15 @@ export { fonts } from './tokens/fonts.js';
|
|
|
43
43
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from './components/Tabs/Tabs.js';
|
|
44
44
|
export { Textarea, textareaVariants } from './components/Textarea/Textarea.js';
|
|
45
45
|
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from './components/Drawer/Drawer.js';
|
|
46
|
+
export { Steps } from './components/Steps/Steps.js';
|
|
47
|
+
export { Combobox } from './components/Combobox/Combobox.js';
|
|
48
|
+
export { TagInput } from './components/TagInput/TagInput.js';
|
|
49
|
+
export { CustomDivider } from './components/CustomDivider/CustomDivider.js';
|
|
50
|
+
export { Collapse, collapseTriggerVariants } from './components/Collapse/Collapse.js';
|
|
51
|
+
export { DatePicker } from './components/DatePicker/DatePicker.js';
|
|
52
|
+
export { ptBR } from 'date-fns/locale/pt-BR';
|
|
53
|
+
export { enUS } from 'date-fns/locale/en-US';
|
|
54
|
+
export { es } from 'date-fns/locale/es';
|
|
46
55
|
export { Bar, BarChart, CartesianGrid, Label, LabelList, XAxis, YAxis } from 'recharts';
|
|
47
56
|
export { z as zod } from 'zod';
|
|
48
57
|
export { zodResolver } from '@hookform/resolvers/zod';
|
package/dist/plugin/extend.js
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
const extend = {
|
|
2
|
-
colors: {
|
|
3
|
-
background: 'hsl(var(--background))',
|
|
4
|
-
foreground: 'hsl(var(--foreground))',
|
|
5
|
-
card: {
|
|
6
|
-
DEFAULT: 'hsl(var(--card))',
|
|
7
|
-
foreground: 'hsl(var(--card-foreground))',
|
|
8
|
-
},
|
|
9
|
-
popover: {
|
|
10
|
-
DEFAULT: 'hsl(var(--popover))',
|
|
11
|
-
foreground: 'hsl(var(--popover-foreground))',
|
|
12
|
-
},
|
|
13
|
-
primary: {
|
|
14
|
-
DEFAULT: 'hsl(var(--primary))',
|
|
15
|
-
foreground: 'hsl(var(--primary-foreground))',
|
|
16
|
-
},
|
|
17
|
-
secondary: {
|
|
18
|
-
DEFAULT: 'hsl(var(--secondary))',
|
|
19
|
-
foreground: 'hsl(var(--secondary-foreground))',
|
|
20
|
-
},
|
|
21
|
-
muted: {
|
|
22
|
-
DEFAULT: 'hsl(var(--muted))',
|
|
23
|
-
foreground: 'hsl(var(--muted-foreground))',
|
|
24
|
-
},
|
|
25
|
-
accent: {
|
|
26
|
-
DEFAULT: 'hsl(var(--accent))',
|
|
27
|
-
foreground: 'hsl(var(--accent-foreground))',
|
|
28
|
-
},
|
|
29
|
-
destructive: {
|
|
30
|
-
DEFAULT: 'hsl(var(--destructive))',
|
|
31
|
-
foreground: 'hsl(var(--destructive-foreground))',
|
|
32
|
-
},
|
|
33
|
-
border: 'hsl(var(--border))',
|
|
34
|
-
input: 'hsl(var(--input))',
|
|
35
|
-
ring: 'hsl(var(--ring))',
|
|
36
|
-
chart: {
|
|
37
|
-
1: 'hsl(var(--chart-1))',
|
|
38
|
-
2: 'hsl(var(--chart-2))',
|
|
39
|
-
3: 'hsl(var(--chart-3))',
|
|
40
|
-
4: 'hsl(var(--chart-4))',
|
|
41
|
-
5: 'hsl(var(--chart-5))',
|
|
42
|
-
6: 'hsl(var(--chart-6))',
|
|
43
|
-
7: 'hsl(var(--chart-7))',
|
|
44
|
-
8: 'hsl(var(--chart-8))',
|
|
45
|
-
},
|
|
46
|
-
sidebar: {
|
|
47
|
-
DEFAULT: 'hsl(var(--sidebar-background))',
|
|
48
|
-
foreground: 'hsl(var(--sidebar-foreground))',
|
|
49
|
-
primary: 'hsl(var(--sidebar-primary))',
|
|
50
|
-
'primary-foreground': 'hsl(var(--sidebar-primary-foreground))',
|
|
51
|
-
accent: 'hsl(var(--sidebar-accent))',
|
|
52
|
-
'accent-foreground': 'hsl(var(--sidebar-accent-foreground))',
|
|
53
|
-
border: 'hsl(var(--sidebar-border))',
|
|
54
|
-
ring: 'hsl(var(--sidebar-ring))',
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
borderRadius: {
|
|
58
|
-
lg: 'var(--radius)',
|
|
59
|
-
md: 'calc(var(--radius) - 2px)',
|
|
60
|
-
sm: 'calc(var(--radius) - 4px)',
|
|
61
|
-
},
|
|
62
|
-
keyframes: {
|
|
63
|
-
'accordion-down': {
|
|
64
|
-
from: { height: '0' },
|
|
65
|
-
to: { height: 'var(--radix-accordion-content-height)' },
|
|
66
|
-
},
|
|
67
|
-
'accordion-up': {
|
|
68
|
-
from: { height: 'var(--radix-accordion-content-height)' },
|
|
69
|
-
to: { height: '0' },
|
|
70
|
-
},
|
|
71
|
-
},
|
|
72
|
-
animation: {
|
|
73
|
-
'accordion-down': 'accordion-down 0.2s ease-out',
|
|
74
|
-
'accordion-up': 'accordion-up 0.2s ease-out',
|
|
75
|
-
},
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
export { extend };
|
|
1
|
+
const extend = {
|
|
2
|
+
colors: {
|
|
3
|
+
background: 'hsl(var(--background))',
|
|
4
|
+
foreground: 'hsl(var(--foreground))',
|
|
5
|
+
card: {
|
|
6
|
+
DEFAULT: 'hsl(var(--card))',
|
|
7
|
+
foreground: 'hsl(var(--card-foreground))',
|
|
8
|
+
},
|
|
9
|
+
popover: {
|
|
10
|
+
DEFAULT: 'hsl(var(--popover))',
|
|
11
|
+
foreground: 'hsl(var(--popover-foreground))',
|
|
12
|
+
},
|
|
13
|
+
primary: {
|
|
14
|
+
DEFAULT: 'hsl(var(--primary))',
|
|
15
|
+
foreground: 'hsl(var(--primary-foreground))',
|
|
16
|
+
},
|
|
17
|
+
secondary: {
|
|
18
|
+
DEFAULT: 'hsl(var(--secondary))',
|
|
19
|
+
foreground: 'hsl(var(--secondary-foreground))',
|
|
20
|
+
},
|
|
21
|
+
muted: {
|
|
22
|
+
DEFAULT: 'hsl(var(--muted))',
|
|
23
|
+
foreground: 'hsl(var(--muted-foreground))',
|
|
24
|
+
},
|
|
25
|
+
accent: {
|
|
26
|
+
DEFAULT: 'hsl(var(--accent))',
|
|
27
|
+
foreground: 'hsl(var(--accent-foreground))',
|
|
28
|
+
},
|
|
29
|
+
destructive: {
|
|
30
|
+
DEFAULT: 'hsl(var(--destructive))',
|
|
31
|
+
foreground: 'hsl(var(--destructive-foreground))',
|
|
32
|
+
},
|
|
33
|
+
border: 'hsl(var(--border))',
|
|
34
|
+
input: 'hsl(var(--input))',
|
|
35
|
+
ring: 'hsl(var(--ring))',
|
|
36
|
+
chart: {
|
|
37
|
+
1: 'hsl(var(--chart-1))',
|
|
38
|
+
2: 'hsl(var(--chart-2))',
|
|
39
|
+
3: 'hsl(var(--chart-3))',
|
|
40
|
+
4: 'hsl(var(--chart-4))',
|
|
41
|
+
5: 'hsl(var(--chart-5))',
|
|
42
|
+
6: 'hsl(var(--chart-6))',
|
|
43
|
+
7: 'hsl(var(--chart-7))',
|
|
44
|
+
8: 'hsl(var(--chart-8))',
|
|
45
|
+
},
|
|
46
|
+
sidebar: {
|
|
47
|
+
DEFAULT: 'hsl(var(--sidebar-background))',
|
|
48
|
+
foreground: 'hsl(var(--sidebar-foreground))',
|
|
49
|
+
primary: 'hsl(var(--sidebar-primary))',
|
|
50
|
+
'primary-foreground': 'hsl(var(--sidebar-primary-foreground))',
|
|
51
|
+
accent: 'hsl(var(--sidebar-accent))',
|
|
52
|
+
'accent-foreground': 'hsl(var(--sidebar-accent-foreground))',
|
|
53
|
+
border: 'hsl(var(--sidebar-border))',
|
|
54
|
+
ring: 'hsl(var(--sidebar-ring))',
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
borderRadius: {
|
|
58
|
+
lg: 'var(--radius)',
|
|
59
|
+
md: 'calc(var(--radius) - 2px)',
|
|
60
|
+
sm: 'calc(var(--radius) - 4px)',
|
|
61
|
+
},
|
|
62
|
+
keyframes: {
|
|
63
|
+
'accordion-down': {
|
|
64
|
+
from: { height: '0' },
|
|
65
|
+
to: { height: 'var(--radix-accordion-content-height)' },
|
|
66
|
+
},
|
|
67
|
+
'accordion-up': {
|
|
68
|
+
from: { height: 'var(--radix-accordion-content-height)' },
|
|
69
|
+
to: { height: '0' },
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
animation: {
|
|
73
|
+
'accordion-down': 'accordion-down 0.2s ease-out',
|
|
74
|
+
'accordion-up': 'accordion-up 0.2s ease-out',
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export { extend };
|