sep-yui 0.1.104 → 0.1.111
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 +59 -59
- package/dist/components/ScrollWrapper/ScrollWrapper.vue.d.ts +2 -0
- package/dist/components/ScrollWrapper/ScrollWrapperNew.vue.d.ts +2 -0
- package/dist/components/ScrollWrapper/interface/interface.d.ts +1 -0
- package/dist/components/Table/Table.vue.d.ts +2 -2
- package/dist/components/Table/TableNew.vue.d.ts +2 -2
- package/dist/components/Table/interface/interface.d.ts +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/sep-yui.es.ts +34789 -24816
- package/dist/sep-yui.umd.ts +218 -218
- package/dist/style.css +1 -1
- package/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,21 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sep-yui",
|
|
3
3
|
"author": "Perov David",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"packageManager": "pnpm@9.9.0",
|
|
4
|
+
"version": "0.1.111",
|
|
6
5
|
"main": "./dist/sep-yui.umd.ts",
|
|
7
6
|
"module": "./dist/sep-yui.ts",
|
|
8
7
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "pnpm run lint && vue-tsc && vite build",
|
|
11
|
-
"publish:lib": "pnpm run build && pnpm changelogen --release --publish",
|
|
12
|
-
"lint": "eslint --fix --ext .ts,.vue src",
|
|
13
|
-
"start:dev": "storybook dev -p 6006",
|
|
14
|
-
"start": "vite",
|
|
15
|
-
"start:preview": "vite preview",
|
|
16
|
-
"build-storybook": "storybook build",
|
|
17
|
-
"prepare": "lefthook install"
|
|
18
|
-
},
|
|
19
8
|
"dependencies": {
|
|
20
9
|
"@fontsource-variable/inter": "^5.1.0",
|
|
21
10
|
"@fontsource/source-sans-pro": "^5.1.0",
|
|
@@ -62,6 +51,7 @@
|
|
|
62
51
|
"lodash": "^4.17.21",
|
|
63
52
|
"sass": "^1.77.8",
|
|
64
53
|
"storybook": "^8.6.14",
|
|
54
|
+
"gh-pages": "^5.0.0",
|
|
65
55
|
"typescript": "^5.5.4",
|
|
66
56
|
"uuid4": "^2.0.3",
|
|
67
57
|
"vite": "^5.4.2",
|
|
@@ -80,5 +70,15 @@
|
|
|
80
70
|
"require": "./dist/sep-yui.umd.ts"
|
|
81
71
|
},
|
|
82
72
|
"./styles": "./dist/style.css"
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "pnpm run lint && vue-tsc && vite build",
|
|
76
|
+
"publish:lib": "pnpm run build && pnpm changelogen --release --publish",
|
|
77
|
+
"lint": "eslint --fix --ext .ts,.vue src",
|
|
78
|
+
"start:dev": "storybook dev -p 6006",
|
|
79
|
+
"start": "vite",
|
|
80
|
+
"start:preview": "vite preview",
|
|
81
|
+
"build-storybook": "storybook build",
|
|
82
|
+
"deploy-storybook": "pnpm run build-storybook && gh-pages -d storybook-static"
|
|
83
83
|
}
|
|
84
|
-
}
|
|
84
|
+
}
|