@mozaic-ds/vue 2.17.0 → 2.18.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 (33) hide show
  1. package/dist/mozaic-vue.css +1 -1
  2. package/dist/mozaic-vue.d.ts +133 -55
  3. package/dist/mozaic-vue.js +1533 -4663
  4. package/dist/mozaic-vue.js.map +1 -1
  5. package/dist/mozaic-vue.umd.cjs +6 -25
  6. package/dist/mozaic-vue.umd.cjs.map +1 -1
  7. package/package.json +14 -8
  8. package/src/components/Migration.mdx +651 -0
  9. package/src/components/accordionlistitem/MAccordionListItem.spec.ts +22 -3
  10. package/src/components/accordionlistitem/MAccordionListItem.vue +38 -28
  11. package/src/components/builtinmenu/MBuiltInMenu.spec.ts +30 -1
  12. package/src/components/builtinmenu/MBuiltInMenu.vue +26 -17
  13. package/src/components/builtinmenu/README.md +2 -0
  14. package/src/components/callout/MCallout.spec.ts +35 -0
  15. package/src/components/callout/MCallout.vue +22 -4
  16. package/src/components/callout/README.md +2 -0
  17. package/src/components/checklistmenu/MCheckListMenu.spec.ts +12 -1
  18. package/src/components/checklistmenu/MCheckListMenu.vue +6 -0
  19. package/src/components/checklistmenu/README.md +2 -0
  20. package/src/components/datatable/datatable.mdx +3 -2
  21. package/src/components/navigationindicator/MNavigationIndicator.spec.ts +75 -18
  22. package/src/components/navigationindicator/MNavigationIndicator.vue +10 -12
  23. package/src/components/optionListbox/MOptionListbox.vue +16 -1
  24. package/src/components/popover/MPopover.spec.ts +126 -0
  25. package/src/components/popover/MPopover.vue +36 -1
  26. package/src/components/segmentedcontrol/MSegmentedControl.spec.ts +92 -0
  27. package/src/components/segmentedcontrol/MSegmentedControl.vue +61 -2
  28. package/src/components/starrating/MStarRating.spec.ts +19 -22
  29. package/src/components/starrating/MStarRating.vue +3 -2
  30. package/src/components/tabs/MTabs.vue +90 -4
  31. package/src/components/tabs/Mtabs.spec.ts +162 -0
  32. package/src/main.ts +1 -0
  33. package/src/components/ComponentsMapping.mdx +0 -98
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/vue",
3
- "version": "2.17.0",
3
+ "version": "2.18.0",
4
4
  "type": "module",
5
5
  "description": "Mozaic-Vue is the Vue.js implementation of ADEO Design system",
6
6
  "author": "ADEO - ADEO Design system",
@@ -43,9 +43,11 @@
43
43
  "*.d.ts"
44
44
  ],
45
45
  "dependencies": {
46
- "@mozaic-ds/styles": "^2.15.0",
46
+ "@mozaic-ds/styles": "^2.18.0",
47
47
  "@mozaic-ds/web-fonts": "^1.65.0",
48
- "postcss-scss": "^4.0.9",
48
+ "postcss-scss": "^4.0.9"
49
+ },
50
+ "peerDependencies": {
49
51
  "vue": "^3.5.13"
50
52
  },
51
53
  "devDependencies": {
@@ -55,13 +57,12 @@
55
57
  "@mozaic-ds/css-dev-tools": "1.75.0",
56
58
  "@mozaic-ds/datatable-vue": "^1.0.0",
57
59
  "@mozaic-ds/icons-vue": "^2.5.0",
58
- "@release-it/conventional-changelog": "^10.0.1",
60
+ "@release-it/conventional-changelog": "^11.0.0",
59
61
  "@storybook/addon-a11y": "^10.0.4",
60
62
  "@storybook/addon-docs": "^10.0.4",
61
63
  "@storybook/addon-themes": "^10.0.4",
62
64
  "@storybook/vue3-vite": "^10.0.4",
63
65
  "@types/jsdom": "^28.0.0",
64
- "@types/lodash": "^4.17.23",
65
66
  "@vitejs/plugin-vue": "^6.0.1",
66
67
  "@vitest/coverage-v8": "^4.0.7",
67
68
  "@vitest/eslint-plugin": "^1.1.38",
@@ -82,18 +83,23 @@
82
83
  "mermaid": "^11.5.0",
83
84
  "npm-run-all": "^4.1.5",
84
85
  "prettier": "^3.5.3",
85
- "release-it": "^19.0.4",
86
- "sass": "1.94.2",
86
+ "release-it": "^20.0.0",
87
+ "sass": "^1.99.0",
87
88
  "storybook": "^10.0.4",
88
89
  "storybook-addon-tag-badges": "^3.0.2",
89
- "typescript": "^5.7.2",
90
+ "typescript": "^6.0.3",
90
91
  "vite": "^8.0.0",
91
92
  "vite-plugin-dts": "^4.5.3",
92
93
  "vitest": "^4.0.7",
94
+ "vue": "^3.5.13",
93
95
  "vue-component-meta": "^3.0.8",
94
96
  "vue-eslint-parser": "^10.1.1",
95
97
  "vue-tsc": "^3.1.8"
96
98
  },
99
+ "sideEffects": false,
100
+ "publishConfig": {
101
+ "access": "public"
102
+ },
97
103
  "bugs": {
98
104
  "url": "https://github.com/adeo/mozaic-vue/issues"
99
105
  },