@wlnt-ui/icons-vue 1.0.30 → 1.0.32
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/dist/global.cjs +1630 -2236
- package/dist/global.iife.js +1630 -2236
- package/dist/global.iife.min.js +2 -2
- package/dist/global.js +1628 -2234
- package/dist/global.min.cjs +2 -2
- package/dist/global.min.js +2 -2
- package/dist/index.cjs +1665 -2233
- package/dist/index.iife.js +1665 -2233
- package/dist/index.iife.min.js +2 -2
- package/dist/index.js +0 -0
- package/dist/index.min.cjs +2 -2
- package/dist/index.min.js +2 -2
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/components/industry.vue.d.ts +3 -0
- package/dist/types/components/sale-customer.vue.d.ts +3 -0
- package/package.json +12 -12
@@ -109,6 +109,7 @@ export { default as HeatPower } from './heat-power.vue';
|
|
109
109
|
export { default as Heating } from './heating.vue';
|
110
110
|
export { default as HistoryAlert } from './history-alert.vue';
|
111
111
|
export { default as History } from './history.vue';
|
112
|
+
export { default as Industry } from './industry.vue';
|
112
113
|
export { default as Iot } from './iot.vue';
|
113
114
|
export { default as Lighting } from './lighting.vue';
|
114
115
|
export { default as List } from './list.vue';
|
@@ -168,6 +169,7 @@ export { default as ReturnFilled } from './return-filled.vue';
|
|
168
169
|
export { default as Rise } from './rise.vue';
|
169
170
|
export { default as RollBack } from './roll-back.vue';
|
170
171
|
export { default as Router } from './router.vue';
|
172
|
+
export { default as SaleCustomer } from './sale-customer.vue';
|
171
173
|
export { default as Save } from './save.vue';
|
172
174
|
export { default as Seal } from './seal.vue';
|
173
175
|
export { default as SearchBold } from './search-bold.vue';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wlnt-ui/icons-vue",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.32",
|
4
4
|
"description": "Vue components of Wlnt Ui Icons collection.",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
@@ -38,13 +38,6 @@
|
|
38
38
|
"unpkg": "dist/index.iife.min.js",
|
39
39
|
"jsdelivr": "dist/index.iife.min.js",
|
40
40
|
"sideEffects": false,
|
41
|
-
"scripts": {
|
42
|
-
"build": "gulp --require @esbuild-kit/cjs-loader -f gulpfile.ts",
|
43
|
-
"build:release": "pnpm run build build:release",
|
44
|
-
"build:generate": "tsx build/generate.ts",
|
45
|
-
"build:build": "tsx build/build.ts",
|
46
|
-
"build:types": "vue-tsc --declaration --emitDeclarationOnly"
|
47
|
-
},
|
48
41
|
"author": {
|
49
42
|
"name": "to0simple",
|
50
43
|
"email": "zhilongqiu2020@gmail.com",
|
@@ -62,8 +55,6 @@
|
|
62
55
|
"@types/gulp": "^4.0.13",
|
63
56
|
"@types/node": "^18.16.17",
|
64
57
|
"@types/prettier": "^3.0.0",
|
65
|
-
"@wlnt-ui/icons-svg": "workspace:*",
|
66
|
-
"@wlnt/build-utils": "workspace:*",
|
67
58
|
"camelcase": "^8.0.0",
|
68
59
|
"chalk": "^5.3.0",
|
69
60
|
"consola": "^3.2.3",
|
@@ -79,6 +70,15 @@
|
|
79
70
|
"typescript": "^5.2.2",
|
80
71
|
"unplugin-vue": "^4.3.5",
|
81
72
|
"vue": "^3.3.4",
|
82
|
-
"vue-tsc": "^1.6.5"
|
73
|
+
"vue-tsc": "^1.6.5",
|
74
|
+
"@wlnt-ui/icons-svg": "0.0.1",
|
75
|
+
"@wlnt/build-utils": "0.0.1"
|
76
|
+
},
|
77
|
+
"scripts": {
|
78
|
+
"build": "gulp --require @esbuild-kit/cjs-loader -f gulpfile.ts",
|
79
|
+
"build:release": "pnpm run build build:release",
|
80
|
+
"build:generate": "tsx build/generate.ts",
|
81
|
+
"build:build": "tsx build/build.ts",
|
82
|
+
"build:types": "vue-tsc --declaration --emitDeclarationOnly"
|
83
83
|
}
|
84
|
-
}
|
84
|
+
}
|