tiptapify 0.0.8 → 0.0.9
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/README.md +25 -2
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +23572 -21377
- package/dist/tiptapify.umd.js +34 -34
- package/index.d.ts +49 -0
- package/package.json +8 -6
- package/src/components/Footer.vue +48 -6
- package/src/components/Tiptapify.vue +37 -29
- package/src/components/Toolbar/Group.vue +13 -14
- package/src/components/Toolbar/GroupBtn.vue +34 -0
- package/src/components/Toolbar/Index.vue +26 -77
- package/src/components/Toolbar/Items.vue +77 -0
- package/src/components/Toolbar/defaultExtensionComponents.ts +32 -0
- package/src/components/Toolbar/items/format.ts +0 -13
- package/src/components/Toolbar/items/media.ts +1 -1
- package/src/components/Toolbar/items/misc.ts +1 -1
- package/src/components/Toolbar/items/style.ts +43 -2
- package/src/components/Toolbar/items.ts +6 -4
- package/src/components/editorExtensions.ts +3 -7
- package/src/extensions/components/StyleColor.vue +177 -0
- package/src/extensions/components/TableBuilder.vue +1 -2
- package/src/i18n/locales/de.json +14 -2
- package/src/i18n/locales/en.json +14 -2
- package/src/i18n/locales/es.json +19 -7
- package/src/i18n/locales/fr.json +40 -28
- package/src/i18n/locales/it.json +22 -10
- package/src/i18n/locales/pl.json +29 -16
- package/src/i18n/locales/ru.json +14 -2
- package/src/i18n/locales/ua.json +14 -2
- package/src/types/overridable-extensions.ts +6 -0
package/src/i18n/locales/it.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "scrivi qualcosa qui..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "paragrafo",
|
|
4
7
|
"heading": "intestazione",
|
|
@@ -10,9 +13,15 @@
|
|
|
10
13
|
"h5": "intestazione livello 5",
|
|
11
14
|
"h6": "intestazione livello 6"
|
|
12
15
|
},
|
|
13
|
-
"fontFamily": "famiglia
|
|
16
|
+
"fontFamily": "famiglia carattere",
|
|
14
17
|
"fontSize": "dimensione carattere",
|
|
15
|
-
"lineHeight": "altezza riga"
|
|
18
|
+
"lineHeight": "altezza riga",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "colore evidenziazione",
|
|
21
|
+
"text": "colore testo",
|
|
22
|
+
"unset": "rimuovi colore",
|
|
23
|
+
"custom": "colore personalizzato"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "grassetto",
|
|
@@ -21,13 +30,12 @@
|
|
|
21
30
|
"underline": "sottolineato",
|
|
22
31
|
"sup": "apice",
|
|
23
32
|
"sub": "pedice",
|
|
24
|
-
"break": "interruzione forzata",
|
|
25
|
-
"
|
|
26
|
-
"line": "linea orizzontale",
|
|
33
|
+
"break": "interruzione riga forzata",
|
|
34
|
+
"line": "riga orizzontale",
|
|
27
35
|
"blockquote": "citazione",
|
|
28
36
|
"code": "codice",
|
|
29
|
-
"codeblock": "blocco
|
|
30
|
-
"formatClear": "cancella
|
|
37
|
+
"codeblock": "blocco codice",
|
|
38
|
+
"formatClear": "cancella formattazione"
|
|
31
39
|
},
|
|
32
40
|
"media": {
|
|
33
41
|
"link": "collegamento esterno",
|
|
@@ -36,7 +44,7 @@
|
|
|
36
44
|
"table": "tabella",
|
|
37
45
|
"insertTable": "inserisci tabella",
|
|
38
46
|
"deleteTable": "elimina tabella",
|
|
39
|
-
"insertWithHeaderRow": "inserisci tabella con riga
|
|
47
|
+
"insertWithHeaderRow": "inserisci tabella con riga intestazione",
|
|
40
48
|
"rows": "righe",
|
|
41
49
|
"row": "riga",
|
|
42
50
|
"insertRowBefore": "inserisci riga prima",
|
|
@@ -76,7 +84,7 @@
|
|
|
76
84
|
"close": "chiudi",
|
|
77
85
|
"image": {
|
|
78
86
|
"title": "aggiungi/modifica immagine",
|
|
79
|
-
"src": "
|
|
87
|
+
"src": "sorgente",
|
|
80
88
|
"alt": "alt",
|
|
81
89
|
"width": "larghezza",
|
|
82
90
|
"height": "altezza"
|
|
@@ -86,7 +94,7 @@
|
|
|
86
94
|
"href": "indirizzo collegamento",
|
|
87
95
|
"target": "apri in nuova finestra",
|
|
88
96
|
"rel": "rel",
|
|
89
|
-
"class": "classe
|
|
97
|
+
"class": "classe CSS"
|
|
90
98
|
},
|
|
91
99
|
"source": {
|
|
92
100
|
"title": "visualizza codice sorgente",
|
|
@@ -96,5 +104,9 @@
|
|
|
96
104
|
"misc": {
|
|
97
105
|
"source": "visualizza codice sorgente",
|
|
98
106
|
"preview": "anteprima"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "parole",
|
|
110
|
+
"chars": "caratteri"
|
|
99
111
|
}
|
|
100
112
|
}
|
package/src/i18n/locales/pl.json
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
|
+
|
|
1
2
|
{
|
|
3
|
+
"content": {
|
|
4
|
+
"placeholder": "napisz coś tutaj..."
|
|
5
|
+
},
|
|
2
6
|
"style": {
|
|
3
7
|
"paragraph": "akapit",
|
|
4
8
|
"heading": "nagłówek",
|
|
5
9
|
"headings": {
|
|
6
|
-
"h1": "nagłówek
|
|
7
|
-
"h2": "nagłówek
|
|
8
|
-
"h3": "nagłówek
|
|
9
|
-
"h4": "nagłówek
|
|
10
|
-
"h5": "nagłówek
|
|
11
|
-
"h6": "nagłówek
|
|
10
|
+
"h1": "nagłówek poziom 1",
|
|
11
|
+
"h2": "nagłówek poziom 2",
|
|
12
|
+
"h3": "nagłówek poziom 3",
|
|
13
|
+
"h4": "nagłówek poziom 4",
|
|
14
|
+
"h5": "nagłówek poziom 5",
|
|
15
|
+
"h6": "nagłówek poziom 6"
|
|
12
16
|
},
|
|
13
|
-
"fontFamily": "rodzina
|
|
17
|
+
"fontFamily": "rodzina czcionki",
|
|
14
18
|
"fontSize": "rozmiar czcionki",
|
|
15
|
-
"lineHeight": "wysokość linii"
|
|
19
|
+
"lineHeight": "wysokość linii",
|
|
20
|
+
"color": {
|
|
21
|
+
"highlight": "kolor podświetlenia",
|
|
22
|
+
"text": "kolor tekstu",
|
|
23
|
+
"unset": "usuń kolor",
|
|
24
|
+
"custom": "kolor niestandardowy"
|
|
25
|
+
}
|
|
16
26
|
},
|
|
17
27
|
"format": {
|
|
18
28
|
"bold": "pogrubienie",
|
|
@@ -21,8 +31,7 @@
|
|
|
21
31
|
"underline": "podkreślenie",
|
|
22
32
|
"sup": "indeks górny",
|
|
23
33
|
"sub": "indeks dolny",
|
|
24
|
-
"break": "
|
|
25
|
-
"highlight": "wyróżnienie",
|
|
34
|
+
"break": "twarde łamanie",
|
|
26
35
|
"line": "linia pozioma",
|
|
27
36
|
"blockquote": "cytat",
|
|
28
37
|
"code": "kod",
|
|
@@ -47,7 +56,7 @@
|
|
|
47
56
|
"insertColBefore": "wstaw kolumnę przed",
|
|
48
57
|
"insertColAfter": "wstaw kolumnę po",
|
|
49
58
|
"deleteCol": "usuń kolumnę",
|
|
50
|
-
"mergeCells": "
|
|
59
|
+
"mergeCells": "scal komórki",
|
|
51
60
|
"splitCell": "podziel komórkę"
|
|
52
61
|
}
|
|
53
62
|
},
|
|
@@ -58,7 +67,7 @@
|
|
|
58
67
|
"alignment": "wyrównanie",
|
|
59
68
|
"alignments": {
|
|
60
69
|
"left": "wyrównaj do lewej",
|
|
61
|
-
"center": "
|
|
70
|
+
"center": "wyśrodkuj",
|
|
62
71
|
"right": "wyrównaj do prawej",
|
|
63
72
|
"justify": "wyjustuj"
|
|
64
73
|
},
|
|
@@ -68,7 +77,7 @@
|
|
|
68
77
|
"numbered": "lista uporządkowana",
|
|
69
78
|
"task": "lista zadań",
|
|
70
79
|
"indent": "wcięcie elementu listy",
|
|
71
|
-
"outdent": "
|
|
80
|
+
"outdent": "usuń wcięcie elementu listy"
|
|
72
81
|
},
|
|
73
82
|
"dialog": {
|
|
74
83
|
"apply": "zastosuj",
|
|
@@ -86,15 +95,19 @@
|
|
|
86
95
|
"href": "adres linku",
|
|
87
96
|
"target": "otwórz w nowym oknie",
|
|
88
97
|
"rel": "rel",
|
|
89
|
-
"class": "klasa
|
|
98
|
+
"class": "klasa CSS"
|
|
90
99
|
},
|
|
91
100
|
"source": {
|
|
92
|
-
"title": "
|
|
101
|
+
"title": "wyświetl kod źródłowy",
|
|
93
102
|
"prettify": "upiększ"
|
|
94
103
|
}
|
|
95
104
|
},
|
|
96
105
|
"misc": {
|
|
97
|
-
"source": "
|
|
106
|
+
"source": "wyświetl kod źródłowy",
|
|
98
107
|
"preview": "podgląd"
|
|
108
|
+
},
|
|
109
|
+
"footer": {
|
|
110
|
+
"words": "słowa",
|
|
111
|
+
"chars": "znaki"
|
|
99
112
|
}
|
|
100
113
|
}
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "напишите что-нибудь..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "абзац",
|
|
4
7
|
"heading": "заголовок",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "шрифт",
|
|
14
17
|
"fontSize": "размер",
|
|
15
|
-
"lineHeight": "высота строки"
|
|
18
|
+
"lineHeight": "высота строки",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "цвет выделения",
|
|
21
|
+
"text": "цвет текста",
|
|
22
|
+
"unset": "очистить цвет",
|
|
23
|
+
"custom": "свой выбор"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "жирный",
|
|
@@ -22,7 +31,6 @@
|
|
|
22
31
|
"sup": "верхний индекс",
|
|
23
32
|
"sub": "нижний индекс",
|
|
24
33
|
"break": "разрыв строки",
|
|
25
|
-
"highlight": "выделение",
|
|
26
34
|
"line": "горизонтальная линия",
|
|
27
35
|
"blockquote": "цитата",
|
|
28
36
|
"code": "код",
|
|
@@ -96,5 +104,9 @@
|
|
|
96
104
|
"misc": {
|
|
97
105
|
"source": "просмотр исходного кода",
|
|
98
106
|
"preview": "предпросмотр"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "слова",
|
|
110
|
+
"chars": "символы"
|
|
99
111
|
}
|
|
100
112
|
}
|
package/src/i18n/locales/ua.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "напишіть щонебудь..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "абзац",
|
|
4
7
|
"heading": "заголовок",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "шрифт",
|
|
14
17
|
"fontSize": "розмір",
|
|
15
|
-
"lineHeight": "висота строки"
|
|
18
|
+
"lineHeight": "висота строки",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "колір виділення",
|
|
21
|
+
"text": "колір тексту",
|
|
22
|
+
"unset": "очистити колір",
|
|
23
|
+
"custom": "власний вибір"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "жирний",
|
|
@@ -22,7 +31,6 @@
|
|
|
22
31
|
"sup": "верхній індекс",
|
|
23
32
|
"sub": "нижній індекс",
|
|
24
33
|
"break": "розрив строки",
|
|
25
|
-
"highlight": "виділення",
|
|
26
34
|
"line": "горизонтальна лінія",
|
|
27
35
|
"blockquote": "цитата",
|
|
28
36
|
"code": "код",
|
|
@@ -96,5 +104,9 @@
|
|
|
96
104
|
"misc": {
|
|
97
105
|
"source": "перегляд вихідного коду",
|
|
98
106
|
"preview": "попередній перегляд"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "слова",
|
|
110
|
+
"chars": "символи"
|
|
99
111
|
}
|
|
100
112
|
}
|