adata-ui 2.1.25 → 2.1.26

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.
@@ -206,17 +206,17 @@ const sideLinks = <any>{
206
206
  {
207
207
  icon: IconArrowGraph,
208
208
  label: 'header.products.analytics.items.activity.title',
209
- link: urls.analyticsNew + PAGES.analytics.index
209
+ link: urls.analytics + PAGES.analytics.index
210
210
  },
211
211
  {
212
212
  icon: IconCompany,
213
213
  label: 'header.products.analytics.items.subjects.title',
214
- link: urls.analyticsNew + PAGES.analytics.business
214
+ link: urls.analytics + PAGES.analytics.business
215
215
  },
216
216
  {
217
217
  icon: IconMedal,
218
218
  label: 'header.products.analytics.items.rate.title',
219
- link: urls.analyticsNew + PAGES.analytics.rating
219
+ link: urls.analytics + PAGES.analytics.rating
220
220
  }
221
221
  ],
222
222
  fines: [
@@ -69,7 +69,7 @@ const mainLinks = computed(() => ({
69
69
  },
70
70
  {
71
71
  title: t('footer.analytics.title'),
72
- link: buildLocalizedUrl(locale.value, urls.analyticsNew, PAGES.analytics.main),
72
+ link: buildLocalizedUrl(locale.value, urls.analytics, PAGES.analytics.main),
73
73
  },
74
74
  {
75
75
  title: t('footer.zakupki.title'),
@@ -63,7 +63,7 @@ const toggleMenu = (index: number) => {
63
63
  if (pageUrl.hostname.includes('pk')) code = '?code=pk'
64
64
  if (pageUrl.hostname.includes('avto')) code = '?code=auto'
65
65
  if (pageUrl.hostname.includes('tnved')) code = '?code=ved'
66
- if (pageUrl.hostname.includes('analytics-new')) code = '?code=analytics'
66
+ if (pageUrl.hostname.includes('analytics')) code = '?code=analytics'
67
67
  if (pageUrl.hostname.includes('ac')) code = '?code=compliance'
68
68
  if (pageUrl.hostname.includes('zakupki')) code = '?code=procurement'
69
69
  if (pageUrl.hostname.includes('edo')) code = '?code=edo'
@@ -23,7 +23,7 @@ const filteredItems = useHeaderNavigationLinks()
23
23
 
24
24
  function isCurrentModule(currentModule: string) {
25
25
  if (currentModule === 'fines') return 'avto'
26
- if (currentModule === 'analytics') return 'analytics-new'
26
+ if (currentModule === 'analytics') return 'analytics'
27
27
  if (currentModule === 'compliance') return 'ac'
28
28
  if (currentModule === 'fea') return 'tnved'
29
29
  if (currentModule === 'tenders') return 'zakupki'
@@ -317,7 +317,7 @@ export const useHeaderNavigationLinks = () => {
317
317
  {
318
318
  key: 'analytics',
319
319
  name: t('header.products.analytics.label'),
320
- link: buildLocalizedUrl(locale, urls.analyticsNew, ''),
320
+ link: buildLocalizedUrl(locale, urls.analytics, ''),
321
321
  icon: AIconArrowGraphUp,
322
322
  items: [
323
323
  // {
@@ -330,20 +330,20 @@ export const useHeaderNavigationLinks = () => {
330
330
  title: t('header.products.analytics.items.activity.title'),
331
331
  subtitle: t('header.products.analytics.items.activity.subtitle'),
332
332
  icon: IconArrowGraph,
333
- to: buildLocalizedUrl(locale, urls.analyticsNew, PAGES.analytics.index)
333
+ to: buildLocalizedUrl(locale, urls.analytics, PAGES.analytics.index)
334
334
 
335
335
  },
336
336
  {
337
337
  title: t('header.products.analytics.items.rate.title'),
338
338
  subtitle: t('header.products.analytics.items.rate.subtitle'),
339
339
  icon: IconMedal,
340
- to: buildLocalizedUrl(locale, urls.analyticsNew, PAGES.analytics.rating)
340
+ to: buildLocalizedUrl(locale, urls.analytics, PAGES.analytics.rating)
341
341
  },
342
342
  {
343
343
  title: t('header.products.analytics.items.subjects.title'),
344
344
  subtitle: t('header.products.analytics.items.subjects.subtitle'),
345
345
  icon: IconCompany,
346
- to: buildLocalizedUrl(locale, urls.analyticsNew, PAGES.analytics.business)
346
+ to: buildLocalizedUrl(locale, urls.analytics, PAGES.analytics.business)
347
347
  }
348
348
  ]
349
349
  },
@@ -10,8 +10,9 @@ export function useUrls() {
10
10
  tender: `https://tender.${mode}.kz`,
11
11
  zakupki: `https://zakupki.${mode}.kz`,
12
12
  avto: `https://avto.${mode}.kz`,
13
+ analyticsOld: `https://analytics-old.${mode}.kz`,
13
14
  analytics: `https://analytics.${mode}.kz`,
14
- analyticsNew: `https://analytics-new.${mode}.kz`,
15
+ analyticsNew: `https://analytics.${mode}.kz`,
15
16
  tnved: `https://tnved.${mode}.kz`,
16
17
  edo: `https://edo.${mode}.kz`,
17
18
  compliance: `https://ac.${mode}.kz/compliance`,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.1.25",
4
+ "version": "2.1.26",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",