sep-yui 0.0.80 → 0.1.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/README.md +14 -1
- package/dist/components/Input/Input.vue.d.ts +3 -0
- package/dist/components/Input/interface/interface.d.ts +1 -0
- package/dist/components/InputNumber/InputNumber.vue.d.ts +3 -0
- package/dist/components/InputNumber/interface/interface.d.ts +1 -0
- package/dist/components/Textarea/Textarea.vue.d.ts +3 -0
- package/dist/components/Textarea/interface/interface.d.ts +1 -0
- package/dist/sep-yui.es.ts +167 -162
- package/dist/sep-yui.umd.ts +2 -2
- package/dist/style.css +1 -1
- package/package.json +76 -73
package/package.json
CHANGED
@@ -1,75 +1,78 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
"
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
"vue3-perfect-scrollbar": "^2.0.0"
|
19
|
-
},
|
20
|
-
"devDependencies": {
|
21
|
-
"@chromatic-com/storybook": "^1.8.0",
|
22
|
-
"@storybook/addon-a11y": "^8.1.9",
|
23
|
-
"@storybook/addon-actions": "^8.5.5",
|
24
|
-
"@storybook/addon-essentials": "^8.5.6",
|
25
|
-
"@storybook/addon-interactions": "^8.5.6",
|
26
|
-
"@storybook/addon-links": "^8.2.9",
|
27
|
-
"@storybook/blocks": "^8.2.9",
|
28
|
-
"@storybook/builder-vite": "^8.5.6",
|
29
|
-
"@storybook/test": "^8.5.6",
|
30
|
-
"@storybook/vue3": "^8.2.9",
|
31
|
-
"@storybook/vue3-vite": "^8.5.6",
|
32
|
-
"@types/lodash": "^4.17.7",
|
33
|
-
"@types/uuid4": "^2.0.3",
|
34
|
-
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
35
|
-
"@typescript-eslint/parser": "^7.18.0",
|
36
|
-
"@vitejs/plugin-vue": "^5.1.3",
|
37
|
-
"@vue/eslint-config-typescript": "^13.0.0",
|
38
|
-
"eslint": "^8.57.0",
|
39
|
-
"eslint-config-prettier": "^9.1.0",
|
40
|
-
"eslint-plugin-prettier": "^5.2.1",
|
41
|
-
"eslint-plugin-storybook": "^0.8.0",
|
42
|
-
"eslint-plugin-vue": "^9.27.0",
|
43
|
-
"lefthook": "^1.8.2",
|
44
|
-
"lodash": "^4.17.21",
|
45
|
-
"sass": "^1.77.8",
|
46
|
-
"storybook": "^8.5.6",
|
47
|
-
"typescript": "^5.5.4",
|
48
|
-
"uuid4": "^2.0.3",
|
49
|
-
"vite": "^5.4.2",
|
50
|
-
"vite-plugin-dts": "^3.9.1",
|
51
|
-
"vue-tsc": "^2.1.4"
|
52
|
-
},
|
53
|
-
"peerDependencies": {
|
54
|
-
"vue": ">=3"
|
55
|
-
},
|
56
|
-
"files": [
|
57
|
-
"dist"
|
58
|
-
],
|
59
|
-
"exports": {
|
60
|
-
".": {
|
61
|
-
"import": "./dist/sep-yui.es.ts",
|
62
|
-
"require": "./dist/sep-yui.umd.ts"
|
2
|
+
"name": "sep-yui",
|
3
|
+
"author": "Perov David",
|
4
|
+
"version": "0.1.1",
|
5
|
+
"packageManager": "pnpm@9.9.0",
|
6
|
+
"main": "./dist/sep-yui.umd.ts",
|
7
|
+
"module": "./dist/sep-yui.ts",
|
8
|
+
"types": "./dist/index.d.ts",
|
9
|
+
"scripts": {
|
10
|
+
"dev": "vite",
|
11
|
+
"build": "pnpm run lint && vue-tsc && vite build",
|
12
|
+
"publish:lib": "pnpm run build && pnpm changelogen --release --publish",
|
13
|
+
"preview": "vite preview",
|
14
|
+
"lint": "eslint --fix --ext .ts,.vue src",
|
15
|
+
"storybook": "storybook dev -p 6006",
|
16
|
+
"build-storybook": "storybook build",
|
17
|
+
"prepare": "lefthook install"
|
63
18
|
},
|
64
|
-
"
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
}
|
19
|
+
"dependencies": {
|
20
|
+
"@angelblanco/v-calendar": "^3.1.3",
|
21
|
+
"@fontsource-variable/inter": "^5.1.0",
|
22
|
+
"@fontsource/source-sans-pro": "^5.1.0",
|
23
|
+
"@popperjs/core": "^2.11.8",
|
24
|
+
"@storybook/addon-a11y": "^8.5.6",
|
25
|
+
"@vueuse/components": "^11.1.0",
|
26
|
+
"@vueuse/core": "^11.0.3",
|
27
|
+
"pinia": "^2.2.2",
|
28
|
+
"vue": "^3.4.38",
|
29
|
+
"vue3-perfect-scrollbar": "^2.0.0"
|
30
|
+
},
|
31
|
+
"devDependencies": {
|
32
|
+
"changelogen": "^0.6.1",
|
33
|
+
"@chromatic-com/storybook": "^1.8.0",
|
34
|
+
"@storybook/addon-a11y": "^8.1.9",
|
35
|
+
"@storybook/addon-actions": "^8.5.5",
|
36
|
+
"@storybook/addon-essentials": "^8.5.6",
|
37
|
+
"@storybook/addon-interactions": "^8.5.6",
|
38
|
+
"@storybook/addon-links": "^8.2.9",
|
39
|
+
"@storybook/blocks": "^8.2.9",
|
40
|
+
"@storybook/builder-vite": "^8.5.6",
|
41
|
+
"@storybook/test": "^8.5.6",
|
42
|
+
"@storybook/vue3": "^8.2.9",
|
43
|
+
"@storybook/vue3-vite": "^8.5.6",
|
44
|
+
"@types/lodash": "^4.17.7",
|
45
|
+
"@types/uuid4": "^2.0.3",
|
46
|
+
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
47
|
+
"@typescript-eslint/parser": "^7.18.0",
|
48
|
+
"@vitejs/plugin-vue": "^5.1.3",
|
49
|
+
"@vue/eslint-config-typescript": "^13.0.0",
|
50
|
+
"eslint": "^8.57.0",
|
51
|
+
"eslint-config-prettier": "^9.1.0",
|
52
|
+
"eslint-plugin-prettier": "^5.2.1",
|
53
|
+
"eslint-plugin-storybook": "^0.8.0",
|
54
|
+
"eslint-plugin-vue": "^9.27.0",
|
55
|
+
"lefthook": "^1.8.2",
|
56
|
+
"lodash": "^4.17.21",
|
57
|
+
"sass": "^1.77.8",
|
58
|
+
"storybook": "^8.5.6",
|
59
|
+
"typescript": "^5.5.4",
|
60
|
+
"uuid4": "^2.0.3",
|
61
|
+
"vite": "^5.4.2",
|
62
|
+
"vite-plugin-dts": "^3.9.1",
|
63
|
+
"vue-tsc": "^2.1.4"
|
64
|
+
},
|
65
|
+
"peerDependencies": {
|
66
|
+
"vue": ">=3"
|
67
|
+
},
|
68
|
+
"files": [
|
69
|
+
"dist"
|
70
|
+
],
|
71
|
+
"exports": {
|
72
|
+
".": {
|
73
|
+
"import": "./dist/sep-yui.es.ts",
|
74
|
+
"require": "./dist/sep-yui.umd.ts"
|
75
|
+
},
|
76
|
+
"./styles": "./dist/style.css"
|
77
|
+
}
|
78
|
+
}
|