@techie_doubts/vue-editor 3.2.3

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.
@@ -0,0 +1,15 @@
1
+ /*!
2
+ * @techie_doubts/tui.editor.2026
3
+ * @version 3.2.2 | Sat Feb 21 2026
4
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
5
+ * @license MIT
6
+ */
7
+
8
+ /*!
9
+ * TOAST UI Editor : Vue Wrapper
10
+ * @version 3.2.3 | Sat Feb 21 2026
11
+ * @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>
12
+ * @license MIT
13
+ */
14
+
15
+ /*! @license DOMPurify 2.5.8 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.5.8/LICENSE */
package/index.d.ts ADDED
@@ -0,0 +1,28 @@
1
+ import Vue from 'vue';
2
+ import ToastuiEditor from '@techie_doubts/tui.editor.2026';
3
+ import ToastuiEditorViewer from '@techie_doubts/tui.editor.2026/dist/toastui-editor-viewer';
4
+
5
+ type FunctionKeys<T extends object> = {
6
+ [K in keyof T]: T[K] extends Function ? K : never;
7
+ }[keyof T];
8
+
9
+ type EditorFnKeys = FunctionKeys<ToastuiEditor>;
10
+ type ViewerFnKeys = FunctionKeys<ToastuiEditorViewer>;
11
+
12
+ export class Editor extends Vue {
13
+ invoke<T extends EditorFnKeys>(
14
+ fname: T,
15
+ ...args: Parameters<ToastuiEditor[T]>
16
+ ): ReturnType<ToastuiEditor[T]>;
17
+
18
+ getRootElement(): HTMLElement;
19
+ }
20
+
21
+ export class Viewer extends Vue {
22
+ invoke<T extends ViewerFnKeys>(
23
+ fname: T,
24
+ ...args: Parameters<ToastuiEditorViewer[T]>
25
+ ): ReturnType<ToastuiEditorViewer[T]>;
26
+
27
+ getRootElement(): HTMLElement;
28
+ }
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@techie_doubts/vue-editor",
3
+ "version": "3.2.3",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "TOAST UI Editor for Vue",
8
+ "main": "dist/td-vue-editor.js",
9
+ "module": "dist/esm/index.js",
10
+ "files": [
11
+ "dist",
12
+ "index.d.ts"
13
+ ],
14
+ "scripts": {
15
+ "lint": "eslint .",
16
+ "serve": "snowpack dev",
17
+ "build": "webpack build && rollup -c"
18
+ },
19
+ "homepage": "https://ui.toast.com",
20
+ "bugs": {
21
+ "url": "https://github.com/nhn/tui.editor/issues"
22
+ },
23
+ "author": "NHN Cloud FE Development Lab <dl_javascript@nhn.com>",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/nhn/tui.editor.git",
27
+ "directory": "apps/vue-editor"
28
+ },
29
+ "license": "MIT",
30
+ "devDependencies": {
31
+ "vue": "^2.5.0",
32
+ "vue-loader": "^15.9.8",
33
+ "vue-template-compiler": "^2.6.12",
34
+ "@morgul/snowpack-plugin-vue2": "^0.4.0"
35
+ },
36
+ "peerDependencies": {
37
+ "vue": "^2.5.0"
38
+ },
39
+ "dependencies": {
40
+ "@techie_doubts/tui.editor.2026": "^3.2.2"
41
+ }
42
+ }