lecom-ui 5.2.71 → 5.2.73

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.
Files changed (81) hide show
  1. package/dist/components/Combobox/Combobox.js +5 -19
  2. package/dist/components/CustomDivider/CustomDivider.js +18 -36
  3. package/dist/components/DataTable/DataTable.utils.js +1 -5
  4. package/dist/components/DataTable/Table.js +40 -60
  5. package/dist/components/Sheet/Sheet.js +1 -31
  6. package/dist/components/Steps/{StepsTimeline.js → Steps.js} +1 -0
  7. package/dist/components/Switch/Switch.js +20 -5
  8. package/dist/components/TagInput/TagInput.js +55 -58
  9. package/dist/index.d.ts +67 -93
  10. package/dist/index.js +3 -4
  11. package/dist/style.min.css +1 -1
  12. package/package.json +4 -3
  13. package/dist/badge.js +0 -26
  14. package/dist/button-dropdown.js +0 -117
  15. package/dist/button.js +0 -104
  16. package/dist/calendar.js +0 -62
  17. package/dist/card.js +0 -56
  18. package/dist/checkbox.js +0 -55
  19. package/dist/collapse.js +0 -60
  20. package/dist/collapsible.js +0 -7
  21. package/dist/command.js +0 -107
  22. package/dist/components/DataTable/useOptimizedTable.js +0 -75
  23. package/dist/data-table/data-table.js +0 -490
  24. package/dist/date-picker.js +0 -92
  25. package/dist/dialog.js +0 -95
  26. package/dist/dropdown-menu.js +0 -138
  27. package/dist/fonts/Montserrat-Bold.otf +0 -0
  28. package/dist/fonts/Montserrat-Medium.otf +0 -0
  29. package/dist/fonts/Montserrat-Regular.otf +0 -0
  30. package/dist/fonts/Roboto-Bold.otf +0 -0
  31. package/dist/fonts/Roboto-Light.otf +0 -0
  32. package/dist/fonts/Roboto-Medium.otf +0 -0
  33. package/dist/fonts/Roboto-Regular.otf +0 -0
  34. package/dist/form.js +0 -102
  35. package/dist/header.js +0 -90
  36. package/dist/hook/useDebounce.js +0 -16
  37. package/dist/icon-handler.js +0 -72
  38. package/dist/icons/brandModules.js +0 -27
  39. package/dist/icons/companyLogo.js +0 -61
  40. package/dist/icons/createUseAuxiliary.js +0 -107
  41. package/dist/icons/footerInfo.js +0 -25
  42. package/dist/icons/logo_lecom.svg.js +0 -3
  43. package/dist/icons/newUpdate.js +0 -23
  44. package/dist/icons/robertyRPA.js +0 -30
  45. package/dist/ilustrations/access_denied.js +0 -252
  46. package/dist/ilustrations/page_not_found.js +0 -188
  47. package/dist/input.js +0 -42
  48. package/dist/label.js +0 -20
  49. package/dist/modal.js +0 -27
  50. package/dist/pagination.js +0 -474
  51. package/dist/plugin/extend.ts +0 -78
  52. package/dist/plugin/fontFaces.ts +0 -172
  53. package/dist/plugin/general.ts +0 -12
  54. package/dist/plugin/pluginDev.js +0 -5
  55. package/dist/plugin/pluginNext.js +0 -5
  56. package/dist/plugin/pluginVite.js +0 -5
  57. package/dist/plugin/template.ts +0 -31
  58. package/dist/plugin/typographies.ts +0 -152
  59. package/dist/plugin/varsTheme.ts +0 -79
  60. package/dist/plugin.cjs +0 -298
  61. package/dist/popover.js +0 -24
  62. package/dist/radio-group.js +0 -74
  63. package/dist/range-picker.js +0 -99
  64. package/dist/scroll-area.js +0 -37
  65. package/dist/search-bar.js +0 -151
  66. package/dist/select.js +0 -156
  67. package/dist/separator.js +0 -24
  68. package/dist/sheet.js +0 -106
  69. package/dist/sidebar.js +0 -188
  70. package/dist/skeleton.js +0 -17
  71. package/dist/slider.js +0 -23
  72. package/dist/status-screen.js +0 -71
  73. package/dist/switch.js +0 -27
  74. package/dist/table.js +0 -83
  75. package/dist/tabs.js +0 -44
  76. package/dist/tag.js +0 -33
  77. package/dist/textarea.js +0 -22
  78. package/dist/toast.js +0 -105
  79. package/dist/toaster.js +0 -23
  80. package/dist/tooltip.js +0 -133
  81. package/dist/use-toast.js +0 -121
package/dist/index.d.ts CHANGED
@@ -350,26 +350,6 @@ declare const LogoLecomBrand: React$1.ForwardRefExoticComponent<LogoLecomBrandPr
350
350
 
351
351
  declare const SairModoTeste: ({ color, strokeWidth, width, height, ...props }: React$1.SVGProps<SVGSVGElement>) => React$1.JSX.Element;
352
352
 
353
- type ExpandIconPosition = 'start' | 'end';
354
- declare const collapseTriggerVariants: (props?: ({
355
- size?: "small" | "medium" | "large" | null | undefined;
356
- ghost?: boolean | null | undefined;
357
- } & class_variance_authority_types.ClassProp) | undefined) => string;
358
- interface CollapsePanelProps extends React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> {
359
- header: React$1.ReactNode;
360
- children: React$1.ReactNode;
361
- extra?: React$1.ReactNode;
362
- expandIcon?: React$1.ReactNode;
363
- expandIconPosition?: ExpandIconPosition;
364
- size?: 'small' | 'medium' | 'large';
365
- ghost?: boolean;
366
- disabled?: boolean;
367
- className?: string;
368
- }
369
- declare const Collapse: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>> & {
370
- Panel: React$1.ForwardRefExoticComponent<CollapsePanelProps & React$1.RefAttributes<HTMLDivElement>>;
371
- };
372
-
373
353
  type UsePaginationProps = {
374
354
  count?: number;
375
355
  defaultPage?: number;
@@ -488,11 +468,6 @@ interface Column<TData, TValue> {
488
468
  truncate?: boolean;
489
469
  headerClassName?: string;
490
470
  headerStyle?: React.CSSProperties;
491
- cellClassName?: string;
492
- cellStyle?: React.CSSProperties;
493
- cellProps?: React.TdHTMLAttributes<HTMLTableCellElement>;
494
- headerProps?: React.ThHTMLAttributes<HTMLTableHeaderCellElement>;
495
- align?: 'left' | 'center' | 'right';
496
471
  customHeaderRender?: ({ table, column, }: ColumnSort<TData, TValue>) => React.ReactNode;
497
472
  render?: (({ value, row }: ColumnRender<TData, TValue>) => React.ReactNode) | React.ReactNode;
498
473
  onSort?: ({ table, column }: ColumnSort<TData, TValue>) => void;
@@ -955,22 +930,9 @@ interface SpinProps extends React$1.SVGAttributes<SVGSVGElement> {
955
930
  }
956
931
  declare const Spin: React$1.ForwardRefExoticComponent<SpinProps & React$1.RefAttributes<SVGSVGElement>>;
957
932
 
958
- type TimelineStepItem = {
959
- title: React$1.ReactNode;
960
- description?: React$1.ReactNode;
961
- status?: 'completed' | 'current' | 'pending' | 'error';
962
- };
963
- interface StepsProps {
964
- items: TimelineStepItem[];
965
- current?: number;
966
- className?: string;
967
- dotSize?: 'small' | 'medium' | 'large';
968
- color?: string;
969
- }
970
- declare const Steps: React$1.FC<StepsProps>;
971
-
972
933
  interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {
973
934
  loading?: boolean;
935
+ className?: string;
974
936
  }
975
937
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
976
938
 
@@ -1094,89 +1056,101 @@ declare const DrawerFooter: {
1094
1056
  declare const DrawerTitle: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Title>>>;
1095
1057
  declare const DrawerDescription: React$1.ForwardRefExoticComponent<React$1.ComponentPropsWithoutRef<typeof Drawer$1.Description> & React$1.RefAttributes<React$1.ElementRef<typeof Drawer$1.Description>>>;
1096
1058
 
1097
- type TagItem = {
1098
- label: string;
1099
- value: string | number;
1059
+ type TimelineStepItem = {
1060
+ title: React$1.ReactNode;
1061
+ description?: React$1.ReactNode;
1062
+ status?: 'completed' | 'current' | 'pending' | 'error';
1100
1063
  };
1101
- interface TagInputProps extends React$1.HTMLAttributes<HTMLDivElement> {
1102
- value: TagItem[];
1103
- onRemove: (value: string | number) => void;
1104
- placeholder?: string;
1105
- disabled?: boolean;
1106
- readOnly?: boolean;
1107
- size?: 'small' | 'default' | 'large';
1108
- variant?: 'default' | 'filled' | 'borderless';
1109
- radius?: 'small' | 'default' | 'large' | 'full';
1110
- }
1111
- declare const TagInput: React$1.FC<TagInputProps>;
1112
-
1113
- declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
1114
- declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1115
- declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
1116
- declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1117
- declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1118
- declare const sheetVariants: (props?: ({
1119
- side?: "top" | "bottom" | "left" | "right" | null | undefined;
1120
- } & class_variance_authority_types.ClassProp) | undefined) => string;
1121
- interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
1064
+ interface StepsProps {
1065
+ items: TimelineStepItem[];
1066
+ current?: number;
1067
+ className?: string;
1068
+ dotSize?: 'small' | 'medium' | 'large';
1069
+ color?: string;
1122
1070
  }
1123
- declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
1124
- declare const SheetHeader: {
1125
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
1126
- displayName: string;
1127
- };
1128
- declare const SheetFooter: {
1129
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
1130
- displayName: string;
1131
- };
1132
- declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
1133
- declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
1071
+ declare const Steps: React$1.FC<StepsProps>;
1134
1072
 
1135
- type ComboboxOption = {
1073
+ interface ComboboxOption {
1136
1074
  label: string;
1137
1075
  value: string;
1138
1076
  disabled?: boolean;
1139
- };
1140
- type ComboboxGroup = {
1077
+ }
1078
+ interface ComboboxGroup {
1141
1079
  label: string;
1142
1080
  options: ComboboxOption[];
1143
- };
1081
+ }
1144
1082
  type ComboboxProps = {
1145
1083
  options: (ComboboxOption | ComboboxGroup)[];
1146
1084
  value: string | null;
1147
1085
  onChange: (value: string | null) => void;
1148
1086
  placeholder?: string;
1149
1087
  disabled?: boolean;
1150
- notFoundContent?: React$1.ReactNode;
1088
+ notFoundContent?: string;
1151
1089
  status?: 'default' | 'error';
1152
1090
  searchTerm?: string;
1153
- className?: string;
1154
1091
  triggerClassName?: string;
1155
1092
  contentClassName?: string;
1156
1093
  };
1157
1094
  declare function Combobox({ options, value, onChange, placeholder, disabled, notFoundContent, status, searchTerm, triggerClassName, contentClassName, }: ComboboxProps): React$1.JSX.Element;
1158
1095
 
1159
- type Orientation = 'left' | 'center' | 'right';
1160
- interface CustomDividerProps<T extends FieldValues> {
1161
- name?: FieldPath<T>;
1162
- control?: Control<T>;
1096
+ interface TagValue {
1097
+ label: string;
1098
+ value: string;
1099
+ }
1100
+ interface TagInputProps extends React$1.HTMLAttributes<HTMLDivElement> {
1101
+ value: TagValue[];
1102
+ onRemove: (value: string) => void;
1103
+ placeholder?: string;
1104
+ disabled?: boolean;
1105
+ readOnly?: boolean;
1106
+ className?: string;
1107
+ size?: 'small' | 'default' | 'large';
1108
+ variant?: 'default' | 'filled' | 'borderless';
1109
+ radius?: 'default' | 'full';
1110
+ }
1111
+ declare function TagInput({ value, onRemove, placeholder, disabled, readOnly, className, size, variant, radius, ...props }: TagInputProps): React$1.JSX.Element;
1112
+
1113
+ interface CustomDividerProps {
1114
+ name?: string;
1115
+ control?: Control<any>;
1163
1116
  isActive?: boolean;
1164
1117
  isGroupDivider?: boolean;
1165
- orientation?: Orientation;
1118
+ orientation?: 'left' | 'center' | 'right';
1166
1119
  dashed?: boolean;
1167
1120
  plain?: boolean;
1168
1121
  lineOnly?: boolean;
1169
- optionLabels?: [React$1.ReactNode, React$1.ReactNode];
1170
- ButtonComponent?: React$1.ComponentType<ButtonProps & {
1171
- onClick(): void;
1172
- }>;
1173
- buttonSize?: ButtonProps['size'];
1122
+ optionLabels?: [string, string];
1123
+ ButtonComponent?: typeof Button;
1124
+ buttonSize?: 'small' | 'medium' | 'large' | 'extraLarge' | null | undefined;
1174
1125
  buttonClassName?: string;
1175
1126
  className?: string;
1176
1127
  style?: React$1.CSSProperties;
1177
1128
  children?: React$1.ReactNode;
1178
1129
  }
1179
- declare function CustomDivider<T extends FieldValues>({ name, control, isActive, isGroupDivider, orientation, dashed, plain, lineOnly, optionLabels, ButtonComponent, buttonSize, buttonClassName, className, style, children, }: CustomDividerProps<T>): React$1.JSX.Element;
1130
+ declare function CustomDivider({ name, control, isActive, isGroupDivider, orientation, dashed, plain, lineOnly, optionLabels, ButtonComponent, buttonSize, buttonClassName, className, style, children, }: CustomDividerProps): React$1.JSX.Element;
1131
+ declare namespace CustomDivider {
1132
+ var displayName: string;
1133
+ }
1134
+
1135
+ type ExpandIconPosition = 'start' | 'end';
1136
+ declare const collapseTriggerVariants: (props?: ({
1137
+ size?: "small" | "medium" | "large" | null | undefined;
1138
+ ghost?: boolean | null | undefined;
1139
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1140
+ interface CollapsePanelProps extends React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> {
1141
+ header: React$1.ReactNode;
1142
+ children: React$1.ReactNode;
1143
+ extra?: React$1.ReactNode;
1144
+ expandIcon?: React$1.ReactNode;
1145
+ expandIconPosition?: ExpandIconPosition;
1146
+ size?: 'small' | 'medium' | 'large';
1147
+ ghost?: boolean;
1148
+ disabled?: boolean;
1149
+ className?: string;
1150
+ }
1151
+ declare const Collapse: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>> & {
1152
+ Panel: React$1.ForwardRefExoticComponent<CollapsePanelProps & React$1.RefAttributes<HTMLDivElement>>;
1153
+ };
1180
1154
 
1181
- 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, 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, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, 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 };
1182
- export type { BgColor, BuildCellSelect, BuildColumns, BuildHeaderSelect, ButtonProps, CadastroFacilProps, CalloutNotificationProps, ChartConfig, CheckboxProps, CheckedCell, CheckedCellChange, CheckedHeader, CheckedHeaderChange, Color, ColorToken, Column, ColumnRender, ColumnSort, ColumnSortClient, ColumnTitle, ComboboxGroup, ComboboxOption, CustomStyles$1 as CustomStyles, DataTableProps, DialogContentProps, ErrorEmptyDisplayProps, ExpandIconPosition, File, FillColor, Fonts, Header, HeaderProps, InlineNotificationProps, InputProps, LayoutProps, LogoLecomBrandProps, LogoLecomProps, Meta, ModoTesteProps, NotificationProps, PaginationProps, Row, RpaProps, SideBarProps, SpinProps, StepsProps, TableProps, TagItem, TagProps, TextColor, TextareaProps, TimelineStepItem, ToastNotificationProps, ToasterToast, TooltipContentProps, TypographyProps, UploadProps, UsePaginationItem };
1155
+ 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, 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 };
1156
+ 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, 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
@@ -10,7 +10,6 @@ export { ModoTeste } from './components/CustomIcon/Icons/ModoTeste.js';
10
10
  export { Rpa } from './components/CustomIcon/Icons/Rpa.js';
11
11
  export { LogoLecomBrand } from './components/CustomIcon/Icons/LogoLecomBrand.js';
12
12
  export { SairModoTeste } from './components/CustomIcon/Icons/SairModoTeste.js';
13
- export { Collapse, collapseTriggerVariants } from './components/Collapse/Collapse.js';
14
13
  export { DataTable } from './components/DataTable/DataTable.js';
15
14
  export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogScroll, DialogTitle, DialogTrigger } from './components/Dialog/Dialog.js';
16
15
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from './components/DropdownMenu/DropdownMenu.js';
@@ -30,7 +29,6 @@ export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScro
30
29
  export { useSidebar } from './components/Sidebar/Sidebar.js';
31
30
  export { Skeleton } from './components/Skeleton/Skeleton.js';
32
31
  export { Spin } from './components/Spin/Spin.js';
33
- export { Steps } from './components/Steps/StepsTimeline.js';
34
32
  export { Switch } from './components/Switch/Switch.js';
35
33
  export { Tag, tagVariants } from './components/Tag/Tag.js';
36
34
  export { ToggleGroup, ToggleGroupItem } from './components/ToggleGroup/ToggleGroup.js';
@@ -45,10 +43,11 @@ export { fonts } from './tokens/fonts.js';
45
43
  export { Tabs, TabsContent, TabsList, TabsTrigger } from './components/Tabs/Tabs.js';
46
44
  export { Textarea, textareaVariants } from './components/Textarea/Textarea.js';
47
45
  export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from './components/Drawer/Drawer.js';
48
- export { TagInput } from './components/TagInput/TagInput.js';
49
- export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from './components/Sheet/Sheet.js';
46
+ export { Steps } from './components/Steps/Steps.js';
50
47
  export { Combobox } from './components/Combobox/Combobox.js';
48
+ export { TagInput } from './components/TagInput/TagInput.js';
51
49
  export { CustomDivider } from './components/CustomDivider/CustomDivider.js';
50
+ export { Collapse, collapseTriggerVariants } from './components/Collapse/Collapse.js';
52
51
  export { Bar, BarChart, CartesianGrid, Label, LabelList, XAxis, YAxis } from 'recharts';
53
52
  export { z as zod } from 'zod';
54
53
  export { zodResolver } from '@hookform/resolvers/zod';