@someray-ui/components 0.0.1 → 0.0.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/README.md +55 -1
- package/dist/components/SrAppHeader.vue.d.ts +0 -10
- package/dist/components/SrContent.vue.d.ts +11 -0
- package/dist/components/SrContentArea.vue.d.ts +39 -0
- package/dist/components/SrMonitorLayout.vue.d.ts +41 -0
- package/dist/components/SrSidePanel.vue.d.ts +74 -0
- package/dist/components/SrToolbar.vue.d.ts +40 -0
- package/dist/components/SrWorkspace.vue.d.ts +75 -0
- package/dist/index.d.ts +7 -1
- package/dist/sr-ui.css +1 -1
- package/dist/sr-ui.js +498 -256
- package/package.json +11 -8
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@someray-ui/components",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Someray 内部 Vue3 通用组件库(SrAppHeader / SrResourceTree / SrVideoWall),配合 @arco-themes/vue-someray-light 主题",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Someray 内部 Vue3 通用组件库(SrAppHeader / SrResourceTree / SrVideoWall + 布局组件 SrContent/SrWorkspace/SrMonitorLayout/SrContentArea/SrSidePanel/SrToolbar),配合 @arco-themes/vue-someray-light 主题",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -23,25 +23,28 @@
|
|
|
23
23
|
"**/*.css"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
|
-
"build": "vite build"
|
|
26
|
+
"build": "vite build",
|
|
27
|
+
"dev": "vite --mode dev"
|
|
27
28
|
},
|
|
28
29
|
"peerDependencies": {
|
|
29
|
-
"vue": "^3.4.0",
|
|
30
|
-
"vue-router": "^4.3.0",
|
|
31
30
|
"@arco-design/web-vue": "^2.58.0",
|
|
32
|
-
"@arco-themes/vue-someray-light": "^0.0.2"
|
|
31
|
+
"@arco-themes/vue-someray-light": "^0.0.2",
|
|
32
|
+
"vue": "^3.4.0",
|
|
33
|
+
"vue-router": "^4.3.0"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
36
|
+
"@arco-design/web-vue": "^2.58.0",
|
|
37
|
+
"@arco-themes/vue-someray-light": "^0.0.2",
|
|
35
38
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
36
39
|
"typescript": "^5.4.5",
|
|
37
40
|
"vite": "^5.2.11",
|
|
38
41
|
"vite-plugin-dts": "^3.9.1",
|
|
39
42
|
"vue": "^3.4.27",
|
|
40
|
-
"vue-router": "^4.
|
|
43
|
+
"vue-router": "^4.6.4"
|
|
41
44
|
},
|
|
42
45
|
"license": "MIT",
|
|
43
46
|
"publishConfig": {
|
|
44
47
|
"access": "public",
|
|
45
48
|
"registry": "https://registry.npmjs.org/"
|
|
46
49
|
}
|
|
47
|
-
}
|
|
50
|
+
}
|