@mozaic-ds/vue 0.46.3 → 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 +162 -124
- package/dist/mozaic-vue.adeo.umd.js +3 -3
- package/dist/mozaic-vue.adeo.umd.js.map +1 -1
- package/dist/mozaic-vue.common.js +3 -3
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.umd.js +3 -3
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +2 -2
- package/src/components/accordion/MAccordion.vue +1 -15
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",
|
|
@@ -142,22 +142,14 @@ export default {
|
|
|
142
142
|
.mc-accordion {
|
|
143
143
|
position: relative;
|
|
144
144
|
|
|
145
|
-
&__label {
|
|
146
|
-
pointer-events: auto;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
&__input {
|
|
150
|
-
z-index: 2;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
145
|
&__header {
|
|
154
146
|
display: flex;
|
|
155
147
|
align-items: center;
|
|
156
148
|
|
|
157
149
|
&__label {
|
|
158
150
|
align-items: center;
|
|
159
|
-
cursor: pointer;
|
|
160
151
|
display: flex;
|
|
152
|
+
cursor: pointer;
|
|
161
153
|
gap: $mu050;
|
|
162
154
|
white-space: nowrap;
|
|
163
155
|
|
|
@@ -168,12 +160,6 @@ export default {
|
|
|
168
160
|
&--with-after-slot {
|
|
169
161
|
padding-right: $mu100;
|
|
170
162
|
}
|
|
171
|
-
|
|
172
|
-
&::after {
|
|
173
|
-
content: '';
|
|
174
|
-
position: absolute;
|
|
175
|
-
inset: 0;
|
|
176
|
-
}
|
|
177
163
|
}
|
|
178
164
|
}
|
|
179
165
|
}
|