@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.
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +133 -55
- package/dist/mozaic-vue.js +1533 -4663
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +6 -25
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +14 -8
- package/src/components/Migration.mdx +651 -0
- package/src/components/accordionlistitem/MAccordionListItem.spec.ts +22 -3
- package/src/components/accordionlistitem/MAccordionListItem.vue +38 -28
- package/src/components/builtinmenu/MBuiltInMenu.spec.ts +30 -1
- package/src/components/builtinmenu/MBuiltInMenu.vue +26 -17
- package/src/components/builtinmenu/README.md +2 -0
- package/src/components/callout/MCallout.spec.ts +35 -0
- package/src/components/callout/MCallout.vue +22 -4
- package/src/components/callout/README.md +2 -0
- package/src/components/checklistmenu/MCheckListMenu.spec.ts +12 -1
- package/src/components/checklistmenu/MCheckListMenu.vue +6 -0
- package/src/components/checklistmenu/README.md +2 -0
- package/src/components/datatable/datatable.mdx +3 -2
- package/src/components/navigationindicator/MNavigationIndicator.spec.ts +75 -18
- package/src/components/navigationindicator/MNavigationIndicator.vue +10 -12
- package/src/components/optionListbox/MOptionListbox.vue +16 -1
- package/src/components/popover/MPopover.spec.ts +126 -0
- package/src/components/popover/MPopover.vue +36 -1
- package/src/components/segmentedcontrol/MSegmentedControl.spec.ts +92 -0
- package/src/components/segmentedcontrol/MSegmentedControl.vue +61 -2
- package/src/components/starrating/MStarRating.spec.ts +19 -22
- package/src/components/starrating/MStarRating.vue +3 -2
- package/src/components/tabs/MTabs.vue +90 -4
- package/src/components/tabs/Mtabs.spec.ts +162 -0
- package/src/main.ts +1 -0
- 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.
|
|
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.
|
|
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": "^
|
|
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": "^
|
|
86
|
-
"sass": "1.
|
|
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": "^
|
|
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
|
},
|