adata-ui 2.0.4 → 2.0.5

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.
@@ -23,7 +23,7 @@ const blockStyles = [
23
23
  v-for="(service, index) in services"
24
24
  :key="index"
25
25
  :to="service.to"
26
- :class="['flex flex-col justify-center items-center gap-2 p-2', blockStyles[index]]"
26
+ :class="['flex flex-col items-center gap-2 p-2', blockStyles[index]]"
27
27
  >
28
28
  <div
29
29
  class="size-10 p-2 rounded-lg"
@@ -34,7 +34,7 @@ const blockStyles = [
34
34
  class="size-6 shrink-0"
35
35
  />
36
36
  </div>
37
- <p class="size-xs text-center">
37
+ <p class="text-xs text-center">
38
38
  {{ service.title }}
39
39
  </p>
40
40
  </nuxt-link-locale>
@@ -128,7 +128,7 @@ const contactLinks = {
128
128
  link: buildLocalizedUrl(locale.value, myLayer.landingUrl, PAGES.contacts),
129
129
  items: [
130
130
  {
131
- title: t('footer.contacts.address'),
131
+ title: 'footer.contacts.address',
132
132
  link: 'https://go.2gis.com/30j2f',
133
133
  startIcon: AIconLocation,
134
134
  endIcon: null,
@@ -146,7 +146,7 @@ const contactLinks = {
146
146
  endIcon: null,
147
147
  },
148
148
  {
149
- title: t('footer.contacts.goToChat'),
149
+ title: 'footer.contacts.goToChat',
150
150
  link: 'https://api.whatsapp.com/send?phone=77712289041',
151
151
  startIcon: null,
152
152
  endIcon: AIconExpandWindow,
@@ -238,7 +238,7 @@ const contactLinks = {
238
238
  class="size-4 shrink-0"
239
239
  />
240
240
 
241
- <p>{{ link.title }}</p>
241
+ <p>{{ t(link.title) }}</p>
242
242
 
243
243
  <component
244
244
  :is="link.endIcon"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adata-ui",
3
3
  "type": "module",
4
- "version": "2.0.4",
4
+ "version": "2.0.5",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground",