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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -139,11 +139,11 @@ export default {
139
139
  color: #333333;
140
140
 
141
141
  &:hover {
142
- background: linear-gradient(236.46deg, #FFE364 -2.39%, #FBC920 79.1%);
142
+ background: #FBC920;
143
143
  }
144
144
 
145
145
  &:active {
146
- background: linear-gradient(236.46deg, #FFE364 -2.39%, #FBC920 79.1%);
146
+ background: #FBC920;
147
147
  }
148
148
  }
149
149
 
@@ -27,7 +27,7 @@
27
27
  ></path>
28
28
  </svg>
29
29
  </a>
30
- <div class="menu" v-if="headerItems.length > 0">
30
+ <div class="menu" v-show="headerItems.length > 0">
31
31
  <a
32
32
  v-for="(item, index) in headerItems"
33
33
  :key="index"
@@ -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>