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,141 @@
|
|
|
1
|
+
import { defineComponent as V, ref as h, computed as x, openBlock as c, createElementBlock as d, normalizeClass as D, createElementVNode as r, withModifiers as g, createBlock as b, withCtx as u, createVNode as m, createCommentVNode as y, withDirectives as N, vModelText as $, toDisplayString as k, unref as M, createTextVNode as O, nextTick as R } from "vue";
|
|
2
|
+
import f from "../Icon.vue.js";
|
|
3
|
+
import j from "../Dropdown/Dropdown.vue.js";
|
|
4
|
+
import z from "../IconPicker.vue.js";
|
|
5
|
+
const A = {
|
|
6
|
+
type: "button",
|
|
7
|
+
class: "flex items-center justify-center rounded hover:bg-accent transition-colors p-0.5 outline-none focus-visible:ring-2 focus-visible:ring-primary/20"
|
|
8
|
+
}, K = { class: "flex-1 min-w-0 pr-1" }, U = {
|
|
9
|
+
key: 1,
|
|
10
|
+
class: "block truncate text-sm font-medium leading-normal"
|
|
11
|
+
}, _ = { class: "opacity-0 group-hover:opacity-100 transition-opacity ml-auto pl-1 flex items-center bg-inherit" }, q = { class: "p-1 rounded-md hover:bg-accent text-muted-foreground hover:text-foreground transition-colors" }, F = {
|
|
12
|
+
class: /* @__PURE__ */ D(["flex items-center"])
|
|
13
|
+
}, L = /* @__PURE__ */ V({
|
|
14
|
+
__name: "Sheet",
|
|
15
|
+
props: {
|
|
16
|
+
sheet: {},
|
|
17
|
+
isActive: { type: Boolean },
|
|
18
|
+
isEditing: { type: Boolean, default: !1 },
|
|
19
|
+
canDelete: { type: Boolean, default: !0 },
|
|
20
|
+
confirmDelete: { type: Boolean, default: !1 },
|
|
21
|
+
confirmDeleteTexts: {}
|
|
22
|
+
},
|
|
23
|
+
emits: ["select", "update:title", "update:icon", "edit-start", "edit-end", "duplicate", "delete"],
|
|
24
|
+
setup(n, { emit: w }) {
|
|
25
|
+
const e = n, o = w, a = h(null), s = h(e.sheet.title), p = () => {
|
|
26
|
+
s.value = e.sheet.title, o("edit-start", e.sheet.id), R(() => {
|
|
27
|
+
a.value?.focus(), a.value?.select();
|
|
28
|
+
});
|
|
29
|
+
}, v = () => {
|
|
30
|
+
if (!e.isEditing) return;
|
|
31
|
+
const t = s.value.trim();
|
|
32
|
+
t ? o("update:title", e.sheet.id, t) : s.value = e.sheet.title, o("edit-end", e.sheet.id);
|
|
33
|
+
}, E = () => {
|
|
34
|
+
s.value = e.sheet.title, o("edit-end", e.sheet.id);
|
|
35
|
+
}, T = (t) => {
|
|
36
|
+
t.key === "Enter" && v(), t.key === "Escape" && E();
|
|
37
|
+
}, B = x(() => [
|
|
38
|
+
{ label: "Rename", value: "rename", icon: "lucide:pencil" },
|
|
39
|
+
{ label: "Duplicate", value: "duplicate", icon: "lucide:copy" },
|
|
40
|
+
{
|
|
41
|
+
label: "Delete",
|
|
42
|
+
value: "delete",
|
|
43
|
+
icon: "lucide:trash-2",
|
|
44
|
+
class: "text-danger",
|
|
45
|
+
disabled: !e.canDelete,
|
|
46
|
+
confirmation: e.confirmDelete ? {
|
|
47
|
+
title: e.confirmDeleteTexts?.title,
|
|
48
|
+
description: e.confirmDeleteTexts?.description,
|
|
49
|
+
confirmText: e.confirmDeleteTexts?.confirm,
|
|
50
|
+
cancelText: e.confirmDeleteTexts?.cancel,
|
|
51
|
+
variant: "danger"
|
|
52
|
+
} : void 0
|
|
53
|
+
}
|
|
54
|
+
]), C = (t) => {
|
|
55
|
+
if (t.value === "rename" && p(), t.value === "duplicate" && o("duplicate", e.sheet.id), t.value === "delete") {
|
|
56
|
+
if (!e.canDelete) return;
|
|
57
|
+
o("delete", e.sheet.id);
|
|
58
|
+
}
|
|
59
|
+
}, S = x(() => [
|
|
60
|
+
"group relative flex items-center min-w-[120px] max-w-[240px] h-9 px-3 border-r border-border select-none cursor-pointer transition-all duration-200 ease-out",
|
|
61
|
+
e.isActive ? "bg-muted text-foreground ring-1 ring-border ring-b-0 z-10" : "text-muted-foreground hover:bg-accent/50",
|
|
62
|
+
e.isEditing ? "cursor-text" : ""
|
|
63
|
+
].join(" "));
|
|
64
|
+
return (t, i) => (c(), d("div", {
|
|
65
|
+
class: D(S.value),
|
|
66
|
+
onClick: i[4] || (i[4] = (l) => o("select", n.sheet.id)),
|
|
67
|
+
onDblclick: p
|
|
68
|
+
}, [
|
|
69
|
+
r("div", {
|
|
70
|
+
onClick: i[1] || (i[1] = g(() => {
|
|
71
|
+
}, ["stop"])),
|
|
72
|
+
class: "mr-2 flex items-center shrink-0"
|
|
73
|
+
}, [
|
|
74
|
+
n.sheet.icon || n.isEditing ? (c(), b(z, {
|
|
75
|
+
key: 0,
|
|
76
|
+
value: n.sheet.icon || "lucide:file",
|
|
77
|
+
position: "bottom-start",
|
|
78
|
+
onOnSelect: i[0] || (i[0] = (l) => o("update:icon", n.sheet.id, l))
|
|
79
|
+
}, {
|
|
80
|
+
default: u(() => [
|
|
81
|
+
r("button", A, [
|
|
82
|
+
m(f, {
|
|
83
|
+
icon: n.sheet.icon || "lucide:file",
|
|
84
|
+
class: "w-4 h-4 opacity-70 hover:opacity-100 transition-opacity"
|
|
85
|
+
}, null, 8, ["icon"])
|
|
86
|
+
])
|
|
87
|
+
]),
|
|
88
|
+
_: 1
|
|
89
|
+
}, 8, ["value"])) : y("", !0)
|
|
90
|
+
]),
|
|
91
|
+
r("div", K, [
|
|
92
|
+
n.isEditing ? N((c(), d("input", {
|
|
93
|
+
key: 0,
|
|
94
|
+
ref_key: "inputRef",
|
|
95
|
+
ref: a,
|
|
96
|
+
"onUpdate:modelValue": i[2] || (i[2] = (l) => s.value = l),
|
|
97
|
+
type: "text",
|
|
98
|
+
class: "w-full bg-transparent border-none outline-none p-0 text-sm font-medium text-foreground placeholder-muted-foreground focus:ring-0",
|
|
99
|
+
onBlur: v,
|
|
100
|
+
onKeydown: T,
|
|
101
|
+
onClick: i[3] || (i[3] = g(() => {
|
|
102
|
+
}, ["stop"]))
|
|
103
|
+
}, null, 544)), [
|
|
104
|
+
[$, s.value]
|
|
105
|
+
]) : (c(), d("span", U, k(n.sheet.title), 1))
|
|
106
|
+
]),
|
|
107
|
+
r("div", _, [
|
|
108
|
+
m(M(j), {
|
|
109
|
+
options: B.value,
|
|
110
|
+
position: "bottom-end",
|
|
111
|
+
width: "140px",
|
|
112
|
+
teleport: !0,
|
|
113
|
+
onOnSelect: C
|
|
114
|
+
}, {
|
|
115
|
+
trigger: u(() => [
|
|
116
|
+
r("button", q, [
|
|
117
|
+
m(f, {
|
|
118
|
+
icon: "lucide:more-vertical",
|
|
119
|
+
class: "w-3.5 h-3.5"
|
|
120
|
+
})
|
|
121
|
+
])
|
|
122
|
+
]),
|
|
123
|
+
item: u(({ option: l }) => [
|
|
124
|
+
r("div", F, [
|
|
125
|
+
l?.icon ? (c(), b(f, {
|
|
126
|
+
key: 0,
|
|
127
|
+
icon: l?.icon,
|
|
128
|
+
class: "w-3.5 h-3.5 mr-2 opacity-70"
|
|
129
|
+
}, null, 8, ["icon"])) : y("", !0),
|
|
130
|
+
O(" " + k(l?.label), 1)
|
|
131
|
+
])
|
|
132
|
+
]),
|
|
133
|
+
_: 1
|
|
134
|
+
}, 8, ["options"])
|
|
135
|
+
])
|
|
136
|
+
], 34));
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
export {
|
|
140
|
+
L as default
|
|
141
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { WorkbookSheet, WorkbookProps, AddButtonPosition } from './types';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
'left-addons'?(_: {}): any;
|
|
6
|
+
'right-addons'?(_: {}): any;
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {
|
|
10
|
+
scrollContainer: HTMLDivElement;
|
|
11
|
+
parent: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
rootEl: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<WorkbookProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
17
|
+
"update:modelValue": (id: string) => any;
|
|
18
|
+
change: (id: string) => any;
|
|
19
|
+
delete: (id: string) => any;
|
|
20
|
+
add: () => any;
|
|
21
|
+
"edit-start": (id: string) => any;
|
|
22
|
+
"edit-end": (id: string) => any;
|
|
23
|
+
duplicate: (id: string) => any;
|
|
24
|
+
"update:sheets": (sheets: WorkbookSheet[]) => any;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<WorkbookProps> & Readonly<{
|
|
26
|
+
"onUpdate:modelValue"?: (id: string) => any;
|
|
27
|
+
onChange?: (id: string) => any;
|
|
28
|
+
onDelete?: (id: string) => any;
|
|
29
|
+
onAdd?: () => any;
|
|
30
|
+
"onEdit-start"?: (id: string) => any;
|
|
31
|
+
"onEdit-end"?: (id: string) => any;
|
|
32
|
+
onDuplicate?: (id: string) => any;
|
|
33
|
+
"onUpdate:sheets"?: (sheets: WorkbookSheet[]) => any;
|
|
34
|
+
}>, {
|
|
35
|
+
variant: "chrome" | "folder" | "simple" | "card";
|
|
36
|
+
modelValue: string;
|
|
37
|
+
editable: boolean;
|
|
38
|
+
draggable: boolean;
|
|
39
|
+
confirmDelete: boolean;
|
|
40
|
+
sheets: WorkbookSheet[];
|
|
41
|
+
addable: boolean;
|
|
42
|
+
addButtonPosition: AddButtonPosition;
|
|
43
|
+
maxSheets: number;
|
|
44
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
45
|
+
scrollContainer: HTMLDivElement;
|
|
46
|
+
parent: HTMLDivElement;
|
|
47
|
+
}, HTMLDivElement>;
|
|
48
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
49
|
+
export default _default;
|
|
50
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
|
+
new (): {
|
|
52
|
+
$slots: S;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { defineComponent as N, ref as g, watch as p, nextTick as T, computed as U, openBlock as a, createElementBlock as i, createElementVNode as r, renderSlot as m, createCommentVNode as u, Fragment as A, renderList as L, unref as P, createBlock as J, createVNode as x } from "vue";
|
|
2
|
+
import { useDragAndDrop as O } from "@formkit/drag-and-drop/vue";
|
|
3
|
+
import { animations as W } from "@formkit/drag-and-drop";
|
|
4
|
+
import Y from "./Sheet.vue.js";
|
|
5
|
+
import b from "./WorkbookAddButton.vue.js";
|
|
6
|
+
const z = { class: "flex flex-col w-full font-sans" }, F = { class: "flex items-end w-full border-b px-1 gap-2" }, M = {
|
|
7
|
+
key: 0,
|
|
8
|
+
class: "flex items-center mb-1 mr-2"
|
|
9
|
+
}, j = {
|
|
10
|
+
key: 0,
|
|
11
|
+
class: "shrink-0 mb-1"
|
|
12
|
+
}, q = { class: "flex items-center mb-0.5 z-20 sticky right-0 ml-auto box-decoration-clone" }, G = { key: 0 }, H = { key: 1 }, K = { class: "flex-1 relative bg-white w-full" }, te = /* @__PURE__ */ N({
|
|
13
|
+
__name: "Workbook",
|
|
14
|
+
props: {
|
|
15
|
+
modelValue: { default: "" },
|
|
16
|
+
sheets: { default: () => [] },
|
|
17
|
+
editable: { type: Boolean, default: !0 },
|
|
18
|
+
addable: { type: Boolean, default: !0 },
|
|
19
|
+
draggable: { type: Boolean, default: !0 },
|
|
20
|
+
addButtonPosition: { default: "fixed-right" },
|
|
21
|
+
maxSheets: { default: 50 },
|
|
22
|
+
variant: { default: "chrome" },
|
|
23
|
+
class: {},
|
|
24
|
+
confirmDelete: { type: Boolean, default: !1 },
|
|
25
|
+
confirmDeleteTexts: {}
|
|
26
|
+
},
|
|
27
|
+
emits: ["update:modelValue", "update:sheets", "change", "add", "delete", "duplicate", "edit-start", "edit-end"],
|
|
28
|
+
setup(o, { emit: k }) {
|
|
29
|
+
const l = o, s = k, f = g(null), c = g(null), [y, h] = O(l.sheets, {
|
|
30
|
+
plugins: [W()],
|
|
31
|
+
draggable: (e) => l.draggable && !c.value,
|
|
32
|
+
onSort: (e) => {
|
|
33
|
+
s("update:sheets", e.values);
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
p(
|
|
37
|
+
() => l.sheets,
|
|
38
|
+
(e) => {
|
|
39
|
+
JSON.stringify(e) !== JSON.stringify(h.value) && (h.value = [...e]);
|
|
40
|
+
},
|
|
41
|
+
{ deep: !0 }
|
|
42
|
+
);
|
|
43
|
+
const S = (e) => {
|
|
44
|
+
s("update:modelValue", e), s("change", e);
|
|
45
|
+
}, v = () => {
|
|
46
|
+
l.sheets.length >= l.maxSheets || s("add");
|
|
47
|
+
}, w = (e, d) => {
|
|
48
|
+
const t = l.sheets.findIndex((n) => n.id === e);
|
|
49
|
+
if (t !== -1) {
|
|
50
|
+
const n = [...l.sheets];
|
|
51
|
+
n[t] = { ...n[t], title: d }, s("update:sheets", n);
|
|
52
|
+
}
|
|
53
|
+
}, D = (e, d) => {
|
|
54
|
+
const t = l.sheets.findIndex((n) => n.id === e);
|
|
55
|
+
if (t !== -1) {
|
|
56
|
+
const n = [...l.sheets];
|
|
57
|
+
n[t] = { ...n[t], icon: d }, s("update:sheets", n);
|
|
58
|
+
}
|
|
59
|
+
}, B = (e) => {
|
|
60
|
+
c.value = e, s("edit-start", e);
|
|
61
|
+
}, V = (e) => {
|
|
62
|
+
c.value = null, s("edit-end", e);
|
|
63
|
+
}, E = (e) => {
|
|
64
|
+
s("duplicate", e);
|
|
65
|
+
}, I = (e) => {
|
|
66
|
+
const d = l.sheets.findIndex((n) => n.id === e);
|
|
67
|
+
if (d === -1) return;
|
|
68
|
+
const t = [...l.sheets];
|
|
69
|
+
if (t.splice(d, 1), s("update:sheets", t), s("delete", e), l.modelValue === e) {
|
|
70
|
+
let n = "";
|
|
71
|
+
if (t.length > 0) {
|
|
72
|
+
const C = Math.min(d, t.length - 1);
|
|
73
|
+
n = t[C].id;
|
|
74
|
+
}
|
|
75
|
+
s("update:modelValue", n), s("change", n);
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
p(
|
|
79
|
+
() => l.sheets.length,
|
|
80
|
+
(e, d) => {
|
|
81
|
+
e > d && l.addable && T(() => {
|
|
82
|
+
const t = l.sheets[l.sheets.length - 1];
|
|
83
|
+
t.id === l.modelValue && (c.value = t.id);
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
);
|
|
87
|
+
const _ = (e) => {
|
|
88
|
+
f.value && e.deltaY !== 0 && (f.value.scrollLeft += e.deltaY, e.preventDefault());
|
|
89
|
+
}, $ = U(() => l.sheets.length > 1);
|
|
90
|
+
return (e, d) => (a(), i("div", z, [
|
|
91
|
+
r("div", F, [
|
|
92
|
+
e.$slots["left-addons"] ? (a(), i("div", M, [
|
|
93
|
+
m(e.$slots, "left-addons", {}, void 0, !0)
|
|
94
|
+
])) : u("", !0),
|
|
95
|
+
r("div", {
|
|
96
|
+
ref_key: "scrollContainer",
|
|
97
|
+
ref: f,
|
|
98
|
+
class: "flex-1 flex items-end overflow-x-auto scrollbar-none overscroll-contain",
|
|
99
|
+
style: { "scrollbar-width": "none", "-ms-overflow-style": "none" },
|
|
100
|
+
onWheel: _
|
|
101
|
+
}, [
|
|
102
|
+
r("div", {
|
|
103
|
+
ref_key: "parent",
|
|
104
|
+
ref: y,
|
|
105
|
+
class: "flex items-end"
|
|
106
|
+
}, [
|
|
107
|
+
(a(!0), i(A, null, L(P(h), (t) => (a(), J(Y, {
|
|
108
|
+
key: t.id,
|
|
109
|
+
sheet: t,
|
|
110
|
+
"is-active": o.modelValue === t.id,
|
|
111
|
+
"is-editing": c.value === t.id,
|
|
112
|
+
"can-delete": $.value,
|
|
113
|
+
"confirm-delete": o.confirmDelete,
|
|
114
|
+
"confirm-delete-texts": o.confirmDeleteTexts,
|
|
115
|
+
onSelect: S,
|
|
116
|
+
"onUpdate:title": w,
|
|
117
|
+
"onUpdate:icon": D,
|
|
118
|
+
onEditStart: B,
|
|
119
|
+
onEditEnd: V,
|
|
120
|
+
onDuplicate: E,
|
|
121
|
+
onDelete: I
|
|
122
|
+
}, null, 8, ["sheet", "is-active", "is-editing", "can-delete", "confirm-delete", "confirm-delete-texts"]))), 128))
|
|
123
|
+
], 512),
|
|
124
|
+
o.addable && o.addButtonPosition === "attached" ? (a(), i("div", j, [
|
|
125
|
+
x(b, { onClick: v })
|
|
126
|
+
])) : u("", !0),
|
|
127
|
+
d[0] || (d[0] = r("div", { class: "w-1 shrink-0" }, null, -1))
|
|
128
|
+
], 544),
|
|
129
|
+
r("div", q, [
|
|
130
|
+
o.addable && o.addButtonPosition === "fixed-right" ? (a(), i("div", G, [
|
|
131
|
+
x(b, { onClick: v })
|
|
132
|
+
])) : u("", !0),
|
|
133
|
+
e.$slots["right-addons"] ? (a(), i("div", H, [
|
|
134
|
+
m(e.$slots, "right-addons", {}, void 0, !0)
|
|
135
|
+
])) : u("", !0)
|
|
136
|
+
])
|
|
137
|
+
]),
|
|
138
|
+
r("div", K, [
|
|
139
|
+
m(e.$slots, "default", {}, void 0, !0)
|
|
140
|
+
])
|
|
141
|
+
]));
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
export {
|
|
145
|
+
te as default
|
|
146
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2
|
+
click: (event: MouseEvent) => any;
|
|
3
|
+
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
+
onClick?: (event: MouseEvent) => any;
|
|
5
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { defineComponent as i, openBlock as r, createBlock as c } from "vue";
|
|
2
|
+
import m from "../Button.vue.js";
|
|
3
|
+
const u = /* @__PURE__ */ i({
|
|
4
|
+
__name: "WorkbookAddButton",
|
|
5
|
+
emits: ["click"],
|
|
6
|
+
setup(s, { emit: o }) {
|
|
7
|
+
const t = o;
|
|
8
|
+
return (d, e) => (r(), c(m, {
|
|
9
|
+
variant: "ghost",
|
|
10
|
+
size: "sm",
|
|
11
|
+
icon: "lucide:plus",
|
|
12
|
+
title: "Add New Sheet",
|
|
13
|
+
rounded: "none",
|
|
14
|
+
onClick: e[0] || (e[0] = (n) => t("click", n))
|
|
15
|
+
}));
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
export {
|
|
19
|
+
u as default
|
|
20
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface WorkbookSheet {
|
|
2
|
+
id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
icon?: string;
|
|
5
|
+
content?: string;
|
|
6
|
+
closable?: boolean;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}
|
|
10
|
+
export type SheetPosition = 'top' | 'bottom' | 'left' | 'right';
|
|
11
|
+
export type AddButtonPosition = 'attached' | 'fixed-right';
|
|
12
|
+
export interface WorkbookProps {
|
|
13
|
+
modelValue?: string;
|
|
14
|
+
sheets?: WorkbookSheet[];
|
|
15
|
+
editable?: boolean;
|
|
16
|
+
addable?: boolean;
|
|
17
|
+
draggable?: boolean;
|
|
18
|
+
addButtonPosition?: AddButtonPosition;
|
|
19
|
+
maxSheets?: number;
|
|
20
|
+
variant?: 'chrome' | 'folder' | 'simple' | 'card';
|
|
21
|
+
class?: string;
|
|
22
|
+
confirmDelete?: boolean;
|
|
23
|
+
confirmDeleteTexts?: {
|
|
24
|
+
title?: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
confirm?: string;
|
|
27
|
+
cancel?: string;
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export interface SheetEvent {
|
|
31
|
+
id: string;
|
|
32
|
+
sheet: WorkbookSheet;
|
|
33
|
+
originalEvent?: Event;
|
|
34
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
type KeyStrokeHandler = (event: KeyboardEvent) => void;
|
|
3
|
+
type KeyStrokeOptions = {
|
|
4
|
+
target?: Ref<HTMLElement | null> | HTMLElement | null;
|
|
5
|
+
preventDefault?: boolean;
|
|
6
|
+
stopPropagation?: boolean;
|
|
7
|
+
passive?: boolean;
|
|
8
|
+
capture?: boolean;
|
|
9
|
+
};
|
|
10
|
+
interface KeyStrokeComposable {
|
|
11
|
+
onKeyStroke: (key: string | string[], handler: KeyStrokeHandler, options?: KeyStrokeOptions) => void;
|
|
12
|
+
offKeyStroke: (key: string | string[], handler?: KeyStrokeHandler) => void;
|
|
13
|
+
destroy: () => void;
|
|
14
|
+
}
|
|
15
|
+
export declare const useKeyStroke: () => KeyStrokeComposable;
|
|
16
|
+
export declare const useAdvancedKeyStroke: () => {
|
|
17
|
+
onKeyStroke: (keys: string, handler: KeyStrokeHandler) => void;
|
|
18
|
+
offKeyStroke: (keys: string, handler?: KeyStrokeHandler) => void;
|
|
19
|
+
destroy: () => void;
|
|
20
|
+
};
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { onUnmounted as E } from "vue";
|
|
2
|
+
const S = () => {
|
|
3
|
+
const o = /* @__PURE__ */ new Map(), r = (s) => {
|
|
4
|
+
const d = n(s.key), c = o.get(d);
|
|
5
|
+
c && c.forEach(({ handler: y, options: u }) => {
|
|
6
|
+
u?.preventDefault && s.preventDefault(), u?.stopPropagation && s.stopPropagation(), y(s);
|
|
7
|
+
});
|
|
8
|
+
}, n = (s) => s.toLowerCase(), p = (s) => s ? "value" in s ? s.value || document : s || document : document, w = (s, d, c = {}) => {
|
|
9
|
+
const y = Array.isArray(s) ? s : [s], u = p(c.target);
|
|
10
|
+
y.forEach((f) => {
|
|
11
|
+
const m = n(f);
|
|
12
|
+
o.has(m) || (o.set(m, /* @__PURE__ */ new Set()), u.addEventListener("keydown", r, {
|
|
13
|
+
passive: c.passive ?? !0,
|
|
14
|
+
capture: c.capture ?? !1
|
|
15
|
+
})), o.get(m).add({ handler: d, options: c });
|
|
16
|
+
});
|
|
17
|
+
}, v = (s, d) => {
|
|
18
|
+
(Array.isArray(s) ? s : [s]).forEach((y) => {
|
|
19
|
+
const u = n(y), f = o.get(u);
|
|
20
|
+
f && (d ? f.forEach((m) => {
|
|
21
|
+
m.handler === d && f.delete(m);
|
|
22
|
+
}) : f.clear(), f.size === 0 && (o.delete(u), document.removeEventListener("keydown", r)));
|
|
23
|
+
});
|
|
24
|
+
}, K = () => {
|
|
25
|
+
document.removeEventListener("keydown", r), o.clear();
|
|
26
|
+
};
|
|
27
|
+
return E(() => {
|
|
28
|
+
K();
|
|
29
|
+
}), {
|
|
30
|
+
onKeyStroke: w,
|
|
31
|
+
offKeyStroke: v,
|
|
32
|
+
destroy: K
|
|
33
|
+
};
|
|
34
|
+
}, M = () => {
|
|
35
|
+
const o = /* @__PURE__ */ new Set(), r = /* @__PURE__ */ new Map();
|
|
36
|
+
let n = null;
|
|
37
|
+
const p = (t) => {
|
|
38
|
+
const e = t.toLowerCase();
|
|
39
|
+
return e === "cmd" || e === "meta" || e === "metakey" ? "meta" : e === "ctrl" || e === "control" || e === "controlkey" ? "ctrl" : e === "alt" || e === "option" || e === "altkey" ? "alt" : e === "shift" || e === "shiftkey" ? "shift" : e;
|
|
40
|
+
}, w = (t) => t.toLowerCase().split("+").map((e) => e.trim()).map(p).sort(), v = (t) => {
|
|
41
|
+
const e = [t.join("+")], h = t.includes("meta"), l = t.includes("ctrl");
|
|
42
|
+
if (h) {
|
|
43
|
+
const i = t.map((a) => a === "meta" ? "ctrl" : a);
|
|
44
|
+
e.push(i.join("+"));
|
|
45
|
+
} else if (l) {
|
|
46
|
+
const i = t.map((a) => a === "ctrl" ? "meta" : a);
|
|
47
|
+
e.push(i.join("+"));
|
|
48
|
+
}
|
|
49
|
+
return e;
|
|
50
|
+
}, K = (t) => {
|
|
51
|
+
const e = [];
|
|
52
|
+
return t.metaKey && e.push("meta"), t.ctrlKey && e.push("ctrl"), t.altKey && e.push("alt"), t.shiftKey && e.push("shift"), e.sort();
|
|
53
|
+
}, s = (t, e) => t.length !== e.length ? !1 : t.every((h, l) => h === e[l]), d = (t) => {
|
|
54
|
+
const e = p(t.key);
|
|
55
|
+
n && (clearTimeout(n), n = null);
|
|
56
|
+
const l = [...K(t)];
|
|
57
|
+
["meta", "ctrl", "alt", "shift"].includes(e) || l.push(e), l.sort(), r.forEach((i, a) => {
|
|
58
|
+
const b = w(a);
|
|
59
|
+
s(b, l) && i.forEach((C) => C(t));
|
|
60
|
+
}), n = window.setTimeout(() => {
|
|
61
|
+
o.clear(), n = null;
|
|
62
|
+
}, 100);
|
|
63
|
+
}, c = (t) => {
|
|
64
|
+
const e = p(t.key);
|
|
65
|
+
o.delete(e), n && (clearTimeout(n), n = null);
|
|
66
|
+
}, y = () => {
|
|
67
|
+
o.clear(), n && (clearTimeout(n), n = null);
|
|
68
|
+
}, u = () => {
|
|
69
|
+
document.hidden && (o.clear(), n && (clearTimeout(n), n = null));
|
|
70
|
+
}, f = () => {
|
|
71
|
+
window.addEventListener("keydown", d, { passive: !1 }), window.addEventListener("keyup", c, { passive: !1 }), window.addEventListener("blur", y, { passive: !0 }), document.addEventListener("visibilitychange", u, { passive: !0 });
|
|
72
|
+
}, m = () => {
|
|
73
|
+
window.removeEventListener("keydown", d), window.removeEventListener("keyup", c), window.removeEventListener("blur", y), document.removeEventListener("visibilitychange", u), n && (clearTimeout(n), n = null);
|
|
74
|
+
}, L = (t, e) => {
|
|
75
|
+
const h = w(t), l = v(h);
|
|
76
|
+
l.forEach((i) => {
|
|
77
|
+
r.has(i) || r.set(i, /* @__PURE__ */ new Set()), r.get(i).add(e);
|
|
78
|
+
}), r.size === l.length && f();
|
|
79
|
+
}, g = (t, e) => {
|
|
80
|
+
const h = w(t);
|
|
81
|
+
v(h).forEach((i) => {
|
|
82
|
+
const a = r.get(i);
|
|
83
|
+
a && (e ? a.delete(e) : a.clear(), a.size === 0 && r.delete(i));
|
|
84
|
+
}), r.size === 0 && m();
|
|
85
|
+
}, k = () => {
|
|
86
|
+
m(), r.clear(), o.clear();
|
|
87
|
+
};
|
|
88
|
+
return E(k), { onKeyStroke: L, offKeyStroke: g, destroy: k };
|
|
89
|
+
};
|
|
90
|
+
export {
|
|
91
|
+
M as useAdvancedKeyStroke,
|
|
92
|
+
S as useKeyStroke
|
|
93
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
export type ToastPosition = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
2
|
+
interface NotificationAction {
|
|
3
|
+
label: string;
|
|
4
|
+
onClick: () => void;
|
|
5
|
+
}
|
|
6
|
+
export interface Notification {
|
|
7
|
+
id: number;
|
|
8
|
+
message: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
type: 'success' | 'error' | 'info' | 'warning' | 'default';
|
|
11
|
+
duration?: number;
|
|
12
|
+
action?: NotificationAction;
|
|
13
|
+
position: ToastPosition;
|
|
14
|
+
promise?: Promise<any>;
|
|
15
|
+
isFirst?: boolean;
|
|
16
|
+
}
|
|
17
|
+
export interface ToastOptions {
|
|
18
|
+
description?: string;
|
|
19
|
+
duration?: number;
|
|
20
|
+
action?: NotificationAction;
|
|
21
|
+
position?: ToastPosition;
|
|
22
|
+
}
|
|
23
|
+
export interface ToastConfig {
|
|
24
|
+
position?: ToastPosition;
|
|
25
|
+
duration?: number;
|
|
26
|
+
expand?: boolean;
|
|
27
|
+
variant?: 'success' | 'error' | 'info' | 'warning' | 'default';
|
|
28
|
+
}
|
|
29
|
+
declare function pauseTimers(): void;
|
|
30
|
+
declare function resumeTimers(): void;
|
|
31
|
+
declare function showToast(message: string, type?: Notification['type'], options?: ToastOptions): number;
|
|
32
|
+
declare const toast: {
|
|
33
|
+
(message: string, options?: ToastOptions): number;
|
|
34
|
+
success(message: string, options?: ToastOptions): number;
|
|
35
|
+
error(message: string, options?: ToastOptions): number;
|
|
36
|
+
info(message: string, options?: ToastOptions): number;
|
|
37
|
+
warning(message: string, options?: ToastOptions): number;
|
|
38
|
+
promise<T = any>(promise: Promise<T>, data: {
|
|
39
|
+
loading: string;
|
|
40
|
+
success: (data: T) => string;
|
|
41
|
+
error: string | ((err: any) => string);
|
|
42
|
+
}): Promise<T>;
|
|
43
|
+
};
|
|
44
|
+
declare function removeToast(id: number): void;
|
|
45
|
+
declare function configure(config: ToastConfig): void;
|
|
46
|
+
export declare function useNotifications(): {
|
|
47
|
+
notifications: import('vue').Ref<{
|
|
48
|
+
id: number;
|
|
49
|
+
message: string;
|
|
50
|
+
description?: string;
|
|
51
|
+
type: "success" | "error" | "info" | "warning" | "default";
|
|
52
|
+
duration?: number;
|
|
53
|
+
action?: {
|
|
54
|
+
label: string;
|
|
55
|
+
onClick: () => void;
|
|
56
|
+
};
|
|
57
|
+
position: ToastPosition;
|
|
58
|
+
promise?: {
|
|
59
|
+
then: <TResult1 = any, TResult2 = never>(onfulfilled?: (value: any) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>) => Promise<TResult1 | TResult2>;
|
|
60
|
+
catch: <TResult = never>(onrejected?: (reason: any) => TResult | PromiseLike<TResult>) => Promise<any>;
|
|
61
|
+
finally: (onfinally?: () => void) => Promise<any>;
|
|
62
|
+
readonly [Symbol.toStringTag]: string;
|
|
63
|
+
};
|
|
64
|
+
isFirst?: boolean;
|
|
65
|
+
}[], Notification[] | {
|
|
66
|
+
id: number;
|
|
67
|
+
message: string;
|
|
68
|
+
description?: string;
|
|
69
|
+
type: "success" | "error" | "info" | "warning" | "default";
|
|
70
|
+
duration?: number;
|
|
71
|
+
action?: {
|
|
72
|
+
label: string;
|
|
73
|
+
onClick: () => void;
|
|
74
|
+
};
|
|
75
|
+
position: ToastPosition;
|
|
76
|
+
promise?: {
|
|
77
|
+
then: <TResult1 = any, TResult2 = never>(onfulfilled?: (value: any) => TResult1 | PromiseLike<TResult1>, onrejected?: (reason: any) => TResult2 | PromiseLike<TResult2>) => Promise<TResult1 | TResult2>;
|
|
78
|
+
catch: <TResult = never>(onrejected?: (reason: any) => TResult | PromiseLike<TResult>) => Promise<any>;
|
|
79
|
+
finally: (onfinally?: () => void) => Promise<any>;
|
|
80
|
+
readonly [Symbol.toStringTag]: string;
|
|
81
|
+
};
|
|
82
|
+
isFirst?: boolean;
|
|
83
|
+
}[]>;
|
|
84
|
+
showToast: typeof showToast;
|
|
85
|
+
toast: {
|
|
86
|
+
(message: string, options?: ToastOptions): number;
|
|
87
|
+
success(message: string, options?: ToastOptions): number;
|
|
88
|
+
error(message: string, options?: ToastOptions): number;
|
|
89
|
+
info(message: string, options?: ToastOptions): number;
|
|
90
|
+
warning(message: string, options?: ToastOptions): number;
|
|
91
|
+
promise<T = any>(promise: Promise<T>, data: {
|
|
92
|
+
loading: string;
|
|
93
|
+
success: (data: T) => string;
|
|
94
|
+
error: string | ((err: any) => string);
|
|
95
|
+
}): Promise<T>;
|
|
96
|
+
};
|
|
97
|
+
removeToast: typeof removeToast;
|
|
98
|
+
configure: typeof configure;
|
|
99
|
+
globalConfig: import('vue').Ref<{
|
|
100
|
+
position?: ToastPosition;
|
|
101
|
+
duration?: number;
|
|
102
|
+
expand?: boolean;
|
|
103
|
+
variant?: "success" | "error" | "info" | "warning" | "default";
|
|
104
|
+
}, ToastConfig | {
|
|
105
|
+
position?: ToastPosition;
|
|
106
|
+
duration?: number;
|
|
107
|
+
expand?: boolean;
|
|
108
|
+
variant?: "success" | "error" | "info" | "warning" | "default";
|
|
109
|
+
}>;
|
|
110
|
+
pauseTimers: typeof pauseTimers;
|
|
111
|
+
resumeTimers: typeof resumeTimers;
|
|
112
|
+
};
|
|
113
|
+
export { showToast, toast, removeToast, configure, pauseTimers, resumeTimers };
|