@portabletext/editor 1.3.1 → 1.4.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/index.d.mts +2633 -43
- package/lib/index.d.ts +2633 -43
- package/lib/index.esm.js +800 -342
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +868 -410
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +800 -342
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/editor/PortableTextEditor.tsx +101 -72
- package/src/editor/behavior/behavior.markdown.ts +203 -0
- package/src/editor/editor-machine.ts +16 -2
- package/src/editor/use-editor.ts +45 -0
- package/src/index.ts +14 -8
package/lib/index.d.mts
CHANGED
|
@@ -20,13 +20,13 @@ import {PortableTextSpan, PortableTextTextBlock} from '@sanity/types'
|
|
|
20
20
|
import type {
|
|
21
21
|
BaseSyntheticEvent,
|
|
22
22
|
ClipboardEvent as ClipboardEvent_2,
|
|
23
|
-
FocusEvent as FocusEvent_2,
|
|
24
23
|
KeyboardEvent as KeyboardEvent_2,
|
|
25
24
|
ReactElement,
|
|
26
25
|
RefObject,
|
|
27
26
|
} from 'react'
|
|
28
27
|
import {
|
|
29
28
|
Component,
|
|
29
|
+
FocusEvent as FocusEvent_2,
|
|
30
30
|
ForwardRefExoticComponent,
|
|
31
31
|
JSX as JSX_2,
|
|
32
32
|
MutableRefObject,
|
|
@@ -42,6 +42,7 @@ import type {TextInsertTextOptions} from 'slate/dist/interfaces/transforms/text'
|
|
|
42
42
|
import {
|
|
43
43
|
ActionArgs,
|
|
44
44
|
ActionFunction,
|
|
45
|
+
Actor,
|
|
45
46
|
ActorRef,
|
|
46
47
|
ActorRefFrom,
|
|
47
48
|
ActorRefFromLogic,
|
|
@@ -296,6 +297,28 @@ export declare type createEditorOptions = {
|
|
|
296
297
|
maxBlocks?: number
|
|
297
298
|
}
|
|
298
299
|
|
|
300
|
+
/**
|
|
301
|
+
* @alpha
|
|
302
|
+
*/
|
|
303
|
+
export declare function createMarkdownBehaviors(
|
|
304
|
+
config: MarkdownBehaviorsConfig,
|
|
305
|
+
): Behavior<
|
|
306
|
+
| 'insert break'
|
|
307
|
+
| 'insert soft break'
|
|
308
|
+
| 'delete backward'
|
|
309
|
+
| 'delete forward'
|
|
310
|
+
| 'insert text',
|
|
311
|
+
true
|
|
312
|
+
>[]
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* @alpha
|
|
316
|
+
*/
|
|
317
|
+
export declare function defineBehavior<
|
|
318
|
+
TBehaviorEventType extends BehaviorEvent['type'],
|
|
319
|
+
TGuardResponse = true,
|
|
320
|
+
>(behavior: Behavior<TBehaviorEventType, TGuardResponse>): Behavior
|
|
321
|
+
|
|
299
322
|
/** @beta */
|
|
300
323
|
export declare interface EditableAPI {
|
|
301
324
|
activeAnnotations: () => PortableTextObject[]
|
|
@@ -367,6 +390,11 @@ export declare interface EditableAPIDeleteOptions {
|
|
|
367
390
|
mode?: 'blocks' | 'children' | 'selected'
|
|
368
391
|
}
|
|
369
392
|
|
|
393
|
+
/**
|
|
394
|
+
* @alpha
|
|
395
|
+
*/
|
|
396
|
+
export declare type Editor = ReturnType<typeof useEditor>
|
|
397
|
+
|
|
370
398
|
/**
|
|
371
399
|
* @internal
|
|
372
400
|
*/
|
|
@@ -396,6 +424,15 @@ export declare type EditorChange =
|
|
|
396
424
|
*/
|
|
397
425
|
export declare type EditorChanges = Subject<EditorChange>
|
|
398
426
|
|
|
427
|
+
/**
|
|
428
|
+
* @alpha
|
|
429
|
+
*/
|
|
430
|
+
export declare type EditorConfig = {
|
|
431
|
+
behaviors?: Array<Behavior>
|
|
432
|
+
keyGenerator?: () => string
|
|
433
|
+
schema: ArraySchemaType<PortableTextBlock> | ArrayDefinition
|
|
434
|
+
}
|
|
435
|
+
|
|
399
436
|
/**
|
|
400
437
|
* @internal
|
|
401
438
|
*/
|
|
@@ -428,6 +465,10 @@ export declare const editorMachine: StateMachine<
|
|
|
428
465
|
type: 'update schema'
|
|
429
466
|
schema: PortableTextMemberSchemaTypes
|
|
430
467
|
}
|
|
468
|
+
| {
|
|
469
|
+
type: 'update behaviors'
|
|
470
|
+
behaviors: Array<Behavior>
|
|
471
|
+
}
|
|
431
472
|
| {
|
|
432
473
|
type: 'ready'
|
|
433
474
|
}
|
|
@@ -488,6 +529,10 @@ export declare const editorMachine: StateMachine<
|
|
|
488
529
|
id: string | undefined
|
|
489
530
|
},
|
|
490
531
|
Values<{
|
|
532
|
+
'assign behaviors': {
|
|
533
|
+
type: 'assign behaviors'
|
|
534
|
+
params: NonReducibleUnknown
|
|
535
|
+
}
|
|
491
536
|
'assign schema': {
|
|
492
537
|
type: 'assign schema'
|
|
493
538
|
params: NonReducibleUnknown
|
|
@@ -525,7 +570,7 @@ export declare const editorMachine: StateMachine<
|
|
|
525
570
|
},
|
|
526
571
|
string,
|
|
527
572
|
{
|
|
528
|
-
behaviors
|
|
573
|
+
behaviors?: Array<Behavior>
|
|
529
574
|
keyGenerator: () => string
|
|
530
575
|
schema: PortableTextMemberSchemaTypes
|
|
531
576
|
},
|
|
@@ -653,7 +698,7 @@ export declare const editorMachine: StateMachine<
|
|
|
653
698
|
): ActorRefFromLogic<TLogic>
|
|
654
699
|
}
|
|
655
700
|
input: {
|
|
656
|
-
behaviors
|
|
701
|
+
behaviors?: Array<Behavior>
|
|
657
702
|
keyGenerator: () => string
|
|
658
703
|
schema: PortableTextMemberSchemaTypes
|
|
659
704
|
}
|
|
@@ -687,6 +732,10 @@ export declare const editorMachine: StateMachine<
|
|
|
687
732
|
type: 'update schema'
|
|
688
733
|
schema: PortableTextMemberSchemaTypes
|
|
689
734
|
}
|
|
735
|
+
| {
|
|
736
|
+
type: 'update behaviors'
|
|
737
|
+
behaviors: Array<Behavior>
|
|
738
|
+
}
|
|
690
739
|
| {
|
|
691
740
|
type: 'ready'
|
|
692
741
|
}
|
|
@@ -763,6 +812,10 @@ export declare const editorMachine: StateMachine<
|
|
|
763
812
|
type: 'update schema'
|
|
764
813
|
schema: PortableTextMemberSchemaTypes
|
|
765
814
|
}
|
|
815
|
+
| {
|
|
816
|
+
type: 'update behaviors'
|
|
817
|
+
behaviors: Array<Behavior>
|
|
818
|
+
}
|
|
766
819
|
| {
|
|
767
820
|
type: 'ready'
|
|
768
821
|
}
|
|
@@ -813,7 +866,14 @@ export declare const editorMachine: StateMachine<
|
|
|
813
866
|
AnyEventObject
|
|
814
867
|
>
|
|
815
868
|
}) => {
|
|
816
|
-
behaviors: Behavior
|
|
869
|
+
behaviors: Behavior<
|
|
870
|
+
| 'insert break'
|
|
871
|
+
| 'insert soft break'
|
|
872
|
+
| 'delete backward'
|
|
873
|
+
| 'delete forward'
|
|
874
|
+
| 'insert text',
|
|
875
|
+
true
|
|
876
|
+
>[]
|
|
817
877
|
keyGenerator: () => string
|
|
818
878
|
pendingEvents: never[]
|
|
819
879
|
schema: PortableTextMemberSchemaTypes
|
|
@@ -856,6 +916,10 @@ export declare const editorMachine: StateMachine<
|
|
|
856
916
|
type: 'update schema'
|
|
857
917
|
schema: PortableTextMemberSchemaTypes
|
|
858
918
|
}
|
|
919
|
+
| {
|
|
920
|
+
type: 'update behaviors'
|
|
921
|
+
behaviors: Array<Behavior>
|
|
922
|
+
}
|
|
859
923
|
| {
|
|
860
924
|
type: 'ready'
|
|
861
925
|
}
|
|
@@ -993,6 +1057,10 @@ export declare const editorMachine: StateMachine<
|
|
|
993
1057
|
type: 'update schema'
|
|
994
1058
|
schema: PortableTextMemberSchemaTypes
|
|
995
1059
|
}
|
|
1060
|
+
| {
|
|
1061
|
+
type: 'update behaviors'
|
|
1062
|
+
behaviors: Array<Behavior>
|
|
1063
|
+
}
|
|
996
1064
|
| {
|
|
997
1065
|
type: 'ready'
|
|
998
1066
|
}
|
|
@@ -1130,6 +1198,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1130
1198
|
type: 'update schema'
|
|
1131
1199
|
schema: PortableTextMemberSchemaTypes
|
|
1132
1200
|
}
|
|
1201
|
+
| {
|
|
1202
|
+
type: 'update behaviors'
|
|
1203
|
+
behaviors: Array<Behavior>
|
|
1204
|
+
}
|
|
1133
1205
|
| {
|
|
1134
1206
|
type: 'ready'
|
|
1135
1207
|
}
|
|
@@ -1268,6 +1340,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1268
1340
|
type: 'update schema'
|
|
1269
1341
|
schema: PortableTextMemberSchemaTypes
|
|
1270
1342
|
}
|
|
1343
|
+
| {
|
|
1344
|
+
type: 'update behaviors'
|
|
1345
|
+
behaviors: Array<Behavior>
|
|
1346
|
+
}
|
|
1271
1347
|
| {
|
|
1272
1348
|
type: 'ready'
|
|
1273
1349
|
}
|
|
@@ -1407,6 +1483,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1407
1483
|
type: 'update schema'
|
|
1408
1484
|
schema: PortableTextMemberSchemaTypes
|
|
1409
1485
|
}
|
|
1486
|
+
| {
|
|
1487
|
+
type: 'update behaviors'
|
|
1488
|
+
behaviors: Array<Behavior>
|
|
1489
|
+
}
|
|
1410
1490
|
| {
|
|
1411
1491
|
type: 'ready'
|
|
1412
1492
|
}
|
|
@@ -1544,6 +1624,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1544
1624
|
type: 'update schema'
|
|
1545
1625
|
schema: PortableTextMemberSchemaTypes
|
|
1546
1626
|
}
|
|
1627
|
+
| {
|
|
1628
|
+
type: 'update behaviors'
|
|
1629
|
+
behaviors: Array<Behavior>
|
|
1630
|
+
}
|
|
1547
1631
|
| {
|
|
1548
1632
|
type: 'ready'
|
|
1549
1633
|
}
|
|
@@ -1681,6 +1765,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1681
1765
|
type: 'update schema'
|
|
1682
1766
|
schema: PortableTextMemberSchemaTypes
|
|
1683
1767
|
}
|
|
1768
|
+
| {
|
|
1769
|
+
type: 'update behaviors'
|
|
1770
|
+
behaviors: Array<Behavior>
|
|
1771
|
+
}
|
|
1684
1772
|
| {
|
|
1685
1773
|
type: 'ready'
|
|
1686
1774
|
}
|
|
@@ -1818,6 +1906,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1818
1906
|
type: 'update schema'
|
|
1819
1907
|
schema: PortableTextMemberSchemaTypes
|
|
1820
1908
|
}
|
|
1909
|
+
| {
|
|
1910
|
+
type: 'update behaviors'
|
|
1911
|
+
behaviors: Array<Behavior>
|
|
1912
|
+
}
|
|
1821
1913
|
| {
|
|
1822
1914
|
type: 'ready'
|
|
1823
1915
|
}
|
|
@@ -1954,6 +2046,10 @@ export declare const editorMachine: StateMachine<
|
|
|
1954
2046
|
type: 'update schema'
|
|
1955
2047
|
schema: PortableTextMemberSchemaTypes
|
|
1956
2048
|
}
|
|
2049
|
+
| {
|
|
2050
|
+
type: 'update behaviors'
|
|
2051
|
+
behaviors: Array<Behavior>
|
|
2052
|
+
}
|
|
1957
2053
|
| {
|
|
1958
2054
|
type: 'ready'
|
|
1959
2055
|
}
|
|
@@ -2090,6 +2186,10 @@ export declare const editorMachine: StateMachine<
|
|
|
2090
2186
|
type: 'update schema'
|
|
2091
2187
|
schema: PortableTextMemberSchemaTypes
|
|
2092
2188
|
}
|
|
2189
|
+
| {
|
|
2190
|
+
type: 'update behaviors'
|
|
2191
|
+
behaviors: Array<Behavior>
|
|
2192
|
+
}
|
|
2093
2193
|
| {
|
|
2094
2194
|
type: 'ready'
|
|
2095
2195
|
}
|
|
@@ -2226,6 +2326,10 @@ export declare const editorMachine: StateMachine<
|
|
|
2226
2326
|
type: 'update schema'
|
|
2227
2327
|
schema: PortableTextMemberSchemaTypes
|
|
2228
2328
|
}
|
|
2329
|
+
| {
|
|
2330
|
+
type: 'update behaviors'
|
|
2331
|
+
behaviors: Array<Behavior>
|
|
2332
|
+
}
|
|
2229
2333
|
| {
|
|
2230
2334
|
type: 'ready'
|
|
2231
2335
|
}
|
|
@@ -2360,6 +2464,10 @@ export declare const editorMachine: StateMachine<
|
|
|
2360
2464
|
type: 'update schema'
|
|
2361
2465
|
schema: PortableTextMemberSchemaTypes
|
|
2362
2466
|
}
|
|
2467
|
+
| {
|
|
2468
|
+
type: 'update behaviors'
|
|
2469
|
+
behaviors: Array<Behavior>
|
|
2470
|
+
}
|
|
2363
2471
|
| {
|
|
2364
2472
|
type: 'ready'
|
|
2365
2473
|
}
|
|
@@ -2496,6 +2604,10 @@ export declare const editorMachine: StateMachine<
|
|
|
2496
2604
|
type: 'update schema'
|
|
2497
2605
|
schema: PortableTextMemberSchemaTypes
|
|
2498
2606
|
}
|
|
2607
|
+
| {
|
|
2608
|
+
type: 'update behaviors'
|
|
2609
|
+
behaviors: Array<Behavior>
|
|
2610
|
+
}
|
|
2499
2611
|
| {
|
|
2500
2612
|
type: 'ready'
|
|
2501
2613
|
}
|
|
@@ -2599,6 +2711,9 @@ export declare const editorMachine: StateMachine<
|
|
|
2599
2711
|
}
|
|
2600
2712
|
>
|
|
2601
2713
|
}
|
|
2714
|
+
readonly 'update behaviors': {
|
|
2715
|
+
readonly actions: 'assign behaviors'
|
|
2716
|
+
}
|
|
2602
2717
|
readonly 'update schema': {
|
|
2603
2718
|
readonly actions: 'assign schema'
|
|
2604
2719
|
}
|
|
@@ -2644,6 +2759,10 @@ export declare const editorMachine: StateMachine<
|
|
|
2644
2759
|
type: 'update schema'
|
|
2645
2760
|
schema: PortableTextMemberSchemaTypes
|
|
2646
2761
|
}
|
|
2762
|
+
| {
|
|
2763
|
+
type: 'update behaviors'
|
|
2764
|
+
behaviors: Array<Behavior>
|
|
2765
|
+
}
|
|
2647
2766
|
| {
|
|
2648
2767
|
type: 'ready'
|
|
2649
2768
|
}
|
|
@@ -2853,6 +2972,26 @@ export declare type LoadingChange = {
|
|
|
2853
2972
|
isLoading: boolean
|
|
2854
2973
|
}
|
|
2855
2974
|
|
|
2975
|
+
/**
|
|
2976
|
+
* @alpha
|
|
2977
|
+
*/
|
|
2978
|
+
export declare type MarkdownBehaviorsConfig = {
|
|
2979
|
+
mapDefaultStyle: (schema: PortableTextMemberSchemaTypes) => string | undefined
|
|
2980
|
+
mapHeadingStyle: (
|
|
2981
|
+
schema: PortableTextMemberSchemaTypes,
|
|
2982
|
+
level: number,
|
|
2983
|
+
) => string | undefined
|
|
2984
|
+
mapBlockquoteStyle: (
|
|
2985
|
+
schema: PortableTextMemberSchemaTypes,
|
|
2986
|
+
) => string | undefined
|
|
2987
|
+
mapUnorderedListStyle: (
|
|
2988
|
+
schema: PortableTextMemberSchemaTypes,
|
|
2989
|
+
) => string | undefined
|
|
2990
|
+
mapOrderedListStyle: (
|
|
2991
|
+
schema: PortableTextMemberSchemaTypes,
|
|
2992
|
+
) => string | undefined
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2856
2995
|
/**
|
|
2857
2996
|
* The editor has mutated it's content.
|
|
2858
2997
|
* @beta */
|
|
@@ -2990,7 +3129,9 @@ export declare type PortableTextEditableProps = Omit<
|
|
|
2990
3129
|
* The main Portable Text Editor component.
|
|
2991
3130
|
* @public
|
|
2992
3131
|
*/
|
|
2993
|
-
export declare class PortableTextEditor extends Component<
|
|
3132
|
+
export declare class PortableTextEditor extends Component<
|
|
3133
|
+
PortableTextEditorProps<Editor | undefined>
|
|
3134
|
+
> {
|
|
2994
3135
|
static displayName: string
|
|
2995
3136
|
/**
|
|
2996
3137
|
* An observable of all the editor changes.
|
|
@@ -3142,44 +3283,57 @@ export declare class PortableTextEditor extends Component<PortableTextEditorProp
|
|
|
3142
3283
|
*
|
|
3143
3284
|
* @public
|
|
3144
3285
|
*/
|
|
3145
|
-
export declare type PortableTextEditorProps
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3286
|
+
export declare type PortableTextEditorProps<
|
|
3287
|
+
TEditor extends Editor | undefined = undefined,
|
|
3288
|
+
> = PropsWithChildren<
|
|
3289
|
+
(TEditor extends Editor
|
|
3290
|
+
? {
|
|
3291
|
+
/**
|
|
3292
|
+
* @alpha
|
|
3293
|
+
*/
|
|
3294
|
+
editor: TEditor
|
|
3295
|
+
}
|
|
3296
|
+
: {
|
|
3297
|
+
editor?: undefined
|
|
3298
|
+
/**
|
|
3299
|
+
* Function that gets called when the editor changes the value
|
|
3300
|
+
*/
|
|
3301
|
+
onChange: (change: EditorChange) => void
|
|
3302
|
+
/**
|
|
3303
|
+
* Schema type for the portable text field
|
|
3304
|
+
*/
|
|
3305
|
+
schemaType: ArraySchemaType<PortableTextBlock> | ArrayDefinition
|
|
3306
|
+
/**
|
|
3307
|
+
* Maximum number of blocks to allow within the editor
|
|
3308
|
+
*/
|
|
3309
|
+
maxBlocks?: number | string
|
|
3310
|
+
/**
|
|
3311
|
+
* Function used to generate keys for array items (`_key`)
|
|
3312
|
+
*/
|
|
3313
|
+
keyGenerator?: () => string
|
|
3314
|
+
/**
|
|
3315
|
+
* Observable of local and remote patches for the edited value.
|
|
3316
|
+
*/
|
|
3317
|
+
patches$?: PatchObservable
|
|
3318
|
+
/**
|
|
3319
|
+
* Backward compatibility (renamed to patches$).
|
|
3320
|
+
*/
|
|
3321
|
+
incomingPatches$?: PatchObservable
|
|
3322
|
+
}) & {
|
|
3323
|
+
/**
|
|
3324
|
+
* Whether or not the editor should be in read-only mode
|
|
3325
|
+
*/
|
|
3326
|
+
readOnly?: boolean
|
|
3327
|
+
/**
|
|
3328
|
+
* The current value of the portable text field
|
|
3329
|
+
*/
|
|
3330
|
+
value?: PortableTextBlock[]
|
|
3331
|
+
/**
|
|
3332
|
+
* A ref to the editor instance
|
|
3333
|
+
*/
|
|
3334
|
+
editorRef?: MutableRefObject<PortableTextEditor | null>
|
|
3335
|
+
}
|
|
3336
|
+
>
|
|
3183
3337
|
|
|
3184
3338
|
/** @internal */
|
|
3185
3339
|
export declare type PortableTextMemberSchemaTypes = {
|
|
@@ -3426,6 +3580,2442 @@ export declare type UnsetChange = {
|
|
|
3426
3580
|
previousValue: PortableTextBlock[]
|
|
3427
3581
|
}
|
|
3428
3582
|
|
|
3583
|
+
/**
|
|
3584
|
+
* @alpha
|
|
3585
|
+
*/
|
|
3586
|
+
export declare function useEditor(config: EditorConfig): Actor<
|
|
3587
|
+
StateMachine<
|
|
3588
|
+
{
|
|
3589
|
+
behaviors: Array<Behavior>
|
|
3590
|
+
keyGenerator: () => string
|
|
3591
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
3592
|
+
schema: PortableTextMemberSchemaTypes
|
|
3593
|
+
},
|
|
3594
|
+
| PatchEvent
|
|
3595
|
+
| MutationEvent_2
|
|
3596
|
+
| {
|
|
3597
|
+
type: 'normalizing'
|
|
3598
|
+
}
|
|
3599
|
+
| {
|
|
3600
|
+
type: 'done normalizing'
|
|
3601
|
+
}
|
|
3602
|
+
| {
|
|
3603
|
+
type: 'behavior event'
|
|
3604
|
+
behaviorEvent: BehaviorEvent
|
|
3605
|
+
editor: PortableTextSlateEditor
|
|
3606
|
+
}
|
|
3607
|
+
| {
|
|
3608
|
+
type: 'behavior action intends'
|
|
3609
|
+
editor: PortableTextSlateEditor
|
|
3610
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
3611
|
+
}
|
|
3612
|
+
| {
|
|
3613
|
+
type: 'update schema'
|
|
3614
|
+
schema: PortableTextMemberSchemaTypes
|
|
3615
|
+
}
|
|
3616
|
+
| {
|
|
3617
|
+
type: 'update behaviors'
|
|
3618
|
+
behaviors: Array<Behavior>
|
|
3619
|
+
}
|
|
3620
|
+
| {
|
|
3621
|
+
type: 'ready'
|
|
3622
|
+
}
|
|
3623
|
+
| PatchesEvent
|
|
3624
|
+
| {
|
|
3625
|
+
type: 'unset'
|
|
3626
|
+
previousValue: Array<PortableTextBlock>
|
|
3627
|
+
}
|
|
3628
|
+
| {
|
|
3629
|
+
type: 'value changed'
|
|
3630
|
+
value: Array<PortableTextBlock> | undefined
|
|
3631
|
+
}
|
|
3632
|
+
| {
|
|
3633
|
+
type: 'invalid value'
|
|
3634
|
+
resolution: InvalidValueResolution | null
|
|
3635
|
+
value: Array<PortableTextBlock> | undefined
|
|
3636
|
+
}
|
|
3637
|
+
| {
|
|
3638
|
+
type: 'error'
|
|
3639
|
+
name: string
|
|
3640
|
+
description: string
|
|
3641
|
+
data: unknown
|
|
3642
|
+
}
|
|
3643
|
+
| {
|
|
3644
|
+
type: 'selection'
|
|
3645
|
+
selection: EditorSelection
|
|
3646
|
+
}
|
|
3647
|
+
| {
|
|
3648
|
+
type: 'blur'
|
|
3649
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3650
|
+
}
|
|
3651
|
+
| {
|
|
3652
|
+
type: 'focus'
|
|
3653
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3654
|
+
}
|
|
3655
|
+
| {
|
|
3656
|
+
type: 'online'
|
|
3657
|
+
}
|
|
3658
|
+
| {
|
|
3659
|
+
type: 'offline'
|
|
3660
|
+
}
|
|
3661
|
+
| {
|
|
3662
|
+
type: 'loading'
|
|
3663
|
+
}
|
|
3664
|
+
| {
|
|
3665
|
+
type: 'done loading'
|
|
3666
|
+
},
|
|
3667
|
+
{
|
|
3668
|
+
[x: string]:
|
|
3669
|
+
| ActorRefFromLogic<
|
|
3670
|
+
CallbackActorLogic<EventObject, NonReducibleUnknown, EventObject>
|
|
3671
|
+
>
|
|
3672
|
+
| undefined
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
src: 'networkLogic'
|
|
3676
|
+
logic: CallbackActorLogic<EventObject, NonReducibleUnknown, EventObject>
|
|
3677
|
+
id: string | undefined
|
|
3678
|
+
},
|
|
3679
|
+
Values<{
|
|
3680
|
+
'assign behaviors': {
|
|
3681
|
+
type: 'assign behaviors'
|
|
3682
|
+
params: NonReducibleUnknown
|
|
3683
|
+
}
|
|
3684
|
+
'assign schema': {
|
|
3685
|
+
type: 'assign schema'
|
|
3686
|
+
params: NonReducibleUnknown
|
|
3687
|
+
}
|
|
3688
|
+
'emit patch event': {
|
|
3689
|
+
type: 'emit patch event'
|
|
3690
|
+
params: NonReducibleUnknown
|
|
3691
|
+
}
|
|
3692
|
+
'emit mutation event': {
|
|
3693
|
+
type: 'emit mutation event'
|
|
3694
|
+
params: NonReducibleUnknown
|
|
3695
|
+
}
|
|
3696
|
+
'defer event': {
|
|
3697
|
+
type: 'defer event'
|
|
3698
|
+
params: NonReducibleUnknown
|
|
3699
|
+
}
|
|
3700
|
+
'emit pending events': {
|
|
3701
|
+
type: 'emit pending events'
|
|
3702
|
+
params: NonReducibleUnknown
|
|
3703
|
+
}
|
|
3704
|
+
'clear pending events': {
|
|
3705
|
+
type: 'clear pending events'
|
|
3706
|
+
params: NonReducibleUnknown
|
|
3707
|
+
}
|
|
3708
|
+
'handle behavior event': {
|
|
3709
|
+
type: 'handle behavior event'
|
|
3710
|
+
params: NonReducibleUnknown
|
|
3711
|
+
}
|
|
3712
|
+
}>,
|
|
3713
|
+
never,
|
|
3714
|
+
never,
|
|
3715
|
+
| 'dirty'
|
|
3716
|
+
| {
|
|
3717
|
+
pristine: 'normalizing' | 'idle'
|
|
3718
|
+
},
|
|
3719
|
+
string,
|
|
3720
|
+
{
|
|
3721
|
+
behaviors?: Array<Behavior>
|
|
3722
|
+
keyGenerator: () => string
|
|
3723
|
+
schema: PortableTextMemberSchemaTypes
|
|
3724
|
+
},
|
|
3725
|
+
NonReducibleUnknown,
|
|
3726
|
+
| PatchEvent
|
|
3727
|
+
| MutationEvent_2
|
|
3728
|
+
| {
|
|
3729
|
+
type: 'ready'
|
|
3730
|
+
}
|
|
3731
|
+
| PatchesEvent
|
|
3732
|
+
| {
|
|
3733
|
+
type: 'unset'
|
|
3734
|
+
previousValue: Array<PortableTextBlock>
|
|
3735
|
+
}
|
|
3736
|
+
| {
|
|
3737
|
+
type: 'value changed'
|
|
3738
|
+
value: Array<PortableTextBlock> | undefined
|
|
3739
|
+
}
|
|
3740
|
+
| {
|
|
3741
|
+
type: 'invalid value'
|
|
3742
|
+
resolution: InvalidValueResolution | null
|
|
3743
|
+
value: Array<PortableTextBlock> | undefined
|
|
3744
|
+
}
|
|
3745
|
+
| {
|
|
3746
|
+
type: 'error'
|
|
3747
|
+
name: string
|
|
3748
|
+
description: string
|
|
3749
|
+
data: unknown
|
|
3750
|
+
}
|
|
3751
|
+
| {
|
|
3752
|
+
type: 'selection'
|
|
3753
|
+
selection: EditorSelection
|
|
3754
|
+
}
|
|
3755
|
+
| {
|
|
3756
|
+
type: 'blur'
|
|
3757
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3758
|
+
}
|
|
3759
|
+
| {
|
|
3760
|
+
type: 'focus'
|
|
3761
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3762
|
+
}
|
|
3763
|
+
| {
|
|
3764
|
+
type: 'online'
|
|
3765
|
+
}
|
|
3766
|
+
| {
|
|
3767
|
+
type: 'offline'
|
|
3768
|
+
}
|
|
3769
|
+
| {
|
|
3770
|
+
type: 'loading'
|
|
3771
|
+
}
|
|
3772
|
+
| {
|
|
3773
|
+
type: 'done loading'
|
|
3774
|
+
},
|
|
3775
|
+
MetaObject,
|
|
3776
|
+
{
|
|
3777
|
+
readonly id: 'editor'
|
|
3778
|
+
readonly context: ({
|
|
3779
|
+
input,
|
|
3780
|
+
}: {
|
|
3781
|
+
spawn: {
|
|
3782
|
+
<TSrc extends 'networkLogic'>(
|
|
3783
|
+
logic: TSrc,
|
|
3784
|
+
...[options]: {
|
|
3785
|
+
src: 'networkLogic'
|
|
3786
|
+
logic: CallbackActorLogic<
|
|
3787
|
+
EventObject,
|
|
3788
|
+
NonReducibleUnknown,
|
|
3789
|
+
EventObject
|
|
3790
|
+
>
|
|
3791
|
+
id: string | undefined
|
|
3792
|
+
} extends infer T
|
|
3793
|
+
? T extends {
|
|
3794
|
+
src: 'networkLogic'
|
|
3795
|
+
logic: CallbackActorLogic<
|
|
3796
|
+
EventObject,
|
|
3797
|
+
NonReducibleUnknown,
|
|
3798
|
+
EventObject
|
|
3799
|
+
>
|
|
3800
|
+
id: string | undefined
|
|
3801
|
+
}
|
|
3802
|
+
? T extends {
|
|
3803
|
+
src: TSrc
|
|
3804
|
+
}
|
|
3805
|
+
? ConditionalRequired<
|
|
3806
|
+
[
|
|
3807
|
+
options?:
|
|
3808
|
+
| ({
|
|
3809
|
+
id?: T['id'] | undefined
|
|
3810
|
+
systemId?: string
|
|
3811
|
+
input?: InputFrom<T['logic']> | undefined
|
|
3812
|
+
syncSnapshot?: boolean
|
|
3813
|
+
} & {[K in RequiredActorOptions<T>]: unknown})
|
|
3814
|
+
| undefined,
|
|
3815
|
+
],
|
|
3816
|
+
IsNotNever<RequiredActorOptions<T>>
|
|
3817
|
+
>
|
|
3818
|
+
: never
|
|
3819
|
+
: never
|
|
3820
|
+
: never
|
|
3821
|
+
): ActorRefFromLogic<
|
|
3822
|
+
GetConcreteByKey<
|
|
3823
|
+
{
|
|
3824
|
+
src: 'networkLogic'
|
|
3825
|
+
logic: CallbackActorLogic<
|
|
3826
|
+
EventObject,
|
|
3827
|
+
NonReducibleUnknown,
|
|
3828
|
+
EventObject
|
|
3829
|
+
>
|
|
3830
|
+
id: string | undefined
|
|
3831
|
+
},
|
|
3832
|
+
'src',
|
|
3833
|
+
TSrc
|
|
3834
|
+
>['logic']
|
|
3835
|
+
>
|
|
3836
|
+
<TLogic extends AnyActorLogic>(
|
|
3837
|
+
src: TLogic,
|
|
3838
|
+
options?:
|
|
3839
|
+
| {
|
|
3840
|
+
id?: never
|
|
3841
|
+
systemId?: string
|
|
3842
|
+
input?: InputFrom<TLogic> | undefined
|
|
3843
|
+
syncSnapshot?: boolean
|
|
3844
|
+
}
|
|
3845
|
+
| undefined,
|
|
3846
|
+
): ActorRefFromLogic<TLogic>
|
|
3847
|
+
}
|
|
3848
|
+
input: {
|
|
3849
|
+
behaviors?: Array<Behavior>
|
|
3850
|
+
keyGenerator: () => string
|
|
3851
|
+
schema: PortableTextMemberSchemaTypes
|
|
3852
|
+
}
|
|
3853
|
+
self: ActorRef<
|
|
3854
|
+
MachineSnapshot<
|
|
3855
|
+
{
|
|
3856
|
+
behaviors: Array<Behavior>
|
|
3857
|
+
keyGenerator: () => string
|
|
3858
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
3859
|
+
schema: PortableTextMemberSchemaTypes
|
|
3860
|
+
},
|
|
3861
|
+
| PatchEvent
|
|
3862
|
+
| MutationEvent_2
|
|
3863
|
+
| {
|
|
3864
|
+
type: 'normalizing'
|
|
3865
|
+
}
|
|
3866
|
+
| {
|
|
3867
|
+
type: 'done normalizing'
|
|
3868
|
+
}
|
|
3869
|
+
| {
|
|
3870
|
+
type: 'behavior event'
|
|
3871
|
+
behaviorEvent: BehaviorEvent
|
|
3872
|
+
editor: PortableTextSlateEditor
|
|
3873
|
+
}
|
|
3874
|
+
| {
|
|
3875
|
+
type: 'behavior action intends'
|
|
3876
|
+
editor: PortableTextSlateEditor
|
|
3877
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
3878
|
+
}
|
|
3879
|
+
| {
|
|
3880
|
+
type: 'update schema'
|
|
3881
|
+
schema: PortableTextMemberSchemaTypes
|
|
3882
|
+
}
|
|
3883
|
+
| {
|
|
3884
|
+
type: 'update behaviors'
|
|
3885
|
+
behaviors: Array<Behavior>
|
|
3886
|
+
}
|
|
3887
|
+
| {
|
|
3888
|
+
type: 'ready'
|
|
3889
|
+
}
|
|
3890
|
+
| PatchesEvent
|
|
3891
|
+
| {
|
|
3892
|
+
type: 'unset'
|
|
3893
|
+
previousValue: Array<PortableTextBlock>
|
|
3894
|
+
}
|
|
3895
|
+
| {
|
|
3896
|
+
type: 'value changed'
|
|
3897
|
+
value: Array<PortableTextBlock> | undefined
|
|
3898
|
+
}
|
|
3899
|
+
| {
|
|
3900
|
+
type: 'invalid value'
|
|
3901
|
+
resolution: InvalidValueResolution | null
|
|
3902
|
+
value: Array<PortableTextBlock> | undefined
|
|
3903
|
+
}
|
|
3904
|
+
| {
|
|
3905
|
+
type: 'error'
|
|
3906
|
+
name: string
|
|
3907
|
+
description: string
|
|
3908
|
+
data: unknown
|
|
3909
|
+
}
|
|
3910
|
+
| {
|
|
3911
|
+
type: 'selection'
|
|
3912
|
+
selection: EditorSelection
|
|
3913
|
+
}
|
|
3914
|
+
| {
|
|
3915
|
+
type: 'blur'
|
|
3916
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3917
|
+
}
|
|
3918
|
+
| {
|
|
3919
|
+
type: 'focus'
|
|
3920
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3921
|
+
}
|
|
3922
|
+
| {
|
|
3923
|
+
type: 'online'
|
|
3924
|
+
}
|
|
3925
|
+
| {
|
|
3926
|
+
type: 'offline'
|
|
3927
|
+
}
|
|
3928
|
+
| {
|
|
3929
|
+
type: 'loading'
|
|
3930
|
+
}
|
|
3931
|
+
| {
|
|
3932
|
+
type: 'done loading'
|
|
3933
|
+
},
|
|
3934
|
+
Record<string, AnyActorRef | undefined>,
|
|
3935
|
+
StateValue,
|
|
3936
|
+
string,
|
|
3937
|
+
unknown,
|
|
3938
|
+
any,
|
|
3939
|
+
any
|
|
3940
|
+
>,
|
|
3941
|
+
| PatchEvent
|
|
3942
|
+
| MutationEvent_2
|
|
3943
|
+
| {
|
|
3944
|
+
type: 'normalizing'
|
|
3945
|
+
}
|
|
3946
|
+
| {
|
|
3947
|
+
type: 'done normalizing'
|
|
3948
|
+
}
|
|
3949
|
+
| {
|
|
3950
|
+
type: 'behavior event'
|
|
3951
|
+
behaviorEvent: BehaviorEvent
|
|
3952
|
+
editor: PortableTextSlateEditor
|
|
3953
|
+
}
|
|
3954
|
+
| {
|
|
3955
|
+
type: 'behavior action intends'
|
|
3956
|
+
editor: PortableTextSlateEditor
|
|
3957
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
3958
|
+
}
|
|
3959
|
+
| {
|
|
3960
|
+
type: 'update schema'
|
|
3961
|
+
schema: PortableTextMemberSchemaTypes
|
|
3962
|
+
}
|
|
3963
|
+
| {
|
|
3964
|
+
type: 'update behaviors'
|
|
3965
|
+
behaviors: Array<Behavior>
|
|
3966
|
+
}
|
|
3967
|
+
| {
|
|
3968
|
+
type: 'ready'
|
|
3969
|
+
}
|
|
3970
|
+
| PatchesEvent
|
|
3971
|
+
| {
|
|
3972
|
+
type: 'unset'
|
|
3973
|
+
previousValue: Array<PortableTextBlock>
|
|
3974
|
+
}
|
|
3975
|
+
| {
|
|
3976
|
+
type: 'value changed'
|
|
3977
|
+
value: Array<PortableTextBlock> | undefined
|
|
3978
|
+
}
|
|
3979
|
+
| {
|
|
3980
|
+
type: 'invalid value'
|
|
3981
|
+
resolution: InvalidValueResolution | null
|
|
3982
|
+
value: Array<PortableTextBlock> | undefined
|
|
3983
|
+
}
|
|
3984
|
+
| {
|
|
3985
|
+
type: 'error'
|
|
3986
|
+
name: string
|
|
3987
|
+
description: string
|
|
3988
|
+
data: unknown
|
|
3989
|
+
}
|
|
3990
|
+
| {
|
|
3991
|
+
type: 'selection'
|
|
3992
|
+
selection: EditorSelection
|
|
3993
|
+
}
|
|
3994
|
+
| {
|
|
3995
|
+
type: 'blur'
|
|
3996
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
3997
|
+
}
|
|
3998
|
+
| {
|
|
3999
|
+
type: 'focus'
|
|
4000
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4001
|
+
}
|
|
4002
|
+
| {
|
|
4003
|
+
type: 'online'
|
|
4004
|
+
}
|
|
4005
|
+
| {
|
|
4006
|
+
type: 'offline'
|
|
4007
|
+
}
|
|
4008
|
+
| {
|
|
4009
|
+
type: 'loading'
|
|
4010
|
+
}
|
|
4011
|
+
| {
|
|
4012
|
+
type: 'done loading'
|
|
4013
|
+
},
|
|
4014
|
+
AnyEventObject
|
|
4015
|
+
>
|
|
4016
|
+
}) => {
|
|
4017
|
+
behaviors: Behavior<
|
|
4018
|
+
| 'insert break'
|
|
4019
|
+
| 'insert soft break'
|
|
4020
|
+
| 'delete backward'
|
|
4021
|
+
| 'delete forward'
|
|
4022
|
+
| 'insert text',
|
|
4023
|
+
true
|
|
4024
|
+
>[]
|
|
4025
|
+
keyGenerator: () => string
|
|
4026
|
+
pendingEvents: never[]
|
|
4027
|
+
schema: PortableTextMemberSchemaTypes
|
|
4028
|
+
}
|
|
4029
|
+
readonly invoke: {
|
|
4030
|
+
readonly id: 'networkLogic'
|
|
4031
|
+
readonly src: 'networkLogic'
|
|
4032
|
+
}
|
|
4033
|
+
readonly on: {
|
|
4034
|
+
readonly 'ready': {
|
|
4035
|
+
readonly actions: ActionFunction<
|
|
4036
|
+
{
|
|
4037
|
+
behaviors: Array<Behavior>
|
|
4038
|
+
keyGenerator: () => string
|
|
4039
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4040
|
+
schema: PortableTextMemberSchemaTypes
|
|
4041
|
+
},
|
|
4042
|
+
{
|
|
4043
|
+
type: 'ready'
|
|
4044
|
+
},
|
|
4045
|
+
| PatchEvent
|
|
4046
|
+
| MutationEvent_2
|
|
4047
|
+
| {
|
|
4048
|
+
type: 'normalizing'
|
|
4049
|
+
}
|
|
4050
|
+
| {
|
|
4051
|
+
type: 'done normalizing'
|
|
4052
|
+
}
|
|
4053
|
+
| {
|
|
4054
|
+
type: 'behavior event'
|
|
4055
|
+
behaviorEvent: BehaviorEvent
|
|
4056
|
+
editor: PortableTextSlateEditor
|
|
4057
|
+
}
|
|
4058
|
+
| {
|
|
4059
|
+
type: 'behavior action intends'
|
|
4060
|
+
editor: PortableTextSlateEditor
|
|
4061
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4062
|
+
}
|
|
4063
|
+
| {
|
|
4064
|
+
type: 'update schema'
|
|
4065
|
+
schema: PortableTextMemberSchemaTypes
|
|
4066
|
+
}
|
|
4067
|
+
| {
|
|
4068
|
+
type: 'update behaviors'
|
|
4069
|
+
behaviors: Array<Behavior>
|
|
4070
|
+
}
|
|
4071
|
+
| {
|
|
4072
|
+
type: 'ready'
|
|
4073
|
+
}
|
|
4074
|
+
| PatchesEvent
|
|
4075
|
+
| {
|
|
4076
|
+
type: 'unset'
|
|
4077
|
+
previousValue: Array<PortableTextBlock>
|
|
4078
|
+
}
|
|
4079
|
+
| {
|
|
4080
|
+
type: 'value changed'
|
|
4081
|
+
value: Array<PortableTextBlock> | undefined
|
|
4082
|
+
}
|
|
4083
|
+
| {
|
|
4084
|
+
type: 'invalid value'
|
|
4085
|
+
resolution: InvalidValueResolution | null
|
|
4086
|
+
value: Array<PortableTextBlock> | undefined
|
|
4087
|
+
}
|
|
4088
|
+
| {
|
|
4089
|
+
type: 'error'
|
|
4090
|
+
name: string
|
|
4091
|
+
description: string
|
|
4092
|
+
data: unknown
|
|
4093
|
+
}
|
|
4094
|
+
| {
|
|
4095
|
+
type: 'selection'
|
|
4096
|
+
selection: EditorSelection
|
|
4097
|
+
}
|
|
4098
|
+
| {
|
|
4099
|
+
type: 'blur'
|
|
4100
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4101
|
+
}
|
|
4102
|
+
| {
|
|
4103
|
+
type: 'focus'
|
|
4104
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4105
|
+
}
|
|
4106
|
+
| {
|
|
4107
|
+
type: 'online'
|
|
4108
|
+
}
|
|
4109
|
+
| {
|
|
4110
|
+
type: 'offline'
|
|
4111
|
+
}
|
|
4112
|
+
| {
|
|
4113
|
+
type: 'loading'
|
|
4114
|
+
}
|
|
4115
|
+
| {
|
|
4116
|
+
type: 'done loading'
|
|
4117
|
+
},
|
|
4118
|
+
undefined,
|
|
4119
|
+
never,
|
|
4120
|
+
never,
|
|
4121
|
+
never,
|
|
4122
|
+
never,
|
|
4123
|
+
| PatchEvent
|
|
4124
|
+
| MutationEvent_2
|
|
4125
|
+
| {
|
|
4126
|
+
type: 'ready'
|
|
4127
|
+
}
|
|
4128
|
+
| PatchesEvent
|
|
4129
|
+
| {
|
|
4130
|
+
type: 'unset'
|
|
4131
|
+
previousValue: Array<PortableTextBlock>
|
|
4132
|
+
}
|
|
4133
|
+
| {
|
|
4134
|
+
type: 'value changed'
|
|
4135
|
+
value: Array<PortableTextBlock> | undefined
|
|
4136
|
+
}
|
|
4137
|
+
| {
|
|
4138
|
+
type: 'invalid value'
|
|
4139
|
+
resolution: InvalidValueResolution | null
|
|
4140
|
+
value: Array<PortableTextBlock> | undefined
|
|
4141
|
+
}
|
|
4142
|
+
| {
|
|
4143
|
+
type: 'error'
|
|
4144
|
+
name: string
|
|
4145
|
+
description: string
|
|
4146
|
+
data: unknown
|
|
4147
|
+
}
|
|
4148
|
+
| {
|
|
4149
|
+
type: 'selection'
|
|
4150
|
+
selection: EditorSelection
|
|
4151
|
+
}
|
|
4152
|
+
| {
|
|
4153
|
+
type: 'blur'
|
|
4154
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4155
|
+
}
|
|
4156
|
+
| {
|
|
4157
|
+
type: 'focus'
|
|
4158
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4159
|
+
}
|
|
4160
|
+
| {
|
|
4161
|
+
type: 'online'
|
|
4162
|
+
}
|
|
4163
|
+
| {
|
|
4164
|
+
type: 'offline'
|
|
4165
|
+
}
|
|
4166
|
+
| {
|
|
4167
|
+
type: 'loading'
|
|
4168
|
+
}
|
|
4169
|
+
| {
|
|
4170
|
+
type: 'done loading'
|
|
4171
|
+
}
|
|
4172
|
+
>
|
|
4173
|
+
}
|
|
4174
|
+
readonly 'unset': {
|
|
4175
|
+
readonly actions: ActionFunction<
|
|
4176
|
+
{
|
|
4177
|
+
behaviors: Array<Behavior>
|
|
4178
|
+
keyGenerator: () => string
|
|
4179
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4180
|
+
schema: PortableTextMemberSchemaTypes
|
|
4181
|
+
},
|
|
4182
|
+
{
|
|
4183
|
+
type: 'unset'
|
|
4184
|
+
previousValue: Array<PortableTextBlock>
|
|
4185
|
+
},
|
|
4186
|
+
| PatchEvent
|
|
4187
|
+
| MutationEvent_2
|
|
4188
|
+
| {
|
|
4189
|
+
type: 'normalizing'
|
|
4190
|
+
}
|
|
4191
|
+
| {
|
|
4192
|
+
type: 'done normalizing'
|
|
4193
|
+
}
|
|
4194
|
+
| {
|
|
4195
|
+
type: 'behavior event'
|
|
4196
|
+
behaviorEvent: BehaviorEvent
|
|
4197
|
+
editor: PortableTextSlateEditor
|
|
4198
|
+
}
|
|
4199
|
+
| {
|
|
4200
|
+
type: 'behavior action intends'
|
|
4201
|
+
editor: PortableTextSlateEditor
|
|
4202
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4203
|
+
}
|
|
4204
|
+
| {
|
|
4205
|
+
type: 'update schema'
|
|
4206
|
+
schema: PortableTextMemberSchemaTypes
|
|
4207
|
+
}
|
|
4208
|
+
| {
|
|
4209
|
+
type: 'update behaviors'
|
|
4210
|
+
behaviors: Array<Behavior>
|
|
4211
|
+
}
|
|
4212
|
+
| {
|
|
4213
|
+
type: 'ready'
|
|
4214
|
+
}
|
|
4215
|
+
| PatchesEvent
|
|
4216
|
+
| {
|
|
4217
|
+
type: 'unset'
|
|
4218
|
+
previousValue: Array<PortableTextBlock>
|
|
4219
|
+
}
|
|
4220
|
+
| {
|
|
4221
|
+
type: 'value changed'
|
|
4222
|
+
value: Array<PortableTextBlock> | undefined
|
|
4223
|
+
}
|
|
4224
|
+
| {
|
|
4225
|
+
type: 'invalid value'
|
|
4226
|
+
resolution: InvalidValueResolution | null
|
|
4227
|
+
value: Array<PortableTextBlock> | undefined
|
|
4228
|
+
}
|
|
4229
|
+
| {
|
|
4230
|
+
type: 'error'
|
|
4231
|
+
name: string
|
|
4232
|
+
description: string
|
|
4233
|
+
data: unknown
|
|
4234
|
+
}
|
|
4235
|
+
| {
|
|
4236
|
+
type: 'selection'
|
|
4237
|
+
selection: EditorSelection
|
|
4238
|
+
}
|
|
4239
|
+
| {
|
|
4240
|
+
type: 'blur'
|
|
4241
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4242
|
+
}
|
|
4243
|
+
| {
|
|
4244
|
+
type: 'focus'
|
|
4245
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4246
|
+
}
|
|
4247
|
+
| {
|
|
4248
|
+
type: 'online'
|
|
4249
|
+
}
|
|
4250
|
+
| {
|
|
4251
|
+
type: 'offline'
|
|
4252
|
+
}
|
|
4253
|
+
| {
|
|
4254
|
+
type: 'loading'
|
|
4255
|
+
}
|
|
4256
|
+
| {
|
|
4257
|
+
type: 'done loading'
|
|
4258
|
+
},
|
|
4259
|
+
undefined,
|
|
4260
|
+
never,
|
|
4261
|
+
never,
|
|
4262
|
+
never,
|
|
4263
|
+
never,
|
|
4264
|
+
| PatchEvent
|
|
4265
|
+
| MutationEvent_2
|
|
4266
|
+
| {
|
|
4267
|
+
type: 'ready'
|
|
4268
|
+
}
|
|
4269
|
+
| PatchesEvent
|
|
4270
|
+
| {
|
|
4271
|
+
type: 'unset'
|
|
4272
|
+
previousValue: Array<PortableTextBlock>
|
|
4273
|
+
}
|
|
4274
|
+
| {
|
|
4275
|
+
type: 'value changed'
|
|
4276
|
+
value: Array<PortableTextBlock> | undefined
|
|
4277
|
+
}
|
|
4278
|
+
| {
|
|
4279
|
+
type: 'invalid value'
|
|
4280
|
+
resolution: InvalidValueResolution | null
|
|
4281
|
+
value: Array<PortableTextBlock> | undefined
|
|
4282
|
+
}
|
|
4283
|
+
| {
|
|
4284
|
+
type: 'error'
|
|
4285
|
+
name: string
|
|
4286
|
+
description: string
|
|
4287
|
+
data: unknown
|
|
4288
|
+
}
|
|
4289
|
+
| {
|
|
4290
|
+
type: 'selection'
|
|
4291
|
+
selection: EditorSelection
|
|
4292
|
+
}
|
|
4293
|
+
| {
|
|
4294
|
+
type: 'blur'
|
|
4295
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4296
|
+
}
|
|
4297
|
+
| {
|
|
4298
|
+
type: 'focus'
|
|
4299
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4300
|
+
}
|
|
4301
|
+
| {
|
|
4302
|
+
type: 'online'
|
|
4303
|
+
}
|
|
4304
|
+
| {
|
|
4305
|
+
type: 'offline'
|
|
4306
|
+
}
|
|
4307
|
+
| {
|
|
4308
|
+
type: 'loading'
|
|
4309
|
+
}
|
|
4310
|
+
| {
|
|
4311
|
+
type: 'done loading'
|
|
4312
|
+
}
|
|
4313
|
+
>
|
|
4314
|
+
}
|
|
4315
|
+
readonly 'value changed': {
|
|
4316
|
+
readonly actions: ActionFunction<
|
|
4317
|
+
{
|
|
4318
|
+
behaviors: Array<Behavior>
|
|
4319
|
+
keyGenerator: () => string
|
|
4320
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4321
|
+
schema: PortableTextMemberSchemaTypes
|
|
4322
|
+
},
|
|
4323
|
+
{
|
|
4324
|
+
type: 'value changed'
|
|
4325
|
+
value: Array<PortableTextBlock> | undefined
|
|
4326
|
+
},
|
|
4327
|
+
| PatchEvent
|
|
4328
|
+
| MutationEvent_2
|
|
4329
|
+
| {
|
|
4330
|
+
type: 'normalizing'
|
|
4331
|
+
}
|
|
4332
|
+
| {
|
|
4333
|
+
type: 'done normalizing'
|
|
4334
|
+
}
|
|
4335
|
+
| {
|
|
4336
|
+
type: 'behavior event'
|
|
4337
|
+
behaviorEvent: BehaviorEvent
|
|
4338
|
+
editor: PortableTextSlateEditor
|
|
4339
|
+
}
|
|
4340
|
+
| {
|
|
4341
|
+
type: 'behavior action intends'
|
|
4342
|
+
editor: PortableTextSlateEditor
|
|
4343
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4344
|
+
}
|
|
4345
|
+
| {
|
|
4346
|
+
type: 'update schema'
|
|
4347
|
+
schema: PortableTextMemberSchemaTypes
|
|
4348
|
+
}
|
|
4349
|
+
| {
|
|
4350
|
+
type: 'update behaviors'
|
|
4351
|
+
behaviors: Array<Behavior>
|
|
4352
|
+
}
|
|
4353
|
+
| {
|
|
4354
|
+
type: 'ready'
|
|
4355
|
+
}
|
|
4356
|
+
| PatchesEvent
|
|
4357
|
+
| {
|
|
4358
|
+
type: 'unset'
|
|
4359
|
+
previousValue: Array<PortableTextBlock>
|
|
4360
|
+
}
|
|
4361
|
+
| {
|
|
4362
|
+
type: 'value changed'
|
|
4363
|
+
value: Array<PortableTextBlock> | undefined
|
|
4364
|
+
}
|
|
4365
|
+
| {
|
|
4366
|
+
type: 'invalid value'
|
|
4367
|
+
resolution: InvalidValueResolution | null
|
|
4368
|
+
value: Array<PortableTextBlock> | undefined
|
|
4369
|
+
}
|
|
4370
|
+
| {
|
|
4371
|
+
type: 'error'
|
|
4372
|
+
name: string
|
|
4373
|
+
description: string
|
|
4374
|
+
data: unknown
|
|
4375
|
+
}
|
|
4376
|
+
| {
|
|
4377
|
+
type: 'selection'
|
|
4378
|
+
selection: EditorSelection
|
|
4379
|
+
}
|
|
4380
|
+
| {
|
|
4381
|
+
type: 'blur'
|
|
4382
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4383
|
+
}
|
|
4384
|
+
| {
|
|
4385
|
+
type: 'focus'
|
|
4386
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4387
|
+
}
|
|
4388
|
+
| {
|
|
4389
|
+
type: 'online'
|
|
4390
|
+
}
|
|
4391
|
+
| {
|
|
4392
|
+
type: 'offline'
|
|
4393
|
+
}
|
|
4394
|
+
| {
|
|
4395
|
+
type: 'loading'
|
|
4396
|
+
}
|
|
4397
|
+
| {
|
|
4398
|
+
type: 'done loading'
|
|
4399
|
+
},
|
|
4400
|
+
undefined,
|
|
4401
|
+
never,
|
|
4402
|
+
never,
|
|
4403
|
+
never,
|
|
4404
|
+
never,
|
|
4405
|
+
| PatchEvent
|
|
4406
|
+
| MutationEvent_2
|
|
4407
|
+
| {
|
|
4408
|
+
type: 'ready'
|
|
4409
|
+
}
|
|
4410
|
+
| PatchesEvent
|
|
4411
|
+
| {
|
|
4412
|
+
type: 'unset'
|
|
4413
|
+
previousValue: Array<PortableTextBlock>
|
|
4414
|
+
}
|
|
4415
|
+
| {
|
|
4416
|
+
type: 'value changed'
|
|
4417
|
+
value: Array<PortableTextBlock> | undefined
|
|
4418
|
+
}
|
|
4419
|
+
| {
|
|
4420
|
+
type: 'invalid value'
|
|
4421
|
+
resolution: InvalidValueResolution | null
|
|
4422
|
+
value: Array<PortableTextBlock> | undefined
|
|
4423
|
+
}
|
|
4424
|
+
| {
|
|
4425
|
+
type: 'error'
|
|
4426
|
+
name: string
|
|
4427
|
+
description: string
|
|
4428
|
+
data: unknown
|
|
4429
|
+
}
|
|
4430
|
+
| {
|
|
4431
|
+
type: 'selection'
|
|
4432
|
+
selection: EditorSelection
|
|
4433
|
+
}
|
|
4434
|
+
| {
|
|
4435
|
+
type: 'blur'
|
|
4436
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4437
|
+
}
|
|
4438
|
+
| {
|
|
4439
|
+
type: 'focus'
|
|
4440
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4441
|
+
}
|
|
4442
|
+
| {
|
|
4443
|
+
type: 'online'
|
|
4444
|
+
}
|
|
4445
|
+
| {
|
|
4446
|
+
type: 'offline'
|
|
4447
|
+
}
|
|
4448
|
+
| {
|
|
4449
|
+
type: 'loading'
|
|
4450
|
+
}
|
|
4451
|
+
| {
|
|
4452
|
+
type: 'done loading'
|
|
4453
|
+
}
|
|
4454
|
+
>
|
|
4455
|
+
}
|
|
4456
|
+
readonly 'invalid value': {
|
|
4457
|
+
readonly actions: ActionFunction<
|
|
4458
|
+
{
|
|
4459
|
+
behaviors: Array<Behavior>
|
|
4460
|
+
keyGenerator: () => string
|
|
4461
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4462
|
+
schema: PortableTextMemberSchemaTypes
|
|
4463
|
+
},
|
|
4464
|
+
{
|
|
4465
|
+
type: 'invalid value'
|
|
4466
|
+
resolution: InvalidValueResolution | null
|
|
4467
|
+
value: Array<PortableTextBlock> | undefined
|
|
4468
|
+
},
|
|
4469
|
+
| PatchEvent
|
|
4470
|
+
| MutationEvent_2
|
|
4471
|
+
| {
|
|
4472
|
+
type: 'normalizing'
|
|
4473
|
+
}
|
|
4474
|
+
| {
|
|
4475
|
+
type: 'done normalizing'
|
|
4476
|
+
}
|
|
4477
|
+
| {
|
|
4478
|
+
type: 'behavior event'
|
|
4479
|
+
behaviorEvent: BehaviorEvent
|
|
4480
|
+
editor: PortableTextSlateEditor
|
|
4481
|
+
}
|
|
4482
|
+
| {
|
|
4483
|
+
type: 'behavior action intends'
|
|
4484
|
+
editor: PortableTextSlateEditor
|
|
4485
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4486
|
+
}
|
|
4487
|
+
| {
|
|
4488
|
+
type: 'update schema'
|
|
4489
|
+
schema: PortableTextMemberSchemaTypes
|
|
4490
|
+
}
|
|
4491
|
+
| {
|
|
4492
|
+
type: 'update behaviors'
|
|
4493
|
+
behaviors: Array<Behavior>
|
|
4494
|
+
}
|
|
4495
|
+
| {
|
|
4496
|
+
type: 'ready'
|
|
4497
|
+
}
|
|
4498
|
+
| PatchesEvent
|
|
4499
|
+
| {
|
|
4500
|
+
type: 'unset'
|
|
4501
|
+
previousValue: Array<PortableTextBlock>
|
|
4502
|
+
}
|
|
4503
|
+
| {
|
|
4504
|
+
type: 'value changed'
|
|
4505
|
+
value: Array<PortableTextBlock> | undefined
|
|
4506
|
+
}
|
|
4507
|
+
| {
|
|
4508
|
+
type: 'invalid value'
|
|
4509
|
+
resolution: InvalidValueResolution | null
|
|
4510
|
+
value: Array<PortableTextBlock> | undefined
|
|
4511
|
+
}
|
|
4512
|
+
| {
|
|
4513
|
+
type: 'error'
|
|
4514
|
+
name: string
|
|
4515
|
+
description: string
|
|
4516
|
+
data: unknown
|
|
4517
|
+
}
|
|
4518
|
+
| {
|
|
4519
|
+
type: 'selection'
|
|
4520
|
+
selection: EditorSelection
|
|
4521
|
+
}
|
|
4522
|
+
| {
|
|
4523
|
+
type: 'blur'
|
|
4524
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4525
|
+
}
|
|
4526
|
+
| {
|
|
4527
|
+
type: 'focus'
|
|
4528
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4529
|
+
}
|
|
4530
|
+
| {
|
|
4531
|
+
type: 'online'
|
|
4532
|
+
}
|
|
4533
|
+
| {
|
|
4534
|
+
type: 'offline'
|
|
4535
|
+
}
|
|
4536
|
+
| {
|
|
4537
|
+
type: 'loading'
|
|
4538
|
+
}
|
|
4539
|
+
| {
|
|
4540
|
+
type: 'done loading'
|
|
4541
|
+
},
|
|
4542
|
+
undefined,
|
|
4543
|
+
never,
|
|
4544
|
+
never,
|
|
4545
|
+
never,
|
|
4546
|
+
never,
|
|
4547
|
+
| PatchEvent
|
|
4548
|
+
| MutationEvent_2
|
|
4549
|
+
| {
|
|
4550
|
+
type: 'ready'
|
|
4551
|
+
}
|
|
4552
|
+
| PatchesEvent
|
|
4553
|
+
| {
|
|
4554
|
+
type: 'unset'
|
|
4555
|
+
previousValue: Array<PortableTextBlock>
|
|
4556
|
+
}
|
|
4557
|
+
| {
|
|
4558
|
+
type: 'value changed'
|
|
4559
|
+
value: Array<PortableTextBlock> | undefined
|
|
4560
|
+
}
|
|
4561
|
+
| {
|
|
4562
|
+
type: 'invalid value'
|
|
4563
|
+
resolution: InvalidValueResolution | null
|
|
4564
|
+
value: Array<PortableTextBlock> | undefined
|
|
4565
|
+
}
|
|
4566
|
+
| {
|
|
4567
|
+
type: 'error'
|
|
4568
|
+
name: string
|
|
4569
|
+
description: string
|
|
4570
|
+
data: unknown
|
|
4571
|
+
}
|
|
4572
|
+
| {
|
|
4573
|
+
type: 'selection'
|
|
4574
|
+
selection: EditorSelection
|
|
4575
|
+
}
|
|
4576
|
+
| {
|
|
4577
|
+
type: 'blur'
|
|
4578
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4579
|
+
}
|
|
4580
|
+
| {
|
|
4581
|
+
type: 'focus'
|
|
4582
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4583
|
+
}
|
|
4584
|
+
| {
|
|
4585
|
+
type: 'online'
|
|
4586
|
+
}
|
|
4587
|
+
| {
|
|
4588
|
+
type: 'offline'
|
|
4589
|
+
}
|
|
4590
|
+
| {
|
|
4591
|
+
type: 'loading'
|
|
4592
|
+
}
|
|
4593
|
+
| {
|
|
4594
|
+
type: 'done loading'
|
|
4595
|
+
}
|
|
4596
|
+
>
|
|
4597
|
+
}
|
|
4598
|
+
readonly 'error': {
|
|
4599
|
+
readonly actions: ActionFunction<
|
|
4600
|
+
{
|
|
4601
|
+
behaviors: Array<Behavior>
|
|
4602
|
+
keyGenerator: () => string
|
|
4603
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4604
|
+
schema: PortableTextMemberSchemaTypes
|
|
4605
|
+
},
|
|
4606
|
+
{
|
|
4607
|
+
type: 'error'
|
|
4608
|
+
name: string
|
|
4609
|
+
description: string
|
|
4610
|
+
data: unknown
|
|
4611
|
+
},
|
|
4612
|
+
| PatchEvent
|
|
4613
|
+
| MutationEvent_2
|
|
4614
|
+
| {
|
|
4615
|
+
type: 'normalizing'
|
|
4616
|
+
}
|
|
4617
|
+
| {
|
|
4618
|
+
type: 'done normalizing'
|
|
4619
|
+
}
|
|
4620
|
+
| {
|
|
4621
|
+
type: 'behavior event'
|
|
4622
|
+
behaviorEvent: BehaviorEvent
|
|
4623
|
+
editor: PortableTextSlateEditor
|
|
4624
|
+
}
|
|
4625
|
+
| {
|
|
4626
|
+
type: 'behavior action intends'
|
|
4627
|
+
editor: PortableTextSlateEditor
|
|
4628
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4629
|
+
}
|
|
4630
|
+
| {
|
|
4631
|
+
type: 'update schema'
|
|
4632
|
+
schema: PortableTextMemberSchemaTypes
|
|
4633
|
+
}
|
|
4634
|
+
| {
|
|
4635
|
+
type: 'update behaviors'
|
|
4636
|
+
behaviors: Array<Behavior>
|
|
4637
|
+
}
|
|
4638
|
+
| {
|
|
4639
|
+
type: 'ready'
|
|
4640
|
+
}
|
|
4641
|
+
| PatchesEvent
|
|
4642
|
+
| {
|
|
4643
|
+
type: 'unset'
|
|
4644
|
+
previousValue: Array<PortableTextBlock>
|
|
4645
|
+
}
|
|
4646
|
+
| {
|
|
4647
|
+
type: 'value changed'
|
|
4648
|
+
value: Array<PortableTextBlock> | undefined
|
|
4649
|
+
}
|
|
4650
|
+
| {
|
|
4651
|
+
type: 'invalid value'
|
|
4652
|
+
resolution: InvalidValueResolution | null
|
|
4653
|
+
value: Array<PortableTextBlock> | undefined
|
|
4654
|
+
}
|
|
4655
|
+
| {
|
|
4656
|
+
type: 'error'
|
|
4657
|
+
name: string
|
|
4658
|
+
description: string
|
|
4659
|
+
data: unknown
|
|
4660
|
+
}
|
|
4661
|
+
| {
|
|
4662
|
+
type: 'selection'
|
|
4663
|
+
selection: EditorSelection
|
|
4664
|
+
}
|
|
4665
|
+
| {
|
|
4666
|
+
type: 'blur'
|
|
4667
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4668
|
+
}
|
|
4669
|
+
| {
|
|
4670
|
+
type: 'focus'
|
|
4671
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4672
|
+
}
|
|
4673
|
+
| {
|
|
4674
|
+
type: 'online'
|
|
4675
|
+
}
|
|
4676
|
+
| {
|
|
4677
|
+
type: 'offline'
|
|
4678
|
+
}
|
|
4679
|
+
| {
|
|
4680
|
+
type: 'loading'
|
|
4681
|
+
}
|
|
4682
|
+
| {
|
|
4683
|
+
type: 'done loading'
|
|
4684
|
+
},
|
|
4685
|
+
undefined,
|
|
4686
|
+
never,
|
|
4687
|
+
never,
|
|
4688
|
+
never,
|
|
4689
|
+
never,
|
|
4690
|
+
| PatchEvent
|
|
4691
|
+
| MutationEvent_2
|
|
4692
|
+
| {
|
|
4693
|
+
type: 'ready'
|
|
4694
|
+
}
|
|
4695
|
+
| PatchesEvent
|
|
4696
|
+
| {
|
|
4697
|
+
type: 'unset'
|
|
4698
|
+
previousValue: Array<PortableTextBlock>
|
|
4699
|
+
}
|
|
4700
|
+
| {
|
|
4701
|
+
type: 'value changed'
|
|
4702
|
+
value: Array<PortableTextBlock> | undefined
|
|
4703
|
+
}
|
|
4704
|
+
| {
|
|
4705
|
+
type: 'invalid value'
|
|
4706
|
+
resolution: InvalidValueResolution | null
|
|
4707
|
+
value: Array<PortableTextBlock> | undefined
|
|
4708
|
+
}
|
|
4709
|
+
| {
|
|
4710
|
+
type: 'error'
|
|
4711
|
+
name: string
|
|
4712
|
+
description: string
|
|
4713
|
+
data: unknown
|
|
4714
|
+
}
|
|
4715
|
+
| {
|
|
4716
|
+
type: 'selection'
|
|
4717
|
+
selection: EditorSelection
|
|
4718
|
+
}
|
|
4719
|
+
| {
|
|
4720
|
+
type: 'blur'
|
|
4721
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4722
|
+
}
|
|
4723
|
+
| {
|
|
4724
|
+
type: 'focus'
|
|
4725
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4726
|
+
}
|
|
4727
|
+
| {
|
|
4728
|
+
type: 'online'
|
|
4729
|
+
}
|
|
4730
|
+
| {
|
|
4731
|
+
type: 'offline'
|
|
4732
|
+
}
|
|
4733
|
+
| {
|
|
4734
|
+
type: 'loading'
|
|
4735
|
+
}
|
|
4736
|
+
| {
|
|
4737
|
+
type: 'done loading'
|
|
4738
|
+
}
|
|
4739
|
+
>
|
|
4740
|
+
}
|
|
4741
|
+
readonly 'selection': {
|
|
4742
|
+
readonly actions: ActionFunction<
|
|
4743
|
+
{
|
|
4744
|
+
behaviors: Array<Behavior>
|
|
4745
|
+
keyGenerator: () => string
|
|
4746
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4747
|
+
schema: PortableTextMemberSchemaTypes
|
|
4748
|
+
},
|
|
4749
|
+
{
|
|
4750
|
+
type: 'selection'
|
|
4751
|
+
selection: EditorSelection
|
|
4752
|
+
},
|
|
4753
|
+
| PatchEvent
|
|
4754
|
+
| MutationEvent_2
|
|
4755
|
+
| {
|
|
4756
|
+
type: 'normalizing'
|
|
4757
|
+
}
|
|
4758
|
+
| {
|
|
4759
|
+
type: 'done normalizing'
|
|
4760
|
+
}
|
|
4761
|
+
| {
|
|
4762
|
+
type: 'behavior event'
|
|
4763
|
+
behaviorEvent: BehaviorEvent
|
|
4764
|
+
editor: PortableTextSlateEditor
|
|
4765
|
+
}
|
|
4766
|
+
| {
|
|
4767
|
+
type: 'behavior action intends'
|
|
4768
|
+
editor: PortableTextSlateEditor
|
|
4769
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4770
|
+
}
|
|
4771
|
+
| {
|
|
4772
|
+
type: 'update schema'
|
|
4773
|
+
schema: PortableTextMemberSchemaTypes
|
|
4774
|
+
}
|
|
4775
|
+
| {
|
|
4776
|
+
type: 'update behaviors'
|
|
4777
|
+
behaviors: Array<Behavior>
|
|
4778
|
+
}
|
|
4779
|
+
| {
|
|
4780
|
+
type: 'ready'
|
|
4781
|
+
}
|
|
4782
|
+
| PatchesEvent
|
|
4783
|
+
| {
|
|
4784
|
+
type: 'unset'
|
|
4785
|
+
previousValue: Array<PortableTextBlock>
|
|
4786
|
+
}
|
|
4787
|
+
| {
|
|
4788
|
+
type: 'value changed'
|
|
4789
|
+
value: Array<PortableTextBlock> | undefined
|
|
4790
|
+
}
|
|
4791
|
+
| {
|
|
4792
|
+
type: 'invalid value'
|
|
4793
|
+
resolution: InvalidValueResolution | null
|
|
4794
|
+
value: Array<PortableTextBlock> | undefined
|
|
4795
|
+
}
|
|
4796
|
+
| {
|
|
4797
|
+
type: 'error'
|
|
4798
|
+
name: string
|
|
4799
|
+
description: string
|
|
4800
|
+
data: unknown
|
|
4801
|
+
}
|
|
4802
|
+
| {
|
|
4803
|
+
type: 'selection'
|
|
4804
|
+
selection: EditorSelection
|
|
4805
|
+
}
|
|
4806
|
+
| {
|
|
4807
|
+
type: 'blur'
|
|
4808
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4809
|
+
}
|
|
4810
|
+
| {
|
|
4811
|
+
type: 'focus'
|
|
4812
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4813
|
+
}
|
|
4814
|
+
| {
|
|
4815
|
+
type: 'online'
|
|
4816
|
+
}
|
|
4817
|
+
| {
|
|
4818
|
+
type: 'offline'
|
|
4819
|
+
}
|
|
4820
|
+
| {
|
|
4821
|
+
type: 'loading'
|
|
4822
|
+
}
|
|
4823
|
+
| {
|
|
4824
|
+
type: 'done loading'
|
|
4825
|
+
},
|
|
4826
|
+
undefined,
|
|
4827
|
+
never,
|
|
4828
|
+
never,
|
|
4829
|
+
never,
|
|
4830
|
+
never,
|
|
4831
|
+
| PatchEvent
|
|
4832
|
+
| MutationEvent_2
|
|
4833
|
+
| {
|
|
4834
|
+
type: 'ready'
|
|
4835
|
+
}
|
|
4836
|
+
| PatchesEvent
|
|
4837
|
+
| {
|
|
4838
|
+
type: 'unset'
|
|
4839
|
+
previousValue: Array<PortableTextBlock>
|
|
4840
|
+
}
|
|
4841
|
+
| {
|
|
4842
|
+
type: 'value changed'
|
|
4843
|
+
value: Array<PortableTextBlock> | undefined
|
|
4844
|
+
}
|
|
4845
|
+
| {
|
|
4846
|
+
type: 'invalid value'
|
|
4847
|
+
resolution: InvalidValueResolution | null
|
|
4848
|
+
value: Array<PortableTextBlock> | undefined
|
|
4849
|
+
}
|
|
4850
|
+
| {
|
|
4851
|
+
type: 'error'
|
|
4852
|
+
name: string
|
|
4853
|
+
description: string
|
|
4854
|
+
data: unknown
|
|
4855
|
+
}
|
|
4856
|
+
| {
|
|
4857
|
+
type: 'selection'
|
|
4858
|
+
selection: EditorSelection
|
|
4859
|
+
}
|
|
4860
|
+
| {
|
|
4861
|
+
type: 'blur'
|
|
4862
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4863
|
+
}
|
|
4864
|
+
| {
|
|
4865
|
+
type: 'focus'
|
|
4866
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4867
|
+
}
|
|
4868
|
+
| {
|
|
4869
|
+
type: 'online'
|
|
4870
|
+
}
|
|
4871
|
+
| {
|
|
4872
|
+
type: 'offline'
|
|
4873
|
+
}
|
|
4874
|
+
| {
|
|
4875
|
+
type: 'loading'
|
|
4876
|
+
}
|
|
4877
|
+
| {
|
|
4878
|
+
type: 'done loading'
|
|
4879
|
+
}
|
|
4880
|
+
>
|
|
4881
|
+
}
|
|
4882
|
+
readonly 'blur': {
|
|
4883
|
+
readonly actions: ActionFunction<
|
|
4884
|
+
{
|
|
4885
|
+
behaviors: Array<Behavior>
|
|
4886
|
+
keyGenerator: () => string
|
|
4887
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
4888
|
+
schema: PortableTextMemberSchemaTypes
|
|
4889
|
+
},
|
|
4890
|
+
{
|
|
4891
|
+
type: 'blur'
|
|
4892
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4893
|
+
},
|
|
4894
|
+
| PatchEvent
|
|
4895
|
+
| MutationEvent_2
|
|
4896
|
+
| {
|
|
4897
|
+
type: 'normalizing'
|
|
4898
|
+
}
|
|
4899
|
+
| {
|
|
4900
|
+
type: 'done normalizing'
|
|
4901
|
+
}
|
|
4902
|
+
| {
|
|
4903
|
+
type: 'behavior event'
|
|
4904
|
+
behaviorEvent: BehaviorEvent
|
|
4905
|
+
editor: PortableTextSlateEditor
|
|
4906
|
+
}
|
|
4907
|
+
| {
|
|
4908
|
+
type: 'behavior action intends'
|
|
4909
|
+
editor: PortableTextSlateEditor
|
|
4910
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
4911
|
+
}
|
|
4912
|
+
| {
|
|
4913
|
+
type: 'update schema'
|
|
4914
|
+
schema: PortableTextMemberSchemaTypes
|
|
4915
|
+
}
|
|
4916
|
+
| {
|
|
4917
|
+
type: 'update behaviors'
|
|
4918
|
+
behaviors: Array<Behavior>
|
|
4919
|
+
}
|
|
4920
|
+
| {
|
|
4921
|
+
type: 'ready'
|
|
4922
|
+
}
|
|
4923
|
+
| PatchesEvent
|
|
4924
|
+
| {
|
|
4925
|
+
type: 'unset'
|
|
4926
|
+
previousValue: Array<PortableTextBlock>
|
|
4927
|
+
}
|
|
4928
|
+
| {
|
|
4929
|
+
type: 'value changed'
|
|
4930
|
+
value: Array<PortableTextBlock> | undefined
|
|
4931
|
+
}
|
|
4932
|
+
| {
|
|
4933
|
+
type: 'invalid value'
|
|
4934
|
+
resolution: InvalidValueResolution | null
|
|
4935
|
+
value: Array<PortableTextBlock> | undefined
|
|
4936
|
+
}
|
|
4937
|
+
| {
|
|
4938
|
+
type: 'error'
|
|
4939
|
+
name: string
|
|
4940
|
+
description: string
|
|
4941
|
+
data: unknown
|
|
4942
|
+
}
|
|
4943
|
+
| {
|
|
4944
|
+
type: 'selection'
|
|
4945
|
+
selection: EditorSelection
|
|
4946
|
+
}
|
|
4947
|
+
| {
|
|
4948
|
+
type: 'blur'
|
|
4949
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4950
|
+
}
|
|
4951
|
+
| {
|
|
4952
|
+
type: 'focus'
|
|
4953
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
4954
|
+
}
|
|
4955
|
+
| {
|
|
4956
|
+
type: 'online'
|
|
4957
|
+
}
|
|
4958
|
+
| {
|
|
4959
|
+
type: 'offline'
|
|
4960
|
+
}
|
|
4961
|
+
| {
|
|
4962
|
+
type: 'loading'
|
|
4963
|
+
}
|
|
4964
|
+
| {
|
|
4965
|
+
type: 'done loading'
|
|
4966
|
+
},
|
|
4967
|
+
undefined,
|
|
4968
|
+
never,
|
|
4969
|
+
never,
|
|
4970
|
+
never,
|
|
4971
|
+
never,
|
|
4972
|
+
| PatchEvent
|
|
4973
|
+
| MutationEvent_2
|
|
4974
|
+
| {
|
|
4975
|
+
type: 'ready'
|
|
4976
|
+
}
|
|
4977
|
+
| PatchesEvent
|
|
4978
|
+
| {
|
|
4979
|
+
type: 'unset'
|
|
4980
|
+
previousValue: Array<PortableTextBlock>
|
|
4981
|
+
}
|
|
4982
|
+
| {
|
|
4983
|
+
type: 'value changed'
|
|
4984
|
+
value: Array<PortableTextBlock> | undefined
|
|
4985
|
+
}
|
|
4986
|
+
| {
|
|
4987
|
+
type: 'invalid value'
|
|
4988
|
+
resolution: InvalidValueResolution | null
|
|
4989
|
+
value: Array<PortableTextBlock> | undefined
|
|
4990
|
+
}
|
|
4991
|
+
| {
|
|
4992
|
+
type: 'error'
|
|
4993
|
+
name: string
|
|
4994
|
+
description: string
|
|
4995
|
+
data: unknown
|
|
4996
|
+
}
|
|
4997
|
+
| {
|
|
4998
|
+
type: 'selection'
|
|
4999
|
+
selection: EditorSelection
|
|
5000
|
+
}
|
|
5001
|
+
| {
|
|
5002
|
+
type: 'blur'
|
|
5003
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5004
|
+
}
|
|
5005
|
+
| {
|
|
5006
|
+
type: 'focus'
|
|
5007
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5008
|
+
}
|
|
5009
|
+
| {
|
|
5010
|
+
type: 'online'
|
|
5011
|
+
}
|
|
5012
|
+
| {
|
|
5013
|
+
type: 'offline'
|
|
5014
|
+
}
|
|
5015
|
+
| {
|
|
5016
|
+
type: 'loading'
|
|
5017
|
+
}
|
|
5018
|
+
| {
|
|
5019
|
+
type: 'done loading'
|
|
5020
|
+
}
|
|
5021
|
+
>
|
|
5022
|
+
}
|
|
5023
|
+
readonly 'focus': {
|
|
5024
|
+
readonly actions: ActionFunction<
|
|
5025
|
+
{
|
|
5026
|
+
behaviors: Array<Behavior>
|
|
5027
|
+
keyGenerator: () => string
|
|
5028
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5029
|
+
schema: PortableTextMemberSchemaTypes
|
|
5030
|
+
},
|
|
5031
|
+
{
|
|
5032
|
+
type: 'focus'
|
|
5033
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5034
|
+
},
|
|
5035
|
+
| PatchEvent
|
|
5036
|
+
| MutationEvent_2
|
|
5037
|
+
| {
|
|
5038
|
+
type: 'normalizing'
|
|
5039
|
+
}
|
|
5040
|
+
| {
|
|
5041
|
+
type: 'done normalizing'
|
|
5042
|
+
}
|
|
5043
|
+
| {
|
|
5044
|
+
type: 'behavior event'
|
|
5045
|
+
behaviorEvent: BehaviorEvent
|
|
5046
|
+
editor: PortableTextSlateEditor
|
|
5047
|
+
}
|
|
5048
|
+
| {
|
|
5049
|
+
type: 'behavior action intends'
|
|
5050
|
+
editor: PortableTextSlateEditor
|
|
5051
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5052
|
+
}
|
|
5053
|
+
| {
|
|
5054
|
+
type: 'update schema'
|
|
5055
|
+
schema: PortableTextMemberSchemaTypes
|
|
5056
|
+
}
|
|
5057
|
+
| {
|
|
5058
|
+
type: 'update behaviors'
|
|
5059
|
+
behaviors: Array<Behavior>
|
|
5060
|
+
}
|
|
5061
|
+
| {
|
|
5062
|
+
type: 'ready'
|
|
5063
|
+
}
|
|
5064
|
+
| PatchesEvent
|
|
5065
|
+
| {
|
|
5066
|
+
type: 'unset'
|
|
5067
|
+
previousValue: Array<PortableTextBlock>
|
|
5068
|
+
}
|
|
5069
|
+
| {
|
|
5070
|
+
type: 'value changed'
|
|
5071
|
+
value: Array<PortableTextBlock> | undefined
|
|
5072
|
+
}
|
|
5073
|
+
| {
|
|
5074
|
+
type: 'invalid value'
|
|
5075
|
+
resolution: InvalidValueResolution | null
|
|
5076
|
+
value: Array<PortableTextBlock> | undefined
|
|
5077
|
+
}
|
|
5078
|
+
| {
|
|
5079
|
+
type: 'error'
|
|
5080
|
+
name: string
|
|
5081
|
+
description: string
|
|
5082
|
+
data: unknown
|
|
5083
|
+
}
|
|
5084
|
+
| {
|
|
5085
|
+
type: 'selection'
|
|
5086
|
+
selection: EditorSelection
|
|
5087
|
+
}
|
|
5088
|
+
| {
|
|
5089
|
+
type: 'blur'
|
|
5090
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5091
|
+
}
|
|
5092
|
+
| {
|
|
5093
|
+
type: 'focus'
|
|
5094
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5095
|
+
}
|
|
5096
|
+
| {
|
|
5097
|
+
type: 'online'
|
|
5098
|
+
}
|
|
5099
|
+
| {
|
|
5100
|
+
type: 'offline'
|
|
5101
|
+
}
|
|
5102
|
+
| {
|
|
5103
|
+
type: 'loading'
|
|
5104
|
+
}
|
|
5105
|
+
| {
|
|
5106
|
+
type: 'done loading'
|
|
5107
|
+
},
|
|
5108
|
+
undefined,
|
|
5109
|
+
never,
|
|
5110
|
+
never,
|
|
5111
|
+
never,
|
|
5112
|
+
never,
|
|
5113
|
+
| PatchEvent
|
|
5114
|
+
| MutationEvent_2
|
|
5115
|
+
| {
|
|
5116
|
+
type: 'ready'
|
|
5117
|
+
}
|
|
5118
|
+
| PatchesEvent
|
|
5119
|
+
| {
|
|
5120
|
+
type: 'unset'
|
|
5121
|
+
previousValue: Array<PortableTextBlock>
|
|
5122
|
+
}
|
|
5123
|
+
| {
|
|
5124
|
+
type: 'value changed'
|
|
5125
|
+
value: Array<PortableTextBlock> | undefined
|
|
5126
|
+
}
|
|
5127
|
+
| {
|
|
5128
|
+
type: 'invalid value'
|
|
5129
|
+
resolution: InvalidValueResolution | null
|
|
5130
|
+
value: Array<PortableTextBlock> | undefined
|
|
5131
|
+
}
|
|
5132
|
+
| {
|
|
5133
|
+
type: 'error'
|
|
5134
|
+
name: string
|
|
5135
|
+
description: string
|
|
5136
|
+
data: unknown
|
|
5137
|
+
}
|
|
5138
|
+
| {
|
|
5139
|
+
type: 'selection'
|
|
5140
|
+
selection: EditorSelection
|
|
5141
|
+
}
|
|
5142
|
+
| {
|
|
5143
|
+
type: 'blur'
|
|
5144
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5145
|
+
}
|
|
5146
|
+
| {
|
|
5147
|
+
type: 'focus'
|
|
5148
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5149
|
+
}
|
|
5150
|
+
| {
|
|
5151
|
+
type: 'online'
|
|
5152
|
+
}
|
|
5153
|
+
| {
|
|
5154
|
+
type: 'offline'
|
|
5155
|
+
}
|
|
5156
|
+
| {
|
|
5157
|
+
type: 'loading'
|
|
5158
|
+
}
|
|
5159
|
+
| {
|
|
5160
|
+
type: 'done loading'
|
|
5161
|
+
}
|
|
5162
|
+
>
|
|
5163
|
+
}
|
|
5164
|
+
readonly 'online': {
|
|
5165
|
+
readonly actions: ActionFunction<
|
|
5166
|
+
{
|
|
5167
|
+
behaviors: Array<Behavior>
|
|
5168
|
+
keyGenerator: () => string
|
|
5169
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5170
|
+
schema: PortableTextMemberSchemaTypes
|
|
5171
|
+
},
|
|
5172
|
+
{
|
|
5173
|
+
type: 'online'
|
|
5174
|
+
},
|
|
5175
|
+
| PatchEvent
|
|
5176
|
+
| MutationEvent_2
|
|
5177
|
+
| {
|
|
5178
|
+
type: 'normalizing'
|
|
5179
|
+
}
|
|
5180
|
+
| {
|
|
5181
|
+
type: 'done normalizing'
|
|
5182
|
+
}
|
|
5183
|
+
| {
|
|
5184
|
+
type: 'behavior event'
|
|
5185
|
+
behaviorEvent: BehaviorEvent
|
|
5186
|
+
editor: PortableTextSlateEditor
|
|
5187
|
+
}
|
|
5188
|
+
| {
|
|
5189
|
+
type: 'behavior action intends'
|
|
5190
|
+
editor: PortableTextSlateEditor
|
|
5191
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5192
|
+
}
|
|
5193
|
+
| {
|
|
5194
|
+
type: 'update schema'
|
|
5195
|
+
schema: PortableTextMemberSchemaTypes
|
|
5196
|
+
}
|
|
5197
|
+
| {
|
|
5198
|
+
type: 'update behaviors'
|
|
5199
|
+
behaviors: Array<Behavior>
|
|
5200
|
+
}
|
|
5201
|
+
| {
|
|
5202
|
+
type: 'ready'
|
|
5203
|
+
}
|
|
5204
|
+
| PatchesEvent
|
|
5205
|
+
| {
|
|
5206
|
+
type: 'unset'
|
|
5207
|
+
previousValue: Array<PortableTextBlock>
|
|
5208
|
+
}
|
|
5209
|
+
| {
|
|
5210
|
+
type: 'value changed'
|
|
5211
|
+
value: Array<PortableTextBlock> | undefined
|
|
5212
|
+
}
|
|
5213
|
+
| {
|
|
5214
|
+
type: 'invalid value'
|
|
5215
|
+
resolution: InvalidValueResolution | null
|
|
5216
|
+
value: Array<PortableTextBlock> | undefined
|
|
5217
|
+
}
|
|
5218
|
+
| {
|
|
5219
|
+
type: 'error'
|
|
5220
|
+
name: string
|
|
5221
|
+
description: string
|
|
5222
|
+
data: unknown
|
|
5223
|
+
}
|
|
5224
|
+
| {
|
|
5225
|
+
type: 'selection'
|
|
5226
|
+
selection: EditorSelection
|
|
5227
|
+
}
|
|
5228
|
+
| {
|
|
5229
|
+
type: 'blur'
|
|
5230
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5231
|
+
}
|
|
5232
|
+
| {
|
|
5233
|
+
type: 'focus'
|
|
5234
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5235
|
+
}
|
|
5236
|
+
| {
|
|
5237
|
+
type: 'online'
|
|
5238
|
+
}
|
|
5239
|
+
| {
|
|
5240
|
+
type: 'offline'
|
|
5241
|
+
}
|
|
5242
|
+
| {
|
|
5243
|
+
type: 'loading'
|
|
5244
|
+
}
|
|
5245
|
+
| {
|
|
5246
|
+
type: 'done loading'
|
|
5247
|
+
},
|
|
5248
|
+
undefined,
|
|
5249
|
+
never,
|
|
5250
|
+
never,
|
|
5251
|
+
never,
|
|
5252
|
+
never,
|
|
5253
|
+
| PatchEvent
|
|
5254
|
+
| MutationEvent_2
|
|
5255
|
+
| {
|
|
5256
|
+
type: 'ready'
|
|
5257
|
+
}
|
|
5258
|
+
| PatchesEvent
|
|
5259
|
+
| {
|
|
5260
|
+
type: 'unset'
|
|
5261
|
+
previousValue: Array<PortableTextBlock>
|
|
5262
|
+
}
|
|
5263
|
+
| {
|
|
5264
|
+
type: 'value changed'
|
|
5265
|
+
value: Array<PortableTextBlock> | undefined
|
|
5266
|
+
}
|
|
5267
|
+
| {
|
|
5268
|
+
type: 'invalid value'
|
|
5269
|
+
resolution: InvalidValueResolution | null
|
|
5270
|
+
value: Array<PortableTextBlock> | undefined
|
|
5271
|
+
}
|
|
5272
|
+
| {
|
|
5273
|
+
type: 'error'
|
|
5274
|
+
name: string
|
|
5275
|
+
description: string
|
|
5276
|
+
data: unknown
|
|
5277
|
+
}
|
|
5278
|
+
| {
|
|
5279
|
+
type: 'selection'
|
|
5280
|
+
selection: EditorSelection
|
|
5281
|
+
}
|
|
5282
|
+
| {
|
|
5283
|
+
type: 'blur'
|
|
5284
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5285
|
+
}
|
|
5286
|
+
| {
|
|
5287
|
+
type: 'focus'
|
|
5288
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5289
|
+
}
|
|
5290
|
+
| {
|
|
5291
|
+
type: 'online'
|
|
5292
|
+
}
|
|
5293
|
+
| {
|
|
5294
|
+
type: 'offline'
|
|
5295
|
+
}
|
|
5296
|
+
| {
|
|
5297
|
+
type: 'loading'
|
|
5298
|
+
}
|
|
5299
|
+
| {
|
|
5300
|
+
type: 'done loading'
|
|
5301
|
+
}
|
|
5302
|
+
>
|
|
5303
|
+
}
|
|
5304
|
+
readonly 'offline': {
|
|
5305
|
+
readonly actions: ActionFunction<
|
|
5306
|
+
{
|
|
5307
|
+
behaviors: Array<Behavior>
|
|
5308
|
+
keyGenerator: () => string
|
|
5309
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5310
|
+
schema: PortableTextMemberSchemaTypes
|
|
5311
|
+
},
|
|
5312
|
+
{
|
|
5313
|
+
type: 'offline'
|
|
5314
|
+
},
|
|
5315
|
+
| PatchEvent
|
|
5316
|
+
| MutationEvent_2
|
|
5317
|
+
| {
|
|
5318
|
+
type: 'normalizing'
|
|
5319
|
+
}
|
|
5320
|
+
| {
|
|
5321
|
+
type: 'done normalizing'
|
|
5322
|
+
}
|
|
5323
|
+
| {
|
|
5324
|
+
type: 'behavior event'
|
|
5325
|
+
behaviorEvent: BehaviorEvent
|
|
5326
|
+
editor: PortableTextSlateEditor
|
|
5327
|
+
}
|
|
5328
|
+
| {
|
|
5329
|
+
type: 'behavior action intends'
|
|
5330
|
+
editor: PortableTextSlateEditor
|
|
5331
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5332
|
+
}
|
|
5333
|
+
| {
|
|
5334
|
+
type: 'update schema'
|
|
5335
|
+
schema: PortableTextMemberSchemaTypes
|
|
5336
|
+
}
|
|
5337
|
+
| {
|
|
5338
|
+
type: 'update behaviors'
|
|
5339
|
+
behaviors: Array<Behavior>
|
|
5340
|
+
}
|
|
5341
|
+
| {
|
|
5342
|
+
type: 'ready'
|
|
5343
|
+
}
|
|
5344
|
+
| PatchesEvent
|
|
5345
|
+
| {
|
|
5346
|
+
type: 'unset'
|
|
5347
|
+
previousValue: Array<PortableTextBlock>
|
|
5348
|
+
}
|
|
5349
|
+
| {
|
|
5350
|
+
type: 'value changed'
|
|
5351
|
+
value: Array<PortableTextBlock> | undefined
|
|
5352
|
+
}
|
|
5353
|
+
| {
|
|
5354
|
+
type: 'invalid value'
|
|
5355
|
+
resolution: InvalidValueResolution | null
|
|
5356
|
+
value: Array<PortableTextBlock> | undefined
|
|
5357
|
+
}
|
|
5358
|
+
| {
|
|
5359
|
+
type: 'error'
|
|
5360
|
+
name: string
|
|
5361
|
+
description: string
|
|
5362
|
+
data: unknown
|
|
5363
|
+
}
|
|
5364
|
+
| {
|
|
5365
|
+
type: 'selection'
|
|
5366
|
+
selection: EditorSelection
|
|
5367
|
+
}
|
|
5368
|
+
| {
|
|
5369
|
+
type: 'blur'
|
|
5370
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5371
|
+
}
|
|
5372
|
+
| {
|
|
5373
|
+
type: 'focus'
|
|
5374
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5375
|
+
}
|
|
5376
|
+
| {
|
|
5377
|
+
type: 'online'
|
|
5378
|
+
}
|
|
5379
|
+
| {
|
|
5380
|
+
type: 'offline'
|
|
5381
|
+
}
|
|
5382
|
+
| {
|
|
5383
|
+
type: 'loading'
|
|
5384
|
+
}
|
|
5385
|
+
| {
|
|
5386
|
+
type: 'done loading'
|
|
5387
|
+
},
|
|
5388
|
+
undefined,
|
|
5389
|
+
never,
|
|
5390
|
+
never,
|
|
5391
|
+
never,
|
|
5392
|
+
never,
|
|
5393
|
+
| PatchEvent
|
|
5394
|
+
| MutationEvent_2
|
|
5395
|
+
| {
|
|
5396
|
+
type: 'ready'
|
|
5397
|
+
}
|
|
5398
|
+
| PatchesEvent
|
|
5399
|
+
| {
|
|
5400
|
+
type: 'unset'
|
|
5401
|
+
previousValue: Array<PortableTextBlock>
|
|
5402
|
+
}
|
|
5403
|
+
| {
|
|
5404
|
+
type: 'value changed'
|
|
5405
|
+
value: Array<PortableTextBlock> | undefined
|
|
5406
|
+
}
|
|
5407
|
+
| {
|
|
5408
|
+
type: 'invalid value'
|
|
5409
|
+
resolution: InvalidValueResolution | null
|
|
5410
|
+
value: Array<PortableTextBlock> | undefined
|
|
5411
|
+
}
|
|
5412
|
+
| {
|
|
5413
|
+
type: 'error'
|
|
5414
|
+
name: string
|
|
5415
|
+
description: string
|
|
5416
|
+
data: unknown
|
|
5417
|
+
}
|
|
5418
|
+
| {
|
|
5419
|
+
type: 'selection'
|
|
5420
|
+
selection: EditorSelection
|
|
5421
|
+
}
|
|
5422
|
+
| {
|
|
5423
|
+
type: 'blur'
|
|
5424
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5425
|
+
}
|
|
5426
|
+
| {
|
|
5427
|
+
type: 'focus'
|
|
5428
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5429
|
+
}
|
|
5430
|
+
| {
|
|
5431
|
+
type: 'online'
|
|
5432
|
+
}
|
|
5433
|
+
| {
|
|
5434
|
+
type: 'offline'
|
|
5435
|
+
}
|
|
5436
|
+
| {
|
|
5437
|
+
type: 'loading'
|
|
5438
|
+
}
|
|
5439
|
+
| {
|
|
5440
|
+
type: 'done loading'
|
|
5441
|
+
}
|
|
5442
|
+
>
|
|
5443
|
+
}
|
|
5444
|
+
readonly 'loading': {
|
|
5445
|
+
readonly actions: ActionFunction<
|
|
5446
|
+
{
|
|
5447
|
+
behaviors: Array<Behavior>
|
|
5448
|
+
keyGenerator: () => string
|
|
5449
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5450
|
+
schema: PortableTextMemberSchemaTypes
|
|
5451
|
+
},
|
|
5452
|
+
{
|
|
5453
|
+
type: 'loading'
|
|
5454
|
+
},
|
|
5455
|
+
| PatchEvent
|
|
5456
|
+
| MutationEvent_2
|
|
5457
|
+
| {
|
|
5458
|
+
type: 'normalizing'
|
|
5459
|
+
}
|
|
5460
|
+
| {
|
|
5461
|
+
type: 'done normalizing'
|
|
5462
|
+
}
|
|
5463
|
+
| {
|
|
5464
|
+
type: 'behavior event'
|
|
5465
|
+
behaviorEvent: BehaviorEvent
|
|
5466
|
+
editor: PortableTextSlateEditor
|
|
5467
|
+
}
|
|
5468
|
+
| {
|
|
5469
|
+
type: 'behavior action intends'
|
|
5470
|
+
editor: PortableTextSlateEditor
|
|
5471
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5472
|
+
}
|
|
5473
|
+
| {
|
|
5474
|
+
type: 'update schema'
|
|
5475
|
+
schema: PortableTextMemberSchemaTypes
|
|
5476
|
+
}
|
|
5477
|
+
| {
|
|
5478
|
+
type: 'update behaviors'
|
|
5479
|
+
behaviors: Array<Behavior>
|
|
5480
|
+
}
|
|
5481
|
+
| {
|
|
5482
|
+
type: 'ready'
|
|
5483
|
+
}
|
|
5484
|
+
| PatchesEvent
|
|
5485
|
+
| {
|
|
5486
|
+
type: 'unset'
|
|
5487
|
+
previousValue: Array<PortableTextBlock>
|
|
5488
|
+
}
|
|
5489
|
+
| {
|
|
5490
|
+
type: 'value changed'
|
|
5491
|
+
value: Array<PortableTextBlock> | undefined
|
|
5492
|
+
}
|
|
5493
|
+
| {
|
|
5494
|
+
type: 'invalid value'
|
|
5495
|
+
resolution: InvalidValueResolution | null
|
|
5496
|
+
value: Array<PortableTextBlock> | undefined
|
|
5497
|
+
}
|
|
5498
|
+
| {
|
|
5499
|
+
type: 'error'
|
|
5500
|
+
name: string
|
|
5501
|
+
description: string
|
|
5502
|
+
data: unknown
|
|
5503
|
+
}
|
|
5504
|
+
| {
|
|
5505
|
+
type: 'selection'
|
|
5506
|
+
selection: EditorSelection
|
|
5507
|
+
}
|
|
5508
|
+
| {
|
|
5509
|
+
type: 'blur'
|
|
5510
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5511
|
+
}
|
|
5512
|
+
| {
|
|
5513
|
+
type: 'focus'
|
|
5514
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5515
|
+
}
|
|
5516
|
+
| {
|
|
5517
|
+
type: 'online'
|
|
5518
|
+
}
|
|
5519
|
+
| {
|
|
5520
|
+
type: 'offline'
|
|
5521
|
+
}
|
|
5522
|
+
| {
|
|
5523
|
+
type: 'loading'
|
|
5524
|
+
}
|
|
5525
|
+
| {
|
|
5526
|
+
type: 'done loading'
|
|
5527
|
+
},
|
|
5528
|
+
undefined,
|
|
5529
|
+
never,
|
|
5530
|
+
never,
|
|
5531
|
+
never,
|
|
5532
|
+
never,
|
|
5533
|
+
| PatchEvent
|
|
5534
|
+
| MutationEvent_2
|
|
5535
|
+
| {
|
|
5536
|
+
type: 'ready'
|
|
5537
|
+
}
|
|
5538
|
+
| PatchesEvent
|
|
5539
|
+
| {
|
|
5540
|
+
type: 'unset'
|
|
5541
|
+
previousValue: Array<PortableTextBlock>
|
|
5542
|
+
}
|
|
5543
|
+
| {
|
|
5544
|
+
type: 'value changed'
|
|
5545
|
+
value: Array<PortableTextBlock> | undefined
|
|
5546
|
+
}
|
|
5547
|
+
| {
|
|
5548
|
+
type: 'invalid value'
|
|
5549
|
+
resolution: InvalidValueResolution | null
|
|
5550
|
+
value: Array<PortableTextBlock> | undefined
|
|
5551
|
+
}
|
|
5552
|
+
| {
|
|
5553
|
+
type: 'error'
|
|
5554
|
+
name: string
|
|
5555
|
+
description: string
|
|
5556
|
+
data: unknown
|
|
5557
|
+
}
|
|
5558
|
+
| {
|
|
5559
|
+
type: 'selection'
|
|
5560
|
+
selection: EditorSelection
|
|
5561
|
+
}
|
|
5562
|
+
| {
|
|
5563
|
+
type: 'blur'
|
|
5564
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5565
|
+
}
|
|
5566
|
+
| {
|
|
5567
|
+
type: 'focus'
|
|
5568
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5569
|
+
}
|
|
5570
|
+
| {
|
|
5571
|
+
type: 'online'
|
|
5572
|
+
}
|
|
5573
|
+
| {
|
|
5574
|
+
type: 'offline'
|
|
5575
|
+
}
|
|
5576
|
+
| {
|
|
5577
|
+
type: 'loading'
|
|
5578
|
+
}
|
|
5579
|
+
| {
|
|
5580
|
+
type: 'done loading'
|
|
5581
|
+
}
|
|
5582
|
+
>
|
|
5583
|
+
}
|
|
5584
|
+
readonly 'patches': {
|
|
5585
|
+
readonly actions: ActionFunction<
|
|
5586
|
+
{
|
|
5587
|
+
behaviors: Array<Behavior>
|
|
5588
|
+
keyGenerator: () => string
|
|
5589
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5590
|
+
schema: PortableTextMemberSchemaTypes
|
|
5591
|
+
},
|
|
5592
|
+
PatchesEvent,
|
|
5593
|
+
| PatchEvent
|
|
5594
|
+
| MutationEvent_2
|
|
5595
|
+
| {
|
|
5596
|
+
type: 'normalizing'
|
|
5597
|
+
}
|
|
5598
|
+
| {
|
|
5599
|
+
type: 'done normalizing'
|
|
5600
|
+
}
|
|
5601
|
+
| {
|
|
5602
|
+
type: 'behavior event'
|
|
5603
|
+
behaviorEvent: BehaviorEvent
|
|
5604
|
+
editor: PortableTextSlateEditor
|
|
5605
|
+
}
|
|
5606
|
+
| {
|
|
5607
|
+
type: 'behavior action intends'
|
|
5608
|
+
editor: PortableTextSlateEditor
|
|
5609
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5610
|
+
}
|
|
5611
|
+
| {
|
|
5612
|
+
type: 'update schema'
|
|
5613
|
+
schema: PortableTextMemberSchemaTypes
|
|
5614
|
+
}
|
|
5615
|
+
| {
|
|
5616
|
+
type: 'update behaviors'
|
|
5617
|
+
behaviors: Array<Behavior>
|
|
5618
|
+
}
|
|
5619
|
+
| {
|
|
5620
|
+
type: 'ready'
|
|
5621
|
+
}
|
|
5622
|
+
| PatchesEvent
|
|
5623
|
+
| {
|
|
5624
|
+
type: 'unset'
|
|
5625
|
+
previousValue: Array<PortableTextBlock>
|
|
5626
|
+
}
|
|
5627
|
+
| {
|
|
5628
|
+
type: 'value changed'
|
|
5629
|
+
value: Array<PortableTextBlock> | undefined
|
|
5630
|
+
}
|
|
5631
|
+
| {
|
|
5632
|
+
type: 'invalid value'
|
|
5633
|
+
resolution: InvalidValueResolution | null
|
|
5634
|
+
value: Array<PortableTextBlock> | undefined
|
|
5635
|
+
}
|
|
5636
|
+
| {
|
|
5637
|
+
type: 'error'
|
|
5638
|
+
name: string
|
|
5639
|
+
description: string
|
|
5640
|
+
data: unknown
|
|
5641
|
+
}
|
|
5642
|
+
| {
|
|
5643
|
+
type: 'selection'
|
|
5644
|
+
selection: EditorSelection
|
|
5645
|
+
}
|
|
5646
|
+
| {
|
|
5647
|
+
type: 'blur'
|
|
5648
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5649
|
+
}
|
|
5650
|
+
| {
|
|
5651
|
+
type: 'focus'
|
|
5652
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5653
|
+
}
|
|
5654
|
+
| {
|
|
5655
|
+
type: 'online'
|
|
5656
|
+
}
|
|
5657
|
+
| {
|
|
5658
|
+
type: 'offline'
|
|
5659
|
+
}
|
|
5660
|
+
| {
|
|
5661
|
+
type: 'loading'
|
|
5662
|
+
}
|
|
5663
|
+
| {
|
|
5664
|
+
type: 'done loading'
|
|
5665
|
+
},
|
|
5666
|
+
undefined,
|
|
5667
|
+
never,
|
|
5668
|
+
never,
|
|
5669
|
+
never,
|
|
5670
|
+
never,
|
|
5671
|
+
| PatchEvent
|
|
5672
|
+
| MutationEvent_2
|
|
5673
|
+
| {
|
|
5674
|
+
type: 'ready'
|
|
5675
|
+
}
|
|
5676
|
+
| PatchesEvent
|
|
5677
|
+
| {
|
|
5678
|
+
type: 'unset'
|
|
5679
|
+
previousValue: Array<PortableTextBlock>
|
|
5680
|
+
}
|
|
5681
|
+
| {
|
|
5682
|
+
type: 'value changed'
|
|
5683
|
+
value: Array<PortableTextBlock> | undefined
|
|
5684
|
+
}
|
|
5685
|
+
| {
|
|
5686
|
+
type: 'invalid value'
|
|
5687
|
+
resolution: InvalidValueResolution | null
|
|
5688
|
+
value: Array<PortableTextBlock> | undefined
|
|
5689
|
+
}
|
|
5690
|
+
| {
|
|
5691
|
+
type: 'error'
|
|
5692
|
+
name: string
|
|
5693
|
+
description: string
|
|
5694
|
+
data: unknown
|
|
5695
|
+
}
|
|
5696
|
+
| {
|
|
5697
|
+
type: 'selection'
|
|
5698
|
+
selection: EditorSelection
|
|
5699
|
+
}
|
|
5700
|
+
| {
|
|
5701
|
+
type: 'blur'
|
|
5702
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5703
|
+
}
|
|
5704
|
+
| {
|
|
5705
|
+
type: 'focus'
|
|
5706
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5707
|
+
}
|
|
5708
|
+
| {
|
|
5709
|
+
type: 'online'
|
|
5710
|
+
}
|
|
5711
|
+
| {
|
|
5712
|
+
type: 'offline'
|
|
5713
|
+
}
|
|
5714
|
+
| {
|
|
5715
|
+
type: 'loading'
|
|
5716
|
+
}
|
|
5717
|
+
| {
|
|
5718
|
+
type: 'done loading'
|
|
5719
|
+
}
|
|
5720
|
+
>
|
|
5721
|
+
}
|
|
5722
|
+
readonly 'done loading': {
|
|
5723
|
+
readonly actions: ActionFunction<
|
|
5724
|
+
{
|
|
5725
|
+
behaviors: Array<Behavior>
|
|
5726
|
+
keyGenerator: () => string
|
|
5727
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5728
|
+
schema: PortableTextMemberSchemaTypes
|
|
5729
|
+
},
|
|
5730
|
+
{
|
|
5731
|
+
type: 'done loading'
|
|
5732
|
+
},
|
|
5733
|
+
| PatchEvent
|
|
5734
|
+
| MutationEvent_2
|
|
5735
|
+
| {
|
|
5736
|
+
type: 'normalizing'
|
|
5737
|
+
}
|
|
5738
|
+
| {
|
|
5739
|
+
type: 'done normalizing'
|
|
5740
|
+
}
|
|
5741
|
+
| {
|
|
5742
|
+
type: 'behavior event'
|
|
5743
|
+
behaviorEvent: BehaviorEvent
|
|
5744
|
+
editor: PortableTextSlateEditor
|
|
5745
|
+
}
|
|
5746
|
+
| {
|
|
5747
|
+
type: 'behavior action intends'
|
|
5748
|
+
editor: PortableTextSlateEditor
|
|
5749
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5750
|
+
}
|
|
5751
|
+
| {
|
|
5752
|
+
type: 'update schema'
|
|
5753
|
+
schema: PortableTextMemberSchemaTypes
|
|
5754
|
+
}
|
|
5755
|
+
| {
|
|
5756
|
+
type: 'update behaviors'
|
|
5757
|
+
behaviors: Array<Behavior>
|
|
5758
|
+
}
|
|
5759
|
+
| {
|
|
5760
|
+
type: 'ready'
|
|
5761
|
+
}
|
|
5762
|
+
| PatchesEvent
|
|
5763
|
+
| {
|
|
5764
|
+
type: 'unset'
|
|
5765
|
+
previousValue: Array<PortableTextBlock>
|
|
5766
|
+
}
|
|
5767
|
+
| {
|
|
5768
|
+
type: 'value changed'
|
|
5769
|
+
value: Array<PortableTextBlock> | undefined
|
|
5770
|
+
}
|
|
5771
|
+
| {
|
|
5772
|
+
type: 'invalid value'
|
|
5773
|
+
resolution: InvalidValueResolution | null
|
|
5774
|
+
value: Array<PortableTextBlock> | undefined
|
|
5775
|
+
}
|
|
5776
|
+
| {
|
|
5777
|
+
type: 'error'
|
|
5778
|
+
name: string
|
|
5779
|
+
description: string
|
|
5780
|
+
data: unknown
|
|
5781
|
+
}
|
|
5782
|
+
| {
|
|
5783
|
+
type: 'selection'
|
|
5784
|
+
selection: EditorSelection
|
|
5785
|
+
}
|
|
5786
|
+
| {
|
|
5787
|
+
type: 'blur'
|
|
5788
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5789
|
+
}
|
|
5790
|
+
| {
|
|
5791
|
+
type: 'focus'
|
|
5792
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5793
|
+
}
|
|
5794
|
+
| {
|
|
5795
|
+
type: 'online'
|
|
5796
|
+
}
|
|
5797
|
+
| {
|
|
5798
|
+
type: 'offline'
|
|
5799
|
+
}
|
|
5800
|
+
| {
|
|
5801
|
+
type: 'loading'
|
|
5802
|
+
}
|
|
5803
|
+
| {
|
|
5804
|
+
type: 'done loading'
|
|
5805
|
+
},
|
|
5806
|
+
undefined,
|
|
5807
|
+
never,
|
|
5808
|
+
never,
|
|
5809
|
+
never,
|
|
5810
|
+
never,
|
|
5811
|
+
| PatchEvent
|
|
5812
|
+
| MutationEvent_2
|
|
5813
|
+
| {
|
|
5814
|
+
type: 'ready'
|
|
5815
|
+
}
|
|
5816
|
+
| PatchesEvent
|
|
5817
|
+
| {
|
|
5818
|
+
type: 'unset'
|
|
5819
|
+
previousValue: Array<PortableTextBlock>
|
|
5820
|
+
}
|
|
5821
|
+
| {
|
|
5822
|
+
type: 'value changed'
|
|
5823
|
+
value: Array<PortableTextBlock> | undefined
|
|
5824
|
+
}
|
|
5825
|
+
| {
|
|
5826
|
+
type: 'invalid value'
|
|
5827
|
+
resolution: InvalidValueResolution | null
|
|
5828
|
+
value: Array<PortableTextBlock> | undefined
|
|
5829
|
+
}
|
|
5830
|
+
| {
|
|
5831
|
+
type: 'error'
|
|
5832
|
+
name: string
|
|
5833
|
+
description: string
|
|
5834
|
+
data: unknown
|
|
5835
|
+
}
|
|
5836
|
+
| {
|
|
5837
|
+
type: 'selection'
|
|
5838
|
+
selection: EditorSelection
|
|
5839
|
+
}
|
|
5840
|
+
| {
|
|
5841
|
+
type: 'blur'
|
|
5842
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5843
|
+
}
|
|
5844
|
+
| {
|
|
5845
|
+
type: 'focus'
|
|
5846
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5847
|
+
}
|
|
5848
|
+
| {
|
|
5849
|
+
type: 'online'
|
|
5850
|
+
}
|
|
5851
|
+
| {
|
|
5852
|
+
type: 'offline'
|
|
5853
|
+
}
|
|
5854
|
+
| {
|
|
5855
|
+
type: 'loading'
|
|
5856
|
+
}
|
|
5857
|
+
| {
|
|
5858
|
+
type: 'done loading'
|
|
5859
|
+
}
|
|
5860
|
+
>
|
|
5861
|
+
}
|
|
5862
|
+
readonly 'update behaviors': {
|
|
5863
|
+
readonly actions: 'assign behaviors'
|
|
5864
|
+
}
|
|
5865
|
+
readonly 'update schema': {
|
|
5866
|
+
readonly actions: 'assign schema'
|
|
5867
|
+
}
|
|
5868
|
+
readonly 'behavior event': {
|
|
5869
|
+
readonly actions: 'handle behavior event'
|
|
5870
|
+
}
|
|
5871
|
+
readonly 'behavior action intends': {
|
|
5872
|
+
readonly actions: readonly [
|
|
5873
|
+
({
|
|
5874
|
+
context,
|
|
5875
|
+
event,
|
|
5876
|
+
}: ActionArgs<
|
|
5877
|
+
{
|
|
5878
|
+
behaviors: Array<Behavior>
|
|
5879
|
+
keyGenerator: () => string
|
|
5880
|
+
pendingEvents: Array<PatchEvent | MutationEvent_2>
|
|
5881
|
+
schema: PortableTextMemberSchemaTypes
|
|
5882
|
+
},
|
|
5883
|
+
{
|
|
5884
|
+
type: 'behavior action intends'
|
|
5885
|
+
editor: PortableTextSlateEditor
|
|
5886
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5887
|
+
},
|
|
5888
|
+
| PatchEvent
|
|
5889
|
+
| MutationEvent_2
|
|
5890
|
+
| {
|
|
5891
|
+
type: 'normalizing'
|
|
5892
|
+
}
|
|
5893
|
+
| {
|
|
5894
|
+
type: 'done normalizing'
|
|
5895
|
+
}
|
|
5896
|
+
| {
|
|
5897
|
+
type: 'behavior event'
|
|
5898
|
+
behaviorEvent: BehaviorEvent
|
|
5899
|
+
editor: PortableTextSlateEditor
|
|
5900
|
+
}
|
|
5901
|
+
| {
|
|
5902
|
+
type: 'behavior action intends'
|
|
5903
|
+
editor: PortableTextSlateEditor
|
|
5904
|
+
actionIntends: Array<BehaviorActionIntend>
|
|
5905
|
+
}
|
|
5906
|
+
| {
|
|
5907
|
+
type: 'update schema'
|
|
5908
|
+
schema: PortableTextMemberSchemaTypes
|
|
5909
|
+
}
|
|
5910
|
+
| {
|
|
5911
|
+
type: 'update behaviors'
|
|
5912
|
+
behaviors: Array<Behavior>
|
|
5913
|
+
}
|
|
5914
|
+
| {
|
|
5915
|
+
type: 'ready'
|
|
5916
|
+
}
|
|
5917
|
+
| PatchesEvent
|
|
5918
|
+
| {
|
|
5919
|
+
type: 'unset'
|
|
5920
|
+
previousValue: Array<PortableTextBlock>
|
|
5921
|
+
}
|
|
5922
|
+
| {
|
|
5923
|
+
type: 'value changed'
|
|
5924
|
+
value: Array<PortableTextBlock> | undefined
|
|
5925
|
+
}
|
|
5926
|
+
| {
|
|
5927
|
+
type: 'invalid value'
|
|
5928
|
+
resolution: InvalidValueResolution | null
|
|
5929
|
+
value: Array<PortableTextBlock> | undefined
|
|
5930
|
+
}
|
|
5931
|
+
| {
|
|
5932
|
+
type: 'error'
|
|
5933
|
+
name: string
|
|
5934
|
+
description: string
|
|
5935
|
+
data: unknown
|
|
5936
|
+
}
|
|
5937
|
+
| {
|
|
5938
|
+
type: 'selection'
|
|
5939
|
+
selection: EditorSelection
|
|
5940
|
+
}
|
|
5941
|
+
| {
|
|
5942
|
+
type: 'blur'
|
|
5943
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5944
|
+
}
|
|
5945
|
+
| {
|
|
5946
|
+
type: 'focus'
|
|
5947
|
+
event: FocusEvent_2<HTMLDivElement, Element>
|
|
5948
|
+
}
|
|
5949
|
+
| {
|
|
5950
|
+
type: 'online'
|
|
5951
|
+
}
|
|
5952
|
+
| {
|
|
5953
|
+
type: 'offline'
|
|
5954
|
+
}
|
|
5955
|
+
| {
|
|
5956
|
+
type: 'loading'
|
|
5957
|
+
}
|
|
5958
|
+
| {
|
|
5959
|
+
type: 'done loading'
|
|
5960
|
+
}
|
|
5961
|
+
>) => void,
|
|
5962
|
+
]
|
|
5963
|
+
}
|
|
5964
|
+
}
|
|
5965
|
+
readonly initial: 'pristine'
|
|
5966
|
+
readonly states: {
|
|
5967
|
+
readonly pristine: {
|
|
5968
|
+
readonly initial: 'idle'
|
|
5969
|
+
readonly states: {
|
|
5970
|
+
readonly idle: {
|
|
5971
|
+
readonly on: {
|
|
5972
|
+
readonly normalizing: {
|
|
5973
|
+
readonly target: 'normalizing'
|
|
5974
|
+
}
|
|
5975
|
+
readonly patch: {
|
|
5976
|
+
readonly actions: 'defer event'
|
|
5977
|
+
readonly target: '#editor.dirty'
|
|
5978
|
+
}
|
|
5979
|
+
readonly mutation: {
|
|
5980
|
+
readonly actions: 'defer event'
|
|
5981
|
+
readonly target: '#editor.dirty'
|
|
5982
|
+
}
|
|
5983
|
+
}
|
|
5984
|
+
}
|
|
5985
|
+
readonly normalizing: {
|
|
5986
|
+
readonly on: {
|
|
5987
|
+
readonly 'done normalizing': {
|
|
5988
|
+
readonly target: 'idle'
|
|
5989
|
+
}
|
|
5990
|
+
readonly 'patch': {
|
|
5991
|
+
readonly actions: 'defer event'
|
|
5992
|
+
}
|
|
5993
|
+
readonly 'mutation': {
|
|
5994
|
+
readonly actions: 'defer event'
|
|
5995
|
+
}
|
|
5996
|
+
}
|
|
5997
|
+
}
|
|
5998
|
+
}
|
|
5999
|
+
}
|
|
6000
|
+
readonly dirty: {
|
|
6001
|
+
readonly entry: readonly [
|
|
6002
|
+
'emit pending events',
|
|
6003
|
+
'clear pending events',
|
|
6004
|
+
]
|
|
6005
|
+
readonly on: {
|
|
6006
|
+
readonly patch: {
|
|
6007
|
+
readonly actions: 'emit patch event'
|
|
6008
|
+
}
|
|
6009
|
+
readonly mutation: {
|
|
6010
|
+
readonly actions: 'emit mutation event'
|
|
6011
|
+
}
|
|
6012
|
+
}
|
|
6013
|
+
}
|
|
6014
|
+
}
|
|
6015
|
+
}
|
|
6016
|
+
>
|
|
6017
|
+
>
|
|
6018
|
+
|
|
3429
6019
|
/**
|
|
3430
6020
|
* @public
|
|
3431
6021
|
* Get the current editor object from the React context.
|