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
package/style.css
ADDED
|
@@ -0,0 +1,590 @@
|
|
|
1
|
+
@import 'tailwindcss';
|
|
2
|
+
@layer theme, base, components, utilities;
|
|
3
|
+
|
|
4
|
+
/* --- theme.css --- */
|
|
5
|
+
@layer components {
|
|
6
|
+
@theme {
|
|
7
|
+
|
|
8
|
+
--color-mixture-1: #ffffff;
|
|
9
|
+
--color-mixture-2: #000000;
|
|
10
|
+
|
|
11
|
+
--color-gray-150: '';
|
|
12
|
+
--color-gray-250: '';
|
|
13
|
+
--color-body: '';
|
|
14
|
+
--color-background: '';
|
|
15
|
+
--color-foreground: '';
|
|
16
|
+
--color-border: '';
|
|
17
|
+
--color-input: '';
|
|
18
|
+
--color-card: '';
|
|
19
|
+
--color-secondary: '';
|
|
20
|
+
--color-secondary-foreground: '';
|
|
21
|
+
--color-muted: '';
|
|
22
|
+
--color-muted-light: '';
|
|
23
|
+
--color-muted-foreground: '';
|
|
24
|
+
--color-accent: '';
|
|
25
|
+
--color-accent-foreground: '';
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
--color-destructive: #ef4444;
|
|
29
|
+
--color-destructive-foreground: #fafafa;
|
|
30
|
+
|
|
31
|
+
/* Legacy Primary Variants */
|
|
32
|
+
--color-primary-light: #f4f4f5;
|
|
33
|
+
--color-primary-dark: #3f3f46;
|
|
34
|
+
--color-primary: #18181b;
|
|
35
|
+
--color-primary-foreground: #fafafa;
|
|
36
|
+
--color-primary-fg: #fafafa;
|
|
37
|
+
--color-primary-foreground-light: #18181b;
|
|
38
|
+
|
|
39
|
+
/* Danger */
|
|
40
|
+
--color-danger-light: #fff2f2;
|
|
41
|
+
--color-danger: #ff3b30;
|
|
42
|
+
--color-danger-dark: #d70015;
|
|
43
|
+
--color-danger-fg: #ffffff;
|
|
44
|
+
--color-danger-fg-light: #d70015;
|
|
45
|
+
|
|
46
|
+
/* Warning */
|
|
47
|
+
--color-warning-light: #FFF5EB;
|
|
48
|
+
--color-warning: #ff9500;
|
|
49
|
+
--color-warning-dark: #c95100;
|
|
50
|
+
--color-warning-fg: #ffffff;
|
|
51
|
+
--color-warning-fg-light: #c95100;
|
|
52
|
+
|
|
53
|
+
/* Info */
|
|
54
|
+
--color-info-light: #f0f8ff;
|
|
55
|
+
--color-info: #007aff;
|
|
56
|
+
--color-info-dark: #0051a8;
|
|
57
|
+
--color-info-fg: #ffffff;
|
|
58
|
+
--color-info-fg-light: #0051a8;
|
|
59
|
+
|
|
60
|
+
/* Success */
|
|
61
|
+
--color-success-light: #EEFBEF;
|
|
62
|
+
--color-success: #007E51;
|
|
63
|
+
--color-success-dark: #248a3d;
|
|
64
|
+
--color-success-fg: #ffffff;
|
|
65
|
+
--color-success-fg-light: #248a3d;
|
|
66
|
+
|
|
67
|
+
/* Radius */
|
|
68
|
+
--radius: 0.5rem;
|
|
69
|
+
--radius-sm: calc(0.5rem - 2px);
|
|
70
|
+
--radius-md: 0.5rem;
|
|
71
|
+
--radius-lg: calc(0.5rem + 2px);
|
|
72
|
+
--radius-xl: calc(0.5rem + 4px);
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
/* Animations */
|
|
77
|
+
--animate-accordion-down: accordion-down 0.2s ease-out;
|
|
78
|
+
--animate-accordion-up: accordion-up 0.2s ease-out;
|
|
79
|
+
--animate-ripple: ripple 600ms linear;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
:root {
|
|
85
|
+
--tooltip-radius: var(--radius) !important;
|
|
86
|
+
--tooltip-shadow: var(--shadow-DEFAULT) !important;
|
|
87
|
+
--tooltip-arrow-size: 0.5em !important;
|
|
88
|
+
--tooltip-z-index: 50;
|
|
89
|
+
--tooltip-font-size: unset !important;
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
--shadow-sm: rgba(95, 97, 100, 0.07) 0px 15px 90px 0px, rgba(0, 0, 0, 0.02) 0.2px 0.2px 1px 0px;
|
|
93
|
+
--shadow-DEFAULT: rgba(55, 59, 74, 0.074) 0px 10px 55px 3px;
|
|
94
|
+
--shadow-md: var(--shadow-DEFAULT);
|
|
95
|
+
--shadow-lg: rgba(100, 100, 111, 0.15) 0px 7px 40px -1px;
|
|
96
|
+
--shadow-xl: rgba(0, 0, 0, 0.2) 0px 15px 50px -12px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.dark .modal-body,
|
|
100
|
+
.dark .sidepanel-body,
|
|
101
|
+
.dark .tooltip-container,
|
|
102
|
+
.bg-card,
|
|
103
|
+
.theme-section,
|
|
104
|
+
:root {
|
|
105
|
+
|
|
106
|
+
--color-white: color-mix(in oklab,
|
|
107
|
+
var(--color-mixture-1, #ffffff) 100%,
|
|
108
|
+
var(--color-mixture-2, #000000));
|
|
109
|
+
|
|
110
|
+
--color-black: color-mix(in oklab,
|
|
111
|
+
var(--color-mixture-1, #ffffff) 0%,
|
|
112
|
+
var(--color-mixture-2, #000000));
|
|
113
|
+
|
|
114
|
+
--color-gray-50: color-mix(in oklab,
|
|
115
|
+
var(--color-mixture-1, #ffffff) 98.5%,
|
|
116
|
+
var(--color-mixture-2, #000000));
|
|
117
|
+
|
|
118
|
+
--color-gray-100: color-mix(in oklab,
|
|
119
|
+
var(--color-mixture-1, #ffffff) 97%,
|
|
120
|
+
var(--color-mixture-2, #000000));
|
|
121
|
+
|
|
122
|
+
--color-gray-150: color-mix(in oklab,
|
|
123
|
+
var(--color-mixture-1, #ffffff) 96%,
|
|
124
|
+
var(--color-mixture-2, #000000));
|
|
125
|
+
|
|
126
|
+
--color-gray-200: color-mix(in oklab,
|
|
127
|
+
var(--color-mixture-1, #ffffff) 94.5%,
|
|
128
|
+
var(--color-mixture-2, #000000));
|
|
129
|
+
|
|
130
|
+
--color-gray-250: color-mix(in oklab,
|
|
131
|
+
var(--color-mixture-1, #ffffff) 92%,
|
|
132
|
+
var(--color-mixture-2, #000000));
|
|
133
|
+
|
|
134
|
+
--color-gray-300: color-mix(in oklab,
|
|
135
|
+
var(--color-mixture-1, #ffffff) 74%,
|
|
136
|
+
var(--color-mixture-2, #000000));
|
|
137
|
+
|
|
138
|
+
--color-gray-400: color-mix(in oklab,
|
|
139
|
+
var(--color-mixture-1, #ffffff) 62%,
|
|
140
|
+
var(--color-mixture-2, #000000));
|
|
141
|
+
|
|
142
|
+
--color-gray-500: color-mix(in oklab,
|
|
143
|
+
var(--color-mixture-1, #ffffff) 50%,
|
|
144
|
+
var(--color-mixture-2, #000000));
|
|
145
|
+
|
|
146
|
+
--color-gray-600: color-mix(in oklab,
|
|
147
|
+
var(--color-mixture-1, #ffffff) 38%,
|
|
148
|
+
var(--color-mixture-2, #000000));
|
|
149
|
+
|
|
150
|
+
--color-gray-700: color-mix(in oklab,
|
|
151
|
+
var(--color-mixture-1, #ffffff) 26%,
|
|
152
|
+
var(--color-mixture-2, #000000));
|
|
153
|
+
|
|
154
|
+
--color-gray-800: color-mix(in oklab,
|
|
155
|
+
var(--color-mixture-1, #ffffff) 16%,
|
|
156
|
+
var(--color-mixture-2, #000000));
|
|
157
|
+
|
|
158
|
+
--color-gray-850: color-mix(in oklab,
|
|
159
|
+
var(--color-mixture-1, #ffffff) 10%,
|
|
160
|
+
var(--color-mixture-2, #000000));
|
|
161
|
+
|
|
162
|
+
--color-gray-900: color-mix(in oklab,
|
|
163
|
+
var(--color-mixture-1, #ffffff) 5%,
|
|
164
|
+
var(--color-mixture-2, #000000));
|
|
165
|
+
|
|
166
|
+
--color-gray-950: var(--color-mixture-2, #000000);
|
|
167
|
+
|
|
168
|
+
--color-body: var(--color-mixture-1);
|
|
169
|
+
--color-background: var(--color-body);
|
|
170
|
+
--color-foreground: var(--color-gray-900);
|
|
171
|
+
|
|
172
|
+
--color-border: color-mix(in oklab, var(--color-mixture-1) 90%, var(--color-mixture-2));
|
|
173
|
+
--color-input: var(--color-border);
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
--color-secondary: color-mix(in oklab, var(--color-mixture-1) 95.5%, var(--color-mixture-2));
|
|
177
|
+
--color-secondary-foreground: var(--color-foreground);
|
|
178
|
+
|
|
179
|
+
--color-muted-light: var(--color-gray-50);
|
|
180
|
+
--color-muted: var(--color-gray-100);
|
|
181
|
+
--color-muted-foreground: var(--color-foreground);
|
|
182
|
+
|
|
183
|
+
--color-accent: var(--color-gray-150);
|
|
184
|
+
--color-accent-foreground: var(--color-foreground);
|
|
185
|
+
|
|
186
|
+
--tooltip-bg: var(--color-background) !important;
|
|
187
|
+
--tooltip-text: var(--color-foreground) !important;
|
|
188
|
+
--tooltip-border: color-mix(in oklab, var(--color-mixture-1) 93%, var(--color-mixture-2)) !important;
|
|
189
|
+
--date-picker-border: var(--color-border) !important;
|
|
190
|
+
--iconPicker-border: var(--color-border) !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.dark {
|
|
194
|
+
--color-mixture-1: #0A0A0A !important;
|
|
195
|
+
--color-mixture-2: #ffffff !important;
|
|
196
|
+
|
|
197
|
+
--color-gray-50: color-mix(in oklab,
|
|
198
|
+
var(--color-mixture-1, #ffffff) 95%,
|
|
199
|
+
var(--color-mixture-2, #000000));
|
|
200
|
+
|
|
201
|
+
--color-gray-100: color-mix(in oklab,
|
|
202
|
+
var(--color-mixture-1, #ffffff) 93%,
|
|
203
|
+
var(--color-mixture-2, #000000));
|
|
204
|
+
|
|
205
|
+
--color-gray-150: color-mix(in oklab,
|
|
206
|
+
var(--color-mixture-1, #ffffff) 90%,
|
|
207
|
+
var(--color-mixture-2, #000000));
|
|
208
|
+
|
|
209
|
+
--color-gray-200: color-mix(in oklab,
|
|
210
|
+
var(--color-mixture-1, #ffffff) 88%,
|
|
211
|
+
var(--color-mixture-2, #000000));
|
|
212
|
+
|
|
213
|
+
--color-gray-250: color-mix(in oklab,
|
|
214
|
+
var(--color-mixture-1, #ffffff) 82%,
|
|
215
|
+
var(--color-mixture-2, #000000));
|
|
216
|
+
|
|
217
|
+
--color-gray-300: color-mix(in oklab,
|
|
218
|
+
var(--color-mixture-1, #ffffff) 74%,
|
|
219
|
+
var(--color-mixture-2, #000000));
|
|
220
|
+
|
|
221
|
+
--color-secondary: color-mix(in oklab, var(--color-mixture-1) 91.5%, var(--color-mixture-2));
|
|
222
|
+
|
|
223
|
+
--color-destructive: #7f1d1d;
|
|
224
|
+
--color-destructive-foreground: #fafafa;
|
|
225
|
+
|
|
226
|
+
/* Charts (Dark) */
|
|
227
|
+
--color-chart-1: #22c55e;
|
|
228
|
+
--color-chart-2: #2a9d8f;
|
|
229
|
+
--color-chart-3: #264653;
|
|
230
|
+
--color-chart-4: #e9c46a;
|
|
231
|
+
--color-chart-5: #f4a261;
|
|
232
|
+
|
|
233
|
+
/* Variants (vlite3 custom) */
|
|
234
|
+
--color-primary-light: #2c2c2e;
|
|
235
|
+
--color-primary: #fafafa;
|
|
236
|
+
--color-primary-dark: #d4d4d8;
|
|
237
|
+
--color-primary-foreground: #18181b;
|
|
238
|
+
--color-primary-fg: #18181b;
|
|
239
|
+
--color-primary-foreground-light: #f4f4f5;
|
|
240
|
+
|
|
241
|
+
--shadow-sm: none !important;
|
|
242
|
+
--shadow-DEFAULT: none !important;
|
|
243
|
+
--shadow-md: none !important;
|
|
244
|
+
--shadow-lg: none !important;
|
|
245
|
+
--shadow-xl: none !important;
|
|
246
|
+
/* Semantics - Dark Mode High Contrast */
|
|
247
|
+
|
|
248
|
+
/* Danger */
|
|
249
|
+
--color-danger-light: #4E1D1A;
|
|
250
|
+
--color-danger-fg-light: #FCFCFC;
|
|
251
|
+
--color-danger: #7F1D1D;
|
|
252
|
+
--color-danger-fg: #ffffff;
|
|
253
|
+
--color-danger-dark: #D72627;
|
|
254
|
+
|
|
255
|
+
/* Warning */
|
|
256
|
+
--color-warning-light: #3a1e00;
|
|
257
|
+
--color-warning-fg-light: #ff9f0a;
|
|
258
|
+
--color-warning: #95600E;
|
|
259
|
+
--color-warning-fg: #ffffff;
|
|
260
|
+
--color-warning-dark: #ffb340;
|
|
261
|
+
|
|
262
|
+
/* Info */
|
|
263
|
+
--color-info-light: #001a33;
|
|
264
|
+
--color-info-fg-light: #0a84ff;
|
|
265
|
+
--color-info: #0a84ff;
|
|
266
|
+
--color-info-fg: #ffffff;
|
|
267
|
+
--color-info-dark: #409cff;
|
|
268
|
+
|
|
269
|
+
/* Success */
|
|
270
|
+
--color-success-light: #1B3419;
|
|
271
|
+
--color-success-fg-light: #ffffff;
|
|
272
|
+
--color-success: #007E51;
|
|
273
|
+
--color-success-fg: #ffffff;
|
|
274
|
+
--color-success-dark: #00613f;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
.dark .modal-body,
|
|
279
|
+
.dark .sidepanel-body {
|
|
280
|
+
--color-body: #171717 !important;
|
|
281
|
+
--color-mixture-1: #151515 !important;
|
|
282
|
+
--color-mixture-2: #ffffff !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.dark .tooltip-container {
|
|
286
|
+
--color-background: #171717 !important;
|
|
287
|
+
--color-mixture-1: #1c1c1c !important;
|
|
288
|
+
--color-mixture-2: #ffffff !important;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.dark .bg-card {
|
|
292
|
+
--color-body: #131313 !important;
|
|
293
|
+
--color-mixture-1: #191818 !important;
|
|
294
|
+
--color-mixture-2: #ffffff !important;
|
|
295
|
+
background-color: var(--color-body) !important;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.dark .modal-body .bg-card,
|
|
299
|
+
.dark .sidepanel-body .bg-card,
|
|
300
|
+
.dark .tooltip-container .bg-card {
|
|
301
|
+
--color-body: #1A1A1A !important;
|
|
302
|
+
--color-mixture-1: #191818 !important;
|
|
303
|
+
--color-mixture-2: #ffffff !important;
|
|
304
|
+
background-color: var(--color-body) !important;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.dark .bg-card {
|
|
308
|
+
--color-body: #131313 !important;
|
|
309
|
+
--color-mixture-1: #191818 !important;
|
|
310
|
+
--color-mixture-2: #ffffff !important;
|
|
311
|
+
background-color: var(--color-body) !important;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.bg-card {
|
|
315
|
+
--color-body: #FAFAFA !important;
|
|
316
|
+
--color-mixture-1: #fbfbfb !important;
|
|
317
|
+
--color-mixture-2: #000000 !important;
|
|
318
|
+
background-color: #FBFBFB !important;
|
|
319
|
+
border-color: color-mix(in oklab, var(--color-mixture-1) 95%, var(--color-mixture-2));
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.bg-card .bg-card {
|
|
323
|
+
--color-body: #F5F5F5 !important;
|
|
324
|
+
--color-mixture-1: #F5F5F5;
|
|
325
|
+
--color-mixture-2: #000000;
|
|
326
|
+
background-color: #F5F5F5 !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.bg-card .bg-card .bg-card {
|
|
330
|
+
--color-body: #EEE !important;
|
|
331
|
+
--color-mixture-1: #F5F5F5;
|
|
332
|
+
--color-mixture-2: #000000;
|
|
333
|
+
background-color: #EEE !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.dark .bg-card .bg-card {
|
|
337
|
+
--color-body: #171717 !important;
|
|
338
|
+
--color-mixture-1: #181818;
|
|
339
|
+
--color-mixture-2: #000000;
|
|
340
|
+
background-color: #171717 !important;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.dark .bg-card .bg-card .bg-card {
|
|
344
|
+
--color-body: #1A1A1A !important;
|
|
345
|
+
--color-mixture-1: #171717;
|
|
346
|
+
--color-mixture-2: #000000;
|
|
347
|
+
background-color: #1A1A1A !important;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.shadow-sm {
|
|
351
|
+
box-shadow: var(--shadow-sm) !important;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.shadow-DEFAULT {
|
|
355
|
+
box-shadow: var(--shadow-DEFAULT) !important;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.shadow-md {
|
|
359
|
+
box-shadow: var(--shadow-md) !important;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.shadow {
|
|
363
|
+
box-shadow: var(--shadow-md) !important;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.shadow-lg {
|
|
367
|
+
box-shadow: var(--shadow-lg) !important;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.shadow-xl {
|
|
371
|
+
box-shadow: var(--shadow-xl) !important;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/* --- base.css --- */
|
|
375
|
+
*,
|
|
376
|
+
*::before,
|
|
377
|
+
*::after {
|
|
378
|
+
box-sizing: border-box;
|
|
379
|
+
letter-spacing: -0.01px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
html {
|
|
383
|
+
scroll-behavior: smooth;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
@layer components {
|
|
388
|
+
body {
|
|
389
|
+
@apply bg-background text-foreground;
|
|
390
|
+
font-feature-settings: "rlig" 1, "calt" 1;
|
|
391
|
+
font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
|
|
392
|
+
'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
/* Ripple */
|
|
397
|
+
span.ripple {
|
|
398
|
+
position: absolute;
|
|
399
|
+
border-radius: 50%;
|
|
400
|
+
transform: scale(0);
|
|
401
|
+
animation: ripple 600ms linear;
|
|
402
|
+
background-color: rgba(255, 255, 255, 0.094);
|
|
403
|
+
pointer-events: none;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
*,
|
|
407
|
+
::before,
|
|
408
|
+
::after {
|
|
409
|
+
@apply border-border;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
h1,
|
|
413
|
+
.h1,
|
|
414
|
+
h2,
|
|
415
|
+
.h2,
|
|
416
|
+
h3,
|
|
417
|
+
.h3,
|
|
418
|
+
h4,
|
|
419
|
+
.h4 {
|
|
420
|
+
@apply font-bold text-foreground;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
h5,
|
|
424
|
+
.h5,
|
|
425
|
+
h6,
|
|
426
|
+
.h6 {
|
|
427
|
+
@apply font-sans text-foreground;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
h1,
|
|
431
|
+
.h1 {
|
|
432
|
+
@apply text-3xl;
|
|
433
|
+
line-height: 1.3em;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
h2,
|
|
437
|
+
.h2 {
|
|
438
|
+
@apply text-2xl;
|
|
439
|
+
line-height: 1.3em;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
h3,
|
|
443
|
+
.h3 {
|
|
444
|
+
@apply text-xl;
|
|
445
|
+
line-height: 1.25em;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
h4,
|
|
449
|
+
.h4 {
|
|
450
|
+
@apply text-lg;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
h5,
|
|
454
|
+
.h5 {
|
|
455
|
+
@apply font-semibold;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
h6,
|
|
459
|
+
.h6 {
|
|
460
|
+
@apply font-medium;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
small {
|
|
464
|
+
@apply text-sm;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
:root {
|
|
468
|
+
scroll-behavior: smooth;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.dropdown .tooltip-content {
|
|
472
|
+
padding: 0 !important;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.basic-tooltip .tooltip-content {
|
|
476
|
+
padding: 0.3em 0.7em !important;
|
|
477
|
+
font-size: 0.8em
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
@keyframes accordion-down {
|
|
483
|
+
from {
|
|
484
|
+
height: 0;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
to {
|
|
488
|
+
height: var(--radix-accordion-content-height);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
@keyframes accordion-up {
|
|
493
|
+
from {
|
|
494
|
+
height: var(--radix-accordion-content-height);
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
to {
|
|
498
|
+
height: 0;
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
@keyframes ripple {
|
|
503
|
+
to {
|
|
504
|
+
transform: scale(4);
|
|
505
|
+
opacity: 0;
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
#icon-picker {
|
|
510
|
+
--iconPicker-text: var(--color-foreground);
|
|
511
|
+
--iconPicker-border: var(--color-border);
|
|
512
|
+
--iconPicker-primary: var(--color-primary);
|
|
513
|
+
--iconPicker-primary-fg: var(--color-primary-foreground);
|
|
514
|
+
--iconPicker-primary-hover: var(--color-primary);
|
|
515
|
+
/* Approximation */
|
|
516
|
+
--iconPicker-radius: var(--radius);
|
|
517
|
+
--iconPicker-gap: 0.25em;
|
|
518
|
+
--iconPicker-input-height: 2.125em;
|
|
519
|
+
--iconPicker-selected-bg: var(--color-accent);
|
|
520
|
+
--iconPicker-font-base: 15.5px;
|
|
521
|
+
--iconPicker-transition: all 0.2s ease;
|
|
522
|
+
padding: 5px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
/* --- input.css --- */
|
|
526
|
+
input[type='number']::-webkit-inner-spin-button,
|
|
527
|
+
input[type='number']::-webkit-outer-spin-button {
|
|
528
|
+
-webkit-appearance: none;
|
|
529
|
+
margin: 0;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
/* Firefox */
|
|
533
|
+
input[type='number'] {
|
|
534
|
+
-moz-appearance: textfield;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
/* Hide the stepper controls */
|
|
538
|
+
input[type='number']::-webkit-inner-spin-button,
|
|
539
|
+
input[type='number']::-webkit-outer-spin-button {
|
|
540
|
+
-webkit-appearance: none;
|
|
541
|
+
margin: 0;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
input:-webkit-autofill,
|
|
545
|
+
input:-webkit-autofill:hover,
|
|
546
|
+
input:-webkit-autofill:focus,
|
|
547
|
+
textarea:-webkit-autofill,
|
|
548
|
+
textarea:-webkit-autofill:hover,
|
|
549
|
+
textarea:-webkit-autofill:focus,
|
|
550
|
+
select:-webkit-autofill,
|
|
551
|
+
select:-webkit-autofill:hover,
|
|
552
|
+
select:-webkit-autofill:focus {
|
|
553
|
+
-webkit-text-fill-color: theme('colors.gray.900');
|
|
554
|
+
-webkit-box-shadow: 0 0 0px 1000px theme('colors.background') inset;
|
|
555
|
+
transition: background-color 5000s ease-in-out 0s;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
input[type='number']::-webkit-inner-spin-button,
|
|
559
|
+
input[type='number']::-webkit-outer-spin-button {
|
|
560
|
+
opacity: 0;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
input[type='date']::-webkit-inner-spin-button,
|
|
564
|
+
input[type='date']::-webkit-calendar-picker-indicator {
|
|
565
|
+
display: none;
|
|
566
|
+
-webkit-appearance: none;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
textarea {
|
|
570
|
+
scrollbar-width: thin !important;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
textarea::-webkit-scrollbar {
|
|
574
|
+
width: 6px !important;
|
|
575
|
+
height: 6px !important;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
textarea::-webkit-scrollbar-track {
|
|
579
|
+
border-radius: 10px !important;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
textarea::-webkit-scrollbar-thumb {
|
|
583
|
+
border-radius: 10px !important;
|
|
584
|
+
border: 1px solid transparent !important;
|
|
585
|
+
background-clip: padding-box !important;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
/* --- Vite Generated CSS --- */
|
|
589
|
+
.accordion-enter-active[data-v-aa189e08],.accordion-leave-active[data-v-aa189e08]{transition:height .3s ease-in-out}.attached-group[data-v-8c9add3e]:not(.vertical-group) button{border-radius:0}.attached-group[data-v-8c9add3e] button{position:relative;--radius: .375rem}.attached-group[data-v-8c9add3e] button:focus-visible,.attached-group[data-v-8c9add3e] button:hover{z-index:10}.attached-group[data-v-8c9add3e]:not(.vertical-group) button:not(:first-child){margin-left:-1px}.attached-group[data-v-8c9add3e]:not(.vertical-group) button:first-child{border-top-left-radius:var(--radius);border-bottom-left-radius:var(--radius);border-top-right-radius:0;border-bottom-right-radius:0}.attached-group[data-v-8c9add3e]:not(.vertical-group) button:not(:first-child):not(:last-child){border-radius:0}.attached-group[data-v-8c9add3e]:not(.vertical-group) button:last-child{border-top-right-radius:var(--radius);border-bottom-right-radius:var(--radius);border-top-left-radius:0;border-bottom-left-radius:0}.vertical-group[data-v-8c9add3e] button:not(:first-child){margin-top:-1px}.vertical-group[data-v-8c9add3e] button:first-child{border-top-left-radius:var(--radius);border-top-right-radius:var(--radius);border-bottom-left-radius:0;border-bottom-right-radius:0}.vertical-group[data-v-8c9add3e] button:not(:first-child):not(:last-child){border-radius:0}.vertical-group[data-v-8c9add3e] button:last-child{border-bottom-left-radius:var(--radius);border-bottom-right-radius:var(--radius);border-top-left-radius:0;border-top-right-radius:0}.attached-group[data-v-8c9add3e]:not(.vertical-group) button:not(:first-child):not(.border):before{content:"";position:absolute;left:0;top:0;bottom:0;width:1px;background-color:currentColor;opacity:.15;z-index:5;pointer-events:none}.vertical-group[data-v-8c9add3e] button:not(:first-child):not(.border):before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background-color:currentColor;opacity:.15;z-index:5;pointer-events:none;width:auto}.vertical-group[data-v-8c9add3e] button:not(:first-child):not(.border):before{width:100%}.attached-group[data-v-8c9add3e]:not(.vertical-group) button:not(:first-child):not(.border):before{height:100%}.carousel-wrapper[data-v-655a78c8]{width:100%;position:relative}.IroBox{border-radius:8px!important}table[data-v-45a246be]{table-layout:fixed}table col[data-v-45a246be]:first-child{width:48px!important}table th[data-v-45a246be]:first-child,table td[data-v-45a246be]:first-child{width:48px!important;max-width:48px!important;min-width:48px!important}.form-field-item[data-v-5c98aa0e]{display:flex;flex-direction:column}.form-field-item[data-v-5c98aa0e]:has([role=switch]),.form-field-item[data-v-5c98aa0e]:has([role=checkbox]){flex-direction:row;align-items:center}.form-container[data-v-25a5775d]{width:100%}.custom-fields-table[data-v-79b7dd60] .form-field-item{margin-bottom:0!important;height:100%}.custom-fields-table[data-v-79b7dd60] input,.custom-fields-table[data-v-79b7dd60] textarea{padding-left:1em;padding-right:.5em}.custom-fields-table[data-v-79b7dd60] input,.custom-fields-table[data-v-79b7dd60] textarea,.custom-fields-table[data-v-79b7dd60] select,.custom-fields-table[data-v-79b7dd60] .input-wrapper,.custom-fields-table[data-v-79b7dd60] .tooltip-trigger button{border:none!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;height:100%!important;min-height:40px}.custom-fields-table[data-v-79b7dd60] .tooltip-trigger button{justify-content:space-between!important}.custom-fields-table[data-v-79b7dd60] input:focus,.custom-fields-table[data-v-79b7dd60] textarea:focus,.custom-fields-table[data-v-79b7dd60] select:focus,.custom-fields-table[data-v-79b7dd60] .input-wrapper:focus-within{background-color:hsla(var(--primary) / .03)!important;box-shadow:inset 0 0 0 2px hsla(var(--primary) / .1)!important}.custom-fields-table[data-v-79b7dd60] .w-full{width:100%;height:100%}.list-move[data-v-79b7dd60],.list-enter-active[data-v-79b7dd60],.list-leave-active[data-v-79b7dd60]{transition:all .3s cubic-bezier(.16,1,.3,1)}.list-enter-from[data-v-79b7dd60],.list-leave-to[data-v-79b7dd60]{opacity:0;transform:translateY(-10px)}.list-leave-active[data-v-79b7dd60]{position:absolute;width:100%;z-index:0}.heatmap-container[data-v-00476f00]{width:100%;height:100%;display:flex;flex-direction:column;min-height:0}.heatmap-wrapper[data-v-00476f00]{width:100%;height:100%;overflow:auto;flex:1;min-height:0;display:flex;align-items:center;justify-content:center;padding:16px;box-sizing:border-box;position:relative}.heatmap-grid[data-v-00476f00]{width:fit-content;height:fit-content;transition:all .2s ease-in-out}.heatmap-cell[data-v-00476f00]{aspect-ratio:1 / 1;border-radius:2px;transition:all .15s ease-in-out;border:1px solid transparent;box-sizing:border-box}.heatmap-cell-interactive[data-v-00476f00]{cursor:pointer}.heatmap-cell-interactive[data-v-00476f00]:hover{transform:scale(1.1);border-color:var(--border);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;z-index:10;position:relative}.heatmap-cell-empty[data-v-00476f00]{opacity:.6}.heatmap-cell-hovered[data-v-00476f00]{outline:2px solid var(--primary);outline-offset:1px}.heatmap-cell-label[data-v-00476f00]{font-size:8px;font-weight:500;color:var(--foreground);opacity:.8;display:flex;align-items:center;justify-content:center;height:100%;width:100%;pointer-events:none}.heatmap-legend[data-v-00476f00]{display:flex;align-items:center;gap:.5rem;margin-top:1rem;font-size:.75rem;color:var(--muted-foreground);flex-shrink:0}.heatmap-legend-label[data-v-00476f00]{font-weight:500}.heatmap-legend-colors[data-v-00476f00]{display:flex;gap:.125rem}.heatmap-legend-item[data-v-00476f00]{width:.75rem;height:.75rem;border-radius:.375rem;border:1px solid var(--border)}@media(max-width:640px){.heatmap-wrapper[data-v-00476f00]{padding:12px}.heatmap-cell[data-v-00476f00]{border-radius:2px}.heatmap-cell-label[data-v-00476f00]{font-size:7px}}@media(min-width:641px)and (max-width:1023px){.heatmap-wrapper[data-v-00476f00]{padding:14px}.heatmap-cell[data-v-00476f00]{border-radius:2px}}@media(min-width:1024px){.heatmap-wrapper[data-v-00476f00]{padding:16px}.heatmap-cell[data-v-00476f00]{border-radius:3px}}.masonry-item[data-v-c29d0159]{content-visibility:auto;contain-intrinsic-size:1px 200px}.slide-right-enter-active[data-v-4142e8a9],.slide-right-leave-active[data-v-4142e8a9],.slide-left-enter-active[data-v-4142e8a9],.slide-left-leave-active[data-v-4142e8a9]{transition:transform .3s ease-in-out}.slide-right-enter-from[data-v-4142e8a9],.slide-right-leave-to[data-v-4142e8a9]{transform:translate(100%)}.slide-left-enter-from[data-v-4142e8a9],.slide-left-leave-to[data-v-4142e8a9]{transform:translate(-100%)}.sidebar-manu-item .tooltip-trigger{width:100%!important}.sidebar-menu-tooltip{margin-left:4px!important}[dir=rtl] .sidebar-menu-tooltip{margin-right:4px!important}.first-toast-enter-active[data-v-7a1ec14c]{animation:first-toast-in-7a1ec14c .45s cubic-bezier(.23,1,.32,1) forwards}.first-toast-leave-active[data-v-7a1ec14c]{transition:all .25s ease-in}.first-toast-leave-to[data-v-7a1ec14c]{opacity:0;transform:scale(.98)}@keyframes first-toast-in-7a1ec14c{0%{opacity:var(--entrance-opacity, .6);transform:translateY(var(--entrance-offset, 25px)) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.stack-toast-enter-active[data-v-7a1ec14c],.stack-toast-leave-active[data-v-7a1ec14c]{transition:all .3s cubic-bezier(.16,1,.3,1)}.stack-toast-enter-from[data-v-7a1ec14c]{opacity:0;transform:scale(.95) translateY(10px)}.stack-toast-leave-to[data-v-7a1ec14c]{opacity:0;transform:scale(.95)}.stack-toast-move[data-v-7a1ec14c]{transition:transform .4s cubic-bezier(.16,1,.3,1)}
|
|
590
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export type AlertVariant = 'primary' | 'success' | 'warning' | 'danger';
|
|
2
|
+
export interface AlertProps {
|
|
3
|
+
title: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
icon?: string;
|
|
6
|
+
variant?: AlertVariant;
|
|
7
|
+
closable?: boolean;
|
|
8
|
+
role?: 'alert' | 'status' | 'none';
|
|
9
|
+
class?: string;
|
|
10
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'
|
|
2
|
-
export type AvatarRounded = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full'
|
|
3
|
-
|
|
1
|
+
export type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
2
|
+
export type AvatarRounded = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
4
3
|
export interface AvatarProps {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
src?: string;
|
|
5
|
+
alt?: string;
|
|
6
|
+
fallback?: string;
|
|
7
|
+
size?: AvatarSize;
|
|
8
|
+
rounded?: AvatarRounded;
|
|
9
|
+
class?: string;
|
|
11
10
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type ButtonVariant = 'primary' | 'primary-light' | 'secondary' | 'danger' | 'danger-light' | 'warning' | 'warning-light' | 'info' | 'info-light' | 'success' | 'success-light' | 'outline' | 'outline-primary' | 'outline-danger' | 'outline-warning' | 'outline-info' | 'outline-success' | 'ghost' | 'link';
|
|
2
|
+
export type ButtonSize = 'xs' | 'md' | 'sm' | 'lg' | 'xl';
|
|
3
|
+
export type ButtonRounded = 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
|
|
4
|
+
export interface ButtonProps {
|
|
5
|
+
variant?: ButtonVariant;
|
|
6
|
+
size?: ButtonSize;
|
|
7
|
+
class?: any;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
loading?: boolean;
|
|
10
|
+
icon?: string;
|
|
11
|
+
iconRight?: string;
|
|
12
|
+
type?: 'button' | 'submit' | 'reset';
|
|
13
|
+
text?: string;
|
|
14
|
+
rounded?: ButtonRounded;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ButtonGroupDirection = 'horizontal' | 'vertical';
|
|
@@ -2,30 +2,27 @@
|
|
|
2
2
|
* Interface for the file upload handler function.
|
|
3
3
|
* This allows users to replace the default upload logic with their own API.
|
|
4
4
|
*/
|
|
5
|
-
export type FileUploadHandler = (
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
) => Promise<string | null | undefined
|
|
9
|
-
|
|
5
|
+
export type FileUploadHandler = (file: File | {
|
|
6
|
+
file: File;
|
|
7
|
+
fileName?: string;
|
|
8
|
+
}, folderId?: string | null) => Promise<string | null | undefined>;
|
|
10
9
|
/**
|
|
11
10
|
* Registry for global services.
|
|
12
11
|
* Extend this interface when adding new global capabilities (e.g., auth, analytics).
|
|
13
12
|
*/
|
|
14
13
|
export interface VLiteServices {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
/**
|
|
15
|
+
* Global file upload implementation.
|
|
16
|
+
* Used by useFileUpload composable.
|
|
17
|
+
*/
|
|
18
|
+
upload?: FileUploadHandler;
|
|
20
19
|
}
|
|
21
|
-
|
|
22
20
|
/**
|
|
23
21
|
* Main configuration object for the VLite plugin.
|
|
24
22
|
*/
|
|
25
23
|
export interface VLiteConfig {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
/**
|
|
25
|
+
* Service registry for dependency injection.
|
|
26
|
+
*/
|
|
27
|
+
services?: VLiteServices;
|
|
30
28
|
}
|
|
31
|
-
|