@bagelink/vue 1.4.20 → 1.4.22

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "1.4.20",
4
+ "version": "1.4.22",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -30,7 +30,7 @@ const isFaBrand = $computed(() => FONT_AWESOME_BRANDS_ICONS.includes(iconRender)
30
30
  <template>
31
31
  <span
32
32
  v-if="iconRenderType === 'material'"
33
- class="bgl_icon-font"
33
+ class="bgl_icon-font notranslate"
34
34
  :class="{ 'round flex aspect-ratio-1 justify-content-center': round }"
35
35
  :style="{ 'fontSize': `${size}rem`,
36
36
  color,
@@ -38,12 +38,13 @@ const isFaBrand = $computed(() => FONT_AWESOME_BRANDS_ICONS.includes(iconRender)
38
38
  'width': round ? `calc(${size}rem * 2)` : 'auto',
39
39
  'height': round ? `calc(${size}rem * 2)` : 'auto',
40
40
  }"
41
+ translate="no"
41
42
  >
42
43
  {{ iconRender }}
43
44
  </span>
44
45
  <span
45
46
  v-else-if="iconRenderType === 'font-awesome'"
46
- class="fa bgl_icon-font"
47
+ class="fa bgl_icon-font notranslate"
47
48
  :class="[
48
49
  `fa-${iconRender}`,
49
50
  {
@@ -53,6 +54,7 @@ const isFaBrand = $computed(() => FONT_AWESOME_BRANDS_ICONS.includes(iconRender)
53
54
  },
54
55
  ]"
55
56
  :style="{ 'fontSize': `${size}rem`, color, 'font-variation-settings': `'wght' ${weight || 400}` }"
57
+ translate="no"
56
58
  />
57
59
  </template>
58
60