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
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1514 @@
|
|
|
1
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import React$1__default, { ReactNode } from 'react';
|
|
4
|
+
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
5
|
+
import { VariantProps } from 'class-variance-authority';
|
|
6
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
|
+
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
8
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
9
|
+
import { DayPicker, DateRange } from 'react-day-picker';
|
|
10
|
+
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
11
|
+
import * as recharts_types_util_payload_getUniqPayload from 'recharts/types/util/payload/getUniqPayload';
|
|
12
|
+
import * as recharts_types_component_Tooltip from 'recharts/types/component/Tooltip';
|
|
13
|
+
import * as recharts_types_util_types from 'recharts/types/util/types';
|
|
14
|
+
import * as recharts_types_component_DefaultTooltipContent from 'recharts/types/component/DefaultTooltipContent';
|
|
15
|
+
import * as RechartsPrimitive from 'recharts';
|
|
16
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
17
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
18
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
19
|
+
import { DialogProps } from '@radix-ui/react-dialog';
|
|
20
|
+
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
21
|
+
import * as vaul from 'vaul';
|
|
22
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
23
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
24
|
+
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
25
|
+
import * as react_hook_form from 'react-hook-form';
|
|
26
|
+
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
27
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
28
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
29
|
+
import { Modify } from '@react-input/mask';
|
|
30
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
31
|
+
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
32
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
33
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
34
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
35
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
36
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
37
|
+
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
38
|
+
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
39
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
40
|
+
import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
41
|
+
import { ColumnDef, PaginationState, Table as Table$1 } from '@tanstack/react-table';
|
|
42
|
+
import { ClassValue } from 'clsx';
|
|
43
|
+
|
|
44
|
+
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
46
|
+
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
47
|
+
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
48
|
+
//# sourceMappingURL=accordion.d.ts.map
|
|
49
|
+
|
|
50
|
+
declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
51
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
52
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
|
|
53
|
+
declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
54
|
+
declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
55
|
+
//# sourceMappingURL=alert.d.ts.map
|
|
56
|
+
|
|
57
|
+
declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
58
|
+
declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
59
|
+
declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
60
|
+
declare const AlertDialogHeader: {
|
|
61
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
62
|
+
displayName: string;
|
|
63
|
+
};
|
|
64
|
+
declare const AlertDialogFooter: {
|
|
65
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
66
|
+
displayName: string;
|
|
67
|
+
};
|
|
68
|
+
declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
69
|
+
declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
70
|
+
declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
71
|
+
variant?: "default" | "outline" | "destructive" | "secondary";
|
|
72
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
73
|
+
declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
74
|
+
variant?: "default" | "outline" | "destructive" | "secondary";
|
|
75
|
+
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
76
|
+
//# sourceMappingURL=alert-dialog.d.ts.map
|
|
77
|
+
|
|
78
|
+
declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
79
|
+
declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
80
|
+
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
81
|
+
//# sourceMappingURL=avatar.d.ts.map
|
|
82
|
+
|
|
83
|
+
declare const badgeVariants: (props?: ({
|
|
84
|
+
variant?: "default" | "destructive" | "secondary" | "outline" | "surface" | "green" | "red" | "gray" | "blue" | "orange" | null | undefined;
|
|
85
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
86
|
+
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
87
|
+
}
|
|
88
|
+
declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
91
|
+
separator?: React$1.ReactNode;
|
|
92
|
+
} & React$1.RefAttributes<HTMLElement>>;
|
|
93
|
+
declare const BreadcrumbList: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
|
|
94
|
+
declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
95
|
+
declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
|
|
96
|
+
asChild?: boolean;
|
|
97
|
+
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
98
|
+
declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
99
|
+
declare const BreadcrumbSeparator: {
|
|
100
|
+
({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
101
|
+
displayName: string;
|
|
102
|
+
};
|
|
103
|
+
declare const BreadcrumbEllipsis: {
|
|
104
|
+
({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
105
|
+
displayName: string;
|
|
106
|
+
};
|
|
107
|
+
//# sourceMappingURL=breadcrumb.d.ts.map
|
|
108
|
+
|
|
109
|
+
declare const buttonVariants: (props?: ({
|
|
110
|
+
variant?: "link" | "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
111
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
112
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
113
|
+
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
114
|
+
asChild?: boolean;
|
|
115
|
+
}
|
|
116
|
+
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
117
|
+
|
|
118
|
+
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
119
|
+
buttonVariant?: React$1.ComponentProps<typeof Button>['variant'];
|
|
120
|
+
}): react_jsx_runtime.JSX.Element;//# sourceMappingURL=calendar.d.ts.map
|
|
121
|
+
|
|
122
|
+
declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
123
|
+
declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
124
|
+
declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
125
|
+
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
126
|
+
declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
127
|
+
declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
128
|
+
//# sourceMappingURL=card.d.ts.map
|
|
129
|
+
|
|
130
|
+
type CarouselApi = UseEmblaCarouselType[1];
|
|
131
|
+
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
132
|
+
type CarouselOptions = UseCarouselParameters[0];
|
|
133
|
+
type CarouselPlugin = UseCarouselParameters[1];
|
|
134
|
+
type CarouselProps = {
|
|
135
|
+
opts?: CarouselOptions;
|
|
136
|
+
plugins?: CarouselPlugin;
|
|
137
|
+
orientation?: "horizontal" | "vertical";
|
|
138
|
+
setApi?: (api: CarouselApi) => void;
|
|
139
|
+
};
|
|
140
|
+
declare const Carousel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
141
|
+
declare const CarouselContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
142
|
+
declare const CarouselItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
143
|
+
declare const CarouselPrevious: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
144
|
+
declare const CarouselNext: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
145
|
+
//# sourceMappingURL=carousel.d.ts.map
|
|
146
|
+
|
|
147
|
+
declare const THEMES: {
|
|
148
|
+
readonly light: "";
|
|
149
|
+
readonly dark: ".dark";
|
|
150
|
+
};
|
|
151
|
+
type ChartConfig = {
|
|
152
|
+
[k in string]: {
|
|
153
|
+
label?: React$1.ReactNode;
|
|
154
|
+
icon?: React$1.ComponentType;
|
|
155
|
+
} & ({
|
|
156
|
+
color?: string;
|
|
157
|
+
theme?: never;
|
|
158
|
+
} | {
|
|
159
|
+
color?: never;
|
|
160
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
161
|
+
});
|
|
162
|
+
};
|
|
163
|
+
declare const ChartContainer: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
164
|
+
config: ChartConfig;
|
|
165
|
+
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
166
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
167
|
+
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
168
|
+
declare const ChartTooltipContent: React$1.ForwardRefExoticComponent<Omit<RechartsPrimitive.DefaultTooltipContentProps<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType> & {
|
|
169
|
+
accessibilityLayer?: boolean;
|
|
170
|
+
active?: boolean | undefined;
|
|
171
|
+
includeHidden?: boolean | undefined;
|
|
172
|
+
allowEscapeViewBox?: recharts_types_util_types.AllowInDimension;
|
|
173
|
+
animationDuration?: recharts_types_util_types.AnimationDuration;
|
|
174
|
+
animationEasing?: recharts_types_util_types.AnimationTiming;
|
|
175
|
+
content?: recharts_types_component_Tooltip.ContentType<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType> | undefined;
|
|
176
|
+
coordinate?: Partial<recharts_types_util_types.Coordinate>;
|
|
177
|
+
cursor?: boolean | React$1.ReactElement | React$1.SVGProps<SVGElement>;
|
|
178
|
+
filterNull?: boolean;
|
|
179
|
+
defaultIndex?: number;
|
|
180
|
+
isAnimationActive?: boolean;
|
|
181
|
+
offset?: number;
|
|
182
|
+
payloadUniqBy?: recharts_types_util_payload_getUniqPayload.UniqueOption<recharts_types_component_DefaultTooltipContent.Payload<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType>> | undefined;
|
|
183
|
+
position?: Partial<recharts_types_util_types.Coordinate>;
|
|
184
|
+
reverseDirection?: recharts_types_util_types.AllowInDimension;
|
|
185
|
+
shared?: boolean;
|
|
186
|
+
trigger?: "hover" | "click";
|
|
187
|
+
useTranslate3d?: boolean;
|
|
188
|
+
viewBox?: recharts_types_util_types.CartesianViewBox;
|
|
189
|
+
wrapperStyle?: React$1.CSSProperties;
|
|
190
|
+
} & React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
191
|
+
hideLabel?: boolean;
|
|
192
|
+
hideIndicator?: boolean;
|
|
193
|
+
indicator?: "line" | "dot" | "dashed";
|
|
194
|
+
nameKey?: string;
|
|
195
|
+
labelKey?: string;
|
|
196
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
197
|
+
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
198
|
+
declare const ChartLegendContent: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
|
|
199
|
+
hideIcon?: boolean;
|
|
200
|
+
nameKey?: string;
|
|
201
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
202
|
+
|
|
203
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
204
|
+
//# sourceMappingURL=checkbox.d.ts.map
|
|
205
|
+
|
|
206
|
+
declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
207
|
+
declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
208
|
+
declare const CollapsibleContent: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
209
|
+
//# sourceMappingURL=collapsible.d.ts.map
|
|
210
|
+
|
|
211
|
+
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
212
|
+
children?: React$1.ReactNode;
|
|
213
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
214
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
215
|
+
} & {
|
|
216
|
+
asChild?: boolean;
|
|
217
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
218
|
+
label?: string;
|
|
219
|
+
shouldFilter?: boolean;
|
|
220
|
+
filter?: (value: string, search: string, keywords?: string[]) => number;
|
|
221
|
+
defaultValue?: string;
|
|
222
|
+
value?: string;
|
|
223
|
+
onValueChange?: (value: string) => void;
|
|
224
|
+
loop?: boolean;
|
|
225
|
+
disablePointerSelection?: boolean;
|
|
226
|
+
vimBindings?: boolean;
|
|
227
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
228
|
+
declare const CommandDialog: ({ children, ...props }: DialogProps) => react_jsx_runtime.JSX.Element;
|
|
229
|
+
declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>> & {
|
|
230
|
+
ref?: React$1.Ref<HTMLInputElement>;
|
|
231
|
+
} & {
|
|
232
|
+
asChild?: boolean;
|
|
233
|
+
}, "key" | "asChild" | keyof React$1.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "value" | "type"> & {
|
|
234
|
+
value?: string;
|
|
235
|
+
onValueChange?: (search: string) => void;
|
|
236
|
+
} & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
237
|
+
declare const CommandList: React$1.ForwardRefExoticComponent<Omit<{
|
|
238
|
+
children?: React$1.ReactNode;
|
|
239
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
240
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
241
|
+
} & {
|
|
242
|
+
asChild?: boolean;
|
|
243
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
244
|
+
label?: string;
|
|
245
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
246
|
+
declare const CommandEmpty: React$1.ForwardRefExoticComponent<Omit<{
|
|
247
|
+
children?: React$1.ReactNode;
|
|
248
|
+
} & Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
249
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
250
|
+
} & {
|
|
251
|
+
asChild?: boolean;
|
|
252
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
253
|
+
declare const CommandGroup: React$1.ForwardRefExoticComponent<Omit<{
|
|
254
|
+
children?: React$1.ReactNode;
|
|
255
|
+
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
256
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
257
|
+
} & {
|
|
258
|
+
asChild?: boolean;
|
|
259
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "heading"> & {
|
|
260
|
+
heading?: React$1.ReactNode;
|
|
261
|
+
value?: string;
|
|
262
|
+
forceMount?: boolean;
|
|
263
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
264
|
+
declare const CommandSeparator: React$1.ForwardRefExoticComponent<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
265
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
266
|
+
} & {
|
|
267
|
+
asChild?: boolean;
|
|
268
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
269
|
+
alwaysRender?: boolean;
|
|
270
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
271
|
+
declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
272
|
+
children?: React$1.ReactNode;
|
|
273
|
+
} & Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React$1.HTMLAttributes<HTMLDivElement>> & {
|
|
274
|
+
ref?: React$1.Ref<HTMLDivElement>;
|
|
275
|
+
} & {
|
|
276
|
+
asChild?: boolean;
|
|
277
|
+
}, "key" | keyof React$1.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
|
|
278
|
+
disabled?: boolean;
|
|
279
|
+
onSelect?: (value: string) => void;
|
|
280
|
+
value?: string;
|
|
281
|
+
keywords?: string[];
|
|
282
|
+
forceMount?: boolean;
|
|
283
|
+
} & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
284
|
+
declare const CommandShortcut: {
|
|
285
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
286
|
+
displayName: string;
|
|
287
|
+
};
|
|
288
|
+
//# sourceMappingURL=command.d.ts.map
|
|
289
|
+
|
|
290
|
+
declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
|
|
291
|
+
declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
292
|
+
declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
293
|
+
declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
|
|
294
|
+
declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
|
|
295
|
+
declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
296
|
+
declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
297
|
+
inset?: boolean;
|
|
298
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
299
|
+
declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
300
|
+
declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
301
|
+
declare const ContextMenuItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
302
|
+
inset?: boolean;
|
|
303
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
304
|
+
declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
305
|
+
declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
306
|
+
declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
307
|
+
inset?: boolean;
|
|
308
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
309
|
+
declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
310
|
+
declare const ContextMenuShortcut: {
|
|
311
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
312
|
+
displayName: string;
|
|
313
|
+
};
|
|
314
|
+
//# sourceMappingURL=context-menu.d.ts.map
|
|
315
|
+
|
|
316
|
+
declare function DatePickerWithRange({ className, }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
317
|
+
|
|
318
|
+
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
319
|
+
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
320
|
+
declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
321
|
+
declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
322
|
+
declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
323
|
+
interface DialogContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
|
|
324
|
+
hideClose?: boolean;
|
|
325
|
+
}
|
|
326
|
+
declare const DialogContent: React$1.ForwardRefExoticComponent<DialogContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
327
|
+
declare const DialogHeader: {
|
|
328
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
329
|
+
displayName: string;
|
|
330
|
+
};
|
|
331
|
+
declare const DialogFooter: {
|
|
332
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
333
|
+
displayName: string;
|
|
334
|
+
};
|
|
335
|
+
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
336
|
+
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
337
|
+
//# sourceMappingURL=dialog.d.ts.map
|
|
338
|
+
|
|
339
|
+
declare const Drawer: {
|
|
340
|
+
({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
341
|
+
displayName: string;
|
|
342
|
+
};
|
|
343
|
+
declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
344
|
+
declare const DrawerPortal: typeof vaul.Portal;
|
|
345
|
+
declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
346
|
+
declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
347
|
+
declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
348
|
+
declare const DrawerHeader: {
|
|
349
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
350
|
+
displayName: string;
|
|
351
|
+
};
|
|
352
|
+
declare const DrawerFooter: {
|
|
353
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
354
|
+
displayName: string;
|
|
355
|
+
};
|
|
356
|
+
declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
357
|
+
declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
358
|
+
//# sourceMappingURL=drawer.d.ts.map
|
|
359
|
+
|
|
360
|
+
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
361
|
+
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
362
|
+
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
363
|
+
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
364
|
+
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
365
|
+
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
366
|
+
declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
367
|
+
inset?: boolean;
|
|
368
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
369
|
+
declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
370
|
+
declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
371
|
+
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
372
|
+
inset?: boolean;
|
|
373
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
374
|
+
declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
375
|
+
declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
376
|
+
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
377
|
+
inset?: boolean;
|
|
378
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
379
|
+
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
380
|
+
declare const DropdownMenuShortcut: {
|
|
381
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
382
|
+
displayName: string;
|
|
383
|
+
};
|
|
384
|
+
//# sourceMappingURL=dropdown-menu.d.ts.map
|
|
385
|
+
|
|
386
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
387
|
+
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
388
|
+
declare const useFormField: () => {
|
|
389
|
+
invalid: boolean;
|
|
390
|
+
isDirty: boolean;
|
|
391
|
+
isTouched: boolean;
|
|
392
|
+
isValidating: boolean;
|
|
393
|
+
error?: react_hook_form.FieldError;
|
|
394
|
+
id: string;
|
|
395
|
+
name: string;
|
|
396
|
+
formItemId: string;
|
|
397
|
+
formDescriptionId: string;
|
|
398
|
+
formMessageId: string;
|
|
399
|
+
};
|
|
400
|
+
declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
401
|
+
declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
402
|
+
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
403
|
+
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
404
|
+
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
405
|
+
//# sourceMappingURL=form.d.ts.map
|
|
406
|
+
|
|
407
|
+
declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
408
|
+
declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
409
|
+
declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
410
|
+
//# sourceMappingURL=hover-card.d.ts.map
|
|
411
|
+
|
|
412
|
+
interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
413
|
+
mask?: string;
|
|
414
|
+
maskPlaceholder?: string | null;
|
|
415
|
+
maxLength?: number;
|
|
416
|
+
placeholder?: string;
|
|
417
|
+
label?: string;
|
|
418
|
+
disabled?: boolean;
|
|
419
|
+
}
|
|
420
|
+
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
421
|
+
|
|
422
|
+
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
423
|
+
//# sourceMappingURL=label.d.ts.map
|
|
424
|
+
|
|
425
|
+
declare const modifyPhone: Modify;
|
|
426
|
+
declare const modifyCpfCnpj: Modify;
|
|
427
|
+
|
|
428
|
+
declare const Pagination: {
|
|
429
|
+
({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
430
|
+
displayName: string;
|
|
431
|
+
};
|
|
432
|
+
declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
433
|
+
declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
434
|
+
type PaginationLinkProps = {
|
|
435
|
+
isActive?: boolean;
|
|
436
|
+
disabled?: boolean;
|
|
437
|
+
} & Pick<ButtonProps, 'size'> & React$1.ComponentProps<'a'>;
|
|
438
|
+
declare const PaginationLink: {
|
|
439
|
+
({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
440
|
+
displayName: string;
|
|
441
|
+
};
|
|
442
|
+
declare const PaginationPrevious: {
|
|
443
|
+
({ className, disabled, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
444
|
+
displayName: string;
|
|
445
|
+
};
|
|
446
|
+
declare const PaginationNext: {
|
|
447
|
+
({ className, disabled, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
448
|
+
displayName: string;
|
|
449
|
+
};
|
|
450
|
+
declare const PaginationEllipsis: {
|
|
451
|
+
({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
452
|
+
displayName: string;
|
|
453
|
+
};
|
|
454
|
+
//# sourceMappingURL=pagination.d.ts.map
|
|
455
|
+
|
|
456
|
+
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
457
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
458
|
+
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
459
|
+
//# sourceMappingURL=popover.d.ts.map
|
|
460
|
+
|
|
461
|
+
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
462
|
+
//# sourceMappingURL=progress.d.ts.map
|
|
463
|
+
|
|
464
|
+
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
465
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
466
|
+
//# sourceMappingURL=radio-group.d.ts.map
|
|
467
|
+
|
|
468
|
+
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
469
|
+
declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
470
|
+
//# sourceMappingURL=scroll-area.d.ts.map
|
|
471
|
+
|
|
472
|
+
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
473
|
+
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
474
|
+
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
475
|
+
declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
476
|
+
declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
477
|
+
declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
478
|
+
declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
479
|
+
declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
480
|
+
declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
481
|
+
declare const SelectSeparator: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
482
|
+
//# sourceMappingURL=select.d.ts.map
|
|
483
|
+
|
|
484
|
+
declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
485
|
+
//# sourceMappingURL=separator.d.ts.map
|
|
486
|
+
|
|
487
|
+
declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
|
|
488
|
+
declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
489
|
+
declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
490
|
+
declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
491
|
+
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
492
|
+
declare const sheetVariants: (props?: ({
|
|
493
|
+
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
494
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
495
|
+
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
496
|
+
}
|
|
497
|
+
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
498
|
+
declare const SheetHeader: {
|
|
499
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
500
|
+
displayName: string;
|
|
501
|
+
};
|
|
502
|
+
declare const SheetFooter: {
|
|
503
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
504
|
+
displayName: string;
|
|
505
|
+
};
|
|
506
|
+
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
507
|
+
declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
508
|
+
//# sourceMappingURL=sheet.d.ts.map
|
|
509
|
+
|
|
510
|
+
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
511
|
+
declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
|
|
512
|
+
declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
513
|
+
declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
514
|
+
//# sourceMappingURL=tooltip.d.ts.map
|
|
515
|
+
|
|
516
|
+
type SidebarContext = {
|
|
517
|
+
state: 'expanded' | 'collapsed';
|
|
518
|
+
open: boolean;
|
|
519
|
+
setOpen: (open: boolean) => void;
|
|
520
|
+
openMobile: boolean;
|
|
521
|
+
setOpenMobile: (open: boolean) => void;
|
|
522
|
+
isMobile: boolean;
|
|
523
|
+
toggleSidebar: () => void;
|
|
524
|
+
};
|
|
525
|
+
declare const SidebarContext: React$1.Context<SidebarContext | null>;
|
|
526
|
+
declare function useSidebar(): SidebarContext;
|
|
527
|
+
declare const SidebarProvider: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
528
|
+
defaultOpen?: boolean;
|
|
529
|
+
open?: boolean;
|
|
530
|
+
onOpenChange?: (open: boolean) => void;
|
|
531
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
532
|
+
declare const Sidebar: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
533
|
+
side?: "left" | "right";
|
|
534
|
+
variant?: "sidebar" | "floating" | "inset";
|
|
535
|
+
collapsible?: "offcanvas" | "icon" | "none";
|
|
536
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
537
|
+
declare const SidebarTrigger: React$1.ForwardRefExoticComponent<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
538
|
+
declare const SidebarRail: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
539
|
+
declare const SidebarInset: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
540
|
+
declare const SidebarInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
541
|
+
declare const SidebarHeader: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
542
|
+
declare const SidebarFooter: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
543
|
+
declare const SidebarSeparator: React$1.ForwardRefExoticComponent<Omit<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
544
|
+
declare const SidebarContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
545
|
+
declare const SidebarGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
546
|
+
declare const SidebarGroupLabel: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
547
|
+
asChild?: boolean;
|
|
548
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
549
|
+
declare const SidebarGroupAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
550
|
+
asChild?: boolean;
|
|
551
|
+
}, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
552
|
+
declare const SidebarGroupContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
553
|
+
declare const SidebarMenu: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
554
|
+
declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
555
|
+
declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
556
|
+
asChild?: boolean;
|
|
557
|
+
isActive?: boolean;
|
|
558
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
559
|
+
} & VariantProps<(props?: ({
|
|
560
|
+
variant?: "default" | "outline" | null | undefined;
|
|
561
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
562
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
563
|
+
declare const SidebarMenuAction: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
564
|
+
asChild?: boolean;
|
|
565
|
+
showOnHover?: boolean;
|
|
566
|
+
}, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
567
|
+
declare const SidebarMenuBadge: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
568
|
+
declare const SidebarMenuSkeleton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
569
|
+
showIcon?: boolean;
|
|
570
|
+
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
571
|
+
declare const SidebarMenuSub: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
572
|
+
declare const SidebarMenuSubItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
573
|
+
declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLAnchorElement> & React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
574
|
+
asChild?: boolean;
|
|
575
|
+
size?: "sm" | "md";
|
|
576
|
+
isActive?: boolean;
|
|
577
|
+
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
578
|
+
//# sourceMappingURL=sidebar.d.ts.map
|
|
579
|
+
|
|
580
|
+
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
581
|
+
//# sourceMappingURL=skeleton.d.ts.map
|
|
582
|
+
|
|
583
|
+
declare const Slider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
584
|
+
//# sourceMappingURL=slider.d.ts.map
|
|
585
|
+
|
|
586
|
+
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
587
|
+
//# sourceMappingURL=switch.d.ts.map
|
|
588
|
+
|
|
589
|
+
declare const Table: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableElement> & React$1.RefAttributes<HTMLTableElement>>;
|
|
590
|
+
declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
591
|
+
declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
592
|
+
declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
593
|
+
declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
594
|
+
declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
595
|
+
declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
596
|
+
declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
597
|
+
//# sourceMappingURL=table.d.ts.map
|
|
598
|
+
|
|
599
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
600
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
601
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
602
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
603
|
+
//# sourceMappingURL=tabs.d.ts.map
|
|
604
|
+
|
|
605
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
606
|
+
//# sourceMappingURL=textarea.d.ts.map
|
|
607
|
+
|
|
608
|
+
declare const ToastProvider: React$1.FC<ToastPrimitives.ToastProviderProps>;
|
|
609
|
+
declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
|
|
610
|
+
declare const Toast$1: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastProps & React$1.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
|
|
611
|
+
variant?: "default" | "destructive" | "success" | null | undefined;
|
|
612
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLIElement>>;
|
|
613
|
+
declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
614
|
+
declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
615
|
+
declare const ToastTitle: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastTitleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
616
|
+
declare const ToastDescription: React$1.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastDescriptionProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
617
|
+
type ToastProps = React$1.ComponentPropsWithoutRef<typeof Toast$1>;
|
|
618
|
+
type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
|
|
619
|
+
//# sourceMappingURL=toast.d.ts.map
|
|
620
|
+
|
|
621
|
+
declare function Toaster(): react_jsx_runtime.JSX.Element;
|
|
622
|
+
|
|
623
|
+
interface CalendarFormProps extends React$1__default.HTMLAttributes<HTMLDivElement> {
|
|
624
|
+
getDataFilter: (from: Date | null, to: Date | null) => void;
|
|
625
|
+
}
|
|
626
|
+
declare function UseCalendar({ className, getDataFilter }: CalendarFormProps): react_jsx_runtime.JSX.Element;
|
|
627
|
+
|
|
628
|
+
type CalendarProps = React$1__default.ComponentProps<typeof DayPicker>;
|
|
629
|
+
|
|
630
|
+
type Theme = 'light' | 'dark' | 'dark-side';
|
|
631
|
+
type PortalDefinitions = {
|
|
632
|
+
faviconPath: string;
|
|
633
|
+
fullLogoPath: string;
|
|
634
|
+
bannerDesktopPath: string;
|
|
635
|
+
mvnoPrimaryColor: string;
|
|
636
|
+
mvnoMainTheme: Theme;
|
|
637
|
+
title: string;
|
|
638
|
+
hideModuleSwitcher: boolean;
|
|
639
|
+
};
|
|
640
|
+
type ThemeProviderProps = {
|
|
641
|
+
children: React.ReactNode;
|
|
642
|
+
defaultTheme?: PortalDefinitions;
|
|
643
|
+
storageKey?: string;
|
|
644
|
+
};
|
|
645
|
+
type ThemeProviderState = {
|
|
646
|
+
portalDefinitions: PortalDefinitions;
|
|
647
|
+
setPortalDefinitions: (portalDefinitions: PortalDefinitions) => void;
|
|
648
|
+
};
|
|
649
|
+
declare const DEFAULT_THEME_DATA: PortalDefinitions;
|
|
650
|
+
declare function ThemeProvider({ children, defaultTheme, storageKey, ...props }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
651
|
+
declare const useTheme: () => ThemeProviderState;
|
|
652
|
+
|
|
653
|
+
interface Props$g {
|
|
654
|
+
control: any;
|
|
655
|
+
name: string;
|
|
656
|
+
label: string;
|
|
657
|
+
subLabel?: string;
|
|
658
|
+
helpText?: JSX.Element;
|
|
659
|
+
placeholder?: string;
|
|
660
|
+
className?: string;
|
|
661
|
+
disabled?: boolean;
|
|
662
|
+
required?: boolean;
|
|
663
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
664
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
665
|
+
}
|
|
666
|
+
declare const FormInputCpfCnpj: React.FC<Props$g>;
|
|
667
|
+
|
|
668
|
+
interface Props$f {
|
|
669
|
+
control: any;
|
|
670
|
+
name: string;
|
|
671
|
+
label: string;
|
|
672
|
+
subLabel?: string;
|
|
673
|
+
helpText?: JSX.Element;
|
|
674
|
+
className?: string;
|
|
675
|
+
disabled?: boolean;
|
|
676
|
+
required?: boolean;
|
|
677
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
678
|
+
}
|
|
679
|
+
declare const FormInputCurrency: React.FC<Props$f>;
|
|
680
|
+
|
|
681
|
+
interface Props$e {
|
|
682
|
+
control: any;
|
|
683
|
+
name: string;
|
|
684
|
+
label: string;
|
|
685
|
+
subLabel?: string;
|
|
686
|
+
helpText?: JSX.Element;
|
|
687
|
+
placeholder?: string;
|
|
688
|
+
className?: string;
|
|
689
|
+
disabled?: boolean;
|
|
690
|
+
required?: boolean;
|
|
691
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
692
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
693
|
+
}
|
|
694
|
+
declare const FormInputDate: React.FC<Props$e>;
|
|
695
|
+
|
|
696
|
+
interface Props$d {
|
|
697
|
+
control: any;
|
|
698
|
+
name: string;
|
|
699
|
+
label: string;
|
|
700
|
+
subLabel?: string;
|
|
701
|
+
helpText?: JSX.Element;
|
|
702
|
+
placeholder?: string;
|
|
703
|
+
className?: string;
|
|
704
|
+
disabled?: boolean;
|
|
705
|
+
required?: boolean;
|
|
706
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement> | DateRange | undefined) => void;
|
|
707
|
+
}
|
|
708
|
+
declare const FormDataRange: React.FC<Props$d>;
|
|
709
|
+
|
|
710
|
+
interface Props$c {
|
|
711
|
+
control: any;
|
|
712
|
+
name: string;
|
|
713
|
+
label: string;
|
|
714
|
+
subLabel?: string;
|
|
715
|
+
helpText?: JSX.Element;
|
|
716
|
+
className?: string;
|
|
717
|
+
disabled?: boolean;
|
|
718
|
+
required?: boolean;
|
|
719
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
720
|
+
}
|
|
721
|
+
declare const FormInputDecimal: React.FC<Props$c>;
|
|
722
|
+
|
|
723
|
+
interface Props$b {
|
|
724
|
+
control: any;
|
|
725
|
+
name: string;
|
|
726
|
+
label: string;
|
|
727
|
+
subLabel?: string;
|
|
728
|
+
helpText?: JSX.Element;
|
|
729
|
+
placeholder?: string;
|
|
730
|
+
className?: string;
|
|
731
|
+
disabled?: boolean;
|
|
732
|
+
required?: boolean;
|
|
733
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
734
|
+
}
|
|
735
|
+
declare const FormInputFile: React.FC<Props$b>;
|
|
736
|
+
|
|
737
|
+
interface Props$a {
|
|
738
|
+
control: any;
|
|
739
|
+
name: string;
|
|
740
|
+
className?: string;
|
|
741
|
+
}
|
|
742
|
+
declare const FormInputGhost: React.FC<Props$a>;
|
|
743
|
+
|
|
744
|
+
interface Props$9 {
|
|
745
|
+
control: any;
|
|
746
|
+
type?: string;
|
|
747
|
+
name: string;
|
|
748
|
+
label: string;
|
|
749
|
+
subLabel?: string;
|
|
750
|
+
helpText?: JSX.Element;
|
|
751
|
+
placeholder?: string;
|
|
752
|
+
maxLength?: number;
|
|
753
|
+
className?: string;
|
|
754
|
+
disabled?: boolean;
|
|
755
|
+
required?: boolean;
|
|
756
|
+
onChange?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
757
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
758
|
+
}
|
|
759
|
+
declare const FormInput: React.FC<Props$9>;
|
|
760
|
+
|
|
761
|
+
interface Props$8 {
|
|
762
|
+
control: any;
|
|
763
|
+
name: string;
|
|
764
|
+
label: string;
|
|
765
|
+
subLabel?: string;
|
|
766
|
+
helpText?: JSX.Element;
|
|
767
|
+
placeholder?: string;
|
|
768
|
+
mask: string;
|
|
769
|
+
maskPlaceholder?: string | null;
|
|
770
|
+
className?: string;
|
|
771
|
+
disabled?: boolean;
|
|
772
|
+
required?: boolean;
|
|
773
|
+
inputRef?: React.Ref<HTMLInputElement>;
|
|
774
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
775
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
776
|
+
}
|
|
777
|
+
declare const FormInputMask: React.FC<Props$8>;
|
|
778
|
+
|
|
779
|
+
declare const multiSelectVariants: (props?: ({
|
|
780
|
+
variant?: "default" | "destructive" | "secondary" | "inverted" | null | undefined;
|
|
781
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
782
|
+
interface MultiSelectOption {
|
|
783
|
+
value: string;
|
|
784
|
+
label: string;
|
|
785
|
+
}
|
|
786
|
+
interface MultiSelectProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof multiSelectVariants> {
|
|
787
|
+
control: any;
|
|
788
|
+
name: string;
|
|
789
|
+
label?: string;
|
|
790
|
+
subLabel?: string;
|
|
791
|
+
helpText?: JSX.Element;
|
|
792
|
+
options: MultiSelectOption[];
|
|
793
|
+
placeholder?: string;
|
|
794
|
+
maxCount?: number;
|
|
795
|
+
modalPopover?: boolean;
|
|
796
|
+
asChild?: boolean;
|
|
797
|
+
className?: string;
|
|
798
|
+
required?: boolean;
|
|
799
|
+
}
|
|
800
|
+
declare const MultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
801
|
+
|
|
802
|
+
interface Props$7 {
|
|
803
|
+
control: any;
|
|
804
|
+
name: string;
|
|
805
|
+
label: string;
|
|
806
|
+
subLabel?: string;
|
|
807
|
+
helpText?: JSX.Element;
|
|
808
|
+
placeholder?: string;
|
|
809
|
+
maxLength?: number;
|
|
810
|
+
className?: string;
|
|
811
|
+
disabled?: boolean;
|
|
812
|
+
required?: boolean;
|
|
813
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
814
|
+
}
|
|
815
|
+
declare const FormInputPassWord: React.FC<Props$7>;
|
|
816
|
+
|
|
817
|
+
interface Props$6 {
|
|
818
|
+
control: any;
|
|
819
|
+
name: string;
|
|
820
|
+
label: string;
|
|
821
|
+
subLabel?: string;
|
|
822
|
+
helpText?: JSX.Element;
|
|
823
|
+
className?: string;
|
|
824
|
+
disabled?: boolean;
|
|
825
|
+
required?: boolean;
|
|
826
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
827
|
+
}
|
|
828
|
+
declare const FormInputPercent: React.FC<Props$6>;
|
|
829
|
+
|
|
830
|
+
interface Props$5 {
|
|
831
|
+
control: any;
|
|
832
|
+
name: string;
|
|
833
|
+
label: string;
|
|
834
|
+
subLabel?: string;
|
|
835
|
+
helpText?: JSX.Element;
|
|
836
|
+
placeholder?: string;
|
|
837
|
+
className?: string;
|
|
838
|
+
disabled?: boolean;
|
|
839
|
+
required?: boolean;
|
|
840
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
841
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
842
|
+
}
|
|
843
|
+
declare const FormInputPhone: React.FC<Props$5>;
|
|
844
|
+
|
|
845
|
+
interface RadioOption {
|
|
846
|
+
value: string;
|
|
847
|
+
label: string;
|
|
848
|
+
description?: string;
|
|
849
|
+
disabled?: boolean;
|
|
850
|
+
}
|
|
851
|
+
interface Props$4 {
|
|
852
|
+
control: any;
|
|
853
|
+
name: string;
|
|
854
|
+
value?: string;
|
|
855
|
+
label?: string;
|
|
856
|
+
subLabel?: string;
|
|
857
|
+
helpText?: JSX.Element;
|
|
858
|
+
className?: string;
|
|
859
|
+
classNameOptions?: string;
|
|
860
|
+
disabled?: boolean;
|
|
861
|
+
required?: boolean;
|
|
862
|
+
options?: RadioOption[];
|
|
863
|
+
onChange?: (value: string) => void;
|
|
864
|
+
}
|
|
865
|
+
declare const FormRadioGroup: React.FC<Props$4>;
|
|
866
|
+
|
|
867
|
+
interface SelectOption {
|
|
868
|
+
value: string;
|
|
869
|
+
label: string;
|
|
870
|
+
default?: boolean;
|
|
871
|
+
}
|
|
872
|
+
interface Props$3 {
|
|
873
|
+
control: any;
|
|
874
|
+
name: string;
|
|
875
|
+
label: string;
|
|
876
|
+
subLabel?: string;
|
|
877
|
+
helpText?: JSX.Element;
|
|
878
|
+
placeholder?: string;
|
|
879
|
+
className?: string;
|
|
880
|
+
disabled?: boolean;
|
|
881
|
+
required?: boolean;
|
|
882
|
+
options: SelectOption[];
|
|
883
|
+
}
|
|
884
|
+
declare const FormSelect: React.FC<Props$3>;
|
|
885
|
+
|
|
886
|
+
interface Props$2 {
|
|
887
|
+
control: any;
|
|
888
|
+
name: string;
|
|
889
|
+
label: string;
|
|
890
|
+
subLabel?: string;
|
|
891
|
+
helpText?: JSX.Element;
|
|
892
|
+
className?: string;
|
|
893
|
+
disabled?: boolean;
|
|
894
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
895
|
+
}
|
|
896
|
+
declare const FormInputSwitch: React.FC<Props$2>;
|
|
897
|
+
|
|
898
|
+
interface Props$1 {
|
|
899
|
+
control: any;
|
|
900
|
+
name: string;
|
|
901
|
+
label: string;
|
|
902
|
+
subLabel?: string;
|
|
903
|
+
helpText?: JSX.Element;
|
|
904
|
+
placeholder?: string;
|
|
905
|
+
maxLength?: number;
|
|
906
|
+
className?: string;
|
|
907
|
+
disabled?: boolean;
|
|
908
|
+
required?: boolean;
|
|
909
|
+
inputRef?: React.Ref<HTMLInputElement>;
|
|
910
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
911
|
+
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
912
|
+
}
|
|
913
|
+
declare const FormInputText: React.FC<Props$1>;
|
|
914
|
+
|
|
915
|
+
interface Props {
|
|
916
|
+
control: any;
|
|
917
|
+
name: string;
|
|
918
|
+
label: string;
|
|
919
|
+
subLabel?: string;
|
|
920
|
+
helpText?: JSX.Element;
|
|
921
|
+
placeholder?: string;
|
|
922
|
+
className?: string;
|
|
923
|
+
disabled?: boolean;
|
|
924
|
+
required?: boolean;
|
|
925
|
+
onChange?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void;
|
|
926
|
+
onKeyUp?: (event: React.KeyboardEvent<HTMLTextAreaElement>) => void;
|
|
927
|
+
}
|
|
928
|
+
declare const FormTextarea: React.FC<Props>;
|
|
929
|
+
|
|
930
|
+
declare const formHelpText: (helpText: JSX.Element) => react_jsx_runtime.JSX.Element;
|
|
931
|
+
//# sourceMappingURL=form-help-text.d.ts.map
|
|
932
|
+
|
|
933
|
+
type FormLabelComponent = React$1__default.ForwardRefExoticComponent<React$1__default.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & React$1__default.RefAttributes<React$1__default.ElementRef<typeof LabelPrimitive.Root>>>;
|
|
934
|
+
declare const formLabel: (FormLabel: FormLabelComponent, label: string) => react_jsx_runtime.JSX.Element;
|
|
935
|
+
declare const formLabelAndSubLabel: (FormLabel: FormLabelComponent, label: string, subLabel?: string, required?: boolean | undefined, className?: string) => react_jsx_runtime.JSX.Element;
|
|
936
|
+
//# sourceMappingURL=form-label.d.ts.map
|
|
937
|
+
|
|
938
|
+
type FormMessageComponent = React$1__default.ForwardRefExoticComponent<React$1__default.HTMLAttributes<HTMLParagraphElement> & React$1__default.RefAttributes<HTMLParagraphElement>>;
|
|
939
|
+
declare const formMessage: (FormMessage: FormMessageComponent) => react_jsx_runtime.JSX.Element;
|
|
940
|
+
//# sourceMappingURL=form-message.d.ts.map
|
|
941
|
+
|
|
942
|
+
type ActionTable = {
|
|
943
|
+
label: string;
|
|
944
|
+
icon?: JSX.Element;
|
|
945
|
+
variant?: string;
|
|
946
|
+
onClick?: (ids: any[], rows: any[]) => void;
|
|
947
|
+
className?: string;
|
|
948
|
+
hideUnselectedRows?: boolean;
|
|
949
|
+
disabled?: boolean;
|
|
950
|
+
};
|
|
951
|
+
type ActionRow = {
|
|
952
|
+
label: string;
|
|
953
|
+
icon?: JSX.Element;
|
|
954
|
+
variant?: string;
|
|
955
|
+
onClick?: (row: any) => void;
|
|
956
|
+
className?: (row: any) => string;
|
|
957
|
+
disabled?: (row: any) => boolean;
|
|
958
|
+
};
|
|
959
|
+
interface ExportDataTable {
|
|
960
|
+
type: 'xlsx' | 'dialog';
|
|
961
|
+
url: string;
|
|
962
|
+
params?: Record<string, string>;
|
|
963
|
+
}
|
|
964
|
+
interface FiltersActions {
|
|
965
|
+
fields: JSX.Element;
|
|
966
|
+
countFilters: number;
|
|
967
|
+
filterOpen: boolean;
|
|
968
|
+
setFilterOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
interface DataTableProps<TData> {
|
|
972
|
+
columns: ColumnDef<TData>[];
|
|
973
|
+
data: TData[];
|
|
974
|
+
actions?: ActionTable[];
|
|
975
|
+
actionsRow?: ActionRow[];
|
|
976
|
+
customFilters?: JSX.Element;
|
|
977
|
+
className?: string;
|
|
978
|
+
title?: string;
|
|
979
|
+
rowsPage?: number;
|
|
980
|
+
setSearch?: (value?: string) => void;
|
|
981
|
+
setSelectRows?: (ids: string[]) => void;
|
|
982
|
+
pageChanged?: (pageNumber: number) => void;
|
|
983
|
+
pageSizeChanged?: (pageSize: number) => void;
|
|
984
|
+
totalRows?: number;
|
|
985
|
+
filtersActions?: FiltersActions;
|
|
986
|
+
exportData?: ExportDataTable;
|
|
987
|
+
textNoRecords?: string;
|
|
988
|
+
heightRemainingScroll?: number;
|
|
989
|
+
hideFilterField?: boolean;
|
|
990
|
+
multiRowSelection?: {
|
|
991
|
+
callback: (selectedRows: any[]) => void;
|
|
992
|
+
};
|
|
993
|
+
hidePagination?: boolean;
|
|
994
|
+
disablePagination?: boolean;
|
|
995
|
+
isLoading?: boolean;
|
|
996
|
+
fixedHeight?: number;
|
|
997
|
+
}
|
|
998
|
+
interface OriginalDataTableData {
|
|
999
|
+
id: string;
|
|
1000
|
+
checked?: boolean;
|
|
1001
|
+
}
|
|
1002
|
+
declare function DataTable<TData>({ columns, data, className, title, rowsPage, actions, actionsRow, customFilters, setSearch, pageChanged, pageSizeChanged, totalRows, filtersActions, exportData, textNoRecords, heightRemainingScroll, hideFilterField, multiRowSelection, hidePagination, disablePagination, isLoading, fixedHeight, }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
|
|
1003
|
+
|
|
1004
|
+
interface DataTableExportProps {
|
|
1005
|
+
exportData?: ExportDataTable;
|
|
1006
|
+
totalRows: number;
|
|
1007
|
+
}
|
|
1008
|
+
declare function DataTableExport({ exportData, totalRows }: DataTableExportProps): react_jsx_runtime.JSX.Element | null | undefined;
|
|
1009
|
+
|
|
1010
|
+
interface DataTableFooterProps<TData> {
|
|
1011
|
+
hidePagination?: boolean;
|
|
1012
|
+
disablePagination?: boolean;
|
|
1013
|
+
isLoading?: boolean;
|
|
1014
|
+
totalRows: number;
|
|
1015
|
+
totalPages: number;
|
|
1016
|
+
currentPage: number;
|
|
1017
|
+
pagination: PaginationState;
|
|
1018
|
+
handlePageSize: (value: number) => void;
|
|
1019
|
+
handlePage: (value: number) => void;
|
|
1020
|
+
previousPage: {
|
|
1021
|
+
action: () => void;
|
|
1022
|
+
disabled: boolean;
|
|
1023
|
+
};
|
|
1024
|
+
nextPage: {
|
|
1025
|
+
action: () => void;
|
|
1026
|
+
disabled: boolean;
|
|
1027
|
+
};
|
|
1028
|
+
exportData?: ExportDataTable;
|
|
1029
|
+
}
|
|
1030
|
+
declare function DataTableFooter<TData>({ isLoading, totalRows, totalPages, currentPage, hidePagination, disablePagination, pagination, handlePageSize, handlePage, previousPage, nextPage, exportData, }: DataTableFooterProps<TData>): false | react_jsx_runtime.JSX.Element;
|
|
1031
|
+
|
|
1032
|
+
interface DataTableHeaderProps<TData> {
|
|
1033
|
+
table: Table$1<TData>;
|
|
1034
|
+
canActionsRow?: boolean;
|
|
1035
|
+
enableMultiRowSelection?: boolean;
|
|
1036
|
+
}
|
|
1037
|
+
declare function DataTableHeader<TData>({ table, canActionsRow, enableMultiRowSelection }: DataTableHeaderProps<TData>): react_jsx_runtime.JSX.Element;
|
|
1038
|
+
|
|
1039
|
+
interface DataTableRowsProps<TData> {
|
|
1040
|
+
table: Table$1<TData>;
|
|
1041
|
+
columns: ColumnDef<TData>[];
|
|
1042
|
+
isLoading?: boolean;
|
|
1043
|
+
actionsRow?: ActionRow[];
|
|
1044
|
+
textNoRecords?: string;
|
|
1045
|
+
enableMultiRowSelection?: boolean;
|
|
1046
|
+
}
|
|
1047
|
+
declare function DataTableRows<TData>({ table, isLoading, columns, actionsRow, textNoRecords, enableMultiRowSelection }: DataTableRowsProps<TData>): react_jsx_runtime.JSX.Element | react_jsx_runtime.JSX.Element[];
|
|
1048
|
+
|
|
1049
|
+
declare const SidebarSubmenuType: {
|
|
1050
|
+
readonly COLLAPSIBLE: "collapsible";
|
|
1051
|
+
readonly DROPDOWN: "dropdown";
|
|
1052
|
+
};
|
|
1053
|
+
type SidebarSubmenuType = (typeof SidebarSubmenuType)[keyof typeof SidebarSubmenuType];
|
|
1054
|
+
interface Module {
|
|
1055
|
+
value: string;
|
|
1056
|
+
path: string;
|
|
1057
|
+
title: string;
|
|
1058
|
+
icon: React.ReactNode;
|
|
1059
|
+
subTitle: string;
|
|
1060
|
+
}
|
|
1061
|
+
interface SidebarPage {
|
|
1062
|
+
module: Module;
|
|
1063
|
+
path: string;
|
|
1064
|
+
icon?: React.ReactNode;
|
|
1065
|
+
title: string;
|
|
1066
|
+
hideSidebar: boolean;
|
|
1067
|
+
displayOnlyresellerIsAdm?: boolean;
|
|
1068
|
+
subMenuType?: SidebarSubmenuType;
|
|
1069
|
+
subMenuItems?: {
|
|
1070
|
+
label: string;
|
|
1071
|
+
description?: string;
|
|
1072
|
+
path: string;
|
|
1073
|
+
displayOnlyresellerIsAdm?: boolean;
|
|
1074
|
+
disabled?: boolean;
|
|
1075
|
+
}[];
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
interface ModuleSwitcherProps {
|
|
1079
|
+
modules: Module[];
|
|
1080
|
+
activeModule: Module | undefined;
|
|
1081
|
+
onModuleChange: (module: Module) => void;
|
|
1082
|
+
}
|
|
1083
|
+
declare const ModuleSwitcher: ({ modules, activeModule, onModuleChange, }: ModuleSwitcherProps) => react_jsx_runtime.JSX.Element;
|
|
1084
|
+
//# sourceMappingURL=module-switcher.d.ts.map
|
|
1085
|
+
|
|
1086
|
+
interface NavFooterProps {
|
|
1087
|
+
pages: SidebarPage[];
|
|
1088
|
+
}
|
|
1089
|
+
declare const NavFooter: ({ pages }: NavFooterProps) => react_jsx_runtime.JSX.Element;
|
|
1090
|
+
//# sourceMappingURL=nav-footer.d.ts.map
|
|
1091
|
+
|
|
1092
|
+
interface NavMainProps {
|
|
1093
|
+
pages: SidebarPage[];
|
|
1094
|
+
}
|
|
1095
|
+
declare const NavMain: ({ pages }: NavMainProps) => react_jsx_runtime.JSX.Element;
|
|
1096
|
+
//# sourceMappingURL=nav-main.d.ts.map
|
|
1097
|
+
|
|
1098
|
+
interface NavSubmenuCollapsibleProps {
|
|
1099
|
+
item: SidebarPage;
|
|
1100
|
+
selectedRoute: string | null;
|
|
1101
|
+
onClick: (path: string) => void;
|
|
1102
|
+
}
|
|
1103
|
+
declare const NavSubmenuCollapsible: ({ item, selectedRoute, onClick }: NavSubmenuCollapsibleProps) => react_jsx_runtime.JSX.Element;
|
|
1104
|
+
//# sourceMappingURL=nav-submenu-collapsible.d.ts.map
|
|
1105
|
+
|
|
1106
|
+
interface NavSubmenuDropdownProps {
|
|
1107
|
+
cols?: number;
|
|
1108
|
+
item: SidebarPage;
|
|
1109
|
+
selectedRoute: string | null;
|
|
1110
|
+
onClick: (path: string) => void;
|
|
1111
|
+
}
|
|
1112
|
+
declare const NavSubmenuDropdown: ({ cols, item, selectedRoute, onClick }: NavSubmenuDropdownProps) => react_jsx_runtime.JSX.Element;
|
|
1113
|
+
//# sourceMappingURL=nav-submenu-dropdown.d.ts.map
|
|
1114
|
+
|
|
1115
|
+
interface NavUserProps {
|
|
1116
|
+
userName: string;
|
|
1117
|
+
userEmail: string;
|
|
1118
|
+
userInitials: string;
|
|
1119
|
+
callbackLogout: () => void;
|
|
1120
|
+
}
|
|
1121
|
+
declare const NavUser: ({ userName, userEmail, userInitials, callbackLogout }: NavUserProps) => react_jsx_runtime.JSX.Element;
|
|
1122
|
+
//# sourceMappingURL=nav-user.d.ts.map
|
|
1123
|
+
|
|
1124
|
+
interface SidebarItemProps$1 {
|
|
1125
|
+
item: SidebarPage;
|
|
1126
|
+
selectedRoute: string | null;
|
|
1127
|
+
onClick?: (module: Module | null, path: string) => void;
|
|
1128
|
+
}
|
|
1129
|
+
declare const SidebarButton: ({ item, selectedRoute, onClick }: SidebarItemProps$1) => react_jsx_runtime.JSX.Element;
|
|
1130
|
+
//# sourceMappingURL=sidebar-button.d.ts.map
|
|
1131
|
+
|
|
1132
|
+
interface SidebarItemProps {
|
|
1133
|
+
item: SidebarPage;
|
|
1134
|
+
selectedRoute: string | null;
|
|
1135
|
+
onClick?: (module: Module | null, path: string) => void;
|
|
1136
|
+
}
|
|
1137
|
+
declare const SidebarItem: ({ item, selectedRoute, onClick }: SidebarItemProps) => react_jsx_runtime.JSX.Element;
|
|
1138
|
+
//# sourceMappingURL=sidebar-item.d.ts.map
|
|
1139
|
+
|
|
1140
|
+
interface SidebarItemTwoLinesProps {
|
|
1141
|
+
item: {
|
|
1142
|
+
iconLeft: React$1.ReactNode;
|
|
1143
|
+
title: string;
|
|
1144
|
+
subTitle: string;
|
|
1145
|
+
iconRight?: React$1.ReactNode | null;
|
|
1146
|
+
};
|
|
1147
|
+
}
|
|
1148
|
+
declare const SidebarItemTwoLines: ({ item }: SidebarItemTwoLinesProps) => react_jsx_runtime.JSX.Element;
|
|
1149
|
+
//# sourceMappingURL=sidebar-item-two-lines.d.ts.map
|
|
1150
|
+
|
|
1151
|
+
declare const Header: ({ splittedPath, modules, pages, isLoading, combobox, }: {
|
|
1152
|
+
splittedPath: string[];
|
|
1153
|
+
modules: Module[];
|
|
1154
|
+
pages: SidebarPage[];
|
|
1155
|
+
isLoading: boolean;
|
|
1156
|
+
combobox: ReactNode;
|
|
1157
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1158
|
+
//# sourceMappingURL=header.d.ts.map
|
|
1159
|
+
|
|
1160
|
+
interface LabelWithTitleProps {
|
|
1161
|
+
title: string;
|
|
1162
|
+
value: string;
|
|
1163
|
+
value2?: string;
|
|
1164
|
+
required?: boolean;
|
|
1165
|
+
showCopyIcon?: boolean;
|
|
1166
|
+
className?: string;
|
|
1167
|
+
isLoading?: boolean;
|
|
1168
|
+
}
|
|
1169
|
+
declare const LabelWithTitle: React$1__default.FC<LabelWithTitleProps>;
|
|
1170
|
+
//# sourceMappingURL=label.d.ts.map
|
|
1171
|
+
|
|
1172
|
+
declare const NotFound: () => react_jsx_runtime.JSX.Element;
|
|
1173
|
+
//# sourceMappingURL=not-found.d.ts.map
|
|
1174
|
+
|
|
1175
|
+
type ToasterToast = ToastProps & {
|
|
1176
|
+
id: string;
|
|
1177
|
+
title?: React$1.ReactNode;
|
|
1178
|
+
description?: React$1.ReactNode;
|
|
1179
|
+
action?: ToastActionElement;
|
|
1180
|
+
icon?: React$1.ReactNode;
|
|
1181
|
+
};
|
|
1182
|
+
type Toast = Omit<ToasterToast, 'id'>;
|
|
1183
|
+
declare function toast({ ...props }: Toast): {
|
|
1184
|
+
id: string;
|
|
1185
|
+
dismiss: () => void;
|
|
1186
|
+
update: (props: ToasterToast) => void;
|
|
1187
|
+
};
|
|
1188
|
+
declare function useToast(): {
|
|
1189
|
+
toast: typeof toast;
|
|
1190
|
+
dismiss: (toastId?: string) => void;
|
|
1191
|
+
toasts: ToasterToast[];
|
|
1192
|
+
};
|
|
1193
|
+
|
|
1194
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
1195
|
+
|
|
1196
|
+
declare function getTailwindColorShades(): {
|
|
1197
|
+
slate: {
|
|
1198
|
+
50: string;
|
|
1199
|
+
100: string;
|
|
1200
|
+
200: string;
|
|
1201
|
+
300: string;
|
|
1202
|
+
400: string;
|
|
1203
|
+
500: string;
|
|
1204
|
+
600: string;
|
|
1205
|
+
700: string;
|
|
1206
|
+
800: string;
|
|
1207
|
+
900: string;
|
|
1208
|
+
950: string;
|
|
1209
|
+
};
|
|
1210
|
+
gray: {
|
|
1211
|
+
50: string;
|
|
1212
|
+
100: string;
|
|
1213
|
+
200: string;
|
|
1214
|
+
300: string;
|
|
1215
|
+
400: string;
|
|
1216
|
+
500: string;
|
|
1217
|
+
600: string;
|
|
1218
|
+
700: string;
|
|
1219
|
+
800: string;
|
|
1220
|
+
900: string;
|
|
1221
|
+
950: string;
|
|
1222
|
+
};
|
|
1223
|
+
zinc: {
|
|
1224
|
+
50: string;
|
|
1225
|
+
100: string;
|
|
1226
|
+
200: string;
|
|
1227
|
+
300: string;
|
|
1228
|
+
400: string;
|
|
1229
|
+
500: string;
|
|
1230
|
+
600: string;
|
|
1231
|
+
700: string;
|
|
1232
|
+
800: string;
|
|
1233
|
+
900: string;
|
|
1234
|
+
950: string;
|
|
1235
|
+
};
|
|
1236
|
+
neutral: {
|
|
1237
|
+
50: string;
|
|
1238
|
+
100: string;
|
|
1239
|
+
200: string;
|
|
1240
|
+
300: string;
|
|
1241
|
+
400: string;
|
|
1242
|
+
500: string;
|
|
1243
|
+
600: string;
|
|
1244
|
+
700: string;
|
|
1245
|
+
800: string;
|
|
1246
|
+
900: string;
|
|
1247
|
+
950: string;
|
|
1248
|
+
};
|
|
1249
|
+
stone: {
|
|
1250
|
+
50: string;
|
|
1251
|
+
100: string;
|
|
1252
|
+
200: string;
|
|
1253
|
+
300: string;
|
|
1254
|
+
400: string;
|
|
1255
|
+
500: string;
|
|
1256
|
+
600: string;
|
|
1257
|
+
700: string;
|
|
1258
|
+
800: string;
|
|
1259
|
+
900: string;
|
|
1260
|
+
950: string;
|
|
1261
|
+
};
|
|
1262
|
+
red: {
|
|
1263
|
+
50: string;
|
|
1264
|
+
100: string;
|
|
1265
|
+
200: string;
|
|
1266
|
+
300: string;
|
|
1267
|
+
400: string;
|
|
1268
|
+
500: string;
|
|
1269
|
+
600: string;
|
|
1270
|
+
700: string;
|
|
1271
|
+
800: string;
|
|
1272
|
+
900: string;
|
|
1273
|
+
950: string;
|
|
1274
|
+
};
|
|
1275
|
+
orange: {
|
|
1276
|
+
50: string;
|
|
1277
|
+
100: string;
|
|
1278
|
+
200: string;
|
|
1279
|
+
300: string;
|
|
1280
|
+
400: string;
|
|
1281
|
+
500: string;
|
|
1282
|
+
600: string;
|
|
1283
|
+
700: string;
|
|
1284
|
+
800: string;
|
|
1285
|
+
900: string;
|
|
1286
|
+
950: string;
|
|
1287
|
+
};
|
|
1288
|
+
amber: {
|
|
1289
|
+
50: string;
|
|
1290
|
+
100: string;
|
|
1291
|
+
200: string;
|
|
1292
|
+
300: string;
|
|
1293
|
+
400: string;
|
|
1294
|
+
500: string;
|
|
1295
|
+
600: string;
|
|
1296
|
+
700: string;
|
|
1297
|
+
800: string;
|
|
1298
|
+
900: string;
|
|
1299
|
+
950: string;
|
|
1300
|
+
};
|
|
1301
|
+
yellow: {
|
|
1302
|
+
50: string;
|
|
1303
|
+
100: string;
|
|
1304
|
+
200: string;
|
|
1305
|
+
300: string;
|
|
1306
|
+
400: string;
|
|
1307
|
+
500: string;
|
|
1308
|
+
600: string;
|
|
1309
|
+
700: string;
|
|
1310
|
+
800: string;
|
|
1311
|
+
900: string;
|
|
1312
|
+
950: string;
|
|
1313
|
+
};
|
|
1314
|
+
lime: {
|
|
1315
|
+
50: string;
|
|
1316
|
+
100: string;
|
|
1317
|
+
200: string;
|
|
1318
|
+
300: string;
|
|
1319
|
+
400: string;
|
|
1320
|
+
500: string;
|
|
1321
|
+
600: string;
|
|
1322
|
+
700: string;
|
|
1323
|
+
800: string;
|
|
1324
|
+
900: string;
|
|
1325
|
+
950: string;
|
|
1326
|
+
};
|
|
1327
|
+
green: {
|
|
1328
|
+
50: string;
|
|
1329
|
+
100: string;
|
|
1330
|
+
200: string;
|
|
1331
|
+
300: string;
|
|
1332
|
+
400: string;
|
|
1333
|
+
500: string;
|
|
1334
|
+
600: string;
|
|
1335
|
+
700: string;
|
|
1336
|
+
800: string;
|
|
1337
|
+
900: string;
|
|
1338
|
+
950: string;
|
|
1339
|
+
};
|
|
1340
|
+
emerald: {
|
|
1341
|
+
50: string;
|
|
1342
|
+
100: string;
|
|
1343
|
+
200: string;
|
|
1344
|
+
300: string;
|
|
1345
|
+
400: string;
|
|
1346
|
+
500: string;
|
|
1347
|
+
600: string;
|
|
1348
|
+
700: string;
|
|
1349
|
+
800: string;
|
|
1350
|
+
900: string;
|
|
1351
|
+
950: string;
|
|
1352
|
+
};
|
|
1353
|
+
teal: {
|
|
1354
|
+
50: string;
|
|
1355
|
+
100: string;
|
|
1356
|
+
200: string;
|
|
1357
|
+
300: string;
|
|
1358
|
+
400: string;
|
|
1359
|
+
500: string;
|
|
1360
|
+
600: string;
|
|
1361
|
+
700: string;
|
|
1362
|
+
800: string;
|
|
1363
|
+
900: string;
|
|
1364
|
+
950: string;
|
|
1365
|
+
};
|
|
1366
|
+
cyan: {
|
|
1367
|
+
50: string;
|
|
1368
|
+
100: string;
|
|
1369
|
+
200: string;
|
|
1370
|
+
300: string;
|
|
1371
|
+
400: string;
|
|
1372
|
+
500: string;
|
|
1373
|
+
600: string;
|
|
1374
|
+
700: string;
|
|
1375
|
+
800: string;
|
|
1376
|
+
900: string;
|
|
1377
|
+
950: string;
|
|
1378
|
+
};
|
|
1379
|
+
sky: {
|
|
1380
|
+
50: string;
|
|
1381
|
+
100: string;
|
|
1382
|
+
200: string;
|
|
1383
|
+
300: string;
|
|
1384
|
+
400: string;
|
|
1385
|
+
500: string;
|
|
1386
|
+
600: string;
|
|
1387
|
+
700: string;
|
|
1388
|
+
800: string;
|
|
1389
|
+
900: string;
|
|
1390
|
+
950: string;
|
|
1391
|
+
};
|
|
1392
|
+
blue: {
|
|
1393
|
+
50: string;
|
|
1394
|
+
100: string;
|
|
1395
|
+
200: string;
|
|
1396
|
+
300: string;
|
|
1397
|
+
400: string;
|
|
1398
|
+
500: string;
|
|
1399
|
+
600: string;
|
|
1400
|
+
700: string;
|
|
1401
|
+
800: string;
|
|
1402
|
+
900: string;
|
|
1403
|
+
950: string;
|
|
1404
|
+
};
|
|
1405
|
+
indigo: {
|
|
1406
|
+
50: string;
|
|
1407
|
+
100: string;
|
|
1408
|
+
200: string;
|
|
1409
|
+
300: string;
|
|
1410
|
+
400: string;
|
|
1411
|
+
500: string;
|
|
1412
|
+
600: string;
|
|
1413
|
+
700: string;
|
|
1414
|
+
800: string;
|
|
1415
|
+
900: string;
|
|
1416
|
+
950: string;
|
|
1417
|
+
};
|
|
1418
|
+
violet: {
|
|
1419
|
+
50: string;
|
|
1420
|
+
100: string;
|
|
1421
|
+
200: string;
|
|
1422
|
+
300: string;
|
|
1423
|
+
400: string;
|
|
1424
|
+
500: string;
|
|
1425
|
+
600: string;
|
|
1426
|
+
700: string;
|
|
1427
|
+
800: string;
|
|
1428
|
+
900: string;
|
|
1429
|
+
950: string;
|
|
1430
|
+
};
|
|
1431
|
+
purple: {
|
|
1432
|
+
50: string;
|
|
1433
|
+
100: string;
|
|
1434
|
+
200: string;
|
|
1435
|
+
300: string;
|
|
1436
|
+
400: string;
|
|
1437
|
+
500: string;
|
|
1438
|
+
600: string;
|
|
1439
|
+
700: string;
|
|
1440
|
+
800: string;
|
|
1441
|
+
900: string;
|
|
1442
|
+
950: string;
|
|
1443
|
+
};
|
|
1444
|
+
fuchsia: {
|
|
1445
|
+
50: string;
|
|
1446
|
+
100: string;
|
|
1447
|
+
200: string;
|
|
1448
|
+
300: string;
|
|
1449
|
+
400: string;
|
|
1450
|
+
500: string;
|
|
1451
|
+
600: string;
|
|
1452
|
+
700: string;
|
|
1453
|
+
800: string;
|
|
1454
|
+
900: string;
|
|
1455
|
+
950: string;
|
|
1456
|
+
};
|
|
1457
|
+
pink: {
|
|
1458
|
+
50: string;
|
|
1459
|
+
100: string;
|
|
1460
|
+
200: string;
|
|
1461
|
+
300: string;
|
|
1462
|
+
400: string;
|
|
1463
|
+
500: string;
|
|
1464
|
+
600: string;
|
|
1465
|
+
700: string;
|
|
1466
|
+
800: string;
|
|
1467
|
+
900: string;
|
|
1468
|
+
950: string;
|
|
1469
|
+
};
|
|
1470
|
+
rose: {
|
|
1471
|
+
50: string;
|
|
1472
|
+
100: string;
|
|
1473
|
+
200: string;
|
|
1474
|
+
300: string;
|
|
1475
|
+
400: string;
|
|
1476
|
+
500: string;
|
|
1477
|
+
600: string;
|
|
1478
|
+
700: string;
|
|
1479
|
+
800: string;
|
|
1480
|
+
900: string;
|
|
1481
|
+
950: string;
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
type TailwindColorName = keyof ReturnType<typeof getTailwindColorShades>;
|
|
1485
|
+
declare const replaceThemeTailwindColors: (theme: string, tailwindColor: string) => HTMLStyleElement;
|
|
1486
|
+
|
|
1487
|
+
declare function formatPhone(telefone: string, removerCountryCode?: boolean): string;
|
|
1488
|
+
declare function formatCpfCnpj(cpfCnpj?: string): string;
|
|
1489
|
+
declare const formatDate: (date: string | Date | undefined, separator?: string) => string;
|
|
1490
|
+
declare const formatDateTime: (date: Date | undefined, returnSeconds?: boolean) => string;
|
|
1491
|
+
declare function formatDateCalendar(date: Date | undefined): string;
|
|
1492
|
+
declare function stringDateToDate(date: string | undefined, separator?: string): Date | undefined;
|
|
1493
|
+
declare const roundNumber: (value: number, fractionDigits?: number) => number;
|
|
1494
|
+
declare const stringToNumber: (value: string | undefined) => number;
|
|
1495
|
+
declare const convertMbToGb: (value: number) => number;
|
|
1496
|
+
declare const convertGbToMb: (value: number) => number;
|
|
1497
|
+
declare const convertSecondsToMinutes: (value: number) => number;
|
|
1498
|
+
declare const convertBytesToMB: (bytes: number) => number;
|
|
1499
|
+
declare const convertMonthToDays: (months: number) => number;
|
|
1500
|
+
declare const convertDaysToMonth: (days: number) => number;
|
|
1501
|
+
declare const formatNumber: (value: number) => string;
|
|
1502
|
+
declare const formatDecimal: (value: number, decimalPlaces?: number) => string;
|
|
1503
|
+
|
|
1504
|
+
declare const getFirstDayOfCurrentMonth: () => Date;
|
|
1505
|
+
declare const getFirstDayOf90DaysAgo: () => Date;
|
|
1506
|
+
declare const stringToDate: (dateString: string, separator?: string) => Date | undefined;
|
|
1507
|
+
declare const aYearAgo: () => Date;
|
|
1508
|
+
declare const invertDate: (date: string, separator?: string) => string;
|
|
1509
|
+
declare const addDaysToToday: (days: number) => Date;
|
|
1510
|
+
|
|
1511
|
+
declare function isUUIDv4(str: string): boolean;
|
|
1512
|
+
|
|
1513
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DEFAULT_THEME_DATA, DataTable, DataTableExport, DataTableFooter, DataTableHeader, DataTableRows, DatePickerWithRange as DateRangePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, 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, Form, FormControl, FormDataRange, FormDescription, FormField, FormInput, FormInputCpfCnpj, FormInputCurrency, FormInputDate, FormInputDecimal, FormInputFile, FormInputGhost, FormInputMask, FormInputPassWord, FormInputPercent, FormInputPhone, FormInputSwitch, FormInputText, FormItem, FormLabel, FormMessage, FormRadioGroup, FormSelect, FormTextarea, Header, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, LabelWithTitle, ModuleSwitcher, MultiSelect, NavFooter, NavMain, NavSubmenuCollapsible, NavSubmenuDropdown, NavUser, NotFound, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarButton, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarItem, SidebarItemTwoLines, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarSubmenuType, SidebarTrigger, Skeleton, Slider, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, Toast$1 as Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UseCalendar, aYearAgo, addDaysToToday, badgeVariants, buttonVariants, cn, convertBytesToMB, convertDaysToMonth, convertGbToMb, convertMbToGb, convertMonthToDays, convertSecondsToMinutes, formHelpText, formLabel, formLabelAndSubLabel, formMessage, formatCpfCnpj, formatDate, formatDateCalendar, formatDateTime, formatDecimal, formatNumber, formatPhone, getFirstDayOf90DaysAgo, getFirstDayOfCurrentMonth, getTailwindColorShades, invertDate, isUUIDv4, modifyCpfCnpj, modifyPhone, replaceThemeTailwindColors, roundNumber, stringDateToDate, stringToDate, stringToNumber, toast, useFormField, useSidebar, useTheme, useToast };
|
|
1514
|
+
export type { ActionRow, ActionTable, ButtonProps, CalendarProps, CarouselApi, DataTableProps, ExportDataTable, FiltersActions, Module, MultiSelectOption, OriginalDataTableData, RadioOption, SelectOption, SidebarPage, TailwindColorName };
|