adata-ui 0.1.88 → 0.1.91
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/adata-ui.common.js +22 -18
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +22 -18
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +1 -1
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Button/AButton.vue +5 -4
- package/src/components/Footer/Footer.vue +1 -1
- package/src/components/Header/Header.vue +1 -0
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
]"
|
|
8
8
|
v-bind="$attrs"
|
|
9
9
|
v-on="$listeners"
|
|
10
|
-
:is="url ? 'a' : 'button'"
|
|
10
|
+
:is="url ? 'a' : nuxtUrl ? 'nuxt-link' : 'button'"
|
|
11
11
|
:href="url"
|
|
12
12
|
:event="event ? 'click' : ''"
|
|
13
13
|
:disabled="disabled"
|
|
@@ -56,6 +56,9 @@ export default {
|
|
|
56
56
|
url: {
|
|
57
57
|
type: String,
|
|
58
58
|
},
|
|
59
|
+
nuxtUrl: {
|
|
60
|
+
type: String,
|
|
61
|
+
},
|
|
59
62
|
event: {
|
|
60
63
|
type: Boolean,
|
|
61
64
|
default: true
|
|
@@ -94,17 +97,15 @@ export default {
|
|
|
94
97
|
&_extra_sm {
|
|
95
98
|
height: 24px;
|
|
96
99
|
padding: 2px 16px;
|
|
97
|
-
|
|
100
|
+
font-size: 12px;
|
|
98
101
|
}
|
|
99
102
|
&_sm {
|
|
100
103
|
height: 32px;
|
|
101
104
|
padding: 6px 20px;
|
|
102
|
-
line-height: 20px;
|
|
103
105
|
}
|
|
104
106
|
&_md {
|
|
105
107
|
height: 40px;
|
|
106
108
|
padding: 8px 30px;
|
|
107
|
-
line-height: 24px;
|
|
108
109
|
}
|
|
109
110
|
&_fit {
|
|
110
111
|
padding: 8px 0;
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</svg>
|
|
32
32
|
</a>
|
|
33
33
|
<a target="_blank" rel="nofollow"
|
|
34
|
-
href="https://www.youtube.com/channel/UCPkbtgwgTZbMJXjmTi3R8Uw/
|
|
34
|
+
href="https://www.youtube.com/channel/UCPkbtgwgTZbMJXjmTi3R8Uw/featured">
|
|
35
35
|
<svg fill="none" xmlns="http://www.w3.org/2000/svg"
|
|
36
36
|
viewBox="0 0 16 16" class="social__icon">
|
|
37
37
|
<path fill-rule="evenodd" clip-rule="evenodd"
|