@portabletext/editor 1.24.0 → 1.25.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/lib/_chunks-cjs/behavior.core.cjs +186 -62
- package/lib/_chunks-cjs/behavior.core.cjs.map +1 -1
- package/lib/_chunks-cjs/{selector.is-selection-collapsed.cjs → selector.is-active-style.cjs} +158 -3
- package/lib/_chunks-cjs/selector.is-active-style.cjs.map +1 -0
- package/lib/_chunks-es/behavior.core.js +162 -38
- package/lib/_chunks-es/behavior.core.js.map +1 -1
- package/lib/_chunks-es/{selector.is-selection-collapsed.js → selector.is-active-style.js} +159 -4
- package/lib/_chunks-es/selector.is-active-style.js.map +1 -0
- package/lib/behaviors/index.cjs +27 -27
- package/lib/behaviors/index.cjs.map +1 -1
- package/lib/behaviors/index.d.cts +1718 -94
- package/lib/behaviors/index.d.ts +1718 -94
- package/lib/behaviors/index.js +1 -1
- package/lib/index.cjs +178 -211
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +8792 -245
- package/lib/index.d.ts +8792 -245
- package/lib/index.js +174 -207
- package/lib/index.js.map +1 -1
- package/lib/selectors/index.cjs +24 -171
- package/lib/selectors/index.cjs.map +1 -1
- package/lib/selectors/index.js +3 -151
- package/lib/selectors/index.js.map +1 -1
- package/package.json +6 -6
- package/src/behavior-actions/behavior.actions.ts +99 -98
- package/src/behaviors/behavior.core.annotations.ts +29 -0
- package/src/behaviors/behavior.core.block-objects.ts +13 -13
- package/src/behaviors/behavior.core.decorators.ts +19 -0
- package/src/behaviors/behavior.core.lists.ts +57 -23
- package/src/behaviors/behavior.core.style.ts +19 -0
- package/src/behaviors/behavior.core.ts +12 -0
- package/src/behaviors/behavior.types.ts +87 -87
- package/src/editor/create-editor.ts +46 -6
- package/src/editor/editor-machine.ts +38 -1
- package/src/editor/plugins/create-with-event-listeners.ts +38 -106
- package/lib/_chunks-cjs/selector.is-selection-collapsed.cjs.map +0 -1
- package/lib/_chunks-es/selector.is-selection-collapsed.js.map +0 -1
|
@@ -54,104 +54,13 @@ export declare type BehaviorActionIntend =
|
|
|
54
54
|
type: 'raise'
|
|
55
55
|
event: SyntheticBehaviorEvent | CustomBehaviorEvent
|
|
56
56
|
}
|
|
57
|
-
| {
|
|
58
|
-
type: 'annotation.toggle'
|
|
59
|
-
annotation: {
|
|
60
|
-
name: string
|
|
61
|
-
value: {
|
|
62
|
-
[prop: string]: unknown
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
| {
|
|
67
|
-
type: 'decorator.add'
|
|
68
|
-
decorator: string
|
|
69
|
-
}
|
|
70
|
-
| {
|
|
71
|
-
type: 'decorator.remove'
|
|
72
|
-
decorator: string
|
|
73
|
-
}
|
|
74
|
-
| {
|
|
75
|
-
type: 'insert.span'
|
|
76
|
-
text: string
|
|
77
|
-
annotations?: Array<{
|
|
78
|
-
name: string
|
|
79
|
-
value: {
|
|
80
|
-
[prop: string]: unknown
|
|
81
|
-
}
|
|
82
|
-
}>
|
|
83
|
-
decorators?: Array<string>
|
|
84
|
-
}
|
|
85
|
-
| {
|
|
86
|
-
type: 'insert.text block'
|
|
87
|
-
placement: 'auto' | 'after' | 'before'
|
|
88
|
-
textBlock?: {
|
|
89
|
-
children?: PortableTextTextBlock['children']
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
| {
|
|
93
|
-
type: 'list item.add'
|
|
94
|
-
listItem: string
|
|
95
|
-
}
|
|
96
|
-
| {
|
|
97
|
-
type: 'list item.remove'
|
|
98
|
-
listItem: string
|
|
99
|
-
}
|
|
100
|
-
| {
|
|
101
|
-
type: 'move.block'
|
|
102
|
-
at: [KeyedSegment]
|
|
103
|
-
to: [KeyedSegment]
|
|
104
|
-
}
|
|
105
|
-
| {
|
|
106
|
-
type: 'move.block down'
|
|
107
|
-
at: [KeyedSegment]
|
|
108
|
-
}
|
|
109
|
-
| {
|
|
110
|
-
type: 'move.block up'
|
|
111
|
-
at: [KeyedSegment]
|
|
112
|
-
}
|
|
113
57
|
| {
|
|
114
58
|
type: 'noop'
|
|
115
59
|
}
|
|
116
|
-
| {
|
|
117
|
-
type: 'delete.block'
|
|
118
|
-
blockPath: [KeyedSegment]
|
|
119
|
-
}
|
|
120
|
-
| {
|
|
121
|
-
type: 'delete.text'
|
|
122
|
-
anchor: BlockOffset
|
|
123
|
-
focus: BlockOffset
|
|
124
|
-
}
|
|
125
60
|
| {
|
|
126
61
|
type: 'effect'
|
|
127
62
|
effect: () => void
|
|
128
63
|
}
|
|
129
|
-
| {
|
|
130
|
-
type: 'select.previous block'
|
|
131
|
-
}
|
|
132
|
-
| {
|
|
133
|
-
type: 'select.next block'
|
|
134
|
-
}
|
|
135
|
-
| {
|
|
136
|
-
type: 'style.add'
|
|
137
|
-
style: string
|
|
138
|
-
}
|
|
139
|
-
| {
|
|
140
|
-
type: 'style.remove'
|
|
141
|
-
style: string
|
|
142
|
-
}
|
|
143
|
-
| {
|
|
144
|
-
type: 'text block.set'
|
|
145
|
-
at: [KeyedSegment]
|
|
146
|
-
level?: number
|
|
147
|
-
listItem?: string
|
|
148
|
-
style?: string
|
|
149
|
-
}
|
|
150
|
-
| {
|
|
151
|
-
type: 'text block.unset'
|
|
152
|
-
at: [KeyedSegment]
|
|
153
|
-
props: Array<'level' | 'listItem' | 'style'>
|
|
154
|
-
}
|
|
155
64
|
|
|
156
65
|
/**
|
|
157
66
|
* @beta
|
|
@@ -243,6 +152,206 @@ declare type ConverterEvent<TMIMEType extends MIMEType = MIMEType> =
|
|
|
243
152
|
* @beta
|
|
244
153
|
*/
|
|
245
154
|
export declare const coreBehavior: {
|
|
155
|
+
'style': {
|
|
156
|
+
'serialize': Behavior_2<
|
|
157
|
+
| 'focus'
|
|
158
|
+
| 'select'
|
|
159
|
+
| 'serialize'
|
|
160
|
+
| 'copy'
|
|
161
|
+
| 'serialization.failure'
|
|
162
|
+
| 'serialization.success'
|
|
163
|
+
| 'deserialize'
|
|
164
|
+
| 'deserialization.failure'
|
|
165
|
+
| 'deserialization.success'
|
|
166
|
+
| 'annotation.add'
|
|
167
|
+
| 'annotation.remove'
|
|
168
|
+
| 'annotation.toggle'
|
|
169
|
+
| 'blur'
|
|
170
|
+
| 'data transfer.set'
|
|
171
|
+
| 'decorator.add'
|
|
172
|
+
| 'decorator.remove'
|
|
173
|
+
| 'decorator.toggle'
|
|
174
|
+
| 'delete.backward'
|
|
175
|
+
| 'delete.block'
|
|
176
|
+
| 'delete.forward'
|
|
177
|
+
| 'delete.text'
|
|
178
|
+
| 'insert.blocks'
|
|
179
|
+
| 'insert.block object'
|
|
180
|
+
| 'insert.inline object'
|
|
181
|
+
| 'insert.break'
|
|
182
|
+
| 'insert.soft break'
|
|
183
|
+
| 'insert.span'
|
|
184
|
+
| 'insert.text'
|
|
185
|
+
| 'insert.text block'
|
|
186
|
+
| 'list item.add'
|
|
187
|
+
| 'list item.remove'
|
|
188
|
+
| 'list item.toggle'
|
|
189
|
+
| 'move.block'
|
|
190
|
+
| 'move.block down'
|
|
191
|
+
| 'move.block up'
|
|
192
|
+
| 'select.previous block'
|
|
193
|
+
| 'select.next block'
|
|
194
|
+
| 'style.add'
|
|
195
|
+
| 'style.remove'
|
|
196
|
+
| 'style.toggle'
|
|
197
|
+
| 'text block.set'
|
|
198
|
+
| 'text block.unset'
|
|
199
|
+
| 'key.down'
|
|
200
|
+
| 'key.up'
|
|
201
|
+
| 'paste'
|
|
202
|
+
| `custom.${string}`,
|
|
203
|
+
true,
|
|
204
|
+
PickFromUnion_2<
|
|
205
|
+
BehaviorEvent_2,
|
|
206
|
+
'type',
|
|
207
|
+
| 'focus'
|
|
208
|
+
| 'select'
|
|
209
|
+
| 'serialize'
|
|
210
|
+
| 'copy'
|
|
211
|
+
| 'serialization.failure'
|
|
212
|
+
| 'serialization.success'
|
|
213
|
+
| 'deserialize'
|
|
214
|
+
| 'deserialization.failure'
|
|
215
|
+
| 'deserialization.success'
|
|
216
|
+
| 'annotation.add'
|
|
217
|
+
| 'annotation.remove'
|
|
218
|
+
| 'annotation.toggle'
|
|
219
|
+
| 'blur'
|
|
220
|
+
| 'data transfer.set'
|
|
221
|
+
| 'decorator.add'
|
|
222
|
+
| 'decorator.remove'
|
|
223
|
+
| 'decorator.toggle'
|
|
224
|
+
| 'delete.backward'
|
|
225
|
+
| 'delete.block'
|
|
226
|
+
| 'delete.forward'
|
|
227
|
+
| 'delete.text'
|
|
228
|
+
| 'insert.blocks'
|
|
229
|
+
| 'insert.block object'
|
|
230
|
+
| 'insert.inline object'
|
|
231
|
+
| 'insert.break'
|
|
232
|
+
| 'insert.soft break'
|
|
233
|
+
| 'insert.span'
|
|
234
|
+
| 'insert.text'
|
|
235
|
+
| 'insert.text block'
|
|
236
|
+
| 'list item.add'
|
|
237
|
+
| 'list item.remove'
|
|
238
|
+
| 'list item.toggle'
|
|
239
|
+
| 'move.block'
|
|
240
|
+
| 'move.block down'
|
|
241
|
+
| 'move.block up'
|
|
242
|
+
| 'select.previous block'
|
|
243
|
+
| 'select.next block'
|
|
244
|
+
| 'style.add'
|
|
245
|
+
| 'style.remove'
|
|
246
|
+
| 'style.toggle'
|
|
247
|
+
| 'text block.set'
|
|
248
|
+
| 'text block.unset'
|
|
249
|
+
| 'key.down'
|
|
250
|
+
| 'key.up'
|
|
251
|
+
| 'paste'
|
|
252
|
+
| `custom.${string}`
|
|
253
|
+
>
|
|
254
|
+
>
|
|
255
|
+
'serialization.success': Behavior_2<
|
|
256
|
+
| 'focus'
|
|
257
|
+
| 'select'
|
|
258
|
+
| 'serialize'
|
|
259
|
+
| 'copy'
|
|
260
|
+
| 'serialization.failure'
|
|
261
|
+
| 'serialization.success'
|
|
262
|
+
| 'deserialize'
|
|
263
|
+
| 'deserialization.failure'
|
|
264
|
+
| 'deserialization.success'
|
|
265
|
+
| 'annotation.add'
|
|
266
|
+
| 'annotation.remove'
|
|
267
|
+
| 'annotation.toggle'
|
|
268
|
+
| 'blur'
|
|
269
|
+
| 'data transfer.set'
|
|
270
|
+
| 'decorator.add'
|
|
271
|
+
| 'decorator.remove'
|
|
272
|
+
| 'decorator.toggle'
|
|
273
|
+
| 'delete.backward'
|
|
274
|
+
| 'delete.block'
|
|
275
|
+
| 'delete.forward'
|
|
276
|
+
| 'delete.text'
|
|
277
|
+
| 'insert.blocks'
|
|
278
|
+
| 'insert.block object'
|
|
279
|
+
| 'insert.inline object'
|
|
280
|
+
| 'insert.break'
|
|
281
|
+
| 'insert.soft break'
|
|
282
|
+
| 'insert.span'
|
|
283
|
+
| 'insert.text'
|
|
284
|
+
| 'insert.text block'
|
|
285
|
+
| 'list item.add'
|
|
286
|
+
| 'list item.remove'
|
|
287
|
+
| 'list item.toggle'
|
|
288
|
+
| 'move.block'
|
|
289
|
+
| 'move.block down'
|
|
290
|
+
| 'move.block up'
|
|
291
|
+
| 'select.previous block'
|
|
292
|
+
| 'select.next block'
|
|
293
|
+
| 'style.add'
|
|
294
|
+
| 'style.remove'
|
|
295
|
+
| 'style.toggle'
|
|
296
|
+
| 'text block.set'
|
|
297
|
+
| 'text block.unset'
|
|
298
|
+
| 'key.down'
|
|
299
|
+
| 'key.up'
|
|
300
|
+
| 'paste'
|
|
301
|
+
| `custom.${string}`,
|
|
302
|
+
true,
|
|
303
|
+
PickFromUnion_2<
|
|
304
|
+
BehaviorEvent_2,
|
|
305
|
+
'type',
|
|
306
|
+
| 'focus'
|
|
307
|
+
| 'select'
|
|
308
|
+
| 'serialize'
|
|
309
|
+
| 'copy'
|
|
310
|
+
| 'serialization.failure'
|
|
311
|
+
| 'serialization.success'
|
|
312
|
+
| 'deserialize'
|
|
313
|
+
| 'deserialization.failure'
|
|
314
|
+
| 'deserialization.success'
|
|
315
|
+
| 'annotation.add'
|
|
316
|
+
| 'annotation.remove'
|
|
317
|
+
| 'annotation.toggle'
|
|
318
|
+
| 'blur'
|
|
319
|
+
| 'data transfer.set'
|
|
320
|
+
| 'decorator.add'
|
|
321
|
+
| 'decorator.remove'
|
|
322
|
+
| 'decorator.toggle'
|
|
323
|
+
| 'delete.backward'
|
|
324
|
+
| 'delete.block'
|
|
325
|
+
| 'delete.forward'
|
|
326
|
+
| 'delete.text'
|
|
327
|
+
| 'insert.blocks'
|
|
328
|
+
| 'insert.block object'
|
|
329
|
+
| 'insert.inline object'
|
|
330
|
+
| 'insert.break'
|
|
331
|
+
| 'insert.soft break'
|
|
332
|
+
| 'insert.span'
|
|
333
|
+
| 'insert.text'
|
|
334
|
+
| 'insert.text block'
|
|
335
|
+
| 'list item.add'
|
|
336
|
+
| 'list item.remove'
|
|
337
|
+
| 'list item.toggle'
|
|
338
|
+
| 'move.block'
|
|
339
|
+
| 'move.block down'
|
|
340
|
+
| 'move.block up'
|
|
341
|
+
| 'select.previous block'
|
|
342
|
+
| 'select.next block'
|
|
343
|
+
| 'style.add'
|
|
344
|
+
| 'style.remove'
|
|
345
|
+
| 'style.toggle'
|
|
346
|
+
| 'text block.set'
|
|
347
|
+
| 'text block.unset'
|
|
348
|
+
| 'key.down'
|
|
349
|
+
| 'key.up'
|
|
350
|
+
| 'paste'
|
|
351
|
+
| `custom.${string}`
|
|
352
|
+
>
|
|
353
|
+
>
|
|
354
|
+
}
|
|
246
355
|
'serialize': Behavior_2<
|
|
247
356
|
| 'focus'
|
|
248
357
|
| 'select'
|
|
@@ -255,19 +364,37 @@ export declare const coreBehavior: {
|
|
|
255
364
|
| 'deserialization.success'
|
|
256
365
|
| 'annotation.add'
|
|
257
366
|
| 'annotation.remove'
|
|
367
|
+
| 'annotation.toggle'
|
|
258
368
|
| 'blur'
|
|
259
369
|
| 'data transfer.set'
|
|
370
|
+
| 'decorator.add'
|
|
371
|
+
| 'decorator.remove'
|
|
260
372
|
| 'decorator.toggle'
|
|
261
373
|
| 'delete.backward'
|
|
374
|
+
| 'delete.block'
|
|
262
375
|
| 'delete.forward'
|
|
376
|
+
| 'delete.text'
|
|
263
377
|
| 'insert.blocks'
|
|
264
378
|
| 'insert.block object'
|
|
265
379
|
| 'insert.inline object'
|
|
266
380
|
| 'insert.break'
|
|
267
381
|
| 'insert.soft break'
|
|
382
|
+
| 'insert.span'
|
|
268
383
|
| 'insert.text'
|
|
384
|
+
| 'insert.text block'
|
|
385
|
+
| 'list item.add'
|
|
386
|
+
| 'list item.remove'
|
|
269
387
|
| 'list item.toggle'
|
|
388
|
+
| 'move.block'
|
|
389
|
+
| 'move.block down'
|
|
390
|
+
| 'move.block up'
|
|
391
|
+
| 'select.previous block'
|
|
392
|
+
| 'select.next block'
|
|
393
|
+
| 'style.add'
|
|
394
|
+
| 'style.remove'
|
|
270
395
|
| 'style.toggle'
|
|
396
|
+
| 'text block.set'
|
|
397
|
+
| 'text block.unset'
|
|
271
398
|
| 'key.down'
|
|
272
399
|
| 'key.up'
|
|
273
400
|
| 'paste'
|
|
@@ -287,19 +414,37 @@ export declare const coreBehavior: {
|
|
|
287
414
|
| 'deserialization.success'
|
|
288
415
|
| 'annotation.add'
|
|
289
416
|
| 'annotation.remove'
|
|
417
|
+
| 'annotation.toggle'
|
|
290
418
|
| 'blur'
|
|
291
419
|
| 'data transfer.set'
|
|
420
|
+
| 'decorator.add'
|
|
421
|
+
| 'decorator.remove'
|
|
292
422
|
| 'decorator.toggle'
|
|
293
423
|
| 'delete.backward'
|
|
424
|
+
| 'delete.block'
|
|
294
425
|
| 'delete.forward'
|
|
426
|
+
| 'delete.text'
|
|
295
427
|
| 'insert.blocks'
|
|
296
428
|
| 'insert.block object'
|
|
297
429
|
| 'insert.inline object'
|
|
298
430
|
| 'insert.break'
|
|
299
431
|
| 'insert.soft break'
|
|
432
|
+
| 'insert.span'
|
|
300
433
|
| 'insert.text'
|
|
434
|
+
| 'insert.text block'
|
|
435
|
+
| 'list item.add'
|
|
436
|
+
| 'list item.remove'
|
|
301
437
|
| 'list item.toggle'
|
|
438
|
+
| 'move.block'
|
|
439
|
+
| 'move.block down'
|
|
440
|
+
| 'move.block up'
|
|
441
|
+
| 'select.previous block'
|
|
442
|
+
| 'select.next block'
|
|
443
|
+
| 'style.add'
|
|
444
|
+
| 'style.remove'
|
|
302
445
|
| 'style.toggle'
|
|
446
|
+
| 'text block.set'
|
|
447
|
+
| 'text block.unset'
|
|
303
448
|
| 'key.down'
|
|
304
449
|
| 'key.up'
|
|
305
450
|
| 'paste'
|
|
@@ -318,19 +463,37 @@ export declare const coreBehavior: {
|
|
|
318
463
|
| 'deserialization.success'
|
|
319
464
|
| 'annotation.add'
|
|
320
465
|
| 'annotation.remove'
|
|
466
|
+
| 'annotation.toggle'
|
|
321
467
|
| 'blur'
|
|
322
468
|
| 'data transfer.set'
|
|
469
|
+
| 'decorator.add'
|
|
470
|
+
| 'decorator.remove'
|
|
323
471
|
| 'decorator.toggle'
|
|
324
472
|
| 'delete.backward'
|
|
473
|
+
| 'delete.block'
|
|
325
474
|
| 'delete.forward'
|
|
475
|
+
| 'delete.text'
|
|
326
476
|
| 'insert.blocks'
|
|
327
477
|
| 'insert.block object'
|
|
328
478
|
| 'insert.inline object'
|
|
329
479
|
| 'insert.break'
|
|
330
480
|
| 'insert.soft break'
|
|
481
|
+
| 'insert.span'
|
|
331
482
|
| 'insert.text'
|
|
483
|
+
| 'insert.text block'
|
|
484
|
+
| 'list item.add'
|
|
485
|
+
| 'list item.remove'
|
|
332
486
|
| 'list item.toggle'
|
|
487
|
+
| 'move.block'
|
|
488
|
+
| 'move.block down'
|
|
489
|
+
| 'move.block up'
|
|
490
|
+
| 'select.previous block'
|
|
491
|
+
| 'select.next block'
|
|
492
|
+
| 'style.add'
|
|
493
|
+
| 'style.remove'
|
|
333
494
|
| 'style.toggle'
|
|
495
|
+
| 'text block.set'
|
|
496
|
+
| 'text block.unset'
|
|
334
497
|
| 'key.down'
|
|
335
498
|
| 'key.up'
|
|
336
499
|
| 'paste'
|
|
@@ -350,19 +513,37 @@ export declare const coreBehavior: {
|
|
|
350
513
|
| 'deserialization.success'
|
|
351
514
|
| 'annotation.add'
|
|
352
515
|
| 'annotation.remove'
|
|
516
|
+
| 'annotation.toggle'
|
|
353
517
|
| 'blur'
|
|
354
518
|
| 'data transfer.set'
|
|
519
|
+
| 'decorator.add'
|
|
520
|
+
| 'decorator.remove'
|
|
355
521
|
| 'decorator.toggle'
|
|
356
522
|
| 'delete.backward'
|
|
523
|
+
| 'delete.block'
|
|
357
524
|
| 'delete.forward'
|
|
525
|
+
| 'delete.text'
|
|
358
526
|
| 'insert.blocks'
|
|
359
527
|
| 'insert.block object'
|
|
360
528
|
| 'insert.inline object'
|
|
361
529
|
| 'insert.break'
|
|
362
530
|
| 'insert.soft break'
|
|
531
|
+
| 'insert.span'
|
|
363
532
|
| 'insert.text'
|
|
533
|
+
| 'insert.text block'
|
|
534
|
+
| 'list item.add'
|
|
535
|
+
| 'list item.remove'
|
|
364
536
|
| 'list item.toggle'
|
|
537
|
+
| 'move.block'
|
|
538
|
+
| 'move.block down'
|
|
539
|
+
| 'move.block up'
|
|
540
|
+
| 'select.previous block'
|
|
541
|
+
| 'select.next block'
|
|
542
|
+
| 'style.add'
|
|
543
|
+
| 'style.remove'
|
|
365
544
|
| 'style.toggle'
|
|
545
|
+
| 'text block.set'
|
|
546
|
+
| 'text block.unset'
|
|
366
547
|
| 'key.down'
|
|
367
548
|
| 'key.up'
|
|
368
549
|
| 'paste'
|
|
@@ -381,19 +562,37 @@ export declare const coreBehavior: {
|
|
|
381
562
|
| 'deserialization.success'
|
|
382
563
|
| 'annotation.add'
|
|
383
564
|
| 'annotation.remove'
|
|
565
|
+
| 'annotation.toggle'
|
|
384
566
|
| 'blur'
|
|
385
567
|
| 'data transfer.set'
|
|
568
|
+
| 'decorator.add'
|
|
569
|
+
| 'decorator.remove'
|
|
386
570
|
| 'decorator.toggle'
|
|
387
571
|
| 'delete.backward'
|
|
572
|
+
| 'delete.block'
|
|
388
573
|
| 'delete.forward'
|
|
574
|
+
| 'delete.text'
|
|
389
575
|
| 'insert.blocks'
|
|
390
576
|
| 'insert.block object'
|
|
391
577
|
| 'insert.inline object'
|
|
392
578
|
| 'insert.break'
|
|
393
579
|
| 'insert.soft break'
|
|
580
|
+
| 'insert.span'
|
|
394
581
|
| 'insert.text'
|
|
582
|
+
| 'insert.text block'
|
|
583
|
+
| 'list item.add'
|
|
584
|
+
| 'list item.remove'
|
|
395
585
|
| 'list item.toggle'
|
|
586
|
+
| 'move.block'
|
|
587
|
+
| 'move.block down'
|
|
588
|
+
| 'move.block up'
|
|
589
|
+
| 'select.previous block'
|
|
590
|
+
| 'select.next block'
|
|
591
|
+
| 'style.add'
|
|
592
|
+
| 'style.remove'
|
|
396
593
|
| 'style.toggle'
|
|
594
|
+
| 'text block.set'
|
|
595
|
+
| 'text block.unset'
|
|
397
596
|
| 'key.down'
|
|
398
597
|
| 'key.up'
|
|
399
598
|
| 'paste'
|
|
@@ -413,26 +612,442 @@ export declare const coreBehavior: {
|
|
|
413
612
|
| 'deserialization.success'
|
|
414
613
|
| 'annotation.add'
|
|
415
614
|
| 'annotation.remove'
|
|
615
|
+
| 'annotation.toggle'
|
|
616
|
+
| 'blur'
|
|
617
|
+
| 'data transfer.set'
|
|
618
|
+
| 'decorator.add'
|
|
619
|
+
| 'decorator.remove'
|
|
620
|
+
| 'decorator.toggle'
|
|
621
|
+
| 'delete.backward'
|
|
622
|
+
| 'delete.block'
|
|
623
|
+
| 'delete.forward'
|
|
624
|
+
| 'delete.text'
|
|
625
|
+
| 'insert.blocks'
|
|
626
|
+
| 'insert.block object'
|
|
627
|
+
| 'insert.inline object'
|
|
628
|
+
| 'insert.break'
|
|
629
|
+
| 'insert.soft break'
|
|
630
|
+
| 'insert.span'
|
|
631
|
+
| 'insert.text'
|
|
632
|
+
| 'insert.text block'
|
|
633
|
+
| 'list item.add'
|
|
634
|
+
| 'list item.remove'
|
|
635
|
+
| 'list item.toggle'
|
|
636
|
+
| 'move.block'
|
|
637
|
+
| 'move.block down'
|
|
638
|
+
| 'move.block up'
|
|
639
|
+
| 'select.previous block'
|
|
640
|
+
| 'select.next block'
|
|
641
|
+
| 'style.add'
|
|
642
|
+
| 'style.remove'
|
|
643
|
+
| 'style.toggle'
|
|
644
|
+
| 'text block.set'
|
|
645
|
+
| 'text block.unset'
|
|
646
|
+
| 'key.down'
|
|
647
|
+
| 'key.up'
|
|
648
|
+
| 'paste'
|
|
649
|
+
| `custom.${string}`
|
|
650
|
+
>
|
|
651
|
+
>
|
|
652
|
+
'annotation': {
|
|
653
|
+
toggleAnnotationOff: Behavior_2<
|
|
654
|
+
| 'focus'
|
|
655
|
+
| 'select'
|
|
656
|
+
| 'serialize'
|
|
657
|
+
| 'copy'
|
|
658
|
+
| 'serialization.failure'
|
|
659
|
+
| 'serialization.success'
|
|
660
|
+
| 'deserialize'
|
|
661
|
+
| 'deserialization.failure'
|
|
662
|
+
| 'deserialization.success'
|
|
663
|
+
| 'annotation.add'
|
|
664
|
+
| 'annotation.remove'
|
|
665
|
+
| 'annotation.toggle'
|
|
666
|
+
| 'blur'
|
|
667
|
+
| 'data transfer.set'
|
|
668
|
+
| 'decorator.add'
|
|
669
|
+
| 'decorator.remove'
|
|
670
|
+
| 'decorator.toggle'
|
|
671
|
+
| 'delete.backward'
|
|
672
|
+
| 'delete.block'
|
|
673
|
+
| 'delete.forward'
|
|
674
|
+
| 'delete.text'
|
|
675
|
+
| 'insert.blocks'
|
|
676
|
+
| 'insert.block object'
|
|
677
|
+
| 'insert.inline object'
|
|
678
|
+
| 'insert.break'
|
|
679
|
+
| 'insert.soft break'
|
|
680
|
+
| 'insert.span'
|
|
681
|
+
| 'insert.text'
|
|
682
|
+
| 'insert.text block'
|
|
683
|
+
| 'list item.add'
|
|
684
|
+
| 'list item.remove'
|
|
685
|
+
| 'list item.toggle'
|
|
686
|
+
| 'move.block'
|
|
687
|
+
| 'move.block down'
|
|
688
|
+
| 'move.block up'
|
|
689
|
+
| 'select.previous block'
|
|
690
|
+
| 'select.next block'
|
|
691
|
+
| 'style.add'
|
|
692
|
+
| 'style.remove'
|
|
693
|
+
| 'style.toggle'
|
|
694
|
+
| 'text block.set'
|
|
695
|
+
| 'text block.unset'
|
|
696
|
+
| 'key.down'
|
|
697
|
+
| 'key.up'
|
|
698
|
+
| 'paste'
|
|
699
|
+
| `custom.${string}`,
|
|
700
|
+
true,
|
|
701
|
+
PickFromUnion_2<
|
|
702
|
+
BehaviorEvent_2,
|
|
703
|
+
'type',
|
|
704
|
+
| 'focus'
|
|
705
|
+
| 'select'
|
|
706
|
+
| 'serialize'
|
|
707
|
+
| 'copy'
|
|
708
|
+
| 'serialization.failure'
|
|
709
|
+
| 'serialization.success'
|
|
710
|
+
| 'deserialize'
|
|
711
|
+
| 'deserialization.failure'
|
|
712
|
+
| 'deserialization.success'
|
|
713
|
+
| 'annotation.add'
|
|
714
|
+
| 'annotation.remove'
|
|
715
|
+
| 'annotation.toggle'
|
|
716
|
+
| 'blur'
|
|
717
|
+
| 'data transfer.set'
|
|
718
|
+
| 'decorator.add'
|
|
719
|
+
| 'decorator.remove'
|
|
720
|
+
| 'decorator.toggle'
|
|
721
|
+
| 'delete.backward'
|
|
722
|
+
| 'delete.block'
|
|
723
|
+
| 'delete.forward'
|
|
724
|
+
| 'delete.text'
|
|
725
|
+
| 'insert.blocks'
|
|
726
|
+
| 'insert.block object'
|
|
727
|
+
| 'insert.inline object'
|
|
728
|
+
| 'insert.break'
|
|
729
|
+
| 'insert.soft break'
|
|
730
|
+
| 'insert.span'
|
|
731
|
+
| 'insert.text'
|
|
732
|
+
| 'insert.text block'
|
|
733
|
+
| 'list item.add'
|
|
734
|
+
| 'list item.remove'
|
|
735
|
+
| 'list item.toggle'
|
|
736
|
+
| 'move.block'
|
|
737
|
+
| 'move.block down'
|
|
738
|
+
| 'move.block up'
|
|
739
|
+
| 'select.previous block'
|
|
740
|
+
| 'select.next block'
|
|
741
|
+
| 'style.add'
|
|
742
|
+
| 'style.remove'
|
|
743
|
+
| 'style.toggle'
|
|
744
|
+
| 'text block.set'
|
|
745
|
+
| 'text block.unset'
|
|
746
|
+
| 'key.down'
|
|
747
|
+
| 'key.up'
|
|
748
|
+
| 'paste'
|
|
749
|
+
| `custom.${string}`
|
|
750
|
+
>
|
|
751
|
+
>
|
|
752
|
+
toggleAnnotationOn: Behavior_2<
|
|
753
|
+
| 'focus'
|
|
754
|
+
| 'select'
|
|
755
|
+
| 'serialize'
|
|
756
|
+
| 'copy'
|
|
757
|
+
| 'serialization.failure'
|
|
758
|
+
| 'serialization.success'
|
|
759
|
+
| 'deserialize'
|
|
760
|
+
| 'deserialization.failure'
|
|
761
|
+
| 'deserialization.success'
|
|
762
|
+
| 'annotation.add'
|
|
763
|
+
| 'annotation.remove'
|
|
764
|
+
| 'annotation.toggle'
|
|
765
|
+
| 'blur'
|
|
766
|
+
| 'data transfer.set'
|
|
767
|
+
| 'decorator.add'
|
|
768
|
+
| 'decorator.remove'
|
|
769
|
+
| 'decorator.toggle'
|
|
770
|
+
| 'delete.backward'
|
|
771
|
+
| 'delete.block'
|
|
772
|
+
| 'delete.forward'
|
|
773
|
+
| 'delete.text'
|
|
774
|
+
| 'insert.blocks'
|
|
775
|
+
| 'insert.block object'
|
|
776
|
+
| 'insert.inline object'
|
|
777
|
+
| 'insert.break'
|
|
778
|
+
| 'insert.soft break'
|
|
779
|
+
| 'insert.span'
|
|
780
|
+
| 'insert.text'
|
|
781
|
+
| 'insert.text block'
|
|
782
|
+
| 'list item.add'
|
|
783
|
+
| 'list item.remove'
|
|
784
|
+
| 'list item.toggle'
|
|
785
|
+
| 'move.block'
|
|
786
|
+
| 'move.block down'
|
|
787
|
+
| 'move.block up'
|
|
788
|
+
| 'select.previous block'
|
|
789
|
+
| 'select.next block'
|
|
790
|
+
| 'style.add'
|
|
791
|
+
| 'style.remove'
|
|
792
|
+
| 'style.toggle'
|
|
793
|
+
| 'text block.set'
|
|
794
|
+
| 'text block.unset'
|
|
795
|
+
| 'key.down'
|
|
796
|
+
| 'key.up'
|
|
797
|
+
| 'paste'
|
|
798
|
+
| `custom.${string}`,
|
|
799
|
+
true,
|
|
800
|
+
PickFromUnion_2<
|
|
801
|
+
BehaviorEvent_2,
|
|
802
|
+
'type',
|
|
803
|
+
| 'focus'
|
|
804
|
+
| 'select'
|
|
805
|
+
| 'serialize'
|
|
806
|
+
| 'copy'
|
|
807
|
+
| 'serialization.failure'
|
|
808
|
+
| 'serialization.success'
|
|
809
|
+
| 'deserialize'
|
|
810
|
+
| 'deserialization.failure'
|
|
811
|
+
| 'deserialization.success'
|
|
812
|
+
| 'annotation.add'
|
|
813
|
+
| 'annotation.remove'
|
|
814
|
+
| 'annotation.toggle'
|
|
815
|
+
| 'blur'
|
|
816
|
+
| 'data transfer.set'
|
|
817
|
+
| 'decorator.add'
|
|
818
|
+
| 'decorator.remove'
|
|
819
|
+
| 'decorator.toggle'
|
|
820
|
+
| 'delete.backward'
|
|
821
|
+
| 'delete.block'
|
|
822
|
+
| 'delete.forward'
|
|
823
|
+
| 'delete.text'
|
|
824
|
+
| 'insert.blocks'
|
|
825
|
+
| 'insert.block object'
|
|
826
|
+
| 'insert.inline object'
|
|
827
|
+
| 'insert.break'
|
|
828
|
+
| 'insert.soft break'
|
|
829
|
+
| 'insert.span'
|
|
830
|
+
| 'insert.text'
|
|
831
|
+
| 'insert.text block'
|
|
832
|
+
| 'list item.add'
|
|
833
|
+
| 'list item.remove'
|
|
834
|
+
| 'list item.toggle'
|
|
835
|
+
| 'move.block'
|
|
836
|
+
| 'move.block down'
|
|
837
|
+
| 'move.block up'
|
|
838
|
+
| 'select.previous block'
|
|
839
|
+
| 'select.next block'
|
|
840
|
+
| 'style.add'
|
|
841
|
+
| 'style.remove'
|
|
842
|
+
| 'style.toggle'
|
|
843
|
+
| 'text block.set'
|
|
844
|
+
| 'text block.unset'
|
|
845
|
+
| 'key.down'
|
|
846
|
+
| 'key.up'
|
|
847
|
+
| 'paste'
|
|
848
|
+
| `custom.${string}`
|
|
849
|
+
>
|
|
850
|
+
>
|
|
851
|
+
}
|
|
852
|
+
'decorators': {
|
|
853
|
+
toggleDecoratorOff: Behavior_2<
|
|
854
|
+
| 'focus'
|
|
855
|
+
| 'select'
|
|
856
|
+
| 'serialize'
|
|
857
|
+
| 'copy'
|
|
858
|
+
| 'serialization.failure'
|
|
859
|
+
| 'serialization.success'
|
|
860
|
+
| 'deserialize'
|
|
861
|
+
| 'deserialization.failure'
|
|
862
|
+
| 'deserialization.success'
|
|
863
|
+
| 'annotation.add'
|
|
864
|
+
| 'annotation.remove'
|
|
865
|
+
| 'annotation.toggle'
|
|
866
|
+
| 'blur'
|
|
867
|
+
| 'data transfer.set'
|
|
868
|
+
| 'decorator.add'
|
|
869
|
+
| 'decorator.remove'
|
|
870
|
+
| 'decorator.toggle'
|
|
871
|
+
| 'delete.backward'
|
|
872
|
+
| 'delete.block'
|
|
873
|
+
| 'delete.forward'
|
|
874
|
+
| 'delete.text'
|
|
875
|
+
| 'insert.blocks'
|
|
876
|
+
| 'insert.block object'
|
|
877
|
+
| 'insert.inline object'
|
|
878
|
+
| 'insert.break'
|
|
879
|
+
| 'insert.soft break'
|
|
880
|
+
| 'insert.span'
|
|
881
|
+
| 'insert.text'
|
|
882
|
+
| 'insert.text block'
|
|
883
|
+
| 'list item.add'
|
|
884
|
+
| 'list item.remove'
|
|
885
|
+
| 'list item.toggle'
|
|
886
|
+
| 'move.block'
|
|
887
|
+
| 'move.block down'
|
|
888
|
+
| 'move.block up'
|
|
889
|
+
| 'select.previous block'
|
|
890
|
+
| 'select.next block'
|
|
891
|
+
| 'style.add'
|
|
892
|
+
| 'style.remove'
|
|
893
|
+
| 'style.toggle'
|
|
894
|
+
| 'text block.set'
|
|
895
|
+
| 'text block.unset'
|
|
896
|
+
| 'key.down'
|
|
897
|
+
| 'key.up'
|
|
898
|
+
| 'paste'
|
|
899
|
+
| `custom.${string}`,
|
|
900
|
+
true,
|
|
901
|
+
PickFromUnion_2<
|
|
902
|
+
BehaviorEvent_2,
|
|
903
|
+
'type',
|
|
904
|
+
| 'focus'
|
|
905
|
+
| 'select'
|
|
906
|
+
| 'serialize'
|
|
907
|
+
| 'copy'
|
|
908
|
+
| 'serialization.failure'
|
|
909
|
+
| 'serialization.success'
|
|
910
|
+
| 'deserialize'
|
|
911
|
+
| 'deserialization.failure'
|
|
912
|
+
| 'deserialization.success'
|
|
913
|
+
| 'annotation.add'
|
|
914
|
+
| 'annotation.remove'
|
|
915
|
+
| 'annotation.toggle'
|
|
916
|
+
| 'blur'
|
|
917
|
+
| 'data transfer.set'
|
|
918
|
+
| 'decorator.add'
|
|
919
|
+
| 'decorator.remove'
|
|
920
|
+
| 'decorator.toggle'
|
|
921
|
+
| 'delete.backward'
|
|
922
|
+
| 'delete.block'
|
|
923
|
+
| 'delete.forward'
|
|
924
|
+
| 'delete.text'
|
|
925
|
+
| 'insert.blocks'
|
|
926
|
+
| 'insert.block object'
|
|
927
|
+
| 'insert.inline object'
|
|
928
|
+
| 'insert.break'
|
|
929
|
+
| 'insert.soft break'
|
|
930
|
+
| 'insert.span'
|
|
931
|
+
| 'insert.text'
|
|
932
|
+
| 'insert.text block'
|
|
933
|
+
| 'list item.add'
|
|
934
|
+
| 'list item.remove'
|
|
935
|
+
| 'list item.toggle'
|
|
936
|
+
| 'move.block'
|
|
937
|
+
| 'move.block down'
|
|
938
|
+
| 'move.block up'
|
|
939
|
+
| 'select.previous block'
|
|
940
|
+
| 'select.next block'
|
|
941
|
+
| 'style.add'
|
|
942
|
+
| 'style.remove'
|
|
943
|
+
| 'style.toggle'
|
|
944
|
+
| 'text block.set'
|
|
945
|
+
| 'text block.unset'
|
|
946
|
+
| 'key.down'
|
|
947
|
+
| 'key.up'
|
|
948
|
+
| 'paste'
|
|
949
|
+
| `custom.${string}`
|
|
950
|
+
>
|
|
951
|
+
>
|
|
952
|
+
toggleDecoratorOn: Behavior_2<
|
|
953
|
+
| 'focus'
|
|
954
|
+
| 'select'
|
|
955
|
+
| 'serialize'
|
|
956
|
+
| 'copy'
|
|
957
|
+
| 'serialization.failure'
|
|
958
|
+
| 'serialization.success'
|
|
959
|
+
| 'deserialize'
|
|
960
|
+
| 'deserialization.failure'
|
|
961
|
+
| 'deserialization.success'
|
|
962
|
+
| 'annotation.add'
|
|
963
|
+
| 'annotation.remove'
|
|
964
|
+
| 'annotation.toggle'
|
|
416
965
|
| 'blur'
|
|
417
966
|
| 'data transfer.set'
|
|
967
|
+
| 'decorator.add'
|
|
968
|
+
| 'decorator.remove'
|
|
418
969
|
| 'decorator.toggle'
|
|
419
970
|
| 'delete.backward'
|
|
971
|
+
| 'delete.block'
|
|
420
972
|
| 'delete.forward'
|
|
973
|
+
| 'delete.text'
|
|
421
974
|
| 'insert.blocks'
|
|
422
975
|
| 'insert.block object'
|
|
423
976
|
| 'insert.inline object'
|
|
424
977
|
| 'insert.break'
|
|
425
978
|
| 'insert.soft break'
|
|
979
|
+
| 'insert.span'
|
|
426
980
|
| 'insert.text'
|
|
981
|
+
| 'insert.text block'
|
|
982
|
+
| 'list item.add'
|
|
983
|
+
| 'list item.remove'
|
|
427
984
|
| 'list item.toggle'
|
|
985
|
+
| 'move.block'
|
|
986
|
+
| 'move.block down'
|
|
987
|
+
| 'move.block up'
|
|
988
|
+
| 'select.previous block'
|
|
989
|
+
| 'select.next block'
|
|
990
|
+
| 'style.add'
|
|
991
|
+
| 'style.remove'
|
|
428
992
|
| 'style.toggle'
|
|
993
|
+
| 'text block.set'
|
|
994
|
+
| 'text block.unset'
|
|
429
995
|
| 'key.down'
|
|
430
996
|
| 'key.up'
|
|
431
997
|
| 'paste'
|
|
432
|
-
| `custom.${string}
|
|
998
|
+
| `custom.${string}`,
|
|
999
|
+
true,
|
|
1000
|
+
PickFromUnion_2<
|
|
1001
|
+
BehaviorEvent_2,
|
|
1002
|
+
'type',
|
|
1003
|
+
| 'focus'
|
|
1004
|
+
| 'select'
|
|
1005
|
+
| 'serialize'
|
|
1006
|
+
| 'copy'
|
|
1007
|
+
| 'serialization.failure'
|
|
1008
|
+
| 'serialization.success'
|
|
1009
|
+
| 'deserialize'
|
|
1010
|
+
| 'deserialization.failure'
|
|
1011
|
+
| 'deserialization.success'
|
|
1012
|
+
| 'annotation.add'
|
|
1013
|
+
| 'annotation.remove'
|
|
1014
|
+
| 'annotation.toggle'
|
|
1015
|
+
| 'blur'
|
|
1016
|
+
| 'data transfer.set'
|
|
1017
|
+
| 'decorator.add'
|
|
1018
|
+
| 'decorator.remove'
|
|
1019
|
+
| 'decorator.toggle'
|
|
1020
|
+
| 'delete.backward'
|
|
1021
|
+
| 'delete.block'
|
|
1022
|
+
| 'delete.forward'
|
|
1023
|
+
| 'delete.text'
|
|
1024
|
+
| 'insert.blocks'
|
|
1025
|
+
| 'insert.block object'
|
|
1026
|
+
| 'insert.inline object'
|
|
1027
|
+
| 'insert.break'
|
|
1028
|
+
| 'insert.soft break'
|
|
1029
|
+
| 'insert.span'
|
|
1030
|
+
| 'insert.text'
|
|
1031
|
+
| 'insert.text block'
|
|
1032
|
+
| 'list item.add'
|
|
1033
|
+
| 'list item.remove'
|
|
1034
|
+
| 'list item.toggle'
|
|
1035
|
+
| 'move.block'
|
|
1036
|
+
| 'move.block down'
|
|
1037
|
+
| 'move.block up'
|
|
1038
|
+
| 'select.previous block'
|
|
1039
|
+
| 'select.next block'
|
|
1040
|
+
| 'style.add'
|
|
1041
|
+
| 'style.remove'
|
|
1042
|
+
| 'style.toggle'
|
|
1043
|
+
| 'text block.set'
|
|
1044
|
+
| 'text block.unset'
|
|
1045
|
+
| 'key.down'
|
|
1046
|
+
| 'key.up'
|
|
1047
|
+
| 'paste'
|
|
1048
|
+
| `custom.${string}`
|
|
1049
|
+
>
|
|
433
1050
|
>
|
|
434
|
-
>
|
|
435
|
-
'decorators': {
|
|
436
1051
|
strongShortcut: Behavior_2<
|
|
437
1052
|
| 'focus'
|
|
438
1053
|
| 'select'
|
|
@@ -445,19 +1060,37 @@ export declare const coreBehavior: {
|
|
|
445
1060
|
| 'deserialization.success'
|
|
446
1061
|
| 'annotation.add'
|
|
447
1062
|
| 'annotation.remove'
|
|
1063
|
+
| 'annotation.toggle'
|
|
448
1064
|
| 'blur'
|
|
449
1065
|
| 'data transfer.set'
|
|
1066
|
+
| 'decorator.add'
|
|
1067
|
+
| 'decorator.remove'
|
|
450
1068
|
| 'decorator.toggle'
|
|
451
1069
|
| 'delete.backward'
|
|
1070
|
+
| 'delete.block'
|
|
452
1071
|
| 'delete.forward'
|
|
1072
|
+
| 'delete.text'
|
|
453
1073
|
| 'insert.blocks'
|
|
454
1074
|
| 'insert.block object'
|
|
455
1075
|
| 'insert.inline object'
|
|
456
1076
|
| 'insert.break'
|
|
457
1077
|
| 'insert.soft break'
|
|
1078
|
+
| 'insert.span'
|
|
458
1079
|
| 'insert.text'
|
|
1080
|
+
| 'insert.text block'
|
|
1081
|
+
| 'list item.add'
|
|
1082
|
+
| 'list item.remove'
|
|
459
1083
|
| 'list item.toggle'
|
|
1084
|
+
| 'move.block'
|
|
1085
|
+
| 'move.block down'
|
|
1086
|
+
| 'move.block up'
|
|
1087
|
+
| 'select.previous block'
|
|
1088
|
+
| 'select.next block'
|
|
1089
|
+
| 'style.add'
|
|
1090
|
+
| 'style.remove'
|
|
460
1091
|
| 'style.toggle'
|
|
1092
|
+
| 'text block.set'
|
|
1093
|
+
| 'text block.unset'
|
|
461
1094
|
| 'key.down'
|
|
462
1095
|
| 'key.up'
|
|
463
1096
|
| 'paste'
|
|
@@ -477,19 +1110,37 @@ export declare const coreBehavior: {
|
|
|
477
1110
|
| 'deserialization.success'
|
|
478
1111
|
| 'annotation.add'
|
|
479
1112
|
| 'annotation.remove'
|
|
1113
|
+
| 'annotation.toggle'
|
|
480
1114
|
| 'blur'
|
|
481
1115
|
| 'data transfer.set'
|
|
1116
|
+
| 'decorator.add'
|
|
1117
|
+
| 'decorator.remove'
|
|
482
1118
|
| 'decorator.toggle'
|
|
483
1119
|
| 'delete.backward'
|
|
1120
|
+
| 'delete.block'
|
|
484
1121
|
| 'delete.forward'
|
|
1122
|
+
| 'delete.text'
|
|
485
1123
|
| 'insert.blocks'
|
|
486
1124
|
| 'insert.block object'
|
|
487
1125
|
| 'insert.inline object'
|
|
488
1126
|
| 'insert.break'
|
|
489
1127
|
| 'insert.soft break'
|
|
1128
|
+
| 'insert.span'
|
|
490
1129
|
| 'insert.text'
|
|
1130
|
+
| 'insert.text block'
|
|
1131
|
+
| 'list item.add'
|
|
1132
|
+
| 'list item.remove'
|
|
491
1133
|
| 'list item.toggle'
|
|
1134
|
+
| 'move.block'
|
|
1135
|
+
| 'move.block down'
|
|
1136
|
+
| 'move.block up'
|
|
1137
|
+
| 'select.previous block'
|
|
1138
|
+
| 'select.next block'
|
|
1139
|
+
| 'style.add'
|
|
1140
|
+
| 'style.remove'
|
|
492
1141
|
| 'style.toggle'
|
|
1142
|
+
| 'text block.set'
|
|
1143
|
+
| 'text block.unset'
|
|
493
1144
|
| 'key.down'
|
|
494
1145
|
| 'key.up'
|
|
495
1146
|
| 'paste'
|
|
@@ -508,19 +1159,37 @@ export declare const coreBehavior: {
|
|
|
508
1159
|
| 'deserialization.success'
|
|
509
1160
|
| 'annotation.add'
|
|
510
1161
|
| 'annotation.remove'
|
|
1162
|
+
| 'annotation.toggle'
|
|
511
1163
|
| 'blur'
|
|
512
1164
|
| 'data transfer.set'
|
|
1165
|
+
| 'decorator.add'
|
|
1166
|
+
| 'decorator.remove'
|
|
513
1167
|
| 'decorator.toggle'
|
|
514
1168
|
| 'delete.backward'
|
|
1169
|
+
| 'delete.block'
|
|
515
1170
|
| 'delete.forward'
|
|
1171
|
+
| 'delete.text'
|
|
516
1172
|
| 'insert.blocks'
|
|
517
1173
|
| 'insert.block object'
|
|
518
1174
|
| 'insert.inline object'
|
|
519
1175
|
| 'insert.break'
|
|
520
1176
|
| 'insert.soft break'
|
|
1177
|
+
| 'insert.span'
|
|
521
1178
|
| 'insert.text'
|
|
1179
|
+
| 'insert.text block'
|
|
1180
|
+
| 'list item.add'
|
|
1181
|
+
| 'list item.remove'
|
|
522
1182
|
| 'list item.toggle'
|
|
1183
|
+
| 'move.block'
|
|
1184
|
+
| 'move.block down'
|
|
1185
|
+
| 'move.block up'
|
|
1186
|
+
| 'select.previous block'
|
|
1187
|
+
| 'select.next block'
|
|
1188
|
+
| 'style.add'
|
|
1189
|
+
| 'style.remove'
|
|
523
1190
|
| 'style.toggle'
|
|
1191
|
+
| 'text block.set'
|
|
1192
|
+
| 'text block.unset'
|
|
524
1193
|
| 'key.down'
|
|
525
1194
|
| 'key.up'
|
|
526
1195
|
| 'paste'
|
|
@@ -540,19 +1209,37 @@ export declare const coreBehavior: {
|
|
|
540
1209
|
| 'deserialization.success'
|
|
541
1210
|
| 'annotation.add'
|
|
542
1211
|
| 'annotation.remove'
|
|
1212
|
+
| 'annotation.toggle'
|
|
543
1213
|
| 'blur'
|
|
544
1214
|
| 'data transfer.set'
|
|
1215
|
+
| 'decorator.add'
|
|
1216
|
+
| 'decorator.remove'
|
|
545
1217
|
| 'decorator.toggle'
|
|
546
1218
|
| 'delete.backward'
|
|
1219
|
+
| 'delete.block'
|
|
547
1220
|
| 'delete.forward'
|
|
1221
|
+
| 'delete.text'
|
|
548
1222
|
| 'insert.blocks'
|
|
549
1223
|
| 'insert.block object'
|
|
550
1224
|
| 'insert.inline object'
|
|
551
1225
|
| 'insert.break'
|
|
552
1226
|
| 'insert.soft break'
|
|
1227
|
+
| 'insert.span'
|
|
553
1228
|
| 'insert.text'
|
|
1229
|
+
| 'insert.text block'
|
|
1230
|
+
| 'list item.add'
|
|
1231
|
+
| 'list item.remove'
|
|
554
1232
|
| 'list item.toggle'
|
|
1233
|
+
| 'move.block'
|
|
1234
|
+
| 'move.block down'
|
|
1235
|
+
| 'move.block up'
|
|
1236
|
+
| 'select.previous block'
|
|
1237
|
+
| 'select.next block'
|
|
1238
|
+
| 'style.add'
|
|
1239
|
+
| 'style.remove'
|
|
555
1240
|
| 'style.toggle'
|
|
1241
|
+
| 'text block.set'
|
|
1242
|
+
| 'text block.unset'
|
|
556
1243
|
| 'key.down'
|
|
557
1244
|
| 'key.up'
|
|
558
1245
|
| 'paste'
|
|
@@ -571,19 +1258,37 @@ export declare const coreBehavior: {
|
|
|
571
1258
|
| 'deserialization.success'
|
|
572
1259
|
| 'annotation.add'
|
|
573
1260
|
| 'annotation.remove'
|
|
1261
|
+
| 'annotation.toggle'
|
|
574
1262
|
| 'blur'
|
|
575
1263
|
| 'data transfer.set'
|
|
1264
|
+
| 'decorator.add'
|
|
1265
|
+
| 'decorator.remove'
|
|
576
1266
|
| 'decorator.toggle'
|
|
577
1267
|
| 'delete.backward'
|
|
1268
|
+
| 'delete.block'
|
|
578
1269
|
| 'delete.forward'
|
|
1270
|
+
| 'delete.text'
|
|
579
1271
|
| 'insert.blocks'
|
|
580
1272
|
| 'insert.block object'
|
|
581
1273
|
| 'insert.inline object'
|
|
582
1274
|
| 'insert.break'
|
|
583
1275
|
| 'insert.soft break'
|
|
1276
|
+
| 'insert.span'
|
|
584
1277
|
| 'insert.text'
|
|
1278
|
+
| 'insert.text block'
|
|
1279
|
+
| 'list item.add'
|
|
1280
|
+
| 'list item.remove'
|
|
585
1281
|
| 'list item.toggle'
|
|
1282
|
+
| 'move.block'
|
|
1283
|
+
| 'move.block down'
|
|
1284
|
+
| 'move.block up'
|
|
1285
|
+
| 'select.previous block'
|
|
1286
|
+
| 'select.next block'
|
|
1287
|
+
| 'style.add'
|
|
1288
|
+
| 'style.remove'
|
|
586
1289
|
| 'style.toggle'
|
|
1290
|
+
| 'text block.set'
|
|
1291
|
+
| 'text block.unset'
|
|
587
1292
|
| 'key.down'
|
|
588
1293
|
| 'key.up'
|
|
589
1294
|
| 'paste'
|
|
@@ -603,19 +1308,37 @@ export declare const coreBehavior: {
|
|
|
603
1308
|
| 'deserialization.success'
|
|
604
1309
|
| 'annotation.add'
|
|
605
1310
|
| 'annotation.remove'
|
|
1311
|
+
| 'annotation.toggle'
|
|
606
1312
|
| 'blur'
|
|
607
1313
|
| 'data transfer.set'
|
|
1314
|
+
| 'decorator.add'
|
|
1315
|
+
| 'decorator.remove'
|
|
608
1316
|
| 'decorator.toggle'
|
|
609
1317
|
| 'delete.backward'
|
|
1318
|
+
| 'delete.block'
|
|
610
1319
|
| 'delete.forward'
|
|
1320
|
+
| 'delete.text'
|
|
611
1321
|
| 'insert.blocks'
|
|
612
1322
|
| 'insert.block object'
|
|
613
1323
|
| 'insert.inline object'
|
|
614
1324
|
| 'insert.break'
|
|
615
1325
|
| 'insert.soft break'
|
|
1326
|
+
| 'insert.span'
|
|
616
1327
|
| 'insert.text'
|
|
1328
|
+
| 'insert.text block'
|
|
1329
|
+
| 'list item.add'
|
|
1330
|
+
| 'list item.remove'
|
|
617
1331
|
| 'list item.toggle'
|
|
1332
|
+
| 'move.block'
|
|
1333
|
+
| 'move.block down'
|
|
1334
|
+
| 'move.block up'
|
|
1335
|
+
| 'select.previous block'
|
|
1336
|
+
| 'select.next block'
|
|
1337
|
+
| 'style.add'
|
|
1338
|
+
| 'style.remove'
|
|
618
1339
|
| 'style.toggle'
|
|
1340
|
+
| 'text block.set'
|
|
1341
|
+
| 'text block.unset'
|
|
619
1342
|
| 'key.down'
|
|
620
1343
|
| 'key.up'
|
|
621
1344
|
| 'paste'
|
|
@@ -634,19 +1357,37 @@ export declare const coreBehavior: {
|
|
|
634
1357
|
| 'deserialization.success'
|
|
635
1358
|
| 'annotation.add'
|
|
636
1359
|
| 'annotation.remove'
|
|
1360
|
+
| 'annotation.toggle'
|
|
637
1361
|
| 'blur'
|
|
638
1362
|
| 'data transfer.set'
|
|
1363
|
+
| 'decorator.add'
|
|
1364
|
+
| 'decorator.remove'
|
|
639
1365
|
| 'decorator.toggle'
|
|
640
1366
|
| 'delete.backward'
|
|
1367
|
+
| 'delete.block'
|
|
641
1368
|
| 'delete.forward'
|
|
1369
|
+
| 'delete.text'
|
|
642
1370
|
| 'insert.blocks'
|
|
643
1371
|
| 'insert.block object'
|
|
644
1372
|
| 'insert.inline object'
|
|
645
1373
|
| 'insert.break'
|
|
646
1374
|
| 'insert.soft break'
|
|
1375
|
+
| 'insert.span'
|
|
647
1376
|
| 'insert.text'
|
|
1377
|
+
| 'insert.text block'
|
|
1378
|
+
| 'list item.add'
|
|
1379
|
+
| 'list item.remove'
|
|
648
1380
|
| 'list item.toggle'
|
|
1381
|
+
| 'move.block'
|
|
1382
|
+
| 'move.block down'
|
|
1383
|
+
| 'move.block up'
|
|
1384
|
+
| 'select.previous block'
|
|
1385
|
+
| 'select.next block'
|
|
1386
|
+
| 'style.add'
|
|
1387
|
+
| 'style.remove'
|
|
649
1388
|
| 'style.toggle'
|
|
1389
|
+
| 'text block.set'
|
|
1390
|
+
| 'text block.unset'
|
|
650
1391
|
| 'key.down'
|
|
651
1392
|
| 'key.up'
|
|
652
1393
|
| 'paste'
|
|
@@ -666,19 +1407,37 @@ export declare const coreBehavior: {
|
|
|
666
1407
|
| 'deserialization.success'
|
|
667
1408
|
| 'annotation.add'
|
|
668
1409
|
| 'annotation.remove'
|
|
1410
|
+
| 'annotation.toggle'
|
|
669
1411
|
| 'blur'
|
|
670
1412
|
| 'data transfer.set'
|
|
1413
|
+
| 'decorator.add'
|
|
1414
|
+
| 'decorator.remove'
|
|
671
1415
|
| 'decorator.toggle'
|
|
672
1416
|
| 'delete.backward'
|
|
1417
|
+
| 'delete.block'
|
|
673
1418
|
| 'delete.forward'
|
|
1419
|
+
| 'delete.text'
|
|
674
1420
|
| 'insert.blocks'
|
|
675
1421
|
| 'insert.block object'
|
|
676
1422
|
| 'insert.inline object'
|
|
677
1423
|
| 'insert.break'
|
|
678
1424
|
| 'insert.soft break'
|
|
1425
|
+
| 'insert.span'
|
|
679
1426
|
| 'insert.text'
|
|
1427
|
+
| 'insert.text block'
|
|
1428
|
+
| 'list item.add'
|
|
1429
|
+
| 'list item.remove'
|
|
680
1430
|
| 'list item.toggle'
|
|
1431
|
+
| 'move.block'
|
|
1432
|
+
| 'move.block down'
|
|
1433
|
+
| 'move.block up'
|
|
1434
|
+
| 'select.previous block'
|
|
1435
|
+
| 'select.next block'
|
|
1436
|
+
| 'style.add'
|
|
1437
|
+
| 'style.remove'
|
|
681
1438
|
| 'style.toggle'
|
|
1439
|
+
| 'text block.set'
|
|
1440
|
+
| 'text block.unset'
|
|
682
1441
|
| 'key.down'
|
|
683
1442
|
| 'key.up'
|
|
684
1443
|
| 'paste'
|
|
@@ -698,19 +1457,37 @@ export declare const coreBehavior: {
|
|
|
698
1457
|
| 'deserialization.success'
|
|
699
1458
|
| 'annotation.add'
|
|
700
1459
|
| 'annotation.remove'
|
|
1460
|
+
| 'annotation.toggle'
|
|
701
1461
|
| 'blur'
|
|
702
1462
|
| 'data transfer.set'
|
|
1463
|
+
| 'decorator.add'
|
|
1464
|
+
| 'decorator.remove'
|
|
703
1465
|
| 'decorator.toggle'
|
|
704
1466
|
| 'delete.backward'
|
|
1467
|
+
| 'delete.block'
|
|
705
1468
|
| 'delete.forward'
|
|
1469
|
+
| 'delete.text'
|
|
706
1470
|
| 'insert.blocks'
|
|
707
1471
|
| 'insert.block object'
|
|
708
1472
|
| 'insert.inline object'
|
|
709
1473
|
| 'insert.break'
|
|
710
1474
|
| 'insert.soft break'
|
|
1475
|
+
| 'insert.span'
|
|
711
1476
|
| 'insert.text'
|
|
1477
|
+
| 'insert.text block'
|
|
1478
|
+
| 'list item.add'
|
|
1479
|
+
| 'list item.remove'
|
|
712
1480
|
| 'list item.toggle'
|
|
1481
|
+
| 'move.block'
|
|
1482
|
+
| 'move.block down'
|
|
1483
|
+
| 'move.block up'
|
|
1484
|
+
| 'select.previous block'
|
|
1485
|
+
| 'select.next block'
|
|
1486
|
+
| 'style.add'
|
|
1487
|
+
| 'style.remove'
|
|
713
1488
|
| 'style.toggle'
|
|
1489
|
+
| 'text block.set'
|
|
1490
|
+
| 'text block.unset'
|
|
714
1491
|
| 'key.down'
|
|
715
1492
|
| 'key.up'
|
|
716
1493
|
| 'paste'
|
|
@@ -730,19 +1507,37 @@ export declare const coreBehavior: {
|
|
|
730
1507
|
| 'deserialization.success'
|
|
731
1508
|
| 'annotation.add'
|
|
732
1509
|
| 'annotation.remove'
|
|
1510
|
+
| 'annotation.toggle'
|
|
733
1511
|
| 'blur'
|
|
734
1512
|
| 'data transfer.set'
|
|
1513
|
+
| 'decorator.add'
|
|
1514
|
+
| 'decorator.remove'
|
|
735
1515
|
| 'decorator.toggle'
|
|
736
1516
|
| 'delete.backward'
|
|
1517
|
+
| 'delete.block'
|
|
737
1518
|
| 'delete.forward'
|
|
1519
|
+
| 'delete.text'
|
|
738
1520
|
| 'insert.blocks'
|
|
739
1521
|
| 'insert.block object'
|
|
740
1522
|
| 'insert.inline object'
|
|
741
1523
|
| 'insert.break'
|
|
742
1524
|
| 'insert.soft break'
|
|
1525
|
+
| 'insert.span'
|
|
743
1526
|
| 'insert.text'
|
|
1527
|
+
| 'insert.text block'
|
|
1528
|
+
| 'list item.add'
|
|
1529
|
+
| 'list item.remove'
|
|
744
1530
|
| 'list item.toggle'
|
|
1531
|
+
| 'move.block'
|
|
1532
|
+
| 'move.block down'
|
|
1533
|
+
| 'move.block up'
|
|
1534
|
+
| 'select.previous block'
|
|
1535
|
+
| 'select.next block'
|
|
1536
|
+
| 'style.add'
|
|
1537
|
+
| 'style.remove'
|
|
745
1538
|
| 'style.toggle'
|
|
1539
|
+
| 'text block.set'
|
|
1540
|
+
| 'text block.unset'
|
|
746
1541
|
| 'key.down'
|
|
747
1542
|
| 'key.up'
|
|
748
1543
|
| 'paste'
|
|
@@ -762,19 +1557,37 @@ export declare const coreBehavior: {
|
|
|
762
1557
|
| 'deserialization.success'
|
|
763
1558
|
| 'annotation.add'
|
|
764
1559
|
| 'annotation.remove'
|
|
1560
|
+
| 'annotation.toggle'
|
|
765
1561
|
| 'blur'
|
|
766
1562
|
| 'data transfer.set'
|
|
1563
|
+
| 'decorator.add'
|
|
1564
|
+
| 'decorator.remove'
|
|
767
1565
|
| 'decorator.toggle'
|
|
768
1566
|
| 'delete.backward'
|
|
1567
|
+
| 'delete.block'
|
|
769
1568
|
| 'delete.forward'
|
|
1569
|
+
| 'delete.text'
|
|
770
1570
|
| 'insert.blocks'
|
|
771
1571
|
| 'insert.block object'
|
|
772
1572
|
| 'insert.inline object'
|
|
773
1573
|
| 'insert.break'
|
|
774
1574
|
| 'insert.soft break'
|
|
1575
|
+
| 'insert.span'
|
|
775
1576
|
| 'insert.text'
|
|
1577
|
+
| 'insert.text block'
|
|
1578
|
+
| 'list item.add'
|
|
1579
|
+
| 'list item.remove'
|
|
776
1580
|
| 'list item.toggle'
|
|
1581
|
+
| 'move.block'
|
|
1582
|
+
| 'move.block down'
|
|
1583
|
+
| 'move.block up'
|
|
1584
|
+
| 'select.previous block'
|
|
1585
|
+
| 'select.next block'
|
|
1586
|
+
| 'style.add'
|
|
1587
|
+
| 'style.remove'
|
|
777
1588
|
| 'style.toggle'
|
|
1589
|
+
| 'text block.set'
|
|
1590
|
+
| 'text block.unset'
|
|
778
1591
|
| 'key.down'
|
|
779
1592
|
| 'key.up'
|
|
780
1593
|
| 'paste'
|
|
@@ -794,19 +1607,37 @@ export declare const coreBehavior: {
|
|
|
794
1607
|
| 'deserialization.success'
|
|
795
1608
|
| 'annotation.add'
|
|
796
1609
|
| 'annotation.remove'
|
|
1610
|
+
| 'annotation.toggle'
|
|
797
1611
|
| 'blur'
|
|
798
1612
|
| 'data transfer.set'
|
|
1613
|
+
| 'decorator.add'
|
|
1614
|
+
| 'decorator.remove'
|
|
799
1615
|
| 'decorator.toggle'
|
|
800
1616
|
| 'delete.backward'
|
|
1617
|
+
| 'delete.block'
|
|
801
1618
|
| 'delete.forward'
|
|
1619
|
+
| 'delete.text'
|
|
802
1620
|
| 'insert.blocks'
|
|
803
1621
|
| 'insert.block object'
|
|
804
1622
|
| 'insert.inline object'
|
|
805
1623
|
| 'insert.break'
|
|
806
1624
|
| 'insert.soft break'
|
|
1625
|
+
| 'insert.span'
|
|
807
1626
|
| 'insert.text'
|
|
1627
|
+
| 'insert.text block'
|
|
1628
|
+
| 'list item.add'
|
|
1629
|
+
| 'list item.remove'
|
|
808
1630
|
| 'list item.toggle'
|
|
1631
|
+
| 'move.block'
|
|
1632
|
+
| 'move.block down'
|
|
1633
|
+
| 'move.block up'
|
|
1634
|
+
| 'select.previous block'
|
|
1635
|
+
| 'select.next block'
|
|
1636
|
+
| 'style.add'
|
|
1637
|
+
| 'style.remove'
|
|
809
1638
|
| 'style.toggle'
|
|
1639
|
+
| 'text block.set'
|
|
1640
|
+
| 'text block.unset'
|
|
810
1641
|
| 'key.down'
|
|
811
1642
|
| 'key.up'
|
|
812
1643
|
| 'paste'
|
|
@@ -825,19 +1656,37 @@ export declare const coreBehavior: {
|
|
|
825
1656
|
| 'deserialization.success'
|
|
826
1657
|
| 'annotation.add'
|
|
827
1658
|
| 'annotation.remove'
|
|
1659
|
+
| 'annotation.toggle'
|
|
828
1660
|
| 'blur'
|
|
829
1661
|
| 'data transfer.set'
|
|
1662
|
+
| 'decorator.add'
|
|
1663
|
+
| 'decorator.remove'
|
|
830
1664
|
| 'decorator.toggle'
|
|
831
1665
|
| 'delete.backward'
|
|
1666
|
+
| 'delete.block'
|
|
832
1667
|
| 'delete.forward'
|
|
1668
|
+
| 'delete.text'
|
|
833
1669
|
| 'insert.blocks'
|
|
834
1670
|
| 'insert.block object'
|
|
835
1671
|
| 'insert.inline object'
|
|
836
1672
|
| 'insert.break'
|
|
837
1673
|
| 'insert.soft break'
|
|
1674
|
+
| 'insert.span'
|
|
838
1675
|
| 'insert.text'
|
|
1676
|
+
| 'insert.text block'
|
|
1677
|
+
| 'list item.add'
|
|
1678
|
+
| 'list item.remove'
|
|
839
1679
|
| 'list item.toggle'
|
|
1680
|
+
| 'move.block'
|
|
1681
|
+
| 'move.block down'
|
|
1682
|
+
| 'move.block up'
|
|
1683
|
+
| 'select.previous block'
|
|
1684
|
+
| 'select.next block'
|
|
1685
|
+
| 'style.add'
|
|
1686
|
+
| 'style.remove'
|
|
840
1687
|
| 'style.toggle'
|
|
1688
|
+
| 'text block.set'
|
|
1689
|
+
| 'text block.unset'
|
|
841
1690
|
| 'key.down'
|
|
842
1691
|
| 'key.up'
|
|
843
1692
|
| 'paste'
|
|
@@ -857,19 +1706,37 @@ export declare const coreBehavior: {
|
|
|
857
1706
|
| 'deserialization.success'
|
|
858
1707
|
| 'annotation.add'
|
|
859
1708
|
| 'annotation.remove'
|
|
1709
|
+
| 'annotation.toggle'
|
|
860
1710
|
| 'blur'
|
|
861
1711
|
| 'data transfer.set'
|
|
1712
|
+
| 'decorator.add'
|
|
1713
|
+
| 'decorator.remove'
|
|
862
1714
|
| 'decorator.toggle'
|
|
863
1715
|
| 'delete.backward'
|
|
1716
|
+
| 'delete.block'
|
|
864
1717
|
| 'delete.forward'
|
|
1718
|
+
| 'delete.text'
|
|
865
1719
|
| 'insert.blocks'
|
|
866
1720
|
| 'insert.block object'
|
|
867
1721
|
| 'insert.inline object'
|
|
868
1722
|
| 'insert.break'
|
|
869
1723
|
| 'insert.soft break'
|
|
1724
|
+
| 'insert.span'
|
|
870
1725
|
| 'insert.text'
|
|
1726
|
+
| 'insert.text block'
|
|
1727
|
+
| 'list item.add'
|
|
1728
|
+
| 'list item.remove'
|
|
871
1729
|
| 'list item.toggle'
|
|
1730
|
+
| 'move.block'
|
|
1731
|
+
| 'move.block down'
|
|
1732
|
+
| 'move.block up'
|
|
1733
|
+
| 'select.previous block'
|
|
1734
|
+
| 'select.next block'
|
|
1735
|
+
| 'style.add'
|
|
1736
|
+
| 'style.remove'
|
|
872
1737
|
| 'style.toggle'
|
|
1738
|
+
| 'text block.set'
|
|
1739
|
+
| 'text block.unset'
|
|
873
1740
|
| 'key.down'
|
|
874
1741
|
| 'key.up'
|
|
875
1742
|
| 'paste'
|
|
@@ -888,19 +1755,37 @@ export declare const coreBehavior: {
|
|
|
888
1755
|
| 'deserialization.success'
|
|
889
1756
|
| 'annotation.add'
|
|
890
1757
|
| 'annotation.remove'
|
|
1758
|
+
| 'annotation.toggle'
|
|
891
1759
|
| 'blur'
|
|
892
1760
|
| 'data transfer.set'
|
|
1761
|
+
| 'decorator.add'
|
|
1762
|
+
| 'decorator.remove'
|
|
893
1763
|
| 'decorator.toggle'
|
|
894
1764
|
| 'delete.backward'
|
|
1765
|
+
| 'delete.block'
|
|
895
1766
|
| 'delete.forward'
|
|
1767
|
+
| 'delete.text'
|
|
896
1768
|
| 'insert.blocks'
|
|
897
1769
|
| 'insert.block object'
|
|
898
1770
|
| 'insert.inline object'
|
|
899
1771
|
| 'insert.break'
|
|
900
1772
|
| 'insert.soft break'
|
|
1773
|
+
| 'insert.span'
|
|
901
1774
|
| 'insert.text'
|
|
1775
|
+
| 'insert.text block'
|
|
1776
|
+
| 'list item.add'
|
|
1777
|
+
| 'list item.remove'
|
|
902
1778
|
| 'list item.toggle'
|
|
1779
|
+
| 'move.block'
|
|
1780
|
+
| 'move.block down'
|
|
1781
|
+
| 'move.block up'
|
|
1782
|
+
| 'select.previous block'
|
|
1783
|
+
| 'select.next block'
|
|
1784
|
+
| 'style.add'
|
|
1785
|
+
| 'style.remove'
|
|
903
1786
|
| 'style.toggle'
|
|
1787
|
+
| 'text block.set'
|
|
1788
|
+
| 'text block.unset'
|
|
904
1789
|
| 'key.down'
|
|
905
1790
|
| 'key.up'
|
|
906
1791
|
| 'paste'
|
|
@@ -920,19 +1805,37 @@ export declare const coreBehavior: {
|
|
|
920
1805
|
| 'deserialization.success'
|
|
921
1806
|
| 'annotation.add'
|
|
922
1807
|
| 'annotation.remove'
|
|
1808
|
+
| 'annotation.toggle'
|
|
923
1809
|
| 'blur'
|
|
924
1810
|
| 'data transfer.set'
|
|
1811
|
+
| 'decorator.add'
|
|
1812
|
+
| 'decorator.remove'
|
|
925
1813
|
| 'decorator.toggle'
|
|
926
1814
|
| 'delete.backward'
|
|
1815
|
+
| 'delete.block'
|
|
927
1816
|
| 'delete.forward'
|
|
1817
|
+
| 'delete.text'
|
|
928
1818
|
| 'insert.blocks'
|
|
929
1819
|
| 'insert.block object'
|
|
930
1820
|
| 'insert.inline object'
|
|
931
1821
|
| 'insert.break'
|
|
932
1822
|
| 'insert.soft break'
|
|
1823
|
+
| 'insert.span'
|
|
933
1824
|
| 'insert.text'
|
|
1825
|
+
| 'insert.text block'
|
|
1826
|
+
| 'list item.add'
|
|
1827
|
+
| 'list item.remove'
|
|
934
1828
|
| 'list item.toggle'
|
|
1829
|
+
| 'move.block'
|
|
1830
|
+
| 'move.block down'
|
|
1831
|
+
| 'move.block up'
|
|
1832
|
+
| 'select.previous block'
|
|
1833
|
+
| 'select.next block'
|
|
1834
|
+
| 'style.add'
|
|
1835
|
+
| 'style.remove'
|
|
935
1836
|
| 'style.toggle'
|
|
1837
|
+
| 'text block.set'
|
|
1838
|
+
| 'text block.unset'
|
|
936
1839
|
| 'key.down'
|
|
937
1840
|
| 'key.up'
|
|
938
1841
|
| 'paste'
|
|
@@ -951,19 +1854,37 @@ export declare const coreBehavior: {
|
|
|
951
1854
|
| 'deserialization.success'
|
|
952
1855
|
| 'annotation.add'
|
|
953
1856
|
| 'annotation.remove'
|
|
1857
|
+
| 'annotation.toggle'
|
|
954
1858
|
| 'blur'
|
|
955
1859
|
| 'data transfer.set'
|
|
1860
|
+
| 'decorator.add'
|
|
1861
|
+
| 'decorator.remove'
|
|
956
1862
|
| 'decorator.toggle'
|
|
957
1863
|
| 'delete.backward'
|
|
1864
|
+
| 'delete.block'
|
|
958
1865
|
| 'delete.forward'
|
|
1866
|
+
| 'delete.text'
|
|
959
1867
|
| 'insert.blocks'
|
|
960
1868
|
| 'insert.block object'
|
|
961
1869
|
| 'insert.inline object'
|
|
962
1870
|
| 'insert.break'
|
|
963
1871
|
| 'insert.soft break'
|
|
1872
|
+
| 'insert.span'
|
|
964
1873
|
| 'insert.text'
|
|
1874
|
+
| 'insert.text block'
|
|
1875
|
+
| 'list item.add'
|
|
1876
|
+
| 'list item.remove'
|
|
965
1877
|
| 'list item.toggle'
|
|
1878
|
+
| 'move.block'
|
|
1879
|
+
| 'move.block down'
|
|
1880
|
+
| 'move.block up'
|
|
1881
|
+
| 'select.previous block'
|
|
1882
|
+
| 'select.next block'
|
|
1883
|
+
| 'style.add'
|
|
1884
|
+
| 'style.remove'
|
|
966
1885
|
| 'style.toggle'
|
|
1886
|
+
| 'text block.set'
|
|
1887
|
+
| 'text block.unset'
|
|
967
1888
|
| 'key.down'
|
|
968
1889
|
| 'key.up'
|
|
969
1890
|
| 'paste'
|
|
@@ -983,19 +1904,37 @@ export declare const coreBehavior: {
|
|
|
983
1904
|
| 'deserialization.success'
|
|
984
1905
|
| 'annotation.add'
|
|
985
1906
|
| 'annotation.remove'
|
|
1907
|
+
| 'annotation.toggle'
|
|
986
1908
|
| 'blur'
|
|
987
1909
|
| 'data transfer.set'
|
|
1910
|
+
| 'decorator.add'
|
|
1911
|
+
| 'decorator.remove'
|
|
988
1912
|
| 'decorator.toggle'
|
|
989
1913
|
| 'delete.backward'
|
|
1914
|
+
| 'delete.block'
|
|
990
1915
|
| 'delete.forward'
|
|
1916
|
+
| 'delete.text'
|
|
991
1917
|
| 'insert.blocks'
|
|
992
1918
|
| 'insert.block object'
|
|
993
1919
|
| 'insert.inline object'
|
|
994
1920
|
| 'insert.break'
|
|
995
1921
|
| 'insert.soft break'
|
|
1922
|
+
| 'insert.span'
|
|
996
1923
|
| 'insert.text'
|
|
1924
|
+
| 'insert.text block'
|
|
1925
|
+
| 'list item.add'
|
|
1926
|
+
| 'list item.remove'
|
|
997
1927
|
| 'list item.toggle'
|
|
1928
|
+
| 'move.block'
|
|
1929
|
+
| 'move.block down'
|
|
1930
|
+
| 'move.block up'
|
|
1931
|
+
| 'select.previous block'
|
|
1932
|
+
| 'select.next block'
|
|
1933
|
+
| 'style.add'
|
|
1934
|
+
| 'style.remove'
|
|
998
1935
|
| 'style.toggle'
|
|
1936
|
+
| 'text block.set'
|
|
1937
|
+
| 'text block.unset'
|
|
999
1938
|
| 'key.down'
|
|
1000
1939
|
| 'key.up'
|
|
1001
1940
|
| 'paste'
|
|
@@ -1014,19 +1953,37 @@ export declare const coreBehavior: {
|
|
|
1014
1953
|
| 'deserialization.success'
|
|
1015
1954
|
| 'annotation.add'
|
|
1016
1955
|
| 'annotation.remove'
|
|
1956
|
+
| 'annotation.toggle'
|
|
1017
1957
|
| 'blur'
|
|
1018
1958
|
| 'data transfer.set'
|
|
1959
|
+
| 'decorator.add'
|
|
1960
|
+
| 'decorator.remove'
|
|
1019
1961
|
| 'decorator.toggle'
|
|
1020
1962
|
| 'delete.backward'
|
|
1963
|
+
| 'delete.block'
|
|
1021
1964
|
| 'delete.forward'
|
|
1965
|
+
| 'delete.text'
|
|
1022
1966
|
| 'insert.blocks'
|
|
1023
1967
|
| 'insert.block object'
|
|
1024
1968
|
| 'insert.inline object'
|
|
1025
1969
|
| 'insert.break'
|
|
1026
1970
|
| 'insert.soft break'
|
|
1971
|
+
| 'insert.span'
|
|
1027
1972
|
| 'insert.text'
|
|
1973
|
+
| 'insert.text block'
|
|
1974
|
+
| 'list item.add'
|
|
1975
|
+
| 'list item.remove'
|
|
1028
1976
|
| 'list item.toggle'
|
|
1977
|
+
| 'move.block'
|
|
1978
|
+
| 'move.block down'
|
|
1979
|
+
| 'move.block up'
|
|
1980
|
+
| 'select.previous block'
|
|
1981
|
+
| 'select.next block'
|
|
1982
|
+
| 'style.add'
|
|
1983
|
+
| 'style.remove'
|
|
1029
1984
|
| 'style.toggle'
|
|
1985
|
+
| 'text block.set'
|
|
1986
|
+
| 'text block.unset'
|
|
1030
1987
|
| 'key.down'
|
|
1031
1988
|
| 'key.up'
|
|
1032
1989
|
| 'paste'
|
|
@@ -1046,19 +2003,37 @@ export declare const coreBehavior: {
|
|
|
1046
2003
|
| 'deserialization.success'
|
|
1047
2004
|
| 'annotation.add'
|
|
1048
2005
|
| 'annotation.remove'
|
|
2006
|
+
| 'annotation.toggle'
|
|
1049
2007
|
| 'blur'
|
|
1050
2008
|
| 'data transfer.set'
|
|
2009
|
+
| 'decorator.add'
|
|
2010
|
+
| 'decorator.remove'
|
|
1051
2011
|
| 'decorator.toggle'
|
|
1052
2012
|
| 'delete.backward'
|
|
2013
|
+
| 'delete.block'
|
|
1053
2014
|
| 'delete.forward'
|
|
2015
|
+
| 'delete.text'
|
|
1054
2016
|
| 'insert.blocks'
|
|
1055
2017
|
| 'insert.block object'
|
|
1056
2018
|
| 'insert.inline object'
|
|
1057
2019
|
| 'insert.break'
|
|
1058
2020
|
| 'insert.soft break'
|
|
2021
|
+
| 'insert.span'
|
|
1059
2022
|
| 'insert.text'
|
|
2023
|
+
| 'insert.text block'
|
|
2024
|
+
| 'list item.add'
|
|
2025
|
+
| 'list item.remove'
|
|
1060
2026
|
| 'list item.toggle'
|
|
2027
|
+
| 'move.block'
|
|
2028
|
+
| 'move.block down'
|
|
2029
|
+
| 'move.block up'
|
|
2030
|
+
| 'select.previous block'
|
|
2031
|
+
| 'select.next block'
|
|
2032
|
+
| 'style.add'
|
|
2033
|
+
| 'style.remove'
|
|
1061
2034
|
| 'style.toggle'
|
|
2035
|
+
| 'text block.set'
|
|
2036
|
+
| 'text block.unset'
|
|
1062
2037
|
| 'key.down'
|
|
1063
2038
|
| 'key.up'
|
|
1064
2039
|
| 'paste'
|
|
@@ -1067,6 +2042,204 @@ export declare const coreBehavior: {
|
|
|
1067
2042
|
>
|
|
1068
2043
|
}
|
|
1069
2044
|
'lists': {
|
|
2045
|
+
toggleListItemOff: Behavior_2<
|
|
2046
|
+
| 'focus'
|
|
2047
|
+
| 'select'
|
|
2048
|
+
| 'serialize'
|
|
2049
|
+
| 'copy'
|
|
2050
|
+
| 'serialization.failure'
|
|
2051
|
+
| 'serialization.success'
|
|
2052
|
+
| 'deserialize'
|
|
2053
|
+
| 'deserialization.failure'
|
|
2054
|
+
| 'deserialization.success'
|
|
2055
|
+
| 'annotation.add'
|
|
2056
|
+
| 'annotation.remove'
|
|
2057
|
+
| 'annotation.toggle'
|
|
2058
|
+
| 'blur'
|
|
2059
|
+
| 'data transfer.set'
|
|
2060
|
+
| 'decorator.add'
|
|
2061
|
+
| 'decorator.remove'
|
|
2062
|
+
| 'decorator.toggle'
|
|
2063
|
+
| 'delete.backward'
|
|
2064
|
+
| 'delete.block'
|
|
2065
|
+
| 'delete.forward'
|
|
2066
|
+
| 'delete.text'
|
|
2067
|
+
| 'insert.blocks'
|
|
2068
|
+
| 'insert.block object'
|
|
2069
|
+
| 'insert.inline object'
|
|
2070
|
+
| 'insert.break'
|
|
2071
|
+
| 'insert.soft break'
|
|
2072
|
+
| 'insert.span'
|
|
2073
|
+
| 'insert.text'
|
|
2074
|
+
| 'insert.text block'
|
|
2075
|
+
| 'list item.add'
|
|
2076
|
+
| 'list item.remove'
|
|
2077
|
+
| 'list item.toggle'
|
|
2078
|
+
| 'move.block'
|
|
2079
|
+
| 'move.block down'
|
|
2080
|
+
| 'move.block up'
|
|
2081
|
+
| 'select.previous block'
|
|
2082
|
+
| 'select.next block'
|
|
2083
|
+
| 'style.add'
|
|
2084
|
+
| 'style.remove'
|
|
2085
|
+
| 'style.toggle'
|
|
2086
|
+
| 'text block.set'
|
|
2087
|
+
| 'text block.unset'
|
|
2088
|
+
| 'key.down'
|
|
2089
|
+
| 'key.up'
|
|
2090
|
+
| 'paste'
|
|
2091
|
+
| `custom.${string}`,
|
|
2092
|
+
true,
|
|
2093
|
+
PickFromUnion_2<
|
|
2094
|
+
BehaviorEvent_2,
|
|
2095
|
+
'type',
|
|
2096
|
+
| 'focus'
|
|
2097
|
+
| 'select'
|
|
2098
|
+
| 'serialize'
|
|
2099
|
+
| 'copy'
|
|
2100
|
+
| 'serialization.failure'
|
|
2101
|
+
| 'serialization.success'
|
|
2102
|
+
| 'deserialize'
|
|
2103
|
+
| 'deserialization.failure'
|
|
2104
|
+
| 'deserialization.success'
|
|
2105
|
+
| 'annotation.add'
|
|
2106
|
+
| 'annotation.remove'
|
|
2107
|
+
| 'annotation.toggle'
|
|
2108
|
+
| 'blur'
|
|
2109
|
+
| 'data transfer.set'
|
|
2110
|
+
| 'decorator.add'
|
|
2111
|
+
| 'decorator.remove'
|
|
2112
|
+
| 'decorator.toggle'
|
|
2113
|
+
| 'delete.backward'
|
|
2114
|
+
| 'delete.block'
|
|
2115
|
+
| 'delete.forward'
|
|
2116
|
+
| 'delete.text'
|
|
2117
|
+
| 'insert.blocks'
|
|
2118
|
+
| 'insert.block object'
|
|
2119
|
+
| 'insert.inline object'
|
|
2120
|
+
| 'insert.break'
|
|
2121
|
+
| 'insert.soft break'
|
|
2122
|
+
| 'insert.span'
|
|
2123
|
+
| 'insert.text'
|
|
2124
|
+
| 'insert.text block'
|
|
2125
|
+
| 'list item.add'
|
|
2126
|
+
| 'list item.remove'
|
|
2127
|
+
| 'list item.toggle'
|
|
2128
|
+
| 'move.block'
|
|
2129
|
+
| 'move.block down'
|
|
2130
|
+
| 'move.block up'
|
|
2131
|
+
| 'select.previous block'
|
|
2132
|
+
| 'select.next block'
|
|
2133
|
+
| 'style.add'
|
|
2134
|
+
| 'style.remove'
|
|
2135
|
+
| 'style.toggle'
|
|
2136
|
+
| 'text block.set'
|
|
2137
|
+
| 'text block.unset'
|
|
2138
|
+
| 'key.down'
|
|
2139
|
+
| 'key.up'
|
|
2140
|
+
| 'paste'
|
|
2141
|
+
| `custom.${string}`
|
|
2142
|
+
>
|
|
2143
|
+
>
|
|
2144
|
+
toggleListItemOn: Behavior_2<
|
|
2145
|
+
| 'focus'
|
|
2146
|
+
| 'select'
|
|
2147
|
+
| 'serialize'
|
|
2148
|
+
| 'copy'
|
|
2149
|
+
| 'serialization.failure'
|
|
2150
|
+
| 'serialization.success'
|
|
2151
|
+
| 'deserialize'
|
|
2152
|
+
| 'deserialization.failure'
|
|
2153
|
+
| 'deserialization.success'
|
|
2154
|
+
| 'annotation.add'
|
|
2155
|
+
| 'annotation.remove'
|
|
2156
|
+
| 'annotation.toggle'
|
|
2157
|
+
| 'blur'
|
|
2158
|
+
| 'data transfer.set'
|
|
2159
|
+
| 'decorator.add'
|
|
2160
|
+
| 'decorator.remove'
|
|
2161
|
+
| 'decorator.toggle'
|
|
2162
|
+
| 'delete.backward'
|
|
2163
|
+
| 'delete.block'
|
|
2164
|
+
| 'delete.forward'
|
|
2165
|
+
| 'delete.text'
|
|
2166
|
+
| 'insert.blocks'
|
|
2167
|
+
| 'insert.block object'
|
|
2168
|
+
| 'insert.inline object'
|
|
2169
|
+
| 'insert.break'
|
|
2170
|
+
| 'insert.soft break'
|
|
2171
|
+
| 'insert.span'
|
|
2172
|
+
| 'insert.text'
|
|
2173
|
+
| 'insert.text block'
|
|
2174
|
+
| 'list item.add'
|
|
2175
|
+
| 'list item.remove'
|
|
2176
|
+
| 'list item.toggle'
|
|
2177
|
+
| 'move.block'
|
|
2178
|
+
| 'move.block down'
|
|
2179
|
+
| 'move.block up'
|
|
2180
|
+
| 'select.previous block'
|
|
2181
|
+
| 'select.next block'
|
|
2182
|
+
| 'style.add'
|
|
2183
|
+
| 'style.remove'
|
|
2184
|
+
| 'style.toggle'
|
|
2185
|
+
| 'text block.set'
|
|
2186
|
+
| 'text block.unset'
|
|
2187
|
+
| 'key.down'
|
|
2188
|
+
| 'key.up'
|
|
2189
|
+
| 'paste'
|
|
2190
|
+
| `custom.${string}`,
|
|
2191
|
+
true,
|
|
2192
|
+
PickFromUnion_2<
|
|
2193
|
+
BehaviorEvent_2,
|
|
2194
|
+
'type',
|
|
2195
|
+
| 'focus'
|
|
2196
|
+
| 'select'
|
|
2197
|
+
| 'serialize'
|
|
2198
|
+
| 'copy'
|
|
2199
|
+
| 'serialization.failure'
|
|
2200
|
+
| 'serialization.success'
|
|
2201
|
+
| 'deserialize'
|
|
2202
|
+
| 'deserialization.failure'
|
|
2203
|
+
| 'deserialization.success'
|
|
2204
|
+
| 'annotation.add'
|
|
2205
|
+
| 'annotation.remove'
|
|
2206
|
+
| 'annotation.toggle'
|
|
2207
|
+
| 'blur'
|
|
2208
|
+
| 'data transfer.set'
|
|
2209
|
+
| 'decorator.add'
|
|
2210
|
+
| 'decorator.remove'
|
|
2211
|
+
| 'decorator.toggle'
|
|
2212
|
+
| 'delete.backward'
|
|
2213
|
+
| 'delete.block'
|
|
2214
|
+
| 'delete.forward'
|
|
2215
|
+
| 'delete.text'
|
|
2216
|
+
| 'insert.blocks'
|
|
2217
|
+
| 'insert.block object'
|
|
2218
|
+
| 'insert.inline object'
|
|
2219
|
+
| 'insert.break'
|
|
2220
|
+
| 'insert.soft break'
|
|
2221
|
+
| 'insert.span'
|
|
2222
|
+
| 'insert.text'
|
|
2223
|
+
| 'insert.text block'
|
|
2224
|
+
| 'list item.add'
|
|
2225
|
+
| 'list item.remove'
|
|
2226
|
+
| 'list item.toggle'
|
|
2227
|
+
| 'move.block'
|
|
2228
|
+
| 'move.block down'
|
|
2229
|
+
| 'move.block up'
|
|
2230
|
+
| 'select.previous block'
|
|
2231
|
+
| 'select.next block'
|
|
2232
|
+
| 'style.add'
|
|
2233
|
+
| 'style.remove'
|
|
2234
|
+
| 'style.toggle'
|
|
2235
|
+
| 'text block.set'
|
|
2236
|
+
| 'text block.unset'
|
|
2237
|
+
| 'key.down'
|
|
2238
|
+
| 'key.up'
|
|
2239
|
+
| 'paste'
|
|
2240
|
+
| `custom.${string}`
|
|
2241
|
+
>
|
|
2242
|
+
>
|
|
1070
2243
|
clearListOnBackspace: Behavior_2<
|
|
1071
2244
|
| 'focus'
|
|
1072
2245
|
| 'select'
|
|
@@ -1079,19 +2252,37 @@ export declare const coreBehavior: {
|
|
|
1079
2252
|
| 'deserialization.success'
|
|
1080
2253
|
| 'annotation.add'
|
|
1081
2254
|
| 'annotation.remove'
|
|
2255
|
+
| 'annotation.toggle'
|
|
1082
2256
|
| 'blur'
|
|
1083
2257
|
| 'data transfer.set'
|
|
2258
|
+
| 'decorator.add'
|
|
2259
|
+
| 'decorator.remove'
|
|
1084
2260
|
| 'decorator.toggle'
|
|
1085
2261
|
| 'delete.backward'
|
|
2262
|
+
| 'delete.block'
|
|
1086
2263
|
| 'delete.forward'
|
|
2264
|
+
| 'delete.text'
|
|
1087
2265
|
| 'insert.blocks'
|
|
1088
2266
|
| 'insert.block object'
|
|
1089
2267
|
| 'insert.inline object'
|
|
1090
2268
|
| 'insert.break'
|
|
1091
2269
|
| 'insert.soft break'
|
|
2270
|
+
| 'insert.span'
|
|
1092
2271
|
| 'insert.text'
|
|
2272
|
+
| 'insert.text block'
|
|
2273
|
+
| 'list item.add'
|
|
2274
|
+
| 'list item.remove'
|
|
1093
2275
|
| 'list item.toggle'
|
|
2276
|
+
| 'move.block'
|
|
2277
|
+
| 'move.block down'
|
|
2278
|
+
| 'move.block up'
|
|
2279
|
+
| 'select.previous block'
|
|
2280
|
+
| 'select.next block'
|
|
2281
|
+
| 'style.add'
|
|
2282
|
+
| 'style.remove'
|
|
1094
2283
|
| 'style.toggle'
|
|
2284
|
+
| 'text block.set'
|
|
2285
|
+
| 'text block.unset'
|
|
1095
2286
|
| 'key.down'
|
|
1096
2287
|
| 'key.up'
|
|
1097
2288
|
| 'paste'
|
|
@@ -1111,19 +2302,37 @@ export declare const coreBehavior: {
|
|
|
1111
2302
|
| 'deserialization.success'
|
|
1112
2303
|
| 'annotation.add'
|
|
1113
2304
|
| 'annotation.remove'
|
|
2305
|
+
| 'annotation.toggle'
|
|
1114
2306
|
| 'blur'
|
|
1115
2307
|
| 'data transfer.set'
|
|
2308
|
+
| 'decorator.add'
|
|
2309
|
+
| 'decorator.remove'
|
|
1116
2310
|
| 'decorator.toggle'
|
|
1117
2311
|
| 'delete.backward'
|
|
2312
|
+
| 'delete.block'
|
|
1118
2313
|
| 'delete.forward'
|
|
2314
|
+
| 'delete.text'
|
|
1119
2315
|
| 'insert.blocks'
|
|
1120
2316
|
| 'insert.block object'
|
|
1121
2317
|
| 'insert.inline object'
|
|
1122
2318
|
| 'insert.break'
|
|
1123
2319
|
| 'insert.soft break'
|
|
2320
|
+
| 'insert.span'
|
|
1124
2321
|
| 'insert.text'
|
|
2322
|
+
| 'insert.text block'
|
|
2323
|
+
| 'list item.add'
|
|
2324
|
+
| 'list item.remove'
|
|
1125
2325
|
| 'list item.toggle'
|
|
2326
|
+
| 'move.block'
|
|
2327
|
+
| 'move.block down'
|
|
2328
|
+
| 'move.block up'
|
|
2329
|
+
| 'select.previous block'
|
|
2330
|
+
| 'select.next block'
|
|
2331
|
+
| 'style.add'
|
|
2332
|
+
| 'style.remove'
|
|
1126
2333
|
| 'style.toggle'
|
|
2334
|
+
| 'text block.set'
|
|
2335
|
+
| 'text block.unset'
|
|
1127
2336
|
| 'key.down'
|
|
1128
2337
|
| 'key.up'
|
|
1129
2338
|
| 'paste'
|
|
@@ -1142,19 +2351,37 @@ export declare const coreBehavior: {
|
|
|
1142
2351
|
| 'deserialization.success'
|
|
1143
2352
|
| 'annotation.add'
|
|
1144
2353
|
| 'annotation.remove'
|
|
2354
|
+
| 'annotation.toggle'
|
|
1145
2355
|
| 'blur'
|
|
1146
2356
|
| 'data transfer.set'
|
|
2357
|
+
| 'decorator.add'
|
|
2358
|
+
| 'decorator.remove'
|
|
1147
2359
|
| 'decorator.toggle'
|
|
1148
2360
|
| 'delete.backward'
|
|
2361
|
+
| 'delete.block'
|
|
1149
2362
|
| 'delete.forward'
|
|
2363
|
+
| 'delete.text'
|
|
1150
2364
|
| 'insert.blocks'
|
|
1151
2365
|
| 'insert.block object'
|
|
1152
2366
|
| 'insert.inline object'
|
|
1153
2367
|
| 'insert.break'
|
|
1154
2368
|
| 'insert.soft break'
|
|
2369
|
+
| 'insert.span'
|
|
1155
2370
|
| 'insert.text'
|
|
2371
|
+
| 'insert.text block'
|
|
2372
|
+
| 'list item.add'
|
|
2373
|
+
| 'list item.remove'
|
|
1156
2374
|
| 'list item.toggle'
|
|
2375
|
+
| 'move.block'
|
|
2376
|
+
| 'move.block down'
|
|
2377
|
+
| 'move.block up'
|
|
2378
|
+
| 'select.previous block'
|
|
2379
|
+
| 'select.next block'
|
|
2380
|
+
| 'style.add'
|
|
2381
|
+
| 'style.remove'
|
|
1157
2382
|
| 'style.toggle'
|
|
2383
|
+
| 'text block.set'
|
|
2384
|
+
| 'text block.unset'
|
|
1158
2385
|
| 'key.down'
|
|
1159
2386
|
| 'key.up'
|
|
1160
2387
|
| 'paste'
|
|
@@ -1174,19 +2401,37 @@ export declare const coreBehavior: {
|
|
|
1174
2401
|
| 'deserialization.success'
|
|
1175
2402
|
| 'annotation.add'
|
|
1176
2403
|
| 'annotation.remove'
|
|
2404
|
+
| 'annotation.toggle'
|
|
1177
2405
|
| 'blur'
|
|
1178
2406
|
| 'data transfer.set'
|
|
2407
|
+
| 'decorator.add'
|
|
2408
|
+
| 'decorator.remove'
|
|
1179
2409
|
| 'decorator.toggle'
|
|
1180
2410
|
| 'delete.backward'
|
|
2411
|
+
| 'delete.block'
|
|
1181
2412
|
| 'delete.forward'
|
|
2413
|
+
| 'delete.text'
|
|
1182
2414
|
| 'insert.blocks'
|
|
1183
2415
|
| 'insert.block object'
|
|
1184
2416
|
| 'insert.inline object'
|
|
1185
2417
|
| 'insert.break'
|
|
1186
2418
|
| 'insert.soft break'
|
|
2419
|
+
| 'insert.span'
|
|
1187
2420
|
| 'insert.text'
|
|
2421
|
+
| 'insert.text block'
|
|
2422
|
+
| 'list item.add'
|
|
2423
|
+
| 'list item.remove'
|
|
1188
2424
|
| 'list item.toggle'
|
|
2425
|
+
| 'move.block'
|
|
2426
|
+
| 'move.block down'
|
|
2427
|
+
| 'move.block up'
|
|
2428
|
+
| 'select.previous block'
|
|
2429
|
+
| 'select.next block'
|
|
2430
|
+
| 'style.add'
|
|
2431
|
+
| 'style.remove'
|
|
1189
2432
|
| 'style.toggle'
|
|
2433
|
+
| 'text block.set'
|
|
2434
|
+
| 'text block.unset'
|
|
1190
2435
|
| 'key.down'
|
|
1191
2436
|
| 'key.up'
|
|
1192
2437
|
| 'paste'
|
|
@@ -1205,19 +2450,37 @@ export declare const coreBehavior: {
|
|
|
1205
2450
|
| 'deserialization.success'
|
|
1206
2451
|
| 'annotation.add'
|
|
1207
2452
|
| 'annotation.remove'
|
|
2453
|
+
| 'annotation.toggle'
|
|
1208
2454
|
| 'blur'
|
|
1209
2455
|
| 'data transfer.set'
|
|
2456
|
+
| 'decorator.add'
|
|
2457
|
+
| 'decorator.remove'
|
|
1210
2458
|
| 'decorator.toggle'
|
|
1211
2459
|
| 'delete.backward'
|
|
2460
|
+
| 'delete.block'
|
|
1212
2461
|
| 'delete.forward'
|
|
2462
|
+
| 'delete.text'
|
|
1213
2463
|
| 'insert.blocks'
|
|
1214
2464
|
| 'insert.block object'
|
|
1215
2465
|
| 'insert.inline object'
|
|
1216
2466
|
| 'insert.break'
|
|
1217
2467
|
| 'insert.soft break'
|
|
2468
|
+
| 'insert.span'
|
|
1218
2469
|
| 'insert.text'
|
|
2470
|
+
| 'insert.text block'
|
|
2471
|
+
| 'list item.add'
|
|
2472
|
+
| 'list item.remove'
|
|
1219
2473
|
| 'list item.toggle'
|
|
2474
|
+
| 'move.block'
|
|
2475
|
+
| 'move.block down'
|
|
2476
|
+
| 'move.block up'
|
|
2477
|
+
| 'select.previous block'
|
|
2478
|
+
| 'select.next block'
|
|
2479
|
+
| 'style.add'
|
|
2480
|
+
| 'style.remove'
|
|
1220
2481
|
| 'style.toggle'
|
|
2482
|
+
| 'text block.set'
|
|
2483
|
+
| 'text block.unset'
|
|
1221
2484
|
| 'key.down'
|
|
1222
2485
|
| 'key.up'
|
|
1223
2486
|
| 'paste'
|
|
@@ -1237,19 +2500,37 @@ export declare const coreBehavior: {
|
|
|
1237
2500
|
| 'deserialization.success'
|
|
1238
2501
|
| 'annotation.add'
|
|
1239
2502
|
| 'annotation.remove'
|
|
2503
|
+
| 'annotation.toggle'
|
|
1240
2504
|
| 'blur'
|
|
1241
2505
|
| 'data transfer.set'
|
|
2506
|
+
| 'decorator.add'
|
|
2507
|
+
| 'decorator.remove'
|
|
1242
2508
|
| 'decorator.toggle'
|
|
1243
2509
|
| 'delete.backward'
|
|
2510
|
+
| 'delete.block'
|
|
1244
2511
|
| 'delete.forward'
|
|
2512
|
+
| 'delete.text'
|
|
1245
2513
|
| 'insert.blocks'
|
|
1246
2514
|
| 'insert.block object'
|
|
1247
2515
|
| 'insert.inline object'
|
|
1248
2516
|
| 'insert.break'
|
|
1249
2517
|
| 'insert.soft break'
|
|
2518
|
+
| 'insert.span'
|
|
1250
2519
|
| 'insert.text'
|
|
2520
|
+
| 'insert.text block'
|
|
2521
|
+
| 'list item.add'
|
|
2522
|
+
| 'list item.remove'
|
|
1251
2523
|
| 'list item.toggle'
|
|
2524
|
+
| 'move.block'
|
|
2525
|
+
| 'move.block down'
|
|
2526
|
+
| 'move.block up'
|
|
2527
|
+
| 'select.previous block'
|
|
2528
|
+
| 'select.next block'
|
|
2529
|
+
| 'style.add'
|
|
2530
|
+
| 'style.remove'
|
|
1252
2531
|
| 'style.toggle'
|
|
2532
|
+
| 'text block.set'
|
|
2533
|
+
| 'text block.unset'
|
|
1253
2534
|
| 'key.down'
|
|
1254
2535
|
| 'key.up'
|
|
1255
2536
|
| 'paste'
|
|
@@ -1268,19 +2549,37 @@ export declare const coreBehavior: {
|
|
|
1268
2549
|
| 'deserialization.success'
|
|
1269
2550
|
| 'annotation.add'
|
|
1270
2551
|
| 'annotation.remove'
|
|
2552
|
+
| 'annotation.toggle'
|
|
1271
2553
|
| 'blur'
|
|
1272
2554
|
| 'data transfer.set'
|
|
2555
|
+
| 'decorator.add'
|
|
2556
|
+
| 'decorator.remove'
|
|
1273
2557
|
| 'decorator.toggle'
|
|
1274
2558
|
| 'delete.backward'
|
|
2559
|
+
| 'delete.block'
|
|
1275
2560
|
| 'delete.forward'
|
|
2561
|
+
| 'delete.text'
|
|
1276
2562
|
| 'insert.blocks'
|
|
1277
2563
|
| 'insert.block object'
|
|
1278
2564
|
| 'insert.inline object'
|
|
1279
2565
|
| 'insert.break'
|
|
1280
2566
|
| 'insert.soft break'
|
|
2567
|
+
| 'insert.span'
|
|
1281
2568
|
| 'insert.text'
|
|
2569
|
+
| 'insert.text block'
|
|
2570
|
+
| 'list item.add'
|
|
2571
|
+
| 'list item.remove'
|
|
1282
2572
|
| 'list item.toggle'
|
|
2573
|
+
| 'move.block'
|
|
2574
|
+
| 'move.block down'
|
|
2575
|
+
| 'move.block up'
|
|
2576
|
+
| 'select.previous block'
|
|
2577
|
+
| 'select.next block'
|
|
2578
|
+
| 'style.add'
|
|
2579
|
+
| 'style.remove'
|
|
1283
2580
|
| 'style.toggle'
|
|
2581
|
+
| 'text block.set'
|
|
2582
|
+
| 'text block.unset'
|
|
1284
2583
|
| 'key.down'
|
|
1285
2584
|
| 'key.up'
|
|
1286
2585
|
| 'paste'
|
|
@@ -1300,19 +2599,37 @@ export declare const coreBehavior: {
|
|
|
1300
2599
|
| 'deserialization.success'
|
|
1301
2600
|
| 'annotation.add'
|
|
1302
2601
|
| 'annotation.remove'
|
|
2602
|
+
| 'annotation.toggle'
|
|
1303
2603
|
| 'blur'
|
|
1304
2604
|
| 'data transfer.set'
|
|
2605
|
+
| 'decorator.add'
|
|
2606
|
+
| 'decorator.remove'
|
|
1305
2607
|
| 'decorator.toggle'
|
|
1306
2608
|
| 'delete.backward'
|
|
2609
|
+
| 'delete.block'
|
|
1307
2610
|
| 'delete.forward'
|
|
2611
|
+
| 'delete.text'
|
|
1308
2612
|
| 'insert.blocks'
|
|
1309
2613
|
| 'insert.block object'
|
|
1310
2614
|
| 'insert.inline object'
|
|
1311
2615
|
| 'insert.break'
|
|
1312
2616
|
| 'insert.soft break'
|
|
2617
|
+
| 'insert.span'
|
|
1313
2618
|
| 'insert.text'
|
|
2619
|
+
| 'insert.text block'
|
|
2620
|
+
| 'list item.add'
|
|
2621
|
+
| 'list item.remove'
|
|
1314
2622
|
| 'list item.toggle'
|
|
2623
|
+
| 'move.block'
|
|
2624
|
+
| 'move.block down'
|
|
2625
|
+
| 'move.block up'
|
|
2626
|
+
| 'select.previous block'
|
|
2627
|
+
| 'select.next block'
|
|
2628
|
+
| 'style.add'
|
|
2629
|
+
| 'style.remove'
|
|
1315
2630
|
| 'style.toggle'
|
|
2631
|
+
| 'text block.set'
|
|
2632
|
+
| 'text block.unset'
|
|
1316
2633
|
| 'key.down'
|
|
1317
2634
|
| 'key.up'
|
|
1318
2635
|
| 'paste'
|
|
@@ -1331,19 +2648,37 @@ export declare const coreBehavior: {
|
|
|
1331
2648
|
| 'deserialization.success'
|
|
1332
2649
|
| 'annotation.add'
|
|
1333
2650
|
| 'annotation.remove'
|
|
2651
|
+
| 'annotation.toggle'
|
|
1334
2652
|
| 'blur'
|
|
1335
2653
|
| 'data transfer.set'
|
|
2654
|
+
| 'decorator.add'
|
|
2655
|
+
| 'decorator.remove'
|
|
1336
2656
|
| 'decorator.toggle'
|
|
1337
2657
|
| 'delete.backward'
|
|
2658
|
+
| 'delete.block'
|
|
1338
2659
|
| 'delete.forward'
|
|
2660
|
+
| 'delete.text'
|
|
1339
2661
|
| 'insert.blocks'
|
|
1340
2662
|
| 'insert.block object'
|
|
1341
2663
|
| 'insert.inline object'
|
|
1342
2664
|
| 'insert.break'
|
|
1343
2665
|
| 'insert.soft break'
|
|
2666
|
+
| 'insert.span'
|
|
1344
2667
|
| 'insert.text'
|
|
2668
|
+
| 'insert.text block'
|
|
2669
|
+
| 'list item.add'
|
|
2670
|
+
| 'list item.remove'
|
|
1345
2671
|
| 'list item.toggle'
|
|
2672
|
+
| 'move.block'
|
|
2673
|
+
| 'move.block down'
|
|
2674
|
+
| 'move.block up'
|
|
2675
|
+
| 'select.previous block'
|
|
2676
|
+
| 'select.next block'
|
|
2677
|
+
| 'style.add'
|
|
2678
|
+
| 'style.remove'
|
|
1346
2679
|
| 'style.toggle'
|
|
2680
|
+
| 'text block.set'
|
|
2681
|
+
| 'text block.unset'
|
|
1347
2682
|
| 'key.down'
|
|
1348
2683
|
| 'key.up'
|
|
1349
2684
|
| 'paste'
|
|
@@ -1363,19 +2698,37 @@ export declare const coreBehavior: {
|
|
|
1363
2698
|
| 'deserialization.success'
|
|
1364
2699
|
| 'annotation.add'
|
|
1365
2700
|
| 'annotation.remove'
|
|
2701
|
+
| 'annotation.toggle'
|
|
1366
2702
|
| 'blur'
|
|
1367
2703
|
| 'data transfer.set'
|
|
2704
|
+
| 'decorator.add'
|
|
2705
|
+
| 'decorator.remove'
|
|
1368
2706
|
| 'decorator.toggle'
|
|
1369
2707
|
| 'delete.backward'
|
|
2708
|
+
| 'delete.block'
|
|
1370
2709
|
| 'delete.forward'
|
|
2710
|
+
| 'delete.text'
|
|
1371
2711
|
| 'insert.blocks'
|
|
1372
2712
|
| 'insert.block object'
|
|
1373
2713
|
| 'insert.inline object'
|
|
1374
2714
|
| 'insert.break'
|
|
1375
2715
|
| 'insert.soft break'
|
|
2716
|
+
| 'insert.span'
|
|
1376
2717
|
| 'insert.text'
|
|
2718
|
+
| 'insert.text block'
|
|
2719
|
+
| 'list item.add'
|
|
2720
|
+
| 'list item.remove'
|
|
1377
2721
|
| 'list item.toggle'
|
|
2722
|
+
| 'move.block'
|
|
2723
|
+
| 'move.block down'
|
|
2724
|
+
| 'move.block up'
|
|
2725
|
+
| 'select.previous block'
|
|
2726
|
+
| 'select.next block'
|
|
2727
|
+
| 'style.add'
|
|
2728
|
+
| 'style.remove'
|
|
1378
2729
|
| 'style.toggle'
|
|
2730
|
+
| 'text block.set'
|
|
2731
|
+
| 'text block.unset'
|
|
1379
2732
|
| 'key.down'
|
|
1380
2733
|
| 'key.up'
|
|
1381
2734
|
| 'paste'
|
|
@@ -1400,19 +2753,37 @@ export declare const coreBehaviors: Behavior_2<
|
|
|
1400
2753
|
| 'deserialization.success'
|
|
1401
2754
|
| 'annotation.add'
|
|
1402
2755
|
| 'annotation.remove'
|
|
2756
|
+
| 'annotation.toggle'
|
|
1403
2757
|
| 'blur'
|
|
1404
2758
|
| 'data transfer.set'
|
|
2759
|
+
| 'decorator.add'
|
|
2760
|
+
| 'decorator.remove'
|
|
1405
2761
|
| 'decorator.toggle'
|
|
1406
2762
|
| 'delete.backward'
|
|
2763
|
+
| 'delete.block'
|
|
1407
2764
|
| 'delete.forward'
|
|
2765
|
+
| 'delete.text'
|
|
1408
2766
|
| 'insert.blocks'
|
|
1409
2767
|
| 'insert.block object'
|
|
1410
2768
|
| 'insert.inline object'
|
|
1411
2769
|
| 'insert.break'
|
|
1412
2770
|
| 'insert.soft break'
|
|
2771
|
+
| 'insert.span'
|
|
1413
2772
|
| 'insert.text'
|
|
2773
|
+
| 'insert.text block'
|
|
2774
|
+
| 'list item.add'
|
|
2775
|
+
| 'list item.remove'
|
|
1414
2776
|
| 'list item.toggle'
|
|
2777
|
+
| 'move.block'
|
|
2778
|
+
| 'move.block down'
|
|
2779
|
+
| 'move.block up'
|
|
2780
|
+
| 'select.previous block'
|
|
2781
|
+
| 'select.next block'
|
|
2782
|
+
| 'style.add'
|
|
2783
|
+
| 'style.remove'
|
|
1415
2784
|
| 'style.toggle'
|
|
2785
|
+
| 'text block.set'
|
|
2786
|
+
| 'text block.unset'
|
|
1416
2787
|
| 'key.down'
|
|
1417
2788
|
| 'key.up'
|
|
1418
2789
|
| 'paste'
|
|
@@ -1432,19 +2803,37 @@ export declare const coreBehaviors: Behavior_2<
|
|
|
1432
2803
|
| 'deserialization.success'
|
|
1433
2804
|
| 'annotation.add'
|
|
1434
2805
|
| 'annotation.remove'
|
|
2806
|
+
| 'annotation.toggle'
|
|
1435
2807
|
| 'blur'
|
|
1436
2808
|
| 'data transfer.set'
|
|
2809
|
+
| 'decorator.add'
|
|
2810
|
+
| 'decorator.remove'
|
|
1437
2811
|
| 'decorator.toggle'
|
|
1438
2812
|
| 'delete.backward'
|
|
2813
|
+
| 'delete.block'
|
|
1439
2814
|
| 'delete.forward'
|
|
2815
|
+
| 'delete.text'
|
|
1440
2816
|
| 'insert.blocks'
|
|
1441
2817
|
| 'insert.block object'
|
|
1442
2818
|
| 'insert.inline object'
|
|
1443
2819
|
| 'insert.break'
|
|
1444
2820
|
| 'insert.soft break'
|
|
2821
|
+
| 'insert.span'
|
|
1445
2822
|
| 'insert.text'
|
|
2823
|
+
| 'insert.text block'
|
|
2824
|
+
| 'list item.add'
|
|
2825
|
+
| 'list item.remove'
|
|
1446
2826
|
| 'list item.toggle'
|
|
2827
|
+
| 'move.block'
|
|
2828
|
+
| 'move.block down'
|
|
2829
|
+
| 'move.block up'
|
|
2830
|
+
| 'select.previous block'
|
|
2831
|
+
| 'select.next block'
|
|
2832
|
+
| 'style.add'
|
|
2833
|
+
| 'style.remove'
|
|
1447
2834
|
| 'style.toggle'
|
|
2835
|
+
| 'text block.set'
|
|
2836
|
+
| 'text block.unset'
|
|
1448
2837
|
| 'key.down'
|
|
1449
2838
|
| 'key.up'
|
|
1450
2839
|
| 'paste'
|
|
@@ -1469,19 +2858,37 @@ export declare function createCodeEditorBehaviors(
|
|
|
1469
2858
|
| 'deserialization.success'
|
|
1470
2859
|
| 'annotation.add'
|
|
1471
2860
|
| 'annotation.remove'
|
|
2861
|
+
| 'annotation.toggle'
|
|
1472
2862
|
| 'blur'
|
|
1473
2863
|
| 'data transfer.set'
|
|
2864
|
+
| 'decorator.add'
|
|
2865
|
+
| 'decorator.remove'
|
|
1474
2866
|
| 'decorator.toggle'
|
|
1475
2867
|
| 'delete.backward'
|
|
2868
|
+
| 'delete.block'
|
|
1476
2869
|
| 'delete.forward'
|
|
2870
|
+
| 'delete.text'
|
|
1477
2871
|
| 'insert.blocks'
|
|
1478
2872
|
| 'insert.block object'
|
|
1479
2873
|
| 'insert.inline object'
|
|
1480
2874
|
| 'insert.break'
|
|
1481
2875
|
| 'insert.soft break'
|
|
2876
|
+
| 'insert.span'
|
|
1482
2877
|
| 'insert.text'
|
|
2878
|
+
| 'insert.text block'
|
|
2879
|
+
| 'list item.add'
|
|
2880
|
+
| 'list item.remove'
|
|
1483
2881
|
| 'list item.toggle'
|
|
2882
|
+
| 'move.block'
|
|
2883
|
+
| 'move.block down'
|
|
2884
|
+
| 'move.block up'
|
|
2885
|
+
| 'select.previous block'
|
|
2886
|
+
| 'select.next block'
|
|
2887
|
+
| 'style.add'
|
|
2888
|
+
| 'style.remove'
|
|
1484
2889
|
| 'style.toggle'
|
|
2890
|
+
| 'text block.set'
|
|
2891
|
+
| 'text block.unset'
|
|
1485
2892
|
| 'key.down'
|
|
1486
2893
|
| 'key.up'
|
|
1487
2894
|
| 'paste'
|
|
@@ -1501,19 +2908,37 @@ export declare function createCodeEditorBehaviors(
|
|
|
1501
2908
|
| 'deserialization.success'
|
|
1502
2909
|
| 'annotation.add'
|
|
1503
2910
|
| 'annotation.remove'
|
|
2911
|
+
| 'annotation.toggle'
|
|
1504
2912
|
| 'blur'
|
|
1505
2913
|
| 'data transfer.set'
|
|
2914
|
+
| 'decorator.add'
|
|
2915
|
+
| 'decorator.remove'
|
|
1506
2916
|
| 'decorator.toggle'
|
|
1507
2917
|
| 'delete.backward'
|
|
2918
|
+
| 'delete.block'
|
|
1508
2919
|
| 'delete.forward'
|
|
2920
|
+
| 'delete.text'
|
|
1509
2921
|
| 'insert.blocks'
|
|
1510
2922
|
| 'insert.block object'
|
|
1511
2923
|
| 'insert.inline object'
|
|
1512
2924
|
| 'insert.break'
|
|
1513
2925
|
| 'insert.soft break'
|
|
2926
|
+
| 'insert.span'
|
|
1514
2927
|
| 'insert.text'
|
|
2928
|
+
| 'insert.text block'
|
|
2929
|
+
| 'list item.add'
|
|
2930
|
+
| 'list item.remove'
|
|
1515
2931
|
| 'list item.toggle'
|
|
2932
|
+
| 'move.block'
|
|
2933
|
+
| 'move.block down'
|
|
2934
|
+
| 'move.block up'
|
|
2935
|
+
| 'select.previous block'
|
|
2936
|
+
| 'select.next block'
|
|
2937
|
+
| 'style.add'
|
|
2938
|
+
| 'style.remove'
|
|
1516
2939
|
| 'style.toggle'
|
|
2940
|
+
| 'text block.set'
|
|
2941
|
+
| 'text block.unset'
|
|
1517
2942
|
| 'key.down'
|
|
1518
2943
|
| 'key.up'
|
|
1519
2944
|
| 'paste'
|
|
@@ -1538,19 +2963,37 @@ export declare function createEmojiPickerBehaviors<TEmojiMatch>(
|
|
|
1538
2963
|
| 'deserialization.success'
|
|
1539
2964
|
| 'annotation.add'
|
|
1540
2965
|
| 'annotation.remove'
|
|
2966
|
+
| 'annotation.toggle'
|
|
1541
2967
|
| 'blur'
|
|
1542
2968
|
| 'data transfer.set'
|
|
2969
|
+
| 'decorator.add'
|
|
2970
|
+
| 'decorator.remove'
|
|
1543
2971
|
| 'decorator.toggle'
|
|
1544
2972
|
| 'delete.backward'
|
|
2973
|
+
| 'delete.block'
|
|
1545
2974
|
| 'delete.forward'
|
|
2975
|
+
| 'delete.text'
|
|
1546
2976
|
| 'insert.blocks'
|
|
1547
2977
|
| 'insert.block object'
|
|
1548
2978
|
| 'insert.inline object'
|
|
1549
2979
|
| 'insert.break'
|
|
1550
2980
|
| 'insert.soft break'
|
|
2981
|
+
| 'insert.span'
|
|
1551
2982
|
| 'insert.text'
|
|
2983
|
+
| 'insert.text block'
|
|
2984
|
+
| 'list item.add'
|
|
2985
|
+
| 'list item.remove'
|
|
1552
2986
|
| 'list item.toggle'
|
|
2987
|
+
| 'move.block'
|
|
2988
|
+
| 'move.block down'
|
|
2989
|
+
| 'move.block up'
|
|
2990
|
+
| 'select.previous block'
|
|
2991
|
+
| 'select.next block'
|
|
2992
|
+
| 'style.add'
|
|
2993
|
+
| 'style.remove'
|
|
1553
2994
|
| 'style.toggle'
|
|
2995
|
+
| 'text block.set'
|
|
2996
|
+
| 'text block.unset'
|
|
1554
2997
|
| 'key.down'
|
|
1555
2998
|
| 'key.up'
|
|
1556
2999
|
| 'paste'
|
|
@@ -1570,19 +3013,37 @@ export declare function createEmojiPickerBehaviors<TEmojiMatch>(
|
|
|
1570
3013
|
| 'deserialization.success'
|
|
1571
3014
|
| 'annotation.add'
|
|
1572
3015
|
| 'annotation.remove'
|
|
3016
|
+
| 'annotation.toggle'
|
|
1573
3017
|
| 'blur'
|
|
1574
3018
|
| 'data transfer.set'
|
|
3019
|
+
| 'decorator.add'
|
|
3020
|
+
| 'decorator.remove'
|
|
1575
3021
|
| 'decorator.toggle'
|
|
1576
3022
|
| 'delete.backward'
|
|
3023
|
+
| 'delete.block'
|
|
1577
3024
|
| 'delete.forward'
|
|
3025
|
+
| 'delete.text'
|
|
1578
3026
|
| 'insert.blocks'
|
|
1579
3027
|
| 'insert.block object'
|
|
1580
3028
|
| 'insert.inline object'
|
|
1581
3029
|
| 'insert.break'
|
|
1582
3030
|
| 'insert.soft break'
|
|
3031
|
+
| 'insert.span'
|
|
1583
3032
|
| 'insert.text'
|
|
3033
|
+
| 'insert.text block'
|
|
3034
|
+
| 'list item.add'
|
|
3035
|
+
| 'list item.remove'
|
|
1584
3036
|
| 'list item.toggle'
|
|
3037
|
+
| 'move.block'
|
|
3038
|
+
| 'move.block down'
|
|
3039
|
+
| 'move.block up'
|
|
3040
|
+
| 'select.previous block'
|
|
3041
|
+
| 'select.next block'
|
|
3042
|
+
| 'style.add'
|
|
3043
|
+
| 'style.remove'
|
|
1585
3044
|
| 'style.toggle'
|
|
3045
|
+
| 'text block.set'
|
|
3046
|
+
| 'text block.unset'
|
|
1586
3047
|
| 'key.down'
|
|
1587
3048
|
| 'key.up'
|
|
1588
3049
|
| 'paste'
|
|
@@ -1607,19 +3068,37 @@ export declare function createLinkBehaviors(
|
|
|
1607
3068
|
| 'deserialization.success'
|
|
1608
3069
|
| 'annotation.add'
|
|
1609
3070
|
| 'annotation.remove'
|
|
3071
|
+
| 'annotation.toggle'
|
|
1610
3072
|
| 'blur'
|
|
1611
3073
|
| 'data transfer.set'
|
|
3074
|
+
| 'decorator.add'
|
|
3075
|
+
| 'decorator.remove'
|
|
1612
3076
|
| 'decorator.toggle'
|
|
1613
3077
|
| 'delete.backward'
|
|
3078
|
+
| 'delete.block'
|
|
1614
3079
|
| 'delete.forward'
|
|
3080
|
+
| 'delete.text'
|
|
1615
3081
|
| 'insert.blocks'
|
|
1616
3082
|
| 'insert.block object'
|
|
1617
3083
|
| 'insert.inline object'
|
|
1618
3084
|
| 'insert.break'
|
|
1619
3085
|
| 'insert.soft break'
|
|
3086
|
+
| 'insert.span'
|
|
1620
3087
|
| 'insert.text'
|
|
3088
|
+
| 'insert.text block'
|
|
3089
|
+
| 'list item.add'
|
|
3090
|
+
| 'list item.remove'
|
|
1621
3091
|
| 'list item.toggle'
|
|
3092
|
+
| 'move.block'
|
|
3093
|
+
| 'move.block down'
|
|
3094
|
+
| 'move.block up'
|
|
3095
|
+
| 'select.previous block'
|
|
3096
|
+
| 'select.next block'
|
|
3097
|
+
| 'style.add'
|
|
3098
|
+
| 'style.remove'
|
|
1622
3099
|
| 'style.toggle'
|
|
3100
|
+
| 'text block.set'
|
|
3101
|
+
| 'text block.unset'
|
|
1623
3102
|
| 'key.down'
|
|
1624
3103
|
| 'key.up'
|
|
1625
3104
|
| 'paste'
|
|
@@ -1639,19 +3118,37 @@ export declare function createLinkBehaviors(
|
|
|
1639
3118
|
| 'deserialization.success'
|
|
1640
3119
|
| 'annotation.add'
|
|
1641
3120
|
| 'annotation.remove'
|
|
3121
|
+
| 'annotation.toggle'
|
|
1642
3122
|
| 'blur'
|
|
1643
3123
|
| 'data transfer.set'
|
|
3124
|
+
| 'decorator.add'
|
|
3125
|
+
| 'decorator.remove'
|
|
1644
3126
|
| 'decorator.toggle'
|
|
1645
3127
|
| 'delete.backward'
|
|
3128
|
+
| 'delete.block'
|
|
1646
3129
|
| 'delete.forward'
|
|
3130
|
+
| 'delete.text'
|
|
1647
3131
|
| 'insert.blocks'
|
|
1648
3132
|
| 'insert.block object'
|
|
1649
3133
|
| 'insert.inline object'
|
|
1650
3134
|
| 'insert.break'
|
|
1651
3135
|
| 'insert.soft break'
|
|
3136
|
+
| 'insert.span'
|
|
1652
3137
|
| 'insert.text'
|
|
3138
|
+
| 'insert.text block'
|
|
3139
|
+
| 'list item.add'
|
|
3140
|
+
| 'list item.remove'
|
|
1653
3141
|
| 'list item.toggle'
|
|
3142
|
+
| 'move.block'
|
|
3143
|
+
| 'move.block down'
|
|
3144
|
+
| 'move.block up'
|
|
3145
|
+
| 'select.previous block'
|
|
3146
|
+
| 'select.next block'
|
|
3147
|
+
| 'style.add'
|
|
3148
|
+
| 'style.remove'
|
|
1654
3149
|
| 'style.toggle'
|
|
3150
|
+
| 'text block.set'
|
|
3151
|
+
| 'text block.unset'
|
|
1655
3152
|
| 'key.down'
|
|
1656
3153
|
| 'key.up'
|
|
1657
3154
|
| 'paste'
|
|
@@ -1718,19 +3215,37 @@ export declare function createMarkdownBehaviors(
|
|
|
1718
3215
|
| 'deserialization.success'
|
|
1719
3216
|
| 'annotation.add'
|
|
1720
3217
|
| 'annotation.remove'
|
|
3218
|
+
| 'annotation.toggle'
|
|
1721
3219
|
| 'blur'
|
|
1722
3220
|
| 'data transfer.set'
|
|
3221
|
+
| 'decorator.add'
|
|
3222
|
+
| 'decorator.remove'
|
|
1723
3223
|
| 'decorator.toggle'
|
|
1724
3224
|
| 'delete.backward'
|
|
3225
|
+
| 'delete.block'
|
|
1725
3226
|
| 'delete.forward'
|
|
3227
|
+
| 'delete.text'
|
|
1726
3228
|
| 'insert.blocks'
|
|
1727
3229
|
| 'insert.block object'
|
|
1728
3230
|
| 'insert.inline object'
|
|
1729
3231
|
| 'insert.break'
|
|
1730
3232
|
| 'insert.soft break'
|
|
3233
|
+
| 'insert.span'
|
|
1731
3234
|
| 'insert.text'
|
|
3235
|
+
| 'insert.text block'
|
|
3236
|
+
| 'list item.add'
|
|
3237
|
+
| 'list item.remove'
|
|
1732
3238
|
| 'list item.toggle'
|
|
3239
|
+
| 'move.block'
|
|
3240
|
+
| 'move.block down'
|
|
3241
|
+
| 'move.block up'
|
|
3242
|
+
| 'select.previous block'
|
|
3243
|
+
| 'select.next block'
|
|
3244
|
+
| 'style.add'
|
|
3245
|
+
| 'style.remove'
|
|
1733
3246
|
| 'style.toggle'
|
|
3247
|
+
| 'text block.set'
|
|
3248
|
+
| 'text block.unset'
|
|
1734
3249
|
| 'key.down'
|
|
1735
3250
|
| 'key.up'
|
|
1736
3251
|
| 'paste'
|
|
@@ -1750,19 +3265,37 @@ export declare function createMarkdownBehaviors(
|
|
|
1750
3265
|
| 'deserialization.success'
|
|
1751
3266
|
| 'annotation.add'
|
|
1752
3267
|
| 'annotation.remove'
|
|
3268
|
+
| 'annotation.toggle'
|
|
1753
3269
|
| 'blur'
|
|
1754
3270
|
| 'data transfer.set'
|
|
3271
|
+
| 'decorator.add'
|
|
3272
|
+
| 'decorator.remove'
|
|
1755
3273
|
| 'decorator.toggle'
|
|
1756
3274
|
| 'delete.backward'
|
|
3275
|
+
| 'delete.block'
|
|
1757
3276
|
| 'delete.forward'
|
|
3277
|
+
| 'delete.text'
|
|
1758
3278
|
| 'insert.blocks'
|
|
1759
3279
|
| 'insert.block object'
|
|
1760
3280
|
| 'insert.inline object'
|
|
1761
3281
|
| 'insert.break'
|
|
1762
3282
|
| 'insert.soft break'
|
|
3283
|
+
| 'insert.span'
|
|
1763
3284
|
| 'insert.text'
|
|
3285
|
+
| 'insert.text block'
|
|
3286
|
+
| 'list item.add'
|
|
3287
|
+
| 'list item.remove'
|
|
1764
3288
|
| 'list item.toggle'
|
|
3289
|
+
| 'move.block'
|
|
3290
|
+
| 'move.block down'
|
|
3291
|
+
| 'move.block up'
|
|
3292
|
+
| 'select.previous block'
|
|
3293
|
+
| 'select.next block'
|
|
3294
|
+
| 'style.add'
|
|
3295
|
+
| 'style.remove'
|
|
1765
3296
|
| 'style.toggle'
|
|
3297
|
+
| 'text block.set'
|
|
3298
|
+
| 'text block.unset'
|
|
1766
3299
|
| 'key.down'
|
|
1767
3300
|
| 'key.up'
|
|
1768
3301
|
| 'paste'
|
|
@@ -2008,6 +3541,15 @@ export declare type SyntheticBehaviorEvent =
|
|
|
2008
3541
|
name: string
|
|
2009
3542
|
}
|
|
2010
3543
|
}
|
|
3544
|
+
| {
|
|
3545
|
+
type: 'annotation.toggle'
|
|
3546
|
+
annotation: {
|
|
3547
|
+
name: string
|
|
3548
|
+
value: {
|
|
3549
|
+
[prop: string]: unknown
|
|
3550
|
+
}
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
2011
3553
|
| {
|
|
2012
3554
|
type: 'blur'
|
|
2013
3555
|
}
|
|
@@ -2017,6 +3559,14 @@ export declare type SyntheticBehaviorEvent =
|
|
|
2017
3559
|
dataTransfer: DataTransfer
|
|
2018
3560
|
mimeType: MIMEType
|
|
2019
3561
|
}
|
|
3562
|
+
| {
|
|
3563
|
+
type: 'decorator.add'
|
|
3564
|
+
decorator: string
|
|
3565
|
+
}
|
|
3566
|
+
| {
|
|
3567
|
+
type: 'decorator.remove'
|
|
3568
|
+
decorator: string
|
|
3569
|
+
}
|
|
2020
3570
|
| {
|
|
2021
3571
|
type: 'decorator.toggle'
|
|
2022
3572
|
decorator: string
|
|
@@ -2025,10 +3575,19 @@ export declare type SyntheticBehaviorEvent =
|
|
|
2025
3575
|
type: 'delete.backward'
|
|
2026
3576
|
unit: TextUnit
|
|
2027
3577
|
}
|
|
3578
|
+
| {
|
|
3579
|
+
type: 'delete.block'
|
|
3580
|
+
blockPath: [KeyedSegment]
|
|
3581
|
+
}
|
|
2028
3582
|
| {
|
|
2029
3583
|
type: 'delete.forward'
|
|
2030
3584
|
unit: TextUnit
|
|
2031
3585
|
}
|
|
3586
|
+
| {
|
|
3587
|
+
type: 'delete.text'
|
|
3588
|
+
anchor: BlockOffset
|
|
3589
|
+
focus: BlockOffset
|
|
3590
|
+
}
|
|
2032
3591
|
| {
|
|
2033
3592
|
type: 'focus'
|
|
2034
3593
|
}
|
|
@@ -2061,23 +3620,88 @@ export declare type SyntheticBehaviorEvent =
|
|
|
2061
3620
|
| {
|
|
2062
3621
|
type: 'insert.soft break'
|
|
2063
3622
|
}
|
|
3623
|
+
| {
|
|
3624
|
+
type: 'insert.span'
|
|
3625
|
+
text: string
|
|
3626
|
+
annotations?: Array<{
|
|
3627
|
+
name: string
|
|
3628
|
+
value: {
|
|
3629
|
+
[prop: string]: unknown
|
|
3630
|
+
}
|
|
3631
|
+
}>
|
|
3632
|
+
decorators?: Array<string>
|
|
3633
|
+
}
|
|
2064
3634
|
| {
|
|
2065
3635
|
type: 'insert.text'
|
|
2066
3636
|
text: string
|
|
2067
3637
|
options?: TextInsertTextOptions
|
|
2068
3638
|
}
|
|
3639
|
+
| {
|
|
3640
|
+
type: 'insert.text block'
|
|
3641
|
+
placement: 'auto' | 'after' | 'before'
|
|
3642
|
+
textBlock?: {
|
|
3643
|
+
children?: PortableTextTextBlock['children']
|
|
3644
|
+
}
|
|
3645
|
+
}
|
|
3646
|
+
| {
|
|
3647
|
+
type: 'list item.add'
|
|
3648
|
+
listItem: string
|
|
3649
|
+
}
|
|
3650
|
+
| {
|
|
3651
|
+
type: 'list item.remove'
|
|
3652
|
+
listItem: string
|
|
3653
|
+
}
|
|
2069
3654
|
| {
|
|
2070
3655
|
type: 'list item.toggle'
|
|
2071
3656
|
listItem: string
|
|
2072
3657
|
}
|
|
3658
|
+
| {
|
|
3659
|
+
type: 'move.block'
|
|
3660
|
+
at: [KeyedSegment]
|
|
3661
|
+
to: [KeyedSegment]
|
|
3662
|
+
}
|
|
3663
|
+
| {
|
|
3664
|
+
type: 'move.block down'
|
|
3665
|
+
at: [KeyedSegment]
|
|
3666
|
+
}
|
|
3667
|
+
| {
|
|
3668
|
+
type: 'move.block up'
|
|
3669
|
+
at: [KeyedSegment]
|
|
3670
|
+
}
|
|
2073
3671
|
| {
|
|
2074
3672
|
type: 'select'
|
|
2075
3673
|
selection: EditorSelection
|
|
2076
3674
|
}
|
|
3675
|
+
| {
|
|
3676
|
+
type: 'select.previous block'
|
|
3677
|
+
}
|
|
3678
|
+
| {
|
|
3679
|
+
type: 'select.next block'
|
|
3680
|
+
}
|
|
3681
|
+
| {
|
|
3682
|
+
type: 'style.add'
|
|
3683
|
+
style: string
|
|
3684
|
+
}
|
|
3685
|
+
| {
|
|
3686
|
+
type: 'style.remove'
|
|
3687
|
+
style: string
|
|
3688
|
+
}
|
|
2077
3689
|
| {
|
|
2078
3690
|
type: 'style.toggle'
|
|
2079
3691
|
style: string
|
|
2080
3692
|
}
|
|
3693
|
+
| {
|
|
3694
|
+
type: 'text block.set'
|
|
3695
|
+
at: [KeyedSegment]
|
|
3696
|
+
level?: number
|
|
3697
|
+
listItem?: string
|
|
3698
|
+
style?: string
|
|
3699
|
+
}
|
|
3700
|
+
| {
|
|
3701
|
+
type: 'text block.unset'
|
|
3702
|
+
at: [KeyedSegment]
|
|
3703
|
+
props: Array<'level' | 'listItem' | 'style'>
|
|
3704
|
+
}
|
|
2081
3705
|
| (PickFromUnion<
|
|
2082
3706
|
ConverterEvent,
|
|
2083
3707
|
'type',
|