@atlaskit/adf-schema 52.7.1 → 52.9.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/CHANGELOG.md +18 -0
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/next-schema/full-schema.adf.js +1 -1
- package/dist/cjs/next-schema/generated/nodeTypes.js +56 -27
- package/dist/cjs/next-schema/groups/blockContentGroup.js +1 -1
- package/dist/cjs/next-schema/groups/blockGroup.js +1 -1
- package/dist/cjs/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
- package/dist/cjs/next-schema/groups/tableCellContentPseudoGroup.js +1 -1
- package/dist/cjs/next-schema/marks/fontSize.js +1 -2
- package/dist/cjs/next-schema/nodes/bodiedSyncBlock.js +1 -1
- package/dist/cjs/next-schema/nodes/codeBlock.js +65 -0
- package/dist/cjs/next-schema/nodes/paragraph.js +3 -14
- package/dist/cjs/schema/createPMSpecFactory.js +4 -0
- package/dist/cjs/schema/default-schema.js +3 -6
- package/dist/cjs/schema/index.js +6 -0
- package/dist/cjs/schema/nodes/code-block.js +110 -2
- package/dist/cjs/schema/nodes/index.js +6 -0
- package/dist/cjs/validator-schema/generated/validatorSpec.js +867 -822
- package/dist/es2019/index.js +1 -1
- package/dist/es2019/next-schema/full-schema.adf.js +1 -1
- package/dist/es2019/next-schema/generated/nodeTypes.js +55 -26
- package/dist/es2019/next-schema/groups/blockContentGroup.js +1 -1
- package/dist/es2019/next-schema/groups/blockGroup.js +1 -1
- package/dist/es2019/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
- package/dist/es2019/next-schema/groups/tableCellContentPseudoGroup.js +1 -1
- package/dist/es2019/next-schema/marks/fontSize.js +1 -2
- package/dist/es2019/next-schema/nodes/bodiedSyncBlock.js +1 -1
- package/dist/es2019/next-schema/nodes/codeBlock.js +65 -0
- package/dist/es2019/next-schema/nodes/paragraph.js +3 -14
- package/dist/es2019/schema/createPMSpecFactory.js +4 -0
- package/dist/es2019/schema/default-schema.js +4 -7
- package/dist/es2019/schema/index.js +1 -1
- package/dist/es2019/schema/nodes/code-block.js +107 -3
- package/dist/es2019/schema/nodes/index.js +1 -1
- package/dist/es2019/validator-schema/generated/validatorSpec.js +866 -821
- package/dist/esm/index.js +1 -1
- package/dist/esm/next-schema/full-schema.adf.js +1 -1
- package/dist/esm/next-schema/generated/nodeTypes.js +55 -26
- package/dist/esm/next-schema/groups/blockContentGroup.js +1 -1
- package/dist/esm/next-schema/groups/blockGroup.js +1 -1
- package/dist/esm/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
- package/dist/esm/next-schema/groups/tableCellContentPseudoGroup.js +1 -1
- package/dist/esm/next-schema/marks/fontSize.js +1 -2
- package/dist/esm/next-schema/nodes/bodiedSyncBlock.js +1 -1
- package/dist/esm/next-schema/nodes/codeBlock.js +65 -0
- package/dist/esm/next-schema/nodes/paragraph.js +3 -14
- package/dist/esm/schema/createPMSpecFactory.js +4 -0
- package/dist/esm/schema/default-schema.js +4 -7
- package/dist/esm/schema/index.js +1 -1
- package/dist/esm/schema/nodes/code-block.js +109 -2
- package/dist/esm/schema/nodes/index.js +1 -1
- package/dist/esm/validator-schema/generated/validatorSpec.js +866 -821
- package/dist/json-schema/v1/full.json +73 -2
- package/dist/json-schema/v1/stage-0.json +107 -67
- package/dist/types/index.d.ts +1 -1
- package/dist/types/next-schema/generated/markTypes.d.ts +22 -21
- package/dist/types/next-schema/generated/nodeGroupTypes.d.ts +3 -3
- package/dist/types/next-schema/generated/nodeTypes.d.ts +128 -118
- package/dist/types/next-schema/nodes/codeBlock.d.ts +3 -1
- package/dist/types/next-schema/nodes/paragraph.d.ts +1 -14
- package/dist/types/schema/createPMSpecFactory.d.ts +4 -0
- package/dist/types/schema/index.d.ts +1 -1
- package/dist/types/schema/nodes/code-block.d.ts +10 -0
- package/dist/types/schema/nodes/index.d.ts +1 -1
- package/dist/types/validator-schema/generated/validatorSpec.d.ts +697 -652
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/dist/types-ts4.5/next-schema/generated/markTypes.d.ts +22 -21
- package/dist/types-ts4.5/next-schema/generated/nodeGroupTypes.d.ts +3 -3
- package/dist/types-ts4.5/next-schema/generated/nodeTypes.d.ts +128 -118
- package/dist/types-ts4.5/next-schema/nodes/codeBlock.d.ts +3 -1
- package/dist/types-ts4.5/next-schema/nodes/paragraph.d.ts +1 -14
- package/dist/types-ts4.5/schema/createPMSpecFactory.d.ts +4 -0
- package/dist/types-ts4.5/schema/index.d.ts +1 -1
- package/dist/types-ts4.5/schema/nodes/code-block.d.ts +10 -0
- package/dist/types-ts4.5/schema/nodes/index.d.ts +1 -1
- package/dist/types-ts4.5/validator-schema/generated/validatorSpec.d.ts +697 -652
- package/json-schema/v1/full.json +73 -2
- package/json-schema/v1/stage-0.json +107 -67
- package/package.json +2 -2
- package/schema-generators/validator-full-schema.ts +59 -1
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
export declare const alignment: {
|
|
2
2
|
props: {
|
|
3
|
-
type: {
|
|
4
|
-
type: string;
|
|
5
|
-
values: string[];
|
|
6
|
-
};
|
|
7
3
|
attrs: {
|
|
8
4
|
props: {
|
|
9
5
|
align: {
|
|
@@ -12,33 +8,33 @@ export declare const alignment: {
|
|
|
12
8
|
};
|
|
13
9
|
};
|
|
14
10
|
};
|
|
15
|
-
};
|
|
16
|
-
};
|
|
17
|
-
export declare const annotation: {
|
|
18
|
-
props: {
|
|
19
11
|
type: {
|
|
20
12
|
type: string;
|
|
21
13
|
values: string[];
|
|
22
14
|
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export declare const annotation: {
|
|
18
|
+
props: {
|
|
23
19
|
attrs: {
|
|
24
20
|
props: {
|
|
25
|
-
id: {
|
|
26
|
-
type: string;
|
|
27
|
-
};
|
|
28
21
|
annotationType: {
|
|
29
22
|
type: string;
|
|
30
23
|
values: string[];
|
|
31
24
|
};
|
|
25
|
+
id: {
|
|
26
|
+
type: string;
|
|
27
|
+
};
|
|
32
28
|
};
|
|
33
29
|
};
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
export declare const backgroundColor: {
|
|
37
|
-
props: {
|
|
38
30
|
type: {
|
|
39
31
|
type: string;
|
|
40
32
|
values: string[];
|
|
41
33
|
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export declare const backgroundColor: {
|
|
37
|
+
props: {
|
|
42
38
|
attrs: {
|
|
43
39
|
props: {
|
|
44
40
|
color: {
|
|
@@ -47,26 +43,17 @@ export declare const backgroundColor: {
|
|
|
47
43
|
};
|
|
48
44
|
};
|
|
49
45
|
};
|
|
46
|
+
type: {
|
|
47
|
+
type: string;
|
|
48
|
+
values: string[];
|
|
49
|
+
};
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
export declare const block_content: string[];
|
|
53
53
|
export declare const blockCard: {
|
|
54
54
|
props: {
|
|
55
|
-
type: {
|
|
56
|
-
type: string;
|
|
57
|
-
values: string[];
|
|
58
|
-
};
|
|
59
55
|
attrs: ({
|
|
60
56
|
props: {
|
|
61
|
-
localId: {
|
|
62
|
-
type: string;
|
|
63
|
-
optional: boolean;
|
|
64
|
-
};
|
|
65
|
-
url: {
|
|
66
|
-
type: string;
|
|
67
|
-
optional: boolean;
|
|
68
|
-
validatorFn: string;
|
|
69
|
-
};
|
|
70
57
|
datasource: {
|
|
71
58
|
props: {
|
|
72
59
|
id: {
|
|
@@ -92,31 +79,40 @@ export declare const blockCard: {
|
|
|
92
79
|
};
|
|
93
80
|
};
|
|
94
81
|
};
|
|
95
|
-
|
|
82
|
+
layout: {
|
|
83
|
+
optional: boolean;
|
|
96
84
|
type: string;
|
|
85
|
+
values: string[];
|
|
86
|
+
};
|
|
87
|
+
localId: {
|
|
97
88
|
optional: boolean;
|
|
89
|
+
type: string;
|
|
98
90
|
};
|
|
99
|
-
|
|
91
|
+
url: {
|
|
92
|
+
optional: boolean;
|
|
100
93
|
type: string;
|
|
101
|
-
|
|
94
|
+
validatorFn: string;
|
|
95
|
+
};
|
|
96
|
+
width: {
|
|
102
97
|
optional: boolean;
|
|
98
|
+
type: string;
|
|
103
99
|
};
|
|
104
100
|
data?: undefined;
|
|
105
101
|
};
|
|
106
102
|
} | {
|
|
107
103
|
props: {
|
|
104
|
+
localId: {
|
|
105
|
+
optional: boolean;
|
|
106
|
+
type: string;
|
|
107
|
+
};
|
|
108
108
|
url: {
|
|
109
109
|
type: string;
|
|
110
110
|
validatorFn: string;
|
|
111
111
|
optional?: undefined;
|
|
112
112
|
};
|
|
113
|
-
localId: {
|
|
114
|
-
type: string;
|
|
115
|
-
optional: boolean;
|
|
116
|
-
};
|
|
117
113
|
datasource?: undefined;
|
|
118
|
-
width?: undefined;
|
|
119
114
|
layout?: undefined;
|
|
115
|
+
width?: undefined;
|
|
120
116
|
data?: undefined;
|
|
121
117
|
};
|
|
122
118
|
} | {
|
|
@@ -125,48 +121,48 @@ export declare const blockCard: {
|
|
|
125
121
|
type: string;
|
|
126
122
|
};
|
|
127
123
|
localId: {
|
|
128
|
-
type: string;
|
|
129
124
|
optional: boolean;
|
|
125
|
+
type: string;
|
|
130
126
|
};
|
|
131
|
-
url?: undefined;
|
|
132
127
|
datasource?: undefined;
|
|
133
|
-
width?: undefined;
|
|
134
128
|
layout?: undefined;
|
|
129
|
+
url?: undefined;
|
|
130
|
+
width?: undefined;
|
|
135
131
|
};
|
|
136
132
|
})[];
|
|
133
|
+
type: {
|
|
134
|
+
type: string;
|
|
135
|
+
values: string[];
|
|
136
|
+
};
|
|
137
137
|
};
|
|
138
138
|
required: string[];
|
|
139
139
|
};
|
|
140
140
|
export declare const blockquote: {
|
|
141
141
|
props: {
|
|
142
|
-
type: {
|
|
143
|
-
type: string;
|
|
144
|
-
values: string[];
|
|
145
|
-
};
|
|
146
142
|
attrs: {
|
|
143
|
+
optional: boolean;
|
|
147
144
|
props: {
|
|
148
145
|
localId: {
|
|
149
|
-
type: string;
|
|
150
146
|
optional: boolean;
|
|
147
|
+
type: string;
|
|
151
148
|
};
|
|
152
149
|
};
|
|
153
|
-
optional: boolean;
|
|
154
150
|
};
|
|
155
151
|
content: {
|
|
156
|
-
|
|
152
|
+
allowUnsupportedBlock: boolean;
|
|
157
153
|
items: string[][];
|
|
158
154
|
minItems: number;
|
|
159
|
-
|
|
155
|
+
type: string;
|
|
156
|
+
};
|
|
157
|
+
type: {
|
|
158
|
+
type: string;
|
|
159
|
+
values: string[];
|
|
160
160
|
};
|
|
161
161
|
};
|
|
162
162
|
};
|
|
163
163
|
export declare const blockRootOnly: string[];
|
|
164
164
|
export declare const blockTaskItem: {
|
|
165
165
|
props: {
|
|
166
|
-
type: {
|
|
167
|
-
type: string;
|
|
168
|
-
values: string[];
|
|
169
|
-
};
|
|
170
166
|
attrs: {
|
|
171
167
|
props: {
|
|
172
168
|
localId: {
|
|
@@ -179,19 +175,19 @@ export declare const blockTaskItem: {
|
|
|
179
175
|
};
|
|
180
176
|
};
|
|
181
177
|
content: {
|
|
182
|
-
type: string;
|
|
183
178
|
isTupleLike: boolean;
|
|
184
179
|
items: string[][];
|
|
185
180
|
minItems: number;
|
|
181
|
+
type: string;
|
|
186
182
|
};
|
|
187
|
-
};
|
|
188
|
-
};
|
|
189
|
-
export declare const bodiedExtension: {
|
|
190
|
-
props: {
|
|
191
183
|
type: {
|
|
192
184
|
type: string;
|
|
193
185
|
values: string[];
|
|
194
186
|
};
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
export declare const bodiedExtension: {
|
|
190
|
+
props: {
|
|
195
191
|
attrs: {
|
|
196
192
|
props: {
|
|
197
193
|
extensionKey: {
|
|
@@ -202,104 +198,104 @@ export declare const bodiedExtension: {
|
|
|
202
198
|
minLength: number;
|
|
203
199
|
type: string;
|
|
204
200
|
};
|
|
205
|
-
parameters: {
|
|
206
|
-
type: string;
|
|
207
|
-
optional: boolean;
|
|
208
|
-
};
|
|
209
|
-
text: {
|
|
210
|
-
type: string;
|
|
211
|
-
optional: boolean;
|
|
212
|
-
};
|
|
213
201
|
layout: {
|
|
202
|
+
optional: boolean;
|
|
214
203
|
type: string;
|
|
215
204
|
values: string[];
|
|
216
|
-
optional: boolean;
|
|
217
205
|
};
|
|
218
206
|
localId: {
|
|
219
207
|
minLength: number;
|
|
208
|
+
optional: boolean;
|
|
209
|
+
type: string;
|
|
210
|
+
};
|
|
211
|
+
parameters: {
|
|
212
|
+
optional: boolean;
|
|
220
213
|
type: string;
|
|
214
|
+
};
|
|
215
|
+
text: {
|
|
221
216
|
optional: boolean;
|
|
217
|
+
type: string;
|
|
222
218
|
};
|
|
223
219
|
};
|
|
224
220
|
};
|
|
225
221
|
content: {
|
|
226
|
-
|
|
222
|
+
allowUnsupportedBlock: boolean;
|
|
227
223
|
items: string[];
|
|
228
224
|
minItems: number;
|
|
229
|
-
|
|
225
|
+
type: string;
|
|
230
226
|
};
|
|
231
227
|
marks: {
|
|
232
|
-
type: string;
|
|
233
228
|
items: never[];
|
|
234
229
|
optional: boolean;
|
|
230
|
+
type: string;
|
|
231
|
+
};
|
|
232
|
+
type: {
|
|
233
|
+
type: string;
|
|
234
|
+
values: string[];
|
|
235
235
|
};
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
export declare const bodiedExtension_with_marks: (string | {
|
|
239
239
|
props: {
|
|
240
240
|
marks: {
|
|
241
|
-
type: string;
|
|
242
|
-
optional: boolean;
|
|
243
241
|
items: string[][];
|
|
242
|
+
optional: boolean;
|
|
243
|
+
type: string;
|
|
244
244
|
};
|
|
245
245
|
};
|
|
246
246
|
})[];
|
|
247
247
|
export declare const bodiedSyncBlock: {
|
|
248
248
|
props: {
|
|
249
|
-
type: {
|
|
250
|
-
type: string;
|
|
251
|
-
values: string[];
|
|
252
|
-
};
|
|
253
249
|
attrs: {
|
|
254
250
|
props: {
|
|
255
|
-
|
|
251
|
+
localId: {
|
|
256
252
|
type: string;
|
|
257
253
|
};
|
|
258
|
-
|
|
254
|
+
resourceId: {
|
|
259
255
|
type: string;
|
|
260
256
|
};
|
|
261
257
|
};
|
|
262
258
|
};
|
|
263
259
|
content: {
|
|
264
|
-
|
|
260
|
+
allowUnsupportedBlock: boolean;
|
|
265
261
|
items: string[][];
|
|
266
262
|
minItems: number;
|
|
267
|
-
|
|
263
|
+
type: string;
|
|
268
264
|
};
|
|
269
265
|
marks: {
|
|
270
|
-
type: string;
|
|
271
|
-
optional: boolean;
|
|
272
266
|
items: string[];
|
|
267
|
+
optional: boolean;
|
|
268
|
+
type: string;
|
|
273
269
|
};
|
|
274
|
-
};
|
|
275
|
-
};
|
|
276
|
-
export declare const border: {
|
|
277
|
-
props: {
|
|
278
270
|
type: {
|
|
279
271
|
type: string;
|
|
280
272
|
values: string[];
|
|
281
273
|
};
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
export declare const border: {
|
|
277
|
+
props: {
|
|
282
278
|
attrs: {
|
|
283
279
|
props: {
|
|
284
|
-
size: {
|
|
285
|
-
type: string;
|
|
286
|
-
minimum: number;
|
|
287
|
-
maximum: number;
|
|
288
|
-
};
|
|
289
280
|
color: {
|
|
290
281
|
pattern: string;
|
|
291
282
|
type: string;
|
|
292
283
|
};
|
|
284
|
+
size: {
|
|
285
|
+
maximum: number;
|
|
286
|
+
minimum: number;
|
|
287
|
+
type: string;
|
|
288
|
+
};
|
|
293
289
|
};
|
|
294
290
|
};
|
|
295
|
-
};
|
|
296
|
-
};
|
|
297
|
-
export declare const breakout: {
|
|
298
|
-
props: {
|
|
299
291
|
type: {
|
|
300
292
|
type: string;
|
|
301
293
|
values: string[];
|
|
302
294
|
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
export declare const breakout: {
|
|
298
|
+
props: {
|
|
303
299
|
attrs: {
|
|
304
300
|
props: {
|
|
305
301
|
mode: {
|
|
@@ -307,55 +303,59 @@ export declare const breakout: {
|
|
|
307
303
|
values: string[];
|
|
308
304
|
};
|
|
309
305
|
width: {
|
|
310
|
-
type: string;
|
|
311
306
|
optional: boolean;
|
|
307
|
+
type: string;
|
|
312
308
|
};
|
|
313
309
|
};
|
|
314
310
|
};
|
|
315
|
-
};
|
|
316
|
-
};
|
|
317
|
-
export declare const bulletList: {
|
|
318
|
-
props: {
|
|
319
311
|
type: {
|
|
320
312
|
type: string;
|
|
321
313
|
values: string[];
|
|
322
314
|
};
|
|
315
|
+
};
|
|
316
|
+
};
|
|
317
|
+
export declare const bulletList: {
|
|
318
|
+
props: {
|
|
323
319
|
attrs: {
|
|
320
|
+
optional: boolean;
|
|
324
321
|
props: {
|
|
325
322
|
localId: {
|
|
326
|
-
type: string;
|
|
327
323
|
optional: boolean;
|
|
324
|
+
type: string;
|
|
328
325
|
};
|
|
329
326
|
};
|
|
330
|
-
optional: boolean;
|
|
331
327
|
};
|
|
332
328
|
content: {
|
|
333
|
-
type: string;
|
|
334
329
|
items: string[];
|
|
335
330
|
minItems: number;
|
|
331
|
+
type: string;
|
|
336
332
|
};
|
|
337
|
-
};
|
|
338
|
-
};
|
|
339
|
-
export declare const caption: {
|
|
340
|
-
props: {
|
|
341
333
|
type: {
|
|
342
334
|
type: string;
|
|
343
335
|
values: string[];
|
|
344
336
|
};
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
export declare const caption: {
|
|
340
|
+
props: {
|
|
345
341
|
attrs: {
|
|
342
|
+
optional: boolean;
|
|
346
343
|
props: {
|
|
347
344
|
localId: {
|
|
348
|
-
type: string;
|
|
349
345
|
optional: boolean;
|
|
346
|
+
type: string;
|
|
350
347
|
};
|
|
351
348
|
};
|
|
352
|
-
optional: boolean;
|
|
353
349
|
};
|
|
354
350
|
content: {
|
|
355
|
-
|
|
351
|
+
allowUnsupportedInline: boolean;
|
|
356
352
|
items: string[][];
|
|
357
353
|
optional: boolean;
|
|
358
|
-
|
|
354
|
+
type: string;
|
|
355
|
+
};
|
|
356
|
+
type: {
|
|
357
|
+
type: string;
|
|
358
|
+
values: string[];
|
|
359
359
|
};
|
|
360
360
|
};
|
|
361
361
|
};
|
|
@@ -369,109 +369,168 @@ export declare const code: {
|
|
|
369
369
|
};
|
|
370
370
|
export declare const codeBlock: {
|
|
371
371
|
props: {
|
|
372
|
-
type: {
|
|
373
|
-
type: string;
|
|
374
|
-
values: string[];
|
|
375
|
-
};
|
|
376
372
|
attrs: {
|
|
373
|
+
optional: boolean;
|
|
377
374
|
props: {
|
|
378
375
|
language: {
|
|
379
|
-
type: string;
|
|
380
376
|
optional: boolean;
|
|
381
|
-
};
|
|
382
|
-
uniqueId: {
|
|
383
377
|
type: string;
|
|
384
|
-
optional: boolean;
|
|
385
378
|
};
|
|
386
379
|
localId: {
|
|
380
|
+
optional: boolean;
|
|
387
381
|
type: string;
|
|
382
|
+
};
|
|
383
|
+
uniqueId: {
|
|
388
384
|
optional: boolean;
|
|
385
|
+
type: string;
|
|
389
386
|
};
|
|
390
387
|
};
|
|
391
|
-
optional: boolean;
|
|
392
388
|
};
|
|
393
389
|
content: {
|
|
394
|
-
|
|
390
|
+
allowUnsupportedInline: boolean;
|
|
395
391
|
items: string[];
|
|
396
392
|
optional: boolean;
|
|
397
|
-
|
|
393
|
+
type: string;
|
|
394
|
+
};
|
|
395
|
+
type: {
|
|
396
|
+
type: string;
|
|
397
|
+
values: string[];
|
|
398
398
|
};
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
export declare const codeBlock_root_only: (string | {
|
|
402
402
|
props: {
|
|
403
403
|
marks: {
|
|
404
|
-
type: string;
|
|
405
|
-
optional: boolean;
|
|
406
404
|
items: string[];
|
|
405
|
+
optional: boolean;
|
|
406
|
+
type: string;
|
|
407
407
|
};
|
|
408
408
|
};
|
|
409
409
|
})[];
|
|
410
|
-
export declare const
|
|
410
|
+
export declare const codeBlock_root_only_with_extended_attributes: (string | {
|
|
411
411
|
props: {
|
|
412
|
-
type: {
|
|
413
|
-
type: string;
|
|
414
|
-
values: string[];
|
|
415
|
-
};
|
|
416
412
|
attrs: {
|
|
413
|
+
optional: boolean;
|
|
417
414
|
props: {
|
|
418
|
-
|
|
415
|
+
hideLineNumbers: {
|
|
416
|
+
optional: boolean;
|
|
419
417
|
type: string;
|
|
420
418
|
};
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
};
|
|
425
|
-
|
|
419
|
+
language: {
|
|
420
|
+
optional: boolean;
|
|
421
|
+
type: string;
|
|
422
|
+
};
|
|
423
|
+
localId: {
|
|
424
|
+
optional: boolean;
|
|
425
|
+
type: string;
|
|
426
|
+
};
|
|
427
|
+
uniqueId: {
|
|
428
|
+
optional: boolean;
|
|
429
|
+
type: string;
|
|
430
|
+
};
|
|
431
|
+
wrap: {
|
|
432
|
+
optional: boolean;
|
|
433
|
+
type: string;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
};
|
|
437
|
+
marks: {
|
|
438
|
+
items: string[];
|
|
439
|
+
optional: boolean;
|
|
440
|
+
type: string;
|
|
441
|
+
};
|
|
442
|
+
};
|
|
443
|
+
})[];
|
|
444
|
+
export declare const codeBlock_with_extended_attributes: (string | {
|
|
426
445
|
props: {
|
|
446
|
+
attrs: {
|
|
447
|
+
optional: boolean;
|
|
448
|
+
props: {
|
|
449
|
+
hideLineNumbers: {
|
|
450
|
+
optional: boolean;
|
|
451
|
+
type: string;
|
|
452
|
+
};
|
|
453
|
+
language: {
|
|
454
|
+
optional: boolean;
|
|
455
|
+
type: string;
|
|
456
|
+
};
|
|
457
|
+
localId: {
|
|
458
|
+
optional: boolean;
|
|
459
|
+
type: string;
|
|
460
|
+
};
|
|
461
|
+
uniqueId: {
|
|
462
|
+
optional: boolean;
|
|
463
|
+
type: string;
|
|
464
|
+
};
|
|
465
|
+
wrap: {
|
|
466
|
+
optional: boolean;
|
|
467
|
+
type: string;
|
|
468
|
+
};
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
})[];
|
|
473
|
+
export declare const confluenceInlineComment: {
|
|
474
|
+
props: {
|
|
475
|
+
attrs: {
|
|
476
|
+
props: {
|
|
477
|
+
reference: {
|
|
478
|
+
type: string;
|
|
479
|
+
};
|
|
480
|
+
};
|
|
481
|
+
};
|
|
427
482
|
type: {
|
|
428
483
|
type: string;
|
|
429
484
|
values: string[];
|
|
430
485
|
};
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
export declare const dataConsumer: {
|
|
489
|
+
props: {
|
|
431
490
|
attrs: {
|
|
432
491
|
props: {
|
|
433
492
|
sources: {
|
|
434
|
-
type: string;
|
|
435
493
|
items: {
|
|
436
494
|
type: string;
|
|
437
495
|
}[];
|
|
438
496
|
minItems: number;
|
|
497
|
+
type: string;
|
|
439
498
|
};
|
|
440
499
|
};
|
|
441
500
|
};
|
|
442
|
-
};
|
|
443
|
-
};
|
|
444
|
-
export declare const date: {
|
|
445
|
-
props: {
|
|
446
501
|
type: {
|
|
447
502
|
type: string;
|
|
448
503
|
values: string[];
|
|
449
504
|
};
|
|
505
|
+
};
|
|
506
|
+
};
|
|
507
|
+
export declare const date: {
|
|
508
|
+
props: {
|
|
450
509
|
attrs: {
|
|
451
510
|
props: {
|
|
452
|
-
|
|
453
|
-
|
|
511
|
+
localId: {
|
|
512
|
+
optional: boolean;
|
|
454
513
|
type: string;
|
|
455
514
|
};
|
|
456
|
-
|
|
515
|
+
timestamp: {
|
|
516
|
+
minLength: number;
|
|
457
517
|
type: string;
|
|
458
|
-
optional: boolean;
|
|
459
518
|
};
|
|
460
519
|
};
|
|
461
520
|
};
|
|
462
521
|
marks: {
|
|
463
|
-
type: string;
|
|
464
|
-
optional: boolean;
|
|
465
522
|
items: string[];
|
|
523
|
+
optional: boolean;
|
|
524
|
+
type: string;
|
|
466
525
|
};
|
|
467
|
-
};
|
|
468
|
-
};
|
|
469
|
-
export declare const decisionItem: {
|
|
470
|
-
props: {
|
|
471
526
|
type: {
|
|
472
527
|
type: string;
|
|
473
528
|
values: string[];
|
|
474
529
|
};
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
export declare const decisionItem: {
|
|
533
|
+
props: {
|
|
475
534
|
attrs: {
|
|
476
535
|
props: {
|
|
477
536
|
localId: {
|
|
@@ -483,19 +542,19 @@ export declare const decisionItem: {
|
|
|
483
542
|
};
|
|
484
543
|
};
|
|
485
544
|
content: {
|
|
486
|
-
|
|
545
|
+
allowUnsupportedInline: boolean;
|
|
487
546
|
items: string[];
|
|
488
547
|
optional: boolean;
|
|
489
|
-
|
|
548
|
+
type: string;
|
|
490
549
|
};
|
|
491
|
-
};
|
|
492
|
-
};
|
|
493
|
-
export declare const decisionList: {
|
|
494
|
-
props: {
|
|
495
550
|
type: {
|
|
496
551
|
type: string;
|
|
497
552
|
values: string[];
|
|
498
553
|
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
export declare const decisionList: {
|
|
557
|
+
props: {
|
|
499
558
|
attrs: {
|
|
500
559
|
props: {
|
|
501
560
|
localId: {
|
|
@@ -504,15 +563,24 @@ export declare const decisionList: {
|
|
|
504
563
|
};
|
|
505
564
|
};
|
|
506
565
|
content: {
|
|
507
|
-
|
|
566
|
+
allowUnsupportedBlock: boolean;
|
|
508
567
|
items: string[];
|
|
509
568
|
minItems: number;
|
|
510
|
-
|
|
569
|
+
type: string;
|
|
570
|
+
};
|
|
571
|
+
type: {
|
|
572
|
+
type: string;
|
|
573
|
+
values: string[];
|
|
511
574
|
};
|
|
512
575
|
};
|
|
513
576
|
};
|
|
514
577
|
export declare const doc: {
|
|
515
578
|
props: {
|
|
579
|
+
content: {
|
|
580
|
+
allowUnsupportedBlock: boolean;
|
|
581
|
+
items: string[][];
|
|
582
|
+
type: string;
|
|
583
|
+
};
|
|
516
584
|
type: {
|
|
517
585
|
type: string;
|
|
518
586
|
values: string[];
|
|
@@ -521,11 +589,6 @@ export declare const doc: {
|
|
|
521
589
|
type: string;
|
|
522
590
|
values: number[];
|
|
523
591
|
};
|
|
524
|
-
content: {
|
|
525
|
-
type: string;
|
|
526
|
-
items: string[][];
|
|
527
|
-
allowUnsupportedBlock: boolean;
|
|
528
|
-
};
|
|
529
592
|
};
|
|
530
593
|
};
|
|
531
594
|
export declare const em: {
|
|
@@ -538,116 +601,112 @@ export declare const em: {
|
|
|
538
601
|
};
|
|
539
602
|
export declare const embedCard: {
|
|
540
603
|
props: {
|
|
541
|
-
type: {
|
|
542
|
-
type: string;
|
|
543
|
-
values: string[];
|
|
544
|
-
};
|
|
545
604
|
attrs: {
|
|
546
605
|
props: {
|
|
547
|
-
url: {
|
|
548
|
-
type: string;
|
|
549
|
-
validatorFn: string;
|
|
550
|
-
};
|
|
551
606
|
layout: {
|
|
552
607
|
type: string;
|
|
553
608
|
values: string[];
|
|
554
609
|
};
|
|
555
|
-
|
|
556
|
-
type: string;
|
|
557
|
-
maximum: number;
|
|
558
|
-
minimum: number;
|
|
610
|
+
localId: {
|
|
559
611
|
optional: boolean;
|
|
612
|
+
type: string;
|
|
560
613
|
};
|
|
561
614
|
originalHeight: {
|
|
562
|
-
type: string;
|
|
563
615
|
optional: boolean;
|
|
616
|
+
type: string;
|
|
564
617
|
};
|
|
565
618
|
originalWidth: {
|
|
566
|
-
type: string;
|
|
567
619
|
optional: boolean;
|
|
620
|
+
type: string;
|
|
568
621
|
};
|
|
569
|
-
|
|
622
|
+
url: {
|
|
570
623
|
type: string;
|
|
624
|
+
validatorFn: string;
|
|
625
|
+
};
|
|
626
|
+
width: {
|
|
627
|
+
maximum: number;
|
|
628
|
+
minimum: number;
|
|
571
629
|
optional: boolean;
|
|
630
|
+
type: string;
|
|
572
631
|
};
|
|
573
632
|
};
|
|
574
633
|
};
|
|
575
|
-
};
|
|
576
|
-
};
|
|
577
|
-
export declare const emoji: {
|
|
578
|
-
props: {
|
|
579
634
|
type: {
|
|
580
635
|
type: string;
|
|
581
636
|
values: string[];
|
|
582
637
|
};
|
|
638
|
+
};
|
|
639
|
+
};
|
|
640
|
+
export declare const emoji: {
|
|
641
|
+
props: {
|
|
583
642
|
attrs: {
|
|
584
643
|
props: {
|
|
585
|
-
shortName: {
|
|
586
|
-
type: string;
|
|
587
|
-
};
|
|
588
644
|
id: {
|
|
589
|
-
type: string;
|
|
590
645
|
optional: boolean;
|
|
591
|
-
};
|
|
592
|
-
text: {
|
|
593
646
|
type: string;
|
|
594
|
-
optional: boolean;
|
|
595
647
|
};
|
|
596
648
|
localId: {
|
|
649
|
+
optional: boolean;
|
|
650
|
+
type: string;
|
|
651
|
+
};
|
|
652
|
+
shortName: {
|
|
597
653
|
type: string;
|
|
654
|
+
};
|
|
655
|
+
text: {
|
|
598
656
|
optional: boolean;
|
|
657
|
+
type: string;
|
|
599
658
|
};
|
|
600
659
|
};
|
|
601
660
|
};
|
|
602
661
|
marks: {
|
|
603
|
-
type: string;
|
|
604
|
-
optional: boolean;
|
|
605
662
|
items: string[];
|
|
663
|
+
optional: boolean;
|
|
664
|
+
type: string;
|
|
606
665
|
};
|
|
607
|
-
};
|
|
608
|
-
};
|
|
609
|
-
export declare const expand: {
|
|
610
|
-
props: {
|
|
611
666
|
type: {
|
|
612
667
|
type: string;
|
|
613
668
|
values: string[];
|
|
614
669
|
};
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
export declare const expand: {
|
|
673
|
+
props: {
|
|
615
674
|
attrs: {
|
|
675
|
+
optional: boolean;
|
|
616
676
|
props: {
|
|
617
|
-
title: {
|
|
618
|
-
type: string;
|
|
619
|
-
optional: boolean;
|
|
620
|
-
};
|
|
621
677
|
localId: {
|
|
678
|
+
optional: boolean;
|
|
622
679
|
type: string;
|
|
680
|
+
};
|
|
681
|
+
title: {
|
|
623
682
|
optional: boolean;
|
|
683
|
+
type: string;
|
|
624
684
|
};
|
|
625
685
|
};
|
|
626
|
-
optional: boolean;
|
|
627
686
|
};
|
|
628
687
|
content: {
|
|
629
|
-
|
|
688
|
+
allowUnsupportedBlock: boolean;
|
|
630
689
|
items: string[][];
|
|
631
690
|
minItems: number;
|
|
632
|
-
|
|
691
|
+
type: string;
|
|
692
|
+
};
|
|
693
|
+
type: {
|
|
694
|
+
type: string;
|
|
695
|
+
values: string[];
|
|
633
696
|
};
|
|
634
697
|
};
|
|
635
698
|
};
|
|
636
699
|
export declare const expand_root_only: (string | {
|
|
637
700
|
props: {
|
|
638
701
|
marks: {
|
|
639
|
-
type: string;
|
|
640
|
-
optional: boolean;
|
|
641
702
|
items: string[];
|
|
703
|
+
optional: boolean;
|
|
704
|
+
type: string;
|
|
642
705
|
};
|
|
643
706
|
};
|
|
644
707
|
})[];
|
|
645
708
|
export declare const extension: {
|
|
646
709
|
props: {
|
|
647
|
-
type: {
|
|
648
|
-
type: string;
|
|
649
|
-
values: string[];
|
|
650
|
-
};
|
|
651
710
|
attrs: {
|
|
652
711
|
props: {
|
|
653
712
|
extensionKey: {
|
|
@@ -658,66 +717,66 @@ export declare const extension: {
|
|
|
658
717
|
minLength: number;
|
|
659
718
|
type: string;
|
|
660
719
|
};
|
|
661
|
-
parameters: {
|
|
662
|
-
type: string;
|
|
663
|
-
optional: boolean;
|
|
664
|
-
};
|
|
665
|
-
text: {
|
|
666
|
-
type: string;
|
|
667
|
-
optional: boolean;
|
|
668
|
-
};
|
|
669
720
|
layout: {
|
|
721
|
+
optional: boolean;
|
|
670
722
|
type: string;
|
|
671
723
|
values: string[];
|
|
672
|
-
optional: boolean;
|
|
673
724
|
};
|
|
674
725
|
localId: {
|
|
675
726
|
minLength: number;
|
|
727
|
+
optional: boolean;
|
|
728
|
+
type: string;
|
|
729
|
+
};
|
|
730
|
+
parameters: {
|
|
731
|
+
optional: boolean;
|
|
676
732
|
type: string;
|
|
733
|
+
};
|
|
734
|
+
text: {
|
|
677
735
|
optional: boolean;
|
|
736
|
+
type: string;
|
|
678
737
|
};
|
|
679
738
|
};
|
|
680
739
|
};
|
|
681
740
|
marks: {
|
|
682
|
-
type: string;
|
|
683
741
|
items: never[];
|
|
684
742
|
optional: boolean;
|
|
743
|
+
type: string;
|
|
744
|
+
};
|
|
745
|
+
type: {
|
|
746
|
+
type: string;
|
|
747
|
+
values: string[];
|
|
685
748
|
};
|
|
686
749
|
};
|
|
687
750
|
};
|
|
688
751
|
export declare const extension_with_marks: (string | {
|
|
689
752
|
props: {
|
|
690
753
|
marks: {
|
|
691
|
-
type: string;
|
|
692
|
-
optional: boolean;
|
|
693
754
|
items: string[][];
|
|
755
|
+
optional: boolean;
|
|
756
|
+
type: string;
|
|
694
757
|
};
|
|
695
758
|
};
|
|
696
759
|
})[];
|
|
697
760
|
export declare const extensionFrame: {
|
|
698
761
|
props: {
|
|
699
|
-
type: {
|
|
700
|
-
type: string;
|
|
701
|
-
values: string[];
|
|
702
|
-
};
|
|
703
762
|
content: {
|
|
704
|
-
type: string;
|
|
705
763
|
items: string[][];
|
|
706
764
|
minItems: number;
|
|
765
|
+
type: string;
|
|
707
766
|
};
|
|
708
767
|
marks: {
|
|
709
|
-
type: string;
|
|
710
|
-
optional: boolean;
|
|
711
768
|
items: string[][];
|
|
769
|
+
optional: boolean;
|
|
770
|
+
type: string;
|
|
712
771
|
};
|
|
713
|
-
};
|
|
714
|
-
};
|
|
715
|
-
export declare const fontSize: {
|
|
716
|
-
props: {
|
|
717
772
|
type: {
|
|
718
773
|
type: string;
|
|
719
774
|
values: string[];
|
|
720
775
|
};
|
|
776
|
+
};
|
|
777
|
+
};
|
|
778
|
+
export declare const fontSize: {
|
|
779
|
+
props: {
|
|
721
780
|
attrs: {
|
|
722
781
|
props: {
|
|
723
782
|
fontSize: {
|
|
@@ -726,14 +785,14 @@ export declare const fontSize: {
|
|
|
726
785
|
};
|
|
727
786
|
};
|
|
728
787
|
};
|
|
729
|
-
};
|
|
730
|
-
};
|
|
731
|
-
export declare const fragment: {
|
|
732
|
-
props: {
|
|
733
788
|
type: {
|
|
734
789
|
type: string;
|
|
735
790
|
values: string[];
|
|
736
791
|
};
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
export declare const fragment: {
|
|
795
|
+
props: {
|
|
737
796
|
attrs: {
|
|
738
797
|
props: {
|
|
739
798
|
localId: {
|
|
@@ -741,128 +800,128 @@ export declare const fragment: {
|
|
|
741
800
|
type: string;
|
|
742
801
|
};
|
|
743
802
|
name: {
|
|
744
|
-
type: string;
|
|
745
803
|
optional: boolean;
|
|
804
|
+
type: string;
|
|
746
805
|
};
|
|
747
806
|
};
|
|
748
807
|
};
|
|
749
|
-
};
|
|
750
|
-
};
|
|
751
|
-
export declare const hardBreak: {
|
|
752
|
-
props: {
|
|
753
808
|
type: {
|
|
754
809
|
type: string;
|
|
755
810
|
values: string[];
|
|
756
811
|
};
|
|
812
|
+
};
|
|
813
|
+
};
|
|
814
|
+
export declare const hardBreak: {
|
|
815
|
+
props: {
|
|
757
816
|
attrs: {
|
|
817
|
+
optional: boolean;
|
|
758
818
|
props: {
|
|
759
|
-
text: {
|
|
760
|
-
type: string;
|
|
761
|
-
values: string[];
|
|
762
|
-
optional: boolean;
|
|
763
|
-
};
|
|
764
819
|
localId: {
|
|
820
|
+
optional: boolean;
|
|
765
821
|
type: string;
|
|
822
|
+
};
|
|
823
|
+
text: {
|
|
766
824
|
optional: boolean;
|
|
825
|
+
type: string;
|
|
826
|
+
values: string[];
|
|
767
827
|
};
|
|
768
828
|
};
|
|
769
|
-
optional: boolean;
|
|
770
829
|
};
|
|
771
|
-
};
|
|
772
|
-
};
|
|
773
|
-
export declare const heading: {
|
|
774
|
-
props: {
|
|
775
830
|
type: {
|
|
776
831
|
type: string;
|
|
777
832
|
values: string[];
|
|
778
833
|
};
|
|
834
|
+
};
|
|
835
|
+
};
|
|
836
|
+
export declare const heading: {
|
|
837
|
+
props: {
|
|
779
838
|
attrs: {
|
|
780
839
|
props: {
|
|
781
840
|
level: {
|
|
782
|
-
type: string;
|
|
783
|
-
minimum: number;
|
|
784
841
|
maximum: number;
|
|
842
|
+
minimum: number;
|
|
843
|
+
type: string;
|
|
785
844
|
};
|
|
786
845
|
localId: {
|
|
787
|
-
type: string;
|
|
788
846
|
optional: boolean;
|
|
847
|
+
type: string;
|
|
789
848
|
};
|
|
790
849
|
};
|
|
791
850
|
};
|
|
792
851
|
content: {
|
|
793
|
-
|
|
852
|
+
allowUnsupportedInline: boolean;
|
|
794
853
|
items: string[];
|
|
795
854
|
optional: boolean;
|
|
796
|
-
|
|
855
|
+
type: string;
|
|
797
856
|
};
|
|
798
857
|
marks: {
|
|
799
|
-
type: string;
|
|
800
858
|
items: never[];
|
|
801
859
|
optional: boolean;
|
|
860
|
+
type: string;
|
|
861
|
+
};
|
|
862
|
+
type: {
|
|
863
|
+
type: string;
|
|
864
|
+
values: string[];
|
|
802
865
|
};
|
|
803
866
|
};
|
|
804
867
|
};
|
|
805
868
|
export declare const heading_with_alignment: (string | {
|
|
806
869
|
props: {
|
|
807
870
|
marks: {
|
|
808
|
-
type: string;
|
|
809
|
-
optional: boolean;
|
|
810
871
|
items: string[];
|
|
872
|
+
optional: boolean;
|
|
873
|
+
type: string;
|
|
811
874
|
};
|
|
812
875
|
};
|
|
813
876
|
})[];
|
|
814
877
|
export declare const heading_with_indentation: (string | {
|
|
815
878
|
props: {
|
|
816
|
-
marks: {
|
|
817
|
-
type: string;
|
|
818
|
-
optional: boolean;
|
|
879
|
+
marks: {
|
|
819
880
|
items: string[];
|
|
881
|
+
optional: boolean;
|
|
882
|
+
type: string;
|
|
820
883
|
};
|
|
821
884
|
};
|
|
822
885
|
})[];
|
|
823
886
|
export declare const heading_with_no_marks: (string | {
|
|
824
887
|
props: {
|
|
825
888
|
marks: {
|
|
826
|
-
type: string;
|
|
827
|
-
maxItems: number;
|
|
828
889
|
items: never[];
|
|
890
|
+
maxItems: number;
|
|
829
891
|
optional: boolean;
|
|
892
|
+
type: string;
|
|
830
893
|
};
|
|
831
894
|
};
|
|
832
895
|
})[];
|
|
833
896
|
export declare const indentation: {
|
|
834
897
|
props: {
|
|
835
|
-
type: {
|
|
836
|
-
type: string;
|
|
837
|
-
values: string[];
|
|
838
|
-
};
|
|
839
898
|
attrs: {
|
|
840
899
|
props: {
|
|
841
900
|
level: {
|
|
842
|
-
type: string;
|
|
843
|
-
minimum: number;
|
|
844
901
|
maximum: number;
|
|
902
|
+
minimum: number;
|
|
903
|
+
type: string;
|
|
845
904
|
};
|
|
846
905
|
};
|
|
847
906
|
};
|
|
907
|
+
type: {
|
|
908
|
+
type: string;
|
|
909
|
+
values: string[];
|
|
910
|
+
};
|
|
848
911
|
};
|
|
849
912
|
};
|
|
850
913
|
export declare const inline_content: string[];
|
|
851
914
|
export declare const inlineCard: {
|
|
852
915
|
props: {
|
|
853
|
-
type: {
|
|
854
|
-
type: string;
|
|
855
|
-
values: string[];
|
|
856
|
-
};
|
|
857
916
|
attrs: ({
|
|
858
917
|
props: {
|
|
859
|
-
|
|
918
|
+
localId: {
|
|
919
|
+
optional: boolean;
|
|
860
920
|
type: string;
|
|
861
|
-
validatorFn: string;
|
|
862
921
|
};
|
|
863
|
-
|
|
922
|
+
url: {
|
|
864
923
|
type: string;
|
|
865
|
-
|
|
924
|
+
validatorFn: string;
|
|
866
925
|
};
|
|
867
926
|
data?: undefined;
|
|
868
927
|
};
|
|
@@ -872,26 +931,26 @@ export declare const inlineCard: {
|
|
|
872
931
|
type: string;
|
|
873
932
|
};
|
|
874
933
|
localId: {
|
|
875
|
-
type: string;
|
|
876
934
|
optional: boolean;
|
|
935
|
+
type: string;
|
|
877
936
|
};
|
|
878
937
|
url?: undefined;
|
|
879
938
|
};
|
|
880
939
|
})[];
|
|
881
940
|
marks: {
|
|
882
|
-
type: string;
|
|
883
|
-
optional: boolean;
|
|
884
941
|
items: string[];
|
|
942
|
+
optional: boolean;
|
|
943
|
+
type: string;
|
|
944
|
+
};
|
|
945
|
+
type: {
|
|
946
|
+
type: string;
|
|
947
|
+
values: string[];
|
|
885
948
|
};
|
|
886
949
|
};
|
|
887
950
|
required: string[];
|
|
888
951
|
};
|
|
889
952
|
export declare const inlineExtension: {
|
|
890
953
|
props: {
|
|
891
|
-
type: {
|
|
892
|
-
type: string;
|
|
893
|
-
values: string[];
|
|
894
|
-
};
|
|
895
954
|
attrs: {
|
|
896
955
|
props: {
|
|
897
956
|
extensionKey: {
|
|
@@ -902,383 +961,387 @@ export declare const inlineExtension: {
|
|
|
902
961
|
minLength: number;
|
|
903
962
|
type: string;
|
|
904
963
|
};
|
|
905
|
-
|
|
964
|
+
localId: {
|
|
965
|
+
minLength: number;
|
|
966
|
+
optional: boolean;
|
|
906
967
|
type: string;
|
|
968
|
+
};
|
|
969
|
+
parameters: {
|
|
907
970
|
optional: boolean;
|
|
971
|
+
type: string;
|
|
908
972
|
};
|
|
909
973
|
text: {
|
|
910
|
-
type: string;
|
|
911
974
|
optional: boolean;
|
|
912
|
-
};
|
|
913
|
-
localId: {
|
|
914
|
-
minLength: number;
|
|
915
975
|
type: string;
|
|
916
|
-
optional: boolean;
|
|
917
976
|
};
|
|
918
977
|
};
|
|
919
978
|
};
|
|
920
979
|
marks: {
|
|
921
|
-
type: string;
|
|
922
980
|
items: never[];
|
|
923
981
|
optional: boolean;
|
|
982
|
+
type: string;
|
|
983
|
+
};
|
|
984
|
+
type: {
|
|
985
|
+
type: string;
|
|
986
|
+
values: string[];
|
|
924
987
|
};
|
|
925
988
|
};
|
|
926
989
|
};
|
|
927
990
|
export declare const inlineExtension_with_marks: (string | {
|
|
928
991
|
props: {
|
|
929
992
|
marks: {
|
|
930
|
-
type: string;
|
|
931
|
-
optional: boolean;
|
|
932
993
|
items: string[][];
|
|
994
|
+
optional: boolean;
|
|
995
|
+
type: string;
|
|
933
996
|
};
|
|
934
997
|
};
|
|
935
998
|
})[];
|
|
936
999
|
export declare const layoutColumn: {
|
|
937
1000
|
props: {
|
|
938
|
-
type: {
|
|
939
|
-
type: string;
|
|
940
|
-
values: string[];
|
|
941
|
-
};
|
|
942
1001
|
attrs: {
|
|
943
1002
|
props: {
|
|
944
|
-
|
|
1003
|
+
localId: {
|
|
1004
|
+
optional: boolean;
|
|
945
1005
|
type: string;
|
|
946
|
-
minimum: number;
|
|
947
|
-
maximum: number;
|
|
948
1006
|
};
|
|
949
|
-
|
|
1007
|
+
width: {
|
|
1008
|
+
maximum: number;
|
|
1009
|
+
minimum: number;
|
|
950
1010
|
type: string;
|
|
951
|
-
optional: boolean;
|
|
952
1011
|
};
|
|
953
1012
|
};
|
|
954
1013
|
};
|
|
955
1014
|
content: {
|
|
956
|
-
|
|
1015
|
+
allowUnsupportedBlock: boolean;
|
|
957
1016
|
items: string[];
|
|
958
1017
|
minItems: number;
|
|
959
|
-
|
|
1018
|
+
type: string;
|
|
960
1019
|
};
|
|
961
|
-
};
|
|
962
|
-
};
|
|
963
|
-
export declare const layoutSection: {
|
|
964
|
-
props: {
|
|
965
1020
|
type: {
|
|
966
1021
|
type: string;
|
|
967
1022
|
values: string[];
|
|
968
1023
|
};
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
export declare const layoutSection: {
|
|
1027
|
+
props: {
|
|
969
1028
|
attrs: {
|
|
1029
|
+
optional: boolean;
|
|
970
1030
|
props: {
|
|
971
1031
|
localId: {
|
|
972
|
-
type: string;
|
|
973
1032
|
optional: boolean;
|
|
1033
|
+
type: string;
|
|
974
1034
|
};
|
|
975
1035
|
};
|
|
976
|
-
optional: boolean;
|
|
977
1036
|
};
|
|
978
1037
|
content: {
|
|
979
|
-
|
|
1038
|
+
allowUnsupportedBlock: boolean;
|
|
980
1039
|
items: string[];
|
|
981
|
-
minItems: number;
|
|
982
1040
|
maxItems: number;
|
|
983
|
-
|
|
1041
|
+
minItems: number;
|
|
1042
|
+
type: string;
|
|
984
1043
|
};
|
|
985
1044
|
marks: {
|
|
986
|
-
type: string;
|
|
987
|
-
optional: boolean;
|
|
988
1045
|
items: string[];
|
|
1046
|
+
optional: boolean;
|
|
1047
|
+
type: string;
|
|
1048
|
+
};
|
|
1049
|
+
type: {
|
|
1050
|
+
type: string;
|
|
1051
|
+
values: string[];
|
|
989
1052
|
};
|
|
990
1053
|
};
|
|
991
1054
|
};
|
|
992
1055
|
export declare const layoutSection_full: (string | {
|
|
993
1056
|
props: {
|
|
994
1057
|
content: {
|
|
995
|
-
|
|
1058
|
+
allowUnsupportedBlock: boolean;
|
|
996
1059
|
items: string[];
|
|
997
|
-
minItems: number;
|
|
998
1060
|
maxItems: number;
|
|
999
|
-
|
|
1061
|
+
minItems: number;
|
|
1062
|
+
type: string;
|
|
1000
1063
|
};
|
|
1001
1064
|
marks: {
|
|
1002
|
-
type: string;
|
|
1003
|
-
optional: boolean;
|
|
1004
1065
|
items: string[];
|
|
1066
|
+
optional: boolean;
|
|
1067
|
+
type: string;
|
|
1005
1068
|
};
|
|
1006
1069
|
};
|
|
1007
1070
|
})[];
|
|
1008
1071
|
export declare const layoutSection_with_single_column: (string | {
|
|
1009
1072
|
props: {
|
|
1010
1073
|
attrs: {
|
|
1074
|
+
optional: boolean;
|
|
1011
1075
|
props: {
|
|
1012
1076
|
columnRuleStyle: {
|
|
1077
|
+
optional: boolean;
|
|
1013
1078
|
type: string;
|
|
1014
1079
|
values: string[];
|
|
1015
|
-
optional: boolean;
|
|
1016
1080
|
};
|
|
1017
1081
|
localId: {
|
|
1018
|
-
type: string;
|
|
1019
1082
|
optional: boolean;
|
|
1083
|
+
type: string;
|
|
1020
1084
|
};
|
|
1021
1085
|
};
|
|
1022
|
-
optional: boolean;
|
|
1023
1086
|
};
|
|
1024
1087
|
content: {
|
|
1025
|
-
|
|
1088
|
+
allowUnsupportedBlock: boolean;
|
|
1026
1089
|
items: string[];
|
|
1027
|
-
minItems: number;
|
|
1028
1090
|
maxItems: number;
|
|
1029
|
-
|
|
1091
|
+
minItems: number;
|
|
1092
|
+
type: string;
|
|
1030
1093
|
};
|
|
1031
1094
|
marks: {
|
|
1032
|
-
type: string;
|
|
1033
|
-
optional: boolean;
|
|
1034
1095
|
items: string[];
|
|
1096
|
+
optional: boolean;
|
|
1097
|
+
type: string;
|
|
1035
1098
|
};
|
|
1036
1099
|
};
|
|
1037
1100
|
})[];
|
|
1038
1101
|
export declare const link: {
|
|
1039
1102
|
props: {
|
|
1040
|
-
type: {
|
|
1041
|
-
type: string;
|
|
1042
|
-
values: string[];
|
|
1043
|
-
};
|
|
1044
1103
|
attrs: {
|
|
1045
1104
|
props: {
|
|
1046
|
-
|
|
1105
|
+
collection: {
|
|
1106
|
+
optional: boolean;
|
|
1047
1107
|
type: string;
|
|
1048
|
-
validatorFn: string;
|
|
1049
1108
|
};
|
|
1050
|
-
|
|
1109
|
+
href: {
|
|
1051
1110
|
type: string;
|
|
1052
|
-
|
|
1111
|
+
validatorFn: string;
|
|
1053
1112
|
};
|
|
1054
1113
|
id: {
|
|
1055
|
-
type: string;
|
|
1056
1114
|
optional: boolean;
|
|
1057
|
-
};
|
|
1058
|
-
collection: {
|
|
1059
1115
|
type: string;
|
|
1060
|
-
optional: boolean;
|
|
1061
1116
|
};
|
|
1062
1117
|
occurrenceKey: {
|
|
1118
|
+
optional: boolean;
|
|
1063
1119
|
type: string;
|
|
1120
|
+
};
|
|
1121
|
+
title: {
|
|
1064
1122
|
optional: boolean;
|
|
1123
|
+
type: string;
|
|
1065
1124
|
};
|
|
1066
1125
|
};
|
|
1067
1126
|
};
|
|
1068
|
-
};
|
|
1069
|
-
};
|
|
1070
|
-
export declare const listItem: {
|
|
1071
|
-
props: {
|
|
1072
1127
|
type: {
|
|
1073
1128
|
type: string;
|
|
1074
1129
|
values: string[];
|
|
1075
1130
|
};
|
|
1131
|
+
};
|
|
1132
|
+
};
|
|
1133
|
+
export declare const listItem: {
|
|
1134
|
+
props: {
|
|
1076
1135
|
attrs: {
|
|
1136
|
+
optional: boolean;
|
|
1077
1137
|
props: {
|
|
1078
1138
|
localId: {
|
|
1079
|
-
type: string;
|
|
1080
1139
|
optional: boolean;
|
|
1140
|
+
type: string;
|
|
1081
1141
|
};
|
|
1082
1142
|
};
|
|
1083
|
-
optional: boolean;
|
|
1084
1143
|
};
|
|
1085
1144
|
content: {
|
|
1086
|
-
|
|
1145
|
+
allowUnsupportedBlock: boolean;
|
|
1087
1146
|
items: string[][];
|
|
1088
1147
|
minItems: number;
|
|
1089
|
-
|
|
1148
|
+
type: string;
|
|
1090
1149
|
};
|
|
1091
|
-
};
|
|
1092
|
-
};
|
|
1093
|
-
export declare const media: {
|
|
1094
|
-
props: {
|
|
1095
1150
|
type: {
|
|
1096
1151
|
type: string;
|
|
1097
1152
|
values: string[];
|
|
1098
1153
|
};
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
export declare const media: {
|
|
1157
|
+
props: {
|
|
1099
1158
|
attrs: ({
|
|
1100
1159
|
props: {
|
|
1101
|
-
|
|
1160
|
+
alt: {
|
|
1161
|
+
optional: boolean;
|
|
1102
1162
|
type: string;
|
|
1103
|
-
values: string[];
|
|
1104
1163
|
};
|
|
1105
|
-
|
|
1164
|
+
collection: {
|
|
1106
1165
|
type: string;
|
|
1166
|
+
};
|
|
1167
|
+
height: {
|
|
1107
1168
|
optional: boolean;
|
|
1169
|
+
type: string;
|
|
1108
1170
|
};
|
|
1109
1171
|
id: {
|
|
1110
1172
|
minLength: number;
|
|
1111
1173
|
type: string;
|
|
1112
1174
|
};
|
|
1113
|
-
|
|
1114
|
-
type: string;
|
|
1175
|
+
localId: {
|
|
1115
1176
|
optional: boolean;
|
|
1116
|
-
};
|
|
1117
|
-
collection: {
|
|
1118
|
-
type: string;
|
|
1119
|
-
};
|
|
1120
|
-
height: {
|
|
1121
1177
|
type: string;
|
|
1122
|
-
optional: boolean;
|
|
1123
1178
|
};
|
|
1124
1179
|
occurrenceKey: {
|
|
1125
1180
|
minLength: number;
|
|
1126
|
-
type: string;
|
|
1127
1181
|
optional: boolean;
|
|
1182
|
+
type: string;
|
|
1128
1183
|
};
|
|
1129
|
-
|
|
1184
|
+
type: {
|
|
1130
1185
|
type: string;
|
|
1186
|
+
values: string[];
|
|
1187
|
+
};
|
|
1188
|
+
width: {
|
|
1131
1189
|
optional: boolean;
|
|
1190
|
+
type: string;
|
|
1132
1191
|
};
|
|
1133
1192
|
url?: undefined;
|
|
1134
1193
|
};
|
|
1135
1194
|
} | {
|
|
1136
1195
|
props: {
|
|
1137
|
-
|
|
1196
|
+
alt: {
|
|
1197
|
+
optional: boolean;
|
|
1138
1198
|
type: string;
|
|
1139
|
-
values: string[];
|
|
1140
1199
|
};
|
|
1141
|
-
|
|
1200
|
+
height: {
|
|
1201
|
+
optional: boolean;
|
|
1142
1202
|
type: string;
|
|
1203
|
+
};
|
|
1204
|
+
localId: {
|
|
1143
1205
|
optional: boolean;
|
|
1206
|
+
type: string;
|
|
1144
1207
|
};
|
|
1145
|
-
|
|
1208
|
+
type: {
|
|
1146
1209
|
type: string;
|
|
1147
|
-
|
|
1210
|
+
values: string[];
|
|
1148
1211
|
};
|
|
1149
|
-
|
|
1212
|
+
url: {
|
|
1150
1213
|
type: string;
|
|
1151
|
-
optional: boolean;
|
|
1152
1214
|
};
|
|
1153
1215
|
width: {
|
|
1154
|
-
type: string;
|
|
1155
1216
|
optional: boolean;
|
|
1156
|
-
};
|
|
1157
|
-
url: {
|
|
1158
1217
|
type: string;
|
|
1159
1218
|
};
|
|
1160
|
-
id?: undefined;
|
|
1161
1219
|
collection?: undefined;
|
|
1220
|
+
id?: undefined;
|
|
1162
1221
|
occurrenceKey?: undefined;
|
|
1163
1222
|
};
|
|
1164
1223
|
})[];
|
|
1165
1224
|
marks: {
|
|
1166
|
-
type: string;
|
|
1167
|
-
optional: boolean;
|
|
1168
1225
|
items: string[][];
|
|
1226
|
+
optional: boolean;
|
|
1227
|
+
type: string;
|
|
1228
|
+
};
|
|
1229
|
+
type: {
|
|
1230
|
+
type: string;
|
|
1231
|
+
values: string[];
|
|
1169
1232
|
};
|
|
1170
1233
|
};
|
|
1171
1234
|
required: string[];
|
|
1172
1235
|
};
|
|
1173
1236
|
export declare const mediaGroup: {
|
|
1174
1237
|
props: {
|
|
1175
|
-
type: {
|
|
1176
|
-
type: string;
|
|
1177
|
-
values: string[];
|
|
1178
|
-
};
|
|
1179
1238
|
content: {
|
|
1180
|
-
|
|
1239
|
+
allowUnsupportedBlock: boolean;
|
|
1181
1240
|
items: string[];
|
|
1182
1241
|
minItems: number;
|
|
1183
|
-
|
|
1242
|
+
type: string;
|
|
1184
1243
|
};
|
|
1185
|
-
};
|
|
1186
|
-
};
|
|
1187
|
-
export declare const mediaInline: {
|
|
1188
|
-
props: {
|
|
1189
1244
|
type: {
|
|
1190
1245
|
type: string;
|
|
1191
1246
|
values: string[];
|
|
1192
1247
|
};
|
|
1248
|
+
};
|
|
1249
|
+
};
|
|
1250
|
+
export declare const mediaInline: {
|
|
1251
|
+
props: {
|
|
1193
1252
|
attrs: {
|
|
1194
1253
|
props: {
|
|
1195
|
-
|
|
1196
|
-
type: string;
|
|
1197
|
-
values: string[];
|
|
1254
|
+
alt: {
|
|
1198
1255
|
optional: boolean;
|
|
1256
|
+
type: string;
|
|
1199
1257
|
};
|
|
1200
|
-
|
|
1258
|
+
collection: {
|
|
1201
1259
|
type: string;
|
|
1202
|
-
optional: boolean;
|
|
1203
1260
|
};
|
|
1204
|
-
|
|
1261
|
+
data: {
|
|
1262
|
+
optional: boolean;
|
|
1205
1263
|
type: string;
|
|
1264
|
+
};
|
|
1265
|
+
height: {
|
|
1206
1266
|
optional: boolean;
|
|
1267
|
+
type: string;
|
|
1207
1268
|
};
|
|
1208
1269
|
id: {
|
|
1209
1270
|
minLength: number;
|
|
1210
1271
|
type: string;
|
|
1211
1272
|
};
|
|
1212
|
-
|
|
1213
|
-
type: string;
|
|
1273
|
+
localId: {
|
|
1214
1274
|
optional: boolean;
|
|
1215
|
-
};
|
|
1216
|
-
collection: {
|
|
1217
1275
|
type: string;
|
|
1218
1276
|
};
|
|
1219
1277
|
occurrenceKey: {
|
|
1220
1278
|
minLength: number;
|
|
1221
|
-
type: string;
|
|
1222
1279
|
optional: boolean;
|
|
1223
|
-
};
|
|
1224
|
-
width: {
|
|
1225
1280
|
type: string;
|
|
1226
|
-
optional: boolean;
|
|
1227
1281
|
};
|
|
1228
|
-
|
|
1229
|
-
type: string;
|
|
1282
|
+
type: {
|
|
1230
1283
|
optional: boolean;
|
|
1284
|
+
type: string;
|
|
1285
|
+
values: string[];
|
|
1231
1286
|
};
|
|
1232
|
-
|
|
1287
|
+
url: {
|
|
1288
|
+
optional: boolean;
|
|
1233
1289
|
type: string;
|
|
1290
|
+
};
|
|
1291
|
+
width: {
|
|
1234
1292
|
optional: boolean;
|
|
1293
|
+
type: string;
|
|
1235
1294
|
};
|
|
1236
1295
|
};
|
|
1237
1296
|
};
|
|
1238
1297
|
marks: {
|
|
1239
|
-
type: string;
|
|
1240
|
-
optional: boolean;
|
|
1241
1298
|
items: string[][];
|
|
1299
|
+
optional: boolean;
|
|
1300
|
+
type: string;
|
|
1242
1301
|
};
|
|
1243
|
-
};
|
|
1244
|
-
};
|
|
1245
|
-
export declare const mediaSingle: {
|
|
1246
|
-
props: {
|
|
1247
1302
|
type: {
|
|
1248
1303
|
type: string;
|
|
1249
1304
|
values: string[];
|
|
1250
1305
|
};
|
|
1306
|
+
};
|
|
1307
|
+
};
|
|
1308
|
+
export declare const mediaSingle: {
|
|
1309
|
+
props: {
|
|
1251
1310
|
attrs: ({
|
|
1252
1311
|
props: {
|
|
1253
|
-
|
|
1312
|
+
layout: {
|
|
1254
1313
|
type: string;
|
|
1314
|
+
values: string[];
|
|
1315
|
+
};
|
|
1316
|
+
localId: {
|
|
1255
1317
|
optional: boolean;
|
|
1318
|
+
type: string;
|
|
1256
1319
|
};
|
|
1257
1320
|
width: {
|
|
1258
|
-
type: string;
|
|
1259
|
-
minimum: number;
|
|
1260
1321
|
maximum: number;
|
|
1322
|
+
minimum: number;
|
|
1261
1323
|
optional: boolean;
|
|
1262
|
-
};
|
|
1263
|
-
layout: {
|
|
1264
1324
|
type: string;
|
|
1265
|
-
values: string[];
|
|
1266
1325
|
};
|
|
1267
1326
|
widthType: {
|
|
1327
|
+
optional: boolean;
|
|
1268
1328
|
type: string;
|
|
1269
1329
|
values: string[];
|
|
1270
|
-
optional: boolean;
|
|
1271
1330
|
};
|
|
1272
1331
|
};
|
|
1273
1332
|
} | {
|
|
1274
1333
|
props: {
|
|
1275
|
-
|
|
1334
|
+
layout: {
|
|
1276
1335
|
type: string;
|
|
1336
|
+
values: string[];
|
|
1337
|
+
};
|
|
1338
|
+
localId: {
|
|
1277
1339
|
optional: boolean;
|
|
1340
|
+
type: string;
|
|
1278
1341
|
};
|
|
1279
1342
|
width: {
|
|
1280
|
-
type: string;
|
|
1281
1343
|
minimum: number;
|
|
1344
|
+
type: string;
|
|
1282
1345
|
maximum?: undefined;
|
|
1283
1346
|
optional?: undefined;
|
|
1284
1347
|
};
|
|
@@ -1287,394 +1350,376 @@ export declare const mediaSingle: {
|
|
|
1287
1350
|
values: string[];
|
|
1288
1351
|
optional?: undefined;
|
|
1289
1352
|
};
|
|
1290
|
-
layout: {
|
|
1291
|
-
type: string;
|
|
1292
|
-
values: string[];
|
|
1293
|
-
};
|
|
1294
1353
|
};
|
|
1295
1354
|
})[];
|
|
1296
1355
|
marks: {
|
|
1297
|
-
type: string;
|
|
1298
|
-
optional: boolean;
|
|
1299
1356
|
items: string[];
|
|
1357
|
+
optional: boolean;
|
|
1358
|
+
type: string;
|
|
1359
|
+
};
|
|
1360
|
+
type: {
|
|
1361
|
+
type: string;
|
|
1362
|
+
values: string[];
|
|
1300
1363
|
};
|
|
1301
1364
|
};
|
|
1302
1365
|
};
|
|
1303
1366
|
export declare const mediaSingle_caption: (string | {
|
|
1304
1367
|
props: {
|
|
1305
1368
|
content: {
|
|
1306
|
-
|
|
1369
|
+
allowUnsupportedBlock: boolean;
|
|
1307
1370
|
isTupleLike: boolean;
|
|
1308
1371
|
items: string[];
|
|
1309
|
-
minItems: number;
|
|
1310
1372
|
maxItems: number;
|
|
1311
|
-
|
|
1373
|
+
minItems: number;
|
|
1374
|
+
type: string;
|
|
1312
1375
|
};
|
|
1313
1376
|
};
|
|
1314
1377
|
})[];
|
|
1315
1378
|
export declare const mediaSingle_full: (string | {
|
|
1316
1379
|
props: {
|
|
1317
1380
|
content: {
|
|
1318
|
-
|
|
1381
|
+
allowUnsupportedBlock: boolean;
|
|
1319
1382
|
items: string[];
|
|
1320
|
-
minItems: number;
|
|
1321
1383
|
maxItems: number;
|
|
1322
|
-
|
|
1384
|
+
minItems: number;
|
|
1385
|
+
type: string;
|
|
1323
1386
|
};
|
|
1324
1387
|
};
|
|
1325
1388
|
})[];
|
|
1326
1389
|
export declare const mediaSingle_width_type: (string | {
|
|
1327
1390
|
props: {
|
|
1328
1391
|
content: {
|
|
1329
|
-
|
|
1392
|
+
allowUnsupportedBlock: boolean;
|
|
1330
1393
|
items: string[];
|
|
1331
|
-
minItems: number;
|
|
1332
1394
|
maxItems: number;
|
|
1333
|
-
|
|
1395
|
+
minItems: number;
|
|
1396
|
+
type: string;
|
|
1334
1397
|
};
|
|
1335
1398
|
};
|
|
1336
1399
|
})[];
|
|
1337
1400
|
export declare const mention: {
|
|
1338
1401
|
props: {
|
|
1339
|
-
type: {
|
|
1340
|
-
type: string;
|
|
1341
|
-
values: string[];
|
|
1342
|
-
};
|
|
1343
1402
|
attrs: {
|
|
1344
1403
|
props: {
|
|
1404
|
+
accessLevel: {
|
|
1405
|
+
optional: boolean;
|
|
1406
|
+
type: string;
|
|
1407
|
+
};
|
|
1345
1408
|
id: {
|
|
1346
1409
|
type: string;
|
|
1347
1410
|
};
|
|
1348
1411
|
localId: {
|
|
1349
|
-
type: string;
|
|
1350
1412
|
optional: boolean;
|
|
1413
|
+
type: string;
|
|
1351
1414
|
};
|
|
1352
1415
|
text: {
|
|
1353
|
-
type: string;
|
|
1354
1416
|
optional: boolean;
|
|
1355
|
-
};
|
|
1356
|
-
accessLevel: {
|
|
1357
1417
|
type: string;
|
|
1358
|
-
optional: boolean;
|
|
1359
1418
|
};
|
|
1360
1419
|
userType: {
|
|
1420
|
+
optional: boolean;
|
|
1361
1421
|
type: string;
|
|
1362
1422
|
values: string[];
|
|
1363
|
-
optional: boolean;
|
|
1364
1423
|
};
|
|
1365
1424
|
};
|
|
1366
1425
|
};
|
|
1367
1426
|
marks: {
|
|
1368
|
-
type: string;
|
|
1369
|
-
optional: boolean;
|
|
1370
1427
|
items: string[];
|
|
1428
|
+
optional: boolean;
|
|
1429
|
+
type: string;
|
|
1371
1430
|
};
|
|
1372
|
-
};
|
|
1373
|
-
};
|
|
1374
|
-
export declare const multiBodiedExtension: {
|
|
1375
|
-
props: {
|
|
1376
1431
|
type: {
|
|
1377
1432
|
type: string;
|
|
1378
1433
|
values: string[];
|
|
1379
1434
|
};
|
|
1435
|
+
};
|
|
1436
|
+
};
|
|
1437
|
+
export declare const multiBodiedExtension: {
|
|
1438
|
+
props: {
|
|
1380
1439
|
attrs: {
|
|
1381
1440
|
props: {
|
|
1382
1441
|
extensionKey: {
|
|
1383
|
-
type: string;
|
|
1384
1442
|
minLength: number;
|
|
1443
|
+
type: string;
|
|
1385
1444
|
};
|
|
1386
1445
|
extensionType: {
|
|
1387
|
-
type: string;
|
|
1388
1446
|
minLength: number;
|
|
1389
|
-
};
|
|
1390
|
-
parameters: {
|
|
1391
1447
|
type: string;
|
|
1392
|
-
optional: boolean;
|
|
1393
|
-
};
|
|
1394
|
-
text: {
|
|
1395
|
-
type: string;
|
|
1396
|
-
optional: boolean;
|
|
1397
1448
|
};
|
|
1398
1449
|
layout: {
|
|
1450
|
+
optional: boolean;
|
|
1399
1451
|
type: string;
|
|
1400
1452
|
values: string[];
|
|
1401
|
-
optional: boolean;
|
|
1402
1453
|
};
|
|
1403
1454
|
localId: {
|
|
1455
|
+
minLength: number;
|
|
1456
|
+
optional: boolean;
|
|
1404
1457
|
type: string;
|
|
1458
|
+
};
|
|
1459
|
+
parameters: {
|
|
1405
1460
|
optional: boolean;
|
|
1406
|
-
|
|
1461
|
+
type: string;
|
|
1462
|
+
};
|
|
1463
|
+
text: {
|
|
1464
|
+
optional: boolean;
|
|
1465
|
+
type: string;
|
|
1407
1466
|
};
|
|
1408
1467
|
};
|
|
1409
1468
|
};
|
|
1410
1469
|
content: {
|
|
1411
|
-
type: string;
|
|
1412
1470
|
items: string[];
|
|
1471
|
+
type: string;
|
|
1413
1472
|
};
|
|
1414
1473
|
marks: {
|
|
1415
|
-
type: string;
|
|
1416
1474
|
items: never[];
|
|
1417
1475
|
optional: boolean;
|
|
1476
|
+
type: string;
|
|
1418
1477
|
};
|
|
1419
|
-
};
|
|
1420
|
-
};
|
|
1421
|
-
export declare const nestedExpand: {
|
|
1422
|
-
props: {
|
|
1423
1478
|
type: {
|
|
1424
1479
|
type: string;
|
|
1425
1480
|
values: string[];
|
|
1426
1481
|
};
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
export declare const nestedExpand: {
|
|
1485
|
+
props: {
|
|
1427
1486
|
attrs: {
|
|
1428
1487
|
props: {
|
|
1429
|
-
title: {
|
|
1430
|
-
type: string;
|
|
1431
|
-
optional: boolean;
|
|
1432
|
-
};
|
|
1433
1488
|
localId: {
|
|
1489
|
+
optional: boolean;
|
|
1434
1490
|
type: string;
|
|
1491
|
+
};
|
|
1492
|
+
title: {
|
|
1435
1493
|
optional: boolean;
|
|
1494
|
+
type: string;
|
|
1436
1495
|
};
|
|
1437
1496
|
};
|
|
1438
1497
|
};
|
|
1439
1498
|
content: string;
|
|
1499
|
+
type: {
|
|
1500
|
+
type: string;
|
|
1501
|
+
values: string[];
|
|
1502
|
+
};
|
|
1440
1503
|
};
|
|
1441
1504
|
required: string[];
|
|
1442
1505
|
};
|
|
1443
1506
|
export declare const nestedExpand_content: {
|
|
1444
|
-
|
|
1507
|
+
allowUnsupportedBlock: boolean;
|
|
1445
1508
|
items: string[][];
|
|
1446
1509
|
minItems: number;
|
|
1447
|
-
|
|
1510
|
+
type: string;
|
|
1448
1511
|
};
|
|
1449
1512
|
export declare const nestedExpand_with_no_marks: (string | {
|
|
1450
1513
|
props: {
|
|
1451
1514
|
marks: {
|
|
1452
|
-
type: string;
|
|
1453
|
-
maxItems: number;
|
|
1454
1515
|
items: never[];
|
|
1516
|
+
maxItems: number;
|
|
1455
1517
|
optional: boolean;
|
|
1518
|
+
type: string;
|
|
1456
1519
|
};
|
|
1457
1520
|
};
|
|
1458
1521
|
})[];
|
|
1459
1522
|
export declare const non_nestable_block_content: string[];
|
|
1460
1523
|
export declare const orderedList: {
|
|
1461
1524
|
props: {
|
|
1462
|
-
type: {
|
|
1463
|
-
type: string;
|
|
1464
|
-
values: string[];
|
|
1465
|
-
};
|
|
1466
1525
|
attrs: {
|
|
1526
|
+
optional: boolean;
|
|
1467
1527
|
props: {
|
|
1468
|
-
|
|
1528
|
+
localId: {
|
|
1529
|
+
optional: boolean;
|
|
1469
1530
|
type: string;
|
|
1531
|
+
};
|
|
1532
|
+
order: {
|
|
1470
1533
|
minimum: number;
|
|
1471
1534
|
optional: boolean;
|
|
1472
|
-
};
|
|
1473
|
-
localId: {
|
|
1474
1535
|
type: string;
|
|
1475
|
-
optional: boolean;
|
|
1476
1536
|
};
|
|
1477
1537
|
};
|
|
1478
|
-
optional: boolean;
|
|
1479
1538
|
};
|
|
1480
1539
|
content: {
|
|
1481
|
-
type: string;
|
|
1482
1540
|
items: string[];
|
|
1483
1541
|
minItems: number;
|
|
1542
|
+
type: string;
|
|
1484
1543
|
};
|
|
1485
|
-
};
|
|
1486
|
-
};
|
|
1487
|
-
export declare const panel: {
|
|
1488
|
-
props: {
|
|
1489
1544
|
type: {
|
|
1490
1545
|
type: string;
|
|
1491
1546
|
values: string[];
|
|
1492
1547
|
};
|
|
1548
|
+
};
|
|
1549
|
+
};
|
|
1550
|
+
export declare const panel: {
|
|
1551
|
+
props: {
|
|
1493
1552
|
attrs: {
|
|
1494
1553
|
props: {
|
|
1495
|
-
|
|
1554
|
+
localId: {
|
|
1555
|
+
optional: boolean;
|
|
1496
1556
|
type: string;
|
|
1497
|
-
values: string[];
|
|
1498
1557
|
};
|
|
1499
|
-
|
|
1558
|
+
panelColor: {
|
|
1559
|
+
optional: boolean;
|
|
1500
1560
|
type: string;
|
|
1561
|
+
};
|
|
1562
|
+
panelIcon: {
|
|
1501
1563
|
optional: boolean;
|
|
1564
|
+
type: string;
|
|
1502
1565
|
};
|
|
1503
1566
|
panelIconId: {
|
|
1504
|
-
type: string;
|
|
1505
1567
|
optional: boolean;
|
|
1568
|
+
type: string;
|
|
1506
1569
|
};
|
|
1507
1570
|
panelIconText: {
|
|
1508
|
-
type: string;
|
|
1509
1571
|
optional: boolean;
|
|
1510
|
-
};
|
|
1511
|
-
panelColor: {
|
|
1512
1572
|
type: string;
|
|
1513
|
-
optional: boolean;
|
|
1514
1573
|
};
|
|
1515
|
-
|
|
1574
|
+
panelType: {
|
|
1516
1575
|
type: string;
|
|
1517
|
-
|
|
1576
|
+
values: string[];
|
|
1518
1577
|
};
|
|
1519
1578
|
};
|
|
1520
1579
|
};
|
|
1521
1580
|
content: {
|
|
1522
|
-
|
|
1581
|
+
allowUnsupportedBlock: boolean;
|
|
1523
1582
|
items: string[][];
|
|
1524
1583
|
minItems: number;
|
|
1525
|
-
|
|
1584
|
+
type: string;
|
|
1526
1585
|
};
|
|
1527
|
-
};
|
|
1528
|
-
};
|
|
1529
|
-
export declare const paragraph: {
|
|
1530
|
-
props: {
|
|
1531
1586
|
type: {
|
|
1532
1587
|
type: string;
|
|
1533
1588
|
values: string[];
|
|
1534
1589
|
};
|
|
1590
|
+
};
|
|
1591
|
+
};
|
|
1592
|
+
export declare const paragraph: {
|
|
1593
|
+
props: {
|
|
1535
1594
|
attrs: {
|
|
1595
|
+
optional: boolean;
|
|
1536
1596
|
props: {
|
|
1537
1597
|
localId: {
|
|
1538
|
-
type: string;
|
|
1539
1598
|
optional: boolean;
|
|
1599
|
+
type: string;
|
|
1540
1600
|
};
|
|
1541
1601
|
};
|
|
1542
|
-
optional: boolean;
|
|
1543
1602
|
};
|
|
1544
1603
|
content: {
|
|
1545
|
-
|
|
1604
|
+
allowUnsupportedInline: boolean;
|
|
1546
1605
|
items: string[];
|
|
1547
1606
|
optional: boolean;
|
|
1548
|
-
|
|
1607
|
+
type: string;
|
|
1549
1608
|
};
|
|
1550
1609
|
marks: {
|
|
1551
|
-
type: string;
|
|
1552
1610
|
items: never[];
|
|
1553
1611
|
optional: boolean;
|
|
1554
|
-
};
|
|
1555
|
-
};
|
|
1556
|
-
};
|
|
1557
|
-
export declare const paragraph_with_alignment: (string | {
|
|
1558
|
-
props: {
|
|
1559
|
-
marks: {
|
|
1560
1612
|
type: string;
|
|
1561
|
-
optional: boolean;
|
|
1562
|
-
items: string[];
|
|
1563
1613
|
};
|
|
1564
|
-
|
|
1565
|
-
})[];
|
|
1566
|
-
export declare const paragraph_with_font_size: (string | {
|
|
1567
|
-
props: {
|
|
1568
|
-
marks: {
|
|
1614
|
+
type: {
|
|
1569
1615
|
type: string;
|
|
1570
|
-
|
|
1571
|
-
items: string[];
|
|
1616
|
+
values: string[];
|
|
1572
1617
|
};
|
|
1573
1618
|
};
|
|
1574
|
-
}
|
|
1575
|
-
export declare const
|
|
1619
|
+
};
|
|
1620
|
+
export declare const paragraph_with_alignment: (string | {
|
|
1576
1621
|
props: {
|
|
1577
1622
|
marks: {
|
|
1578
|
-
type: string;
|
|
1579
|
-
optional: boolean;
|
|
1580
1623
|
items: string[][];
|
|
1624
|
+
optional: boolean;
|
|
1625
|
+
type: string;
|
|
1581
1626
|
};
|
|
1582
1627
|
};
|
|
1583
1628
|
})[];
|
|
1584
|
-
export declare const
|
|
1629
|
+
export declare const paragraph_with_font_size: (string | {
|
|
1585
1630
|
props: {
|
|
1586
1631
|
marks: {
|
|
1587
|
-
|
|
1632
|
+
items: string[];
|
|
1588
1633
|
optional: boolean;
|
|
1589
|
-
|
|
1634
|
+
type: string;
|
|
1590
1635
|
};
|
|
1591
1636
|
};
|
|
1592
1637
|
})[];
|
|
1593
1638
|
export declare const paragraph_with_indentation: (string | {
|
|
1594
1639
|
props: {
|
|
1595
1640
|
marks: {
|
|
1596
|
-
|
|
1641
|
+
items: string[][];
|
|
1597
1642
|
optional: boolean;
|
|
1598
|
-
|
|
1643
|
+
type: string;
|
|
1599
1644
|
};
|
|
1600
1645
|
};
|
|
1601
1646
|
})[];
|
|
1602
1647
|
export declare const paragraph_with_no_marks: (string | {
|
|
1603
1648
|
props: {
|
|
1604
1649
|
marks: {
|
|
1605
|
-
type: string;
|
|
1606
|
-
maxItems: number;
|
|
1607
1650
|
items: never[];
|
|
1651
|
+
maxItems: number;
|
|
1608
1652
|
optional: boolean;
|
|
1653
|
+
type: string;
|
|
1609
1654
|
};
|
|
1610
1655
|
};
|
|
1611
1656
|
})[];
|
|
1612
1657
|
export declare const placeholder: {
|
|
1613
1658
|
props: {
|
|
1614
|
-
type: {
|
|
1615
|
-
type: string;
|
|
1616
|
-
values: string[];
|
|
1617
|
-
};
|
|
1618
1659
|
attrs: {
|
|
1619
1660
|
props: {
|
|
1620
|
-
|
|
1661
|
+
localId: {
|
|
1662
|
+
optional: boolean;
|
|
1621
1663
|
type: string;
|
|
1622
1664
|
};
|
|
1623
|
-
|
|
1665
|
+
text: {
|
|
1624
1666
|
type: string;
|
|
1625
|
-
optional: boolean;
|
|
1626
1667
|
};
|
|
1627
1668
|
};
|
|
1628
1669
|
};
|
|
1629
|
-
};
|
|
1630
|
-
};
|
|
1631
|
-
export declare const rule: {
|
|
1632
|
-
props: {
|
|
1633
1670
|
type: {
|
|
1634
1671
|
type: string;
|
|
1635
1672
|
values: string[];
|
|
1636
1673
|
};
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
export declare const rule: {
|
|
1677
|
+
props: {
|
|
1637
1678
|
attrs: {
|
|
1679
|
+
optional: boolean;
|
|
1638
1680
|
props: {
|
|
1639
1681
|
localId: {
|
|
1640
|
-
type: string;
|
|
1641
1682
|
optional: boolean;
|
|
1683
|
+
type: string;
|
|
1642
1684
|
};
|
|
1643
1685
|
};
|
|
1644
|
-
optional: boolean;
|
|
1645
1686
|
};
|
|
1646
|
-
};
|
|
1647
|
-
};
|
|
1648
|
-
export declare const status: {
|
|
1649
|
-
props: {
|
|
1650
1687
|
type: {
|
|
1651
1688
|
type: string;
|
|
1652
1689
|
values: string[];
|
|
1653
1690
|
};
|
|
1691
|
+
};
|
|
1692
|
+
};
|
|
1693
|
+
export declare const status: {
|
|
1694
|
+
props: {
|
|
1654
1695
|
attrs: {
|
|
1655
1696
|
props: {
|
|
1656
|
-
text: {
|
|
1657
|
-
minLength: number;
|
|
1658
|
-
type: string;
|
|
1659
|
-
};
|
|
1660
1697
|
color: {
|
|
1661
1698
|
type: string;
|
|
1662
1699
|
values: string[];
|
|
1663
1700
|
};
|
|
1664
1701
|
localId: {
|
|
1665
|
-
type: string;
|
|
1666
1702
|
optional: boolean;
|
|
1703
|
+
type: string;
|
|
1667
1704
|
};
|
|
1668
1705
|
style: {
|
|
1669
|
-
type: string;
|
|
1670
1706
|
optional: boolean;
|
|
1707
|
+
type: string;
|
|
1708
|
+
};
|
|
1709
|
+
text: {
|
|
1710
|
+
minLength: number;
|
|
1711
|
+
type: string;
|
|
1671
1712
|
};
|
|
1672
1713
|
};
|
|
1673
1714
|
};
|
|
1674
1715
|
marks: {
|
|
1675
|
-
type: string;
|
|
1676
|
-
optional: boolean;
|
|
1677
1716
|
items: string[];
|
|
1717
|
+
optional: boolean;
|
|
1718
|
+
type: string;
|
|
1719
|
+
};
|
|
1720
|
+
type: {
|
|
1721
|
+
type: string;
|
|
1722
|
+
values: string[];
|
|
1678
1723
|
};
|
|
1679
1724
|
};
|
|
1680
1725
|
};
|
|
@@ -1696,10 +1741,6 @@ export declare const strong: {
|
|
|
1696
1741
|
};
|
|
1697
1742
|
export declare const subsup: {
|
|
1698
1743
|
props: {
|
|
1699
|
-
type: {
|
|
1700
|
-
type: string;
|
|
1701
|
-
values: string[];
|
|
1702
|
-
};
|
|
1703
1744
|
attrs: {
|
|
1704
1745
|
props: {
|
|
1705
1746
|
type: {
|
|
@@ -1708,189 +1749,189 @@ export declare const subsup: {
|
|
|
1708
1749
|
};
|
|
1709
1750
|
};
|
|
1710
1751
|
};
|
|
1711
|
-
};
|
|
1712
|
-
};
|
|
1713
|
-
export declare const syncBlock: {
|
|
1714
|
-
props: {
|
|
1715
1752
|
type: {
|
|
1716
1753
|
type: string;
|
|
1717
1754
|
values: string[];
|
|
1718
1755
|
};
|
|
1756
|
+
};
|
|
1757
|
+
};
|
|
1758
|
+
export declare const syncBlock: {
|
|
1759
|
+
props: {
|
|
1719
1760
|
attrs: {
|
|
1720
1761
|
props: {
|
|
1721
|
-
|
|
1762
|
+
localId: {
|
|
1722
1763
|
type: string;
|
|
1723
1764
|
};
|
|
1724
|
-
|
|
1765
|
+
resourceId: {
|
|
1725
1766
|
type: string;
|
|
1726
1767
|
};
|
|
1727
1768
|
};
|
|
1728
1769
|
};
|
|
1729
1770
|
marks: {
|
|
1730
|
-
type: string;
|
|
1731
|
-
optional: boolean;
|
|
1732
1771
|
items: string[];
|
|
1772
|
+
optional: boolean;
|
|
1773
|
+
type: string;
|
|
1733
1774
|
};
|
|
1734
|
-
};
|
|
1735
|
-
};
|
|
1736
|
-
export declare const table: {
|
|
1737
|
-
props: {
|
|
1738
1775
|
type: {
|
|
1739
1776
|
type: string;
|
|
1740
1777
|
values: string[];
|
|
1741
1778
|
};
|
|
1779
|
+
};
|
|
1780
|
+
};
|
|
1781
|
+
export declare const table: {
|
|
1782
|
+
props: {
|
|
1742
1783
|
attrs: {
|
|
1784
|
+
optional: boolean;
|
|
1743
1785
|
props: {
|
|
1744
1786
|
displayMode: {
|
|
1787
|
+
optional: boolean;
|
|
1745
1788
|
type: string;
|
|
1746
1789
|
values: string[];
|
|
1747
|
-
optional: boolean;
|
|
1748
1790
|
};
|
|
1749
1791
|
isNumberColumnEnabled: {
|
|
1750
|
-
type: string;
|
|
1751
1792
|
optional: boolean;
|
|
1793
|
+
type: string;
|
|
1752
1794
|
};
|
|
1753
1795
|
layout: {
|
|
1796
|
+
optional: boolean;
|
|
1754
1797
|
type: string;
|
|
1755
1798
|
values: string[];
|
|
1756
|
-
optional: boolean;
|
|
1757
1799
|
};
|
|
1758
1800
|
localId: {
|
|
1759
|
-
type: string;
|
|
1760
1801
|
minLength: number;
|
|
1761
1802
|
optional: boolean;
|
|
1803
|
+
type: string;
|
|
1762
1804
|
};
|
|
1763
1805
|
width: {
|
|
1764
|
-
type: string;
|
|
1765
1806
|
optional: boolean;
|
|
1807
|
+
type: string;
|
|
1766
1808
|
};
|
|
1767
1809
|
};
|
|
1768
|
-
optional: boolean;
|
|
1769
1810
|
};
|
|
1770
1811
|
content: {
|
|
1771
|
-
type: string;
|
|
1772
1812
|
items: string[];
|
|
1773
1813
|
minItems: number;
|
|
1814
|
+
type: string;
|
|
1774
1815
|
};
|
|
1775
1816
|
marks: {
|
|
1776
|
-
type: string;
|
|
1777
|
-
optional: boolean;
|
|
1778
1817
|
items: string[];
|
|
1818
|
+
optional: boolean;
|
|
1819
|
+
type: string;
|
|
1779
1820
|
};
|
|
1780
|
-
};
|
|
1781
|
-
};
|
|
1782
|
-
export declare const tableCell: {
|
|
1783
|
-
props: {
|
|
1784
1821
|
type: {
|
|
1785
1822
|
type: string;
|
|
1786
1823
|
values: string[];
|
|
1787
1824
|
};
|
|
1825
|
+
};
|
|
1826
|
+
};
|
|
1827
|
+
export declare const tableCell: {
|
|
1828
|
+
props: {
|
|
1788
1829
|
attrs: {
|
|
1830
|
+
optional: boolean;
|
|
1789
1831
|
props: {
|
|
1790
|
-
|
|
1791
|
-
type: string;
|
|
1832
|
+
background: {
|
|
1792
1833
|
optional: boolean;
|
|
1793
|
-
};
|
|
1794
|
-
rowspan: {
|
|
1795
1834
|
type: string;
|
|
1835
|
+
};
|
|
1836
|
+
colspan: {
|
|
1796
1837
|
optional: boolean;
|
|
1838
|
+
type: string;
|
|
1797
1839
|
};
|
|
1798
1840
|
colwidth: {
|
|
1799
|
-
type: string;
|
|
1800
1841
|
items: {
|
|
1801
1842
|
type: string;
|
|
1802
1843
|
}[];
|
|
1803
1844
|
optional: boolean;
|
|
1804
|
-
};
|
|
1805
|
-
background: {
|
|
1806
1845
|
type: string;
|
|
1807
|
-
optional: boolean;
|
|
1808
1846
|
};
|
|
1809
1847
|
localId: {
|
|
1848
|
+
optional: boolean;
|
|
1810
1849
|
type: string;
|
|
1850
|
+
};
|
|
1851
|
+
rowspan: {
|
|
1811
1852
|
optional: boolean;
|
|
1853
|
+
type: string;
|
|
1812
1854
|
};
|
|
1813
1855
|
};
|
|
1814
|
-
optional: boolean;
|
|
1815
1856
|
};
|
|
1816
1857
|
content: {
|
|
1817
|
-
|
|
1858
|
+
allowUnsupportedBlock: boolean;
|
|
1818
1859
|
items: string[][];
|
|
1819
1860
|
minItems: number;
|
|
1820
|
-
|
|
1861
|
+
type: string;
|
|
1862
|
+
};
|
|
1863
|
+
type: {
|
|
1864
|
+
type: string;
|
|
1865
|
+
values: string[];
|
|
1821
1866
|
};
|
|
1822
1867
|
};
|
|
1823
1868
|
required: string[];
|
|
1824
1869
|
};
|
|
1825
1870
|
export declare const tableHeader: {
|
|
1826
1871
|
props: {
|
|
1827
|
-
type: {
|
|
1828
|
-
type: string;
|
|
1829
|
-
values: string[];
|
|
1830
|
-
};
|
|
1831
1872
|
attrs: {
|
|
1873
|
+
optional: boolean;
|
|
1832
1874
|
props: {
|
|
1833
|
-
|
|
1834
|
-
type: string;
|
|
1875
|
+
background: {
|
|
1835
1876
|
optional: boolean;
|
|
1836
|
-
};
|
|
1837
|
-
rowspan: {
|
|
1838
1877
|
type: string;
|
|
1878
|
+
};
|
|
1879
|
+
colspan: {
|
|
1839
1880
|
optional: boolean;
|
|
1881
|
+
type: string;
|
|
1840
1882
|
};
|
|
1841
1883
|
colwidth: {
|
|
1842
|
-
type: string;
|
|
1843
1884
|
items: {
|
|
1844
1885
|
type: string;
|
|
1845
1886
|
}[];
|
|
1846
1887
|
optional: boolean;
|
|
1847
|
-
};
|
|
1848
|
-
background: {
|
|
1849
1888
|
type: string;
|
|
1850
|
-
optional: boolean;
|
|
1851
1889
|
};
|
|
1852
1890
|
localId: {
|
|
1891
|
+
optional: boolean;
|
|
1853
1892
|
type: string;
|
|
1893
|
+
};
|
|
1894
|
+
rowspan: {
|
|
1854
1895
|
optional: boolean;
|
|
1896
|
+
type: string;
|
|
1855
1897
|
};
|
|
1856
1898
|
};
|
|
1857
|
-
optional: boolean;
|
|
1858
1899
|
};
|
|
1859
1900
|
content: {
|
|
1860
|
-
type: string;
|
|
1861
1901
|
items: string[][];
|
|
1862
1902
|
minItems: number;
|
|
1903
|
+
type: string;
|
|
1904
|
+
};
|
|
1905
|
+
type: {
|
|
1906
|
+
type: string;
|
|
1907
|
+
values: string[];
|
|
1863
1908
|
};
|
|
1864
1909
|
};
|
|
1865
1910
|
required: string[];
|
|
1866
1911
|
};
|
|
1867
1912
|
export declare const tableRow: {
|
|
1868
1913
|
props: {
|
|
1869
|
-
type: {
|
|
1870
|
-
type: string;
|
|
1871
|
-
values: string[];
|
|
1872
|
-
};
|
|
1873
1914
|
attrs: {
|
|
1915
|
+
optional: boolean;
|
|
1874
1916
|
props: {
|
|
1875
1917
|
localId: {
|
|
1876
|
-
type: string;
|
|
1877
1918
|
optional: boolean;
|
|
1919
|
+
type: string;
|
|
1878
1920
|
};
|
|
1879
1921
|
};
|
|
1880
|
-
optional: boolean;
|
|
1881
1922
|
};
|
|
1882
1923
|
content: {
|
|
1883
|
-
type: string;
|
|
1884
1924
|
items: string[][];
|
|
1925
|
+
type: string;
|
|
1885
1926
|
};
|
|
1886
|
-
};
|
|
1887
|
-
};
|
|
1888
|
-
export declare const taskItem: {
|
|
1889
|
-
props: {
|
|
1890
1927
|
type: {
|
|
1891
1928
|
type: string;
|
|
1892
1929
|
values: string[];
|
|
1893
1930
|
};
|
|
1931
|
+
};
|
|
1932
|
+
};
|
|
1933
|
+
export declare const taskItem: {
|
|
1934
|
+
props: {
|
|
1894
1935
|
attrs: {
|
|
1895
1936
|
props: {
|
|
1896
1937
|
localId: {
|
|
@@ -1903,19 +1944,19 @@ export declare const taskItem: {
|
|
|
1903
1944
|
};
|
|
1904
1945
|
};
|
|
1905
1946
|
content: {
|
|
1906
|
-
|
|
1947
|
+
allowUnsupportedInline: boolean;
|
|
1907
1948
|
items: string[];
|
|
1908
1949
|
optional: boolean;
|
|
1909
|
-
|
|
1950
|
+
type: string;
|
|
1910
1951
|
};
|
|
1911
|
-
};
|
|
1912
|
-
};
|
|
1913
|
-
export declare const taskList: {
|
|
1914
|
-
props: {
|
|
1915
1952
|
type: {
|
|
1916
1953
|
type: string;
|
|
1917
1954
|
values: string[];
|
|
1918
1955
|
};
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1958
|
+
export declare const taskList: {
|
|
1959
|
+
props: {
|
|
1919
1960
|
attrs: {
|
|
1920
1961
|
props: {
|
|
1921
1962
|
localId: {
|
|
@@ -1924,81 +1965,85 @@ export declare const taskList: {
|
|
|
1924
1965
|
};
|
|
1925
1966
|
};
|
|
1926
1967
|
content: {
|
|
1927
|
-
|
|
1968
|
+
allowUnsupportedBlock: boolean;
|
|
1928
1969
|
items: string[][];
|
|
1929
1970
|
minItems: number;
|
|
1930
|
-
|
|
1971
|
+
type: string;
|
|
1972
|
+
};
|
|
1973
|
+
type: {
|
|
1974
|
+
type: string;
|
|
1975
|
+
values: string[];
|
|
1931
1976
|
};
|
|
1932
1977
|
};
|
|
1933
1978
|
};
|
|
1934
1979
|
export declare const text: {
|
|
1935
1980
|
props: {
|
|
1936
|
-
|
|
1981
|
+
marks: {
|
|
1982
|
+
items: never[];
|
|
1983
|
+
optional: boolean;
|
|
1937
1984
|
type: string;
|
|
1938
|
-
values: string[];
|
|
1939
1985
|
};
|
|
1940
1986
|
text: {
|
|
1941
|
-
type: string;
|
|
1942
1987
|
minLength: number;
|
|
1988
|
+
type: string;
|
|
1943
1989
|
};
|
|
1944
|
-
|
|
1990
|
+
type: {
|
|
1945
1991
|
type: string;
|
|
1946
|
-
|
|
1947
|
-
optional: boolean;
|
|
1992
|
+
values: string[];
|
|
1948
1993
|
};
|
|
1949
1994
|
};
|
|
1950
1995
|
};
|
|
1951
1996
|
export declare const text_code_inline: (string | {
|
|
1952
1997
|
props: {
|
|
1953
1998
|
marks: {
|
|
1954
|
-
type: string;
|
|
1955
|
-
optional: boolean;
|
|
1956
1999
|
items: string[][];
|
|
2000
|
+
optional: boolean;
|
|
2001
|
+
type: string;
|
|
1957
2002
|
};
|
|
1958
2003
|
};
|
|
1959
2004
|
})[];
|
|
1960
2005
|
export declare const text_formatted: (string | {
|
|
1961
2006
|
props: {
|
|
1962
2007
|
marks: {
|
|
1963
|
-
|
|
2008
|
+
items: string[][];
|
|
1964
2009
|
optional: boolean;
|
|
1965
|
-
|
|
2010
|
+
type: string;
|
|
1966
2011
|
};
|
|
1967
2012
|
};
|
|
1968
2013
|
})[];
|
|
1969
2014
|
export declare const text_link_inline: (string | {
|
|
1970
2015
|
props: {
|
|
1971
2016
|
marks: {
|
|
1972
|
-
type: string;
|
|
1973
|
-
optional: boolean;
|
|
1974
2017
|
items: string[];
|
|
2018
|
+
optional: boolean;
|
|
2019
|
+
type: string;
|
|
1975
2020
|
};
|
|
1976
2021
|
};
|
|
1977
2022
|
})[];
|
|
1978
2023
|
export declare const text_with_no_marks: (string | {
|
|
1979
2024
|
props: {
|
|
1980
2025
|
marks: {
|
|
1981
|
-
type: string;
|
|
1982
|
-
maxItems: number;
|
|
1983
2026
|
items: never[];
|
|
2027
|
+
maxItems: number;
|
|
1984
2028
|
optional: boolean;
|
|
2029
|
+
type: string;
|
|
1985
2030
|
};
|
|
1986
2031
|
};
|
|
1987
2032
|
})[];
|
|
1988
2033
|
export declare const textColor: {
|
|
1989
2034
|
props: {
|
|
1990
|
-
type: {
|
|
1991
|
-
type: string;
|
|
1992
|
-
values: string[];
|
|
1993
|
-
};
|
|
1994
2035
|
attrs: {
|
|
1995
2036
|
props: {
|
|
1996
2037
|
color: {
|
|
1997
|
-
type: string;
|
|
1998
2038
|
pattern: string;
|
|
2039
|
+
type: string;
|
|
1999
2040
|
};
|
|
2000
2041
|
};
|
|
2001
2042
|
};
|
|
2043
|
+
type: {
|
|
2044
|
+
type: string;
|
|
2045
|
+
values: string[];
|
|
2046
|
+
};
|
|
2002
2047
|
};
|
|
2003
2048
|
};
|
|
2004
2049
|
export declare const underline: {
|