@dolanske/vui 1.14.17 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +673 -673
- package/README.md +12 -12
- package/dist/src/index.d.ts +2 -2
- package/dist/src/shared/viewport.d.ts +33 -0
- package/dist/vui.css +1 -1
- package/dist/vui.js +1635 -1632
- package/package.json +78 -78
- package/dist/src/shared/breakpoints.d.ts +0 -22
package/package.json
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dolanske/vui",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "1.
|
|
5
|
-
"private": false,
|
|
6
|
-
"description": "Brother in Christ there's a new UI library",
|
|
7
|
-
"author": "dolanske",
|
|
8
|
-
"license": "GPL-3.0",
|
|
9
|
-
"sass": "src/index.scss",
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/dolanske/vui.git"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"vue",
|
|
16
|
-
"vue3",
|
|
17
|
-
"component",
|
|
18
|
-
"component library",
|
|
19
|
-
"vue3 components",
|
|
20
|
-
"design system",
|
|
21
|
-
"ui library"
|
|
22
|
-
],
|
|
23
|
-
"exports": {
|
|
24
|
-
".": {
|
|
25
|
-
"types": "./dist/src/index.d.ts",
|
|
26
|
-
"import": "./dist/vui.js"
|
|
27
|
-
},
|
|
28
|
-
"./style": {
|
|
29
|
-
"import": "./dist/vui.css",
|
|
30
|
-
"require": "./dist/vui.css",
|
|
31
|
-
"default": "./dist/vui.css"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"main": "./dist/vui.js",
|
|
35
|
-
"module": "./dist/vui.js",
|
|
36
|
-
"browser": "./dist/vui.js",
|
|
37
|
-
"unpkg": "./dist/vui.js",
|
|
38
|
-
"types": "./dist/src/index.d.ts",
|
|
39
|
-
"files": [
|
|
40
|
-
"./dist/*",
|
|
41
|
-
"LICENSE",
|
|
42
|
-
"README.md"
|
|
43
|
-
],
|
|
44
|
-
"scripts": {
|
|
45
|
-
"dev": "vite",
|
|
46
|
-
"dev:lan": "vite --host",
|
|
47
|
-
"build": "vue-tsc -b && vite build",
|
|
48
|
-
"build:pages": "vue-tsc -b && vite build --mode pages",
|
|
49
|
-
"preview": "vite preview",
|
|
50
|
-
"lint": "eslint .",
|
|
51
|
-
"lint:fix": "eslint . --fix",
|
|
52
|
-
"test": "vitest"
|
|
53
|
-
},
|
|
54
|
-
"dependencies": {
|
|
55
|
-
"@floating-ui/vue": "^1.1.11",
|
|
56
|
-
"@iconify-prerendered/vue-ph": "^0.28.1714973607",
|
|
57
|
-
"@types/node": "^25.6.0",
|
|
58
|
-
"@vuepic/vue-datepicker": "^12.1.0",
|
|
59
|
-
"@vueuse/core": "^14.2.1",
|
|
60
|
-
"sass": "^1.99.0",
|
|
61
|
-
"vaul-vue": "^0.4.1",
|
|
62
|
-
"vite-plugin-dts": "^4.5.4",
|
|
63
|
-
"vue": "^3.5.33"
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@antfu/eslint-config": "^8.2.0",
|
|
67
|
-
"@vitejs/plugin-vue": "^6.0.6",
|
|
68
|
-
"@vue/test-utils": "^2.4.9",
|
|
69
|
-
"baseline-browser-mapping": "^2.10.23",
|
|
70
|
-
"eslint": "^10.2.1",
|
|
71
|
-
"eslint-plugin-format": "^2.0.1",
|
|
72
|
-
"jsdom": "^29.1.0",
|
|
73
|
-
"typescript": "^6.0.3",
|
|
74
|
-
"vite": "^8.0.10",
|
|
75
|
-
"vitest": "^4.1.5",
|
|
76
|
-
"vue-tsc": "^3.2.7"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dolanske/vui",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.15.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "Brother in Christ there's a new UI library",
|
|
7
|
+
"author": "dolanske",
|
|
8
|
+
"license": "GPL-3.0",
|
|
9
|
+
"sass": "src/index.scss",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/dolanske/vui.git"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"vue",
|
|
16
|
+
"vue3",
|
|
17
|
+
"component",
|
|
18
|
+
"component library",
|
|
19
|
+
"vue3 components",
|
|
20
|
+
"design system",
|
|
21
|
+
"ui library"
|
|
22
|
+
],
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/src/index.d.ts",
|
|
26
|
+
"import": "./dist/vui.js"
|
|
27
|
+
},
|
|
28
|
+
"./style": {
|
|
29
|
+
"import": "./dist/vui.css",
|
|
30
|
+
"require": "./dist/vui.css",
|
|
31
|
+
"default": "./dist/vui.css"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"main": "./dist/vui.js",
|
|
35
|
+
"module": "./dist/vui.js",
|
|
36
|
+
"browser": "./dist/vui.js",
|
|
37
|
+
"unpkg": "./dist/vui.js",
|
|
38
|
+
"types": "./dist/src/index.d.ts",
|
|
39
|
+
"files": [
|
|
40
|
+
"./dist/*",
|
|
41
|
+
"LICENSE",
|
|
42
|
+
"README.md"
|
|
43
|
+
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"dev": "vite",
|
|
46
|
+
"dev:lan": "vite --host",
|
|
47
|
+
"build": "vue-tsc -b && vite build",
|
|
48
|
+
"build:pages": "vue-tsc -b && vite build --mode pages",
|
|
49
|
+
"preview": "vite preview",
|
|
50
|
+
"lint": "eslint .",
|
|
51
|
+
"lint:fix": "eslint . --fix",
|
|
52
|
+
"test": "vitest"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@floating-ui/vue": "^1.1.11",
|
|
56
|
+
"@iconify-prerendered/vue-ph": "^0.28.1714973607",
|
|
57
|
+
"@types/node": "^25.6.0",
|
|
58
|
+
"@vuepic/vue-datepicker": "^12.1.0",
|
|
59
|
+
"@vueuse/core": "^14.2.1",
|
|
60
|
+
"sass": "^1.99.0",
|
|
61
|
+
"vaul-vue": "^0.4.1",
|
|
62
|
+
"vite-plugin-dts": "^4.5.4",
|
|
63
|
+
"vue": "^3.5.33"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@antfu/eslint-config": "^8.2.0",
|
|
67
|
+
"@vitejs/plugin-vue": "^6.0.6",
|
|
68
|
+
"@vue/test-utils": "^2.4.9",
|
|
69
|
+
"baseline-browser-mapping": "^2.10.23",
|
|
70
|
+
"eslint": "^10.2.1",
|
|
71
|
+
"eslint-plugin-format": "^2.0.1",
|
|
72
|
+
"jsdom": "^29.1.0",
|
|
73
|
+
"typescript": "^6.0.3",
|
|
74
|
+
"vite": "^8.0.10",
|
|
75
|
+
"vitest": "^4.1.5",
|
|
76
|
+
"vue-tsc": "^3.2.7"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Ref } from 'vue';
|
|
2
|
-
export declare enum Breakpoints {
|
|
3
|
-
Mobile = "mobile",
|
|
4
|
-
Tablet = "tablet",
|
|
5
|
-
SmallDesktop = "smallDesktop",
|
|
6
|
-
Desktop = "desktop"
|
|
7
|
-
}
|
|
8
|
-
export declare const vuiBreakpoints: Ref<{
|
|
9
|
-
mobile: number;
|
|
10
|
-
tablet: number;
|
|
11
|
-
smallDesktop: number;
|
|
12
|
-
desktop: number;
|
|
13
|
-
}, Record<Breakpoints, number> | {
|
|
14
|
-
mobile: number;
|
|
15
|
-
tablet: number;
|
|
16
|
-
smallDesktop: number;
|
|
17
|
-
desktop: number;
|
|
18
|
-
}>;
|
|
19
|
-
/**
|
|
20
|
-
* Returns a reactive boolean indicating if the current window width is less than or equal to the specified breakpoint.
|
|
21
|
-
*/
|
|
22
|
-
export declare function useBreakpoint(breakpoint: Breakpoints): Ref<boolean>;
|