eai-frontend-components 2.0.4
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/LICENSE +21 -0
- package/README.md +299 -0
- package/dist/components/accordion.d.ts +8 -0
- package/dist/components/accordion.d.ts.map +1 -0
- package/dist/components/accordion.js +13 -0
- package/dist/components/alert-dialog.d.ts +25 -0
- package/dist/components/alert-dialog.d.ts.map +1 -0
- package/dist/components/alert-dialog.js +27 -0
- package/dist/components/alert.d.ts +9 -0
- package/dist/components/alert.d.ts.map +1 -0
- package/dist/components/alert.js +22 -0
- package/dist/components/avatar.d.ts +7 -0
- package/dist/components/avatar.d.ts.map +1 -0
- package/dist/components/avatar.js +11 -0
- package/dist/components/badge.d.ts +10 -0
- package/dist/components/badge.d.ts.map +1 -0
- package/dist/components/badge.js +26 -0
- package/dist/components/breadcrumb.d.ts +20 -0
- package/dist/components/breadcrumb.d.ts.map +1 -0
- package/dist/components/breadcrumb.js +23 -0
- package/dist/components/button.d.ts +12 -0
- package/dist/components/button.d.ts.map +1 -0
- package/dist/components/button.js +33 -0
- package/dist/components/calendar.d.ts +9 -0
- package/dist/components/calendar.d.ts.map +1 -0
- package/dist/components/calendar.js +70 -0
- package/dist/components/card.d.ts +9 -0
- package/dist/components/card.d.ts.map +1 -0
- package/dist/components/card.js +16 -0
- package/dist/components/carousel.d.ts +19 -0
- package/dist/components/carousel.d.ts.map +1 -0
- package/dist/components/carousel.js +98 -0
- package/dist/components/chart.d.ts +63 -0
- package/dist/components/chart.d.ts.map +1 -0
- package/dist/components/chart.js +130 -0
- package/dist/components/checkbox.d.ts +5 -0
- package/dist/components/checkbox.d.ts.map +1 -0
- package/dist/components/checkbox.js +8 -0
- package/dist/components/collapsible.d.ts +6 -0
- package/dist/components/collapsible.d.ts.map +1 -0
- package/dist/components/collapsible.js +5 -0
- package/dist/components/command.d.ts +81 -0
- package/dist/components/command.d.ts.map +1 -0
- package/dist/components/command.js +28 -0
- package/dist/components/context-menu.d.ts +28 -0
- package/dist/components/context-menu.d.ts.map +1 -0
- package/dist/components/context-menu.js +33 -0
- package/dist/components/custom/date-picker.d.ts +12 -0
- package/dist/components/custom/date-picker.d.ts.map +1 -0
- package/dist/components/custom/date-picker.js +35 -0
- package/dist/components/custom/form/checkbox.d.ts +13 -0
- package/dist/components/custom/form/checkbox.d.ts.map +1 -0
- package/dist/components/custom/form/checkbox.js +15 -0
- package/dist/components/custom/form/color.d.ts +15 -0
- package/dist/components/custom/form/color.d.ts.map +1 -0
- package/dist/components/custom/form/color.js +40 -0
- package/dist/components/custom/form/combobox.d.ts +37 -0
- package/dist/components/custom/form/combobox.d.ts.map +1 -0
- package/dist/components/custom/form/combobox.js +82 -0
- package/dist/components/custom/form/cpf-cnpj.d.ts +16 -0
- package/dist/components/custom/form/cpf-cnpj.d.ts.map +1 -0
- package/dist/components/custom/form/cpf-cnpj.js +32 -0
- package/dist/components/custom/form/currency.d.ts +14 -0
- package/dist/components/custom/form/currency.d.ts.map +1 -0
- package/dist/components/custom/form/currency.js +15 -0
- package/dist/components/custom/form/date-range.d.ts +16 -0
- package/dist/components/custom/form/date-range.d.ts.map +1 -0
- package/dist/components/custom/form/date-range.js +24 -0
- package/dist/components/custom/form/date.d.ts +16 -0
- package/dist/components/custom/form/date.d.ts.map +1 -0
- package/dist/components/custom/form/date.js +35 -0
- package/dist/components/custom/form/decimal.d.ts +14 -0
- package/dist/components/custom/form/decimal.d.ts.map +1 -0
- package/dist/components/custom/form/decimal.js +15 -0
- package/dist/components/custom/form/file.d.ts +15 -0
- package/dist/components/custom/form/file.d.ts.map +1 -0
- package/dist/components/custom/form/file.js +18 -0
- package/dist/components/custom/form/form-help-text.d.ts +3 -0
- package/dist/components/custom/form/form-help-text.d.ts.map +1 -0
- package/dist/components/custom/form/form-help-text.js +7 -0
- package/dist/components/custom/form/form-label.d.ts +4 -0
- package/dist/components/custom/form/form-label.d.ts.map +1 -0
- package/dist/components/custom/form/form-label.js +9 -0
- package/dist/components/custom/form/form-message.d.ts +3 -0
- package/dist/components/custom/form/form-message.d.ts.map +1 -0
- package/dist/components/custom/form/form-message.js +5 -0
- package/dist/components/custom/form/ghost.d.ts +8 -0
- package/dist/components/custom/form/ghost.d.ts.map +1 -0
- package/dist/components/custom/form/ghost.js +8 -0
- package/dist/components/custom/form/input.d.ts +18 -0
- package/dist/components/custom/form/input.d.ts.map +1 -0
- package/dist/components/custom/form/input.js +14 -0
- package/dist/components/custom/form/mask.d.ts +19 -0
- package/dist/components/custom/form/mask.d.ts.map +1 -0
- package/dist/components/custom/form/mask.js +19 -0
- package/dist/components/custom/form/multi-select-old.d.ts +19 -0
- package/dist/components/custom/form/multi-select-old.d.ts.map +1 -0
- package/dist/components/custom/form/multi-select-old.js +30 -0
- package/dist/components/custom/form/multi-select.d.ts +26 -0
- package/dist/components/custom/form/multi-select.d.ts.map +1 -0
- package/dist/components/custom/form/multi-select.js +66 -0
- package/dist/components/custom/form/password.d.ts +16 -0
- package/dist/components/custom/form/password.d.ts.map +1 -0
- package/dist/components/custom/form/password.js +14 -0
- package/dist/components/custom/form/percent.d.ts +14 -0
- package/dist/components/custom/form/percent.d.ts.map +1 -0
- package/dist/components/custom/form/percent.js +15 -0
- package/dist/components/custom/form/phone.d.ts +16 -0
- package/dist/components/custom/form/phone.d.ts.map +1 -0
- package/dist/components/custom/form/phone.js +23 -0
- package/dist/components/custom/form/radio-group.d.ts +23 -0
- package/dist/components/custom/form/radio-group.d.ts.map +1 -0
- package/dist/components/custom/form/radio-group.js +15 -0
- package/dist/components/custom/form/select.d.ts +20 -0
- package/dist/components/custom/form/select.d.ts.map +1 -0
- package/dist/components/custom/form/select.js +12 -0
- package/dist/components/custom/form/step-new-form.d.ts +10 -0
- package/dist/components/custom/form/step-new-form.d.ts.map +1 -0
- package/dist/components/custom/form/step-new-form.js +13 -0
- package/dist/components/custom/form/switch.d.ts +13 -0
- package/dist/components/custom/form/switch.d.ts.map +1 -0
- package/dist/components/custom/form/switch.js +16 -0
- package/dist/components/custom/form/text.d.ts +18 -0
- package/dist/components/custom/form/text.d.ts.map +1 -0
- package/dist/components/custom/form/text.js +14 -0
- package/dist/components/custom/form/textarea.d.ts +16 -0
- package/dist/components/custom/form/textarea.d.ts.map +1 -0
- package/dist/components/custom/form/textarea.js +19 -0
- package/dist/components/custom/form/utils.d.ts +18 -0
- package/dist/components/custom/form/utils.d.ts.map +1 -0
- package/dist/components/custom/form/utils.js +88 -0
- package/dist/components/custom/header.d.ts +3 -0
- package/dist/components/custom/header.d.ts.map +1 -0
- package/dist/components/custom/header.js +94 -0
- package/dist/components/custom/label.d.ts +13 -0
- package/dist/components/custom/label.d.ts.map +1 -0
- package/dist/components/custom/label.js +20 -0
- package/dist/components/custom/not-found.d.ts +3 -0
- package/dist/components/custom/not-found.d.ts.map +1 -0
- package/dist/components/custom/not-found.js +9 -0
- package/dist/components/custom/sidebar/app-sidebar.d.ts +5 -0
- package/dist/components/custom/sidebar/app-sidebar.d.ts.map +1 -0
- package/dist/components/custom/sidebar/app-sidebar.js +26 -0
- package/dist/components/custom/sidebar/module-switcher.d.ts +3 -0
- package/dist/components/custom/sidebar/module-switcher.d.ts.map +1 -0
- package/dist/components/custom/sidebar/module-switcher.js +55 -0
- package/dist/components/custom/sidebar/nav-footer.d.ts +3 -0
- package/dist/components/custom/sidebar/nav-footer.d.ts.map +1 -0
- package/dist/components/custom/sidebar/nav-footer.js +17 -0
- package/dist/components/custom/sidebar/nav-main.d.ts +3 -0
- package/dist/components/custom/sidebar/nav-main.d.ts.map +1 -0
- package/dist/components/custom/sidebar/nav-main.js +32 -0
- package/dist/components/custom/sidebar/nav-submenu-collapsible.d.ts +9 -0
- package/dist/components/custom/sidebar/nav-submenu-collapsible.d.ts.map +1 -0
- package/dist/components/custom/sidebar/nav-submenu-collapsible.js +21 -0
- package/dist/components/custom/sidebar/nav-submenu-dropdown.d.ts +10 -0
- package/dist/components/custom/sidebar/nav-submenu-dropdown.d.ts.map +1 -0
- package/dist/components/custom/sidebar/nav-submenu-dropdown.js +13 -0
- package/dist/components/custom/sidebar/nav-user.d.ts +3 -0
- package/dist/components/custom/sidebar/nav-user.d.ts.map +1 -0
- package/dist/components/custom/sidebar/nav-user.js +51 -0
- package/dist/components/custom/sidebar/sidebar-button.d.ts +9 -0
- package/dist/components/custom/sidebar/sidebar-button.d.ts.map +1 -0
- package/dist/components/custom/sidebar/sidebar-button.js +7 -0
- package/dist/components/custom/sidebar/sidebar-item-two-lines.d.ts +12 -0
- package/dist/components/custom/sidebar/sidebar-item-two-lines.d.ts.map +1 -0
- package/dist/components/custom/sidebar/sidebar-item-two-lines.js +5 -0
- package/dist/components/custom/sidebar/sidebar-item.d.ts +9 -0
- package/dist/components/custom/sidebar/sidebar-item.d.ts.map +1 -0
- package/dist/components/custom/sidebar/sidebar-item.js +7 -0
- package/dist/components/custom/sidebar/types/sidebar.d.ts +29 -0
- package/dist/components/custom/sidebar/types/sidebar.d.ts.map +1 -0
- package/dist/components/custom/sidebar/types/sidebar.js +5 -0
- package/dist/components/custom/table/data-table-export.d.ts +8 -0
- package/dist/components/custom/table/data-table-export.d.ts.map +1 -0
- package/dist/components/custom/table/data-table-export.js +65 -0
- package/dist/components/custom/table/data-table-footer.d.ts +25 -0
- package/dist/components/custom/table/data-table-footer.d.ts.map +1 -0
- package/dist/components/custom/table/data-table-footer.js +39 -0
- package/dist/components/custom/table/data-table-header.d.ts +9 -0
- package/dist/components/custom/table/data-table-header.d.ts.map +1 -0
- package/dist/components/custom/table/data-table-header.js +11 -0
- package/dist/components/custom/table/data-table-rows.d.ts +13 -0
- package/dist/components/custom/table/data-table-rows.d.ts.map +1 -0
- package/dist/components/custom/table/data-table-rows.js +25 -0
- package/dist/components/custom/table/data-table.d.ts +35 -0
- package/dist/components/custom/table/data-table.d.ts.map +1 -0
- package/dist/components/custom/table/data-table.js +99 -0
- package/dist/components/custom/table/types/data-table.d.ts +29 -0
- package/dist/components/custom/table/types/data-table.d.ts.map +1 -0
- package/dist/components/custom/table/types/data-table.js +1 -0
- package/dist/components/custom/theme-provider.d.ts +24 -0
- package/dist/components/custom/theme-provider.d.ts.map +1 -0
- package/dist/components/custom/theme-provider.js +79 -0
- package/dist/components/dateRangePicker.d.ts +3 -0
- package/dist/components/dateRangePicker.d.ts.map +1 -0
- package/dist/components/dateRangePicker.js +15 -0
- package/dist/components/dialog.d.ts +23 -0
- package/dist/components/dialog.d.ts.map +1 -0
- package/dist/components/dialog.js +23 -0
- package/dist/components/drawer.d.ts +23 -0
- package/dist/components/drawer.d.ts.map +1 -0
- package/dist/components/drawer.js +22 -0
- package/dist/components/dropdown-menu.d.ts +28 -0
- package/dist/components/dropdown-menu.d.ts.map +1 -0
- package/dist/components/dropdown-menu.js +32 -0
- package/dist/components/form.d.ts +24 -0
- package/dist/components/form.d.ts.map +1 -0
- package/dist/components/form.js +60 -0
- package/dist/components/hover-card.d.ts +7 -0
- package/dist/components/hover-card.d.ts.map +1 -0
- package/dist/components/hover-card.js +9 -0
- package/dist/components/input.d.ts +24 -0
- package/dist/components/input.d.ts.map +1 -0
- package/dist/components/input.js +71 -0
- package/dist/components/label.d.ts +6 -0
- package/dist/components/label.d.ts.map +1 -0
- package/dist/components/label.js +9 -0
- package/dist/components/masks.d.ts +17 -0
- package/dist/components/masks.d.ts.map +1 -0
- package/dist/components/masks.js +25 -0
- package/dist/components/pagination.d.ts +30 -0
- package/dist/components/pagination.d.ts.map +1 -0
- package/dist/components/pagination.js +23 -0
- package/dist/components/popover.d.ts +7 -0
- package/dist/components/popover.d.ts.map +1 -0
- package/dist/components/popover.js +11 -0
- package/dist/components/progress.d.ts +5 -0
- package/dist/components/progress.d.ts.map +1 -0
- package/dist/components/progress.js +7 -0
- package/dist/components/radio-group.d.ts +6 -0
- package/dist/components/radio-group.d.ts.map +1 -0
- package/dist/components/radio-group.js +14 -0
- package/dist/components/scroll-area.d.ts +6 -0
- package/dist/components/scroll-area.d.ts.map +1 -0
- package/dist/components/scroll-area.js +11 -0
- package/dist/components/select.d.ts +14 -0
- package/dist/components/select.d.ts.map +1 -0
- package/dist/components/select.js +24 -0
- package/dist/components/separator.d.ts +5 -0
- package/dist/components/separator.d.ts.map +1 -0
- package/dist/components/separator.js +7 -0
- package/dist/components/sheet.d.ts +26 -0
- package/dist/components/sheet.d.ts.map +1 -0
- package/dist/components/sheet.js +37 -0
- package/dist/components/sidebar.d.ts +67 -0
- package/dist/components/sidebar.d.ts.map +1 -0
- package/dist/components/sidebar.js +221 -0
- package/dist/components/skeleton.d.ts +3 -0
- package/dist/components/skeleton.d.ts.map +1 -0
- package/dist/components/skeleton.js +6 -0
- package/dist/components/slider.d.ts +5 -0
- package/dist/components/slider.d.ts.map +1 -0
- package/dist/components/slider.js +7 -0
- package/dist/components/switch.d.ts +5 -0
- package/dist/components/switch.d.ts.map +1 -0
- package/dist/components/switch.js +7 -0
- package/dist/components/table.d.ts +11 -0
- package/dist/components/table.d.ts.map +1 -0
- package/dist/components/table.js +20 -0
- package/dist/components/tabs.d.ts +8 -0
- package/dist/components/tabs.d.ts.map +1 -0
- package/dist/components/tabs.js +12 -0
- package/dist/components/textarea.d.ts +4 -0
- package/dist/components/textarea.d.ts.map +1 -0
- package/dist/components/textarea.js +14 -0
- package/dist/components/toast.d.ts +16 -0
- package/dist/components/toast.d.ts.map +1 -0
- package/dist/components/toast.js +34 -0
- package/dist/components/toaster.d.ts +2 -0
- package/dist/components/toaster.d.ts.map +1 -0
- package/dist/components/toaster.js +21 -0
- package/dist/components/tooltip.d.ts +8 -0
- package/dist/components/tooltip.d.ts.map +1 -0
- package/dist/components/tooltip.js +10 -0
- package/dist/components/ui/accordion.d.ts +8 -0
- package/dist/components/ui/accordion.d.ts.map +1 -0
- package/dist/components/ui/accordion.js +13 -0
- package/dist/components/ui/alert-dialog.d.ts +25 -0
- package/dist/components/ui/alert-dialog.d.ts.map +1 -0
- package/dist/components/ui/alert-dialog.js +27 -0
- package/dist/components/ui/alert.d.ts +9 -0
- package/dist/components/ui/alert.d.ts.map +1 -0
- package/dist/components/ui/alert.js +22 -0
- package/dist/components/ui/avatar.d.ts +7 -0
- package/dist/components/ui/avatar.d.ts.map +1 -0
- package/dist/components/ui/avatar.js +11 -0
- package/dist/components/ui/badge.d.ts +10 -0
- package/dist/components/ui/badge.d.ts.map +1 -0
- package/dist/components/ui/badge.js +26 -0
- package/dist/components/ui/breadcrumb.d.ts +20 -0
- package/dist/components/ui/breadcrumb.d.ts.map +1 -0
- package/dist/components/ui/breadcrumb.js +23 -0
- package/dist/components/ui/button.d.ts +12 -0
- package/dist/components/ui/button.d.ts.map +1 -0
- package/dist/components/ui/button.js +33 -0
- package/dist/components/ui/calendar.d.ts +9 -0
- package/dist/components/ui/calendar.d.ts.map +1 -0
- package/dist/components/ui/calendar.js +70 -0
- package/dist/components/ui/card.d.ts +9 -0
- package/dist/components/ui/card.d.ts.map +1 -0
- package/dist/components/ui/card.js +16 -0
- package/dist/components/ui/carousel.d.ts +19 -0
- package/dist/components/ui/carousel.d.ts.map +1 -0
- package/dist/components/ui/carousel.js +98 -0
- package/dist/components/ui/chart.d.ts +63 -0
- package/dist/components/ui/chart.d.ts.map +1 -0
- package/dist/components/ui/chart.js +130 -0
- package/dist/components/ui/checkbox.d.ts +5 -0
- package/dist/components/ui/checkbox.d.ts.map +1 -0
- package/dist/components/ui/checkbox.js +8 -0
- package/dist/components/ui/collapsible.d.ts +6 -0
- package/dist/components/ui/collapsible.d.ts.map +1 -0
- package/dist/components/ui/collapsible.js +5 -0
- package/dist/components/ui/command.d.ts +81 -0
- package/dist/components/ui/command.d.ts.map +1 -0
- package/dist/components/ui/command.js +28 -0
- package/dist/components/ui/context-menu.d.ts +28 -0
- package/dist/components/ui/context-menu.d.ts.map +1 -0
- package/dist/components/ui/context-menu.js +33 -0
- package/dist/components/ui/custom/date-picker.d.ts +12 -0
- package/dist/components/ui/custom/date-picker.d.ts.map +1 -0
- package/dist/components/ui/custom/date-picker.js +35 -0
- package/dist/components/ui/custom/form/checkbox.d.ts +13 -0
- package/dist/components/ui/custom/form/checkbox.d.ts.map +1 -0
- package/dist/components/ui/custom/form/checkbox.js +15 -0
- package/dist/components/ui/custom/form/color.d.ts +15 -0
- package/dist/components/ui/custom/form/color.d.ts.map +1 -0
- package/dist/components/ui/custom/form/color.js +40 -0
- package/dist/components/ui/custom/form/combobox.d.ts +37 -0
- package/dist/components/ui/custom/form/combobox.d.ts.map +1 -0
- package/dist/components/ui/custom/form/combobox.js +82 -0
- package/dist/components/ui/custom/form/cpf-cnpj.d.ts +16 -0
- package/dist/components/ui/custom/form/cpf-cnpj.d.ts.map +1 -0
- package/dist/components/ui/custom/form/cpf-cnpj.js +32 -0
- package/dist/components/ui/custom/form/currency.d.ts +14 -0
- package/dist/components/ui/custom/form/currency.d.ts.map +1 -0
- package/dist/components/ui/custom/form/currency.js +15 -0
- package/dist/components/ui/custom/form/date-range.d.ts +16 -0
- package/dist/components/ui/custom/form/date-range.d.ts.map +1 -0
- package/dist/components/ui/custom/form/date-range.js +24 -0
- package/dist/components/ui/custom/form/date.d.ts +16 -0
- package/dist/components/ui/custom/form/date.d.ts.map +1 -0
- package/dist/components/ui/custom/form/date.js +35 -0
- package/dist/components/ui/custom/form/decimal.d.ts +14 -0
- package/dist/components/ui/custom/form/decimal.d.ts.map +1 -0
- package/dist/components/ui/custom/form/decimal.js +15 -0
- package/dist/components/ui/custom/form/file.d.ts +15 -0
- package/dist/components/ui/custom/form/file.d.ts.map +1 -0
- package/dist/components/ui/custom/form/file.js +18 -0
- package/dist/components/ui/custom/form/form-help-text.d.ts +3 -0
- package/dist/components/ui/custom/form/form-help-text.d.ts.map +1 -0
- package/dist/components/ui/custom/form/form-help-text.js +7 -0
- package/dist/components/ui/custom/form/form-label.d.ts +7 -0
- package/dist/components/ui/custom/form/form-label.d.ts.map +1 -0
- package/dist/components/ui/custom/form/form-label.js +9 -0
- package/dist/components/ui/custom/form/form-message.d.ts +5 -0
- package/dist/components/ui/custom/form/form-message.d.ts.map +1 -0
- package/dist/components/ui/custom/form/form-message.js +5 -0
- package/dist/components/ui/custom/form/ghost.d.ts +8 -0
- package/dist/components/ui/custom/form/ghost.d.ts.map +1 -0
- package/dist/components/ui/custom/form/ghost.js +8 -0
- package/dist/components/ui/custom/form/input.d.ts +18 -0
- package/dist/components/ui/custom/form/input.d.ts.map +1 -0
- package/dist/components/ui/custom/form/input.js +14 -0
- package/dist/components/ui/custom/form/mask.d.ts +19 -0
- package/dist/components/ui/custom/form/mask.d.ts.map +1 -0
- package/dist/components/ui/custom/form/mask.js +19 -0
- package/dist/components/ui/custom/form/multi-select-old.d.ts +19 -0
- package/dist/components/ui/custom/form/multi-select-old.d.ts.map +1 -0
- package/dist/components/ui/custom/form/multi-select-old.js +30 -0
- package/dist/components/ui/custom/form/multi-select.d.ts +26 -0
- package/dist/components/ui/custom/form/multi-select.d.ts.map +1 -0
- package/dist/components/ui/custom/form/multi-select.js +66 -0
- package/dist/components/ui/custom/form/password.d.ts +16 -0
- package/dist/components/ui/custom/form/password.d.ts.map +1 -0
- package/dist/components/ui/custom/form/password.js +14 -0
- package/dist/components/ui/custom/form/percent.d.ts +14 -0
- package/dist/components/ui/custom/form/percent.d.ts.map +1 -0
- package/dist/components/ui/custom/form/percent.js +15 -0
- package/dist/components/ui/custom/form/phone.d.ts +16 -0
- package/dist/components/ui/custom/form/phone.d.ts.map +1 -0
- package/dist/components/ui/custom/form/phone.js +23 -0
- package/dist/components/ui/custom/form/radio-group.d.ts +23 -0
- package/dist/components/ui/custom/form/radio-group.d.ts.map +1 -0
- package/dist/components/ui/custom/form/radio-group.js +15 -0
- package/dist/components/ui/custom/form/select.d.ts +20 -0
- package/dist/components/ui/custom/form/select.d.ts.map +1 -0
- package/dist/components/ui/custom/form/select.js +12 -0
- package/dist/components/ui/custom/form/step-new-form.d.ts +10 -0
- package/dist/components/ui/custom/form/step-new-form.d.ts.map +1 -0
- package/dist/components/ui/custom/form/step-new-form.js +13 -0
- package/dist/components/ui/custom/form/switch.d.ts +13 -0
- package/dist/components/ui/custom/form/switch.d.ts.map +1 -0
- package/dist/components/ui/custom/form/switch.js +16 -0
- package/dist/components/ui/custom/form/text.d.ts +18 -0
- package/dist/components/ui/custom/form/text.d.ts.map +1 -0
- package/dist/components/ui/custom/form/text.js +14 -0
- package/dist/components/ui/custom/form/textarea.d.ts +16 -0
- package/dist/components/ui/custom/form/textarea.d.ts.map +1 -0
- package/dist/components/ui/custom/form/textarea.js +19 -0
- package/dist/components/ui/custom/form/utils.d.ts +18 -0
- package/dist/components/ui/custom/form/utils.d.ts.map +1 -0
- package/dist/components/ui/custom/form/utils.js +88 -0
- package/dist/components/ui/custom/header.d.ts +11 -0
- package/dist/components/ui/custom/header.d.ts.map +1 -0
- package/dist/components/ui/custom/header.js +74 -0
- package/dist/components/ui/custom/label.d.ts +13 -0
- package/dist/components/ui/custom/label.d.ts.map +1 -0
- package/dist/components/ui/custom/label.js +20 -0
- package/dist/components/ui/custom/not-found.d.ts +3 -0
- package/dist/components/ui/custom/not-found.d.ts.map +1 -0
- package/dist/components/ui/custom/not-found.js +9 -0
- package/dist/components/ui/custom/sidebar/app-sidebar.d.ts +5 -0
- package/dist/components/ui/custom/sidebar/app-sidebar.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/app-sidebar.js +26 -0
- package/dist/components/ui/custom/sidebar/module-switcher.d.ts +9 -0
- package/dist/components/ui/custom/sidebar/module-switcher.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/module-switcher.js +55 -0
- package/dist/components/ui/custom/sidebar/nav-footer.d.ts +7 -0
- package/dist/components/ui/custom/sidebar/nav-footer.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/nav-footer.js +13 -0
- package/dist/components/ui/custom/sidebar/nav-main.d.ts +7 -0
- package/dist/components/ui/custom/sidebar/nav-main.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/nav-main.js +27 -0
- package/dist/components/ui/custom/sidebar/nav-submenu-collapsible.d.ts +9 -0
- package/dist/components/ui/custom/sidebar/nav-submenu-collapsible.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/nav-submenu-collapsible.js +18 -0
- package/dist/components/ui/custom/sidebar/nav-submenu-dropdown.d.ts +10 -0
- package/dist/components/ui/custom/sidebar/nav-submenu-dropdown.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/nav-submenu-dropdown.js +10 -0
- package/dist/components/ui/custom/sidebar/nav-user.d.ts +9 -0
- package/dist/components/ui/custom/sidebar/nav-user.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/nav-user.js +24 -0
- package/dist/components/ui/custom/sidebar/sidebar-button.d.ts +9 -0
- package/dist/components/ui/custom/sidebar/sidebar-button.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/sidebar-button.js +7 -0
- package/dist/components/ui/custom/sidebar/sidebar-item-two-lines.d.ts +12 -0
- package/dist/components/ui/custom/sidebar/sidebar-item-two-lines.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/sidebar-item-two-lines.js +5 -0
- package/dist/components/ui/custom/sidebar/sidebar-item.d.ts +9 -0
- package/dist/components/ui/custom/sidebar/sidebar-item.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/sidebar-item.js +7 -0
- package/dist/components/ui/custom/sidebar/sidebar-module-switcher.d.ts +9 -0
- package/dist/components/ui/custom/sidebar/sidebar-module-switcher.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/sidebar-module-switcher.js +20 -0
- package/dist/components/ui/custom/sidebar/types/sidebar.d.ts +29 -0
- package/dist/components/ui/custom/sidebar/types/sidebar.d.ts.map +1 -0
- package/dist/components/ui/custom/sidebar/types/sidebar.js +5 -0
- package/dist/components/ui/custom/table/data-table-export.d.ts +8 -0
- package/dist/components/ui/custom/table/data-table-export.d.ts.map +1 -0
- package/dist/components/ui/custom/table/data-table-export.js +65 -0
- package/dist/components/ui/custom/table/data-table-footer.d.ts +25 -0
- package/dist/components/ui/custom/table/data-table-footer.d.ts.map +1 -0
- package/dist/components/ui/custom/table/data-table-footer.js +39 -0
- package/dist/components/ui/custom/table/data-table-header.d.ts +9 -0
- package/dist/components/ui/custom/table/data-table-header.d.ts.map +1 -0
- package/dist/components/ui/custom/table/data-table-header.js +11 -0
- package/dist/components/ui/custom/table/data-table-rows.d.ts +13 -0
- package/dist/components/ui/custom/table/data-table-rows.d.ts.map +1 -0
- package/dist/components/ui/custom/table/data-table-rows.js +25 -0
- package/dist/components/ui/custom/table/data-table.d.ts +35 -0
- package/dist/components/ui/custom/table/data-table.d.ts.map +1 -0
- package/dist/components/ui/custom/table/data-table.js +99 -0
- package/dist/components/ui/custom/table/types/data-table.d.ts +29 -0
- package/dist/components/ui/custom/table/types/data-table.d.ts.map +1 -0
- package/dist/components/ui/custom/table/types/data-table.js +1 -0
- package/dist/components/ui/custom/theme-provider.d.ts +24 -0
- package/dist/components/ui/custom/theme-provider.d.ts.map +1 -0
- package/dist/components/ui/custom/theme-provider.js +79 -0
- package/dist/components/ui/dateRangePicker.d.ts +3 -0
- package/dist/components/ui/dateRangePicker.d.ts.map +1 -0
- package/dist/components/ui/dateRangePicker.js +15 -0
- package/dist/components/ui/dialog.d.ts +23 -0
- package/dist/components/ui/dialog.d.ts.map +1 -0
- package/dist/components/ui/dialog.js +23 -0
- package/dist/components/ui/drawer.d.ts +23 -0
- package/dist/components/ui/drawer.d.ts.map +1 -0
- package/dist/components/ui/drawer.js +22 -0
- package/dist/components/ui/dropdown-menu.d.ts +28 -0
- package/dist/components/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/components/ui/dropdown-menu.js +32 -0
- package/dist/components/ui/form.d.ts +24 -0
- package/dist/components/ui/form.d.ts.map +1 -0
- package/dist/components/ui/form.js +60 -0
- package/dist/components/ui/hover-card.d.ts +7 -0
- package/dist/components/ui/hover-card.d.ts.map +1 -0
- package/dist/components/ui/hover-card.js +9 -0
- package/dist/components/ui/input.d.ts +24 -0
- package/dist/components/ui/input.d.ts.map +1 -0
- package/dist/components/ui/input.js +71 -0
- package/dist/components/ui/label.d.ts +6 -0
- package/dist/components/ui/label.d.ts.map +1 -0
- package/dist/components/ui/label.js +9 -0
- package/dist/components/ui/masks.d.ts +17 -0
- package/dist/components/ui/masks.d.ts.map +1 -0
- package/dist/components/ui/masks.js +25 -0
- package/dist/components/ui/pagination.d.ts +30 -0
- package/dist/components/ui/pagination.d.ts.map +1 -0
- package/dist/components/ui/pagination.js +23 -0
- package/dist/components/ui/popover.d.ts +7 -0
- package/dist/components/ui/popover.d.ts.map +1 -0
- package/dist/components/ui/popover.js +11 -0
- package/dist/components/ui/progress.d.ts +5 -0
- package/dist/components/ui/progress.d.ts.map +1 -0
- package/dist/components/ui/progress.js +7 -0
- package/dist/components/ui/radio-group.d.ts +6 -0
- package/dist/components/ui/radio-group.d.ts.map +1 -0
- package/dist/components/ui/radio-group.js +14 -0
- package/dist/components/ui/scroll-area.d.ts +6 -0
- package/dist/components/ui/scroll-area.d.ts.map +1 -0
- package/dist/components/ui/scroll-area.js +11 -0
- package/dist/components/ui/select.d.ts +14 -0
- package/dist/components/ui/select.d.ts.map +1 -0
- package/dist/components/ui/select.js +24 -0
- package/dist/components/ui/separator.d.ts +5 -0
- package/dist/components/ui/separator.d.ts.map +1 -0
- package/dist/components/ui/separator.js +7 -0
- package/dist/components/ui/sheet.d.ts +26 -0
- package/dist/components/ui/sheet.d.ts.map +1 -0
- package/dist/components/ui/sheet.js +37 -0
- package/dist/components/ui/sidebar.d.ts +67 -0
- package/dist/components/ui/sidebar.d.ts.map +1 -0
- package/dist/components/ui/sidebar.js +221 -0
- package/dist/components/ui/skeleton.d.ts +3 -0
- package/dist/components/ui/skeleton.d.ts.map +1 -0
- package/dist/components/ui/skeleton.js +6 -0
- package/dist/components/ui/slider.d.ts +5 -0
- package/dist/components/ui/slider.d.ts.map +1 -0
- package/dist/components/ui/slider.js +7 -0
- package/dist/components/ui/switch.d.ts +5 -0
- package/dist/components/ui/switch.d.ts.map +1 -0
- package/dist/components/ui/switch.js +7 -0
- package/dist/components/ui/table.d.ts +11 -0
- package/dist/components/ui/table.d.ts.map +1 -0
- package/dist/components/ui/table.js +20 -0
- package/dist/components/ui/tabs.d.ts +8 -0
- package/dist/components/ui/tabs.d.ts.map +1 -0
- package/dist/components/ui/tabs.js +12 -0
- package/dist/components/ui/textarea.d.ts +4 -0
- package/dist/components/ui/textarea.d.ts.map +1 -0
- package/dist/components/ui/textarea.js +14 -0
- package/dist/components/ui/toast.d.ts +16 -0
- package/dist/components/ui/toast.d.ts.map +1 -0
- package/dist/components/ui/toast.js +34 -0
- package/dist/components/ui/toaster.d.ts +2 -0
- package/dist/components/ui/toaster.d.ts.map +1 -0
- package/dist/components/ui/toaster.js +21 -0
- package/dist/components/ui/tooltip.d.ts +8 -0
- package/dist/components/ui/tooltip.d.ts.map +1 -0
- package/dist/components/ui/tooltip.js +10 -0
- package/dist/components/ui/use-calendar.d.ts +7 -0
- package/dist/components/ui/use-calendar.d.ts.map +1 -0
- package/dist/components/ui/use-calendar.js +23 -0
- package/dist/components/ui/use-toast.d.ts +46 -0
- package/dist/components/ui/use-toast.d.ts.map +1 -0
- package/dist/components/ui/use-toast.js +125 -0
- package/dist/components/use-calendar.d.ts +7 -0
- package/dist/components/use-calendar.d.ts.map +1 -0
- package/dist/components/use-calendar.js +23 -0
- package/dist/components/use-toast.d.ts +46 -0
- package/dist/components/use-toast.d.ts.map +1 -0
- package/dist/components/use-toast.js +125 -0
- package/dist/hooks/use-mobile.d.ts +2 -0
- package/dist/hooks/use-mobile.d.ts.map +1 -0
- package/dist/hooks/use-mobile.js +15 -0
- package/dist/index.d.ts +1514 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.esm.js +3233 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +3558 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/help/date-utils.d.ts +7 -0
- package/dist/lib/help/date-utils.d.ts.map +1 -0
- package/dist/lib/help/date-utils.js +34 -0
- package/dist/lib/help/format.d.ts +22 -0
- package/dist/lib/help/format.d.ts.map +1 -0
- package/dist/lib/help/format.js +140 -0
- package/dist/lib/help/theme.d.ts +291 -0
- package/dist/lib/help/theme.d.ts.map +1 -0
- package/dist/lib/help/theme.js +340 -0
- package/dist/lib/help/uuid.d.ts +2 -0
- package/dist/lib/help/uuid.d.ts.map +1 -0
- package/dist/lib/help/uuid.js +4 -0
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/lib/utils.js +5 -0
- package/package.json +146 -0
- package/src/components/ui/accordion.tsx +48 -0
- package/src/components/ui/alert-dialog.tsx +138 -0
- package/src/components/ui/alert.tsx +36 -0
- package/src/components/ui/avatar.tsx +48 -0
- package/src/components/ui/badge.tsx +35 -0
- package/src/components/ui/breadcrumb.tsx +115 -0
- package/src/components/ui/button.tsx +43 -0
- package/src/components/ui/calendar.tsx +142 -0
- package/src/components/ui/card.tsx +35 -0
- package/src/components/ui/carousel.tsx +257 -0
- package/src/components/ui/chart.tsx +364 -0
- package/src/components/ui/checkbox.tsx +26 -0
- package/src/components/ui/collapsible.tsx +9 -0
- package/src/components/ui/command.tsx +145 -0
- package/src/components/ui/context-menu.tsx +198 -0
- package/src/components/ui/custom/date-picker.tsx +97 -0
- package/src/components/ui/custom/form/checkbox.tsx +53 -0
- package/src/components/ui/custom/form/color.tsx +140 -0
- package/src/components/ui/custom/form/combobox.tsx +259 -0
- package/src/components/ui/custom/form/cpf-cnpj.tsx +85 -0
- package/src/components/ui/custom/form/currency.tsx +51 -0
- package/src/components/ui/custom/form/date-range.tsx +110 -0
- package/src/components/ui/custom/form/date.tsx +109 -0
- package/src/components/ui/custom/form/decimal.tsx +50 -0
- package/src/components/ui/custom/form/file.tsx +65 -0
- package/src/components/ui/custom/form/form-help-text.tsx +20 -0
- package/src/components/ui/custom/form/form-label.tsx +24 -0
- package/src/components/ui/custom/form/form-message.tsx +10 -0
- package/src/components/ui/custom/form/ghost.tsx +28 -0
- package/src/components/ui/custom/form/input.tsx +69 -0
- package/src/components/ui/custom/form/mask.tsx +78 -0
- package/src/components/ui/custom/form/multi-select.tsx +209 -0
- package/src/components/ui/custom/form/password.tsx +70 -0
- package/src/components/ui/custom/form/percent.tsx +52 -0
- package/src/components/ui/custom/form/phone.tsx +79 -0
- package/src/components/ui/custom/form/radio-group.tsx +94 -0
- package/src/components/ui/custom/form/select.tsx +62 -0
- package/src/components/ui/custom/form/step-new-form.tsx +49 -0
- package/src/components/ui/custom/form/switch.tsx +51 -0
- package/src/components/ui/custom/form/text.tsx +71 -0
- package/src/components/ui/custom/form/textarea.tsx +71 -0
- package/src/components/ui/custom/form/utils.ts +100 -0
- package/src/components/ui/custom/header.tsx +128 -0
- package/src/components/ui/custom/label.tsx +79 -0
- package/src/components/ui/custom/not-found.tsx +30 -0
- package/src/components/ui/custom/sidebar/module-switcher.tsx +58 -0
- package/src/components/ui/custom/sidebar/nav-footer.tsx +35 -0
- package/src/components/ui/custom/sidebar/nav-main.tsx +64 -0
- package/src/components/ui/custom/sidebar/nav-submenu-collapsible.tsx +60 -0
- package/src/components/ui/custom/sidebar/nav-submenu-dropdown.tsx +56 -0
- package/src/components/ui/custom/sidebar/nav-user.tsx +77 -0
- package/src/components/ui/custom/sidebar/sidebar-button.tsx +30 -0
- package/src/components/ui/custom/sidebar/sidebar-item-two-lines.tsx +25 -0
- package/src/components/ui/custom/sidebar/sidebar-item.tsx +19 -0
- package/src/components/ui/custom/sidebar/types/sidebar.ts +31 -0
- package/src/components/ui/custom/table/data-table-export.tsx +126 -0
- package/src/components/ui/custom/table/data-table-footer.tsx +148 -0
- package/src/components/ui/custom/table/data-table-header.tsx +58 -0
- package/src/components/ui/custom/table/data-table-rows.tsx +94 -0
- package/src/components/ui/custom/table/data-table.tsx +285 -0
- package/src/components/ui/custom/table/types/data-table.ts +31 -0
- package/src/components/ui/custom/theme-provider.tsx +121 -0
- package/src/components/ui/dateRangePicker.tsx +63 -0
- package/src/components/ui/dialog.tsx +84 -0
- package/src/components/ui/drawer.tsx +116 -0
- package/src/components/ui/dropdown-menu.tsx +173 -0
- package/src/components/ui/form.tsx +114 -0
- package/src/components/ui/hover-card.tsx +27 -0
- package/src/components/ui/input.tsx +265 -0
- package/src/components/ui/label.tsx +15 -0
- package/src/components/ui/masks.ts +35 -0
- package/src/components/ui/pagination.tsx +78 -0
- package/src/components/ui/popover.tsx +32 -0
- package/src/components/ui/progress.tsx +22 -0
- package/src/components/ui/radio-group.tsx +36 -0
- package/src/components/ui/scroll-area.tsx +46 -0
- package/src/components/ui/select.tsx +130 -0
- package/src/components/ui/separator.tsx +29 -0
- package/src/components/ui/sheet.tsx +90 -0
- package/src/components/ui/sidebar.tsx +598 -0
- package/src/components/ui/skeleton.tsx +15 -0
- package/src/components/ui/slider.tsx +18 -0
- package/src/components/ui/switch.tsx +26 -0
- package/src/components/ui/table.tsx +53 -0
- package/src/components/ui/tabs.tsx +47 -0
- package/src/components/ui/textarea.tsx +27 -0
- package/src/components/ui/toast.tsx +88 -0
- package/src/components/ui/toaster.tsx +49 -0
- package/src/components/ui/tooltip.tsx +31 -0
- package/src/components/ui/use-calendar.tsx +61 -0
- package/src/components/ui/use-toast.ts +186 -0
- package/src/hooks/use-mobile.tsx +19 -0
- package/src/index.ts +299 -0
- package/src/lib/help/date-utils.ts +41 -0
- package/src/lib/help/format.ts +171 -0
- package/src/lib/help/theme.ts +346 -0
- package/src/lib/help/uuid.ts +4 -0
- package/src/lib/utils.ts +6 -0
- package/src/styles/globals.css +59 -0
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
// Retorna todas as cores do Tailwind CSS das variações 50 a 950
|
|
2
|
+
export function getTailwindColorShades() {
|
|
3
|
+
// Paleta padrão do Tailwind v3.3.0
|
|
4
|
+
// Fonte: https://github.com/tailwindlabs/tailwindcss/blob/master/src/public/colors.js
|
|
5
|
+
return {
|
|
6
|
+
slate: {
|
|
7
|
+
50: '#f8fafc',
|
|
8
|
+
100: '#f1f5f9',
|
|
9
|
+
200: '#e2e8f0',
|
|
10
|
+
300: '#cbd5e1',
|
|
11
|
+
400: '#94a3b8',
|
|
12
|
+
500: '#64748b',
|
|
13
|
+
600: '#475569',
|
|
14
|
+
700: '#334155',
|
|
15
|
+
800: '#1e293b',
|
|
16
|
+
900: '#0f172a',
|
|
17
|
+
950: '#020617',
|
|
18
|
+
},
|
|
19
|
+
gray: {
|
|
20
|
+
50: '#f9fafb',
|
|
21
|
+
100: '#f3f4f6',
|
|
22
|
+
200: '#e5e7eb',
|
|
23
|
+
300: '#d1d5db',
|
|
24
|
+
400: '#9ca3af',
|
|
25
|
+
500: '#6b7280',
|
|
26
|
+
600: '#4b5563',
|
|
27
|
+
700: '#374151',
|
|
28
|
+
800: '#1f2937',
|
|
29
|
+
900: '#111827',
|
|
30
|
+
950: '#030712',
|
|
31
|
+
},
|
|
32
|
+
zinc: {
|
|
33
|
+
50: '#fafafa',
|
|
34
|
+
100: '#f4f4f5',
|
|
35
|
+
200: '#e4e4e7',
|
|
36
|
+
300: '#d4d4d8',
|
|
37
|
+
400: '#a1a1aa',
|
|
38
|
+
500: '#71717a',
|
|
39
|
+
600: '#52525b',
|
|
40
|
+
700: '#3f3f46',
|
|
41
|
+
800: '#27272a',
|
|
42
|
+
900: '#18181b',
|
|
43
|
+
950: '#09090b',
|
|
44
|
+
},
|
|
45
|
+
neutral: {
|
|
46
|
+
50: '#fafafa',
|
|
47
|
+
100: '#f5f5f5',
|
|
48
|
+
200: '#e5e5e5',
|
|
49
|
+
300: '#d4d4d4',
|
|
50
|
+
400: '#a3a3a3',
|
|
51
|
+
500: '#737373',
|
|
52
|
+
600: '#525252',
|
|
53
|
+
700: '#404040',
|
|
54
|
+
800: '#262626',
|
|
55
|
+
900: '#171717',
|
|
56
|
+
950: '#0a0a0a',
|
|
57
|
+
},
|
|
58
|
+
stone: {
|
|
59
|
+
50: '#fafaf9',
|
|
60
|
+
100: '#f5f5f4',
|
|
61
|
+
200: '#e7e5e4',
|
|
62
|
+
300: '#d6d3d1',
|
|
63
|
+
400: '#a8a29e',
|
|
64
|
+
500: '#78716c',
|
|
65
|
+
600: '#57534e',
|
|
66
|
+
700: '#44403c',
|
|
67
|
+
800: '#292524',
|
|
68
|
+
900: '#1c1917',
|
|
69
|
+
950: '#0c0a09',
|
|
70
|
+
},
|
|
71
|
+
red: {
|
|
72
|
+
50: '#fef2f2',
|
|
73
|
+
100: '#fee2e2',
|
|
74
|
+
200: '#fecaca',
|
|
75
|
+
300: '#fca5a5',
|
|
76
|
+
400: '#f87171',
|
|
77
|
+
500: '#ef4444',
|
|
78
|
+
600: '#dc2626',
|
|
79
|
+
700: '#b91c1c',
|
|
80
|
+
800: '#991b1b',
|
|
81
|
+
900: '#7f1d1d',
|
|
82
|
+
950: '#450a0a',
|
|
83
|
+
},
|
|
84
|
+
orange: {
|
|
85
|
+
50: '#fff7ed',
|
|
86
|
+
100: '#ffedd5',
|
|
87
|
+
200: '#fed7aa',
|
|
88
|
+
300: '#fdba74',
|
|
89
|
+
400: '#fb923c',
|
|
90
|
+
500: '#f97316',
|
|
91
|
+
600: '#ea580c',
|
|
92
|
+
700: '#c2410c',
|
|
93
|
+
800: '#9a3412',
|
|
94
|
+
900: '#7c2d12',
|
|
95
|
+
950: '#431407',
|
|
96
|
+
},
|
|
97
|
+
amber: {
|
|
98
|
+
50: '#fffbeb',
|
|
99
|
+
100: '#fef3c7',
|
|
100
|
+
200: '#fde68a',
|
|
101
|
+
300: '#fcd34d',
|
|
102
|
+
400: '#fbbf24',
|
|
103
|
+
500: '#f59e42',
|
|
104
|
+
600: '#d97706',
|
|
105
|
+
700: '#b45309',
|
|
106
|
+
800: '#92400e',
|
|
107
|
+
900: '#78350f',
|
|
108
|
+
950: '#451a03',
|
|
109
|
+
},
|
|
110
|
+
yellow: {
|
|
111
|
+
50: '#fefce8',
|
|
112
|
+
100: '#fef9c3',
|
|
113
|
+
200: '#fef08a',
|
|
114
|
+
300: '#fde047',
|
|
115
|
+
400: '#facc15',
|
|
116
|
+
500: '#eab308',
|
|
117
|
+
600: '#ca8a04',
|
|
118
|
+
700: '#a16207',
|
|
119
|
+
800: '#854d0e',
|
|
120
|
+
900: '#713f12',
|
|
121
|
+
950: '#422006',
|
|
122
|
+
},
|
|
123
|
+
lime: {
|
|
124
|
+
50: '#f7fee7',
|
|
125
|
+
100: '#ecfccb',
|
|
126
|
+
200: '#d9f99d',
|
|
127
|
+
300: '#bef264',
|
|
128
|
+
400: '#a3e635',
|
|
129
|
+
500: '#84cc16',
|
|
130
|
+
600: '#65a30d',
|
|
131
|
+
700: '#4d7c0f',
|
|
132
|
+
800: '#3f6212',
|
|
133
|
+
900: '#365314',
|
|
134
|
+
950: '#1a2e05',
|
|
135
|
+
},
|
|
136
|
+
green: {
|
|
137
|
+
50: '#f0fdf4',
|
|
138
|
+
100: '#dcfce7',
|
|
139
|
+
200: '#bbf7d0',
|
|
140
|
+
300: '#86efac',
|
|
141
|
+
400: '#4ade80',
|
|
142
|
+
500: '#22c55e',
|
|
143
|
+
600: '#16a34a',
|
|
144
|
+
700: '#15803d',
|
|
145
|
+
800: '#166534',
|
|
146
|
+
900: '#14532d',
|
|
147
|
+
950: '#052e16',
|
|
148
|
+
},
|
|
149
|
+
emerald: {
|
|
150
|
+
50: '#ecfdf5',
|
|
151
|
+
100: '#d1fae5',
|
|
152
|
+
200: '#a7f3d0',
|
|
153
|
+
300: '#6ee7b7',
|
|
154
|
+
400: '#34d399',
|
|
155
|
+
500: '#10b981',
|
|
156
|
+
600: '#059669',
|
|
157
|
+
700: '#047857',
|
|
158
|
+
800: '#065f46',
|
|
159
|
+
900: '#064e3b',
|
|
160
|
+
950: '#022c22',
|
|
161
|
+
},
|
|
162
|
+
teal: {
|
|
163
|
+
50: '#f0fdfa',
|
|
164
|
+
100: '#ccfbf1',
|
|
165
|
+
200: '#99f6e4',
|
|
166
|
+
300: '#5eead4',
|
|
167
|
+
400: '#2dd4bf',
|
|
168
|
+
500: '#14b8a6',
|
|
169
|
+
600: '#0d9488',
|
|
170
|
+
700: '#0f766e',
|
|
171
|
+
800: '#115e59',
|
|
172
|
+
900: '#134e4a',
|
|
173
|
+
950: '#042f2e',
|
|
174
|
+
},
|
|
175
|
+
cyan: {
|
|
176
|
+
50: '#ecfeff',
|
|
177
|
+
100: '#cffafe',
|
|
178
|
+
200: '#a5f3fc',
|
|
179
|
+
300: '#67e8f9',
|
|
180
|
+
400: '#22d3ee',
|
|
181
|
+
500: '#06b6d4',
|
|
182
|
+
600: '#0891b2',
|
|
183
|
+
700: '#0e7490',
|
|
184
|
+
800: '#155e75',
|
|
185
|
+
900: '#164e63',
|
|
186
|
+
950: '#083344',
|
|
187
|
+
},
|
|
188
|
+
sky: {
|
|
189
|
+
50: '#f0f9ff',
|
|
190
|
+
100: '#e0f2fe',
|
|
191
|
+
200: '#bae6fd',
|
|
192
|
+
300: '#7dd3fc',
|
|
193
|
+
400: '#38bdf8',
|
|
194
|
+
500: '#0ea5e9',
|
|
195
|
+
600: '#0284c7',
|
|
196
|
+
700: '#0369a1',
|
|
197
|
+
800: '#075985',
|
|
198
|
+
900: '#0e3a5e',
|
|
199
|
+
950: '#082f49',
|
|
200
|
+
},
|
|
201
|
+
blue: {
|
|
202
|
+
50: '#eff6ff',
|
|
203
|
+
100: '#dbeafe',
|
|
204
|
+
200: '#bfdbfe',
|
|
205
|
+
300: '#93c5fd',
|
|
206
|
+
400: '#60a5fa',
|
|
207
|
+
500: '#3b82f6',
|
|
208
|
+
600: '#2563eb',
|
|
209
|
+
700: '#1d4ed8',
|
|
210
|
+
800: '#1e40af',
|
|
211
|
+
900: '#1e3a8a',
|
|
212
|
+
950: '#172554',
|
|
213
|
+
},
|
|
214
|
+
indigo: {
|
|
215
|
+
50: '#eef2ff',
|
|
216
|
+
100: '#e0e7ff',
|
|
217
|
+
200: '#c7d2fe',
|
|
218
|
+
300: '#a5b4fc',
|
|
219
|
+
400: '#818cf8',
|
|
220
|
+
500: '#6366f1',
|
|
221
|
+
600: '#4f46e5',
|
|
222
|
+
700: '#4338ca',
|
|
223
|
+
800: '#3730a3',
|
|
224
|
+
900: '#312e81',
|
|
225
|
+
950: '#1e1b4b',
|
|
226
|
+
},
|
|
227
|
+
violet: {
|
|
228
|
+
50: '#f5f3ff',
|
|
229
|
+
100: '#ede9fe',
|
|
230
|
+
200: '#ddd6fe',
|
|
231
|
+
300: '#c4b5fd',
|
|
232
|
+
400: '#a78bfa',
|
|
233
|
+
500: '#8b5cf6',
|
|
234
|
+
600: '#7c3aed',
|
|
235
|
+
700: '#6d28d9',
|
|
236
|
+
800: '#5b21b6',
|
|
237
|
+
900: '#4c1d95',
|
|
238
|
+
950: '#2e1065',
|
|
239
|
+
},
|
|
240
|
+
purple: {
|
|
241
|
+
50: '#faf5ff',
|
|
242
|
+
100: '#f3e8ff',
|
|
243
|
+
200: '#e9d5ff',
|
|
244
|
+
300: '#d8b4fe',
|
|
245
|
+
400: '#c084fc',
|
|
246
|
+
500: '#a855f7',
|
|
247
|
+
600: '#9333ea',
|
|
248
|
+
700: '#7e22ce',
|
|
249
|
+
800: '#6d19a8',
|
|
250
|
+
900: '#581c87',
|
|
251
|
+
950: '#3b0764',
|
|
252
|
+
},
|
|
253
|
+
fuchsia: {
|
|
254
|
+
50: '#fdf4ff',
|
|
255
|
+
100: '#fae8ff',
|
|
256
|
+
200: '#f5d0fe',
|
|
257
|
+
300: '#f0abfc',
|
|
258
|
+
400: '#e879f9',
|
|
259
|
+
500: '#d946ef',
|
|
260
|
+
600: '#c026d3',
|
|
261
|
+
700: '#a21caf',
|
|
262
|
+
800: '#86198f',
|
|
263
|
+
900: '#701a75',
|
|
264
|
+
950: '#4a044e',
|
|
265
|
+
},
|
|
266
|
+
pink: {
|
|
267
|
+
50: '#fdf2f8',
|
|
268
|
+
100: '#fce7f3',
|
|
269
|
+
200: '#fbcfe8',
|
|
270
|
+
300: '#f9a8d4',
|
|
271
|
+
400: '#f472b6',
|
|
272
|
+
500: '#ec4899',
|
|
273
|
+
600: '#db2777',
|
|
274
|
+
700: '#be185d',
|
|
275
|
+
800: '#9d174d',
|
|
276
|
+
900: '#831843',
|
|
277
|
+
950: '#500724',
|
|
278
|
+
},
|
|
279
|
+
rose: {
|
|
280
|
+
50: '#fff1f2',
|
|
281
|
+
100: '#ffe4e6',
|
|
282
|
+
200: '#fecdd3',
|
|
283
|
+
300: '#fda4af',
|
|
284
|
+
400: '#fb7185',
|
|
285
|
+
500: '#f43f5e',
|
|
286
|
+
600: '#e11d48',
|
|
287
|
+
700: '#be123c',
|
|
288
|
+
800: '#9f1239',
|
|
289
|
+
900: '#881337',
|
|
290
|
+
950: '#4c0519',
|
|
291
|
+
},
|
|
292
|
+
};
|
|
293
|
+
}
|
|
294
|
+
export const replaceThemeTailwindColors = (theme, tailwindColor) => {
|
|
295
|
+
const colorShades = getTailwindColorShades();
|
|
296
|
+
const isValidColor = (color) => color in colorShades;
|
|
297
|
+
const colorPallete = isValidColor(tailwindColor) ? colorShades[tailwindColor] : colorShades.violet;
|
|
298
|
+
const el = document.createElement('style');
|
|
299
|
+
el.id = 'theme-variables';
|
|
300
|
+
el.setAttribute('type', 'text/css');
|
|
301
|
+
el.textContent = ':root {';
|
|
302
|
+
if (theme === 'light') {
|
|
303
|
+
el.textContent += `--sidebar-background: ${colorPallete[50]};\n`;
|
|
304
|
+
el.textContent += `--sidebar-accent: ${colorPallete[200]};\n`;
|
|
305
|
+
el.textContent += `--sidebar-ring: ${colorPallete[300]};\n`;
|
|
306
|
+
el.textContent += `--sidebar-border: ${colorPallete[100]};\n`;
|
|
307
|
+
el.textContent += `--sidebar-scrollbar-thumb: ${colorPallete[200]};\n`;
|
|
308
|
+
}
|
|
309
|
+
if (theme === 'light' || theme === 'dark-side') {
|
|
310
|
+
el.textContent += `--background-elevated: ${colorPallete[200]};\n`;
|
|
311
|
+
el.textContent += `--background-primary-hover: ${colorPallete[100]};\n`;
|
|
312
|
+
el.textContent += `--background-subtle: ${colorPallete[50]};\n`;
|
|
313
|
+
el.textContent += `--accent: ${colorPallete[200]};\n`;
|
|
314
|
+
el.textContent += `--datatable-background: ${colorPallete[50]};\n`;
|
|
315
|
+
el.textContent += `--datatable-accent: ${colorPallete[50]};\n`;
|
|
316
|
+
el.textContent += `--scrollbar-thumb: ${colorPallete[200]};\n`;
|
|
317
|
+
}
|
|
318
|
+
if (theme === 'dark-side' || theme === 'dark') {
|
|
319
|
+
// Verificar essa propriedade
|
|
320
|
+
el.textContent += `--sidebar-accent: ${colorPallete[950]};\n`;
|
|
321
|
+
}
|
|
322
|
+
el.textContent += `--background-primary: ${colorPallete[900]};\n`;
|
|
323
|
+
el.textContent += `--background-primary-hover: ${colorPallete[950]};\n`;
|
|
324
|
+
el.textContent += `--primary: ${colorPallete[900]};\n`;
|
|
325
|
+
el.textContent += `--primary-950: ${colorPallete[950]};\n`;
|
|
326
|
+
el.textContent += `--primary-900: ${colorPallete[900]};\n`;
|
|
327
|
+
el.textContent += `--primary-800: ${colorPallete[800]};\n`;
|
|
328
|
+
el.textContent += `--primary-700: ${colorPallete[700]};\n`;
|
|
329
|
+
el.textContent += `--primary-600: ${colorPallete[600]};\n`;
|
|
330
|
+
el.textContent += `--primary-500: ${colorPallete[500]};\n`;
|
|
331
|
+
el.textContent += `--primary-400: ${colorPallete[400]};\n`;
|
|
332
|
+
el.textContent += `--primary-300: ${colorPallete[300]};\n`;
|
|
333
|
+
el.textContent += `--primary-200: ${colorPallete[200]};\n`;
|
|
334
|
+
el.textContent += `--primary-100: ${colorPallete[100]};\n`;
|
|
335
|
+
el.textContent += `--primary-50: ${colorPallete[50]};\n`;
|
|
336
|
+
el.textContent += `--chart-primary: ${colorPallete[800]};\n`;
|
|
337
|
+
el.textContent += `--chart-secondary: ${colorPallete[200]};\n`;
|
|
338
|
+
el.textContent += '}';
|
|
339
|
+
return el;
|
|
340
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uuid.d.ts","sourceRoot":"","sources":["../../../src/lib/help/uuid.ts"],"names":[],"mappings":"AAAA,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAG7C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAQ,MAAM,MAAM,CAAC;AAG7C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eai-frontend-components",
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"description": "Modern React UI component library based on shadcn/ui with TypeScript, Tailwind CSS, and full accessibility support. Perfect for building beautiful, responsive applications.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public",
|
|
8
|
+
"registry": "https://registry.npmjs.org/"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://bitbucket.org/genei_ryodan/erp_frontend_eai_ds#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://bitbucket.org/genei_ryodan/erp_frontend_eai_ds/issues"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+ssh://git@bitbucket.org/genei_ryodan/erp_frontend_eai_ds.git"
|
|
17
|
+
},
|
|
18
|
+
"author": "EAI",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"module": "dist/index.esm.js",
|
|
23
|
+
"types": "dist/index.d.ts",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"src"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "rollup -c",
|
|
30
|
+
"build:watch": "rollup -c -w",
|
|
31
|
+
"dev": "storybook dev -p 6006",
|
|
32
|
+
"build-storybook": "storybook build",
|
|
33
|
+
"lint": "npx @biomejs/biome lint ./src",
|
|
34
|
+
"lint:fix": "npx @biomejs/biome lint --apply ./src",
|
|
35
|
+
"type-check": "tsc --noEmit",
|
|
36
|
+
"test": "echo \"No tests specified\" && exit 0",
|
|
37
|
+
"ci": "npm run lint && npm run type-check && npm run build",
|
|
38
|
+
"release": "semantic-release",
|
|
39
|
+
"postinstall": "npm run build",
|
|
40
|
+
"prepublishOnly": "npm run ci"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"react": ">=16.8.0",
|
|
44
|
+
"react-dom": ">=16.8.0"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"@hookform/resolvers": "^3.3.4",
|
|
48
|
+
"@mona-health/react-input-mask": "^3.0.3",
|
|
49
|
+
"@radix-ui/react-accordion": "1.2.3",
|
|
50
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
51
|
+
"@radix-ui/react-avatar": "1.1.3",
|
|
52
|
+
"@radix-ui/react-checkbox": "1.1.4",
|
|
53
|
+
"@radix-ui/react-collapsible": "1.1.3",
|
|
54
|
+
"@radix-ui/react-context-menu": "^2.2.6",
|
|
55
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
56
|
+
"@radix-ui/react-dropdown-menu": "2.1.6",
|
|
57
|
+
"@radix-ui/react-hover-card": "1.1.6",
|
|
58
|
+
"@radix-ui/react-label": "2.1.2",
|
|
59
|
+
"@radix-ui/react-popover": "1.1.6",
|
|
60
|
+
"@radix-ui/react-progress": "1.1.2",
|
|
61
|
+
"@radix-ui/react-radio-group": "1.2.3",
|
|
62
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
63
|
+
"@radix-ui/react-select": "2.1.6",
|
|
64
|
+
"@radix-ui/react-separator": "1.1.2",
|
|
65
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
66
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
67
|
+
"@radix-ui/react-switch": "1.1.3",
|
|
68
|
+
"@radix-ui/react-tabs": "1.1.3",
|
|
69
|
+
"@radix-ui/react-toast": "1.2.6",
|
|
70
|
+
"@radix-ui/react-tooltip": "1.1.8",
|
|
71
|
+
"@react-input/mask": "^2.0.4",
|
|
72
|
+
"@tanstack/react-table": "^8.20.5",
|
|
73
|
+
"class-variance-authority": "^0.7.1",
|
|
74
|
+
"clsx": "^2.1.1",
|
|
75
|
+
"cmdk": "1.0.0",
|
|
76
|
+
"date-fns": "^4.1.0",
|
|
77
|
+
"embla-carousel-react": "^8.5.1",
|
|
78
|
+
"lucide-react": "^0.475.0",
|
|
79
|
+
"react-colorful": "^5.6.1",
|
|
80
|
+
"react-day-picker": "^9.7.0",
|
|
81
|
+
"react-hook-form": "^7.51.1",
|
|
82
|
+
"react-router-dom": "^6.21.0",
|
|
83
|
+
"react-top-loading-bar": "^3.0.2",
|
|
84
|
+
"recharts": "^2.15.1",
|
|
85
|
+
"tailwind-merge": "^3.0.1",
|
|
86
|
+
"vaul": "^1.1.2",
|
|
87
|
+
"zod": "^3.22.4"
|
|
88
|
+
},
|
|
89
|
+
"devDependencies": {
|
|
90
|
+
"@biomejs/biome": "1.4.1",
|
|
91
|
+
"@rollup/plugin-alias": "^5.1.1",
|
|
92
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
93
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
94
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
95
|
+
"@semantic-release/changelog": "^6.0.0",
|
|
96
|
+
"@semantic-release/commit-analyzer": "^10.0.0",
|
|
97
|
+
"@semantic-release/git": "^10.0.0",
|
|
98
|
+
"@semantic-release/npm": "^10.0.0",
|
|
99
|
+
"@semantic-release/release-notes-generator": "^11.0.0",
|
|
100
|
+
"@storybook/addon-essentials": "^8.0.0",
|
|
101
|
+
"@storybook/addon-interactions": "^8.0.0",
|
|
102
|
+
"@storybook/addon-links": "^8.0.0",
|
|
103
|
+
"@storybook/blocks": "^8.0.0",
|
|
104
|
+
"@storybook/react": "^8.0.0",
|
|
105
|
+
"@storybook/react-vite": "^8.0.0",
|
|
106
|
+
"@storybook/test": "^8.0.0",
|
|
107
|
+
"@types/node": "^24.7.0",
|
|
108
|
+
"@types/react": "^18.2.67",
|
|
109
|
+
"@types/react-dom": "^18.2.22",
|
|
110
|
+
"autoprefixer": "^10.4.19",
|
|
111
|
+
"postcss": "^8.4.38",
|
|
112
|
+
"rollup": "^4.18.0",
|
|
113
|
+
"rollup-plugin-dts": "^6.1.1",
|
|
114
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
115
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
116
|
+
"semantic-release": "^21.0.0",
|
|
117
|
+
"storybook": "^8.0.0",
|
|
118
|
+
"tailwindcss": "^3.3.6",
|
|
119
|
+
"tailwindcss-animate": "^1.0.7",
|
|
120
|
+
"typescript": "^5.4.3"
|
|
121
|
+
},
|
|
122
|
+
"keywords": [
|
|
123
|
+
"react",
|
|
124
|
+
"components",
|
|
125
|
+
"ui",
|
|
126
|
+
"design-system",
|
|
127
|
+
"typescript",
|
|
128
|
+
"tailwind",
|
|
129
|
+
"tailwindcss",
|
|
130
|
+
"shadcn",
|
|
131
|
+
"shadcn-ui",
|
|
132
|
+
"radix",
|
|
133
|
+
"radix-ui",
|
|
134
|
+
"accessibility",
|
|
135
|
+
"a11y",
|
|
136
|
+
"dark-mode",
|
|
137
|
+
"responsive",
|
|
138
|
+
"modern",
|
|
139
|
+
"styled-components",
|
|
140
|
+
"css-in-js",
|
|
141
|
+
"component-library",
|
|
142
|
+
"ui-kit",
|
|
143
|
+
"frontend",
|
|
144
|
+
"web-components"
|
|
145
|
+
]
|
|
146
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
|
+
import { ChevronDown } from 'lucide-react';
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
|
|
5
|
+
import { cn } from '../../lib/utils';
|
|
6
|
+
|
|
7
|
+
const Accordion = AccordionPrimitive.Root;
|
|
8
|
+
|
|
9
|
+
const AccordionItem = React.forwardRef<
|
|
10
|
+
React.ElementRef<typeof AccordionPrimitive.Item>,
|
|
11
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item>
|
|
12
|
+
>(({ className, ...props }, ref) => <AccordionPrimitive.Item ref={ref} className={cn('border-b', className)} {...props} />);
|
|
13
|
+
AccordionItem.displayName = 'AccordionItem';
|
|
14
|
+
|
|
15
|
+
const AccordionTrigger = React.forwardRef<
|
|
16
|
+
React.ElementRef<typeof AccordionPrimitive.Trigger>,
|
|
17
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger>
|
|
18
|
+
>(({ className, children, ...props }, ref) => (
|
|
19
|
+
<AccordionPrimitive.Header className='flex'>
|
|
20
|
+
<AccordionPrimitive.Trigger
|
|
21
|
+
ref={ref}
|
|
22
|
+
className={cn('flex flex-1 items-center justify-between p-4 font-medium transition-all [&[data-state=open]>svg]:rotate-180', className)}
|
|
23
|
+
{...props}
|
|
24
|
+
>
|
|
25
|
+
{children}
|
|
26
|
+
<ChevronDown className='h-4 w-4 shrink-0 transition-transform duration-200' />
|
|
27
|
+
</AccordionPrimitive.Trigger>
|
|
28
|
+
</AccordionPrimitive.Header>
|
|
29
|
+
));
|
|
30
|
+
AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName;
|
|
31
|
+
|
|
32
|
+
const AccordionContent = React.forwardRef<
|
|
33
|
+
React.ElementRef<typeof AccordionPrimitive.Content>,
|
|
34
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content>
|
|
35
|
+
>(({ className, children, ...props }, ref) => (
|
|
36
|
+
<AccordionPrimitive.Content
|
|
37
|
+
ref={ref}
|
|
38
|
+
className='overflow-hidden text-sm transition-all data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down'
|
|
39
|
+
{...props}
|
|
40
|
+
>
|
|
41
|
+
<div className={cn('p-4 pt-0', className)}>{children}</div>
|
|
42
|
+
</AccordionPrimitive.Content>
|
|
43
|
+
));
|
|
44
|
+
|
|
45
|
+
AccordionContent.displayName = AccordionPrimitive.Content.displayName;
|
|
46
|
+
|
|
47
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger };
|
|
48
|
+
|