adata-ui 2.0.75 → 2.0.76

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.
@@ -30,6 +30,7 @@ import MapPinRect from '#adata-ui/icons/map/map-pin-rect.vue'
30
30
  import ChartBar from '#adata-ui/icons/chart-bar.vue'
31
31
  import Bank from '#adata-ui/icons/bank.vue'
32
32
  import { useUrls } from '#adata-ui/composables/useUrls'
33
+ import MapPaper from '#adata-ui/icons/map-paper.vue'
33
34
  type Emits = {
34
35
  (e: 'pushMain'): void
35
36
  }
@@ -244,6 +245,11 @@ const sideLinks = <any>{
244
245
  label: 'header.products.fea.items.importerMap.t',
245
246
  icon: MapPinRect,
246
247
  link: `${urls.tnved}${PAGES.fea.importerMap}`
248
+ },
249
+ {
250
+ label: 'header.products.fea.items.containers.t',
251
+ icon: MapPaper,
252
+ link: `${urls.tnved}${PAGES.fea.containers}`
247
253
  }
248
254
  ],
249
255
  compliance: [
@@ -268,15 +274,15 @@ watch(tab, (e) => {
268
274
  <a-modal v-model="isOpen" :title="t('modals.mobile_navigation.type_main')">
269
275
  <div class="flex flex-col gap-5">
270
276
  <div class="h-[1px] w-full bg-deepblue-900/5"/>
271
- <div>
272
- <a-pill-tabs v-model="tab" :options="tabOptions" view="gray"/>
273
- </div>
277
+ <div>
278
+ <a-pill-tabs v-model="tab" :options="tabOptions" view="gray"/>
279
+ </div>
274
280
  <div class="h-[40vh] sm:h-[300px] overflow-auto no-scrollbar">
275
281
  <nuxt-link
276
- v-for="item in currentLinks"
277
- :key="item.label"
278
- :to="item.link"
279
- class="flex items-center gap-4 px-4 py-3 bg-gray-50 dark:bg-gray-800 mb-2 rounded"
282
+ v-for="item in currentLinks"
283
+ :key="item.label"
284
+ :to="item.link"
285
+ class="flex items-center gap-4 px-4 py-3 bg-gray-50 dark:bg-gray-800 mb-2 rounded"
280
286
  >
281
287
  <div class="bg-gradient-blue p-1 rounded-lg">
282
288
  <component
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.75",
4
+ "version": "2.0.76",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",