@wlnt-ui/icons-vue 1.0.22 → 1.0.24
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 +1278 -1168
- package/dist/global.iife.js +1278 -1168
- package/dist/global.iife.min.js +2 -2
- package/dist/global.js +0 -0
- package/dist/global.min.cjs +2 -2
- package/dist/global.min.js +2 -2
- package/dist/index.cjs +1301 -1170
- package/dist/index.iife.js +1301 -1170
- 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/air-conditioning.vue.d.ts +3 -0
- package/dist/types/components/compressor.vue.d.ts +3 -0
- package/dist/types/components/index.d.ts +4 -0
- package/dist/types/components/lighting.vue.d.ts +3 -0
- package/dist/types/components/water-pump.vue.d.ts +3 -0
- package/package.json +12 -12
@@ -1,3 +1,4 @@
|
|
1
|
+
export { default as AirConditioning } from './air-conditioning.vue';
|
1
2
|
export { default as AlertFilled } from './alert-filled.vue';
|
2
3
|
export { default as Alert } from './alert.vue';
|
3
4
|
export { default as AlignBottom } from './align-bottom.vue';
|
@@ -47,6 +48,7 @@ export { default as Coal } from './coal.vue';
|
|
47
48
|
export { default as CollectFilled } from './collect-filled.vue';
|
48
49
|
export { default as Collect } from './collect.vue';
|
49
50
|
export { default as Comprehensive } from './comprehensive.vue';
|
51
|
+
export { default as Compressor } from './compressor.vue';
|
50
52
|
export { default as ControlBold } from './control-bold.vue';
|
51
53
|
export { default as Control } from './control.vue';
|
52
54
|
export { default as Copy } from './copy.vue';
|
@@ -88,6 +90,7 @@ export { default as HeatPower } from './heat-power.vue';
|
|
88
90
|
export { default as HistoryAlert } from './history-alert.vue';
|
89
91
|
export { default as History } from './history.vue';
|
90
92
|
export { default as Iot } from './iot.vue';
|
93
|
+
export { default as Lighting } from './lighting.vue';
|
91
94
|
export { default as List } from './list.vue';
|
92
95
|
export { default as Location } from './location.vue';
|
93
96
|
export { default as Log } from './log.vue';
|
@@ -177,6 +180,7 @@ export { default as UserSetting } from './user-setting.vue';
|
|
177
180
|
export { default as View1 } from './view1.vue';
|
178
181
|
export { default as View4 } from './view4.vue';
|
179
182
|
export { default as Voice } from './voice.vue';
|
183
|
+
export { default as WaterPump } from './water-pump.vue';
|
180
184
|
export { default as Water } from './water.vue';
|
181
185
|
export { default as WordNormal } from './word-normal.vue';
|
182
186
|
export { default as WordSurpass } from './word-surpass.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.24",
|
4
4
|
"description": "Vue components of Wlnt Ui Icons collection.",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
@@ -38,6 +38,13 @@
|
|
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
|
+
},
|
41
48
|
"author": {
|
42
49
|
"name": "to0simple",
|
43
50
|
"email": "zhilongqiu2020@gmail.com",
|
@@ -55,6 +62,8 @@
|
|
55
62
|
"@types/gulp": "^4.0.13",
|
56
63
|
"@types/node": "^18.16.17",
|
57
64
|
"@types/prettier": "^3.0.0",
|
65
|
+
"@wlnt-ui/icons-svg": "workspace:*",
|
66
|
+
"@wlnt/build-utils": "workspace:*",
|
58
67
|
"camelcase": "^8.0.0",
|
59
68
|
"chalk": "^5.3.0",
|
60
69
|
"consola": "^3.2.3",
|
@@ -70,15 +79,6 @@
|
|
70
79
|
"typescript": "^5.2.2",
|
71
80
|
"unplugin-vue": "^4.3.5",
|
72
81
|
"vue": "^3.3.4",
|
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"
|
82
|
+
"vue-tsc": "^1.6.5"
|
83
83
|
}
|
84
|
-
}
|
84
|
+
}
|