@saooti/octopus-sdk 39.0.37 → 39.0.38

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "39.0.37",
3
+ "version": "39.0.38",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -13,6 +13,7 @@
13
13
  class="c-hand w-100"
14
14
  :class="transparent ? 'transparent' : ''"
15
15
  :style="getFontFamily"
16
+ :aria-label="label"
16
17
  @change="$emit('update:textInit', $event.target.value)"
17
18
  >
18
19
  <option
@@ -41,8 +41,8 @@
41
41
  </svg>
42
42
  </button>
43
43
  <button
44
- :title="$t('Link')"
45
- data-selenium="Link"
44
+ :title="$t('Delete link')"
45
+ data-selenium="unlink"
46
46
  :class="{ 'is-active': editor.isActive('link') }"
47
47
  @click="setLink"
48
48
  >
@@ -58,6 +58,8 @@
58
58
  </svg>
59
59
  </button>
60
60
  <button
61
+ :title="$t('Unlink')"
62
+ data-selenium="Heading3"
61
63
  :disabled="!editor.isActive('link')"
62
64
  @click="editor.chain().focus().unsetLink().run()"
63
65
  >
@@ -6,7 +6,7 @@
6
6
  width="250"
7
7
  height="auto"
8
8
  class="logo-octopus"
9
- src="/img/logo_octopus_black.png"
9
+ src="/img/logo_octopus_black.webp"
10
10
  :alt="$t('Logo of main page')"
11
11
  />
12
12
  <h2>{{ $t("You do not have the right to access this page") }}</h2>
package/src/locale/de.ts CHANGED
@@ -331,6 +331,7 @@ export default {
331
331
  "Italic":"Kursiv",
332
332
  "Underline":"Unterstreichen",
333
333
  "Link":"Verknüpfung",
334
+ "Delete link":"Link löschen",
334
335
  "Heading3":"Überschrift 3",
335
336
  "Heading4":"Überschrift 4",
336
337
  "UnorderedList":"Ungeordnete Liste",
package/src/locale/en.ts CHANGED
@@ -332,6 +332,7 @@ export default {
332
332
  "Italic":"Italic",
333
333
  "Underline":"Underline",
334
334
  "Link":"Link",
335
+ "Delete link":"Delete link",
335
336
  "Heading3":"Heading 3",
336
337
  "Heading4":"Heading 4",
337
338
  "UnorderedList":"Unordered list",
package/src/locale/es.ts CHANGED
@@ -332,6 +332,7 @@ export default {
332
332
  "Italic":"Itálico",
333
333
  "Underline":"Subrayar",
334
334
  "Link":"Enlace",
335
+ "Delete link":"Eliminar enlace",
335
336
  "Heading3":"Título 3",
336
337
  "Heading4":"Título 4",
337
338
  "UnorderedList":"Lista desordenada",
package/src/locale/fr.ts CHANGED
@@ -339,6 +339,7 @@ export default {
339
339
  "Italic":"Italique",
340
340
  "Underline":"Souligner",
341
341
  "Link":"Lien",
342
+ "Delete link":"Supprimer le lien",
342
343
  "Heading3":"Titre 3",
343
344
  "Heading4":"Titre 4",
344
345
  "UnorderedList":"Liste non ordonnée",
package/src/locale/it.ts CHANGED
@@ -325,6 +325,7 @@ export default{
325
325
  "Italic":"Corsivo",
326
326
  "Underline":"Sottolineare",
327
327
  "Link":"Collegamento",
328
+ "Delete link":"Elimina collegamento",
328
329
  "Heading3":"Titolo 3",
329
330
  "Heading4":"Titolo 4",
330
331
  "UnorderedList":"Lista non ordinata",
package/src/locale/sl.ts CHANGED
@@ -322,6 +322,7 @@ export default {
322
322
  "Italic":"Ležeče",
323
323
  "Underline":"Podčrtaj",
324
324
  "Link":"Povezava",
325
+ "Delete link":"Izbriši povezavo",
325
326
  "Heading3":"Naslov 3",
326
327
  "Heading4":"Naslov 4",
327
328
  "UnorderedList":"Neurejen seznam",
@@ -19,7 +19,7 @@ export const useGeneralStore = defineStore("GeneralStore", {
19
19
  state: (): GeneralState => ({
20
20
  metaTitle: "Octopus by Saooti",
21
21
  platformEducation: false,
22
- generalLogoUrl: "/img/logo_octopus_black.png",
22
+ generalLogoUrl: "/img/logo_octopus_black.webp",
23
23
  storedCategories: [],
24
24
  storedCategoriesOrga: [],
25
25
  isBeforeLive: true,