@wlnt-ui/icons-vue 1.0.21 → 1.0.22
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 +856 -833
- package/dist/global.iife.js +856 -833
- 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 +855 -833
- package/dist/index.iife.js +855 -833
- 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/electricity-spot.vue.d.ts +3 -0
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +12 -12
@@ -64,6 +64,7 @@ export { default as Drag } from './drag.vue';
|
|
64
64
|
export { default as Edit } from './edit.vue';
|
65
65
|
export { default as ElectricChargeFilled } from './electric-charge-filled.vue';
|
66
66
|
export { default as ElectricCharge } from './electric-charge.vue';
|
67
|
+
export { default as ElectricitySpot } from './electricity-spot.vue';
|
67
68
|
export { default as Electricity } from './electricity.vue';
|
68
69
|
export { default as Energy } from './energy.vue';
|
69
70
|
export { default as EnterpriseFilled } from './enterprise-filled.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.22",
|
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
|
+
}
|