@mozaic-ds/vue 0.46.3-beta.0 → 0.46.4
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.adeo.css +164 -123
- package/dist/mozaic-vue.adeo.umd.js +11 -11
- package/dist/mozaic-vue.adeo.umd.js.map +1 -1
- package/dist/mozaic-vue.common.js +11 -11
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +11 -11
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +8 -8
- package/src/components/accordion/MAccordion.vue +2 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mozaic-ds/vue",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.4",
|
|
4
4
|
"description": "Vue.js implementation of Mozaic Design System",
|
|
5
5
|
"author": "Adeo - Mozaic Design System",
|
|
6
6
|
"scripts": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@linusborg/vue-simple-portal": "^0.1.5",
|
|
28
28
|
"@mozaic-ds/css-dev-tools": "1.60.0",
|
|
29
29
|
"@mozaic-ds/icons": "1.58.1",
|
|
30
|
-
"@mozaic-ds/styles": "1.
|
|
30
|
+
"@mozaic-ds/styles": "1.64.0",
|
|
31
31
|
"@mozaic-ds/web-fonts": "1.22.0",
|
|
32
32
|
"core-js": "^3.31.0",
|
|
33
33
|
"libphonenumber-js": "^1.10.37",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"vue-country-flag": "2.3.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@babel/core": "^7.22.
|
|
39
|
-
"@babel/eslint-parser": "^7.22.
|
|
38
|
+
"@babel/core": "^7.22.6",
|
|
39
|
+
"@babel/eslint-parser": "^7.22.6",
|
|
40
40
|
"@rushstack/eslint-patch": "^1.3.2",
|
|
41
41
|
"@types/jest": "^29.5.2",
|
|
42
42
|
"@vue/cli-plugin-babel": "~5.0.8",
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"@vue/test-utils": "^1.3.6",
|
|
47
47
|
"@vue/vue2-jest": "^29.2.4",
|
|
48
48
|
"babel-eslint": "^10.1.0",
|
|
49
|
-
"babel-jest": "^29.
|
|
50
|
-
"eslint": "^8.
|
|
49
|
+
"babel-jest": "^29.6.0",
|
|
50
|
+
"eslint": "^8.44.0",
|
|
51
51
|
"eslint-config-prettier": "^8.8.0",
|
|
52
52
|
"eslint-plugin-vue": "^9.15.1",
|
|
53
53
|
"identity-obj-proxy": "^3.0.0",
|
|
54
|
-
"jest": "^29.
|
|
54
|
+
"jest": "^29.6.0",
|
|
55
55
|
"jest-environment-jsdom": "^27.5.1",
|
|
56
56
|
"prettier": "^2.8.8",
|
|
57
57
|
"sass": "^1.63.6",
|
|
58
58
|
"sass-loader": "^13.3.2",
|
|
59
|
-
"ts-jest": "^29.1.
|
|
59
|
+
"ts-jest": "^29.1.1",
|
|
60
60
|
"vue-template-compiler": "^2.6.14"
|
|
61
61
|
},
|
|
62
62
|
"bugs": {
|
|
@@ -140,13 +140,7 @@ export default {
|
|
|
140
140
|
@import 'components/c.accordion';
|
|
141
141
|
|
|
142
142
|
.mc-accordion {
|
|
143
|
-
|
|
144
|
-
pointer-events: auto;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
&__input {
|
|
148
|
-
z-index: 2;
|
|
149
|
-
}
|
|
143
|
+
position: relative;
|
|
150
144
|
|
|
151
145
|
&__header {
|
|
152
146
|
display: flex;
|
|
@@ -154,8 +148,8 @@ export default {
|
|
|
154
148
|
|
|
155
149
|
&__label {
|
|
156
150
|
align-items: center;
|
|
157
|
-
cursor: pointer;
|
|
158
151
|
display: flex;
|
|
152
|
+
cursor: pointer;
|
|
159
153
|
gap: $mu050;
|
|
160
154
|
white-space: nowrap;
|
|
161
155
|
|
|
@@ -166,12 +160,6 @@ export default {
|
|
|
166
160
|
&--with-after-slot {
|
|
167
161
|
padding-right: $mu100;
|
|
168
162
|
}
|
|
169
|
-
|
|
170
|
-
&::after {
|
|
171
|
-
content: '';
|
|
172
|
-
position: absolute;
|
|
173
|
-
inset: 0;
|
|
174
|
-
}
|
|
175
163
|
}
|
|
176
164
|
}
|
|
177
165
|
}
|