@ckeditor/ckeditor5-table 48.3.1 → 48.4.0-alpha.0
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 +12 -1
- package/dist/augmentation.d.ts +4 -1
- package/dist/commands/inserttablecommand.d.ts +5 -0
- package/dist/commands/inserttablelayoutcommand.d.ts +5 -0
- package/dist/commands/splitcellcommand.d.ts +2 -1
- package/dist/index-content.css +81 -82
- package/dist/index-content.css.map +1 -0
- package/dist/index-editor.css +537 -450
- package/dist/index-editor.css.map +1 -0
- package/dist/index.css +214 -125
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +908 -60
- package/dist/index.js.map +1 -1
- package/dist/table.d.ts +0 -1
- package/dist/tablecaption.d.ts +0 -1
- package/dist/tablecellproperties/tablecellpropertiesui.d.ts +7 -0
- package/dist/tablecellproperties/ui/tablecellpropertiesview.d.ts +0 -3
- package/dist/tablecolumnresize/commands/tablecolumnwidthcommand.d.ts +56 -0
- package/dist/tablecolumnresize/constants.d.ts +15 -0
- package/dist/tablecolumnresize/tablecolumnresizeediting.d.ts +81 -2
- package/dist/tablecolumnresize/utils.d.ts +30 -0
- package/dist/tablecolumnresize.d.ts +0 -1
- package/dist/tableconfig.d.ts +38 -0
- package/dist/tableediting.d.ts +0 -1
- package/dist/tablelayout/tablelayoutediting.d.ts +0 -1
- package/dist/tableproperties/ui/tablepropertiesview.d.ts +0 -3
- package/dist/tablescroll/tablescrollediting.d.ts +82 -0
- package/dist/tablescroll/watchers.d.ts +23 -0
- package/dist/tablescroll.d.ts +23 -0
- package/dist/tableselection.d.ts +0 -1
- package/dist/ui/colorinputview.d.ts +0 -1
- package/dist/ui/inserttableview.d.ts +0 -1
- package/dist/utils/common.d.ts +6 -0
- package/package.json +10 -9
package/ckeditor5-metadata.json
CHANGED
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
{
|
|
218
218
|
"name": "Table column resize",
|
|
219
219
|
"className": "TableColumnResize",
|
|
220
|
-
"description": "Adds support for table column resize, which allows to set the width of each column in a table using a resize handle.",
|
|
220
|
+
"description": "Adds support for table column resize, which allows to set the width of each column in a table using a resize handle or by entering an exact value in the cell width field. Column widths can be expressed in percentages or pixels, following the table width unit.",
|
|
221
221
|
"docs": "features/tables/tables-resize.html",
|
|
222
222
|
"path": "src/tablecolumnresize.ts",
|
|
223
223
|
"requires": [
|
|
@@ -233,6 +233,17 @@
|
|
|
233
233
|
}
|
|
234
234
|
]
|
|
235
235
|
},
|
|
236
|
+
{
|
|
237
|
+
"name": "Table scroll",
|
|
238
|
+
"className": "TableScroll",
|
|
239
|
+
"description": "Adds horizontal scrolling to tables that are wider than the space available to them, so their content stays readable instead of squeezing the columns or breaking the page layout.",
|
|
240
|
+
"docs": "features/tables/tables-scroll.html",
|
|
241
|
+
"path": "src/tablescroll.ts",
|
|
242
|
+
"requires": [
|
|
243
|
+
"Table",
|
|
244
|
+
"TableProperties"
|
|
245
|
+
]
|
|
246
|
+
},
|
|
236
247
|
{
|
|
237
248
|
"name": "PlainTableOutput",
|
|
238
249
|
"className": "PlainTableOutput",
|
package/dist/augmentation.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
|
-
import type { TableConfig, Table, TableCaption, TableCaptionEditing, TableCaptionUI, TableCellProperties, TableCellPropertiesEditing, TableCellPropertiesUI, TableCellWidthEditing, TableClipboard, TableColumnResize, TableColumnResizeEditing, TableEditing, TableKeyboard, TableLayout, TableLayoutEditing, TableMouse, TableProperties, TablePropertiesEditing, TablePropertiesUI, TableSelection, TableToolbar, TableUI, TableUtils, PlainTableOutput, InsertColumnCommand, InsertRowCommand, InsertTableCommand, InsertTableLayoutCommand, MergeCellCommand, MergeCellsCommand, RemoveColumnCommand, RemoveRowCommand, SelectColumnCommand, SelectRowCommand, SetHeaderColumnCommand, SetHeaderRowCommand, TableTypeCommand, SplitCellCommand, ToggleTableCaptionCommand, TableCellBackgroundColorCommand, TableCellBorderColorCommand, TableCellBorderStyleCommand, TableCellBorderWidthCommand, TableCellHeightCommand, TableCellHorizontalAlignmentCommand, TableCellPaddingCommand, TableCellVerticalAlignmentCommand, TableCellWidthCommand, TableAlignmentCommand, TableBackgroundColorCommand, TableBorderColorCommand, TableBorderStyleCommand, TableBorderWidthCommand, TableHeightCommand, TableWidthCommand, TableCellTypeCommand, SetFooterRowCommand } from "./index.js";
|
|
5
|
+
import type { TableConfig, Table, TableCaption, TableCaptionEditing, TableCaptionUI, TableCellProperties, TableCellPropertiesEditing, TableCellPropertiesUI, TableCellWidthEditing, TableClipboard, TableColumnResize, TableColumnResizeEditing, TableEditing, TableKeyboard, TableLayout, TableLayoutEditing, TableMouse, TableProperties, TablePropertiesEditing, TablePropertiesUI, TableScroll, TableSelection, TableToolbar, TableUI, TableUtils, PlainTableOutput, InsertColumnCommand, InsertRowCommand, InsertTableCommand, InsertTableLayoutCommand, MergeCellCommand, MergeCellsCommand, RemoveColumnCommand, RemoveRowCommand, SelectColumnCommand, SelectRowCommand, SetHeaderColumnCommand, SetHeaderRowCommand, TableTypeCommand, SplitCellCommand, ToggleTableCaptionCommand, TableCellBackgroundColorCommand, TableCellBorderColorCommand, TableCellBorderStyleCommand, TableCellBorderWidthCommand, TableCellHeightCommand, TableCellHorizontalAlignmentCommand, TableCellPaddingCommand, TableCellVerticalAlignmentCommand, TableCellWidthCommand, TableColumnWidthCommand, TableAlignmentCommand, TableBackgroundColorCommand, TableBorderColorCommand, TableBorderStyleCommand, TableBorderWidthCommand, TableHeightCommand, TableWidthCommand, TableCellTypeCommand, SetFooterRowCommand, TableScrollEditing } from "./index.js";
|
|
6
6
|
declare module "@ckeditor/ckeditor5-core" {
|
|
7
7
|
interface EditorConfig {
|
|
8
8
|
/**
|
|
@@ -32,6 +32,8 @@ declare module "@ckeditor/ckeditor5-core" {
|
|
|
32
32
|
[TableProperties.pluginName]: TableProperties;
|
|
33
33
|
[TablePropertiesEditing.pluginName]: TablePropertiesEditing;
|
|
34
34
|
[TablePropertiesUI.pluginName]: TablePropertiesUI;
|
|
35
|
+
[TableScroll.pluginName]: TableScroll;
|
|
36
|
+
[TableScrollEditing.pluginName]: TableScrollEditing;
|
|
35
37
|
[TableSelection.pluginName]: TableSelection;
|
|
36
38
|
[TableToolbar.pluginName]: TableToolbar;
|
|
37
39
|
[TableUI.pluginName]: TableUI;
|
|
@@ -69,6 +71,7 @@ declare module "@ckeditor/ckeditor5-core" {
|
|
|
69
71
|
tableCellPadding: TableCellPaddingCommand;
|
|
70
72
|
tableCellVerticalAlignment: TableCellVerticalAlignmentCommand;
|
|
71
73
|
tableCellWidth: TableCellWidthCommand;
|
|
74
|
+
tableColumnWidth: TableColumnWidthCommand;
|
|
72
75
|
tableCellType: TableCellTypeCommand;
|
|
73
76
|
tableAlignment: TableAlignmentCommand;
|
|
74
77
|
tableBackgroundColor: TableBackgroundColorCommand;
|
|
@@ -36,6 +36,10 @@ export declare class InsertTableCommand extends Command {
|
|
|
36
36
|
* @param options.footerRows The number of footer rows. If not provided it will default to
|
|
37
37
|
* {@link module:table/tableconfig~TableConfig#defaultFooters `config.table.defaultFooters`} table config.
|
|
38
38
|
* This option is ignored when {@link module:table/tableconfig~TableConfig#enableFooters `config.table.enableFooters`} is `false`.
|
|
39
|
+
* @param options.inheritTextFormattingAttributes Whether every empty cell should inherit the `copyOnEnter` text
|
|
40
|
+
* formatting attributes (e.g. bold, font color) that were uniformly active in the content right before
|
|
41
|
+
* the table, so that whichever cell the user starts typing in first continues that formatting. Defaults
|
|
42
|
+
* to `true`.
|
|
39
43
|
* @fires execute
|
|
40
44
|
*/
|
|
41
45
|
override execute(options?: {
|
|
@@ -44,5 +48,6 @@ export declare class InsertTableCommand extends Command {
|
|
|
44
48
|
headingRows?: number;
|
|
45
49
|
headingColumns?: number;
|
|
46
50
|
footerRows?: number;
|
|
51
|
+
inheritTextFormattingAttributes?: boolean;
|
|
47
52
|
}): void;
|
|
48
53
|
}
|
|
@@ -30,10 +30,15 @@ export declare class InsertTableLayoutCommand extends Command {
|
|
|
30
30
|
*
|
|
31
31
|
* @param options.rows The number of rows to create in the inserted table. Default value is 2.
|
|
32
32
|
* @param options.columns The number of columns to create in the inserted table. Default value is 2.
|
|
33
|
+
* @param options.inheritTextFormattingAttributes Whether every empty cell should inherit the `copyOnEnter` text
|
|
34
|
+
* formatting attributes (e.g. bold, font color) that were uniformly active in the content right before
|
|
35
|
+
* the table, so that whichever cell the user starts typing in first continues that formatting. Defaults
|
|
36
|
+
* to `true`.
|
|
33
37
|
* @fires execute
|
|
34
38
|
*/
|
|
35
39
|
override execute(options?: {
|
|
36
40
|
rows?: number;
|
|
37
41
|
columns?: number;
|
|
42
|
+
inheritTextFormattingAttributes?: boolean;
|
|
38
43
|
}): void;
|
|
39
44
|
}
|
|
@@ -12,7 +12,8 @@ import { Command, type Editor } from "@ckeditor/ckeditor5-core";
|
|
|
12
12
|
* The command is registered by {@link module:table/tableediting~TableEditing} as the `'splitTableCellVertically'`
|
|
13
13
|
* and `'splitTableCellHorizontally'` editor commands.
|
|
14
14
|
*
|
|
15
|
-
* You can split any cell vertically or horizontally by executing this command.
|
|
15
|
+
* You can split any cell vertically or horizontally by executing this command. When multiple cells are selected, each of them
|
|
16
|
+
* is split, and the whole operation is a single undo step. For example, to split the selected table cells vertically:
|
|
16
17
|
*
|
|
17
18
|
* ```ts
|
|
18
19
|
* editor.execute( 'splitTableCellVertically' );
|
package/dist/index-content.css
CHANGED
|
@@ -2,134 +2,133 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
:root {
|
|
6
|
+
--ck-content-table-style-spacing: 1.5em;
|
|
7
|
+
--ck-content-color-table-caption-background: #f7f7f7;
|
|
8
|
+
--ck-content-color-table-caption-text: #333;
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
.ck-content
|
|
10
|
-
text-align:
|
|
11
|
+
.ck-content .table th {
|
|
12
|
+
text-align: start;
|
|
11
13
|
}
|
|
12
14
|
|
|
13
|
-
.ck-content[dir="
|
|
14
|
-
text-align:
|
|
15
|
+
.ck-content[dir="rtl"] .table th {
|
|
16
|
+
text-align: right;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
|
-
.ck-content
|
|
18
|
-
|
|
19
|
+
.ck-content[dir="ltr"] .table th {
|
|
20
|
+
text-align: left;
|
|
19
21
|
}
|
|
20
22
|
|
|
21
|
-
.ck-content figure.table:not(.layout-table)
|
|
22
|
-
|
|
23
|
-
height:100%;
|
|
23
|
+
.ck-content figure.table:not(.layout-table) {
|
|
24
|
+
display: table;
|
|
24
25
|
}
|
|
25
26
|
|
|
26
|
-
.ck-content .table:not(.layout-table){
|
|
27
|
-
|
|
27
|
+
.ck-content figure.table:not(.layout-table) > table {
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: 100%;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
|
-
.ck-content
|
|
31
|
-
|
|
32
|
-
border-spacing:0;
|
|
33
|
-
border:1px double #b3b3b3;
|
|
32
|
+
.ck-content .table:not(.layout-table) {
|
|
33
|
+
margin: .9em auto;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table {
|
|
37
|
+
border-collapse: collapse;
|
|
38
|
+
border-spacing: 0;
|
|
39
|
+
border: 1px double #b3b3b3;
|
|
39
40
|
}
|
|
40
41
|
|
|
41
|
-
:is(:is(
|
|
42
|
-
|
|
42
|
+
:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th {
|
|
43
|
+
background: #0000000d;
|
|
44
|
+
font-weight: bold;
|
|
43
45
|
}
|
|
44
46
|
|
|
45
|
-
:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:
|
|
46
|
-
margin-
|
|
47
|
+
:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:first-of-type {
|
|
48
|
+
margin-top: 0;
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th{
|
|
50
|
-
|
|
51
|
-
min-width:2em;
|
|
52
|
-
padding:.4em;
|
|
51
|
+
:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:last-of-type {
|
|
52
|
+
margin-bottom: 0;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th {
|
|
56
|
+
border: 1px solid #bfbfbf;
|
|
57
|
+
min-width: 2em;
|
|
58
|
+
padding: .4em;
|
|
59
|
+
}
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
@media print {
|
|
62
|
+
.ck-content figure.table:not(.layout-table) {
|
|
63
|
+
width: fit-content;
|
|
64
|
+
height: fit-content;
|
|
63
65
|
}
|
|
64
|
-
}
|
|
65
66
|
|
|
66
|
-
.ck-content
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
.ck-content figure.table:not(.layout-table) > table {
|
|
68
|
+
height: initial;
|
|
69
|
+
}
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
.ck-content table.table.layout-table, .ck-content figure.table.layout-table
|
|
72
|
-
|
|
72
|
+
.ck-content table.table.layout-table, .ck-content figure.table.layout-table {
|
|
73
|
+
margin-top: 0;
|
|
74
|
+
margin-bottom: 0;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
+
.ck-content table.table.layout-table, .ck-content figure.table.layout-table > table {
|
|
78
|
+
border-spacing: 0;
|
|
77
79
|
}
|
|
78
80
|
|
|
79
|
-
.ck-content .table.table-style-align-left{
|
|
80
|
-
float:left;
|
|
81
|
-
margin-right:var(--ck-content-table-style-spacing);
|
|
81
|
+
.ck-content .table.table-style-align-left {
|
|
82
|
+
float: left;
|
|
83
|
+
margin-right: var(--ck-content-table-style-spacing);
|
|
82
84
|
}
|
|
83
85
|
|
|
84
|
-
.ck-content .table.table-style-align-right{
|
|
85
|
-
float:right;
|
|
86
|
-
margin-left:var(--ck-content-table-style-spacing);
|
|
86
|
+
.ck-content .table.table-style-align-right {
|
|
87
|
+
float: right;
|
|
88
|
+
margin-left: var(--ck-content-table-style-spacing);
|
|
87
89
|
}
|
|
88
90
|
|
|
89
|
-
.ck-content .table.table-style-align-center{
|
|
90
|
-
margin-left:auto;
|
|
91
|
-
margin-right:auto;
|
|
91
|
+
.ck-content .table.table-style-align-center {
|
|
92
|
+
margin-left: auto;
|
|
93
|
+
margin-right: auto;
|
|
92
94
|
}
|
|
93
95
|
|
|
94
|
-
.ck-content .table.table-style-block-align-left{
|
|
95
|
-
margin-left:0;
|
|
96
|
-
margin-right:auto;
|
|
96
|
+
.ck-content .table.table-style-block-align-left {
|
|
97
|
+
margin-left: 0;
|
|
98
|
+
margin-right: auto;
|
|
97
99
|
}
|
|
98
100
|
|
|
99
|
-
.ck-content .table.table-style-block-align-right{
|
|
100
|
-
margin-left:auto;
|
|
101
|
-
margin-right:0;
|
|
101
|
+
.ck-content .table.table-style-block-align-right {
|
|
102
|
+
margin-left: auto;
|
|
103
|
+
margin-right: 0;
|
|
102
104
|
}
|
|
103
105
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
106
|
+
.ck-content .table > figcaption, .ck-content figure.table > table > caption {
|
|
107
|
+
caption-side: top;
|
|
108
|
+
word-break: normal;
|
|
109
|
+
overflow-wrap: anywhere;
|
|
110
|
+
text-align: center;
|
|
111
|
+
color: var(--ck-content-color-table-caption-text);
|
|
112
|
+
background-color: var(--ck-content-color-table-caption-background);
|
|
113
|
+
outline-offset: -1px;
|
|
114
|
+
padding: .6em;
|
|
115
|
+
font-size: .75em;
|
|
116
|
+
display: table-caption;
|
|
107
117
|
}
|
|
108
118
|
|
|
109
|
-
|
|
110
|
-
caption
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
color:var(--ck-content-color-table-caption-text);
|
|
115
|
-
background-color:var(--ck-content-color-table-caption-background);
|
|
116
|
-
outline-offset:-1px;
|
|
117
|
-
padding:.6em;
|
|
118
|
-
font-size:.75em;
|
|
119
|
-
display:table-caption;
|
|
119
|
+
@media (forced-colors: active) {
|
|
120
|
+
.ck-content .table > figcaption, .ck-content figure.table > table > caption {
|
|
121
|
+
background-color: unset;
|
|
122
|
+
color: unset;
|
|
123
|
+
}
|
|
120
124
|
}
|
|
121
125
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
background-color:unset;
|
|
125
|
-
color:unset;
|
|
126
|
-
}
|
|
126
|
+
.ck-content .table .ck-table-resized {
|
|
127
|
+
table-layout: fixed;
|
|
127
128
|
}
|
|
128
129
|
|
|
129
|
-
.ck-content .table .ck-table
|
|
130
|
-
|
|
130
|
+
.ck-content .table td, .ck-content .table th {
|
|
131
|
+
overflow-wrap: break-word;
|
|
131
132
|
}
|
|
132
133
|
|
|
133
|
-
|
|
134
|
-
overflow-wrap:break-word;
|
|
135
|
-
}
|
|
134
|
+
/*# sourceMappingURL=index-content.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../theme/index-content.css","index-content.css"],"names":[],"mappings":"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M,CAAC,CAAC,IAAI;AACnB;;ADkCK,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,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A,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,MAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,KAAA,CAAA,CAAA,CAAA,EAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAAA,KAAA,CAAA,KAAA,CAAA,GAAA,CAAA,CAAA,MAAA,CAAA,KAAA,CAAA,CAAA,CAAA,CAAA,EAAA,CAAA,OAAA,CAA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","file":"index-content.css.map","sourcesContent":["/*\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n:root {\n\t/* The variable is used by both editor and content styles. Keep it in sync with the identical declaration in `tableproperties.css`. */\n\t--ck-content-table-style-spacing: 1.5em;\n\n\t/* The variable is used by both editor and content styles. Keep it in sync with the identical declaration in `tablecaption.css`. */\n\t--ck-content-color-table-caption-background: hsl(0, 0%, 97%);\n\t--ck-content-color-table-caption-text: hsl(0, 0%, 20%);\n}\n\n.ck-content {\n\t/* Ensure that table header text is aligned to the start by default. See https://github.com/ckeditor/ckeditor5/issues/19454. */\n\t& .table th {\n\t\ttext-align: start;\n\t}\n\n\t/* Text alignment of the table header should match the editor settings and override the native browser styling,\n\twhen content is available outside the editor. See https://github.com/ckeditor/ckeditor5/issues/6638. */\n\t&[dir=\"rtl\"] .table th {\n\t\ttext-align: right;\n\t}\n\n\t&[dir=\"ltr\"] .table th {\n\t\ttext-align: left;\n\t}\n\n\t& figure.table:not(.layout-table) {\n\t\tdisplay: table;\n\n\t\t& > table {\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\t}\n\n\t& .table:not(.layout-table) {\n\t\t/* Give the table widget some air and center it horizontally */\n\t\t/* The first value should be equal to --ck-spacing-large variable if used in the editor context\n\t\tto avoid the content jumping (See https://github.com/ckeditor/ckeditor5/issues/9825). */\n\t\tmargin: 0.9em auto;\n\t}\n\n\t& table.table:not(.layout-table),\n\t& figure.table:not(.layout-table) > table {\n\t\t/* The table cells should have slight borders */\n\t\tborder-collapse: collapse;\n\t\tborder-spacing: 0;\n\n\t\t/* The outer border of the table should be slightly darker than the inner lines.\n\t\tAlso see https://github.com/ckeditor/ckeditor5-table/issues/50. */\n\t\tborder: 1px double hsl(0, 0%, 70%);\n\n\t\t& > thead,\n\t\t& > tfoot,\n\t\t& > tbody {\n\t\t\t/* The linter is disabled here because linter is confused when resolving the `table.table:not(.layout-table)`\n\t\t\tand `figure.table:not(.layout-table) > table` selectors combined with below selectors.\n\t\t\tThere is no need to split it into two large structures with same code just to make linter happy. */\n\t\t\t& > tr {\n\t\t\t\t& > th {\n\t\t\t\t\tfont-weight: bold;\n\t\t\t\t\tbackground: hsla(0, 0%, 0%, 5%);\n\t\t\t\t}\n\n\t\t\t\t& > td,\n\t\t\t\t& > th {\n\t\t\t\t\t/* Opinionated table content styling: prevents content from shifting\n\t\t\t\t\t * when Enter is pressed in the first cell.\n\t\t\t\t\t * See: https://github.com/ckeditor/ckeditor5/pull/18801\n\t\t\t\t\t */\n\t\t\t\t\t& > p:first-of-type {\n\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t}\n\n\t\t\t\t\t/* Mirrors the rule above for the last paragraph to keep the\n\t\t\t\t\t * experience consistent with the first paragraph.\n\t\t\t\t\t *\n\t\t\t\t\t * Together, these rules prevent margins from appearing when a\n\t\t\t\t\t * bogus paragraph becomes a real paragraph after it receives line\n\t\t\t\t\t * height, text alignment, or other block style.\n\t\t\t\t\t *\n\t\t\t\t\t * See: https://github.com/ckeditor/ckeditor5/pull/18801\n\t\t\t\t\t */\n\t\t\t\t\t& > p:last-of-type {\n\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t}\n\n\t\t\t\t\tmin-width: 2em;\n\t\t\t\t\tpadding: 0.4em;\n\n\t\t\t\t\t/* The border is inherited from .ck-editor__nested-editable styles, so theoretically it's not necessary here.\n\t\t\t\t\tHowever, the border is a content style, so it should use .ck-content (so it works outside the editor).\n\t\t\t\t\tHence, the duplication. See https://github.com/ckeditor/ckeditor5/issues/6314 */\n\t\t\t\t\tborder: 1px solid hsl(0, 0%, 75%);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n@media print {\n\t.ck-content figure.table {\n\t\t/**\n\t\t * Sometimes Chrome incorrectly calculates the height of the last table row and some\n\t\t * of the content overlaps the paragraph that is placed directly after the table. It affects\n\t\t * the column split mode pagination calculation which causes mismatch between the print mode and\n\t\t * the preview mode.\n\t\t *\n\t\t * This issue happens only if:\n\t\t *\n\t\t * \t* The table is inside a figure element.\n\t\t * \t* The table has `display: table` style set.\n\t\t * \t* The block element is placed directly after the table.\n\t\t */\n\t\t&:not(.layout-table) {\n\t\t\twidth: fit-content;\n\t\t\theight: fit-content;\n\t\t}\n\n\t\t/**\n\t\t * Expanding the table to the full height of the parent container is necessary because tables\n\t\t * are rendered inside <figure> elements, which is kinda buggy in table height calculation.\n\t\t * While setting `height: 100%` fixes the issue in the editing mode described here:\n\t\t * https://github.com/ckeditor/ckeditor5/issues/6186\n\t\t *\n\t\t * it's causing another issue with the table height in the print preview mode here:\n\t\t * https://github.com/ckeditor/ckeditor5/issues/16856\n\t\t *\n\t\t * For now, resetting the height to `initial` in the print mode works as a workaround.\n\t\t */\n\t\t&:not(.layout-table) > table {\n\t\t\theight: initial;\n\t\t}\n\t}\n}\n\n.ck-content {\n\t& table.table.layout-table,\n\t& figure.table.layout-table {\n\t\t/* Do not reserve space above and below the layout table. */\n\t\tmargin-top: 0;\n\t\tmargin-bottom: 0;\n\t}\n\n\t& table.table.layout-table {\n\t\tborder-spacing: 0;\n\t}\n\n\t& figure.table.layout-table > table {\n\t\tborder-spacing: 0;\n\t}\n}\n\n.ck-content {\n\t& .table {\n\t\t&.table-style-align-left {\n\t\t\tfloat: left;\n\t\t\tmargin-right: var(--ck-content-table-style-spacing);\n\t\t}\n\n\t\t&.table-style-align-right {\n\t\t\tfloat: right;\n\t\t\tmargin-left: var(--ck-content-table-style-spacing);\n\t\t}\n\n\t\t&.table-style-align-center {\n\t\t\tmargin-left: auto;\n\t\t\tmargin-right: auto;\n\t\t}\n\n\t\t&.table-style-block-align-left {\n\t\t\tmargin-left: 0;\n\t\t\tmargin-right: auto;\n\t\t}\n\n\t\t&.table-style-block-align-right {\n\t\t\tmargin-left: auto;\n\t\t\tmargin-right: 0;\n\t\t}\n\t}\n}\n\n.ck-content .table > figcaption,\n.ck-content figure.table > table > caption {\n\tdisplay: table-caption;\n\tcaption-side: top;\n\tword-break: normal;\n\toverflow-wrap: anywhere;\n\ttext-align: center;\n\tcolor: var(--ck-content-color-table-caption-text);\n\tbackground-color: var(--ck-content-color-table-caption-background);\n\tpadding: .6em;\n\tfont-size: .75em;\n\toutline-offset: -1px;\n\n\t/* Improve placeholder rendering in high-constrast mode (https://github.com/ckeditor/ckeditor5/issues/14907). */\n\t@media (forced-colors: active) {\n\t\tbackground-color: unset;\n\t\tcolor: unset;\n\t}\n}\n\n.ck-content .table .ck-table-resized {\n\ttable-layout: fixed;\n}\n\n.ck-content .table td,\n.ck-content .table th {\n\t/* To prevent text overflowing beyond its cell when columns are resized by resize handler\n\t(https://github.com/ckeditor/ckeditor5/pull/14379#issuecomment-1589460978). */\n\toverflow-wrap: break-word;\n}\n",":root {\n --ck-content-table-style-spacing: 1.5em;\n --ck-content-color-table-caption-background: #f7f7f7;\n --ck-content-color-table-caption-text: #333;\n}\n\n.ck-content .table th {\n text-align: start;\n}\n\n.ck-content[dir=\"rtl\"] .table th {\n text-align: right;\n}\n\n.ck-content[dir=\"ltr\"] .table th {\n text-align: left;\n}\n\n.ck-content figure.table:not(.layout-table) {\n display: table;\n}\n\n.ck-content figure.table:not(.layout-table) > table {\n width: 100%;\n height: 100%;\n}\n\n.ck-content .table:not(.layout-table) {\n margin: .9em auto;\n}\n\n.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table {\n border-collapse: collapse;\n border-spacing: 0;\n border: 1px double #b3b3b3;\n}\n\n:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th {\n background: #0000000d;\n font-weight: bold;\n}\n\n:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:first-of-type {\n margin-top: 0;\n}\n\n:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:last-of-type {\n margin-bottom: 0;\n}\n\n:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th {\n border: 1px solid #bfbfbf;\n min-width: 2em;\n padding: .4em;\n}\n\n@media print {\n .ck-content figure.table:not(.layout-table) {\n width: fit-content;\n height: fit-content;\n }\n\n .ck-content figure.table:not(.layout-table) > table {\n height: initial;\n }\n}\n\n.ck-content table.table.layout-table, .ck-content figure.table.layout-table {\n margin-top: 0;\n margin-bottom: 0;\n}\n\n.ck-content table.table.layout-table, .ck-content figure.table.layout-table > table {\n border-spacing: 0;\n}\n\n.ck-content .table.table-style-align-left {\n float: left;\n margin-right: var(--ck-content-table-style-spacing);\n}\n\n.ck-content .table.table-style-align-right {\n float: right;\n margin-left: var(--ck-content-table-style-spacing);\n}\n\n.ck-content .table.table-style-align-center {\n margin-left: auto;\n margin-right: auto;\n}\n\n.ck-content .table.table-style-block-align-left {\n margin-left: 0;\n margin-right: auto;\n}\n\n.ck-content .table.table-style-block-align-right {\n margin-left: auto;\n margin-right: 0;\n}\n\n.ck-content .table > figcaption, .ck-content figure.table > table > caption {\n caption-side: top;\n word-break: normal;\n overflow-wrap: anywhere;\n text-align: center;\n color: var(--ck-content-color-table-caption-text);\n background-color: var(--ck-content-color-table-caption-background);\n outline-offset: -1px;\n padding: .6em;\n font-size: .75em;\n display: table-caption;\n}\n\n@media (forced-colors: active) {\n .ck-content .table > figcaption, .ck-content figure.table > table > caption {\n background-color: unset;\n color: unset;\n }\n}\n\n.ck-content .table .ck-table-resized {\n table-layout: fixed;\n}\n\n.ck-content .table td, .ck-content .table th {\n overflow-wrap: break-word;\n}\n\n/*# sourceMappingURL=index-content.css.map */"]}
|