Skip to content

Commit baf85e1

Browse files
committed
Updated dependencies
1 parent 7bda220 commit baf85e1

File tree

4 files changed

+1974
-2954
lines changed

4 files changed

+1974
-2954
lines changed

package.json

+18-15
Original file line numberDiff line numberDiff line change
@@ -47,34 +47,37 @@
4747
"@storybook/addon-notes": "^5.3.21",
4848
"@storybook/storybook-deployer": "^2.8.10",
4949
"@storybook/vue3": "^6.4.0-alpha.9",
50-
"@tinymce/beehive-flow": "^0.15.0",
50+
"@tinymce/beehive-flow": "^0.17.0",
5151
"@tinymce/eslint-plugin": "^1.9.1",
5252
"@tinymce/miniature": "^3.2.0",
53-
"@types/node": "^13.13.4",
53+
"@types/node": "^16.7.1",
54+
"@vue/compiler-sfc": "^3.0.0",
5455
"babel-loader": "^8.0.5",
5556
"babel-preset-vue": "^2.0.2",
5657
"babel-register": "^6.26.0",
57-
"css-loader": "^3.5.3",
58+
"css-loader": "^6.2.0",
5859
"file-loader": "^6.0.0",
59-
"react": "^16.8.6",
60-
"react-dom": "^16.8.6",
60+
"react": "^16.14.0",
61+
"react-dom": "^16.14.0",
62+
"regenerator-runtime": "^0.13.9",
6163
"rimraf": "^3.0.2",
62-
"rollup": "^2.7.5",
64+
"rollup": "^1.32.1",
6365
"rollup-plugin-node-resolve": "^5.2.0",
64-
"rollup-plugin-typescript2": "^0.27.0",
66+
"rollup-plugin-typescript2": "^0.30.0",
6567
"rollup-plugin-uglify": "^6.0.0",
66-
"tinymce": "npm:tinymce@^5.0.0",
67-
"tinymce-4": "npm:tinymce@^4.9.7",
68-
"tinymce-5": "npm:tinymce@^5.0.0",
69-
"ts-loader": "^7.0.1",
70-
"ts-node": "^8.9.1",
71-
"typescript": "^3.2.2",
68+
"tinymce": "npm:tinymce@^5",
69+
"tinymce-4": "npm:tinymce@^4",
70+
"tinymce-5": "npm:tinymce@^5",
71+
"ts-loader": "^9.2.5",
72+
"ts-node": "^10.2.1",
7273
"tsconfig-paths-webpack-plugin": "^3.5.1",
73-
"vite": "^1.0.0-rc.4",
74+
"typescript": "^4.3.5",
75+
"vite": "^2.5.1",
76+
"vue": "^3.0.0",
7477
"vue-loader": "^15.2.1",
7578
"vue-router": "^4.0.0-beta.13",
7679
"vue-template-compiler": "^2.6.14",
77-
"webpack": "^4.43.0"
80+
"webpack": "^5.51.1"
7881
},
7982
"dependencies": {}
8083
}

src/main/ts/components/Editor.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ import { isTextarea, mergePlugins, uuid, isNullOrUndefined, initEditor } from '.
1212
import { editorProps } from './EditorPropTypes';
1313
import { h, defineComponent, onMounted, ref, Ref, toRefs, watch, onBeforeUnmount, onActivated, onDeactivated } from 'vue';
1414

15-
const renderInline = (ce: any, id: string, elementRef: Ref<Element|null>, tagName?: string) =>
15+
const renderInline = (ce: any, id: string, elementRef: Ref<Element | null>, tagName?: string) =>
1616
ce(tagName ? tagName : 'div', {
1717
id,
1818
ref: elementRef
1919
});
2020

21-
const renderIframe = (ce: any, id: string, elementRef: Ref<Element|null>) =>
21+
const renderIframe = (ce: any, id: string, elementRef: Ref<Element | null>) =>
2222
ce('textarea', {
2323
id,
2424
visibility: 'hidden',

tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
"strictNullChecks": true,
1313
"target": "es5",
1414
// "lib": ["es2020.string"] // fix the mathAll issue
15+
"types": [
16+
"node"
17+
],
1518
"strict": true,
1619
"baseUrl": ".",
1720
"skipLibCheck": true // -> https://github.com/vuejs/vue-next/issues/1102

0 commit comments

Comments
 (0)