diff --git a/CHANGELOG.md b/CHANGELOG.md index f66266f..23e035b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ # [2.12.0](https://github.com/iliyaZelenko/tiptap-vuetify/compare/v2.11.1...v2.12.0) (2020-02-13) +### Improvements + +* **i18n:** add missing spanish translations ([bb52851](https://github.com/iliyaZelenko/tiptap-vuetify/commit/bb52851292dc52c69d06cea852da4786652053b6)), closes [#137](https://github.com/iliyaZelenko/tiptap-vuetify/issues/137) + + ## [2.11.1](https://github.com/iliyaZelenko/tiptap-vuetify/compare/v2.11.0...v2.11.1) (2020-01-31) diff --git a/demo/App.vue b/demo/App.vue index e9cec64..4ea5439 100644 --- a/demo/App.vue +++ b/demo/App.vue @@ -12,7 +12,7 @@ The Tiptap Editor Package -
+
@@ -22,9 +22,10 @@ + + diff --git a/demo/main.js b/demo/main.js index 44f8127..effb2f7 100644 --- a/demo/main.js +++ b/demo/main.js @@ -49,7 +49,7 @@ MAIN_MODULE.then(({ TiptapVuetifyPlugin }) => { }) Vue.use(TiptapVuetifyPlugin, { vuetify, - iconsGroup: 'mdiSvg' // VuetifyIconsGroups (fa, md, mdi, mdiSvg) + iconsGroup: 'mdi' // VuetifyIconsGroups (fa, md, mdi, mdiSvg) }) Vue.config.productionTip = false diff --git a/demo/pages/Index.vue b/demo/pages/Index.vue index 0c90cd5..9b9e1df 100644 --- a/demo/pages/Index.vue +++ b/demo/pages/Index.vue @@ -4,12 +4,12 @@ min-height="500" max-height="600" :editor-properties="editorProperties" + output-format="json" --> diff --git a/plan.txt b/plan.txt index 7bbbe01..c774b4a 100644 --- a/plan.txt +++ b/plan.txt @@ -1,5 +1,5 @@ -TODO: не включать не нужные иконки в бандл. Например, позволять пользователю импортировать нужные ему иконки, но не забыть что сторонние плагины должны иметь возможность включать иконки. - +TODO идея по тому что ниже: импортировать иконки из @mdi/js если используется mdiSvg, только тогда. У пользователя должен быть установлен @mdi/js. +TODO не включать не нужные иконки в бандл. Например, позволять пользователю импортировать нужные ему иконки, но не забыть что сторонние плагины должны иметь возможность включать иконки. Написать гайд как добавлять свои расширения и менять уже существующие. Важно: diff --git a/src/components/Bubble.vue b/src/components/Bubble.vue index 834dc67..820433f 100644 --- a/src/components/Bubble.vue +++ b/src/components/Bubble.vue @@ -135,11 +135,12 @@ export default class Menu extends mixins(I18nMixin) { } setTimeout(() => { - const pop = document.querySelector('.tiptap-vuetify-editor-pop')! + const pop = document.querySelector('.tiptap-vuetify-editor-pop')! const rangeRef: any = new RangeRef() const popper = new Popper(rangeRef, pop, { placement: 'top', - modifiers: { offset: { offset: '0,5' } } + modifiers: { offset: { offset: '0,5' } }, + positionFixed: true }) rangeRef.rectChangedCallback = ({ width }) => { @@ -157,7 +158,7 @@ export default class Menu extends mixins(I18nMixin) {