@ckeditor/ckeditor5-table 0.0.0-nightly-20250326.0 → 0.0.0-nightly-20250326.2
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/ckeditor5-metadata.json +27 -0
- package/package.json +9 -9
package/ckeditor5-metadata.json
CHANGED
|
@@ -219,6 +219,33 @@
|
|
|
219
219
|
"styles": "width"
|
|
220
220
|
}
|
|
221
221
|
]
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "PlainTableOutput",
|
|
225
|
+
"className": "PlainTableOutput",
|
|
226
|
+
"description": "This plugin strips the `<figure>` tag which surrounds tables, and moves attributes to the `<table>` in the data downcast.",
|
|
227
|
+
"docs": "features/tables/tables-layout.html",
|
|
228
|
+
"path": "src/plaintableoutput.js",
|
|
229
|
+
"htmlOutput": [
|
|
230
|
+
{
|
|
231
|
+
"elements": [
|
|
232
|
+
"table",
|
|
233
|
+
"thead",
|
|
234
|
+
"tbody",
|
|
235
|
+
"tr"
|
|
236
|
+
]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"elements": [
|
|
240
|
+
"td",
|
|
241
|
+
"th"
|
|
242
|
+
],
|
|
243
|
+
"attributes": [
|
|
244
|
+
"colspan",
|
|
245
|
+
"rowspan"
|
|
246
|
+
]
|
|
247
|
+
}
|
|
248
|
+
]
|
|
222
249
|
}
|
|
223
250
|
]
|
|
224
251
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-table",
|
|
3
|
-
"version": "0.0.0-nightly-20250326.
|
|
3
|
+
"version": "0.0.0-nightly-20250326.2",
|
|
4
4
|
"description": "Table feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "0.0.0-nightly-20250326.
|
|
17
|
-
"@ckeditor/ckeditor5-clipboard": "0.0.0-nightly-20250326.
|
|
18
|
-
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250326.
|
|
19
|
-
"@ckeditor/ckeditor5-engine": "0.0.0-nightly-20250326.
|
|
20
|
-
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250326.
|
|
21
|
-
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250326.
|
|
22
|
-
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250326.
|
|
23
|
-
"@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250326.
|
|
16
|
+
"ckeditor5": "0.0.0-nightly-20250326.2",
|
|
17
|
+
"@ckeditor/ckeditor5-clipboard": "0.0.0-nightly-20250326.2",
|
|
18
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250326.2",
|
|
19
|
+
"@ckeditor/ckeditor5-engine": "0.0.0-nightly-20250326.2",
|
|
20
|
+
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250326.2",
|
|
21
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250326.2",
|
|
22
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250326.2",
|
|
23
|
+
"@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250326.2",
|
|
24
24
|
"es-toolkit": "1.32.0"
|
|
25
25
|
},
|
|
26
26
|
"author": "CKSource (http://cksource.com/)",
|