@tekkare/auriga 0.1.118 → 0.1.119

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/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.118"
7
+ "version": "0.1.119"
8
8
  }
@@ -136,9 +136,9 @@ export default defineComponent({
136
136
  );
137
137
  const getTitle = computed(() => {
138
138
  if (props.scopes.length > 0) {
139
- return props.lang === "en" ? "My scope" : "Mon scope";
139
+ return props.lang === "en" ? "My scope" : props.lang === "es" ? "Mi scope" : "Mon scope";
140
140
  } else
141
- return props.lang === "en" ? "New scope" : "Nouveau scope";
141
+ return props.lang === "en" ? "New scope" : props.lang === "en" ? "Nuevo scope" : "Nouveau scope";
142
142
  });
143
143
  function closeDropdown() {
144
144
  isDisplay.value = false;
@@ -46,7 +46,7 @@ declare const _default: import("vue").DefineComponent<{
46
46
  isDisplay: import("vue").Ref<boolean>;
47
47
  closeDropdown: () => void;
48
48
  changeDisplay: () => void;
49
- getTitle: import("vue").ComputedRef<"Mon scope" | "My scope" | "New scope" | "Nouveau scope">;
49
+ getTitle: import("vue").ComputedRef<"Mon scope" | "Mi scope" | "My scope" | "New scope" | "Nuevo scope" | "Nouveau scope">;
50
50
  selectScope: (scope: any) => void;
51
51
  selectedScope: import("vue").Ref<any>;
52
52
  newScope: () => void;
@@ -6,7 +6,7 @@
6
6
  ? "Scope applied:"
7
7
  : lang === "es"
8
8
  ? "Scope aplicado:"
9
- : "Scope appliqué"
9
+ : "Scope appliqué:"
10
10
  }}
11
11
  </p>
12
12
  <p class="arg_scope">
@@ -15,7 +15,7 @@
15
15
  ? selected
16
16
  : lang === "en"
17
17
  ? "Custom"
18
- : lang === "en"
18
+ : lang === "es"
19
19
  ? "Personalizado"
20
20
  : "Sur mesure"
21
21
  }}
@@ -28,6 +28,10 @@
28
28
  ? showMore
29
29
  ? "Réduire"
30
30
  : "En savoir plus"
31
+ : tipsLang === "es"
32
+ ? showMore
33
+ ? "Ocultar"
34
+ : "Saber más"
31
35
  : showMore
32
36
  ? "Hide"
33
37
  : "Learn more"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.1.118",
3
+ "version": "0.1.119",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",