@asd20/ui 3.2.356 → 3.2.359
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/package.json
CHANGED
|
@@ -33,7 +33,11 @@
|
|
|
33
33
|
<slot name="nav" />
|
|
34
34
|
</asd20-navbar>
|
|
35
35
|
|
|
36
|
-
<asd20-action-menu
|
|
36
|
+
<!-- <asd20-action-menu
|
|
37
|
+
class="fullscreen-actions"
|
|
38
|
+
v-show="mq === 'lg' || mq === 'xl'"
|
|
39
|
+
:items="actionItems"
|
|
40
|
+
/> -->
|
|
37
41
|
|
|
38
42
|
<transition name="slide">
|
|
39
43
|
<asd20-site-menu
|
|
@@ -46,10 +50,14 @@
|
|
|
46
50
|
</transition>
|
|
47
51
|
<transition name="slide">
|
|
48
52
|
<asd20-action-menu
|
|
49
|
-
v-
|
|
53
|
+
v-show="
|
|
54
|
+
(menuOpen && (mq === 'sm' || mq === 'md')) ||
|
|
55
|
+
mq === 'lg' ||
|
|
56
|
+
mq === 'xl'
|
|
57
|
+
"
|
|
50
58
|
:items="actionItems"
|
|
51
|
-
:
|
|
52
|
-
@
|
|
59
|
+
:active="menuOpen"
|
|
60
|
+
@update:active="$emit('update:menuOpen', $event)"
|
|
53
61
|
/>
|
|
54
62
|
</transition>
|
|
55
63
|
<transition name="slide">
|
|
@@ -107,7 +115,7 @@ export default {
|
|
|
107
115
|
computed: {
|
|
108
116
|
// Fallback for vue mediaQuery, in case its not installed globally
|
|
109
117
|
mq() {
|
|
110
|
-
return this.$mq || '
|
|
118
|
+
return this.$mq || 'lg'
|
|
111
119
|
},
|
|
112
120
|
},
|
|
113
121
|
mounted() {
|