impact-nova 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +237 -0
- package/dist/App.d.ts +2 -0
- package/dist/assets/flatten.worker-C7x-Wj6s.js +1 -0
- package/dist/components/layout/dashboard-layout.d.ts +25 -0
- package/dist/components/ui/accordion-nested-list/accordion-nested-list.d.ts +3 -0
- package/dist/components/ui/accordion-nested-list/accordion-nested-list.js +105 -0
- package/dist/components/ui/accordion-nested-list/hooks/useAccordionNestedListState.d.ts +19 -0
- package/dist/components/ui/accordion-nested-list/hooks/useAccordionNestedListState.js +41 -0
- package/dist/components/ui/accordion-nested-list/index.d.ts +2 -0
- package/dist/components/ui/accordion-nested-list/index.js +4 -0
- package/dist/components/ui/accordion.d.ts +10 -0
- package/dist/components/ui/accordion.js +52 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/actions-cell-renderer.d.ts +30 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/actions-cell-renderer.js +27 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/badge-cell-renderer.d.ts +44 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/badge-cell-renderer.js +22 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/checkbox-display-renderer.d.ts +29 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/checkbox-display-renderer.js +36 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/date-display-renderer.d.ts +37 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/date-display-renderer.js +50 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/date-cell-editor.d.ts +33 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/date-cell-editor.js +73 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/input-cell-editor.d.ts +21 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/input-cell-editor.js +91 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/select-cell-editor.d.ts +45 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/select-cell-editor.js +64 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.d.ts +9 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/split-cell-editor.js +85 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/textarea-cell-editor.d.ts +31 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/editors/textarea-cell-editor.js +61 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/empty-cell-renderer.d.ts +10 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/empty-cell-renderer.js +5 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/index.d.ts +90 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/index.js +65 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/input-display-renderer.d.ts +35 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/input-display-renderer.js +27 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/link-with-batch-cell-renderer.d.ts +63 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/link-with-batch-cell-renderer.js +148 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/select-display-renderer.d.ts +45 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/select-display-renderer.js +25 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/split-cell-renderer.d.ts +13 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/split-cell-renderer.js +67 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/status-badge-renderer.d.ts +35 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/status-badge-renderer.js +26 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/switch-display-renderer.d.ts +35 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/switch-display-renderer.js +38 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/textarea-display-renderer.d.ts +34 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/textarea-display-renderer.js +32 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/types.d.ts +129 -0
- package/dist/components/ui/ag-grid-react/cell-renderers/types.js +74 -0
- package/dist/components/ui/ag-grid-react/headers/advanced-filter/advanced-filter-dialog.d.ts +24 -0
- package/dist/components/ui/ag-grid-react/headers/advanced-filter/advanced-filter-dialog.js +223 -0
- package/dist/components/ui/ag-grid-react/headers/advanced-filter/column-filter-section.d.ts +24 -0
- package/dist/components/ui/ag-grid-react/headers/advanced-filter/column-filter-section.js +230 -0
- package/dist/components/ui/ag-grid-react/headers/column-menu/column-settings-menu.d.ts +11 -0
- package/dist/components/ui/ag-grid-react/headers/column-menu/column-settings-menu.js +113 -0
- package/dist/components/ui/ag-grid-react/headers/components/header-info.d.ts +37 -0
- package/dist/components/ui/ag-grid-react/headers/components/header-info.js +93 -0
- package/dist/components/ui/ag-grid-react/headers/components/info-modal.d.ts +12 -0
- package/dist/components/ui/ag-grid-react/headers/components/info-modal.js +18 -0
- package/dist/components/ui/ag-grid-react/headers/components/lazy-tooltip.d.ts +16 -0
- package/dist/components/ui/ag-grid-react/headers/components/lazy-tooltip.js +13 -0
- package/dist/components/ui/ag-grid-react/headers/components/section-renderers.d.ts +32 -0
- package/dist/components/ui/ag-grid-react/headers/components/section-renderers.js +78 -0
- package/dist/components/ui/ag-grid-react/headers/context/grid-header-context.d.ts +34 -0
- package/dist/components/ui/ag-grid-react/headers/context/grid-header-context.js +6 -0
- package/dist/components/ui/ag-grid-react/headers/custom-header-group.d.ts +12 -0
- package/dist/components/ui/ag-grid-react/headers/custom-header-group.js +33 -0
- package/dist/components/ui/ag-grid-react/headers/custom-header.d.ts +4 -0
- package/dist/components/ui/ag-grid-react/headers/custom-header.js +230 -0
- package/dist/components/ui/ag-grid-react/headers/header-search-input.d.ts +29 -0
- package/dist/components/ui/ag-grid-react/headers/header-search-input.js +352 -0
- package/dist/components/ui/ag-grid-react/headers/utils/date-utils.d.ts +46 -0
- package/dist/components/ui/ag-grid-react/headers/utils/date-utils.js +38 -0
- package/dist/components/ui/ag-grid-react/headers/utils/filter-utils.d.ts +117 -0
- package/dist/components/ui/ag-grid-react/headers/utils/filter-utils.js +434 -0
- package/dist/components/ui/ag-grid-react/index.d.ts +5 -0
- package/dist/components/ui/ag-grid-react/index.js +183 -0
- package/dist/components/ui/ag-grid-react/process-backend-columndefs.d.ts +31 -0
- package/dist/components/ui/ag-grid-react/process-backend-columndefs.js +61 -0
- package/dist/components/ui/ag-grid-react/theme.d.ts +2 -0
- package/dist/components/ui/ag-grid-react/theme.js +46 -0
- package/dist/components/ui/ag-grid-react/value-formatters.d.ts +22 -0
- package/dist/components/ui/ag-grid-react/value-formatters.js +95 -0
- package/dist/components/ui/alert-dialog.d.ts +20 -0
- package/dist/components/ui/alert-dialog.js +114 -0
- package/dist/components/ui/alert.d.ts +11 -0
- package/dist/components/ui/alert.js +54 -0
- package/dist/components/ui/avatar.d.ts +14 -0
- package/dist/components/ui/avatar.js +60 -0
- package/dist/components/ui/badge.d.ts +10 -0
- package/dist/components/ui/badge.js +54 -0
- package/dist/components/ui/breadcrumb.d.ts +24 -0
- package/dist/components/ui/breadcrumb.js +150 -0
- package/dist/components/ui/button-group.d.ts +17 -0
- package/dist/components/ui/button-group.js +110 -0
- package/dist/components/ui/button-variants.d.ts +4 -0
- package/dist/components/ui/button-variants.js +31 -0
- package/dist/components/ui/button.d.ts +10 -0
- package/dist/components/ui/button.js +27 -0
- package/dist/components/ui/calendar.d.ts +46 -0
- package/dist/components/ui/calendar.js +660 -0
- package/dist/components/ui/card.d.ts +8 -0
- package/dist/components/ui/card.js +61 -0
- package/dist/components/ui/chart/chart.d.ts +29 -0
- package/dist/components/ui/chart/chart.js +203 -0
- package/dist/components/ui/chart/chart.utils.d.ts +3 -0
- package/dist/components/ui/chart/chart.utils.js +192 -0
- package/dist/components/ui/chart/index.d.ts +3 -0
- package/dist/components/ui/chart/index.js +12 -0
- package/dist/components/ui/checkbox.d.ts +8 -0
- package/dist/components/ui/checkbox.js +54 -0
- package/dist/components/ui/chips.d.ts +13 -0
- package/dist/components/ui/chips.js +60 -0
- package/dist/components/ui/data-table/data-table-column-list.d.ts +6 -0
- package/dist/components/ui/data-table/data-table-column-list.js +153 -0
- package/dist/components/ui/data-table/data-table-context.d.ts +18 -0
- package/dist/components/ui/data-table/data-table-context.js +11 -0
- package/dist/components/ui/data-table/data-table-format-options.d.ts +1 -0
- package/dist/components/ui/data-table/data-table-format-options.js +74 -0
- package/dist/components/ui/data-table/data-table-sheet.d.ts +20 -0
- package/dist/components/ui/data-table/data-table-sheet.js +81 -0
- package/dist/components/ui/data-table/data-table-view-options.d.ts +8 -0
- package/dist/components/ui/data-table/data-table-view-options.js +75 -0
- package/dist/components/ui/data-table/data-table.d.ts +26 -0
- package/dist/components/ui/data-table/data-table.js +67 -0
- package/dist/components/ui/data-table/index.d.ts +6 -0
- package/dist/components/ui/data-table/index.js +20 -0
- package/dist/components/ui/data-table/stories/fakeServer.d.ts +14 -0
- package/dist/components/ui/data-table/stories/interfaces.d.ts +15 -0
- package/dist/components/ui/date-picker/date-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/date-picker.js +116 -0
- package/dist/components/ui/date-picker/date-range-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/date-range-picker.js +195 -0
- package/dist/components/ui/date-picker/index.d.ts +18 -0
- package/dist/components/ui/date-picker/index.js +20 -0
- package/dist/components/ui/date-picker/month-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/month-picker.js +117 -0
- package/dist/components/ui/date-picker/month-range-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/month-range-picker.js +193 -0
- package/dist/components/ui/date-picker/multi-date-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/multi-date-picker.js +94 -0
- package/dist/components/ui/date-picker/multi-month-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/multi-month-picker.js +93 -0
- package/dist/components/ui/date-picker/multi-week-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/multi-week-picker.js +98 -0
- package/dist/components/ui/date-picker/week-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/week-picker.js +135 -0
- package/dist/components/ui/date-picker/week-range-picker.d.ts +3 -0
- package/dist/components/ui/date-picker/week-range-picker.js +207 -0
- package/dist/components/ui/dialog.d.ts +25 -0
- package/dist/components/ui/dialog.js +116 -0
- package/dist/components/ui/drawer.d.ts +22 -0
- package/dist/components/ui/drawer.js +98 -0
- package/dist/components/ui/dropdown-menu.d.ts +42 -0
- package/dist/components/ui/dropdown-menu.js +193 -0
- package/dist/components/ui/dynamic-layout.d.ts +12 -0
- package/dist/components/ui/dynamic-layout.js +50 -0
- package/dist/components/ui/empty-container.d.ts +8 -0
- package/dist/components/ui/empty-container.js +108 -0
- package/dist/components/ui/file-upload.d.ts +12 -0
- package/dist/components/ui/file-upload.js +241 -0
- package/dist/components/ui/filter-panel/filter-panel.d.ts +7 -0
- package/dist/components/ui/filter-panel/filter-panel.js +101 -0
- package/dist/components/ui/filter-panel/index.d.ts +2 -0
- package/dist/components/ui/filter-panel/index.js +8 -0
- package/dist/components/ui/filter-strip/filter-strip.d.ts +3 -0
- package/dist/components/ui/filter-strip/filter-strip.js +95 -0
- package/dist/components/ui/filter-strip/filter-summary.d.ts +15 -0
- package/dist/components/ui/filter-strip/filter-summary.js +204 -0
- package/dist/components/ui/filter-strip/filter-tag-list.d.ts +9 -0
- package/dist/components/ui/filter-strip/filter-tag-list.js +136 -0
- package/dist/components/ui/filter-strip/index.d.ts +2 -0
- package/dist/components/ui/filter-strip/index.js +4 -0
- package/dist/components/ui/header.d.ts +15 -0
- package/dist/components/ui/header.js +125 -0
- package/dist/components/ui/horizontal-scroller/horizontal-scroller.d.ts +4 -0
- package/dist/components/ui/horizontal-scroller/horizontal-scroller.js +165 -0
- package/dist/components/ui/horizontal-scroller/index.d.ts +2 -0
- package/dist/components/ui/horizontal-scroller/index.js +1 -0
- package/dist/components/ui/hover-card.d.ts +6 -0
- package/dist/components/ui/hover-card.js +23 -0
- package/dist/components/ui/input.d.ts +17 -0
- package/dist/components/ui/input.js +107 -0
- package/dist/components/ui/label.d.ts +3 -0
- package/dist/components/ui/label.js +18 -0
- package/dist/components/ui/loader.d.ts +11 -0
- package/dist/components/ui/loader.js +72 -0
- package/dist/components/ui/nested-list/components/NestedListApplyDiscardButtons.d.ts +11 -0
- package/dist/components/ui/nested-list/components/NestedListApplyDiscardButtons.js +37 -0
- package/dist/components/ui/nested-list/components/NestedListCategoryFilters.d.ts +10 -0
- package/dist/components/ui/nested-list/components/NestedListCategoryFilters.js +33 -0
- package/dist/components/ui/nested-list/components/NestedListContent.d.ts +21 -0
- package/dist/components/ui/nested-list/components/NestedListContent.js +73 -0
- package/dist/components/ui/nested-list/components/NestedListDragOverlay.d.ts +7 -0
- package/dist/components/ui/nested-list/components/NestedListHeader.d.ts +18 -0
- package/dist/components/ui/nested-list/components/NestedListHeader.js +86 -0
- package/dist/components/ui/nested-list/components/SortableItem.d.ts +17 -0
- package/dist/components/ui/nested-list/components/SortableItem.js +139 -0
- package/dist/components/ui/nested-list/hooks/useNestedListDragDrop.d.ts +14 -0
- package/dist/components/ui/nested-list/hooks/useNestedListDragDrop.js +168 -0
- package/dist/components/ui/nested-list/hooks/useNestedListHandlers.d.ts +42 -0
- package/dist/components/ui/nested-list/hooks/useNestedListHandlers.js +185 -0
- package/dist/components/ui/nested-list/hooks/useNestedListSelectAll.d.ts +16 -0
- package/dist/components/ui/nested-list/hooks/useNestedListSelectAll.js +62 -0
- package/dist/components/ui/nested-list/hooks/useNestedListState.d.ts +73 -0
- package/dist/components/ui/nested-list/hooks/useNestedListState.js +165 -0
- package/dist/components/ui/nested-list/index.d.ts +2 -0
- package/dist/components/ui/nested-list/index.js +6 -0
- package/dist/components/ui/nested-list/nested-list.d.ts +3 -0
- package/dist/components/ui/nested-list/nested-list.js +363 -0
- package/dist/components/ui/notification-panel/index.d.ts +3 -0
- package/dist/components/ui/notification-panel/index.js +20 -0
- package/dist/components/ui/notification-panel/notification-item.d.ts +14 -0
- package/dist/components/ui/notification-panel/notification-item.js +86 -0
- package/dist/components/ui/notification-panel/notification-list.d.ts +5 -0
- package/dist/components/ui/notification-panel/notification-list.js +45 -0
- package/dist/components/ui/notification-panel/notification-panel.d.ts +9 -0
- package/dist/components/ui/notification-panel/notification-panel.js +58 -0
- package/dist/components/ui/popover.d.ts +24 -0
- package/dist/components/ui/popover.js +84 -0
- package/dist/components/ui/portal.d.ts +7 -0
- package/dist/components/ui/portal.js +18 -0
- package/dist/components/ui/progress-bar.d.ts +1 -0
- package/dist/components/ui/progress.d.ts +9 -0
- package/dist/components/ui/progress.js +61 -0
- package/dist/components/ui/prompt.d.ts +26 -0
- package/dist/components/ui/prompt.js +141 -0
- package/dist/components/ui/radio-group.d.ts +11 -0
- package/dist/components/ui/radio-group.js +68 -0
- package/dist/components/ui/select/components/LabelWithSequence.d.ts +13 -0
- package/dist/components/ui/select/components/LabelWithSequence.js +18 -0
- package/dist/components/ui/select/components/Submenu.d.ts +15 -0
- package/dist/components/ui/select/components/Submenu.js +85 -0
- package/dist/components/ui/select/hooks/useClickOutside.d.ts +15 -0
- package/dist/components/ui/select/hooks/useClickOutside.js +43 -0
- package/dist/components/ui/select/hooks/useFlattenOptions.d.ts +24 -0
- package/dist/components/ui/select/hooks/useFlattenOptions.js +233 -0
- package/dist/components/ui/select/hooks/useMenuPosition.d.ts +2 -0
- package/dist/components/ui/select/hooks/useMenuPosition.js +89 -0
- package/dist/components/ui/select/hooks/useSelectionModel.d.ts +6 -0
- package/dist/components/ui/select/hooks/useSelectionModel.js +25 -0
- package/dist/components/ui/select/hooks/useVisibleStats.d.ts +16 -0
- package/dist/components/ui/select/hooks/useVisibleStats.js +54 -0
- package/dist/components/ui/select/index.d.ts +3 -0
- package/dist/components/ui/select/index.js +13 -0
- package/dist/components/ui/select/select.d.ts +6 -0
- package/dist/components/ui/select/select.js +814 -0
- package/dist/components/ui/select/utils/select.d.ts +12 -0
- package/dist/components/ui/select/utils/select.js +72 -0
- package/dist/components/ui/select/workers/flatten.worker.d.ts +9 -0
- package/dist/components/ui/select/workers/flatten.worker.js +11 -0
- package/dist/components/ui/separator.d.ts +4 -0
- package/dist/components/ui/separator.js +24 -0
- package/dist/components/ui/sheet.d.ts +30 -0
- package/dist/components/ui/sheet.js +157 -0
- package/dist/components/ui/sidebar.d.ts +98 -0
- package/dist/components/ui/sidebar.js +681 -0
- package/dist/components/ui/skeleton.d.ts +2 -0
- package/dist/components/ui/skeleton.js +17 -0
- package/dist/components/ui/slider.d.ts +4 -0
- package/dist/components/ui/slider.js +23 -0
- package/dist/components/ui/smart-input.d.ts +25 -0
- package/dist/components/ui/smart-input.js +177 -0
- package/dist/components/ui/stepper.d.ts +22 -0
- package/dist/components/ui/stepper.js +137 -0
- package/dist/components/ui/switch.d.ts +4 -0
- package/dist/components/ui/switch.js +27 -0
- package/dist/components/ui/tabs.d.ts +14 -0
- package/dist/components/ui/tabs.js +102 -0
- package/dist/components/ui/tag-group.d.ts +22 -0
- package/dist/components/ui/tag-group.js +56 -0
- package/dist/components/ui/tag.d.ts +16 -0
- package/dist/components/ui/tag.js +72 -0
- package/dist/components/ui/textarea.d.ts +13 -0
- package/dist/components/ui/textarea.js +85 -0
- package/dist/components/ui/toast.d.ts +17 -0
- package/dist/components/ui/toast.js +102 -0
- package/dist/components/ui/toaster.d.ts +6 -0
- package/dist/components/ui/toaster.js +100 -0
- package/dist/components/ui/tooltip.d.ts +14 -0
- package/dist/components/ui/tooltip.js +49 -0
- package/dist/components/ui/types/accordion-nested-list.types.d.ts +112 -0
- package/dist/components/ui/types/accordion.types.d.ts +1 -0
- package/dist/components/ui/types/ag-grid.types.d.ts +164 -0
- package/dist/components/ui/types/alert.types.d.ts +5 -0
- package/dist/components/ui/types/avatar.types.d.ts +1 -0
- package/dist/components/ui/types/badge.types.d.ts +1 -0
- package/dist/components/ui/types/breadcrumb.types.d.ts +1 -0
- package/dist/components/ui/types/button-group.types.d.ts +1 -0
- package/dist/components/ui/types/button.types.d.ts +1 -0
- package/dist/components/ui/types/card.types.d.ts +1 -0
- package/dist/components/ui/types/chart.types.d.ts +23 -0
- package/dist/components/ui/types/checkbox.types.d.ts +1 -0
- package/dist/components/ui/types/chips.types.d.ts +1 -0
- package/dist/components/ui/types/date-picker.types.d.ts +100 -0
- package/dist/components/ui/types/dialog.types.d.ts +8 -0
- package/dist/components/ui/types/dynamic-layout.types.d.ts +1 -0
- package/dist/components/ui/types/empty-container.types.d.ts +18 -0
- package/dist/components/ui/types/file-upload.types.d.ts +23 -0
- package/dist/components/ui/types/filter-panel.types.d.ts +42 -0
- package/dist/components/ui/types/filter-strip.types.d.ts +86 -0
- package/dist/components/ui/types/horizontal-scroller.types.d.ts +49 -0
- package/dist/components/ui/types/hover-card.types.d.ts +1 -0
- package/dist/components/ui/types/input.types.d.ts +1 -0
- package/dist/components/ui/types/loader.types.d.ts +1 -0
- package/dist/components/ui/types/nested-list.types.d.ts +63 -0
- package/dist/components/ui/types/nested-list.types.js +24 -0
- package/dist/components/ui/types/notification-panel.types.d.ts +63 -0
- package/dist/components/ui/types/popover.types.d.ts +1 -0
- package/dist/components/ui/types/progress-bar.types.d.ts +2 -0
- package/dist/components/ui/types/prompt.types.d.ts +1 -0
- package/dist/components/ui/types/radio-button-group.types.d.ts +1 -0
- package/dist/components/ui/types/select.types.d.ts +329 -0
- package/dist/components/ui/types/sidebar.types.d.ts +1 -0
- package/dist/components/ui/types/slider.types.d.ts +1 -0
- package/dist/components/ui/types/stepper.types.d.ts +1 -0
- package/dist/components/ui/types/switch.types.d.ts +1 -0
- package/dist/components/ui/types/tabs.types.d.ts +1 -0
- package/dist/components/ui/types/tag-group.types.d.ts +1 -0
- package/dist/components/ui/types/tag.types.d.ts +1 -0
- package/dist/components/ui/types/text-area.types.d.ts +1 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/hooks/use-toast.d.ts +45 -0
- package/dist/hooks/use-toast.js +97 -0
- package/dist/ia-logo.svg +18 -0
- package/dist/icons/assets/PivotMode.svg.js +4 -0
- package/dist/icons/assets/PivotMode.svg2.js +5 -0
- package/dist/icons/assets/alan.svg.js +4 -0
- package/dist/icons/assets/alan.svg2.js +5 -0
- package/dist/icons/assets/alerts.svg.js +4 -0
- package/dist/icons/assets/alerts.svg2.js +5 -0
- package/dist/icons/assets/analyticalSearch.svg.js +4 -0
- package/dist/icons/assets/analyticalSearch.svg2.js +5 -0
- package/dist/icons/assets/back.svg.js +4 -0
- package/dist/icons/assets/back.svg2.js +5 -0
- package/dist/icons/assets/backdrop.svg.js +4 -0
- package/dist/icons/assets/backdrop.svg2.js +15 -0
- package/dist/icons/assets/bell.svg.js +4 -0
- package/dist/icons/assets/bell.svg2.js +5 -0
- package/dist/icons/assets/bin.svg.js +4 -0
- package/dist/icons/assets/bin.svg2.js +5 -0
- package/dist/icons/assets/blocks.svg.js +4 -0
- package/dist/icons/assets/blocks.svg2.js +5 -0
- package/dist/icons/assets/box.svg.js +4 -0
- package/dist/icons/assets/box.svg2.js +5 -0
- package/dist/icons/assets/calender-month.svg.js +4 -0
- package/dist/icons/assets/calender-month.svg2.js +5 -0
- package/dist/icons/assets/calender.svg.js +4 -0
- package/dist/icons/assets/calender.svg2.js +5 -0
- package/dist/icons/assets/chart.svg.js +4 -0
- package/dist/icons/assets/chart.svg2.js +5 -0
- package/dist/icons/assets/checkmark.svg.js +4 -0
- package/dist/icons/assets/checkmark.svg2.js +5 -0
- package/dist/icons/assets/chevronRight.svg.js +4 -0
- package/dist/icons/assets/chevronRight.svg2.js +5 -0
- package/dist/icons/assets/collapse.svg.js +4 -0
- package/dist/icons/assets/collapse.svg2.js +5 -0
- package/dist/icons/assets/column.svg.js +4 -0
- package/dist/icons/assets/column.svg2.js +5 -0
- package/dist/icons/assets/copy.svg.js +4 -0
- package/dist/icons/assets/copy.svg2.js +5 -0
- package/dist/icons/assets/createNewDocument.svg.js +4 -0
- package/dist/icons/assets/createNewDocument.svg2.js +5 -0
- package/dist/icons/assets/cross.svg.js +4 -0
- package/dist/icons/assets/cross.svg2.js +5 -0
- package/dist/icons/assets/delete.svg.js +4 -0
- package/dist/icons/assets/delete.svg2.js +5 -0
- package/dist/icons/assets/density.svg.js +4 -0
- package/dist/icons/assets/density.svg2.js +5 -0
- package/dist/icons/assets/document.svg.js +4 -0
- package/dist/icons/assets/document.svg2.js +5 -0
- package/dist/icons/assets/drag.svg.js +4 -0
- package/dist/icons/assets/drag.svg2.js +5 -0
- package/dist/icons/assets/draw.svg.js +4 -0
- package/dist/icons/assets/draw.svg2.js +5 -0
- package/dist/icons/assets/email.svg.js +4 -0
- package/dist/icons/assets/email.svg2.js +5 -0
- package/dist/icons/assets/errorCircle.svg.js +4 -0
- package/dist/icons/assets/errorCircle.svg2.js +5 -0
- package/dist/icons/assets/expand.svg.js +4 -0
- package/dist/icons/assets/expand.svg2.js +5 -0
- package/dist/icons/assets/filter.svg.js +4 -0
- package/dist/icons/assets/filter.svg2.js +5 -0
- package/dist/icons/assets/fiveSideStar.svg.js +4 -0
- package/dist/icons/assets/fiveSideStar.svg2.js +5 -0
- package/dist/icons/assets/floppy.svg.js +4 -0
- package/dist/icons/assets/floppy.svg2.js +5 -0
- package/dist/icons/assets/font.svg.js +4 -0
- package/dist/icons/assets/font.svg2.js +5 -0
- package/dist/icons/assets/funnel-hide.svg.js +4 -0
- package/dist/icons/assets/funnel-hide.svg2.js +5 -0
- package/dist/icons/assets/funnel-show.svg.js +4 -0
- package/dist/icons/assets/funnel-show.svg2.js +5 -0
- package/dist/icons/assets/globe.svg.js +4 -0
- package/dist/icons/assets/globe.svg2.js +5 -0
- package/dist/icons/assets/hamburger-closed.svg.js +4 -0
- package/dist/icons/assets/hamburger-closed.svg2.js +5 -0
- package/dist/icons/assets/hamburger-open.svg.js +4 -0
- package/dist/icons/assets/hamburger-open.svg2.js +5 -0
- package/dist/icons/assets/help-icon.svg.js +4 -0
- package/dist/icons/assets/help-icon.svg2.js +5 -0
- package/dist/icons/assets/ia-logo.svg.js +4 -0
- package/dist/icons/assets/ia-logo.svg2.js +5 -0
- package/dist/icons/assets/illustration_1.svg.js +4 -0
- package/dist/icons/assets/illustration_1.svg2.js +5 -0
- package/dist/icons/assets/info-icon.svg.js +4 -0
- package/dist/icons/assets/info-icon.svg2.js +5 -0
- package/dist/icons/assets/loadingSpinner.svg.js +4 -0
- package/dist/icons/assets/loadingSpinner.svg2.js +5 -0
- package/dist/icons/assets/locked.svg.js +4 -0
- package/dist/icons/assets/locked.svg2.js +5 -0
- package/dist/icons/assets/loginArrow.svg.js +4 -0
- package/dist/icons/assets/loginArrow.svg2.js +5 -0
- package/dist/icons/assets/matchWith.svg.js +4 -0
- package/dist/icons/assets/matchWith.svg2.js +5 -0
- package/dist/icons/assets/message-icon.svg.js +4 -0
- package/dist/icons/assets/message-icon.svg2.js +5 -0
- package/dist/icons/assets/more.svg.js +4 -0
- package/dist/icons/assets/more.svg2.js +5 -0
- package/dist/icons/assets/multi-color-filter.svg.js +4 -0
- package/dist/icons/assets/multi-color-filter.svg2.js +5 -0
- package/dist/icons/assets/paperrocket.svg.js +4 -0
- package/dist/icons/assets/paperrocket.svg2.js +5 -0
- package/dist/icons/assets/pencil.svg.js +4 -0
- package/dist/icons/assets/pencil.svg2.js +5 -0
- package/dist/icons/assets/person.svg.js +4 -0
- package/dist/icons/assets/person.svg2.js +5 -0
- package/dist/icons/assets/pin.svg.js +4 -0
- package/dist/icons/assets/pin.svg2.js +5 -0
- package/dist/icons/assets/plus.svg.js +4 -0
- package/dist/icons/assets/plus.svg2.js +5 -0
- package/dist/icons/assets/reset.svg.js +4 -0
- package/dist/icons/assets/reset.svg2.js +5 -0
- package/dist/icons/assets/rocket.svg.js +4 -0
- package/dist/icons/assets/rocket.svg2.js +5 -0
- package/dist/icons/assets/search.svg.js +4 -0
- package/dist/icons/assets/search.svg2.js +5 -0
- package/dist/icons/assets/settings.svg.js +4 -0
- package/dist/icons/assets/settings.svg2.js +5 -0
- package/dist/icons/assets/shapes.svg.js +4 -0
- package/dist/icons/assets/shapes.svg2.js +5 -0
- package/dist/icons/assets/stack-comfort.svg.js +4 -0
- package/dist/icons/assets/stack-comfort.svg2.js +5 -0
- package/dist/icons/assets/stack-compact.svg.js +4 -0
- package/dist/icons/assets/stack-compact.svg2.js +5 -0
- package/dist/icons/assets/stack.svg.js +4 -0
- package/dist/icons/assets/stack.svg2.js +5 -0
- package/dist/icons/assets/store.svg.js +4 -0
- package/dist/icons/assets/store.svg2.js +5 -0
- package/dist/icons/assets/table.svg.js +4 -0
- package/dist/icons/assets/table.svg2.js +5 -0
- package/dist/icons/assets/three-dots.svg.js +4 -0
- package/dist/icons/assets/three-dots.svg2.js +5 -0
- package/dist/icons/assets/trendingDown.svg.js +4 -0
- package/dist/icons/assets/trendingDown.svg2.js +5 -0
- package/dist/icons/assets/trendingFlat.svg.js +4 -0
- package/dist/icons/assets/trendingFlat.svg2.js +5 -0
- package/dist/icons/assets/trendingNeutral.svg.js +4 -0
- package/dist/icons/assets/trendingNeutral.svg2.js +5 -0
- package/dist/icons/assets/trendingUp.svg.js +4 -0
- package/dist/icons/assets/trendingUp.svg2.js +5 -0
- package/dist/icons/assets/unpin.svg.js +4 -0
- package/dist/icons/assets/unpin.svg2.js +5 -0
- package/dist/icons/assets/upload.svg.js +4 -0
- package/dist/icons/assets/upload.svg2.js +5 -0
- package/dist/icons/assets/webp/bill-or-receipt.webp.js +4 -0
- package/dist/icons/assets/webp/checklist-with-pen.webp.js +4 -0
- package/dist/icons/assets/webp/click-me-arrow.webp.js +4 -0
- package/dist/icons/assets/webp/csv-logo.webp.js +4 -0
- package/dist/icons/assets/webp/dollar.webp.js +4 -0
- package/dist/icons/assets/webp/empty-state-1.webp.js +4 -0
- package/dist/icons/assets/webp/empty-state-2.webp.js +4 -0
- package/dist/icons/assets/webp/empty-state-3.webp.js +4 -0
- package/dist/icons/assets/webp/empty-state-4.webp.js +4 -0
- package/dist/icons/assets/webp/empty-state-5.webp.js +4 -0
- package/dist/icons/assets/webp/empty-state-6.webp.js +4 -0
- package/dist/icons/assets/webp/excel-logo.webp.js +4 -0
- package/dist/icons/assets/webp/file-upload.webp.js +4 -0
- package/dist/icons/assets/webp/inventory-adjustment.webp.js +4 -0
- package/dist/icons/assets/webp/multicolor-bell.webp.js +4 -0
- package/dist/icons/assets/webp/price-tag.webp.js +4 -0
- package/dist/icons/assets/webp/receipts-stack.webp.js +4 -0
- package/dist/icons/assets/webp/recommended-receipt.webp.js +4 -0
- package/dist/icons/assets/webp/return-carton.webp.js +4 -0
- package/dist/icons/assets/webp/shipping-container.webp.js +4 -0
- package/dist/icons/assets/webp/stack-of-packaged-boxes.webp.js +4 -0
- package/dist/icons/assets/webp/text-logo.webp.js +4 -0
- package/dist/icons/assets/webp/two-stacked-packaged-boxes.webp.js +4 -0
- package/dist/icons/assets/webp/warranty.webp.js +4 -0
- package/dist/icons/index.d.ts +119 -0
- package/dist/icons/index.js +382 -0
- package/dist/impact-nova.css +1 -0
- package/dist/index.d.ts +57 -0
- package/dist/index.js +340 -0
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.js +18 -0
- package/dist/main.d.ts +0 -0
- package/dist/vite.svg +1 -0
- package/package.json +515 -0
- package/tailwind.config.d.ts +6 -0
- package/tailwind.config.js +182 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { AG_GRID_VALUE_FORMATTERS as i } from "./value-formatters.js";
|
|
2
|
+
const c = (t, e, r) => {
|
|
3
|
+
if (t == null) return !1;
|
|
4
|
+
switch (e) {
|
|
5
|
+
case ">":
|
|
6
|
+
return Number(t) > Number(r);
|
|
7
|
+
case "<":
|
|
8
|
+
return Number(t) < Number(r);
|
|
9
|
+
case ">=":
|
|
10
|
+
return Number(t) >= Number(r);
|
|
11
|
+
case "<=":
|
|
12
|
+
return Number(t) <= Number(r);
|
|
13
|
+
case "==":
|
|
14
|
+
return t == r;
|
|
15
|
+
case "!=":
|
|
16
|
+
return t != r;
|
|
17
|
+
case "contains":
|
|
18
|
+
return String(t).includes(String(r));
|
|
19
|
+
case "startsWith":
|
|
20
|
+
return String(t).startsWith(String(r));
|
|
21
|
+
case "endsWith":
|
|
22
|
+
return String(t).endsWith(String(r));
|
|
23
|
+
default:
|
|
24
|
+
return !1;
|
|
25
|
+
}
|
|
26
|
+
}, a = (t) => (e) => {
|
|
27
|
+
const r = e.value;
|
|
28
|
+
for (const n of t)
|
|
29
|
+
if (c(r, n.condition, n.value)) {
|
|
30
|
+
const o = {
|
|
31
|
+
color: n.color
|
|
32
|
+
};
|
|
33
|
+
return n.fontWeight && (o.fontWeight = n.fontWeight), n.backgroundColor && (o.backgroundColor = n.backgroundColor), o;
|
|
34
|
+
}
|
|
35
|
+
}, s = (t) => {
|
|
36
|
+
if ("children" in t && t.children)
|
|
37
|
+
return {
|
|
38
|
+
...t,
|
|
39
|
+
children: t.children.map((r) => s(r))
|
|
40
|
+
};
|
|
41
|
+
const e = { ...t };
|
|
42
|
+
if (typeof e.valueFormatter == "object" && e.valueFormatter?.type) {
|
|
43
|
+
const r = e.valueFormatter, n = i[r.type];
|
|
44
|
+
n ? e.valueFormatter = n : console.warn(`[processColDef] Unknown valueFormatter type: "${r.type}"`);
|
|
45
|
+
}
|
|
46
|
+
if (t.colorRules && t.colorRules.length > 0) {
|
|
47
|
+
const r = a(t.colorRules), n = e.cellStyle;
|
|
48
|
+
typeof n == "function" ? e.cellStyle = (o) => ({
|
|
49
|
+
...n(o),
|
|
50
|
+
...r(o) || {}
|
|
51
|
+
}) : n ? e.cellStyle = (o) => ({
|
|
52
|
+
...n,
|
|
53
|
+
...r(o) || {}
|
|
54
|
+
}) : e.cellStyle = r, delete e.colorRules;
|
|
55
|
+
}
|
|
56
|
+
return (e.type === "number" || e.type === "numericColumn" || e.type === "currency" || e.type === "percentage") && (e.headerClass = e.headerClass ? `${e.headerClass} ag-right-aligned-header` : "ag-right-aligned-header", e.cellClass = e.cellClass ? `${e.cellClass} ag-right-aligned-cell` : "ag-right-aligned-cell"), e;
|
|
57
|
+
}, g = (t) => !t || t.length === 0 ? t : t.filter((e) => e != null).map((e) => s(e));
|
|
58
|
+
export {
|
|
59
|
+
g as processBackendColumnDefs,
|
|
60
|
+
s as processColDef
|
|
61
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { themeQuartz as e, iconSetMaterial as r } from "ag-grid-community";
|
|
2
|
+
/* empty css */
|
|
3
|
+
const a = e.withPart(r).withParams({
|
|
4
|
+
accentColor: "#4259EE",
|
|
5
|
+
advancedFilterBuilderButtonBarBorder: !0,
|
|
6
|
+
borderColor: "#D9DDE7",
|
|
7
|
+
browserColorScheme: "light",
|
|
8
|
+
cellEditingBorder: !0,
|
|
9
|
+
chartMenuPanelWidth: 260,
|
|
10
|
+
checkboxCheckedBackgroundColor: "#ECEEFD",
|
|
11
|
+
checkboxCheckedBorderColor: "#4259EE",
|
|
12
|
+
checkboxCheckedShapeColor: "#4259EE",
|
|
13
|
+
columnBorder: !0,
|
|
14
|
+
columnDropCellBorder: !0,
|
|
15
|
+
fontFamily: "inherit",
|
|
16
|
+
footerRowBorder: !0,
|
|
17
|
+
foregroundColor: "#0D152C",
|
|
18
|
+
headerBackgroundColor: "#F5F6FA",
|
|
19
|
+
headerColumnBorder: !0,
|
|
20
|
+
headerFontFamily: "inherit",
|
|
21
|
+
headerFontSize: 14,
|
|
22
|
+
headerHeight: 40,
|
|
23
|
+
headerFontWeight: 700,
|
|
24
|
+
headerRowBorder: !0,
|
|
25
|
+
headerVerticalPaddingScale: 1,
|
|
26
|
+
headerColumnResizeHandleWidth: 0,
|
|
27
|
+
inputBorder: !1,
|
|
28
|
+
inputDisabledBorder: !1,
|
|
29
|
+
inputFocusBorder: !1,
|
|
30
|
+
inputFocusShadow: "none",
|
|
31
|
+
focusShadow: "none",
|
|
32
|
+
rowBorder: !0,
|
|
33
|
+
tabBarBorder: !0,
|
|
34
|
+
wrapperBorder: !0,
|
|
35
|
+
wrapperBorderRadius: 0,
|
|
36
|
+
spacing: 9,
|
|
37
|
+
menuBackgroundColor: "#FFFFFF",
|
|
38
|
+
menuBorder: !1,
|
|
39
|
+
menuShadow: "#00000040 0px 0px 2px 0px",
|
|
40
|
+
menuTextColor: "#1F2B4D",
|
|
41
|
+
pinnedRowBackgroundColor: "#F4F1F9",
|
|
42
|
+
pinnedRowBorder: !1
|
|
43
|
+
});
|
|
44
|
+
export {
|
|
45
|
+
a as customAgGridTheme
|
|
46
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ValueFormatterParams } from 'ag-grid-community';
|
|
2
|
+
/**
|
|
3
|
+
* AG Grid value formatters registry
|
|
4
|
+
* Use with AgGridWrapper's valueFormatters prop
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* ```typescript
|
|
8
|
+
* <AgGridWrapper
|
|
9
|
+
* valueFormatters={AG_GRID_VALUE_FORMATTERS}
|
|
10
|
+
* context={{ currency: 'EUR', decimals: 0 }}
|
|
11
|
+
* columnDefs={[
|
|
12
|
+
* { field: 'price', valueFormatter: 'currency' },
|
|
13
|
+
* { field: 'discount', valueFormatter: 'percentage' },
|
|
14
|
+
* ]}
|
|
15
|
+
* />
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare const AG_GRID_VALUE_FORMATTERS: Record<string, (params: ValueFormatterParams) => string>;
|
|
19
|
+
/**
|
|
20
|
+
* Type-safe formatter names
|
|
21
|
+
*/
|
|
22
|
+
export type AGGridFormatterName = keyof typeof AG_GRID_VALUE_FORMATTERS;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
const a = (e) => e?.nullDisplay ?? "-", F = (e, n) => {
|
|
2
|
+
let t, o;
|
|
3
|
+
return n === "bil" ? (t = e / 1e9, o = "B") : n === "mil" ? (t = e / 1e6, o = "M") : (t = e / 1e3, o = "K"), isNaN(t) || !isFinite(t) ? `0.0${o}` : t.toFixed(1) + o;
|
|
4
|
+
}, y = (e, n) => !n || n === "full_no" ? null : F(e, n), N = (e) => {
|
|
5
|
+
const n = e.colDef, t = typeof n.valueFormatter == "object" ? n.valueFormatter : n;
|
|
6
|
+
if (e.value == null) return t.nullDisplay ?? "-";
|
|
7
|
+
const o = t.currency || "USD", l = t.locale || "en-US", r = t.formatType, c = Number(e.value);
|
|
8
|
+
if (isNaN(c)) return String(e.value);
|
|
9
|
+
const s = y(Math.abs(c), r);
|
|
10
|
+
if (s) {
|
|
11
|
+
const u = c < 0 ? "-" : "", i = new Intl.NumberFormat(l, {
|
|
12
|
+
style: "currency",
|
|
13
|
+
currency: o
|
|
14
|
+
}).formatToParts(0).find((D) => D.type === "currency")?.value || o;
|
|
15
|
+
return `${u}${i}${s}`;
|
|
16
|
+
}
|
|
17
|
+
return new Intl.NumberFormat(l, {
|
|
18
|
+
style: "currency",
|
|
19
|
+
currency: o
|
|
20
|
+
}).format(c);
|
|
21
|
+
}, d = (e) => {
|
|
22
|
+
const n = e.colDef, t = typeof n.valueFormatter == "object" ? n.valueFormatter : n;
|
|
23
|
+
if (e.value == null) return t.nullDisplay ?? "-";
|
|
24
|
+
const o = t.symbol || "$", l = t.position || "prefix", r = t.decimals ?? 2, c = t.locale || "en-US", s = t.formatType, u = Number(e.value);
|
|
25
|
+
if (isNaN(u)) return String(e.value);
|
|
26
|
+
const m = y(Math.abs(u), s);
|
|
27
|
+
let i;
|
|
28
|
+
return m ? i = `${u < 0 ? "-" : ""}${m}` : i = new Intl.NumberFormat(c, {
|
|
29
|
+
minimumFractionDigits: r,
|
|
30
|
+
maximumFractionDigits: r
|
|
31
|
+
}).format(u), l === "prefix" ? `${o}${i}` : `${i}${o}`;
|
|
32
|
+
}, b = (e) => {
|
|
33
|
+
if (e.value == null) return a(e.colDef);
|
|
34
|
+
const n = e.colDef, t = n.decimals ?? 0, o = n.locale || "en-US", l = n.formatType, r = Number(e.value);
|
|
35
|
+
if (isNaN(r)) return String(e.value);
|
|
36
|
+
const c = y(Math.abs(r), l);
|
|
37
|
+
return c ? `${r < 0 ? "-" : ""}${c}` : new Intl.NumberFormat(o, {
|
|
38
|
+
minimumFractionDigits: t,
|
|
39
|
+
maximumFractionDigits: t
|
|
40
|
+
}).format(r);
|
|
41
|
+
}, f = (e) => {
|
|
42
|
+
if (e.value == null) return a(e.colDef);
|
|
43
|
+
const n = Number(e.value);
|
|
44
|
+
if (isNaN(n)) return String(e.value);
|
|
45
|
+
const t = Math.abs(n), o = n < 0 ? "-" : "";
|
|
46
|
+
return t >= 1e9 ? `${o}${(t / 1e9).toFixed(1)}B` : t >= 1e6 ? `${o}${(t / 1e6).toFixed(1)}M` : t >= 1e3 ? `${o}${(t / 1e3).toFixed(1)}K` : new Intl.NumberFormat("en-US", {
|
|
47
|
+
maximumFractionDigits: 2
|
|
48
|
+
}).format(n);
|
|
49
|
+
}, v = (e) => {
|
|
50
|
+
if (e.value == null) return a(e.colDef);
|
|
51
|
+
const n = Number(e.value);
|
|
52
|
+
if (isNaN(n)) return String(e.value);
|
|
53
|
+
const t = e.colDef, o = t.decimals ?? 2, l = t.divideBy ?? 100, r = n / l;
|
|
54
|
+
return new Intl.NumberFormat("en-US", {
|
|
55
|
+
style: "percent",
|
|
56
|
+
minimumFractionDigits: o,
|
|
57
|
+
maximumFractionDigits: o
|
|
58
|
+
}).format(r);
|
|
59
|
+
}, g = (e) => {
|
|
60
|
+
if (!e.value) return a(e.colDef);
|
|
61
|
+
const n = e.colDef, t = n.dateStyle || "medium", o = n.locale || "en-US", l = new Date(e.value);
|
|
62
|
+
return isNaN(l.getTime()) ? String(e.value) : new Intl.DateTimeFormat(o, {
|
|
63
|
+
dateStyle: t
|
|
64
|
+
}).format(l);
|
|
65
|
+
}, S = (e) => {
|
|
66
|
+
if (!e.value) return a(e.colDef);
|
|
67
|
+
const n = e.colDef, t = n.dateStyle || "medium", o = n.timeStyle || "short", l = n.locale || "en-US", r = new Date(e.value);
|
|
68
|
+
return isNaN(r.getTime()) ? String(e.value) : new Intl.DateTimeFormat(l, {
|
|
69
|
+
dateStyle: t,
|
|
70
|
+
timeStyle: o
|
|
71
|
+
}).format(r);
|
|
72
|
+
}, $ = (e) => {
|
|
73
|
+
if (e.value == null) return a(e.colDef);
|
|
74
|
+
const n = e.colDef, t = n.trueValue || "Yes", o = n.falseValue || "No";
|
|
75
|
+
return e.value ? t : o;
|
|
76
|
+
}, x = {
|
|
77
|
+
// Currency formatters
|
|
78
|
+
currency: N,
|
|
79
|
+
currencySymbol: d,
|
|
80
|
+
// Number formatters
|
|
81
|
+
number: b,
|
|
82
|
+
compact: f,
|
|
83
|
+
compactNumber: f,
|
|
84
|
+
largeNumber: f,
|
|
85
|
+
// Percentage formatter
|
|
86
|
+
percentage: v,
|
|
87
|
+
// Date formatters
|
|
88
|
+
date: g,
|
|
89
|
+
dateTime: S,
|
|
90
|
+
// Boolean formatter
|
|
91
|
+
boolean: $
|
|
92
|
+
};
|
|
93
|
+
export {
|
|
94
|
+
x as AG_GRID_VALUE_FORMATTERS
|
|
95
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
3
|
+
declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
|
|
4
|
+
declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
|
|
6
|
+
declare const AlertDialogOverlay: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
7
|
+
declare const AlertDialogContent: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
+
declare const AlertDialogHeader: {
|
|
9
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
displayName: string;
|
|
11
|
+
};
|
|
12
|
+
declare const AlertDialogFooter: {
|
|
13
|
+
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
displayName: string;
|
|
15
|
+
};
|
|
16
|
+
declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
17
|
+
declare const AlertDialogDescription: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
18
|
+
declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
19
|
+
declare const AlertDialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
20
|
+
export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { jsx as l, jsxs as n } from "react/jsx-runtime";
|
|
2
|
+
import * as i from "react";
|
|
3
|
+
import * as t from "@radix-ui/react-alert-dialog";
|
|
4
|
+
import { cn as s } from "../../lib/utils.js";
|
|
5
|
+
import { buttonVariants as r } from "./button-variants.js";
|
|
6
|
+
const w = t.Root, b = t.Trigger, m = t.Portal, d = i.forwardRef(({ className: a, ...e }, o) => /* @__PURE__ */ l(
|
|
7
|
+
t.Overlay,
|
|
8
|
+
{
|
|
9
|
+
className: s(
|
|
10
|
+
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
11
|
+
a
|
|
12
|
+
),
|
|
13
|
+
...e,
|
|
14
|
+
ref: o
|
|
15
|
+
}
|
|
16
|
+
));
|
|
17
|
+
d.displayName = t.Overlay.displayName;
|
|
18
|
+
const c = i.forwardRef(({ className: a, ...e }, o) => /* @__PURE__ */ n(m, { children: [
|
|
19
|
+
/* @__PURE__ */ l(d, {}),
|
|
20
|
+
/* @__PURE__ */ l(
|
|
21
|
+
t.Content,
|
|
22
|
+
{
|
|
23
|
+
ref: o,
|
|
24
|
+
"aria-describedby": void 0,
|
|
25
|
+
className: s(
|
|
26
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
27
|
+
a
|
|
28
|
+
),
|
|
29
|
+
...e
|
|
30
|
+
}
|
|
31
|
+
)
|
|
32
|
+
] }));
|
|
33
|
+
c.displayName = t.Content.displayName;
|
|
34
|
+
const f = ({
|
|
35
|
+
className: a,
|
|
36
|
+
...e
|
|
37
|
+
}) => /* @__PURE__ */ l(
|
|
38
|
+
"div",
|
|
39
|
+
{
|
|
40
|
+
className: s(
|
|
41
|
+
"flex flex-col space-y-2 text-center sm:text-left",
|
|
42
|
+
a
|
|
43
|
+
),
|
|
44
|
+
...e
|
|
45
|
+
}
|
|
46
|
+
);
|
|
47
|
+
f.displayName = "AlertDialogHeader";
|
|
48
|
+
const p = ({
|
|
49
|
+
className: a,
|
|
50
|
+
...e
|
|
51
|
+
}) => /* @__PURE__ */ l(
|
|
52
|
+
"div",
|
|
53
|
+
{
|
|
54
|
+
className: s(
|
|
55
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
56
|
+
a
|
|
57
|
+
),
|
|
58
|
+
...e
|
|
59
|
+
}
|
|
60
|
+
);
|
|
61
|
+
p.displayName = "AlertDialogFooter";
|
|
62
|
+
const g = i.forwardRef(({ className: a, ...e }, o) => /* @__PURE__ */ l(
|
|
63
|
+
t.Title,
|
|
64
|
+
{
|
|
65
|
+
ref: o,
|
|
66
|
+
className: s("text-lg font-semibold", a),
|
|
67
|
+
...e
|
|
68
|
+
}
|
|
69
|
+
));
|
|
70
|
+
g.displayName = t.Title.displayName;
|
|
71
|
+
const N = i.forwardRef(({ className: a, ...e }, o) => /* @__PURE__ */ l(
|
|
72
|
+
t.Description,
|
|
73
|
+
{
|
|
74
|
+
ref: o,
|
|
75
|
+
className: s("text-sm text-muted-foreground", a),
|
|
76
|
+
...e
|
|
77
|
+
}
|
|
78
|
+
));
|
|
79
|
+
N.displayName = t.Description.displayName;
|
|
80
|
+
const y = i.forwardRef(({ className: a, ...e }, o) => /* @__PURE__ */ l(
|
|
81
|
+
t.Action,
|
|
82
|
+
{
|
|
83
|
+
ref: o,
|
|
84
|
+
className: s(r(), a),
|
|
85
|
+
...e
|
|
86
|
+
}
|
|
87
|
+
));
|
|
88
|
+
y.displayName = t.Action.displayName;
|
|
89
|
+
const x = i.forwardRef(({ className: a, ...e }, o) => /* @__PURE__ */ l(
|
|
90
|
+
t.Cancel,
|
|
91
|
+
{
|
|
92
|
+
ref: o,
|
|
93
|
+
className: s(
|
|
94
|
+
r({ variant: "outline" }),
|
|
95
|
+
"mt-2 sm:mt-0",
|
|
96
|
+
a
|
|
97
|
+
),
|
|
98
|
+
...e
|
|
99
|
+
}
|
|
100
|
+
));
|
|
101
|
+
x.displayName = t.Cancel.displayName;
|
|
102
|
+
export {
|
|
103
|
+
w as AlertDialog,
|
|
104
|
+
y as AlertDialogAction,
|
|
105
|
+
x as AlertDialogCancel,
|
|
106
|
+
c as AlertDialogContent,
|
|
107
|
+
N as AlertDialogDescription,
|
|
108
|
+
p as AlertDialogFooter,
|
|
109
|
+
f as AlertDialogHeader,
|
|
110
|
+
d as AlertDialogOverlay,
|
|
111
|
+
m as AlertDialogPortal,
|
|
112
|
+
g as AlertDialogTitle,
|
|
113
|
+
b as AlertDialogTrigger
|
|
114
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare const alertVariants: (props?: {
|
|
4
|
+
variant?: "default" | "info" | "warning" | "error" | "success";
|
|
5
|
+
} & import('class-variance-authority/types').ClassProp) => string;
|
|
6
|
+
declare const Alert: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: {
|
|
7
|
+
variant?: "default" | "info" | "warning" | "error" | "success";
|
|
8
|
+
} & import('class-variance-authority/types').ClassProp) => string> & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
10
|
+
declare const AlertDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
11
|
+
export { Alert, AlertTitle, AlertDescription, alertVariants };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
import * as o from "react";
|
|
3
|
+
import { cva as l } from "class-variance-authority";
|
|
4
|
+
import { cn as s } from "../../lib/utils.js";
|
|
5
|
+
const n = l(
|
|
6
|
+
"relative w-full rounded-lg border px-4 py-3 text-sm flex gap-3 items-start",
|
|
7
|
+
{
|
|
8
|
+
variants: {
|
|
9
|
+
variant: {
|
|
10
|
+
default: "bg-background text-foreground",
|
|
11
|
+
info: "bg-info-bg border-info-border [&>svg]:text-primary",
|
|
12
|
+
warning: "bg-warning-alert-bg border-warning-alert-border [&>svg]:text-warning",
|
|
13
|
+
error: "bg-error-alert-bg border-error-alert-border [&>svg]:text-destructive",
|
|
14
|
+
success: "bg-success-alert-bg border-success-alert-border [&>svg]:text-success"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
defaultVariants: {
|
|
18
|
+
variant: "default"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
), d = o.forwardRef(({ className: r, variant: e, ...t }, i) => /* @__PURE__ */ a(
|
|
22
|
+
"div",
|
|
23
|
+
{
|
|
24
|
+
ref: i,
|
|
25
|
+
role: "alert",
|
|
26
|
+
className: s(n({ variant: e }), r),
|
|
27
|
+
...t
|
|
28
|
+
}
|
|
29
|
+
));
|
|
30
|
+
d.displayName = "Alert";
|
|
31
|
+
const g = o.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
32
|
+
"h5",
|
|
33
|
+
{
|
|
34
|
+
ref: t,
|
|
35
|
+
className: s("font-semibold leading-[21px] tracking-tight text-foreground", r),
|
|
36
|
+
...e
|
|
37
|
+
}
|
|
38
|
+
));
|
|
39
|
+
g.displayName = "AlertTitle";
|
|
40
|
+
const c = o.forwardRef(({ className: r, ...e }, t) => /* @__PURE__ */ a(
|
|
41
|
+
"div",
|
|
42
|
+
{
|
|
43
|
+
ref: t,
|
|
44
|
+
className: s("text-[12px] leading-[18px] text-secondary-foreground", r),
|
|
45
|
+
...e
|
|
46
|
+
}
|
|
47
|
+
));
|
|
48
|
+
c.displayName = "AlertDescription";
|
|
49
|
+
export {
|
|
50
|
+
d as Alert,
|
|
51
|
+
c as AlertDescription,
|
|
52
|
+
g as AlertTitle,
|
|
53
|
+
n as alertVariants
|
|
54
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
4
|
+
declare const avatarVariants: (props?: {
|
|
5
|
+
size?: "sm" | "md" | "lg";
|
|
6
|
+
shape?: "circle" | "square";
|
|
7
|
+
} & import('class-variance-authority/types').ClassProp) => string;
|
|
8
|
+
declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React.RefAttributes<HTMLSpanElement>, "ref"> & VariantProps<(props?: {
|
|
9
|
+
size?: "sm" | "md" | "lg";
|
|
10
|
+
shape?: "circle" | "square";
|
|
11
|
+
} & import('class-variance-authority/types').ClassProp) => string> & React.RefAttributes<HTMLSpanElement>>;
|
|
12
|
+
declare const AvatarImage: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "ref"> & React.RefAttributes<HTMLImageElement>>;
|
|
13
|
+
declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
14
|
+
export { Avatar, AvatarImage, AvatarFallback, avatarVariants };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import * as l from "react";
|
|
3
|
+
import * as a from "@radix-ui/react-avatar";
|
|
4
|
+
import { cva as f } from "class-variance-authority";
|
|
5
|
+
import { cn as m } from "../../lib/utils.js";
|
|
6
|
+
const c = f(
|
|
7
|
+
"relative flex shrink-0 overflow-hidden",
|
|
8
|
+
{
|
|
9
|
+
variants: {
|
|
10
|
+
size: {
|
|
11
|
+
sm: "h-9 w-9 text-xs",
|
|
12
|
+
md: "h-12 w-12 text-sm",
|
|
13
|
+
lg: "h-16 w-16 text-lg"
|
|
14
|
+
},
|
|
15
|
+
shape: {
|
|
16
|
+
circle: "rounded-full",
|
|
17
|
+
square: "rounded-lg"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
defaultVariants: {
|
|
21
|
+
size: "md",
|
|
22
|
+
shape: "square"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
), d = l.forwardRef(({ className: e, size: s, shape: t, ...o }, i) => /* @__PURE__ */ r(
|
|
26
|
+
a.Root,
|
|
27
|
+
{
|
|
28
|
+
ref: i,
|
|
29
|
+
className: m(c({ size: s, shape: t, className: e })),
|
|
30
|
+
...o
|
|
31
|
+
}
|
|
32
|
+
));
|
|
33
|
+
d.displayName = a.Root.displayName;
|
|
34
|
+
const n = l.forwardRef(({ className: e, ...s }, t) => /* @__PURE__ */ r(
|
|
35
|
+
a.Image,
|
|
36
|
+
{
|
|
37
|
+
ref: t,
|
|
38
|
+
className: m("aspect-square h-full w-full", e),
|
|
39
|
+
...s
|
|
40
|
+
}
|
|
41
|
+
));
|
|
42
|
+
n.displayName = a.Image.displayName;
|
|
43
|
+
const p = l.forwardRef(({ className: e, ...s }, t) => /* @__PURE__ */ r(
|
|
44
|
+
a.Fallback,
|
|
45
|
+
{
|
|
46
|
+
ref: t,
|
|
47
|
+
className: m(
|
|
48
|
+
"flex h-full w-full items-center justify-center bg-success text-white font-bold",
|
|
49
|
+
e
|
|
50
|
+
),
|
|
51
|
+
...s
|
|
52
|
+
}
|
|
53
|
+
));
|
|
54
|
+
p.displayName = a.Fallback.displayName;
|
|
55
|
+
export {
|
|
56
|
+
d as Avatar,
|
|
57
|
+
p as AvatarFallback,
|
|
58
|
+
n as AvatarImage,
|
|
59
|
+
c as avatarVariants
|
|
60
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare const badgeVariants: (props?: {
|
|
4
|
+
variant?: "solid" | "outline" | "subtle";
|
|
5
|
+
color?: "primary" | "destructive" | "warning" | "success" | "neutral";
|
|
6
|
+
} & import('class-variance-authority/types').ClassProp) => string;
|
|
7
|
+
export interface BadgeProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof badgeVariants> {
|
|
8
|
+
}
|
|
9
|
+
declare function Badge({ className, variant, color, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export { Badge, badgeVariants };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import { cva as n } from "class-variance-authority";
|
|
4
|
+
import { cn as o } from "../../lib/utils.js";
|
|
5
|
+
const i = n(
|
|
6
|
+
"inline-flex items-center rounded-full border px-2.5 py-0.5 text-sm leading-[18px] font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
|
7
|
+
{
|
|
8
|
+
variants: {
|
|
9
|
+
variant: {
|
|
10
|
+
solid: "",
|
|
11
|
+
outline: "",
|
|
12
|
+
subtle: ""
|
|
13
|
+
},
|
|
14
|
+
color: {
|
|
15
|
+
primary: "",
|
|
16
|
+
success: "",
|
|
17
|
+
warning: "",
|
|
18
|
+
destructive: "",
|
|
19
|
+
neutral: ""
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
compoundVariants: [
|
|
23
|
+
// Solid
|
|
24
|
+
{ variant: "solid", color: "primary", className: "border-transparent bg-primary text-white" },
|
|
25
|
+
{ variant: "solid", color: "success", className: "border-transparent bg-success text-white" },
|
|
26
|
+
{ variant: "solid", color: "warning", className: "border-transparent bg-warning text-[#000000de]" },
|
|
27
|
+
{ variant: "solid", color: "destructive", className: "border-transparent bg-destructive text-white" },
|
|
28
|
+
{ variant: "solid", color: "neutral", className: "border-transparent bg-[#5f6673] text-white" },
|
|
29
|
+
// Outline
|
|
30
|
+
{ variant: "outline", color: "primary", className: "bg-transparent border-primary text-primary" },
|
|
31
|
+
{ variant: "outline", color: "success", className: "bg-transparent border-success text-success" },
|
|
32
|
+
{ variant: "outline", color: "warning", className: "bg-transparent border-warning text-warning" },
|
|
33
|
+
{ variant: "outline", color: "destructive", className: "bg-transparent border-destructive text-destructive" },
|
|
34
|
+
{ variant: "outline", color: "neutral", className: "bg-transparent border-[#5f6673] text-[#5f6673]" },
|
|
35
|
+
// Subtle
|
|
36
|
+
{ variant: "subtle", color: "primary", className: "border-transparent bg-primary-subtle-bg text-primary-subtle-text" },
|
|
37
|
+
{ variant: "subtle", color: "success", className: "border-transparent bg-success-alert-bg text-success" },
|
|
38
|
+
{ variant: "subtle", color: "warning", className: "border-transparent bg-warning-alert-bg text-warning" },
|
|
39
|
+
{ variant: "subtle", color: "destructive", className: "border-transparent bg-error-alert-bg text-destructive" },
|
|
40
|
+
{ variant: "subtle", color: "neutral", className: "border-transparent bg-[#5f6673]/10 text-[#5f6673]" }
|
|
41
|
+
],
|
|
42
|
+
defaultVariants: {
|
|
43
|
+
variant: "solid",
|
|
44
|
+
color: "primary"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
);
|
|
48
|
+
function d({ className: r, variant: t, color: a, ...e }) {
|
|
49
|
+
return /* @__PURE__ */ s("div", { className: o(i({ variant: t, color: a }), r), ...e });
|
|
50
|
+
}
|
|
51
|
+
export {
|
|
52
|
+
d as Badge,
|
|
53
|
+
i as badgeVariants
|
|
54
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
declare const HomeIcon: ({ className }: {
|
|
3
|
+
className?: string;
|
|
4
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const Breadcrumb: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
6
|
+
separator?: React.ReactNode;
|
|
7
|
+
} & React.RefAttributes<HTMLElement>>;
|
|
8
|
+
declare const BreadcrumbList: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React.RefAttributes<HTMLOListElement>>;
|
|
9
|
+
declare const BreadcrumbItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
|
|
10
|
+
declare const BreadcrumbLink: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
|
|
11
|
+
asChild?: boolean;
|
|
12
|
+
} & React.RefAttributes<HTMLAnchorElement>>;
|
|
13
|
+
declare const BreadcrumbPage: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
14
|
+
declare const BreadcrumbSeparator: {
|
|
15
|
+
({ children, className, ...props }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
displayName: string;
|
|
17
|
+
};
|
|
18
|
+
declare const BreadcrumbEllipsis: {
|
|
19
|
+
({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
displayName: string;
|
|
21
|
+
};
|
|
22
|
+
declare const BreadcrumbHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
export { Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbEllipsis, BreadcrumbHeader, HomeIcon, BreadcrumbArrowSeparator, };
|
|
24
|
+
declare const BreadcrumbArrowSeparator: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
|