@dolanske/vui 1.0.0 → 1.0.1
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/dist/components/Accordion/Accordion.vue.d.ts +3 -2
- package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
- package/dist/components/Alert/Alert.vue.d.ts +3 -2
- package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
- package/dist/components/Badge/Badge.vue.d.ts +3 -2
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
- package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
- package/dist/components/Button/Button.vue.d.ts +3 -2
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
- package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
- package/dist/components/Card/Card.vue.d.ts +4 -3
- package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
- package/dist/components/Divider/Divider.vue.d.ts +3 -2
- package/dist/components/Drawer/Drawer.vue.d.ts +6 -5
- package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
- package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
- package/dist/components/Flex/Flex.vue.d.ts +3 -2
- package/dist/components/Grid/Grid.vue.d.ts +3 -2
- package/dist/components/Input/Color.vue.d.ts +11 -0
- package/dist/components/Input/Counter.vue.d.ts +5 -5
- package/dist/components/Input/Dropzone.vue.d.ts +95 -10
- package/dist/components/Input/File.vue.d.ts +4 -3
- package/dist/components/Input/Input.vue.d.ts +7 -6
- package/dist/components/Input/Password.vue.d.ts +1 -1
- package/dist/components/Input/Textarea.vue.d.ts +7 -6
- package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
- package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
- package/dist/components/Modal/Confirm.vue.d.ts +6 -5
- package/dist/components/Modal/Modal.vue.d.ts +6 -5
- package/dist/components/OTP/OTP.vue.d.ts +7 -6
- package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
- package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
- package/dist/components/Popout/Popout.vue.d.ts +3 -2
- package/dist/components/Progress/Progress.vue.d.ts +5 -5
- package/dist/components/Radio/Radio.vue.d.ts +7 -6
- package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
- package/dist/components/Select/Select.vue.d.ts +4 -8
- package/dist/components/Sheet/Sheet.vue.d.ts +6 -5
- package/dist/components/Sidebar/Sidebar.vue.d.ts +70 -0
- package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
- package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
- package/dist/components/Switch/Switch.vue.d.ts +7 -6
- package/dist/components/Table/Cell.vue.d.ts +5 -2
- package/dist/components/Table/Head.vue.d.ts +3 -2
- package/dist/components/Table/Root.vue.d.ts +3 -2
- package/dist/components/Table/table.d.ts +2 -2
- package/dist/components/Tabs/Tab.vue.d.ts +3 -2
- package/dist/components/Tabs/Tabs.vue.d.ts +8 -7
- package/dist/components/Toast/toast.d.ts +6 -6
- package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
- package/dist/index.d.ts +4 -1
- package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
- package/dist/{style.css → vui.css} +1 -1
- package/dist/vui.js +5938 -5502
- package/package.json +17 -17
- package/src/components/Tabs/Tabs.vue +3 -2
- package/src/index.ts +4 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dolanske/vui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Brother in Christ there's a new UI library",
|
|
7
7
|
"author": "dolanske",
|
|
@@ -47,26 +47,26 @@
|
|
|
47
47
|
"test": "vitest"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@floating-ui/vue": "^1.1.
|
|
51
|
-
"@types/node": "^22.
|
|
50
|
+
"@floating-ui/vue": "^1.1.6",
|
|
51
|
+
"@types/node": "^22.13.2",
|
|
52
52
|
"@vuepic/vue-datepicker": "^11.0.1",
|
|
53
|
-
"@vueuse/core": "^
|
|
54
|
-
"sass": "^1.
|
|
55
|
-
"vaul-vue": "^0.2.
|
|
56
|
-
"vite-plugin-dts": "^4.
|
|
57
|
-
"vue": "^3.5.
|
|
53
|
+
"@vueuse/core": "^12.5.0",
|
|
54
|
+
"sass": "^1.84.0",
|
|
55
|
+
"vaul-vue": "^0.2.1",
|
|
56
|
+
"vite-plugin-dts": "^4.5.0",
|
|
57
|
+
"vue": "^3.5.13"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@antfu/eslint-config": "^
|
|
61
|
-
"@iconify/vue": "^4.
|
|
62
|
-
"@vitejs/plugin-vue": "^5.1
|
|
60
|
+
"@antfu/eslint-config": "^4.2.0",
|
|
61
|
+
"@iconify/vue": "^4.3.0",
|
|
62
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
63
63
|
"@vue/test-utils": "^2.4.6",
|
|
64
|
-
"eslint": "^9.
|
|
65
|
-
"eslint-plugin-format": "^0.1
|
|
64
|
+
"eslint": "^9.20.1",
|
|
65
|
+
"eslint-plugin-format": "^1.0.1",
|
|
66
66
|
"jsdom": "^26.0.0",
|
|
67
|
-
"typescript": "^5.
|
|
68
|
-
"vite": "^
|
|
69
|
-
"vitest": "^
|
|
70
|
-
"vue-tsc": "^2.
|
|
67
|
+
"typescript": "^5.7.3",
|
|
68
|
+
"vite": "^6.1.0",
|
|
69
|
+
"vitest": "^3.0.5",
|
|
70
|
+
"vue-tsc": "^2.2.0"
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
+
import type { VNode } from 'vue'
|
|
2
3
|
import type { TabProps } from './Tab.vue'
|
|
3
|
-
import { useResizeObserver } from '@vueuse/core'
|
|
4
|
-
import { onMounted, useTemplateRef,
|
|
4
|
+
import { useResizeObserver } from '@vueuse/core'
|
|
5
|
+
import { onMounted, useTemplateRef, watch } from 'vue'
|
|
5
6
|
import './tabs.scss'
|
|
6
7
|
|
|
7
8
|
interface Props {
|
package/src/index.ts
CHANGED
|
@@ -18,6 +18,7 @@ import DropdownItem from './components/Dropdown/DropdownItem.vue'
|
|
|
18
18
|
import DropdownTitle from './components/Dropdown/DropdownTitle.vue'
|
|
19
19
|
import Flex from './components/Flex/Flex.vue'
|
|
20
20
|
import Grid from './components/Grid/Grid.vue'
|
|
21
|
+
import Color from './components/Input/Color.vue'
|
|
21
22
|
import Counter from './components/Input/Counter.vue'
|
|
22
23
|
import Dropzone from './components/Input/Dropzone.vue'
|
|
23
24
|
import File from './components/Input/File.vue'
|
|
@@ -38,6 +39,7 @@ import Radio from './components/Radio/Radio.vue'
|
|
|
38
39
|
import RadioGroup from './components/Radio/RadioGroup.vue'
|
|
39
40
|
import Select from './components/Select/Select.vue'
|
|
40
41
|
import Sheet from './components/Sheet/Sheet.vue'
|
|
42
|
+
import Sidebar from './components/Sidebar/Sidebar.vue'
|
|
41
43
|
import Skeleton from './components/Skeleton/Skeleton.vue'
|
|
42
44
|
import Spinner from './components/Spinner/Spinner.vue'
|
|
43
45
|
import Switch from './components/Switch/Switch.vue'
|
|
@@ -67,6 +69,7 @@ export {
|
|
|
67
69
|
Calendar,
|
|
68
70
|
Card,
|
|
69
71
|
Checkbox,
|
|
72
|
+
Color,
|
|
70
73
|
Confirm,
|
|
71
74
|
CopyClipboard,
|
|
72
75
|
Counter,
|
|
@@ -99,6 +102,7 @@ export {
|
|
|
99
102
|
Select,
|
|
100
103
|
setColorTheme,
|
|
101
104
|
Sheet,
|
|
105
|
+
Sidebar,
|
|
102
106
|
Skeleton,
|
|
103
107
|
Spinner,
|
|
104
108
|
Switch,
|