tiptapify 0.0.12 → 0.0.13

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.
Files changed (34) hide show
  1. package/README.md +3 -2
  2. package/dist/tiptapify.css +1 -1
  3. package/dist/tiptapify.mjs +47044 -28344
  4. package/dist/tiptapify.umd.js +39 -39
  5. package/package.json +49 -46
  6. package/src/composables/Toolbar/Media/useEmoji.ts +20 -0
  7. package/src/composables/Toolbar/useMediaItems.ts +2 -0
  8. package/src/extensions/components/Emoji.vue +109 -0
  9. package/src/extensions/emoji/activities.ts +770 -0
  10. package/src/extensions/emoji/animals_and_nature.ts +1330 -0
  11. package/src/extensions/emoji/component.ts +74 -0
  12. package/src/extensions/emoji/flags.ts +2210 -0
  13. package/src/extensions/emoji/food_and_drink.ts +1066 -0
  14. package/src/extensions/emoji/index.ts +63 -0
  15. package/src/extensions/emoji/objects.ts +2514 -0
  16. package/src/extensions/emoji/people_and_body.ts +3986 -0
  17. package/src/extensions/emoji/smileys_and_emotion.ts +1482 -0
  18. package/src/extensions/emoji/symbols.ts +2242 -0
  19. package/src/extensions/emoji/travel_and_places.ts +2138 -0
  20. package/src/i18n/locales/ch.json +12 -0
  21. package/src/i18n/locales/cz.json +12 -0
  22. package/src/i18n/locales/de.json +12 -0
  23. package/src/i18n/locales/en.json +12 -0
  24. package/src/i18n/locales/es.json +12 -0
  25. package/src/i18n/locales/fr.json +12 -0
  26. package/src/i18n/locales/it.json +12 -0
  27. package/src/i18n/locales/la.json +12 -0
  28. package/src/i18n/locales/lt.json +12 -0
  29. package/src/i18n/locales/nl.json +12 -0
  30. package/src/i18n/locales/pl.json +12 -0
  31. package/src/i18n/locales/pt.json +12 -0
  32. package/src/i18n/locales/ru.json +12 -0
  33. package/src/i18n/locales/se.json +12 -0
  34. package/src/i18n/locales/ua.json +12 -0
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "外部链接",
43
43
  "image": "图片",
44
+ "emoji": {
45
+ "activities": "活动",
46
+ "animals_and_nature": "动物与自然",
47
+ "component": "组件",
48
+ "flags": "旗帜",
49
+ "food_and_drink": "食物与饮料",
50
+ "objects": "物品",
51
+ "people_and_body": "人物与身体",
52
+ "smileys_and_emotion": "笑脸与情感",
53
+ "symbols": "符号",
54
+ "travel_and_places": "旅行与地点"
55
+ },
44
56
  "tables": {
45
57
  "table": "表格",
46
58
  "insertTable": "插入表格",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Externí odkaz",
43
43
  "image": "Obrázek",
44
+ "emoji": {
45
+ "activities": "Aktivity",
46
+ "animals_and_nature": "Zvířata a příroda",
47
+ "component": "Komponenta",
48
+ "flags": "Vlajky",
49
+ "food_and_drink": "Jídlo a nápoje",
50
+ "objects": "Objekty",
51
+ "people_and_body": "Lidé a tělo",
52
+ "smileys_and_emotion": "Úsměvy a emoce",
53
+ "symbols": "Symboly",
54
+ "travel_and_places": "Cestování a místa"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabulka",
46
58
  "insertTable": "Vložit tabulku",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Externer Link",
43
43
  "image": "Bild",
44
+ "emoji": {
45
+ "activities": "Aktivitäten",
46
+ "animals_and_nature": "Tiere & Natur",
47
+ "component": "Komponente",
48
+ "flags": "Flaggen",
49
+ "food_and_drink": "Essen und Trinken",
50
+ "objects": "Objekte",
51
+ "people_and_body": "Menschen & Körper",
52
+ "smileys_and_emotion": "Smileys und Emotionen",
53
+ "symbols": "Symbole",
54
+ "travel_and_places": "Reisen und Orte"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabelle",
46
58
  "insertTable": "Tabelle einfügen",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "External link",
43
43
  "image": "Image",
44
+ "emoji": {
45
+ "activities": "Activities",
46
+ "animals_and_nature": "Animals & nature",
47
+ "component": "Component",
48
+ "flags": "Flags",
49
+ "food_and_drink": "Food and drink",
50
+ "objects": "Objects",
51
+ "people_and_body": "People & body",
52
+ "smileys_and_emotion": "Smileys and emotion",
53
+ "symbols": "Symbols",
54
+ "travel_and_places": "Travel and places"
55
+ },
44
56
  "tables": {
45
57
  "table": "Table",
46
58
  "insertTable": "Insert table",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Enlace externo",
43
43
  "image": "Imagen",
44
+ "emoji": {
45
+ "activities": "Actividades",
46
+ "animals_and_nature": "Animales y naturaleza",
47
+ "component": "Componente",
48
+ "flags": "Banderas",
49
+ "food_and_drink": "Comida y bebida",
50
+ "objects": "Objetos",
51
+ "people_and_body": "Personas y cuerpo",
52
+ "smileys_and_emotion": "Caritas y emociones",
53
+ "symbols": "Símbolos",
54
+ "travel_and_places": "Viajes y lugares"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabla",
46
58
  "insertTable": "Insertar tabla",
@@ -42,6 +42,18 @@
42
42
  "media": {
43
43
  "link": "Lien externe",
44
44
  "image": "Image",
45
+ "emoji": {
46
+ "activities": "Activités",
47
+ "animals_and_nature": "Animaux et nature",
48
+ "component": "Composant",
49
+ "flags": "Drapeaux",
50
+ "food_and_drink": "Nourriture et boissons",
51
+ "objects": "Objets",
52
+ "people_and_body": "Personnes et corps",
53
+ "smileys_and_emotion": "Smileys et émotions",
54
+ "symbols": "Symboles",
55
+ "travel_and_places": "Voyages et lieux"
56
+ },
45
57
  "tables": {
46
58
  "table": "Tableau",
47
59
  "insertTable": "Insérer un tableau",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Collegamento esterno",
43
43
  "image": "Immagine",
44
+ "emoji": {
45
+ "activities": "Attività",
46
+ "animals_and_nature": "Animali e natura",
47
+ "component": "Componente",
48
+ "flags": "Bandiere",
49
+ "food_and_drink": "Cibo e bevande",
50
+ "objects": "Oggetti",
51
+ "people_and_body": "Persone e corpo",
52
+ "smileys_and_emotion": "Faccine ed emozioni",
53
+ "symbols": "Simboli",
54
+ "travel_and_places": "Viaggi e luoghi"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabella",
46
58
  "insertTable": "Inserisci tabella",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Nexus externus",
43
43
  "image": "Imago",
44
+ "emoji": {
45
+ "activities": "Activitates",
46
+ "animals_and_nature": "Animalia et natura",
47
+ "component": "Componens",
48
+ "flags": "Vexilla",
49
+ "food_and_drink": "Cibus et potus",
50
+ "objects": "Objecta",
51
+ "people_and_body": "Homines et corpus",
52
+ "smileys_and_emotion": "Risus et affectus",
53
+ "symbols": "Symbola",
54
+ "travel_and_places": "Iter et loca"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabula",
46
58
  "insertTable": "Tabulam inserere",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Išorinė nuoroda",
43
43
  "image": "Paveikslas",
44
+ "emoji": {
45
+ "activities": "Veiklos",
46
+ "animals_and_nature": "Gyvūnai ir gamta",
47
+ "component": "Komponentas",
48
+ "flags": "Vėliavos",
49
+ "food_and_drink": "Maistas ir gėrimai",
50
+ "objects": "Objektai",
51
+ "people_and_body": "Žmonės ir kūnas",
52
+ "smileys_and_emotion": "Šypsenos ir emocijos",
53
+ "symbols": "Simboliai",
54
+ "travel_and_places": "Kelionės ir vietos"
55
+ },
44
56
  "tables": {
45
57
  "table": "Lentelė",
46
58
  "insertTable": "Įterpti lentelę",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Externe link",
43
43
  "image": "Afbeelding",
44
+ "emoji": {
45
+ "activities": "Activiteiten",
46
+ "animals_and_nature": "Dieren en natuur",
47
+ "component": "Component",
48
+ "flags": "Vlaggen",
49
+ "food_and_drink": "Eten en drinken",
50
+ "objects": "Objecten",
51
+ "people_and_body": "Mensen en lichaam",
52
+ "smileys_and_emotion": "Smileys en emoties",
53
+ "symbols": "Symbolen",
54
+ "travel_and_places": "Reizen en plaatsen"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabel",
46
58
  "insertTable": "Tabel invoegen",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Link zewnętrzny",
43
43
  "image": "Obraz",
44
+ "emoji": {
45
+ "activities": "Aktywności",
46
+ "animals_and_nature": "Zwierzęta i natura",
47
+ "component": "Komponent",
48
+ "flags": "Flagi",
49
+ "food_and_drink": "Jedzenie i napoje",
50
+ "objects": "Obiekty",
51
+ "people_and_body": "Ludzie i ciało",
52
+ "smileys_and_emotion": "Buźki i emocje",
53
+ "symbols": "Symbole",
54
+ "travel_and_places": "Podróże i miejsca"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabela",
46
58
  "insertTable": "Wstaw tabelę",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Link externo",
43
43
  "image": "Imagem",
44
+ "emoji": {
45
+ "activities": "Atividades",
46
+ "animals_and_nature": "Animais e natureza",
47
+ "component": "Componente",
48
+ "flags": "Bandeiras",
49
+ "food_and_drink": "Comida e bebida",
50
+ "objects": "Objetos",
51
+ "people_and_body": "Pessoas e corpo",
52
+ "smileys_and_emotion": "Smileys e emoções",
53
+ "symbols": "Símbolos",
54
+ "travel_and_places": "Viagens e lugares"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabela",
46
58
  "insertTable": "Inserir tabela",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Внешняя ссылка",
43
43
  "image": "Изображение",
44
+ "emoji": {
45
+ "activities": "Активности",
46
+ "animals_and_nature": "Животные и природа",
47
+ "component": "Компонент",
48
+ "flags": "Флаги",
49
+ "food_and_drink": "Еда и напитки",
50
+ "objects": "Объекты",
51
+ "people_and_body": "Люди и части тела",
52
+ "smileys_and_emotion": "Смайлики и эмоции",
53
+ "symbols": "Символы",
54
+ "travel_and_places": "Путешествия и места"
55
+ },
44
56
  "tables": {
45
57
  "table": "Таблица",
46
58
  "insertTable": "Вставить таблицу",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Extern länk",
43
43
  "image": "Bild",
44
+ "emoji": {
45
+ "activities": "Aktiviteter",
46
+ "animals_and_nature": "Djur och natur",
47
+ "component": "Komponent",
48
+ "flags": "Flaggor",
49
+ "food_and_drink": "Mat och dryck",
50
+ "objects": "Objekt",
51
+ "people_and_body": "Människor och kropp",
52
+ "smileys_and_emotion": "Smileys och känslor",
53
+ "symbols": "Symboler",
54
+ "travel_and_places": "Resor och platser"
55
+ },
44
56
  "tables": {
45
57
  "table": "Tabell",
46
58
  "insertTable": "Sätt in tabell",
@@ -41,6 +41,18 @@
41
41
  "media": {
42
42
  "link": "Зовнішнє посилання",
43
43
  "image": "Зображення",
44
+ "emoji": {
45
+ "activities": "Активності",
46
+ "animals_and_nature": "Тварини та природа",
47
+ "component": "Компонент",
48
+ "flags": "Прапори",
49
+ "food_and_drink": "Їжа та напої",
50
+ "objects": "Об'єкти",
51
+ "people_and_body": "Люди та частини тіла",
52
+ "smileys_and_emotion": "Смайлики та емоції",
53
+ "symbols": "Символи",
54
+ "travel_and_places": "Подорожі та місця"
55
+ },
44
56
  "tables": {
45
57
  "table": "Таблиця",
46
58
  "insertTable": "Вставити таблицю",