@atlaskit/editor-plugin-table 5.4.5 → 5.4.7
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/CHANGELOG.md +12 -0
- package/dist/cjs/plugins/table/commands/insert.js +12 -2
- package/dist/cjs/plugins/table/commands/misc.js +49 -1
- package/dist/cjs/plugins/table/index.js +46 -35
- package/dist/cjs/plugins/table/nodeviews/TableComponent.js +12 -16
- package/dist/cjs/plugins/table/nodeviews/TableResizer.js +1 -1
- package/dist/cjs/plugins/table/nodeviews/table.js +3 -1
- package/dist/cjs/plugins/table/pm-plugins/analytics/actions.js +14 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/commands.js +45 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/plugin-factory.js +13 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/plugin-key.js +8 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/plugin.js +74 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/reducer.js +26 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/types.js +13 -0
- package/dist/cjs/plugins/table/pm-plugins/analytics/utils/moved-event.js +38 -0
- package/dist/cjs/plugins/table/pm-plugins/main.js +1 -1
- package/dist/cjs/plugins/table/pm-plugins/table-analytics.js +1 -1
- package/dist/es2019/plugins/table/commands/insert.js +12 -3
- package/dist/es2019/plugins/table/commands/misc.js +49 -0
- package/dist/es2019/plugins/table/index.js +14 -4
- package/dist/es2019/plugins/table/nodeviews/TableComponent.js +13 -17
- package/dist/es2019/plugins/table/nodeviews/TableResizer.js +1 -1
- package/dist/es2019/plugins/table/nodeviews/table.js +3 -1
- package/dist/es2019/plugins/table/pm-plugins/analytics/actions.js +8 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/commands.js +33 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/plugin-factory.js +8 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/plugin-key.js +2 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/plugin.js +72 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/reducer.js +21 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/types.js +7 -0
- package/dist/es2019/plugins/table/pm-plugins/analytics/utils/moved-event.js +30 -0
- package/dist/es2019/plugins/table/pm-plugins/main.js +1 -1
- package/dist/es2019/plugins/table/pm-plugins/table-analytics.js +1 -1
- package/dist/esm/plugins/table/commands/insert.js +12 -3
- package/dist/esm/plugins/table/commands/misc.js +48 -0
- package/dist/esm/plugins/table/index.js +43 -32
- package/dist/esm/plugins/table/nodeviews/TableComponent.js +13 -17
- package/dist/esm/plugins/table/nodeviews/TableResizer.js +1 -1
- package/dist/esm/plugins/table/nodeviews/table.js +3 -1
- package/dist/esm/plugins/table/pm-plugins/analytics/actions.js +8 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/commands.js +39 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/plugin-factory.js +8 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/plugin-key.js +2 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/plugin.js +68 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/reducer.js +19 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/types.js +7 -0
- package/dist/esm/plugins/table/pm-plugins/analytics/utils/moved-event.js +31 -0
- package/dist/esm/plugins/table/pm-plugins/main.js +1 -1
- package/dist/esm/plugins/table/pm-plugins/table-analytics.js +1 -1
- package/dist/types/plugins/table/commands/misc.d.ts +5 -1
- package/dist/types/plugins/table/nodeviews/TableComponent.d.ts +2 -0
- package/dist/types/plugins/table/nodeviews/table.d.ts +2 -1
- package/dist/types/plugins/table/nodeviews/types.d.ts +2 -0
- package/dist/types/plugins/table/pm-plugins/analytics/actions.d.ts +17 -0
- package/dist/types/plugins/table/pm-plugins/analytics/commands.d.ts +5 -0
- package/dist/types/plugins/table/pm-plugins/analytics/plugin-factory.d.ts +1 -0
- package/dist/types/plugins/table/pm-plugins/analytics/plugin-key.d.ts +3 -0
- package/dist/types/plugins/table/pm-plugins/analytics/plugin.d.ts +4 -0
- package/dist/types/plugins/table/pm-plugins/analytics/reducer.d.ts +3 -0
- package/dist/types/plugins/table/pm-plugins/analytics/types.d.ts +11 -0
- package/dist/types/plugins/table/pm-plugins/analytics/utils/moved-event.d.ts +6 -0
- package/dist/types-ts4.5/plugins/table/commands/misc.d.ts +5 -1
- package/dist/types-ts4.5/plugins/table/nodeviews/TableComponent.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/nodeviews/table.d.ts +2 -1
- package/dist/types-ts4.5/plugins/table/nodeviews/types.d.ts +2 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/actions.d.ts +17 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/commands.d.ts +5 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/plugin-factory.d.ts +1 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/plugin-key.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/plugin.d.ts +4 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/reducer.d.ts +3 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/types.d.ts +11 -0
- package/dist/types-ts4.5/plugins/table/pm-plugins/analytics/utils/moved-event.d.ts +6 -0
- package/package.json +7 -4
- package/src/__tests__/unit/index-with-fake-timers.ts +1 -0
- package/src/__tests__/unit/nodeviews/table.ts +1 -0
- package/src/__tests__/unit/pm-plugins/analytics.ts +327 -0
- package/src/plugins/table/commands/insert.ts +23 -2
- package/src/plugins/table/commands/misc.ts +84 -1
- package/src/plugins/table/index.tsx +13 -6
- package/src/plugins/table/nodeviews/TableComponent.tsx +15 -22
- package/src/plugins/table/nodeviews/TableResizer.tsx +1 -2
- package/src/plugins/table/nodeviews/table.tsx +4 -0
- package/src/plugins/table/nodeviews/types.ts +2 -0
- package/src/plugins/table/pm-plugins/analytics/actions.ts +23 -0
- package/src/plugins/table/pm-plugins/analytics/commands.ts +53 -0
- package/src/plugins/table/pm-plugins/analytics/plugin-factory.ts +7 -0
- package/src/plugins/table/pm-plugins/analytics/plugin-key.ts +7 -0
- package/src/plugins/table/pm-plugins/analytics/plugin.ts +98 -0
- package/src/plugins/table/pm-plugins/analytics/reducer.ts +27 -0
- package/src/plugins/table/pm-plugins/analytics/types.ts +20 -0
- package/src/plugins/table/pm-plugins/analytics/utils/moved-event.ts +51 -0
- package/src/plugins/table/pm-plugins/main.ts +1 -0
- package/src/plugins/table/pm-plugins/table-analytics.ts +1 -1
- package/tsconfig.dev.json +3 -3
- package/src/__tests__/integration/__fixtures__/auto-size-documents.ts +0 -434
- package/src/__tests__/integration/__fixtures__/basic-table-with-merged-cell.ts +0 -112
- package/src/__tests__/integration/__fixtures__/basic-table.ts +0 -120
- package/src/__tests__/integration/__fixtures__/empty-layout.ts +0 -35
- package/src/__tests__/integration/__fixtures__/empty-paragraph-underneath-table.ts +0 -396
- package/src/__tests__/integration/__fixtures__/even-columns.ts +0 -493
- package/src/__tests__/integration/__fixtures__/layout-documents.ts +0 -606
- package/src/__tests__/integration/__fixtures__/merged-rows-and-cols-document.ts +0 -343
- package/src/__tests__/integration/__fixtures__/nested-in-expand.ts +0 -129
- package/src/__tests__/integration/__fixtures__/nested-in-extension.ts +0 -163
- package/src/__tests__/integration/__fixtures__/paragraph-and-table-adf.ts +0 -132
- package/src/__tests__/integration/__fixtures__/resize-documents.ts +0 -1605
- package/src/__tests__/integration/__fixtures__/scale.ts +0 -825
- package/src/__tests__/integration/__fixtures__/table-inside-layout.ts +0 -145
- package/src/__tests__/integration/__fixtures__/table-with-min-width-columns-document.ts +0 -175
- package/src/__tests__/integration/__fixtures__/table-with-multiline-date.adf.json +0 -168
- package/src/__tests__/integration/__fixtures__/table-with-text-and-empty-row.ts +0 -216
- package/src/__tests__/integration/__snapshots__/copy-button.ts.snap +0 -423
- package/src/__tests__/integration/copy-button.ts +0 -179
- package/src/__tests__/integration/table-controls-selection.ts +0 -71
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
export const table = {
|
|
2
|
-
version: 1,
|
|
3
|
-
type: 'doc',
|
|
4
|
-
content: [
|
|
5
|
-
{
|
|
6
|
-
type: 'layoutSection',
|
|
7
|
-
content: [
|
|
8
|
-
{
|
|
9
|
-
type: 'layoutColumn',
|
|
10
|
-
attrs: {
|
|
11
|
-
width: 50,
|
|
12
|
-
},
|
|
13
|
-
content: [
|
|
14
|
-
{
|
|
15
|
-
type: 'paragraph',
|
|
16
|
-
content: [],
|
|
17
|
-
},
|
|
18
|
-
],
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
type: 'layoutColumn',
|
|
22
|
-
attrs: {
|
|
23
|
-
width: 50,
|
|
24
|
-
},
|
|
25
|
-
content: [
|
|
26
|
-
{
|
|
27
|
-
type: 'table',
|
|
28
|
-
attrs: {
|
|
29
|
-
isNumberColumnEnabled: false,
|
|
30
|
-
layout: 'default',
|
|
31
|
-
},
|
|
32
|
-
content: [
|
|
33
|
-
{
|
|
34
|
-
type: 'tableRow',
|
|
35
|
-
content: [
|
|
36
|
-
{
|
|
37
|
-
type: 'tableHeader',
|
|
38
|
-
attrs: {},
|
|
39
|
-
content: [
|
|
40
|
-
{
|
|
41
|
-
type: 'paragraph',
|
|
42
|
-
content: [],
|
|
43
|
-
},
|
|
44
|
-
],
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
type: 'tableHeader',
|
|
48
|
-
attrs: {},
|
|
49
|
-
content: [
|
|
50
|
-
{
|
|
51
|
-
type: 'paragraph',
|
|
52
|
-
content: [],
|
|
53
|
-
},
|
|
54
|
-
],
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
type: 'tableHeader',
|
|
58
|
-
attrs: {},
|
|
59
|
-
content: [
|
|
60
|
-
{
|
|
61
|
-
type: 'paragraph',
|
|
62
|
-
content: [],
|
|
63
|
-
},
|
|
64
|
-
],
|
|
65
|
-
},
|
|
66
|
-
],
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
type: 'tableRow',
|
|
70
|
-
content: [
|
|
71
|
-
{
|
|
72
|
-
type: 'tableCell',
|
|
73
|
-
attrs: {},
|
|
74
|
-
content: [
|
|
75
|
-
{
|
|
76
|
-
type: 'paragraph',
|
|
77
|
-
content: [],
|
|
78
|
-
},
|
|
79
|
-
],
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
type: 'tableCell',
|
|
83
|
-
attrs: {},
|
|
84
|
-
content: [
|
|
85
|
-
{
|
|
86
|
-
type: 'paragraph',
|
|
87
|
-
content: [],
|
|
88
|
-
},
|
|
89
|
-
],
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
type: 'tableCell',
|
|
93
|
-
attrs: {},
|
|
94
|
-
content: [
|
|
95
|
-
{
|
|
96
|
-
type: 'paragraph',
|
|
97
|
-
content: [],
|
|
98
|
-
},
|
|
99
|
-
],
|
|
100
|
-
},
|
|
101
|
-
],
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
type: 'tableRow',
|
|
105
|
-
content: [
|
|
106
|
-
{
|
|
107
|
-
type: 'tableCell',
|
|
108
|
-
attrs: {},
|
|
109
|
-
content: [
|
|
110
|
-
{
|
|
111
|
-
type: 'paragraph',
|
|
112
|
-
content: [],
|
|
113
|
-
},
|
|
114
|
-
],
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
type: 'tableCell',
|
|
118
|
-
attrs: {},
|
|
119
|
-
content: [
|
|
120
|
-
{
|
|
121
|
-
type: 'paragraph',
|
|
122
|
-
content: [],
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
type: 'tableCell',
|
|
128
|
-
attrs: {},
|
|
129
|
-
content: [
|
|
130
|
-
{
|
|
131
|
-
type: 'paragraph',
|
|
132
|
-
content: [],
|
|
133
|
-
},
|
|
134
|
-
],
|
|
135
|
-
},
|
|
136
|
-
],
|
|
137
|
-
},
|
|
138
|
-
],
|
|
139
|
-
},
|
|
140
|
-
],
|
|
141
|
-
},
|
|
142
|
-
],
|
|
143
|
-
},
|
|
144
|
-
],
|
|
145
|
-
};
|
|
@@ -1,175 +0,0 @@
|
|
|
1
|
-
export const tableWithMinWidthColumnsDocument = {
|
|
2
|
-
version: 1,
|
|
3
|
-
type: 'doc',
|
|
4
|
-
content: [
|
|
5
|
-
{
|
|
6
|
-
type: 'table',
|
|
7
|
-
attrs: {
|
|
8
|
-
isNumberColumnEnabled: false,
|
|
9
|
-
layout: 'default',
|
|
10
|
-
localId: 'abc-123',
|
|
11
|
-
},
|
|
12
|
-
content: [
|
|
13
|
-
{
|
|
14
|
-
type: 'tableRow',
|
|
15
|
-
content: [
|
|
16
|
-
{
|
|
17
|
-
type: 'tableHeader',
|
|
18
|
-
attrs: {
|
|
19
|
-
colwidth: [48],
|
|
20
|
-
},
|
|
21
|
-
content: [
|
|
22
|
-
{
|
|
23
|
-
type: 'paragraph',
|
|
24
|
-
content: [],
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
type: 'tableHeader',
|
|
30
|
-
attrs: {
|
|
31
|
-
colwidth: [48],
|
|
32
|
-
},
|
|
33
|
-
content: [
|
|
34
|
-
{
|
|
35
|
-
type: 'paragraph',
|
|
36
|
-
content: [],
|
|
37
|
-
},
|
|
38
|
-
],
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
type: 'tableHeader',
|
|
42
|
-
attrs: {
|
|
43
|
-
colwidth: [48],
|
|
44
|
-
},
|
|
45
|
-
content: [
|
|
46
|
-
{
|
|
47
|
-
type: 'paragraph',
|
|
48
|
-
content: [],
|
|
49
|
-
},
|
|
50
|
-
],
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
type: 'tableHeader',
|
|
54
|
-
attrs: {
|
|
55
|
-
colwidth: [535],
|
|
56
|
-
},
|
|
57
|
-
content: [
|
|
58
|
-
{
|
|
59
|
-
type: 'paragraph',
|
|
60
|
-
content: [],
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
},
|
|
64
|
-
],
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
type: 'tableRow',
|
|
68
|
-
content: [
|
|
69
|
-
{
|
|
70
|
-
type: 'tableCell',
|
|
71
|
-
attrs: {
|
|
72
|
-
colwidth: [48],
|
|
73
|
-
},
|
|
74
|
-
content: [
|
|
75
|
-
{
|
|
76
|
-
type: 'paragraph',
|
|
77
|
-
content: [],
|
|
78
|
-
},
|
|
79
|
-
],
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
type: 'tableCell',
|
|
83
|
-
attrs: {
|
|
84
|
-
colwidth: [48],
|
|
85
|
-
},
|
|
86
|
-
content: [
|
|
87
|
-
{
|
|
88
|
-
type: 'paragraph',
|
|
89
|
-
content: [],
|
|
90
|
-
},
|
|
91
|
-
],
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
type: 'tableCell',
|
|
95
|
-
attrs: {
|
|
96
|
-
colwidth: [48],
|
|
97
|
-
},
|
|
98
|
-
content: [
|
|
99
|
-
{
|
|
100
|
-
type: 'paragraph',
|
|
101
|
-
content: [],
|
|
102
|
-
},
|
|
103
|
-
],
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
type: 'tableCell',
|
|
107
|
-
attrs: {
|
|
108
|
-
colwidth: [535],
|
|
109
|
-
},
|
|
110
|
-
content: [
|
|
111
|
-
{
|
|
112
|
-
type: 'paragraph',
|
|
113
|
-
content: [],
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
},
|
|
117
|
-
],
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
type: 'tableRow',
|
|
121
|
-
content: [
|
|
122
|
-
{
|
|
123
|
-
type: 'tableCell',
|
|
124
|
-
attrs: {
|
|
125
|
-
colwidth: [48],
|
|
126
|
-
},
|
|
127
|
-
content: [
|
|
128
|
-
{
|
|
129
|
-
type: 'paragraph',
|
|
130
|
-
content: [],
|
|
131
|
-
},
|
|
132
|
-
],
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
type: 'tableCell',
|
|
136
|
-
attrs: {
|
|
137
|
-
colwidth: [48],
|
|
138
|
-
},
|
|
139
|
-
content: [
|
|
140
|
-
{
|
|
141
|
-
type: 'paragraph',
|
|
142
|
-
content: [],
|
|
143
|
-
},
|
|
144
|
-
],
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
type: 'tableCell',
|
|
148
|
-
attrs: {
|
|
149
|
-
colwidth: [48],
|
|
150
|
-
},
|
|
151
|
-
content: [
|
|
152
|
-
{
|
|
153
|
-
type: 'paragraph',
|
|
154
|
-
content: [],
|
|
155
|
-
},
|
|
156
|
-
],
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
type: 'tableCell',
|
|
160
|
-
attrs: {
|
|
161
|
-
colwidth: [535],
|
|
162
|
-
},
|
|
163
|
-
content: [
|
|
164
|
-
{
|
|
165
|
-
type: 'paragraph',
|
|
166
|
-
content: [],
|
|
167
|
-
},
|
|
168
|
-
],
|
|
169
|
-
},
|
|
170
|
-
],
|
|
171
|
-
},
|
|
172
|
-
],
|
|
173
|
-
},
|
|
174
|
-
],
|
|
175
|
-
};
|
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"type": "doc",
|
|
4
|
-
"content": [
|
|
5
|
-
{
|
|
6
|
-
"type": "table",
|
|
7
|
-
"attrs": {
|
|
8
|
-
"isNumberColumnEnabled": false,
|
|
9
|
-
"layout": "default",
|
|
10
|
-
"localId": "b1db8b12-65aa-40a4-b3ab-74cee4a7069b"
|
|
11
|
-
},
|
|
12
|
-
"content": [
|
|
13
|
-
{
|
|
14
|
-
"type": "tableRow",
|
|
15
|
-
"content": [
|
|
16
|
-
{
|
|
17
|
-
"type": "tableHeader",
|
|
18
|
-
"attrs": {
|
|
19
|
-
"colwidth": [
|
|
20
|
-
253
|
|
21
|
-
]
|
|
22
|
-
},
|
|
23
|
-
"content": [
|
|
24
|
-
{
|
|
25
|
-
"type": "paragraph",
|
|
26
|
-
"content": []
|
|
27
|
-
}
|
|
28
|
-
]
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"type": "tableHeader",
|
|
32
|
-
"attrs": {
|
|
33
|
-
"colwidth": [
|
|
34
|
-
405
|
|
35
|
-
]
|
|
36
|
-
},
|
|
37
|
-
"content": [
|
|
38
|
-
{
|
|
39
|
-
"type": "paragraph",
|
|
40
|
-
"content": []
|
|
41
|
-
}
|
|
42
|
-
]
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"type": "tableHeader",
|
|
46
|
-
"attrs": {
|
|
47
|
-
"colwidth": [
|
|
48
|
-
101
|
|
49
|
-
]
|
|
50
|
-
},
|
|
51
|
-
"content": [
|
|
52
|
-
{
|
|
53
|
-
"type": "paragraph",
|
|
54
|
-
"content": []
|
|
55
|
-
}
|
|
56
|
-
]
|
|
57
|
-
}
|
|
58
|
-
]
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"type": "tableRow",
|
|
62
|
-
"content": [
|
|
63
|
-
{
|
|
64
|
-
"type": "tableCell",
|
|
65
|
-
"attrs": {
|
|
66
|
-
"colwidth": [
|
|
67
|
-
253
|
|
68
|
-
]
|
|
69
|
-
},
|
|
70
|
-
"content": [
|
|
71
|
-
{
|
|
72
|
-
"type": "paragraph",
|
|
73
|
-
"content": []
|
|
74
|
-
}
|
|
75
|
-
]
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"type": "tableCell",
|
|
79
|
-
"attrs": {
|
|
80
|
-
"colwidth": [
|
|
81
|
-
405
|
|
82
|
-
]
|
|
83
|
-
},
|
|
84
|
-
"content": [
|
|
85
|
-
{
|
|
86
|
-
"type": "paragraph",
|
|
87
|
-
"content": []
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"type": "tableCell",
|
|
93
|
-
"attrs": {
|
|
94
|
-
"colwidth": [
|
|
95
|
-
101
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
"content": [
|
|
99
|
-
{
|
|
100
|
-
"type": "paragraph",
|
|
101
|
-
"content": [
|
|
102
|
-
{
|
|
103
|
-
"type": "date",
|
|
104
|
-
"attrs": {
|
|
105
|
-
"timestamp": "1659484800000"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"type": "text",
|
|
110
|
-
"text": " "
|
|
111
|
-
}
|
|
112
|
-
]
|
|
113
|
-
}
|
|
114
|
-
]
|
|
115
|
-
}
|
|
116
|
-
]
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"type": "tableRow",
|
|
120
|
-
"content": [
|
|
121
|
-
{
|
|
122
|
-
"type": "tableCell",
|
|
123
|
-
"attrs": {
|
|
124
|
-
"colwidth": [
|
|
125
|
-
253
|
|
126
|
-
]
|
|
127
|
-
},
|
|
128
|
-
"content": [
|
|
129
|
-
{
|
|
130
|
-
"type": "paragraph",
|
|
131
|
-
"content": []
|
|
132
|
-
}
|
|
133
|
-
]
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"type": "tableCell",
|
|
137
|
-
"attrs": {
|
|
138
|
-
"colwidth": [
|
|
139
|
-
405
|
|
140
|
-
]
|
|
141
|
-
},
|
|
142
|
-
"content": [
|
|
143
|
-
{
|
|
144
|
-
"type": "paragraph",
|
|
145
|
-
"content": []
|
|
146
|
-
}
|
|
147
|
-
]
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"type": "tableCell",
|
|
151
|
-
"attrs": {
|
|
152
|
-
"colwidth": [
|
|
153
|
-
101
|
|
154
|
-
]
|
|
155
|
-
},
|
|
156
|
-
"content": [
|
|
157
|
-
{
|
|
158
|
-
"type": "paragraph",
|
|
159
|
-
"content": []
|
|
160
|
-
}
|
|
161
|
-
]
|
|
162
|
-
}
|
|
163
|
-
]
|
|
164
|
-
}
|
|
165
|
-
]
|
|
166
|
-
}
|
|
167
|
-
]
|
|
168
|
-
}
|
|
@@ -1,216 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
version: 1,
|
|
3
|
-
type: 'doc',
|
|
4
|
-
content: [
|
|
5
|
-
{
|
|
6
|
-
type: 'table',
|
|
7
|
-
attrs: {
|
|
8
|
-
isNumberColumnEnabled: false,
|
|
9
|
-
layout: 'default',
|
|
10
|
-
localId: 'f37fd7b7-a3e6-4061-b2c2-c5074e766225',
|
|
11
|
-
},
|
|
12
|
-
content: [
|
|
13
|
-
{
|
|
14
|
-
type: 'tableRow',
|
|
15
|
-
content: [
|
|
16
|
-
{
|
|
17
|
-
type: 'tableHeader',
|
|
18
|
-
attrs: {},
|
|
19
|
-
content: [
|
|
20
|
-
{
|
|
21
|
-
type: 'paragraph',
|
|
22
|
-
content: [
|
|
23
|
-
{
|
|
24
|
-
type: 'text',
|
|
25
|
-
text: 'hello',
|
|
26
|
-
marks: [
|
|
27
|
-
{
|
|
28
|
-
type: 'strong',
|
|
29
|
-
},
|
|
30
|
-
],
|
|
31
|
-
},
|
|
32
|
-
],
|
|
33
|
-
},
|
|
34
|
-
],
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
type: 'tableHeader',
|
|
38
|
-
attrs: {},
|
|
39
|
-
content: [
|
|
40
|
-
{
|
|
41
|
-
type: 'paragraph',
|
|
42
|
-
content: [
|
|
43
|
-
{
|
|
44
|
-
type: 'text',
|
|
45
|
-
text: 'hello',
|
|
46
|
-
marks: [
|
|
47
|
-
{
|
|
48
|
-
type: 'strong',
|
|
49
|
-
},
|
|
50
|
-
],
|
|
51
|
-
},
|
|
52
|
-
],
|
|
53
|
-
},
|
|
54
|
-
],
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
type: 'tableHeader',
|
|
58
|
-
attrs: {},
|
|
59
|
-
content: [
|
|
60
|
-
{
|
|
61
|
-
type: 'paragraph',
|
|
62
|
-
content: [
|
|
63
|
-
{
|
|
64
|
-
type: 'text',
|
|
65
|
-
text: 'hello',
|
|
66
|
-
marks: [
|
|
67
|
-
{
|
|
68
|
-
type: 'strong',
|
|
69
|
-
},
|
|
70
|
-
],
|
|
71
|
-
},
|
|
72
|
-
],
|
|
73
|
-
},
|
|
74
|
-
],
|
|
75
|
-
},
|
|
76
|
-
],
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
type: 'tableRow',
|
|
80
|
-
content: [
|
|
81
|
-
{
|
|
82
|
-
type: 'tableCell',
|
|
83
|
-
attrs: {},
|
|
84
|
-
content: [
|
|
85
|
-
{
|
|
86
|
-
type: 'paragraph',
|
|
87
|
-
content: [
|
|
88
|
-
{
|
|
89
|
-
type: 'text',
|
|
90
|
-
text: 'hello',
|
|
91
|
-
},
|
|
92
|
-
],
|
|
93
|
-
},
|
|
94
|
-
],
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
type: 'tableCell',
|
|
98
|
-
attrs: {},
|
|
99
|
-
content: [
|
|
100
|
-
{
|
|
101
|
-
type: 'paragraph',
|
|
102
|
-
content: [
|
|
103
|
-
{
|
|
104
|
-
type: 'text',
|
|
105
|
-
text: 'hello',
|
|
106
|
-
},
|
|
107
|
-
],
|
|
108
|
-
},
|
|
109
|
-
],
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
type: 'tableCell',
|
|
113
|
-
attrs: {},
|
|
114
|
-
content: [
|
|
115
|
-
{
|
|
116
|
-
type: 'paragraph',
|
|
117
|
-
content: [
|
|
118
|
-
{
|
|
119
|
-
type: 'text',
|
|
120
|
-
text: 'hello',
|
|
121
|
-
},
|
|
122
|
-
],
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
},
|
|
126
|
-
],
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
type: 'tableRow',
|
|
130
|
-
content: [
|
|
131
|
-
{
|
|
132
|
-
type: 'tableCell',
|
|
133
|
-
attrs: {},
|
|
134
|
-
content: [
|
|
135
|
-
{
|
|
136
|
-
type: 'paragraph',
|
|
137
|
-
content: [
|
|
138
|
-
{
|
|
139
|
-
type: 'text',
|
|
140
|
-
text: 'hello',
|
|
141
|
-
},
|
|
142
|
-
],
|
|
143
|
-
},
|
|
144
|
-
],
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
type: 'tableCell',
|
|
148
|
-
attrs: {},
|
|
149
|
-
content: [
|
|
150
|
-
{
|
|
151
|
-
type: 'paragraph',
|
|
152
|
-
content: [
|
|
153
|
-
{
|
|
154
|
-
type: 'text',
|
|
155
|
-
text: 'hello',
|
|
156
|
-
},
|
|
157
|
-
],
|
|
158
|
-
},
|
|
159
|
-
],
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
type: 'tableCell',
|
|
163
|
-
attrs: {},
|
|
164
|
-
content: [
|
|
165
|
-
{
|
|
166
|
-
type: 'paragraph',
|
|
167
|
-
content: [
|
|
168
|
-
{
|
|
169
|
-
type: 'text',
|
|
170
|
-
text: 'hello',
|
|
171
|
-
},
|
|
172
|
-
],
|
|
173
|
-
},
|
|
174
|
-
],
|
|
175
|
-
},
|
|
176
|
-
],
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
type: 'tableRow',
|
|
180
|
-
content: [
|
|
181
|
-
{
|
|
182
|
-
type: 'tableCell',
|
|
183
|
-
attrs: {},
|
|
184
|
-
content: [
|
|
185
|
-
{
|
|
186
|
-
type: 'paragraph',
|
|
187
|
-
content: [],
|
|
188
|
-
},
|
|
189
|
-
],
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
type: 'tableCell',
|
|
193
|
-
attrs: {},
|
|
194
|
-
content: [
|
|
195
|
-
{
|
|
196
|
-
type: 'paragraph',
|
|
197
|
-
content: [],
|
|
198
|
-
},
|
|
199
|
-
],
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
type: 'tableCell',
|
|
203
|
-
attrs: {},
|
|
204
|
-
content: [
|
|
205
|
-
{
|
|
206
|
-
type: 'paragraph',
|
|
207
|
-
content: [],
|
|
208
|
-
},
|
|
209
|
-
],
|
|
210
|
-
},
|
|
211
|
-
],
|
|
212
|
-
},
|
|
213
|
-
],
|
|
214
|
-
},
|
|
215
|
-
],
|
|
216
|
-
};
|