itube-specs 0.0.389 → 0.0.391

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.
@@ -1,7 +1,7 @@
1
1
  <template>
2
- <div class="s-sort">
2
+ <div class="s-navigation-links">
3
3
  <SLink
4
- class="s-sort__button"
4
+ class="s-navigation-links__button"
5
5
  v-for="(item, index) in items"
6
6
  :key="`sort-item-${index}`"
7
7
  :to="item.query ? linkTo(item, index) : item.value"
@@ -19,7 +19,7 @@ export function useMeta(t, page: string, brandName: string, sortOptions?: IChips
19
19
  const thirdTextValue = unref(thirdText);
20
20
  const fourTextValue = unref(fourthText);
21
21
  const pageNumber = computed(() => route.query?.['page'] ? Number(route.query['page']) : 1);
22
- const pageText = unref(pageNumber) === 1 ? null : ` #${unref(pageNumber)}`;
22
+ const pageText = unref(pageNumber) === 1 ? null : ` ${t('page')} ${unref(pageNumber)}`;
23
23
 
24
24
  return t(
25
25
  `meta.${page}.${sortOptions && sortOptions.length > 0 ? `${sortType.value}.` : ''}${key}`,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.389",
4
+ "version": "0.0.391",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {