vlite3 0.1.0 → 0.1.2
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/_virtual/_plugin-vue_export-helper.js +9 -0
- package/components/Accordion/Accordion.vue.d.ts +44 -0
- package/components/Accordion/Accordion.vue.js +95 -0
- package/components/Accordion/Accordion.vue2.js +4 -0
- package/components/Accordion/AccordionContent.vue.d.ts +22 -0
- package/components/Accordion/AccordionContent.vue.js +7 -0
- package/components/Accordion/AccordionContent.vue2.js +47 -0
- package/components/Accordion/AccordionItem.vue.d.ts +56 -0
- package/components/Accordion/AccordionItem.vue.js +115 -0
- package/components/Accordion/AccordionItem.vue2.js +4 -0
- package/components/Accordion/AccordionTrigger.vue.d.ts +43 -0
- package/components/Accordion/AccordionTrigger.vue.js +94 -0
- package/components/Accordion/AccordionTrigger.vue2.js +4 -0
- package/components/Accordion/index.d.ts +5 -0
- package/components/Accordion/types.d.ts +33 -0
- package/components/Alert.vue.d.ts +36 -0
- package/components/Alert.vue.js +84 -0
- package/components/Alert.vue2.js +4 -0
- package/components/Avatar.vue.d.ts +32 -0
- package/components/Avatar.vue.js +78 -0
- package/components/Avatar.vue2.js +4 -0
- package/components/AvatarUploader/AvatarUploader.vue.d.ts +32 -0
- package/components/AvatarUploader/AvatarUploader.vue.js +99 -0
- package/components/AvatarUploader/AvatarUploader.vue2.js +4 -0
- package/{src/components/AvatarUploader/index.ts → components/AvatarUploader/index.d.ts} +2 -2
- package/components/Badge.vue.d.ts +25 -0
- package/components/Badge.vue.js +27 -0
- package/components/Badge.vue2.js +4 -0
- package/components/Button.vue.d.ts +26 -0
- package/components/Button.vue.js +107 -0
- package/components/Button.vue2.js +4 -0
- package/components/ButtonGroup.vue.d.ts +29 -0
- package/components/ButtonGroup.vue.js +7 -0
- package/components/ButtonGroup.vue2.js +30 -0
- package/components/Carousel/Carousel.vue.d.ts +847 -0
- package/components/Carousel/Carousel.vue.js +7 -0
- package/components/Carousel/Carousel.vue2.js +68 -0
- package/components/Carousel/index.d.ts +2 -0
- package/components/Carousel/types.d.ts +24 -0
- package/components/CheckBox.vue.d.ts +27 -0
- package/components/CheckBox.vue.js +115 -0
- package/components/CheckBox.vue2.js +4 -0
- package/components/Chip/Chip.vue.d.ts +33 -0
- package/components/Chip/Chip.vue.js +113 -0
- package/components/Chip/Chip.vue2.js +4 -0
- package/components/Chip/index.d.ts +2 -0
- package/components/Chip/types.d.ts +12 -0
- package/components/ChoiceBox/ChoiceBox.vue.d.ts +32 -0
- package/components/ChoiceBox/ChoiceBox.vue.js +141 -0
- package/components/ChoiceBox/ChoiceBox.vue2.js +4 -0
- package/components/ChoiceBox/index.d.ts +2 -0
- package/components/ColorPicker/ColorIro.vue.d.ts +18 -0
- package/components/ColorPicker/ColorIro.vue.js +142 -0
- package/components/ColorPicker/ColorIro.vue3.js +5 -0
- package/components/ColorPicker/ColorPicker.vue.d.ts +22 -0
- package/components/ColorPicker/ColorPicker.vue.js +56 -0
- package/components/ColorPicker/ColorPicker.vue2.js +4 -0
- package/components/ConfirmationModal.vue.d.ts +39 -0
- package/components/ConfirmationModal.vue.js +55 -0
- package/components/ConfirmationModal.vue2.js +4 -0
- package/components/DataTable/DataTable.vue.d.ts +60 -0
- package/components/DataTable/DataTable.vue.js +7 -0
- package/components/DataTable/DataTable.vue2.js +310 -0
- package/components/DataTable/DataTableHeader.vue.d.ts +14 -0
- package/components/DataTable/DataTableHeader.vue.js +49 -0
- package/components/DataTable/DataTableHeader.vue2.js +4 -0
- package/components/DataTable/DataTableRow.vue.d.ts +51 -0
- package/components/DataTable/DataTableRow.vue.js +114 -0
- package/components/DataTable/DataTableRow.vue2.js +4 -0
- package/components/DataTable/DataTableToolbar.vue.d.ts +31 -0
- package/components/DataTable/DataTableToolbar.vue.js +45 -0
- package/components/DataTable/DataTableToolbar.vue2.js +4 -0
- package/components/DataTable/index.d.ts +4 -0
- package/components/DataTable/types.d.ts +75 -0
- package/components/DatePicker.vue.d.ts +44 -0
- package/components/DatePicker.vue.js +84 -0
- package/components/DatePicker.vue2.js +4 -0
- package/components/Dropdown/Dropdown.vue.d.ts +105 -0
- package/components/Dropdown/Dropdown.vue.js +206 -0
- package/components/Dropdown/Dropdown.vue2.js +4 -0
- package/components/Dropdown/DropdownBooleanItem.vue.d.ts +12 -0
- package/components/Dropdown/DropdownBooleanItem.vue.js +41 -0
- package/components/Dropdown/DropdownBooleanItem.vue2.js +4 -0
- package/components/Dropdown/DropdownGroupedLayout.vue.d.ts +21 -0
- package/components/Dropdown/DropdownGroupedLayout.vue.js +73 -0
- package/components/Dropdown/DropdownGroupedLayout.vue2.js +4 -0
- package/components/Dropdown/DropdownItem.vue.d.ts +35 -0
- package/components/Dropdown/DropdownItem.vue.js +56 -0
- package/components/Dropdown/DropdownItem.vue2.js +4 -0
- package/components/Dropdown/DropdownMenu.vue.d.ts +73 -0
- package/components/Dropdown/DropdownMenu.vue.js +232 -0
- package/components/Dropdown/DropdownMenu.vue2.js +4 -0
- package/components/Dropdown/DropdownTrigger.vue.d.ts +15 -0
- package/components/Dropdown/DropdownTrigger.vue.js +26 -0
- package/components/Dropdown/DropdownTrigger.vue2.js +4 -0
- package/components/Dropdown/composables/useDropdownIds.d.ts +5 -0
- package/components/Dropdown/composables/useDropdownIds.js +20 -0
- package/components/Dropdown/composables/useDropdownNavigation.d.ts +19 -0
- package/components/Dropdown/composables/useDropdownNavigation.js +49 -0
- package/components/Dropdown/composables/useDropdownSelection.d.ts +16 -0
- package/components/Dropdown/composables/useDropdownSelection.js +41 -0
- package/components/Dropdown/index.d.ts +6 -0
- package/components/FilePicker/FilePicker.vue.d.ts +65 -0
- package/components/FilePicker/FilePicker.vue.js +285 -0
- package/components/FilePicker/FilePicker.vue2.js +4 -0
- package/components/FilePicker/index.d.ts +2 -0
- package/components/FileTree/FileTree.vue.d.ts +20 -0
- package/components/FileTree/FileTree.vue.js +139 -0
- package/components/FileTree/FileTree.vue2.js +4 -0
- package/components/FileTree/FileTreeNode.vue.d.ts +28 -0
- package/components/FileTree/FileTreeNode.vue.js +184 -0
- package/components/FileTree/FileTreeNode.vue2.js +4 -0
- package/components/FileTree/index.d.ts +4 -0
- package/components/FileTree/types.d.ts +36 -0
- package/components/FileTree/useTreeSelection.d.ts +12 -0
- package/components/FileTree/useTreeSelection.js +25 -0
- package/components/Form/CustomFields.vue.d.ts +38 -0
- package/components/Form/CustomFields.vue.js +7 -0
- package/components/Form/CustomFields.vue2.js +161 -0
- package/components/Form/Form.vue.d.ts +94 -0
- package/components/Form/Form.vue.js +7 -0
- package/components/Form/Form.vue2.js +238 -0
- package/components/Form/FormField.vue.d.ts +28 -0
- package/components/Form/FormField.vue.js +207 -0
- package/components/Form/FormField.vue2.js +4 -0
- package/components/Form/FormFields.vue.d.ts +29 -0
- package/components/Form/FormFields.vue.js +7 -0
- package/components/Form/FormFields.vue2.js +95 -0
- package/components/Form/composables/useFileUpload.d.ts +24 -0
- package/components/Form/composables/useFileUpload.js +40 -0
- package/components/Form/composables/useForm.d.ts +48 -0
- package/components/Form/composables/useForm.js +109 -0
- package/components/Form/index.d.ts +9 -0
- package/components/Form/types.d.ts +167 -0
- package/components/Form/utils/form.utils.d.ts +44 -0
- package/components/Form/utils/form.utils.js +97 -0
- package/components/Heatmap/Heatmap.vue.d.ts +26 -0
- package/components/Heatmap/Heatmap.vue.js +7 -0
- package/components/Heatmap/Heatmap.vue2.js +326 -0
- package/components/Heatmap/index.d.ts +2 -0
- package/components/Heatmap/types.d.ts +66 -0
- package/components/Icon.vue.d.ts +7 -0
- package/components/Icon.vue.js +25 -0
- package/components/Icon.vue2.js +4 -0
- package/components/IconPicker.vue.d.ts +38 -0
- package/components/IconPicker.vue.js +124 -0
- package/components/IconPicker.vue2.js +4 -0
- package/components/Input.vue.d.ts +54 -0
- package/components/Input.vue.js +267 -0
- package/components/Input.vue2.js +4 -0
- package/components/Label.vue.d.ts +23 -0
- package/components/Label.vue.js +23 -0
- package/components/Label.vue2.js +4 -0
- package/components/Logo.vue.d.ts +2 -0
- package/components/Logo.vue.js +10 -0
- package/components/Logo.vue2.js +4 -0
- package/components/Masonry/Masonry.vue.d.ts +31 -0
- package/components/Masonry/Masonry.vue.js +7 -0
- package/components/Masonry/Masonry.vue2.js +83 -0
- package/components/Masonry/index.d.ts +2 -0
- package/components/Masonry/types.d.ts +33 -0
- package/components/Masonry/types.js +10 -0
- package/components/Modal.vue.d.ts +52 -0
- package/components/Modal.vue.js +116 -0
- package/components/Modal.vue2.js +4 -0
- package/components/MultiSelect/MultiSelect.vue.d.ts +40 -0
- package/components/MultiSelect/MultiSelect.vue.js +126 -0
- package/components/MultiSelect/MultiSelect.vue2.js +4 -0
- package/components/MultiSelect/index.d.ts +1 -0
- package/components/Navbar/Navbar.vue.d.ts +51 -0
- package/components/Navbar/Navbar.vue.js +198 -0
- package/components/Navbar/Navbar.vue2.js +4 -0
- package/components/Navbar/NavbarGroup.vue.d.ts +24 -0
- package/components/Navbar/NavbarGroup.vue.js +23 -0
- package/components/Navbar/NavbarGroup.vue2.js +4 -0
- package/components/Navbar/NavbarItem.vue.d.ts +40 -0
- package/components/Navbar/NavbarItem.vue.js +104 -0
- package/components/Navbar/NavbarItem.vue2.js +4 -0
- package/components/Navbar/index.d.ts +3 -0
- package/components/OTPInput/OTPInput.vue.d.ts +33 -0
- package/components/OTPInput/OTPInput.vue.js +115 -0
- package/components/OTPInput/OTPInput.vue2.js +4 -0
- package/components/OTPInput/index.d.ts +1 -0
- package/components/Pagination/Pagination.vue.d.ts +34 -0
- package/components/Pagination/Pagination.vue.js +196 -0
- package/components/Pagination/Pagination.vue2.js +4 -0
- package/components/Pagination/index.d.ts +1 -0
- package/components/PricingPlan/PricingPlan.vue.d.ts +22 -0
- package/components/PricingPlan/PricingPlan.vue.js +55 -0
- package/components/PricingPlan/PricingPlan.vue2.js +4 -0
- package/components/PricingPlan/PricingPlanItem.vue.d.ts +17 -0
- package/components/PricingPlan/PricingPlanItem.vue.js +94 -0
- package/components/PricingPlan/PricingPlanItem.vue2.js +4 -0
- package/components/PricingPlan/index.d.ts +3 -0
- package/components/PricingPlan/types.d.ts +25 -0
- package/components/SidePanel.vue.d.ts +64 -0
- package/components/SidePanel.vue.js +7 -0
- package/components/SidePanel.vue2.js +131 -0
- package/components/SidebarMenu/SidebarMenu.vue.d.ts +11 -0
- package/components/SidebarMenu/SidebarMenu.vue.js +78 -0
- package/components/SidebarMenu/SidebarMenu.vue2.js +4 -0
- package/components/SidebarMenu/SidebarMenuItem.vue.d.ts +9 -0
- package/components/SidebarMenu/SidebarMenuItem.vue.js +269 -0
- package/components/SidebarMenu/SidebarMenuItem.vue3.js +5 -0
- package/components/SidebarMenu/index.d.ts +3 -0
- package/components/SidebarMenu/types.d.ts +35 -0
- package/components/Slider.vue.d.ts +31 -0
- package/components/Slider.vue.js +157 -0
- package/components/Slider.vue2.js +4 -0
- package/components/Switch.vue.d.ts +16 -0
- package/components/Switch.vue.js +40 -0
- package/components/Switch.vue2.js +4 -0
- package/components/Tabes/Tabes.vue.d.ts +21 -0
- package/components/Tabes/Tabes.vue.js +75 -0
- package/components/Tabes/Tabes.vue2.js +4 -0
- package/components/Tabes/index.d.ts +2 -0
- package/components/Tabes/types.d.ts +8 -0
- package/components/Textarea.vue.d.ts +22 -0
- package/components/Textarea.vue.js +34 -0
- package/components/Textarea.vue2.js +4 -0
- package/components/ThemeToggle.vue.d.ts +2 -0
- package/components/ThemeToggle.vue.js +18 -0
- package/components/ThemeToggle.vue2.js +4 -0
- package/components/Timeline.vue.d.ts +39 -0
- package/components/Timeline.vue.js +174 -0
- package/components/Timeline.vue2.js +4 -0
- package/components/ToastNotification.vue.d.ts +7 -0
- package/components/ToastNotification.vue.js +7 -0
- package/components/ToastNotification.vue2.js +151 -0
- package/components/Tooltip.vue.d.ts +31 -0
- package/components/Tooltip.vue.js +45 -0
- package/components/Tooltip.vue2.js +4 -0
- package/components/Workbook/Sheet.vue.d.ts +38 -0
- package/components/Workbook/Sheet.vue.js +141 -0
- package/components/Workbook/Sheet.vue2.js +4 -0
- package/components/Workbook/Workbook.vue.d.ts +54 -0
- package/components/Workbook/Workbook.vue.js +7 -0
- package/components/Workbook/Workbook.vue2.js +146 -0
- package/components/Workbook/WorkbookAddButton.vue.d.ts +6 -0
- package/components/Workbook/WorkbookAddButton.vue.js +20 -0
- package/components/Workbook/WorkbookAddButton.vue2.js +4 -0
- package/components/Workbook/index.d.ts +3 -0
- package/components/Workbook/types.d.ts +34 -0
- package/composables/useKeyStroke.d.ts +21 -0
- package/composables/useKeyStroke.js +93 -0
- package/composables/useNotifications.d.ts +113 -0
- package/composables/useNotifications.js +99 -0
- package/composables/useTheme.d.ts +6 -0
- package/composables/useTheme.js +32 -0
- package/core/config.d.ts +29 -0
- package/core/config.js +12 -0
- package/core/index.d.ts +31 -0
- package/core/index.js +15 -0
- package/directives/vRipple.d.ts +4 -0
- package/directives/vRipple.js +17 -0
- package/index.d.ts +49 -0
- package/index.js +156 -0
- package/package.json +2 -2
- package/style.css +590 -0
- package/types/alert.type.d.ts +10 -0
- package/{src/types/avatar.type.ts → types/avatar.type.d.ts} +8 -9
- package/types/button.d.ts +15 -0
- package/types/buttongroup.type.d.ts +1 -0
- package/{src/types/config.type.ts → types/config.type.d.ts} +13 -16
- package/types/form.type.d.ts +45 -0
- package/types/index.d.ts +10 -0
- package/types/navbar.type.d.ts +27 -0
- package/types/sidepanel.type.d.ts +13 -0
- package/types/styles.d.ts +28 -0
- package/types/timeline.type.d.ts +9 -0
- package/{src/utils/functions.ts → utils/functions.d.ts} +1 -9
- package/utils/functions.js +11 -0
- package/utils/index.d.ts +2 -0
- package/utils/object.d.ts +6 -0
- package/utils/object.js +14 -0
- package/.vscode/extensions.json +0 -3
- package/LICENSE +0 -21
- package/index.html +0 -16
- package/scripts/bundle-css.js +0 -45
- package/src/App.vue +0 -7
- package/src/components/Accordion/Accordion.vue +0 -139
- package/src/components/Accordion/AccordionContent.vue +0 -63
- package/src/components/Accordion/AccordionItem.vue +0 -163
- package/src/components/Accordion/AccordionTrigger.vue +0 -125
- package/src/components/Accordion/index.ts +0 -5
- package/src/components/Accordion/types.ts +0 -41
- package/src/components/Alert.vue +0 -112
- package/src/components/Avatar.vue +0 -110
- package/src/components/AvatarUploader/AvatarUploader.vue +0 -129
- package/src/components/Badge.vue +0 -45
- package/src/components/Button.vue +0 -122
- package/src/components/ButtonGroup.vue +0 -173
- package/src/components/Carousel/Carousel.vue +0 -84
- package/src/components/Carousel/index.ts +0 -2
- package/src/components/Carousel/types.ts +0 -25
- package/src/components/CheckBox.vue +0 -132
- package/src/components/Chip/Chip.vue +0 -158
- package/src/components/Chip/index.ts +0 -2
- package/src/components/Chip/types.ts +0 -23
- package/src/components/ChoiceBox/ChoiceBox.vue +0 -181
- package/src/components/ChoiceBox/index.ts +0 -2
- package/src/components/ColorPicker/ColorIro.vue +0 -207
- package/src/components/ColorPicker/ColorPicker.vue +0 -61
- package/src/components/ConfirmationModal.vue +0 -46
- package/src/components/DataTable/DataTable.vue +0 -478
- package/src/components/DataTable/DataTableHeader.vue +0 -78
- package/src/components/DataTable/DataTableRow.vue +0 -171
- package/src/components/DataTable/DataTableToolbar.vue +0 -45
- package/src/components/DataTable/index.ts +0 -5
- package/src/components/DataTable/types.ts +0 -85
- package/src/components/DatePicker.vue +0 -102
- package/src/components/Dropdown/Dropdown.vue +0 -348
- package/src/components/Dropdown/DropdownBooleanItem.vue +0 -40
- package/src/components/Dropdown/DropdownGroupedLayout.vue +0 -115
- package/src/components/Dropdown/DropdownItem.vue +0 -56
- package/src/components/Dropdown/DropdownMenu.vue +0 -374
- package/src/components/Dropdown/DropdownTrigger.vue +0 -27
- package/src/components/Dropdown/composables/useDropdownIds.ts +0 -27
- package/src/components/Dropdown/composables/useDropdownNavigation.ts +0 -109
- package/src/components/Dropdown/composables/useDropdownSelection.ts +0 -106
- package/src/components/Dropdown/index.ts +0 -6
- package/src/components/FilePicker/FilePicker.vue +0 -459
- package/src/components/FilePicker/index.ts +0 -2
- package/src/components/FileTree/FileTree.vue +0 -334
- package/src/components/FileTree/FileTreeNode.vue +0 -225
- package/src/components/FileTree/index.ts +0 -2
- package/src/components/FileTree/types.ts +0 -31
- package/src/components/FileTree/useTreeSelection.ts +0 -66
- package/src/components/Form/CustomFields.vue +0 -294
- package/src/components/Form/Form.vue +0 -406
- package/src/components/Form/FormField.vue +0 -404
- package/src/components/Form/FormFields.vue +0 -161
- package/src/components/Form/composables/useFileUpload.ts +0 -112
- package/src/components/Form/composables/useForm.ts +0 -356
- package/src/components/Form/index.ts +0 -16
- package/src/components/Form/types.ts +0 -203
- package/src/components/Form/utils/form.utils.ts +0 -209
- package/src/components/Heatmap/Heatmap.vue +0 -629
- package/src/components/Heatmap/index.ts +0 -2
- package/src/components/Heatmap/types.ts +0 -84
- package/src/components/Icon.vue +0 -47
- package/src/components/IconPicker.vue +0 -138
- package/src/components/Input.vue +0 -366
- package/src/components/Label.vue +0 -25
- package/src/components/Logo.vue +0 -5
- package/src/components/Masonry/Masonry.vue +0 -148
- package/src/components/Masonry/index.ts +0 -2
- package/src/components/Masonry/types.ts +0 -44
- package/src/components/Modal.vue +0 -135
- package/src/components/MultiSelect/MultiSelect.vue +0 -176
- package/src/components/MultiSelect/index.ts +0 -1
- package/src/components/Navbar/Navbar.vue +0 -277
- package/src/components/Navbar/NavbarGroup.vue +0 -27
- package/src/components/Navbar/NavbarItem.vue +0 -124
- package/src/components/Navbar/index.ts +0 -3
- package/src/components/OTPInput/OTPInput.vue +0 -220
- package/src/components/OTPInput/index.ts +0 -1
- package/src/components/Pagination/Pagination.vue +0 -238
- package/src/components/Pagination/index.ts +0 -1
- package/src/components/PricingPlan/PricingPlan.vue +0 -102
- package/src/components/PricingPlan/PricingPlanItem.vue +0 -148
- package/src/components/PricingPlan/index.ts +0 -3
- package/src/components/PricingPlan/types.ts +0 -29
- package/src/components/SidePanel.vue +0 -184
- package/src/components/SidebarMenu/SidebarMenu.vue +0 -146
- package/src/components/SidebarMenu/SidebarMenuItem.vue +0 -333
- package/src/components/SidebarMenu/index.ts +0 -3
- package/src/components/SidebarMenu/types.ts +0 -54
- package/src/components/Slider.vue +0 -181
- package/src/components/Switch.vue +0 -51
- package/src/components/Tabes/Tabes.vue +0 -112
- package/src/components/Tabes/index.ts +0 -2
- package/src/components/Tabes/types.ts +0 -17
- package/src/components/Textarea.vue +0 -48
- package/src/components/ThemeToggle.vue +0 -14
- package/src/components/Timeline.vue +0 -250
- package/src/components/ToastNotification.vue +0 -257
- package/src/components/Tooltip.vue +0 -25
- package/src/components/Workbook/Sheet.vue +0 -185
- package/src/components/Workbook/Workbook.vue +0 -231
- package/src/components/Workbook/WorkbookAddButton.vue +0 -17
- package/src/components/Workbook/index.ts +0 -3
- package/src/components/Workbook/types.ts +0 -43
- package/src/composables/useKeyStroke.ts +0 -291
- package/src/composables/useNotifications.ts +0 -206
- package/src/composables/useTheme.ts +0 -55
- package/src/core/config.ts +0 -37
- package/src/core/index.ts +0 -49
- package/src/css/base.css +0 -148
- package/src/css/input.css +0 -61
- package/src/css/main.css +0 -6
- package/src/css/theme.css +0 -344
- package/src/directives/vRipple.ts +0 -38
- package/src/index.ts +0 -53
- package/src/main.ts +0 -5
- package/src/playground/Playground.vue +0 -429
- package/src/playground/composables/useGetUsers.ts +0 -538
- package/src/playground/demos/AccordionDemo.vue +0 -361
- package/src/playground/demos/AlertDemo.vue +0 -36
- package/src/playground/demos/AvatarDemo.vue +0 -41
- package/src/playground/demos/AvatarUploaderDemo.vue +0 -133
- package/src/playground/demos/BadgeDemo.vue +0 -31
- package/src/playground/demos/BadgesDemo.vue +0 -26
- package/src/playground/demos/ButtonDemo.vue +0 -99
- package/src/playground/demos/ButtonGroupDemo.vue +0 -39
- package/src/playground/demos/ButtonsDemo.vue +0 -111
- package/src/playground/demos/CarouselDemo.vue +0 -135
- package/src/playground/demos/CheckBoxDemo.vue +0 -43
- package/src/playground/demos/ChipDemo.vue +0 -190
- package/src/playground/demos/ChoiceBoxDemo.vue +0 -160
- package/src/playground/demos/ColorPickerDemo.vue +0 -30
- package/src/playground/demos/ColorsDemo.vue +0 -295
- package/src/playground/demos/DataTableDemo.vue +0 -215
- package/src/playground/demos/DatePickerDemo.vue +0 -43
- package/src/playground/demos/DisplayDemo.vue +0 -101
- package/src/playground/demos/DropdownDemo.vue +0 -651
- package/src/playground/demos/FilePickerDemo.vue +0 -175
- package/src/playground/demos/FileTreeDemo.vue +0 -150
- package/src/playground/demos/FormDemo.vue +0 -1144
- package/src/playground/demos/HeatmapDemo.vue +0 -467
- package/src/playground/demos/IconPickerDemo.vue +0 -27
- package/src/playground/demos/InputDemo.vue +0 -80
- package/src/playground/demos/InputsDemo.vue +0 -127
- package/src/playground/demos/LabelDemo.vue +0 -32
- package/src/playground/demos/MasonryDemo.vue +0 -241
- package/src/playground/demos/ModalDemo.vue +0 -67
- package/src/playground/demos/MultiSelectDemo.vue +0 -300
- package/src/playground/demos/NavbarDemo.vue +0 -59
- package/src/playground/demos/NavigationDemo.vue +0 -116
- package/src/playground/demos/OTPInputDemo.vue +0 -170
- package/src/playground/demos/OverlaysDemo.vue +0 -104
- package/src/playground/demos/PaginationDemo.vue +0 -130
- package/src/playground/demos/PricingPlanDemo.vue +0 -110
- package/src/playground/demos/SidePanelDemo.vue +0 -45
- package/src/playground/demos/SidebarMenuDemo.vue +0 -170
- package/src/playground/demos/SliderDemo.vue +0 -48
- package/src/playground/demos/SwitchDemo.vue +0 -40
- package/src/playground/demos/TabesDemo.vue +0 -178
- package/src/playground/demos/TextareaDemo.vue +0 -31
- package/src/playground/demos/ThemeToggleDemo.vue +0 -20
- package/src/playground/demos/TimelineDemo.vue +0 -43
- package/src/playground/demos/ToastDemo.vue +0 -111
- package/src/playground/demos/TooltipDemo.vue +0 -30
- package/src/playground/demos/WorkbookDemo.vue +0 -227
- package/src/types/alert.type.ts +0 -11
- package/src/types/button.ts +0 -36
- package/src/types/buttongroup.type.ts +0 -1
- package/src/types/form.type.ts +0 -75
- package/src/types/index.ts +0 -11
- package/src/types/navbar.type.ts +0 -28
- package/src/types/sidepanel.type.ts +0 -14
- package/src/types/styles.ts +0 -42
- package/src/types/timeline.type.ts +0 -11
- package/src/utils/index.ts +0 -2
- package/src/utils/object.ts +0 -40
- package/tsconfig.app.json +0 -27
- package/tsconfig.json +0 -48
- package/tsconfig.node.json +0 -18
- package/tsconfig.node.tsbuildinfo +0 -1
- package/tsconfig.tsbuildinfo +0 -1
- package/vercel.json +0 -8
- package/vite.config.d.ts +0 -2
- package/vite.config.js +0 -63
- package/vite.config.ts +0 -64
- package/vite.config.vercel.ts +0 -17
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { ref as p } from "vue";
|
|
2
|
+
const u = p({
|
|
3
|
+
position: "bottom-right",
|
|
4
|
+
duration: 4e3,
|
|
5
|
+
expand: !1,
|
|
6
|
+
variant: "default"
|
|
7
|
+
}), a = p([]), g = /* @__PURE__ */ new Map(), l = /* @__PURE__ */ new Map();
|
|
8
|
+
let h = 0;
|
|
9
|
+
function I(t) {
|
|
10
|
+
const i = l.get(t);
|
|
11
|
+
i?.timerId && (clearTimeout(i.timerId), i.timerId = void 0);
|
|
12
|
+
}
|
|
13
|
+
function c(t, i = "default", n = {}) {
|
|
14
|
+
if (a.value.length > 20) {
|
|
15
|
+
const r = a.value.shift();
|
|
16
|
+
r && f(r.id);
|
|
17
|
+
}
|
|
18
|
+
const o = h++, s = n.duration ?? u.value.duration ?? 4e3, d = n.position ?? u.value.position ?? "bottom-right", v = i === "default" ? u.value.variant ?? "default" : i, m = a.value.filter((r) => r.position === d).length === 0 && !g.get(d);
|
|
19
|
+
m && g.set(d, !0);
|
|
20
|
+
const T = {
|
|
21
|
+
id: o,
|
|
22
|
+
message: t,
|
|
23
|
+
description: n.description,
|
|
24
|
+
type: v,
|
|
25
|
+
duration: s,
|
|
26
|
+
action: n.action,
|
|
27
|
+
position: d,
|
|
28
|
+
isFirst: m
|
|
29
|
+
};
|
|
30
|
+
if (a.value.push(T), s !== 1 / 0) {
|
|
31
|
+
const r = {
|
|
32
|
+
remaining: s,
|
|
33
|
+
start: Date.now()
|
|
34
|
+
};
|
|
35
|
+
r.timerId = setTimeout(() => {
|
|
36
|
+
f(o);
|
|
37
|
+
}, s), l.set(o, r);
|
|
38
|
+
}
|
|
39
|
+
return o;
|
|
40
|
+
}
|
|
41
|
+
function w() {
|
|
42
|
+
l.forEach((t) => {
|
|
43
|
+
t.timerId && (clearTimeout(t.timerId), t.timerId = void 0, t.remaining -= Date.now() - t.start);
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
function y() {
|
|
47
|
+
l.forEach((t, i) => {
|
|
48
|
+
!t.timerId && t.remaining > 0 && (t.start = Date.now(), t.timerId = setTimeout(() => {
|
|
49
|
+
f(i);
|
|
50
|
+
}, t.remaining));
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
function D(t, i, n) {
|
|
54
|
+
return c(t, i ?? "default", n ?? {});
|
|
55
|
+
}
|
|
56
|
+
const e = (t, i) => c(t, "default", i);
|
|
57
|
+
e.success = (t, i) => c(t, "success", i);
|
|
58
|
+
e.error = (t, i) => c(t, "error", i);
|
|
59
|
+
e.info = (t, i) => c(t, "info", i);
|
|
60
|
+
e.warning = (t, i) => c(t, "warning", i);
|
|
61
|
+
e.promise = (t, i) => {
|
|
62
|
+
const n = c(i.loading, "default", { duration: 1 / 0 });
|
|
63
|
+
return t.then((o) => {
|
|
64
|
+
f(n), e.success(i.success(o));
|
|
65
|
+
}).catch((o) => {
|
|
66
|
+
f(n);
|
|
67
|
+
const s = typeof i.error == "function" ? i.error(o) : i.error;
|
|
68
|
+
e.error(s);
|
|
69
|
+
}), t;
|
|
70
|
+
};
|
|
71
|
+
function f(t) {
|
|
72
|
+
I(t), l.delete(t);
|
|
73
|
+
const i = a.value.findIndex((n) => n.id === t);
|
|
74
|
+
i !== -1 && a.value.splice(i, 1);
|
|
75
|
+
}
|
|
76
|
+
function b(t) {
|
|
77
|
+
Object.assign(u.value, t);
|
|
78
|
+
}
|
|
79
|
+
function M() {
|
|
80
|
+
return {
|
|
81
|
+
notifications: a,
|
|
82
|
+
showToast: D,
|
|
83
|
+
toast: e,
|
|
84
|
+
removeToast: f,
|
|
85
|
+
configure: b,
|
|
86
|
+
globalConfig: u,
|
|
87
|
+
pauseTimers: w,
|
|
88
|
+
resumeTimers: y
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
export {
|
|
92
|
+
b as configure,
|
|
93
|
+
w as pauseTimers,
|
|
94
|
+
f as removeToast,
|
|
95
|
+
y as resumeTimers,
|
|
96
|
+
D as showToast,
|
|
97
|
+
e as toast,
|
|
98
|
+
M as useNotifications
|
|
99
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { ref as o, watch as m, onMounted as d } from "vue";
|
|
2
|
+
const t = o(i());
|
|
3
|
+
function i() {
|
|
4
|
+
const e = localStorage.getItem("builto-theme");
|
|
5
|
+
return e === "light" || e === "dark" ? e : window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
|
|
6
|
+
}
|
|
7
|
+
function n(e) {
|
|
8
|
+
document.documentElement.classList.remove("light", "dark"), document.documentElement.classList.add(e);
|
|
9
|
+
}
|
|
10
|
+
function c() {
|
|
11
|
+
m(
|
|
12
|
+
t,
|
|
13
|
+
(a) => {
|
|
14
|
+
localStorage.setItem("builto-theme", a), n(a);
|
|
15
|
+
},
|
|
16
|
+
{ immediate: !0 }
|
|
17
|
+
), window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change", (a) => {
|
|
18
|
+
localStorage.getItem("builto-theme") || (t.value = a.matches ? "dark" : "light");
|
|
19
|
+
});
|
|
20
|
+
function e() {
|
|
21
|
+
t.value = t.value === "light" ? "dark" : "light";
|
|
22
|
+
}
|
|
23
|
+
return d(() => {
|
|
24
|
+
document.documentElement.classList.add("bg-body");
|
|
25
|
+
}), {
|
|
26
|
+
theme: t,
|
|
27
|
+
toggleTheme: e
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export {
|
|
31
|
+
c as useTheme
|
|
32
|
+
};
|
package/core/config.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { InjectionKey } from 'vue';
|
|
2
|
+
import { VLiteConfig } from '../types/config.type';
|
|
3
|
+
/**
|
|
4
|
+
* Unique symbol for injecting the VLite configuration.
|
|
5
|
+
*/
|
|
6
|
+
export declare const VLITE_CONFIG_KEY: InjectionKey<VLiteConfig>;
|
|
7
|
+
/**
|
|
8
|
+
* Global reactive configuration state.
|
|
9
|
+
* This acts as a singleton fallback if inject() is used outside a component
|
|
10
|
+
* or if the plugin wasn't installed (though installation is recommended).
|
|
11
|
+
*/
|
|
12
|
+
export declare const configState: {
|
|
13
|
+
services?: {
|
|
14
|
+
upload?: import('..').FileUploadHandler;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Helper to update the global configuration.
|
|
19
|
+
*/
|
|
20
|
+
export declare function updateConfig(updates: Partial<VLiteConfig>): void;
|
|
21
|
+
/**
|
|
22
|
+
* Composable to access the VLite configuration.
|
|
23
|
+
* It attempts to inject from the Vue context first, falling back to the global singleton.
|
|
24
|
+
*/
|
|
25
|
+
export declare function useVLiteConfig(): {
|
|
26
|
+
services?: {
|
|
27
|
+
upload?: import('..').FileUploadHandler;
|
|
28
|
+
};
|
|
29
|
+
};
|
package/core/config.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { reactive as t, inject as e } from "vue";
|
|
2
|
+
const o = /* @__PURE__ */ Symbol("vlite-config"), i = {
|
|
3
|
+
services: {}
|
|
4
|
+
}, n = t({ ...i });
|
|
5
|
+
function f() {
|
|
6
|
+
return e(o, n);
|
|
7
|
+
}
|
|
8
|
+
export {
|
|
9
|
+
o as VLITE_CONFIG_KEY,
|
|
10
|
+
n as configState,
|
|
11
|
+
f as useVLiteConfig
|
|
12
|
+
};
|
package/core/index.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { App } from 'vue';
|
|
2
|
+
import { VLiteConfig } from '../types/config.type';
|
|
3
|
+
/**
|
|
4
|
+
* Creates the VLite plugin instance.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* // main.ts
|
|
8
|
+
* import { createApp } from 'vue'
|
|
9
|
+
* import { createVLite } from 'vlite3'
|
|
10
|
+
*
|
|
11
|
+
* const app = createApp(App)
|
|
12
|
+
*
|
|
13
|
+
* const vlite = createVLite({
|
|
14
|
+
* services: {
|
|
15
|
+
* upload: async (file) => {
|
|
16
|
+
* // Custom API call here
|
|
17
|
+
* const formData = new FormData()
|
|
18
|
+
* formData.append('file', file)
|
|
19
|
+
* const res = await axios.post('/api/upload', formData)
|
|
20
|
+
* return res.data.url
|
|
21
|
+
* }
|
|
22
|
+
* }
|
|
23
|
+
* })
|
|
24
|
+
*
|
|
25
|
+
* app.use(vlite)
|
|
26
|
+
* app.mount('#app')
|
|
27
|
+
*/
|
|
28
|
+
export declare function createVLite(options?: VLiteConfig): {
|
|
29
|
+
install(app: App): void;
|
|
30
|
+
};
|
|
31
|
+
export * from './config';
|
package/core/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { configState as e, VLITE_CONFIG_KEY as t } from "./config.js";
|
|
2
|
+
import { useVLiteConfig as v } from "./config.js";
|
|
3
|
+
function c(i = {}) {
|
|
4
|
+
return {
|
|
5
|
+
install(r) {
|
|
6
|
+
i && i.services && (e.services = { ...e.services, ...i.services }), r.provide(t, e), r.config.globalProperties.$vlite = e;
|
|
7
|
+
}
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export {
|
|
11
|
+
t as VLITE_CONFIG_KEY,
|
|
12
|
+
e as configState,
|
|
13
|
+
c as createVLite,
|
|
14
|
+
v as useVLiteConfig
|
|
15
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const d = (e, n) => {
|
|
2
|
+
const i = n.getBoundingClientRect(), c = e.clientX - i.left, p = e.clientY - i.top, t = document.createElement("span"), s = Math.max(i.width, i.height), o = s / 2;
|
|
3
|
+
t.style.width = t.style.height = `${s}px`, t.style.left = `${c - o}px`, t.style.top = `${p - o}px`, t.classList.add("ripple");
|
|
4
|
+
const l = document.getElementsByClassName("ripple")[0];
|
|
5
|
+
l && l.remove(), n.appendChild(t), setTimeout(() => {
|
|
6
|
+
t.remove();
|
|
7
|
+
}, 600);
|
|
8
|
+
}, a = {
|
|
9
|
+
mounted(e) {
|
|
10
|
+
e.style.position = "relative", e.style.overflow = "hidden", e.addEventListener("click", (n) => d(n, e));
|
|
11
|
+
},
|
|
12
|
+
unmounted(e) {
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
a as vRipple
|
|
17
|
+
};
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export * from './components/Accordion';
|
|
2
|
+
export { default as Alert } from './components/Alert.vue';
|
|
3
|
+
export { default as Avatar } from './components/Avatar.vue';
|
|
4
|
+
export * from './components/AvatarUploader';
|
|
5
|
+
export { default as Badge } from './components/Badge.vue';
|
|
6
|
+
export { default as Button } from './components/Button.vue';
|
|
7
|
+
export { default as ButtonGroup } from './components/ButtonGroup.vue';
|
|
8
|
+
export * from './components/Carousel';
|
|
9
|
+
export { default as CheckBox } from './components/CheckBox.vue';
|
|
10
|
+
export * from './components/Chip';
|
|
11
|
+
export * from './components/ChoiceBox';
|
|
12
|
+
export { default as ColorPicker } from './components/ColorPicker/ColorPicker.vue';
|
|
13
|
+
export { default as ConfirmationModal } from './components/ConfirmationModal.vue';
|
|
14
|
+
export { default as DatePicker } from './components/DatePicker.vue';
|
|
15
|
+
export * from './components/DataTable';
|
|
16
|
+
export * from './components/Dropdown';
|
|
17
|
+
export * from './components/FilePicker';
|
|
18
|
+
export * from './components/FileTree';
|
|
19
|
+
export * from './components/Form';
|
|
20
|
+
export * from './components/Heatmap';
|
|
21
|
+
export { default as Icon } from './components/Icon.vue';
|
|
22
|
+
export { default as IconPicker } from './components/IconPicker.vue';
|
|
23
|
+
export { default as Input } from './components/Input.vue';
|
|
24
|
+
export { default as Label } from './components/Label.vue';
|
|
25
|
+
export { default as Logo } from './components/Logo.vue';
|
|
26
|
+
export * from './components/Masonry';
|
|
27
|
+
export { default as Modal } from './components/Modal.vue';
|
|
28
|
+
export * from './components/MultiSelect';
|
|
29
|
+
export * from './components/Navbar';
|
|
30
|
+
export * from './components/OTPInput';
|
|
31
|
+
export * from './components/Pagination';
|
|
32
|
+
export * from './components/PricingPlan';
|
|
33
|
+
export { default as SidePanel } from './components/SidePanel.vue';
|
|
34
|
+
export * from './components/SidebarMenu';
|
|
35
|
+
export { default as Slider } from './components/Slider.vue';
|
|
36
|
+
export { default as Switch } from './components/Switch.vue';
|
|
37
|
+
export * from './components/Tabes';
|
|
38
|
+
export { default as Textarea } from './components/Textarea.vue';
|
|
39
|
+
export { default as ThemeToggle } from './components/ThemeToggle.vue';
|
|
40
|
+
export { default as Timeline } from './components/Timeline.vue';
|
|
41
|
+
export { default as ToastNotification } from './components/ToastNotification.vue';
|
|
42
|
+
export { default as Tooltip } from './components/Tooltip.vue';
|
|
43
|
+
export * from './components/Workbook';
|
|
44
|
+
export * from './composables/useNotifications';
|
|
45
|
+
export * from './composables/useTheme';
|
|
46
|
+
export * from './composables/useKeyStroke';
|
|
47
|
+
export { createVLite, useVLiteConfig } from './core';
|
|
48
|
+
export * from './utils';
|
|
49
|
+
export * from './types';
|
package/index.js
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { default as t } from "./components/Accordion/Accordion.vue.js";
|
|
2
|
+
import { default as f } from "./components/Accordion/AccordionItem.vue.js";
|
|
3
|
+
import { default as p } from "./components/Accordion/AccordionTrigger.vue.js";
|
|
4
|
+
import { default as l } from "./components/Accordion/AccordionContent.vue.js";
|
|
5
|
+
import { default as u } from "./components/Alert.vue.js";
|
|
6
|
+
import { default as i } from "./components/Avatar.vue.js";
|
|
7
|
+
import { default as c } from "./components/AvatarUploader/AvatarUploader.vue.js";
|
|
8
|
+
import { default as g } from "./components/Badge.vue.js";
|
|
9
|
+
import { default as b } from "./components/Button.vue.js";
|
|
10
|
+
import { default as F } from "./components/ButtonGroup.vue.js";
|
|
11
|
+
import { default as A } from "./components/Carousel/Carousel.vue.js";
|
|
12
|
+
import { default as k } from "./components/CheckBox.vue.js";
|
|
13
|
+
import { default as C } from "./components/Chip/Chip.vue.js";
|
|
14
|
+
import { default as h } from "./components/ChoiceBox/ChoiceBox.vue.js";
|
|
15
|
+
import { default as v } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
16
|
+
import { default as L } from "./components/ConfirmationModal.vue.js";
|
|
17
|
+
import { default as K } from "./components/DatePicker.vue.js";
|
|
18
|
+
import { default as R } from "./components/DataTable/DataTable.vue.js";
|
|
19
|
+
import { default as H } from "./components/DataTable/DataTableHeader.vue.js";
|
|
20
|
+
import { default as V } from "./components/DataTable/DataTableRow.vue.js";
|
|
21
|
+
import { default as W } from "./components/Dropdown/Dropdown.vue.js";
|
|
22
|
+
import { default as _ } from "./components/Dropdown/DropdownMenu.vue.js";
|
|
23
|
+
import { default as q } from "./components/Dropdown/DropdownTrigger.vue.js";
|
|
24
|
+
import { default as J } from "./components/Dropdown/DropdownItem.vue.js";
|
|
25
|
+
import { useDropdownSelection as X } from "./components/Dropdown/composables/useDropdownSelection.js";
|
|
26
|
+
import { useDropdownIds as $ } from "./components/Dropdown/composables/useDropdownIds.js";
|
|
27
|
+
import { default as oe } from "./components/FilePicker/FilePicker.vue.js";
|
|
28
|
+
import { default as te } from "./components/FileTree/FileTree.vue.js";
|
|
29
|
+
import { default as fe } from "./components/FileTree/FileTreeNode.vue.js";
|
|
30
|
+
import { useTreeSelection as pe } from "./components/FileTree/useTreeSelection.js";
|
|
31
|
+
import { default as le } from "./components/Form/Form.vue.js";
|
|
32
|
+
import { default as ue } from "./components/Form/FormField.vue.js";
|
|
33
|
+
import { default as ie } from "./components/Form/FormFields.vue.js";
|
|
34
|
+
import { default as ce } from "./components/Form/CustomFields.vue.js";
|
|
35
|
+
import { useForm as ge } from "./components/Form/composables/useForm.js";
|
|
36
|
+
import { useFileUpload as be } from "./components/Form/composables/useFileUpload.js";
|
|
37
|
+
import { default as Fe } from "./components/Heatmap/Heatmap.vue.js";
|
|
38
|
+
import { default as Ae } from "./components/Icon.vue.js";
|
|
39
|
+
import { default as ke } from "./components/IconPicker.vue.js";
|
|
40
|
+
import { default as Ce } from "./components/Input.vue.js";
|
|
41
|
+
import { default as he } from "./components/Label.vue.js";
|
|
42
|
+
import { default as ve } from "./components/Logo.vue.js";
|
|
43
|
+
import { default as Le } from "./components/Masonry/Masonry.vue.js";
|
|
44
|
+
import { MASONRY_BREAKPOINTS as Ke } from "./components/Masonry/types.js";
|
|
45
|
+
import { default as Re } from "./components/Modal.vue.js";
|
|
46
|
+
import { default as He } from "./components/MultiSelect/MultiSelect.vue.js";
|
|
47
|
+
import { default as Ve } from "./components/Navbar/Navbar.vue.js";
|
|
48
|
+
import { default as We } from "./components/Navbar/NavbarItem.vue.js";
|
|
49
|
+
import { default as _e } from "./components/Navbar/NavbarGroup.vue.js";
|
|
50
|
+
import { default as qe } from "./components/OTPInput/OTPInput.vue.js";
|
|
51
|
+
import { default as Je } from "./components/Pagination/Pagination.vue.js";
|
|
52
|
+
import { default as Xe } from "./components/PricingPlan/PricingPlan.vue.js";
|
|
53
|
+
import { default as $e } from "./components/PricingPlan/PricingPlanItem.vue.js";
|
|
54
|
+
import { default as oo } from "./components/SidePanel.vue.js";
|
|
55
|
+
import { default as to } from "./components/SidebarMenu/SidebarMenu.vue.js";
|
|
56
|
+
import { default as fo } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
|
|
57
|
+
/* empty css */
|
|
58
|
+
import { default as po } from "./components/Slider.vue.js";
|
|
59
|
+
import { default as so } from "./components/Switch.vue.js";
|
|
60
|
+
import { default as xo } from "./components/Tabes/Tabes.vue.js";
|
|
61
|
+
import { default as no } from "./components/Textarea.vue.js";
|
|
62
|
+
import { default as To } from "./components/ThemeToggle.vue.js";
|
|
63
|
+
import { default as So } from "./components/Timeline.vue.js";
|
|
64
|
+
import { default as Po } from "./components/ToastNotification.vue.js";
|
|
65
|
+
import { default as Io } from "./components/Tooltip.vue.js";
|
|
66
|
+
import { default as Do } from "./components/Workbook/Workbook.vue.js";
|
|
67
|
+
import { default as wo } from "./components/Workbook/Sheet.vue.js";
|
|
68
|
+
import { configure as Mo, pauseTimers as ho, removeToast as No, resumeTimers as vo, showToast as Bo, toast as Lo, useNotifications as yo } from "./composables/useNotifications.js";
|
|
69
|
+
import { useTheme as Oo } from "./composables/useTheme.js";
|
|
70
|
+
import { useAdvancedKeyStroke as Go, useKeyStroke as Ho } from "./composables/useKeyStroke.js";
|
|
71
|
+
import { createVLite as Vo } from "./core/index.js";
|
|
72
|
+
import { deepMerge as Wo } from "./utils/object.js";
|
|
73
|
+
import { debounce as _o } from "./utils/functions.js";
|
|
74
|
+
import { useVLiteConfig as qo } from "./core/config.js";
|
|
75
|
+
export {
|
|
76
|
+
t as Accordion,
|
|
77
|
+
l as AccordionContent,
|
|
78
|
+
f as AccordionItem,
|
|
79
|
+
p as AccordionTrigger,
|
|
80
|
+
u as Alert,
|
|
81
|
+
i as Avatar,
|
|
82
|
+
c as AvatarUploader,
|
|
83
|
+
g as Badge,
|
|
84
|
+
b as Button,
|
|
85
|
+
F as ButtonGroup,
|
|
86
|
+
A as Carousel,
|
|
87
|
+
k as CheckBox,
|
|
88
|
+
C as Chip,
|
|
89
|
+
h as ChoiceBox,
|
|
90
|
+
v as ColorPicker,
|
|
91
|
+
L as ConfirmationModal,
|
|
92
|
+
ce as CustomFields,
|
|
93
|
+
R as DataTable,
|
|
94
|
+
H as DataTableHeader,
|
|
95
|
+
V as DataTableRow,
|
|
96
|
+
K as DatePicker,
|
|
97
|
+
W as Dropdown,
|
|
98
|
+
J as DropdownItem,
|
|
99
|
+
_ as DropdownMenu,
|
|
100
|
+
q as DropdownTrigger,
|
|
101
|
+
oe as FilePicker,
|
|
102
|
+
te as FileTree,
|
|
103
|
+
fe as FileTreeNode,
|
|
104
|
+
le as Form,
|
|
105
|
+
ue as FormField,
|
|
106
|
+
ie as FormFields,
|
|
107
|
+
Fe as Heatmap,
|
|
108
|
+
Ae as Icon,
|
|
109
|
+
ke as IconPicker,
|
|
110
|
+
Ce as Input,
|
|
111
|
+
he as Label,
|
|
112
|
+
ve as Logo,
|
|
113
|
+
Ke as MASONRY_BREAKPOINTS,
|
|
114
|
+
Le as Masonry,
|
|
115
|
+
Re as Modal,
|
|
116
|
+
He as MultiSelect,
|
|
117
|
+
Ve as Navbar,
|
|
118
|
+
_e as NavbarGroup,
|
|
119
|
+
We as NavbarItem,
|
|
120
|
+
qe as OTPInput,
|
|
121
|
+
Je as Pagination,
|
|
122
|
+
Xe as PricingPlan,
|
|
123
|
+
$e as PricingPlanItem,
|
|
124
|
+
wo as Sheet,
|
|
125
|
+
oo as SidePanel,
|
|
126
|
+
to as SidebarMenu,
|
|
127
|
+
fo as SidebarMenuItem,
|
|
128
|
+
po as Slider,
|
|
129
|
+
so as Switch,
|
|
130
|
+
xo as Tabes,
|
|
131
|
+
no as Textarea,
|
|
132
|
+
To as ThemeToggle,
|
|
133
|
+
So as Timeline,
|
|
134
|
+
Po as ToastNotification,
|
|
135
|
+
Io as Tooltip,
|
|
136
|
+
Do as Workbook,
|
|
137
|
+
Mo as configure,
|
|
138
|
+
Vo as createVLite,
|
|
139
|
+
_o as debounce,
|
|
140
|
+
Wo as deepMerge,
|
|
141
|
+
ho as pauseTimers,
|
|
142
|
+
No as removeToast,
|
|
143
|
+
vo as resumeTimers,
|
|
144
|
+
Bo as showToast,
|
|
145
|
+
Lo as toast,
|
|
146
|
+
Go as useAdvancedKeyStroke,
|
|
147
|
+
$ as useDropdownIds,
|
|
148
|
+
X as useDropdownSelection,
|
|
149
|
+
be as useFileUpload,
|
|
150
|
+
ge as useForm,
|
|
151
|
+
Ho as useKeyStroke,
|
|
152
|
+
yo as useNotifications,
|
|
153
|
+
Oo as useTheme,
|
|
154
|
+
pe as useTreeSelection,
|
|
155
|
+
qo as useVLiteConfig
|
|
156
|
+
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"private": false,
|
|
4
4
|
"description": "A Vue 3 UI component library built with Tailwind CSS.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.2",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"module": "index.js",
|
|
@@ -66,4 +66,4 @@
|
|
|
66
66
|
"endOfLine": "auto",
|
|
67
67
|
"bracketSameLine": true
|
|
68
68
|
}
|
|
69
|
-
}
|
|
69
|
+
}
|