@licium/editor-plugin-table-merged-cell 3.1.0 → 3.2.5
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 +22 -19
- package/package.json +3 -3
- package/LICENSE +0 -21
package/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
> This is a fork of the [Toast UI Editor](https://github.com/natorus87/tui.editor) maintained by `@licium`.
|
|
2
|
+
> Original repository: https://github.com/natorus87/tui.editor
|
|
3
|
+
|
|
1
4
|
# TOAST UI Editor : Table Merged Cell Plugin
|
|
2
5
|
|
|
3
|
-
> This is a plugin of [TOAST UI Editor](https://github.com/
|
|
6
|
+
> This is a plugin of [TOAST UI Editor](https://github.com/natorus87/tui.editor/tree/master/apps/editor) to merge table columns.
|
|
4
7
|
|
|
5
|
-
[](https://www.npmjs.com/package/@licium/editor-plugin-table-merged-cell)
|
|
6
9
|
|
|
7
10
|

|
|
8
11
|
|
|
@@ -41,14 +44,14 @@ The bundle files include all dependencies of this plugin.
|
|
|
41
44
|
|
|
42
45
|
## 📦 Usage npm
|
|
43
46
|
|
|
44
|
-
To use the plugin, [`@
|
|
47
|
+
To use the plugin, [`@licium/editor`](https://github.com/natorus87/tui.editor/tree/master/apps/editor) must be installed.
|
|
45
48
|
|
|
46
|
-
> Ref. [Getting Started](https://github.com/
|
|
49
|
+
> Ref. [Getting Started](https://github.com/natorus87/tui.editor/blob/master/docs/en/getting-started.md)
|
|
47
50
|
|
|
48
51
|
### Install
|
|
49
52
|
|
|
50
53
|
```sh
|
|
51
|
-
$ npm install @
|
|
54
|
+
$ npm install @licium/editor-plugin-table-merged-cell
|
|
52
55
|
```
|
|
53
56
|
|
|
54
57
|
### Import Plugin
|
|
@@ -56,17 +59,17 @@ $ npm install @toast-ui/editor-plugin-table-merged-cell
|
|
|
56
59
|
#### ES Modules
|
|
57
60
|
|
|
58
61
|
```js
|
|
59
|
-
import '@
|
|
62
|
+
import '@licium/editor-plugin-table-merged-cell/dist/toastui-editor-plugin-table-merged-cell.css';
|
|
60
63
|
|
|
61
|
-
import tableMergedCell from '@
|
|
64
|
+
import tableMergedCell from '@licium/editor-plugin-table-merged-cell';
|
|
62
65
|
```
|
|
63
66
|
|
|
64
67
|
#### CommonJS
|
|
65
68
|
|
|
66
69
|
```js
|
|
67
|
-
require('@
|
|
70
|
+
require('@licium/editor-plugin-table-merged-cell/dist/toastui-editor-plugin-table-merged-cell.css');
|
|
68
71
|
|
|
69
|
-
const tableMergedCell = require('@
|
|
72
|
+
const tableMergedCell = require('@licium/editor-plugin-table-merged-cell');
|
|
70
73
|
```
|
|
71
74
|
|
|
72
75
|
### Create Instance
|
|
@@ -74,10 +77,10 @@ const tableMergedCell = require('@toast-ui/editor-plugin-table-merged-cell');
|
|
|
74
77
|
#### Basic
|
|
75
78
|
|
|
76
79
|
```js
|
|
77
|
-
import '@
|
|
80
|
+
import '@licium/editor-plugin-table-merged-cell/dist/toastui-editor-plugin-table-merged-cell.css';
|
|
78
81
|
|
|
79
|
-
import Editor from '@
|
|
80
|
-
import tableMergedCell from '@
|
|
82
|
+
import Editor from '@licium/editor';
|
|
83
|
+
import tableMergedCell from '@licium/editor-plugin-table-merged-cell';
|
|
81
84
|
|
|
82
85
|
const editor = new Editor({
|
|
83
86
|
// ...
|
|
@@ -88,10 +91,10 @@ const editor = new Editor({
|
|
|
88
91
|
#### With Viewer
|
|
89
92
|
|
|
90
93
|
```js
|
|
91
|
-
import '@
|
|
94
|
+
import '@licium/editor-plugin-table-merged-cell/dist/toastui-editor-plugin-table-merged-cell.css';
|
|
92
95
|
|
|
93
|
-
import Viewer from '@
|
|
94
|
-
import tableMergedCell from '@
|
|
96
|
+
import Viewer from '@licium/editor/dist/toastui-editor-viewer';
|
|
97
|
+
import tableMergedCell from '@licium/editor-plugin-table-merged-cell';
|
|
95
98
|
|
|
96
99
|
const viewer = new Viewer({
|
|
97
100
|
// ...
|
|
@@ -102,10 +105,10 @@ const viewer = new Viewer({
|
|
|
102
105
|
or
|
|
103
106
|
|
|
104
107
|
```js
|
|
105
|
-
import '@
|
|
108
|
+
import '@licium/editor-plugin-table-merged-cell/dist/toastui-editor-plugin-table-merged-cell.css';
|
|
106
109
|
|
|
107
|
-
import Editor from '@
|
|
108
|
-
import tableMergedCell from '@
|
|
110
|
+
import Editor from '@licium/editor';
|
|
111
|
+
import tableMergedCell from '@licium/editor-plugin-table-merged-cell';
|
|
109
112
|
|
|
110
113
|
const viewer = Editor.factory({
|
|
111
114
|
// ...
|
|
@@ -116,7 +119,7 @@ const viewer = Editor.factory({
|
|
|
116
119
|
|
|
117
120
|
## 🗂 Usage CDN
|
|
118
121
|
|
|
119
|
-
To use the plugin, the CDN files(CSS, Script) of `@
|
|
122
|
+
To use the plugin, the CDN files(CSS, Script) of `@licium/editor` must be included.
|
|
120
123
|
|
|
121
124
|
### Include Files
|
|
122
125
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licium/editor-plugin-table-merged-cell",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.5",
|
|
4
4
|
"description": "TOAST UI Editor : Table Merged Cell Plugin",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nhn",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "https://github.com/
|
|
27
|
+
"url": "https://github.com/natorus87/tui.editor.git",
|
|
28
28
|
"directory": "plugins/table-merged-cell"
|
|
29
29
|
},
|
|
30
30
|
"bugs": {
|
|
31
|
-
"url": "https://github.com/
|
|
31
|
+
"url": "https://github.com/natorus87/tui.editor/issues"
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://ui.toast.com",
|
|
34
34
|
"browserslist": "last 2 versions, not ie <= 10",
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020 NHN Cloud Corp.
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|