adata-ui 0.1.59 → 0.1.60
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 +39 -39
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +39 -39
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Button/AButton.vue +2 -2
- package/src/components/Header/Header.vue +1 -1
- package/src/components/Header/InfoHeader.vue +2 -2
package/package.json
CHANGED
|
@@ -139,11 +139,11 @@ export default {
|
|
|
139
139
|
color: #333333;
|
|
140
140
|
|
|
141
141
|
&:hover {
|
|
142
|
-
background:
|
|
142
|
+
background: #FBC920;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
&:active {
|
|
146
|
-
background:
|
|
146
|
+
background: #FBC920;
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
|
|
@@ -131,11 +131,11 @@
|
|
|
131
131
|
</div>
|
|
132
132
|
<div v-if="isAuthenticated" class="info-header__item">
|
|
133
133
|
<div class="info-header__item-elem">
|
|
134
|
-
<div class="info-header__inner-item">
|
|
134
|
+
<div class="info-header__inner-item" v-show="requestCount">
|
|
135
135
|
<span class="info-header__title">Суточный лимит запросов</span>
|
|
136
136
|
<span class="info-header__result info-header__result_circled">{{ requestCount }}</span>
|
|
137
137
|
</div>
|
|
138
|
-
<div class="info-header__inner-item">
|
|
138
|
+
<div class="info-header__inner-item" v-show="daysRemaining">
|
|
139
139
|
<span class="info-header__title">остаток дней</span>
|
|
140
140
|
<span class="info-header__result info-header__result_circled">{{ daysRemaining }}</span>
|
|
141
141
|
</div>
|