@mozaic-ds/icons-vue 2.0.0 → 2.1.0

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.d.ts +28566 -0
  3. package/package.json +4 -2
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@mozaic-ds/icons-vue",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "ADEO Design system icons for Vue usage",
5
5
  "type": "module",
6
6
  "main": "dist/mozaic-icons-vue.umd.cjs",
7
7
  "module": "dist/mozaic-icons-vue.mjs",
8
+ "types": "dist/index.d.ts",
8
9
  "exports": {
9
10
  ".": {
10
11
  "import": "./dist/mozaic-icons-vue.mjs",
@@ -18,7 +19,7 @@
18
19
  "scripts": {
19
20
  "clean": "rm -rf dist/",
20
21
  "icons:build": "node icons-builder/index.js",
21
- "build": "vue-tsc && vite build",
22
+ "build": "vite build",
22
23
  "release": "release-it",
23
24
  "release:beta": "release-it --preRelease=beta",
24
25
  "npm:publish": "npm publish --access public",
@@ -36,6 +37,7 @@
36
37
  "svg-parser": "^2.0.4",
37
38
  "typescript": "^5.9.3",
38
39
  "vite": "^7.3.0",
40
+ "vite-plugin-dts": "^4.5.4",
39
41
  "vue-loader": "^17.4.2",
40
42
  "vue-tsc": "^3.1.8"
41
43
  },