@ankhorage/runtime 2.2.10 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +2 -1
- package/dist/RuntimeRenderer.d.ts.map +1 -1
- package/dist/RuntimeRenderer.js +21 -2
- package/dist/RuntimeRenderer.js.map +1 -1
- package/dist/RuntimeRendererConfig.d.ts +3 -0
- package/dist/RuntimeRendererConfig.d.ts.map +1 -1
- package/dist/RuntimeRendererConfig.js +2 -0
- package/dist/RuntimeRendererConfig.js.map +1 -1
- package/dist/bindings.d.ts +2 -0
- package/dist/bindings.d.ts.map +1 -1
- package/dist/bindings.js +1 -0
- package/dist/bindings.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/runtimeActionRegistry.d.ts +3 -0
- package/dist/runtimeActionRegistry.d.ts.map +1 -1
- package/dist/runtimeActionRegistry.js +44 -8
- package/dist/runtimeActionRegistry.js.map +1 -1
- package/dist/runtimeEventOperationLifecycle.d.ts +44 -0
- package/dist/runtimeEventOperationLifecycle.d.ts.map +1 -0
- package/dist/runtimeEventOperationLifecycle.js +76 -0
- package/dist/runtimeEventOperationLifecycle.js.map +1 -0
- package/package.json +3 -2
- package/paradox/badges/npm.svg +4 -4
- package/paradox/components.md +2 -2
- package/paradox/diagrams/architecture-overview.mmd +9 -0
- package/paradox/diagrams/export-graph.mmd +27 -0
- package/paradox/diagrams/module-relationships.mmd +7 -0
- package/paradox/diagrams/sequences/create-runtime-event-operation-binding-context.mmd +5 -0
- package/paradox/exports.json +312 -29
- package/paradox/exports.md +154 -60
- package/paradox/index.html +704 -87
- package/paradox/paradox.json +712 -68
package/paradox/exports.md
CHANGED
|
@@ -10,7 +10,7 @@ Source: `src/componentRegistry.ts:3:1`
|
|
|
10
10
|
|
|
11
11
|
Kind: `function`
|
|
12
12
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
13
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
13
|
+
Source: `src/RuntimeRendererConfig.tsx:95:1`
|
|
14
14
|
|
|
15
15
|
### Signatures
|
|
16
16
|
|
|
@@ -23,7 +23,7 @@ Source: `src/RuntimeRendererConfig.tsx:89:1`
|
|
|
23
23
|
|
|
24
24
|
Kind: `function`
|
|
25
25
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
26
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
26
|
+
Source: `src/RuntimeRendererConfig.tsx:80:1`
|
|
27
27
|
|
|
28
28
|
### Signatures
|
|
29
29
|
|
|
@@ -36,7 +36,7 @@ Source: `src/RuntimeRendererConfig.tsx:74:1`
|
|
|
36
36
|
|
|
37
37
|
Kind: `function`
|
|
38
38
|
Module: `src/runtimeActionRegistry.ts`
|
|
39
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
39
|
+
Source: `src/runtimeActionRegistry.ts:223:1`
|
|
40
40
|
|
|
41
41
|
### Signatures
|
|
42
42
|
|
|
@@ -96,12 +96,12 @@ Source: `src/runtimeScreenLoaders.ts:82:1`
|
|
|
96
96
|
|
|
97
97
|
Kind: `function`
|
|
98
98
|
Module: `src/runtimeActionRegistry.ts`
|
|
99
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
99
|
+
Source: `src/runtimeActionRegistry.ts:71:1`
|
|
100
100
|
|
|
101
101
|
### Signatures
|
|
102
102
|
|
|
103
|
-
- `(options?: { actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }) => RuntimeActionRegistry`
|
|
104
|
-
- options: `{ actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }` (optional)
|
|
103
|
+
- `(options?: { actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; eventOperationLifecycle?: RuntimeEventOperationLifecycle; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }) => RuntimeActionRegistry`
|
|
104
|
+
- options: `{ actionHandlers?: RuntimeActionHandlers; apis?: ApiDefinitionList; dataBindings?: ComponentDataBindingRegistry; executeAction?: RuntimeActionHandler; executeOperation?: RuntimeBindingOperationExecutor; eventOperationLifecycle?: RuntimeEventOperationLifecycle; operationResults?: RuntimeBindingOperationResultCache; writeOperationResult?: RuntimeBindingOperationResultWriter; }` (optional)
|
|
105
105
|
- returns: `RuntimeActionRegistry`
|
|
106
106
|
|
|
107
107
|
## createRuntimeApiOperationExecutor
|
|
@@ -128,6 +128,31 @@ Source: `src/runtimeBindings.ts:165:1`
|
|
|
128
128
|
- operation: `BindingOperationRef`
|
|
129
129
|
- returns: `string`
|
|
130
130
|
|
|
131
|
+
## createRuntimeEventOperationBindingContext
|
|
132
|
+
|
|
133
|
+
Kind: `function`
|
|
134
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
135
|
+
Source: `src/runtimeEventOperationLifecycle.ts:92:1`
|
|
136
|
+
|
|
137
|
+
### Signatures
|
|
138
|
+
|
|
139
|
+
- `(context: Record<string, unknown> | undefined, state: RuntimeEventOperationState) => Record<string, unknown>`
|
|
140
|
+
- context: `Record<string, unknown> | undefined`
|
|
141
|
+
- state: `RuntimeEventOperationState`
|
|
142
|
+
- returns: `Record<string, unknown>`
|
|
143
|
+
|
|
144
|
+
## createRuntimeEventOperationLifecycle
|
|
145
|
+
|
|
146
|
+
Kind: `function`
|
|
147
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
148
|
+
Source: `src/runtimeEventOperationLifecycle.ts:39:1`
|
|
149
|
+
|
|
150
|
+
### Signatures
|
|
151
|
+
|
|
152
|
+
- `(onStateChange: (state: RuntimeEventOperationState) => void) => RuntimeEventOperationLifecycle`
|
|
153
|
+
- onStateChange: `(state: RuntimeEventOperationState) => void`
|
|
154
|
+
- returns: `RuntimeEventOperationLifecycle`
|
|
155
|
+
|
|
131
156
|
## createRuntimeMemoryStateAdapter
|
|
132
157
|
|
|
133
158
|
Kind: `function`
|
|
@@ -156,7 +181,7 @@ Source: `src/runtimeScreenLoaders.ts:49:1`
|
|
|
156
181
|
|
|
157
182
|
Kind: `function`
|
|
158
183
|
Module: `src/runtimeActionRegistry.ts`
|
|
159
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
184
|
+
Source: `src/runtimeActionRegistry.ts:109:1`
|
|
160
185
|
|
|
161
186
|
### Signatures
|
|
162
187
|
|
|
@@ -200,6 +225,12 @@ Source: `src/runtimeScreenLoaders.ts:178:1`
|
|
|
200
225
|
- args: `{ readonly bindingContext?: Record<string, unknown>; readonly apis?: RuntimeBindingResolutionContext["apis"]; readonly executeOperation?: RuntimeBindingOperationExecutor; readonly operationResults?: RuntimeBindingOperationResultCache; readonly screen: ScreenSpec; readonly loaders: readonly OperationScreenDataLoaderDefinition[]; }`
|
|
201
226
|
- returns: `Promise<RuntimeScreenOperationLoaderExecutionResult>`
|
|
202
227
|
|
|
228
|
+
## IDLE_RUNTIME_EVENT_OPERATION_STATE
|
|
229
|
+
|
|
230
|
+
Kind: `value`
|
|
231
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
232
|
+
Source: `src/runtimeEventOperationLifecycle.ts:27:14`
|
|
233
|
+
|
|
203
234
|
## ManifestContext
|
|
204
235
|
|
|
205
236
|
Kind: `value`
|
|
@@ -222,7 +253,7 @@ Source: `src/ManifestContext.tsx:12:1`
|
|
|
222
253
|
|
|
223
254
|
Kind: `function`
|
|
224
255
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
225
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
256
|
+
Source: `src/RuntimeRendererConfig.tsx:113:1`
|
|
226
257
|
|
|
227
258
|
### Signatures
|
|
228
259
|
|
|
@@ -261,7 +292,7 @@ Source: `src/runtimeDbPersist.ts:68:1`
|
|
|
261
292
|
|
|
262
293
|
Kind: `function`
|
|
263
294
|
Module: `src/runtimeActionRegistry.ts`
|
|
264
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
295
|
+
Source: `src/runtimeActionRegistry.ts:237:1`
|
|
265
296
|
|
|
266
297
|
### Signatures
|
|
267
298
|
|
|
@@ -274,7 +305,7 @@ Source: `src/runtimeActionRegistry.ts:230:1`
|
|
|
274
305
|
|
|
275
306
|
Kind: `function`
|
|
276
307
|
Module: `src/runtimeActionRegistry.ts`
|
|
277
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
308
|
+
Source: `src/runtimeActionRegistry.ts:248:1`
|
|
278
309
|
|
|
279
310
|
### Signatures
|
|
280
311
|
|
|
@@ -335,6 +366,18 @@ Source: `src/runtimeBindings.ts:118:1`
|
|
|
335
366
|
- diagnostics: `DataSourceDiagnostic[]` (optional)
|
|
336
367
|
- returns: `unknown`
|
|
337
368
|
|
|
369
|
+
## resolveRuntimeEventOperationErrorMessage
|
|
370
|
+
|
|
371
|
+
Kind: `function`
|
|
372
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
373
|
+
Source: `src/runtimeEventOperationLifecycle.ts:113:1`
|
|
374
|
+
|
|
375
|
+
### Signatures
|
|
376
|
+
|
|
377
|
+
- `(diagnostics: readonly DataSourceDiagnostic[]) => string`
|
|
378
|
+
- diagnostics: `readonly DataSourceDiagnostic[]`
|
|
379
|
+
- returns: `string`
|
|
380
|
+
|
|
338
381
|
## resolveScreenOperationLoaders
|
|
339
382
|
|
|
340
383
|
Kind: `function`
|
|
@@ -351,7 +394,7 @@ Source: `src/runtimeScreenLoaders.ts:43:1`
|
|
|
351
394
|
|
|
352
395
|
Kind: `unknown`
|
|
353
396
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
354
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
397
|
+
Source: `src/RuntimeRendererConfig.tsx:46:1`
|
|
355
398
|
|
|
356
399
|
## RuntimeActionDescriptor
|
|
357
400
|
|
|
@@ -372,19 +415,19 @@ Source: `src/runtimeManifest.ts:24:1`
|
|
|
372
415
|
|
|
373
416
|
Kind: `unknown`
|
|
374
417
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
375
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
418
|
+
Source: `src/RuntimeRendererConfig.tsx:49:1`
|
|
376
419
|
|
|
377
420
|
## RuntimeActionHandler
|
|
378
421
|
|
|
379
422
|
Kind: `unknown`
|
|
380
423
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
381
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
424
|
+
Source: `src/RuntimeRendererConfig.tsx:47:1`
|
|
382
425
|
|
|
383
426
|
## RuntimeActionHandlerArgs
|
|
384
427
|
|
|
385
428
|
Kind: `type`
|
|
386
429
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
387
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
430
|
+
Source: `src/RuntimeRendererConfig.tsx:39:1`
|
|
388
431
|
|
|
389
432
|
### Members
|
|
390
433
|
|
|
@@ -399,13 +442,13 @@ Source: `src/RuntimeRendererConfig.tsx:35:1`
|
|
|
399
442
|
|
|
400
443
|
Kind: `unknown`
|
|
401
444
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
402
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
445
|
+
Source: `src/RuntimeRendererConfig.tsx:48:1`
|
|
403
446
|
|
|
404
447
|
## RuntimeActionRegistry
|
|
405
448
|
|
|
406
449
|
Kind: `type`
|
|
407
450
|
Module: `src/runtimeActionRegistry.ts`
|
|
408
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
451
|
+
Source: `src/runtimeActionRegistry.ts:34:1`
|
|
409
452
|
|
|
410
453
|
### Members
|
|
411
454
|
|
|
@@ -418,7 +461,7 @@ Source: `src/runtimeActionRegistry.ts:30:1`
|
|
|
418
461
|
|
|
419
462
|
Kind: `type`
|
|
420
463
|
Module: `src/runtimeActionRegistry.ts`
|
|
421
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
464
|
+
Source: `src/runtimeActionRegistry.ts:45:1`
|
|
422
465
|
|
|
423
466
|
### Members
|
|
424
467
|
|
|
@@ -433,7 +476,7 @@ Source: `src/runtimeActionRegistry.ts:41:1`
|
|
|
433
476
|
|
|
434
477
|
Kind: `type`
|
|
435
478
|
Module: `src/runtimeActionRegistry.ts`
|
|
436
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
479
|
+
Source: `src/runtimeActionRegistry.ts:39:1`
|
|
437
480
|
|
|
438
481
|
### Members
|
|
439
482
|
|
|
@@ -606,23 +649,24 @@ Source: `src/runtimeManifest.ts:10:1`
|
|
|
606
649
|
|
|
607
650
|
Kind: `type`
|
|
608
651
|
Module: `src/runtimeActionRegistry.ts`
|
|
609
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
652
|
+
Source: `src/runtimeActionRegistry.ts:49:1`
|
|
610
653
|
|
|
611
654
|
### Members
|
|
612
655
|
|
|
613
|
-
| Name
|
|
614
|
-
|
|
|
615
|
-
| apis
|
|
616
|
-
| context
|
|
617
|
-
| dataBindings
|
|
618
|
-
| event
|
|
619
|
-
| eventName
|
|
620
|
-
|
|
|
621
|
-
|
|
|
622
|
-
|
|
|
623
|
-
|
|
|
624
|
-
|
|
|
625
|
-
|
|
|
656
|
+
| Name | Kind | Type | Required | Description |
|
|
657
|
+
| ----------------------- | -------- | -------------------------------------------------------------------------------------------- | -------- | ----------- |
|
|
658
|
+
| apis | property | `ApiDefinitionList \| undefined` | no | |
|
|
659
|
+
| context | property | `Record<string, unknown> \| undefined` | no | |
|
|
660
|
+
| dataBindings | property | `Readonly<Record<string, import("@ankhorage/contracts").ComponentDataBinding>> \| undefined` | no | |
|
|
661
|
+
| event | property | `ComponentEventDto<string, object>` | yes | |
|
|
662
|
+
| eventName | property | `string \| undefined` | no | |
|
|
663
|
+
| eventOperationLifecycle | property | `RuntimeEventOperationLifecycle \| undefined` | no | |
|
|
664
|
+
| executeAction | property | `RuntimeActionHandler \| undefined` | no | |
|
|
665
|
+
| executeOperation | property | `RuntimeBindingOperationExecutor \| undefined` | no | |
|
|
666
|
+
| node | property | `UiNode` | yes | |
|
|
667
|
+
| operationResults | property | `Readonly<Record<string, BindingValue \| undefined>> \| undefined` | no | |
|
|
668
|
+
| state | property | `Record<string, unknown> \| undefined` | no | |
|
|
669
|
+
| writeOperationResult | property | `RuntimeBindingOperationResultWriter \| undefined` | no | |
|
|
626
670
|
|
|
627
671
|
## RuntimeDbPersistError
|
|
628
672
|
|
|
@@ -683,11 +727,59 @@ Source: `src/runtimeEventExecution.ts:9:1`
|
|
|
683
727
|
| consoleImpl | property | `Pick<Console, "error" \| "warn"> \| undefined` | no | |
|
|
684
728
|
| onDiagnostics | property | `((diagnostics: readonly DataSourceDiagnostic[]) => void) \| undefined` | no | |
|
|
685
729
|
|
|
730
|
+
## RuntimeEventOperationInvocation
|
|
731
|
+
|
|
732
|
+
Kind: `type`
|
|
733
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
734
|
+
Source: `src/runtimeEventOperationLifecycle.ts:14:1`
|
|
735
|
+
|
|
736
|
+
### Members
|
|
737
|
+
|
|
738
|
+
| Name | Kind | Type | Required | Description |
|
|
739
|
+
| ---- | -------- | -------- | -------- | ----------- |
|
|
740
|
+
| id | property | `number` | yes | |
|
|
741
|
+
|
|
742
|
+
## RuntimeEventOperationLifecycle
|
|
743
|
+
|
|
744
|
+
Kind: `type`
|
|
745
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
746
|
+
Source: `src/runtimeEventOperationLifecycle.ts:18:1`
|
|
747
|
+
|
|
748
|
+
### Members
|
|
749
|
+
|
|
750
|
+
| Name | Kind | Type | Required | Description |
|
|
751
|
+
| ------- | ------ | ------------------------------------------------------------------------------------------------------------------------------- | -------- | ----------- |
|
|
752
|
+
| fail | method | `(invocation: RuntimeEventOperationInvocation, message: string) => void` | yes | |
|
|
753
|
+
| start | method | `(args: { readonly nodeId: string; readonly operation: BindingOperationRef; }) => RuntimeEventOperationInvocation \| undefined` | yes | |
|
|
754
|
+
| succeed | method | `(invocation: RuntimeEventOperationInvocation) => void` | yes | |
|
|
755
|
+
|
|
756
|
+
## RuntimeEventOperationState
|
|
757
|
+
|
|
758
|
+
Kind: `type`
|
|
759
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
760
|
+
Source: `src/runtimeEventOperationLifecycle.ts:6:1`
|
|
761
|
+
|
|
762
|
+
### Members
|
|
763
|
+
|
|
764
|
+
| Name | Kind | Type | Required | Description |
|
|
765
|
+
| ------------ | -------- | ---------------------------------- | -------- | ----------- |
|
|
766
|
+
| errorMessage | property | `string` | yes | |
|
|
767
|
+
| loading | property | `boolean` | yes | |
|
|
768
|
+
| nodeId | property | `string \| undefined` | no | |
|
|
769
|
+
| operation | property | `BindingOperationRef \| undefined` | no | |
|
|
770
|
+
| status | property | `RuntimeEventOperationStatus` | yes | |
|
|
771
|
+
|
|
772
|
+
## RuntimeEventOperationStatus
|
|
773
|
+
|
|
774
|
+
Kind: `unknown`
|
|
775
|
+
Module: `src/runtimeEventOperationLifecycle.ts`
|
|
776
|
+
Source: `src/runtimeEventOperationLifecycle.ts:4:1`
|
|
777
|
+
|
|
686
778
|
## RuntimeEventPropWrapArgs
|
|
687
779
|
|
|
688
780
|
Kind: `type`
|
|
689
781
|
Module: `src/runtimeActionRegistry.ts`
|
|
690
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
782
|
+
Source: `src/runtimeActionRegistry.ts:61:1`
|
|
691
783
|
|
|
692
784
|
### Members
|
|
693
785
|
|
|
@@ -790,7 +882,7 @@ Source: `node_modules/@ankhorage/contracts/dist/runtimeCallbacks.d.ts:6:1`
|
|
|
790
882
|
|
|
791
883
|
Kind: `function`
|
|
792
884
|
Module: `src/RuntimeRenderer.tsx`
|
|
793
|
-
Source: `src/RuntimeRenderer.tsx:
|
|
885
|
+
Source: `src/RuntimeRenderer.tsx:81:1`
|
|
794
886
|
|
|
795
887
|
### Signatures
|
|
796
888
|
|
|
@@ -802,36 +894,38 @@ Source: `src/RuntimeRenderer.tsx:76:1`
|
|
|
802
894
|
|
|
803
895
|
Kind: `type`
|
|
804
896
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
805
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
897
|
+
Source: `src/RuntimeRendererConfig.tsx:51:1`
|
|
806
898
|
|
|
807
899
|
### Members
|
|
808
900
|
|
|
809
|
-
| Name
|
|
810
|
-
|
|
|
811
|
-
| actionHandlers
|
|
812
|
-
| apis
|
|
813
|
-
| bindingContext
|
|
814
|
-
| dataBindings
|
|
815
|
-
| dbAdapter
|
|
816
|
-
| dbRealtimeAdapter
|
|
817
|
-
| disableActions
|
|
818
|
-
|
|
|
819
|
-
|
|
|
820
|
-
|
|
|
821
|
-
|
|
|
822
|
-
|
|
|
823
|
-
|
|
|
824
|
-
|
|
|
825
|
-
|
|
|
826
|
-
|
|
|
827
|
-
|
|
|
828
|
-
|
|
|
901
|
+
| Name | Kind | Type | Required | Description |
|
|
902
|
+
| ----------------------- | -------- | -------------------------------------------------------------------------------------------------- | -------- | ----------- |
|
|
903
|
+
| actionHandlers | property | `RuntimeActionHandlers \| undefined` | no | |
|
|
904
|
+
| apis | property | `ApiDefinitionList \| undefined` | no | |
|
|
905
|
+
| bindingContext | property | `Record<string, unknown> \| undefined` | no | |
|
|
906
|
+
| dataBindings | property | `Readonly<Record<string, import("@ankhorage/contracts").ComponentDataBinding>> \| undefined` | no | |
|
|
907
|
+
| dbAdapter | property | `DbAdapter \| undefined` | no | |
|
|
908
|
+
| dbRealtimeAdapter | property | `DbRealtimeAdapter \| undefined` | no | |
|
|
909
|
+
| disableActions | property | `boolean \| undefined` | no | |
|
|
910
|
+
| eventOperationLifecycle | property | `RuntimeEventOperationLifecycle \| undefined` | no | |
|
|
911
|
+
| eventOperationState | property | `RuntimeEventOperationState \| undefined` | no | |
|
|
912
|
+
| executeAction | property | `RuntimeActionHandler \| undefined` | no | |
|
|
913
|
+
| executeOperation | property | `RuntimeBindingOperationExecutor \| undefined` | no | |
|
|
914
|
+
| mediaAssets | property | `Readonly<Record<string, import("@ankhorage/contracts").MediaAsset>> \| undefined` | no | |
|
|
915
|
+
| onDiagnostics | property | `((diagnostics: readonly DataSourceDiagnostic[]) => void) \| undefined` | no | |
|
|
916
|
+
| operationResults | property | `Readonly<Record<string, import("@ankhorage/contracts").BindingValue \| undefined>> \| undefined` | no | |
|
|
917
|
+
| registry | property | `Readonly<Record<string, React.ElementType<any, keyof React.JSX.IntrinsicElements>>> \| undefined` | no | |
|
|
918
|
+
| resolveMediaAsset | property | `RuntimeMediaAssetResolver \| undefined` | no | |
|
|
919
|
+
| resolveNodeProps | property | `RuntimeNodePropsResolver \| undefined` | no | |
|
|
920
|
+
| stateAdapter | property | `StateAdapter \| undefined` | no | |
|
|
921
|
+
| wrapNode | property | `((args: RuntimeRendererWrapArgs) => React.ReactNode) \| undefined` | no | |
|
|
922
|
+
| writeOperationResult | property | `RuntimeBindingOperationResultWriter \| undefined` | no | |
|
|
829
923
|
|
|
830
924
|
## RuntimeRendererConfigProvider
|
|
831
925
|
|
|
832
926
|
Kind: `function`
|
|
833
927
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
834
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
928
|
+
Source: `src/RuntimeRendererConfig.tsx:164:1`
|
|
835
929
|
|
|
836
930
|
### Signatures
|
|
837
931
|
|
|
@@ -843,7 +937,7 @@ Source: `src/RuntimeRendererConfig.tsx:155:1`
|
|
|
843
937
|
|
|
844
938
|
Kind: `type`
|
|
845
939
|
Module: `src/RuntimeRenderer.tsx`
|
|
846
|
-
Source: `src/RuntimeRenderer.tsx:
|
|
940
|
+
Source: `src/RuntimeRenderer.tsx:61:1`
|
|
847
941
|
|
|
848
942
|
### Members
|
|
849
943
|
|
|
@@ -871,7 +965,7 @@ Source: `src/RuntimeRenderer.tsx:56:1`
|
|
|
871
965
|
|
|
872
966
|
Kind: `type`
|
|
873
967
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
874
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
968
|
+
Source: `src/RuntimeRendererConfig.tsx:33:1`
|
|
875
969
|
|
|
876
970
|
### Members
|
|
877
971
|
|
|
@@ -1005,7 +1099,7 @@ Source: `src/ManifestContext.tsx:38:1`
|
|
|
1005
1099
|
|
|
1006
1100
|
Kind: `function`
|
|
1007
1101
|
Module: `src/RuntimeRendererConfig.tsx`
|
|
1008
|
-
Source: `src/RuntimeRendererConfig.tsx:
|
|
1102
|
+
Source: `src/RuntimeRendererConfig.tsx:177:1`
|
|
1009
1103
|
|
|
1010
1104
|
### Signatures
|
|
1011
1105
|
|
|
@@ -1041,7 +1135,7 @@ Source: `src/runtimeApiSelection.ts:14:1`
|
|
|
1041
1135
|
|
|
1042
1136
|
Kind: `function`
|
|
1043
1137
|
Module: `src/runtimeActionRegistry.ts`
|
|
1044
|
-
Source: `src/runtimeActionRegistry.ts:
|
|
1138
|
+
Source: `src/runtimeActionRegistry.ts:186:1`
|
|
1045
1139
|
|
|
1046
1140
|
### Signatures
|
|
1047
1141
|
|