vue-color-ui 0.0.7 → 0.0.9
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/package.json +7 -4
- /package/{type → types}/pkg/Base/Avatar.vue.d.ts +0 -0
- /package/{type → types}/pkg/Base/AvatarGroup.vue.d.ts +0 -0
- /package/{type → types}/pkg/Base/Button.vue.d.ts +0 -0
- /package/{type → types}/pkg/Base/Icon.vue.d.ts +0 -0
- /package/{type → types}/pkg/Base/Tag.vue.d.ts +0 -0
- /package/{type → types}/pkg/Base/Title.vue.d.ts +0 -0
- /package/{type → types}/pkg/Base/index.d.ts +0 -0
- /package/{type → types}/pkg/ChatList/ChatListItem.vue.d.ts +0 -0
- /package/{type → types}/pkg/ChatList/index.d.ts +0 -0
- /package/{type → types}/pkg/ChatList/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/ChatRoom/index.d.ts +0 -0
- /package/{type → types}/pkg/ChatRoom/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/GridGroup/index.d.ts +0 -0
- /package/{type → types}/pkg/GridGroup/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/InputBar/index.d.ts +0 -0
- /package/{type → types}/pkg/InputBar/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/Menu/index.d.ts +0 -0
- /package/{type → types}/pkg/Menu/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/NavBar/index.d.ts +0 -0
- /package/{type → types}/pkg/NavBar/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/NavCard/index.d.ts +0 -0
- /package/{type → types}/pkg/NavCard/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/NewCard/index.d.ts +0 -0
- /package/{type → types}/pkg/NewCard/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/SearchBar/index.d.ts +0 -0
- /package/{type → types}/pkg/SearchBar/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/ShareCard/index.d.ts +0 -0
- /package/{type → types}/pkg/ShareCard/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/Steps/index.d.ts +0 -0
- /package/{type → types}/pkg/Steps/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/Tab/TTab.vue.d.ts +0 -0
- /package/{type → types}/pkg/Tab/index.d.ts +0 -0
- /package/{type → types}/pkg/Tab/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/TimeLine/index.d.ts +0 -0
- /package/{type → types}/pkg/TimeLine/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/TopBar/index.d.ts +0 -0
- /package/{type → types}/pkg/TopBar/index.vue.d.ts +0 -0
- /package/{type → types}/pkg/index.d.ts +0 -0
- /package/{type → types}/pkg/modal/index.d.ts +0 -0
- /package/{type → types}/pkg/modal/index.vue.d.ts +0 -0
- /package/{type → types}/src/App.vue.d.ts +0 -0
- /package/{type → types}/src/components/HelloWorld.vue.d.ts +0 -0
- /package/{type → types}/src/main.d.ts +0 -0
- /package/{type → types}/utils/size.d.ts +0 -0
package/package.json
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"name": "vue-color-ui",
|
|
3
3
|
"description": "ColorUI 临时代替的版本",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.9",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"dev": "vite",
|
|
10
|
-
"build": "vue-tsc --declaration --emitDeclarationOnly --outDir
|
|
10
|
+
"build": "vue-tsc --declaration --emitDeclarationOnly --outDir types && vite build",
|
|
11
11
|
"preview": "vite preview",
|
|
12
12
|
"rele": "npm run build && npm version patch && npm publish",
|
|
13
13
|
"push": "git add . && read -p '请输入本次更新: \n' msg && git commit -m \"$msg\" && git push -u origin master"
|
|
@@ -25,12 +25,13 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"lib/*",
|
|
27
27
|
"type/*",
|
|
28
|
+
"types/*",
|
|
28
29
|
"Readme.md",
|
|
29
30
|
"package.json"
|
|
30
31
|
],
|
|
31
32
|
"main": "./lib/temp-color-ui.umd.cjs",
|
|
32
33
|
"module": "./lib/temp-color-ui.js",
|
|
33
|
-
"types": "./
|
|
34
|
+
"types": "./types/pkg/index.d.ts",
|
|
34
35
|
"exports": {
|
|
35
36
|
".": {
|
|
36
37
|
"import": "./lib/temp-color-ui.js",
|
|
@@ -39,6 +40,8 @@
|
|
|
39
40
|
"./lib/style.css": "./lib/style.css",
|
|
40
41
|
"./lib/css/main.css": "./lib/css/main.css",
|
|
41
42
|
"./lib/css/animation.css": "./lib/css/animation.css",
|
|
42
|
-
"./lib/css/icon.css": "./lib/css/icon.css"
|
|
43
|
+
"./lib/css/icon.css": "./lib/css/icon.css",
|
|
44
|
+
"./types/*": "./types/*",
|
|
45
|
+
"./type/*": "./type/*"
|
|
43
46
|
}
|
|
44
47
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|