lecom-ui 5.3.99 → 5.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -12,9 +12,9 @@ import { ResponsiveContainer, Legend, LegendProps, Tooltip as Tooltip$1 } from '
12
12
  export { Bar, BarChart, BarProps, CartesianGrid, Label, LabelList, LegendType, XAxis, YAxis } from 'recharts';
13
13
  import * as recharts_types_component_DefaultTooltipContent from 'recharts/types/component/DefaultTooltipContent';
14
14
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
15
+ import { FillColor as FillColor$1, BgColor as BgColor$1 } from '@/tokens/colors';
15
16
  import { Table, Column as Column$1, Row as Row$1, ExpandedState } from '@tanstack/react-table';
16
17
  export { ColumnDef } from '@tanstack/react-table';
17
- import { BgColor as BgColor$1 } from '@/tokens/colors';
18
18
  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';
@@ -200,175 +200,61 @@ declare const ColorPicker: {
200
200
  displayName: string;
201
201
  };
202
202
 
203
- type Transparent = 'transparent';
204
- type Black = 'black';
205
- type White = 'white';
206
- type Blue = 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'blue-950';
207
- type Grey = 'grey-50' | 'grey-100' | 'grey-200' | 'grey-300' | 'grey-400' | 'grey-500' | 'grey-600' | 'grey-700' | 'grey-800' | 'grey-900' | 'grey-950';
208
- type Red = 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'red-950';
209
- type Yellow = 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'yellow-950';
210
- type Orange = 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'orange-950';
211
- type Purple = 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'purple-950';
212
- type Green = 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'green-950';
213
- type Pink = 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900' | 'pink-950';
214
- type Turquoise = 'turquoise-50' | 'turquoise-100' | 'turquoise-200' | 'turquoise-300' | 'turquoise-400' | 'turquoise-500' | 'turquoise-600' | 'turquoise-700' | 'turquoise-800' | 'turquoise-900' | 'turquoise-950';
215
- type ColorToken = Transparent | Black | White | Blue | Grey | Red | Yellow | Orange | Purple | Green | Pink | Turquoise;
216
- type TextColor = `text-${ColorToken}`;
217
- type BgColor = `bg-${ColorToken}`;
218
- type FillColor = `fill-${ColorToken}`;
219
- type Color = 'transparent' | 'black' | 'white' | 'blue' | 'grey' | 'red' | 'yellow' | 'orange' | 'purple' | 'green' | 'pink' | 'turquoise';
220
- declare const colors: {
221
- transparent: string;
222
- current: string;
223
- black: string;
224
- white: string;
225
- blue: {
226
- 50: string;
227
- 100: string;
228
- 200: string;
229
- 300: string;
230
- 400: string;
231
- 500: string;
232
- 600: string;
233
- 700: string;
234
- 800: string;
235
- 900: string;
236
- 950: string;
237
- };
238
- grey: {
239
- 50: string;
240
- 100: string;
241
- 200: string;
242
- 300: string;
243
- 400: string;
244
- 500: string;
245
- 600: string;
246
- 700: string;
247
- 800: string;
248
- 900: string;
249
- 950: string;
250
- };
251
- red: {
252
- 50: string;
253
- 100: string;
254
- 200: string;
255
- 300: string;
256
- 400: string;
257
- 500: string;
258
- 600: string;
259
- 700: string;
260
- 800: string;
261
- 900: string;
262
- 950: string;
263
- };
264
- yellow: {
265
- 50: string;
266
- 100: string;
267
- 200: string;
268
- 300: string;
269
- 400: string;
270
- 500: string;
271
- 600: string;
272
- 700: string;
273
- 800: string;
274
- 900: string;
275
- 950: string;
276
- };
277
- orange: {
278
- 50: string;
279
- 100: string;
280
- 200: string;
281
- 300: string;
282
- 400: string;
283
- 500: string;
284
- 600: string;
285
- 700: string;
286
- 800: string;
287
- 900: string;
288
- 950: string;
289
- };
290
- purple: {
291
- 50: string;
292
- 100: string;
293
- 200: string;
294
- 300: string;
295
- 400: string;
296
- 500: string;
297
- 600: string;
298
- 700: string;
299
- 800: string;
300
- 900: string;
301
- 950: string;
302
- };
303
- green: {
304
- 50: string;
305
- 100: string;
306
- 200: string;
307
- 300: string;
308
- 400: string;
309
- 500: string;
310
- 600: string;
311
- 700: string;
312
- 800: string;
313
- 900: string;
314
- 950: string;
315
- };
316
- pink: {
317
- 50: string;
318
- 100: string;
319
- 200: string;
320
- 300: string;
321
- 400: string;
322
- 500: string;
323
- 600: string;
324
- 700: string;
325
- 800: string;
326
- 900: string;
327
- 950: string;
328
- };
329
- turquoise: {
330
- 50: string;
331
- 100: string;
332
- 200: string;
333
- 300: string;
334
- 400: string;
335
- 500: string;
336
- 600: string;
337
- 700: string;
338
- 800: string;
339
- 900: string;
340
- 950: string;
341
- };
342
- };
203
+ interface LogoLecomProps extends React$1.SVGAttributes<SVGSVGElement> {
204
+ fillColor?: FillColor$1;
205
+ size?: string | number;
206
+ }
207
+ declare const LogoLecom: React$1.ForwardRefExoticComponent<LogoLecomProps & React$1.RefAttributes<SVGSVGElement>>;
208
+
209
+ interface LogoLecomBrandProps extends React$1.SVGAttributes<SVGSVGElement> {
210
+ fillColor?: FillColor$1;
211
+ }
212
+ declare const LogoLecomBrand: React$1.ForwardRefExoticComponent<LogoLecomBrandProps & React$1.RefAttributes<SVGSVGElement>>;
213
+
214
+ interface FooterInfoProps extends React$1.SVGProps<SVGSVGElement> {
215
+ fill?: string;
216
+ width?: string | number;
217
+ height?: string | number;
218
+ viewBox?: string;
219
+ className?: string;
220
+ }
221
+ declare const FooterInfo: React$1.ForwardRefExoticComponent<Omit<FooterInfoProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
222
+
223
+ interface BrandModulesProps extends React__default.SVGProps<SVGSVGElement> {
224
+ fill?: string;
225
+ width?: string | number;
226
+ height?: string | number;
227
+ viewBox?: string;
228
+ className?: string;
229
+ }
230
+ declare const BrandModules: React__default.ForwardRefExoticComponent<Omit<BrandModulesProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
343
231
 
344
232
  interface CadastroFacilProps extends React$1.SVGAttributes<SVGSVGElement> {
345
- fillColor?: FillColor;
233
+ fillColor?: FillColor$1;
346
234
  size?: string | number;
347
235
  }
348
236
  declare const CadastroFacil: React$1.ForwardRefExoticComponent<CadastroFacilProps & React$1.RefAttributes<SVGSVGElement>>;
349
237
 
350
- interface LogoLecomProps extends React$1.SVGAttributes<SVGSVGElement> {
351
- fillColor?: FillColor;
238
+ interface RpaProps extends React$1.SVGAttributes<SVGSVGElement> {
239
+ fillColor?: FillColor$1;
352
240
  size?: string | number;
353
241
  }
354
- declare const LogoLecom: React$1.ForwardRefExoticComponent<LogoLecomProps & React$1.RefAttributes<SVGSVGElement>>;
242
+ declare const Rpa: React$1.ForwardRefExoticComponent<RpaProps & React$1.RefAttributes<SVGSVGElement>>;
355
243
 
356
244
  interface ModoTesteProps extends React$1.SVGAttributes<SVGSVGElement> {
357
- fillColor?: FillColor;
245
+ fillColor?: FillColor$1;
358
246
  size?: string | number;
359
247
  }
360
248
  declare const ModoTeste: React$1.ForwardRefExoticComponent<ModoTesteProps & React$1.RefAttributes<SVGSVGElement>>;
361
249
 
362
- interface RpaProps extends React$1.SVGAttributes<SVGSVGElement> {
363
- fillColor?: FillColor;
364
- size?: string | number;
365
- }
366
- declare const Rpa: React$1.ForwardRefExoticComponent<RpaProps & React$1.RefAttributes<SVGSVGElement>>;
367
-
368
- interface LogoLecomBrandProps extends React$1.SVGAttributes<SVGSVGElement> {
369
- fillColor?: FillColor;
250
+ interface NewUpdateProps extends React$1.SVGProps<SVGSVGElement> {
251
+ fill?: string;
252
+ width?: string | number;
253
+ height?: string | number;
254
+ viewBox?: string;
255
+ className?: string;
370
256
  }
371
- declare const LogoLecomBrand: React$1.ForwardRefExoticComponent<LogoLecomBrandProps & React$1.RefAttributes<SVGSVGElement>>;
257
+ declare const NewUpdate: React$1.ForwardRefExoticComponent<Omit<NewUpdateProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
372
258
 
373
259
  declare const SairModoTeste: ({ color, strokeWidth, width, height, ...props }: React$1.SVGProps<SVGSVGElement>) => React$1.JSX.Element;
374
260
 
@@ -675,6 +561,147 @@ interface HelpMenuProps {
675
561
  items?: HelpMenuItem[];
676
562
  }
677
563
 
564
+ type Transparent = 'transparent';
565
+ type Black = 'black';
566
+ type White = 'white';
567
+ type Blue = 'blue-50' | 'blue-100' | 'blue-200' | 'blue-300' | 'blue-400' | 'blue-500' | 'blue-600' | 'blue-700' | 'blue-800' | 'blue-900' | 'blue-950';
568
+ type Grey = 'grey-50' | 'grey-100' | 'grey-200' | 'grey-300' | 'grey-400' | 'grey-500' | 'grey-600' | 'grey-700' | 'grey-800' | 'grey-900' | 'grey-950';
569
+ type Red = 'red-50' | 'red-100' | 'red-200' | 'red-300' | 'red-400' | 'red-500' | 'red-600' | 'red-700' | 'red-800' | 'red-900' | 'red-950';
570
+ type Yellow = 'yellow-50' | 'yellow-100' | 'yellow-200' | 'yellow-300' | 'yellow-400' | 'yellow-500' | 'yellow-600' | 'yellow-700' | 'yellow-800' | 'yellow-900' | 'yellow-950';
571
+ type Orange = 'orange-50' | 'orange-100' | 'orange-200' | 'orange-300' | 'orange-400' | 'orange-500' | 'orange-600' | 'orange-700' | 'orange-800' | 'orange-900' | 'orange-950';
572
+ type Purple = 'purple-50' | 'purple-100' | 'purple-200' | 'purple-300' | 'purple-400' | 'purple-500' | 'purple-600' | 'purple-700' | 'purple-800' | 'purple-900' | 'purple-950';
573
+ type Green = 'green-50' | 'green-100' | 'green-200' | 'green-300' | 'green-400' | 'green-500' | 'green-600' | 'green-700' | 'green-800' | 'green-900' | 'green-950';
574
+ type Pink = 'pink-50' | 'pink-100' | 'pink-200' | 'pink-300' | 'pink-400' | 'pink-500' | 'pink-600' | 'pink-700' | 'pink-800' | 'pink-900' | 'pink-950';
575
+ type Turquoise = 'turquoise-50' | 'turquoise-100' | 'turquoise-200' | 'turquoise-300' | 'turquoise-400' | 'turquoise-500' | 'turquoise-600' | 'turquoise-700' | 'turquoise-800' | 'turquoise-900' | 'turquoise-950';
576
+ type ColorToken = Transparent | Black | White | Blue | Grey | Red | Yellow | Orange | Purple | Green | Pink | Turquoise;
577
+ type TextColor = `text-${ColorToken}`;
578
+ type BgColor = `bg-${ColorToken}`;
579
+ type FillColor = `fill-${ColorToken}`;
580
+ type Color = 'transparent' | 'black' | 'white' | 'blue' | 'grey' | 'red' | 'yellow' | 'orange' | 'purple' | 'green' | 'pink' | 'turquoise';
581
+ declare const colors: {
582
+ transparent: string;
583
+ current: string;
584
+ black: string;
585
+ white: string;
586
+ blue: {
587
+ 50: string;
588
+ 100: string;
589
+ 200: string;
590
+ 300: string;
591
+ 400: string;
592
+ 500: string;
593
+ 600: string;
594
+ 700: string;
595
+ 800: string;
596
+ 900: string;
597
+ 950: string;
598
+ };
599
+ grey: {
600
+ 50: string;
601
+ 100: string;
602
+ 200: string;
603
+ 300: string;
604
+ 400: string;
605
+ 500: string;
606
+ 600: string;
607
+ 700: string;
608
+ 800: string;
609
+ 900: string;
610
+ 950: string;
611
+ };
612
+ red: {
613
+ 50: string;
614
+ 100: string;
615
+ 200: string;
616
+ 300: string;
617
+ 400: string;
618
+ 500: string;
619
+ 600: string;
620
+ 700: string;
621
+ 800: string;
622
+ 900: string;
623
+ 950: string;
624
+ };
625
+ yellow: {
626
+ 50: string;
627
+ 100: string;
628
+ 200: string;
629
+ 300: string;
630
+ 400: string;
631
+ 500: string;
632
+ 600: string;
633
+ 700: string;
634
+ 800: string;
635
+ 900: string;
636
+ 950: string;
637
+ };
638
+ orange: {
639
+ 50: string;
640
+ 100: string;
641
+ 200: string;
642
+ 300: string;
643
+ 400: string;
644
+ 500: string;
645
+ 600: string;
646
+ 700: string;
647
+ 800: string;
648
+ 900: string;
649
+ 950: string;
650
+ };
651
+ purple: {
652
+ 50: string;
653
+ 100: string;
654
+ 200: string;
655
+ 300: string;
656
+ 400: string;
657
+ 500: string;
658
+ 600: string;
659
+ 700: string;
660
+ 800: string;
661
+ 900: string;
662
+ 950: string;
663
+ };
664
+ green: {
665
+ 50: string;
666
+ 100: string;
667
+ 200: string;
668
+ 300: string;
669
+ 400: string;
670
+ 500: string;
671
+ 600: string;
672
+ 700: string;
673
+ 800: string;
674
+ 900: string;
675
+ 950: string;
676
+ };
677
+ pink: {
678
+ 50: string;
679
+ 100: string;
680
+ 200: string;
681
+ 300: string;
682
+ 400: string;
683
+ 500: string;
684
+ 600: string;
685
+ 700: string;
686
+ 800: string;
687
+ 900: string;
688
+ 950: string;
689
+ };
690
+ turquoise: {
691
+ 50: string;
692
+ 100: string;
693
+ 200: string;
694
+ 300: string;
695
+ 400: string;
696
+ 500: string;
697
+ 600: string;
698
+ 700: string;
699
+ 800: string;
700
+ 900: string;
701
+ 950: string;
702
+ };
703
+ };
704
+
678
705
  interface ModulesMenuItem {
679
706
  containerIconBgColor?: BgColor;
680
707
  icon?: React$1.ReactNode;
@@ -963,7 +990,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
963
990
  declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
964
991
 
965
992
  declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
966
- declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLHeadingElement | HTMLParagraphElement | HTMLSpanElement | HTMLLabelElement | HTMLInputElement | HTMLUListElement | HTMLLIElement | HTMLObjectElement | HTMLAnchorElement | 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 | HTMLOListElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLPictureElement | HTMLPreElement | HTMLProgressElement | HTMLScriptElement | HTMLSelectElement | HTMLSlotElement | HTMLSourceElement | HTMLStyleElement | HTMLTableElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLVideoElement>, "id" | "onResize"> & {
993
+ 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"> & {
967
994
  className?: string;
968
995
  collapsedSize?: number | undefined;
969
996
  collapsible?: boolean | undefined;
@@ -1314,5 +1341,23 @@ interface DateInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
1314
1341
  }
1315
1342
  declare const DateInput: React$1.ForwardRefExoticComponent<DateInputProps & React$1.RefAttributes<HTMLInputElement>>;
1316
1343
 
1317
- 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, ColorPicker, Combobox, CustomDivider, CustomTagInput, MemoizedDataTable as DataTable, DateInput, 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, NumberControl, 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, SyntaxHighlighter, TOAST_REMOVE_DELAY, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagInput, Textarea, ToggleGroup, ToggleGroupItem, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Translations, TypeMessageNotification, Typography, Upload, accordionVariants, buttonVariants, colors, fonts, initializeI18n, inputVariants, notificationVariants, reducer, tagVariants, textareaVariants, toast, typographyVariants, useFormField, useIsMobile, useNotificationToast, usePagination, useSidebar };
1318
- export type { BgColor, BuildCellSelect, BuildColumns, BuildHeaderSelect, ButtonProps, CadastroFacilProps, CalloutNotificationProps, ChartConfig, CheckboxProps, CheckedCell, CheckedCellChange, CheckedHeader, CheckedHeaderChange, Color, ColorToken, Column, ColumnRender, ColumnSort, ColumnSortClient, ColumnTitle, ComboboxFont, ComboboxGroup, ComboboxOption, ComboboxProps, ComboboxRounded, ComboboxSize, ComboboxStatus, CustomStyles$1 as CustomStyles, CustomTagInputProps, CustomTagItem, DataTableProps, DateInputProps, DatePickerProps, DialogContentProps, ErrorEmptyDisplayProps, File, FillColor, Fonts, Header, HeaderProps, InlineNotificationProps, InputProps, LayoutProps, LogoLecomBrandProps, LogoLecomProps, Meta, ModoTesteProps, MultiSelectFont, MultiSelectOption, MultiSelectSize, MultiSelectTreeOption, NotificationProps, PaginationProps, Row, RpaProps, SideBarProps, SpinProps, StepsProps, SwitchProps, TableProps, TagInputProps, TagItem, TagProps, TextColor, TextareaProps, TimelineStepItem, ToastNotificationProps, ToasterToast, TooltipContentProps, TypographyProps, UploadProps, UsePaginationItem };
1344
+ interface IconHandlerProps extends React$1.HTMLAttributes<HTMLElement> {
1345
+ icon: React$1.ComponentType<any> | string;
1346
+ colorType?: 'color' | 'fill';
1347
+ variantsColors?: string;
1348
+ setAttribute?: string;
1349
+ }
1350
+ declare const IconHandler: React$1.ForwardRefExoticComponent<IconHandlerProps & React$1.RefAttributes<HTMLElement>>;
1351
+
1352
+ declare const badgeVariants: (props?: ({
1353
+ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
1354
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1355
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
1356
+ }
1357
+ declare function Badge({ className, variant, ...props }: BadgeProps): React$1.JSX.Element;
1358
+ declare namespace Badge {
1359
+ var displayName: string;
1360
+ }
1361
+
1362
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Badge, BrandModules, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, CadastroFacil, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ColorPicker, Combobox, CustomDivider, CustomTagInput, MemoizedDataTable as DataTable, DateInput, 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, FooterInfo, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, IconHandler, Input, Layout, LogoLecom, LogoLecomBrand, ModoTeste, MultiSelect, NewUpdate, Notification, NumberControl, 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, SyntaxHighlighter, TOAST_REMOVE_DELAY, Tabs, TabsContent, TabsList, TabsTrigger, Tag, TagInput, Textarea, ToggleGroup, ToggleGroupItem, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Translations, TypeMessageNotification, Typography, Upload, accordionVariants, badgeVariants, buttonVariants, colors, fonts, initializeI18n, inputVariants, notificationVariants, reducer, tagVariants, textareaVariants, toast, typographyVariants, useFormField, useIsMobile, useNotificationToast, usePagination, useSidebar };
1363
+ export type { BadgeProps, BgColor, BrandModulesProps, BuildCellSelect, BuildColumns, BuildHeaderSelect, ButtonProps, CadastroFacilProps, CalloutNotificationProps, ChartConfig, CheckboxProps, CheckedCell, CheckedCellChange, CheckedHeader, CheckedHeaderChange, Color, ColorToken, Column, ColumnRender, ColumnSort, ColumnSortClient, ColumnTitle, ComboboxFont, ComboboxGroup, ComboboxOption, ComboboxProps, ComboboxRounded, ComboboxSize, ComboboxStatus, CustomStyles$1 as CustomStyles, CustomTagInputProps, CustomTagItem, DataTableProps, DateInputProps, DatePickerProps, DialogContentProps, ErrorEmptyDisplayProps, File, FillColor, Fonts, FooterInfoProps, Header, HeaderProps, IconHandlerProps, InlineNotificationProps, InputProps, LayoutProps, LogoLecomBrandProps, LogoLecomProps, Meta, ModoTesteProps, MultiSelectFont, MultiSelectOption, MultiSelectSize, MultiSelectTreeOption, NewUpdateProps, NotificationProps, PaginationProps, Row, RpaProps, SideBarProps, SpinProps, StepsProps, SwitchProps, TableProps, TagInputProps, TagItem, TagProps, TextColor, TextareaProps, TimelineStepItem, ToastNotificationProps, ToasterToast, TooltipContentProps, TypographyProps, UploadProps, UsePaginationItem };
package/dist/index.js CHANGED
@@ -5,12 +5,15 @@ export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle }
5
5
  export { ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent } from './components/Chart/Chart.js';
6
6
  export { Checkbox } from './components/Checkbox/Checkbox.js';
7
7
  export { ColorPicker } from './components/ColorPicker/ColorPicker.js';
8
- export { CadastroFacil } from './components/CustomIcon/Icons/CadastroFacil.js';
9
- export { LogoLecom } from './components/CustomIcon/Icons/LogoLecom.js';
10
- export { ModoTeste } from './components/CustomIcon/Icons/ModoTeste.js';
11
- export { Rpa } from './components/CustomIcon/Icons/Rpa.js';
12
- export { LogoLecomBrand } from './components/CustomIcon/Icons/LogoLecomBrand.js';
13
- export { SairModoTeste } from './components/CustomIcon/Icons/SairModoTeste.js';
8
+ export { LogoLecom } from './icons/Brand/LogoLecom.js';
9
+ export { LogoLecomBrand } from './icons/Brand/LogoLecomBrand.js';
10
+ export { FooterInfo } from './icons/Brand/FooterInfo.js';
11
+ export { BrandModules } from './icons/Brand/BrandModules.js';
12
+ export { CadastroFacil } from './icons/Features/CadastroFacil.js';
13
+ export { Rpa } from './icons/Features/Rpa.js';
14
+ export { ModoTeste } from './icons/Features/ModoTeste.js';
15
+ export { NewUpdate } from './icons/UI/NewUpdate.js';
16
+ export { SairModoTeste } from './icons/UI/SairModoTeste.js';
14
17
  export { DataTable } from './components/DataTable/DataTable.js';
15
18
  export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogScroll, DialogTitle, DialogTrigger } from './components/Dialog/Dialog.js';
16
19
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from './components/DropdownMenu/DropdownMenu.js';
@@ -57,6 +60,8 @@ export { es } from 'date-fns/locale/es';
57
60
  export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from './components/Sheet/Sheet.js';
58
61
  export { CustomTagInput } from './components/CustomTagInput/CustomTagInput.js';
59
62
  export { DateInput } from './components/DateInput/DateInput.js';
63
+ export { IconHandler } from './components/IconHandler/IconHandler.js';
64
+ export { Badge, badgeVariants } from './components/Badge/Badge.js';
60
65
  export { Bar, BarChart, CartesianGrid, Label, LabelList, XAxis, YAxis } from 'recharts';
61
66
  export { z as zod } from 'zod';
62
67
  export { zodResolver } from '@hookform/resolvers/zod';
package/dist/lib/utils.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { clsx } from 'clsx';
2
2
  import { twMerge } from 'tailwind-merge';
3
+ import 'tinycolor2';
3
4
 
4
5
  function cn(...inputs) {
5
6
  return twMerge(clsx(inputs));