@ankhorage/runtime 0.1.1 → 0.2.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 +10 -0
- package/README.md +20 -5
- package/dist/ManifestContext.d.ts +16 -0
- package/dist/ManifestContext.d.ts.map +1 -0
- package/dist/ManifestContext.js +26 -0
- package/dist/ManifestContext.js.map +1 -0
- package/dist/RuntimeRenderer.d.ts +24 -0
- package/dist/RuntimeRenderer.d.ts.map +1 -0
- package/dist/RuntimeRenderer.js +302 -0
- package/dist/RuntimeRenderer.js.map +1 -0
- package/dist/RuntimeRendererConfig.d.ts +54 -0
- package/dist/RuntimeRendererConfig.d.ts.map +1 -0
- package/dist/RuntimeRendererConfig.js +70 -0
- package/dist/RuntimeRendererConfig.js.map +1 -0
- package/dist/RuntimeScreen.d.ts +11 -0
- package/dist/RuntimeScreen.d.ts.map +1 -0
- package/dist/RuntimeScreen.js +59 -0
- package/dist/RuntimeScreen.js.map +1 -0
- package/dist/appExtensionRegistry.d.ts +3 -0
- package/dist/appExtensionRegistry.d.ts.map +1 -0
- package/dist/appExtensionRegistry.js +2 -0
- package/dist/appExtensionRegistry.js.map +1 -0
- package/dist/componentRegistry.d.ts +4 -0
- package/dist/componentRegistry.d.ts.map +1 -0
- package/dist/componentRegistry.js +6 -0
- package/dist/componentRegistry.js.map +1 -0
- package/dist/index.d.ts +27 -52
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -30
- package/dist/index.js.map +1 -1
- package/dist/readme-usage.js +4 -4
- package/dist/readme-usage.js.map +1 -1
- package/dist/registry.d.ts +7 -0
- package/dist/registry.d.ts.map +1 -0
- package/dist/registry.js +49 -0
- package/dist/registry.js.map +1 -0
- package/dist/rendering.d.ts +17 -0
- package/dist/rendering.d.ts.map +1 -0
- package/dist/rendering.js +24 -0
- package/dist/rendering.js.map +1 -0
- package/dist/runtimeActionRegistry.d.ts +55 -0
- package/dist/runtimeActionRegistry.d.ts.map +1 -0
- package/dist/runtimeActionRegistry.js +323 -0
- package/dist/runtimeActionRegistry.js.map +1 -0
- package/dist/runtimeApiLoaders.d.ts +35 -0
- package/dist/runtimeApiLoaders.d.ts.map +1 -0
- package/dist/runtimeApiLoaders.js +218 -0
- package/dist/runtimeApiLoaders.js.map +1 -0
- package/dist/runtimeBindings.d.ts +52 -0
- package/dist/runtimeBindings.d.ts.map +1 -0
- package/dist/runtimeBindings.js +299 -0
- package/dist/runtimeBindings.js.map +1 -0
- package/dist/runtimeDataSourceOperations.d.ts +8 -0
- package/dist/runtimeDataSourceOperations.d.ts.map +1 -0
- package/dist/runtimeDataSourceOperations.js +58 -0
- package/dist/runtimeDataSourceOperations.js.map +1 -0
- package/dist/runtimeDbPersist.d.ts +34 -0
- package/dist/runtimeDbPersist.d.ts.map +1 -0
- package/dist/runtimeDbPersist.js +73 -0
- package/dist/runtimeDbPersist.js.map +1 -0
- package/dist/runtimeEventExecution.d.ts +11 -0
- package/dist/runtimeEventExecution.d.ts.map +1 -0
- package/dist/runtimeEventExecution.js +17 -0
- package/dist/runtimeEventExecution.js.map +1 -0
- package/dist/runtimeManifest.d.ts +53 -0
- package/dist/runtimeManifest.d.ts.map +1 -0
- package/dist/runtimeManifest.js +31 -0
- package/dist/runtimeManifest.js.map +1 -0
- package/dist/runtimeNodeProps.d.ts +22 -0
- package/dist/runtimeNodeProps.d.ts.map +1 -0
- package/dist/runtimeNodeProps.js +130 -0
- package/dist/runtimeNodeProps.js.map +1 -0
- package/dist/runtimeRepeat.d.ts +27 -0
- package/dist/runtimeRepeat.d.ts.map +1 -0
- package/dist/runtimeRepeat.js +129 -0
- package/dist/runtimeRepeat.js.map +1 -0
- package/dist/runtimeRepeatDiagnostics.d.ts +3 -0
- package/dist/runtimeRepeatDiagnostics.d.ts.map +1 -0
- package/dist/runtimeRepeatDiagnostics.js +14 -0
- package/dist/runtimeRepeatDiagnostics.js.map +1 -0
- package/dist/runtimeRepeatEmptyState.d.ts +7 -0
- package/dist/runtimeRepeatEmptyState.d.ts.map +1 -0
- package/dist/runtimeRepeatEmptyState.js +10 -0
- package/dist/runtimeRepeatEmptyState.js.map +1 -0
- package/dist/runtimeScreenLoaders.d.ts +71 -0
- package/dist/runtimeScreenLoaders.d.ts.map +1 -0
- package/dist/runtimeScreenLoaders.js +309 -0
- package/dist/runtimeScreenLoaders.js.map +1 -0
- package/dist/runtimeStateAdapter.d.ts +6 -0
- package/dist/runtimeStateAdapter.d.ts.map +1 -0
- package/dist/runtimeStateAdapter.js +162 -0
- package/dist/runtimeStateAdapter.js.map +1 -0
- package/package.json +19 -2
- package/paradox/badges/npm.svg +3 -3
- package/paradox/components.md +72 -0
- package/paradox/diagrams/architecture-overview.mmd +135 -1
- package/paradox/diagrams/export-graph.mmd +303 -18
- package/paradox/diagrams/module-relationships.mmd +98 -1
- package/paradox/diagrams/sequences/create-component-event-from-handler-args.mmd +24 -0
- package/paradox/diagrams/sequences/execute-db-persist-action.mmd +16 -0
- package/paradox/diagrams/sequences/merge-runtime-renderer-config.mmd +11 -0
- package/paradox/diagrams/sequences/resolve-db-persist-input.mmd +13 -0
- package/paradox/diagrams/sequences/resolve-runtime-action-payload.mmd +8 -0
- package/paradox/diagrams/sequences/resolve-runtime-action-value.mmd +5 -0
- package/paradox/diagrams/sequences/runtime-renderer-config-provider.mmd +17 -0
- package/paradox/diagrams/sequences/runtime-screen.mmd +17 -0
- package/paradox/diagrams/sequences/use-manifest-context.mmd +5 -0
- package/paradox/diagrams/sequences/use-manifest.mmd +5 -0
- package/paradox/diagrams/sequences/use-optional-manifest-context.mmd +5 -0
- package/paradox/diagrams/sequences/use-runtime-renderer-config.mmd +5 -0
- package/paradox/diagrams/sequences/use-runtime-screen-operation-loaders.mmd +5 -0
- package/paradox/diagrams/sequences/validate-runtime-binding-operation-ref.mmd +8 -0
- package/paradox/diagrams/sequences/wrap-runtime-event-props.mmd +5 -0
- package/paradox/exports.json +3385 -330
- package/paradox/exports.md +1051 -38
- package/paradox/index.html +8244 -413
- package/paradox/paradox.json +10013 -511
|
@@ -1,49 +1,334 @@
|
|
|
1
1
|
graph LR
|
|
2
2
|
module_paradox_config_ts["paradox.config.ts"]
|
|
3
|
+
module_src_appExtensionRegistry_ts["src/appExtensionRegistry.ts"]
|
|
4
|
+
module_src_componentRegistry_ts["src/componentRegistry.ts"]
|
|
3
5
|
module_src_index_ts["src/index.ts"]
|
|
6
|
+
module_src_ManifestContext_tsx["src/ManifestContext.tsx"]
|
|
7
|
+
module_src_registry_test_ts["src/registry.test.ts"]
|
|
8
|
+
module_src_registry_tsx["src/registry.tsx"]
|
|
9
|
+
module_src_rendering_test_ts["src/rendering.test.ts"]
|
|
10
|
+
module_src_rendering_ts["src/rendering.ts"]
|
|
11
|
+
module_src_runtimeActionRegistry_test_ts["src/runtimeActionRegistry.test.ts"]
|
|
12
|
+
module_src_runtimeActionRegistry_ts["src/runtimeActionRegistry.ts"]
|
|
13
|
+
module_src_runtimeApiLoaders_test_ts["src/runtimeApiLoaders.test.ts"]
|
|
14
|
+
module_src_runtimeApiLoaders_ts["src/runtimeApiLoaders.ts"]
|
|
15
|
+
module_src_runtimeBindings_test_ts["src/runtimeBindings.test.ts"]
|
|
16
|
+
module_src_runtimeBindings_ts["src/runtimeBindings.ts"]
|
|
17
|
+
module_src_runtimeDataSourceOperations_test_ts["src/runtimeDataSourceOperations.test.ts"]
|
|
18
|
+
module_src_runtimeDataSourceOperations_ts["src/runtimeDataSourceOperations.ts"]
|
|
19
|
+
module_src_runtimeDbPersist_test_ts["src/runtimeDbPersist.test.ts"]
|
|
20
|
+
module_src_runtimeDbPersist_ts["src/runtimeDbPersist.ts"]
|
|
21
|
+
module_src_runtimeEventExecution_test_ts["src/runtimeEventExecution.test.ts"]
|
|
22
|
+
module_src_runtimeEventExecution_ts["src/runtimeEventExecution.ts"]
|
|
23
|
+
module_src_runtimeManifest_ts["src/runtimeManifest.ts"]
|
|
24
|
+
module_src_runtimeNodeProps_test_ts["src/runtimeNodeProps.test.ts"]
|
|
25
|
+
module_src_runtimeNodeProps_ts["src/runtimeNodeProps.ts"]
|
|
26
|
+
module_src_runtimePackageIsolation_test_ts["src/runtimePackageIsolation.test.ts"]
|
|
27
|
+
module_src_RuntimeRenderer_test_ts["src/RuntimeRenderer.test.ts"]
|
|
28
|
+
module_src_RuntimeRenderer_tsx["src/RuntimeRenderer.tsx"]
|
|
29
|
+
module_src_RuntimeRendererConfig_test_tsx["src/RuntimeRendererConfig.test.tsx"]
|
|
30
|
+
module_src_RuntimeRendererConfig_tsx["src/RuntimeRendererConfig.tsx"]
|
|
31
|
+
module_src_runtimeRepeat_test_ts["src/runtimeRepeat.test.ts"]
|
|
32
|
+
module_src_runtimeRepeat_ts["src/runtimeRepeat.ts"]
|
|
33
|
+
module_src_runtimeRepeatDiagnostics_ts["src/runtimeRepeatDiagnostics.ts"]
|
|
34
|
+
module_src_runtimeRepeatEmptyState_ts["src/runtimeRepeatEmptyState.ts"]
|
|
35
|
+
module_src_RuntimeScreen_tsx["src/RuntimeScreen.tsx"]
|
|
36
|
+
module_src_runtimeScreenLoaders_arrayPath_test_ts["src/runtimeScreenLoaders.arrayPath.test.ts"]
|
|
37
|
+
module_src_runtimeScreenLoaders_test_ts["src/runtimeScreenLoaders.test.ts"]
|
|
38
|
+
module_src_runtimeScreenLoaders_ts["src/runtimeScreenLoaders.ts"]
|
|
39
|
+
module_src_runtimeStateAdapter_ts["src/runtimeStateAdapter.ts"]
|
|
40
|
+
module_src_runtimeStateAdapterConfig_test_ts["src/runtimeStateAdapterConfig.test.ts"]
|
|
4
41
|
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
42
|
+
export_APP_EXTENSION_COMPONENT_REGISTRY["APP_EXTENSION_COMPONENT_REGISTRY"]
|
|
43
|
+
module_src_appExtensionRegistry_ts --> export_APP_EXTENSION_COMPONENT_REGISTRY
|
|
44
|
+
export_ComponentRegistry["ComponentRegistry"]
|
|
45
|
+
module_src_componentRegistry_ts --> export_ComponentRegistry
|
|
46
|
+
export_composeRuntimeNodePropsResolver["composeRuntimeNodePropsResolver"]
|
|
47
|
+
module_src_RuntimeRendererConfig_tsx --> export_composeRuntimeNodePropsResolver
|
|
48
|
+
export_composeRuntimeNodePropsResolver -.-> export_RuntimeNodePropsResolver
|
|
49
|
+
export_composeRuntimeRendererWrapNode["composeRuntimeRendererWrapNode"]
|
|
50
|
+
module_src_RuntimeRendererConfig_tsx --> export_composeRuntimeRendererWrapNode
|
|
51
|
+
export_composeRuntimeRendererWrapNode -.-> export_RuntimeRendererWrapArgs
|
|
52
|
+
export_createComponentEventFromHandlerArgs["createComponentEventFromHandlerArgs"]
|
|
53
|
+
module_src_runtimeActionRegistry_ts --> export_createComponentEventFromHandlerArgs
|
|
54
|
+
export_createComponentRegistry["createComponentRegistry"]
|
|
55
|
+
module_src_componentRegistry_ts --> export_createComponentRegistry
|
|
56
|
+
export_createComponentRegistry -.-> export_ComponentRegistry
|
|
57
|
+
export_createDbPersistActionHandler["createDbPersistActionHandler"]
|
|
58
|
+
module_src_runtimeDbPersist_ts --> export_createDbPersistActionHandler
|
|
59
|
+
export_createDbPersistActionHandler -.-> export_RuntimeActionHandler
|
|
60
|
+
export_createDbPersistActionHandler -.-> export_RuntimeDbPersistExecutionResult
|
|
61
|
+
export_createDbPersistAdapterError["createDbPersistAdapterError"]
|
|
62
|
+
module_src_runtimeDbPersist_ts --> export_createDbPersistAdapterError
|
|
63
|
+
export_createDbPersistAdapterError -.-> export_RuntimeDbPersistError
|
|
64
|
+
export_createPendingRuntimeScreenOperationLoaderState["createPendingRuntimeScreenOperationLoaderState"]
|
|
65
|
+
module_src_runtimeScreenLoaders_ts --> export_createPendingRuntimeScreenOperationLoaderState
|
|
66
|
+
export_createPendingRuntimeScreenOperationLoaderState -.-> export_RuntimeScreenOperationLoaderState
|
|
67
|
+
export_createRuntimeActionRegistry["createRuntimeActionRegistry"]
|
|
68
|
+
module_src_runtimeActionRegistry_ts --> export_createRuntimeActionRegistry
|
|
69
|
+
export_createRuntimeActionRegistry -.-> export_RuntimeActionHandler
|
|
70
|
+
export_createRuntimeActionRegistry -.-> export_RuntimeActionHandlers
|
|
71
|
+
export_createRuntimeActionRegistry -.-> export_RuntimeActionRegistry
|
|
72
|
+
export_createRuntimeActionRegistry -.-> export_RuntimeBindingOperationExecutor
|
|
73
|
+
export_createRuntimeActionRegistry -.-> export_RuntimeBindingOperationResultCache
|
|
74
|
+
export_createRuntimeActionRegistry -.-> export_RuntimeBindingOperationResultWriter
|
|
75
|
+
export_createRuntimeBindingOperationKey["createRuntimeBindingOperationKey"]
|
|
76
|
+
module_src_runtimeBindings_ts --> export_createRuntimeBindingOperationKey
|
|
77
|
+
export_createRuntimeDataSourceOperationExecutor["createRuntimeDataSourceOperationExecutor"]
|
|
78
|
+
module_src_runtimeDataSourceOperations_ts --> export_createRuntimeDataSourceOperationExecutor
|
|
79
|
+
export_createRuntimeDataSourceOperationExecutor -.-> export_RuntimeBindingOperationExecutor
|
|
80
|
+
export_createRuntimeDataSourceOperationExecutor -.-> export_RuntimeDataSourceOperationExecutorOptions
|
|
5
81
|
export_createRuntimeManifest["createRuntimeManifest"]
|
|
6
|
-
|
|
82
|
+
module_src_runtimeManifest_ts --> export_createRuntimeManifest
|
|
7
83
|
export_createRuntimeManifest -.-> export_RuntimeManifest
|
|
8
84
|
export_createRuntimeManifest -.-> export_RuntimeManifestInput
|
|
85
|
+
export_createRuntimeMemoryStateAdapter["createRuntimeMemoryStateAdapter"]
|
|
86
|
+
module_src_runtimeStateAdapter_ts --> export_createRuntimeMemoryStateAdapter
|
|
87
|
+
export_createRuntimeMemoryStateAdapter -.-> export_RuntimeMemoryStateAdapterOptions
|
|
88
|
+
export_createRuntimeScreenLoaderRequestKey["createRuntimeScreenLoaderRequestKey"]
|
|
89
|
+
module_src_runtimeScreenLoaders_ts --> export_createRuntimeScreenLoaderRequestKey
|
|
90
|
+
export_createRuntimeScreenLoaderRequestKey -.-> export_RuntimeBindingOperationResultCache
|
|
9
91
|
export_defineRuntimeAction["defineRuntimeAction"]
|
|
10
|
-
|
|
92
|
+
module_src_runtimeManifest_ts --> export_defineRuntimeAction
|
|
11
93
|
export_defineRuntimeAction -.-> export_RuntimeActionDescriptor
|
|
12
94
|
export_defineRuntimeAdapter["defineRuntimeAdapter"]
|
|
13
|
-
|
|
95
|
+
module_src_runtimeManifest_ts --> export_defineRuntimeAdapter
|
|
14
96
|
export_defineRuntimeAdapter -.-> export_RuntimeAdapterDescriptor
|
|
15
97
|
export_defineRuntimeBinding["defineRuntimeBinding"]
|
|
16
|
-
|
|
98
|
+
module_src_runtimeManifest_ts --> export_defineRuntimeBinding
|
|
17
99
|
export_defineRuntimeBinding -.-> export_RuntimeBindingDescriptor
|
|
100
|
+
export_dispatchRuntimeComponentEvent["dispatchRuntimeComponentEvent"]
|
|
101
|
+
module_src_runtimeActionRegistry_ts --> export_dispatchRuntimeComponentEvent
|
|
102
|
+
export_dispatchRuntimeComponentEvent -.-> export_RuntimeActionHandlers
|
|
103
|
+
export_dispatchRuntimeComponentEvent -.-> export_RuntimeComponentEventDispatchArgs
|
|
104
|
+
export_dispatchRuntimeComponentEventWithReporting["dispatchRuntimeComponentEventWithReporting"]
|
|
105
|
+
module_src_runtimeEventExecution_ts --> export_dispatchRuntimeComponentEventWithReporting
|
|
106
|
+
export_dispatchRuntimeComponentEventWithReporting -.-> export_RuntimeActionHandlers
|
|
107
|
+
export_dispatchRuntimeComponentEventWithReporting -.-> export_RuntimeComponentEventDispatchArgs
|
|
108
|
+
export_dispatchRuntimeComponentEventWithReporting -.-> export_RuntimeEventDiagnosticsReporter
|
|
109
|
+
export_executeDbPersistAction["executeDbPersistAction"]
|
|
110
|
+
module_src_runtimeDbPersist_ts --> export_executeDbPersistAction
|
|
111
|
+
export_executeDbPersistAction -.-> export_RuntimeActionHandlerArgs
|
|
112
|
+
export_executeDbPersistAction -.-> export_RuntimeDbPersistExecutionResult
|
|
113
|
+
export_executeRuntimeApiLoaders["executeRuntimeApiLoaders"]
|
|
114
|
+
module_src_runtimeApiLoaders_ts --> export_executeRuntimeApiLoaders
|
|
115
|
+
export_executeRuntimeApiLoaders -.-> export_RuntimeApiLoaderDefinition
|
|
116
|
+
export_executeRuntimeApiLoaders -.-> export_RuntimeApiLoaderExecutionResult
|
|
117
|
+
export_executeRuntimeScreenOperationLoaders["executeRuntimeScreenOperationLoaders"]
|
|
118
|
+
module_src_runtimeScreenLoaders_ts --> export_executeRuntimeScreenOperationLoaders
|
|
119
|
+
export_executeRuntimeScreenOperationLoaders -.-> export_RuntimeBindingOperationExecutor
|
|
120
|
+
export_executeRuntimeScreenOperationLoaders -.-> export_RuntimeBindingOperationResultCache
|
|
121
|
+
export_executeRuntimeScreenOperationLoaders -.-> export_RuntimeBindingResolutionContext
|
|
122
|
+
export_executeRuntimeScreenOperationLoaders -.-> export_RuntimeScreenOperationLoaderExecutionResult
|
|
18
123
|
export_listRuntimeCapabilities["listRuntimeCapabilities"]
|
|
19
|
-
|
|
124
|
+
module_src_runtimeManifest_ts --> export_listRuntimeCapabilities
|
|
125
|
+
export_ManifestContext["ManifestContext"]
|
|
126
|
+
module_src_ManifestContext_tsx --> export_ManifestContext
|
|
127
|
+
export_ManifestProvider["ManifestProvider"]
|
|
128
|
+
module_src_ManifestContext_tsx --> export_ManifestProvider
|
|
129
|
+
export_materializeRuntimeApiLoaderState["materializeRuntimeApiLoaderState"]
|
|
130
|
+
module_src_runtimeApiLoaders_ts --> export_materializeRuntimeApiLoaderState
|
|
131
|
+
export_materializeRuntimeApiLoaderState -.-> export_RuntimeApiLoaderDefinition
|
|
132
|
+
export_materializeRuntimeApiLoaderState -.-> export_RuntimeApiLoaderMaterializationResult
|
|
133
|
+
export_mergeRuntimeRendererConfig["mergeRuntimeRendererConfig"]
|
|
134
|
+
module_src_RuntimeRendererConfig_tsx --> export_mergeRuntimeRendererConfig
|
|
135
|
+
export_mergeRuntimeRendererConfig -.-> export_RuntimeRendererConfig
|
|
136
|
+
export_resolveBindingInputMap["resolveBindingInputMap"]
|
|
137
|
+
module_src_runtimeBindings_ts --> export_resolveBindingInputMap
|
|
138
|
+
export_resolveBindingInputMap -.-> export_RuntimeBindingResolutionContext
|
|
139
|
+
export_resolveDbPersistInput["resolveDbPersistInput"]
|
|
140
|
+
module_src_runtimeDbPersist_ts --> export_resolveDbPersistInput
|
|
141
|
+
export_resolveDbPersistInput -.-> export_RuntimeDbPersistError
|
|
142
|
+
export_resolveRuntimeActionPayload["resolveRuntimeActionPayload"]
|
|
143
|
+
module_src_runtimeActionRegistry_ts --> export_resolveRuntimeActionPayload
|
|
144
|
+
export_resolveRuntimeActionPayload -.-> export_RuntimeActionResolutionArgs
|
|
145
|
+
export_resolveRuntimeActionValue["resolveRuntimeActionValue"]
|
|
146
|
+
module_src_runtimeActionRegistry_ts --> export_resolveRuntimeActionValue
|
|
147
|
+
export_resolveRuntimeActionValue -.-> export_RuntimeActionResolutionArgs
|
|
148
|
+
export_resolveRuntimeBindings["resolveRuntimeBindings"]
|
|
149
|
+
module_src_runtimeBindings_ts --> export_resolveRuntimeBindings
|
|
150
|
+
export_resolveRuntimeBindings -.-> export_RuntimeBindingResolutionArgs
|
|
151
|
+
export_resolveRuntimeBindings -.-> export_RuntimeBindingResolutionResult
|
|
152
|
+
export_resolveRuntimeBindingsAsync["resolveRuntimeBindingsAsync"]
|
|
153
|
+
module_src_runtimeBindings_ts --> export_resolveRuntimeBindingsAsync
|
|
154
|
+
export_resolveRuntimeBindingsAsync -.-> export_RuntimeBindingResolutionArgs
|
|
155
|
+
export_resolveRuntimeBindingsAsync -.-> export_RuntimeBindingResolutionResult
|
|
156
|
+
export_resolveRuntimeBindingValue["resolveRuntimeBindingValue"]
|
|
157
|
+
module_src_runtimeBindings_ts --> export_resolveRuntimeBindingValue
|
|
158
|
+
export_resolveRuntimeBindingValue -.-> export_RuntimeBindingResolutionContext
|
|
159
|
+
export_resolveRuntimeBindingValueSync["resolveRuntimeBindingValueSync"]
|
|
160
|
+
module_src_runtimeBindings_ts --> export_resolveRuntimeBindingValueSync
|
|
161
|
+
export_resolveRuntimeBindingValueSync -.-> export_RuntimeBindingResolutionContext
|
|
162
|
+
export_resolveScreenApiLoaders["resolveScreenApiLoaders"]
|
|
163
|
+
module_src_runtimeScreenLoaders_ts --> export_resolveScreenApiLoaders
|
|
164
|
+
export_resolveScreenOperationLoaders["resolveScreenOperationLoaders"]
|
|
165
|
+
module_src_runtimeScreenLoaders_ts --> export_resolveScreenOperationLoaders
|
|
20
166
|
export_RUNTIME_CAPABILITIES["RUNTIME_CAPABILITIES"]
|
|
21
|
-
|
|
167
|
+
module_src_runtimeManifest_ts --> export_RUNTIME_CAPABILITIES
|
|
22
168
|
export_RUNTIME_MANIFEST_KIND["RUNTIME_MANIFEST_KIND"]
|
|
23
|
-
|
|
169
|
+
module_src_runtimeManifest_ts --> export_RUNTIME_MANIFEST_KIND
|
|
170
|
+
export_RuntimeAction["RuntimeAction"]
|
|
171
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeAction
|
|
24
172
|
export_RuntimeActionDescriptor["RuntimeActionDescriptor"]
|
|
25
|
-
|
|
173
|
+
module_src_runtimeManifest_ts --> export_RuntimeActionDescriptor
|
|
174
|
+
export_RuntimeActionExecutor["RuntimeActionExecutor"]
|
|
175
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeActionExecutor
|
|
176
|
+
export_RuntimeActionHandler["RuntimeActionHandler"]
|
|
177
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeActionHandler
|
|
178
|
+
export_RuntimeActionHandlerArgs["RuntimeActionHandlerArgs"]
|
|
179
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeActionHandlerArgs
|
|
180
|
+
export_RuntimeActionHandlerArgs -.-> export_RuntimeAction
|
|
181
|
+
export_RuntimeActionHandlers["RuntimeActionHandlers"]
|
|
182
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeActionHandlers
|
|
183
|
+
export_RuntimeActionRegistry["RuntimeActionRegistry"]
|
|
184
|
+
module_src_runtimeActionRegistry_ts --> export_RuntimeActionRegistry
|
|
185
|
+
export_RuntimeActionRegistry -.-> export_RuntimeActionHandler
|
|
186
|
+
export_RuntimeActionRegistry -.-> export_RuntimeComponentEventDispatchArgs
|
|
187
|
+
export_RuntimeActionResolutionArgs["RuntimeActionResolutionArgs"]
|
|
188
|
+
module_src_runtimeActionRegistry_ts --> export_RuntimeActionResolutionArgs
|
|
189
|
+
export_RuntimeActionResolutionScope["RuntimeActionResolutionScope"]
|
|
190
|
+
module_src_runtimeActionRegistry_ts --> export_RuntimeActionResolutionScope
|
|
26
191
|
export_RuntimeAdapterDescriptor["RuntimeAdapterDescriptor"]
|
|
27
|
-
|
|
192
|
+
module_src_runtimeManifest_ts --> export_RuntimeAdapterDescriptor
|
|
193
|
+
export_RuntimeApiLoaderDefinition["RuntimeApiLoaderDefinition"]
|
|
194
|
+
module_src_runtimeApiLoaders_ts --> export_RuntimeApiLoaderDefinition
|
|
195
|
+
export_RuntimeApiLoaderDiagnostic["RuntimeApiLoaderDiagnostic"]
|
|
196
|
+
module_src_runtimeApiLoaders_ts --> export_RuntimeApiLoaderDiagnostic
|
|
197
|
+
export_RuntimeApiLoaderExecutionResult["RuntimeApiLoaderExecutionResult"]
|
|
198
|
+
module_src_runtimeApiLoaders_ts --> export_RuntimeApiLoaderExecutionResult
|
|
199
|
+
export_RuntimeApiLoaderExecutionResult -.-> export_RuntimeApiLoaderDiagnostic
|
|
200
|
+
export_RuntimeApiLoaderMaterializationResult["RuntimeApiLoaderMaterializationResult"]
|
|
201
|
+
module_src_runtimeApiLoaders_ts --> export_RuntimeApiLoaderMaterializationResult
|
|
202
|
+
export_RuntimeApiLoaderMaterializationResult -.-> export_RuntimeApiLoaderDiagnostic
|
|
203
|
+
export_RuntimeApiLoaderMode["RuntimeApiLoaderMode"]
|
|
204
|
+
module_src_runtimeApiLoaders_ts --> export_RuntimeApiLoaderMode
|
|
28
205
|
export_RuntimeBindingDescriptor["RuntimeBindingDescriptor"]
|
|
29
|
-
|
|
206
|
+
module_src_runtimeManifest_ts --> export_RuntimeBindingDescriptor
|
|
207
|
+
export_RuntimeBindingOperationExecutionArgs["RuntimeBindingOperationExecutionArgs"]
|
|
208
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingOperationExecutionArgs
|
|
209
|
+
export_RuntimeBindingOperationExecutionResult["RuntimeBindingOperationExecutionResult"]
|
|
210
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingOperationExecutionResult
|
|
211
|
+
export_RuntimeBindingOperationExecutor["RuntimeBindingOperationExecutor"]
|
|
212
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingOperationExecutor
|
|
213
|
+
export_RuntimeBindingOperationKey["RuntimeBindingOperationKey"]
|
|
214
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingOperationKey
|
|
215
|
+
export_RuntimeBindingOperationResultCache["RuntimeBindingOperationResultCache"]
|
|
216
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingOperationResultCache
|
|
217
|
+
export_RuntimeBindingOperationResultWriter["RuntimeBindingOperationResultWriter"]
|
|
218
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingOperationResultWriter
|
|
219
|
+
export_RuntimeBindingResolutionArgs["RuntimeBindingResolutionArgs"]
|
|
220
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingResolutionArgs
|
|
221
|
+
export_RuntimeBindingResolutionArgs -.-> export_RuntimeBindingOperationExecutor
|
|
222
|
+
export_RuntimeBindingResolutionContext["RuntimeBindingResolutionContext"]
|
|
223
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingResolutionContext
|
|
224
|
+
export_RuntimeBindingResolutionContext -.-> export_RuntimeBindingOperationExecutor
|
|
225
|
+
export_RuntimeBindingResolutionResult["RuntimeBindingResolutionResult"]
|
|
226
|
+
module_src_runtimeBindings_ts --> export_RuntimeBindingResolutionResult
|
|
30
227
|
export_RuntimeCapability["RuntimeCapability"]
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
228
|
+
module_src_runtimeManifest_ts --> export_RuntimeCapability
|
|
229
|
+
export_RuntimeComponentEventDispatchArgs["RuntimeComponentEventDispatchArgs"]
|
|
230
|
+
module_src_runtimeActionRegistry_ts --> export_RuntimeComponentEventDispatchArgs
|
|
231
|
+
export_RuntimeComponentEventDispatchArgs -.-> export_RuntimeActionHandler
|
|
232
|
+
export_RuntimeComponentEventDispatchArgs -.-> export_RuntimeBindingOperationExecutor
|
|
233
|
+
export_RuntimeComponentEventDispatchArgs -.-> export_RuntimeBindingOperationResultWriter
|
|
234
|
+
export_RuntimeDataSourceOperationExecutorOptions["RuntimeDataSourceOperationExecutorOptions"]
|
|
235
|
+
module_src_runtimeDataSourceOperations_ts --> export_RuntimeDataSourceOperationExecutorOptions
|
|
236
|
+
export_RuntimeDbPersistError["RuntimeDbPersistError"]
|
|
237
|
+
module_src_runtimeDbPersist_ts --> export_RuntimeDbPersistError
|
|
238
|
+
export_RuntimeDbPersistExecutionResult["RuntimeDbPersistExecutionResult"]
|
|
239
|
+
module_src_runtimeDbPersist_ts --> export_RuntimeDbPersistExecutionResult
|
|
240
|
+
export_RuntimeDbPersistResult["RuntimeDbPersistResult"]
|
|
241
|
+
module_src_runtimeDbPersist_ts --> export_RuntimeDbPersistResult
|
|
34
242
|
export_RuntimeDiagnostic["RuntimeDiagnostic"]
|
|
35
|
-
|
|
243
|
+
module_src_runtimeManifest_ts --> export_RuntimeDiagnostic
|
|
244
|
+
export_RuntimeEventDiagnosticsReporter["RuntimeEventDiagnosticsReporter"]
|
|
245
|
+
module_src_runtimeEventExecution_ts --> export_RuntimeEventDiagnosticsReporter
|
|
246
|
+
export_RuntimeEventPropWrapArgs["RuntimeEventPropWrapArgs"]
|
|
247
|
+
module_src_runtimeActionRegistry_ts --> export_RuntimeEventPropWrapArgs
|
|
248
|
+
export_RuntimeEventPropWrapArgs -.-> export_RuntimeComponentEventDispatchArgs
|
|
36
249
|
export_RuntimeManifest["RuntimeManifest"]
|
|
37
|
-
|
|
250
|
+
module_src_runtimeManifest_ts --> export_RuntimeManifest
|
|
38
251
|
export_RuntimeManifest -.-> export_RuntimeActionDescriptor
|
|
39
252
|
export_RuntimeManifest -.-> export_RuntimeAdapterDescriptor
|
|
40
253
|
export_RuntimeManifest -.-> export_RuntimeBindingDescriptor
|
|
41
|
-
export_RuntimeManifest -.-> export_RuntimeConfig
|
|
42
254
|
export_RuntimeManifest -.-> export_RuntimeDiagnostic
|
|
255
|
+
export_RuntimeManifest -.-> export_RuntimeManifestConfig
|
|
256
|
+
export_RuntimeManifestConfig["RuntimeManifestConfig"]
|
|
257
|
+
module_src_runtimeManifest_ts --> export_RuntimeManifestConfig
|
|
43
258
|
export_RuntimeManifestInput["RuntimeManifestInput"]
|
|
44
|
-
|
|
259
|
+
module_src_runtimeManifest_ts --> export_RuntimeManifestInput
|
|
45
260
|
export_RuntimeManifestInput -.-> export_RuntimeActionDescriptor
|
|
46
261
|
export_RuntimeManifestInput -.-> export_RuntimeAdapterDescriptor
|
|
47
262
|
export_RuntimeManifestInput -.-> export_RuntimeBindingDescriptor
|
|
48
|
-
export_RuntimeManifestInput -.-> export_RuntimeConfig
|
|
49
263
|
export_RuntimeManifestInput -.-> export_RuntimeDiagnostic
|
|
264
|
+
export_RuntimeManifestInput -.-> export_RuntimeManifestConfig
|
|
265
|
+
export_RuntimeMemoryStateAdapterOptions["RuntimeMemoryStateAdapterOptions"]
|
|
266
|
+
module_src_runtimeStateAdapter_ts --> export_RuntimeMemoryStateAdapterOptions
|
|
267
|
+
export_RuntimeNodePropsResolver["RuntimeNodePropsResolver"]
|
|
268
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeNodePropsResolver
|
|
269
|
+
export_RuntimeRenderer["RuntimeRenderer"]
|
|
270
|
+
module_src_RuntimeRenderer_tsx --> export_RuntimeRenderer
|
|
271
|
+
export_RuntimeRenderer -.-> export_RuntimeRendererProps
|
|
272
|
+
export_RuntimeRendererConfig["RuntimeRendererConfig"]
|
|
273
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeRendererConfig
|
|
274
|
+
export_RuntimeRendererConfig -.-> export_ComponentRegistry
|
|
275
|
+
export_RuntimeRendererConfig -.-> export_RuntimeActionHandler
|
|
276
|
+
export_RuntimeRendererConfig -.-> export_RuntimeActionHandlers
|
|
277
|
+
export_RuntimeRendererConfig -.-> export_RuntimeBindingOperationExecutor
|
|
278
|
+
export_RuntimeRendererConfig -.-> export_RuntimeBindingOperationResultWriter
|
|
279
|
+
export_RuntimeRendererConfig -.-> export_RuntimeNodePropsResolver
|
|
280
|
+
export_RuntimeRendererConfig -.-> export_RuntimeRendererWrapArgs
|
|
281
|
+
export_RuntimeRendererConfigProvider["RuntimeRendererConfigProvider"]
|
|
282
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeRendererConfigProvider
|
|
283
|
+
export_RuntimeRendererConfigProvider -.-> export_RuntimeRendererConfig
|
|
284
|
+
export_RuntimeRendererProps["RuntimeRendererProps"]
|
|
285
|
+
module_src_RuntimeRenderer_tsx --> export_RuntimeRendererProps
|
|
286
|
+
export_RuntimeRendererProps -.-> export_ComponentRegistry
|
|
287
|
+
export_RuntimeRendererProps -.-> export_RuntimeActionHandler
|
|
288
|
+
export_RuntimeRendererProps -.-> export_RuntimeBindingOperationExecutor
|
|
289
|
+
export_RuntimeRendererProps -.-> export_RuntimeRendererConfig
|
|
290
|
+
export_RuntimeRendererProps -.-> export_RuntimeRendererWrapArgs
|
|
291
|
+
export_RuntimeRendererWrapArgs["RuntimeRendererWrapArgs"]
|
|
292
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeRendererWrapArgs
|
|
293
|
+
export_RuntimeResolveNodePropsArgs["RuntimeResolveNodePropsArgs"]
|
|
294
|
+
module_src_RuntimeRendererConfig_tsx --> export_RuntimeResolveNodePropsArgs
|
|
295
|
+
export_RuntimeScreen["RuntimeScreen"]
|
|
296
|
+
module_src_RuntimeScreen_tsx --> export_RuntimeScreen
|
|
297
|
+
export_RuntimeScreen -.-> export_RuntimeScreenProps
|
|
298
|
+
export_RuntimeScreenOperationLoaderExecutionResult["RuntimeScreenOperationLoaderExecutionResult"]
|
|
299
|
+
module_src_runtimeScreenLoaders_ts --> export_RuntimeScreenOperationLoaderExecutionResult
|
|
300
|
+
export_RuntimeScreenOperationLoaderState["RuntimeScreenOperationLoaderState"]
|
|
301
|
+
module_src_runtimeScreenLoaders_ts --> export_RuntimeScreenOperationLoaderState
|
|
302
|
+
export_RuntimeScreenProps["RuntimeScreenProps"]
|
|
303
|
+
module_src_RuntimeScreen_tsx --> export_RuntimeScreenProps
|
|
304
|
+
export_RuntimeScreenProps -.-> export_ComponentRegistry
|
|
305
|
+
export_shouldRenderRuntimeRepeatEmptyState["shouldRenderRuntimeRepeatEmptyState"]
|
|
306
|
+
module_src_runtimeRepeatEmptyState_ts --> export_shouldRenderRuntimeRepeatEmptyState
|
|
307
|
+
export_SURFACE_COMPONENT_REGISTRY["SURFACE_COMPONENT_REGISTRY"]
|
|
308
|
+
module_src_registry_tsx --> export_SURFACE_COMPONENT_REGISTRY
|
|
309
|
+
export_useManifest["useManifest"]
|
|
310
|
+
module_src_ManifestContext_tsx --> export_useManifest
|
|
311
|
+
export_useManifestContext["useManifestContext"]
|
|
312
|
+
module_src_ManifestContext_tsx --> export_useManifestContext
|
|
313
|
+
export_useOptionalManifestContext["useOptionalManifestContext"]
|
|
314
|
+
module_src_ManifestContext_tsx --> export_useOptionalManifestContext
|
|
315
|
+
export_useRuntimeApiStateLoaders["useRuntimeApiStateLoaders"]
|
|
316
|
+
module_src_runtimeApiLoaders_ts --> export_useRuntimeApiStateLoaders
|
|
317
|
+
export_useRuntimeApiStateLoaders -.-> export_RuntimeApiLoaderDefinition
|
|
318
|
+
export_useRuntimeApiStateLoaders -.-> export_RuntimeApiLoaderDiagnostic
|
|
319
|
+
export_useRuntimeRendererConfig["useRuntimeRendererConfig"]
|
|
320
|
+
module_src_RuntimeRendererConfig_tsx --> export_useRuntimeRendererConfig
|
|
321
|
+
export_useRuntimeRendererConfig -.-> export_RuntimeRendererConfig
|
|
322
|
+
export_useRuntimeScreenOperationLoaders["useRuntimeScreenOperationLoaders"]
|
|
323
|
+
module_src_runtimeScreenLoaders_ts --> export_useRuntimeScreenOperationLoaders
|
|
324
|
+
export_useRuntimeScreenOperationLoaders -.-> export_RuntimeBindingOperationExecutor
|
|
325
|
+
export_useRuntimeScreenOperationLoaders -.-> export_RuntimeBindingOperationResultCache
|
|
326
|
+
export_useRuntimeScreenOperationLoaders -.-> export_RuntimeBindingResolutionContext
|
|
327
|
+
export_useRuntimeScreenOperationLoaders -.-> export_RuntimeScreenOperationLoaderState
|
|
328
|
+
export_validateRuntimeBindingOperationRef["validateRuntimeBindingOperationRef"]
|
|
329
|
+
module_src_runtimeBindings_ts --> export_validateRuntimeBindingOperationRef
|
|
330
|
+
export_wrapRuntimeEventProps["wrapRuntimeEventProps"]
|
|
331
|
+
module_src_runtimeActionRegistry_ts --> export_wrapRuntimeEventProps
|
|
332
|
+
export_wrapRuntimeEventProps -.-> export_RuntimeEventPropWrapArgs
|
|
333
|
+
export_ZORA_COMPONENT_REGISTRY["ZORA_COMPONENT_REGISTRY"]
|
|
334
|
+
module_src_registry_tsx --> export_ZORA_COMPONENT_REGISTRY
|
|
@@ -1,5 +1,102 @@
|
|
|
1
1
|
graph LR
|
|
2
2
|
module_paradox_config_ts["paradox.config.ts"]
|
|
3
|
+
module_src_appExtensionRegistry_ts["src/appExtensionRegistry.ts"]
|
|
4
|
+
module_src_componentRegistry_ts["src/componentRegistry.ts"]
|
|
3
5
|
module_src_index_ts["src/index.ts"]
|
|
6
|
+
module_src_ManifestContext_tsx["src/ManifestContext.tsx"]
|
|
7
|
+
module_src_registry_test_ts["src/registry.test.ts"]
|
|
8
|
+
module_src_registry_tsx["src/registry.tsx"]
|
|
9
|
+
module_src_rendering_test_ts["src/rendering.test.ts"]
|
|
10
|
+
module_src_rendering_ts["src/rendering.ts"]
|
|
11
|
+
module_src_runtimeActionRegistry_test_ts["src/runtimeActionRegistry.test.ts"]
|
|
12
|
+
module_src_runtimeActionRegistry_ts["src/runtimeActionRegistry.ts"]
|
|
13
|
+
module_src_runtimeApiLoaders_test_ts["src/runtimeApiLoaders.test.ts"]
|
|
14
|
+
module_src_runtimeApiLoaders_ts["src/runtimeApiLoaders.ts"]
|
|
15
|
+
module_src_runtimeBindings_test_ts["src/runtimeBindings.test.ts"]
|
|
16
|
+
module_src_runtimeBindings_ts["src/runtimeBindings.ts"]
|
|
17
|
+
module_src_runtimeDataSourceOperations_test_ts["src/runtimeDataSourceOperations.test.ts"]
|
|
18
|
+
module_src_runtimeDataSourceOperations_ts["src/runtimeDataSourceOperations.ts"]
|
|
19
|
+
module_src_runtimeDbPersist_test_ts["src/runtimeDbPersist.test.ts"]
|
|
20
|
+
module_src_runtimeDbPersist_ts["src/runtimeDbPersist.ts"]
|
|
21
|
+
module_src_runtimeEventExecution_test_ts["src/runtimeEventExecution.test.ts"]
|
|
22
|
+
module_src_runtimeEventExecution_ts["src/runtimeEventExecution.ts"]
|
|
23
|
+
module_src_runtimeManifest_ts["src/runtimeManifest.ts"]
|
|
24
|
+
module_src_runtimeNodeProps_test_ts["src/runtimeNodeProps.test.ts"]
|
|
25
|
+
module_src_runtimeNodeProps_ts["src/runtimeNodeProps.ts"]
|
|
26
|
+
module_src_runtimePackageIsolation_test_ts["src/runtimePackageIsolation.test.ts"]
|
|
27
|
+
module_src_RuntimeRenderer_test_ts["src/RuntimeRenderer.test.ts"]
|
|
28
|
+
module_src_RuntimeRenderer_tsx["src/RuntimeRenderer.tsx"]
|
|
29
|
+
module_src_RuntimeRendererConfig_test_tsx["src/RuntimeRendererConfig.test.tsx"]
|
|
30
|
+
module_src_RuntimeRendererConfig_tsx["src/RuntimeRendererConfig.tsx"]
|
|
31
|
+
module_src_runtimeRepeat_test_ts["src/runtimeRepeat.test.ts"]
|
|
32
|
+
module_src_runtimeRepeat_ts["src/runtimeRepeat.ts"]
|
|
33
|
+
module_src_runtimeRepeatDiagnostics_ts["src/runtimeRepeatDiagnostics.ts"]
|
|
34
|
+
module_src_runtimeRepeatEmptyState_ts["src/runtimeRepeatEmptyState.ts"]
|
|
35
|
+
module_src_RuntimeScreen_tsx["src/RuntimeScreen.tsx"]
|
|
36
|
+
module_src_runtimeScreenLoaders_arrayPath_test_ts["src/runtimeScreenLoaders.arrayPath.test.ts"]
|
|
37
|
+
module_src_runtimeScreenLoaders_test_ts["src/runtimeScreenLoaders.test.ts"]
|
|
38
|
+
module_src_runtimeScreenLoaders_ts["src/runtimeScreenLoaders.ts"]
|
|
39
|
+
module_src_runtimeStateAdapter_ts["src/runtimeStateAdapter.ts"]
|
|
40
|
+
module_src_runtimeStateAdapterConfig_test_ts["src/runtimeStateAdapterConfig.test.ts"]
|
|
4
41
|
module_tests_runtime_test_ts["tests/runtime.test.ts"]
|
|
5
|
-
|
|
42
|
+
module_src_appExtensionRegistry_ts --> module_src_componentRegistry_ts
|
|
43
|
+
module_src_registry_test_ts --> module_src_componentRegistry_ts
|
|
44
|
+
module_src_registry_tsx --> module_src_appExtensionRegistry_ts
|
|
45
|
+
module_src_registry_tsx --> module_src_componentRegistry_ts
|
|
46
|
+
module_src_rendering_test_ts --> module_src_registry_tsx
|
|
47
|
+
module_src_rendering_test_ts --> module_src_rendering_ts
|
|
48
|
+
module_src_rendering_ts --> module_src_registry_tsx
|
|
49
|
+
module_src_runtimeActionRegistry_test_ts --> module_src_runtimeActionRegistry_ts
|
|
50
|
+
module_src_runtimeActionRegistry_test_ts --> module_src_runtimeBindings_ts
|
|
51
|
+
module_src_runtimeActionRegistry_ts --> module_src_runtimeBindings_ts
|
|
52
|
+
module_src_runtimeActionRegistry_ts --> module_src_RuntimeRendererConfig_tsx
|
|
53
|
+
module_src_runtimeApiLoaders_test_ts --> module_src_runtimeApiLoaders_ts
|
|
54
|
+
module_src_runtimeApiLoaders_test_ts --> module_src_runtimeBindings_ts
|
|
55
|
+
module_src_runtimeApiLoaders_test_ts --> module_src_runtimeStateAdapter_ts
|
|
56
|
+
module_src_runtimeApiLoaders_ts --> module_src_runtimeStateAdapter_ts
|
|
57
|
+
module_src_runtimeBindings_test_ts --> module_src_runtimeBindings_ts
|
|
58
|
+
module_src_runtimeBindings_test_ts --> module_src_runtimeNodeProps_ts
|
|
59
|
+
module_src_runtimeDataSourceOperations_test_ts --> module_src_runtimeDataSourceOperations_ts
|
|
60
|
+
module_src_runtimeDataSourceOperations_ts --> module_src_runtimeBindings_ts
|
|
61
|
+
module_src_runtimeDbPersist_test_ts --> module_src_runtimeActionRegistry_ts
|
|
62
|
+
module_src_runtimeDbPersist_test_ts --> module_src_runtimeDbPersist_ts
|
|
63
|
+
module_src_runtimeDbPersist_ts --> module_src_RuntimeRendererConfig_tsx
|
|
64
|
+
module_src_runtimeEventExecution_test_ts --> module_src_runtimeEventExecution_ts
|
|
65
|
+
module_src_runtimeEventExecution_ts --> module_src_runtimeActionRegistry_ts
|
|
66
|
+
module_src_runtimeEventExecution_ts --> module_src_RuntimeRendererConfig_tsx
|
|
67
|
+
module_src_runtimeNodeProps_test_ts --> module_src_runtimeNodeProps_ts
|
|
68
|
+
module_src_runtimeNodeProps_ts --> module_src_runtimeBindings_ts
|
|
69
|
+
module_src_runtimeNodeProps_ts --> module_src_RuntimeRendererConfig_tsx
|
|
70
|
+
module_src_RuntimeRenderer_test_ts --> module_src_runtimeRepeatEmptyState_ts
|
|
71
|
+
module_src_RuntimeRenderer_tsx --> module_src_registry_tsx
|
|
72
|
+
module_src_RuntimeRenderer_tsx --> module_src_rendering_ts
|
|
73
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeActionRegistry_ts
|
|
74
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeBindings_ts
|
|
75
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeDbPersist_ts
|
|
76
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeEventExecution_ts
|
|
77
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeNodeProps_ts
|
|
78
|
+
module_src_RuntimeRenderer_tsx --> module_src_RuntimeRendererConfig_tsx
|
|
79
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeRepeat_ts
|
|
80
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeRepeatDiagnostics_ts
|
|
81
|
+
module_src_RuntimeRenderer_tsx --> module_src_runtimeRepeatEmptyState_ts
|
|
82
|
+
module_src_RuntimeRendererConfig_test_tsx --> module_src_RuntimeRendererConfig_tsx
|
|
83
|
+
module_src_RuntimeRendererConfig_tsx --> module_src_registry_tsx
|
|
84
|
+
module_src_RuntimeRendererConfig_tsx --> module_src_runtimeBindings_ts
|
|
85
|
+
module_src_runtimeRepeat_test_ts --> module_src_runtimeActionRegistry_ts
|
|
86
|
+
module_src_runtimeRepeat_test_ts --> module_src_runtimeBindings_ts
|
|
87
|
+
module_src_runtimeRepeat_test_ts --> module_src_runtimeRepeat_ts
|
|
88
|
+
module_src_runtimeRepeat_ts --> module_src_runtimeBindings_ts
|
|
89
|
+
module_src_RuntimeScreen_tsx --> module_src_registry_tsx
|
|
90
|
+
module_src_RuntimeScreen_tsx --> module_src_runtimeApiLoaders_ts
|
|
91
|
+
module_src_RuntimeScreen_tsx --> module_src_RuntimeRenderer_tsx
|
|
92
|
+
module_src_RuntimeScreen_tsx --> module_src_RuntimeRendererConfig_tsx
|
|
93
|
+
module_src_RuntimeScreen_tsx --> module_src_runtimeScreenLoaders_ts
|
|
94
|
+
module_src_runtimeScreenLoaders_arrayPath_test_ts --> module_src_runtimeBindings_ts
|
|
95
|
+
module_src_runtimeScreenLoaders_arrayPath_test_ts --> module_src_runtimeScreenLoaders_ts
|
|
96
|
+
module_src_runtimeScreenLoaders_test_ts --> module_src_runtimeBindings_ts
|
|
97
|
+
module_src_runtimeScreenLoaders_test_ts --> module_src_runtimeScreenLoaders_ts
|
|
98
|
+
module_src_runtimeScreenLoaders_ts --> module_src_runtimeBindings_ts
|
|
99
|
+
module_src_runtimeStateAdapterConfig_test_ts --> module_src_runtimeBindings_ts
|
|
100
|
+
module_src_runtimeStateAdapterConfig_test_ts --> module_src_runtimeNodeProps_ts
|
|
101
|
+
module_src_runtimeStateAdapterConfig_test_ts --> module_src_RuntimeRendererConfig_tsx
|
|
102
|
+
module_tests_runtime_test_ts --> module_src_runtimeManifest_ts
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_asRecord as asRecord
|
|
3
|
+
participant participant_createBarcodeScannedPayload as createBarcodeScannedPayload
|
|
4
|
+
participant participant_createComponentEventFromHandlerArgs as createComponentEventFromHandlerArgs
|
|
5
|
+
participant participant_createPayloadForEvent as createPayloadForEvent
|
|
6
|
+
participant participant_isRecord as isRecord
|
|
7
|
+
participant participant_localEventNameToEventType as localEventNameToEventType
|
|
8
|
+
participant participant_readItemId as readItemId
|
|
9
|
+
participant_createComponentEventFromHandlerArgs->>participant_createPayloadForEvent: createPayloadForEvent()
|
|
10
|
+
participant_createPayloadForEvent->>participant_createBarcodeScannedPayload: createBarcodeScannedPayload()
|
|
11
|
+
participant_createBarcodeScannedPayload->>participant_isRecord: isRecord()
|
|
12
|
+
participant_isRecord-->>participant_createBarcodeScannedPayload: return
|
|
13
|
+
participant_createBarcodeScannedPayload-->>participant_createPayloadForEvent: return
|
|
14
|
+
participant_createPayloadForEvent->>participant_asRecord: asRecord()
|
|
15
|
+
participant_asRecord->>participant_isRecord: isRecord()
|
|
16
|
+
participant_isRecord-->>participant_asRecord: return
|
|
17
|
+
participant_asRecord-->>participant_createPayloadForEvent: return
|
|
18
|
+
participant_createPayloadForEvent->>participant_readItemId: readItemId()
|
|
19
|
+
participant_readItemId->>participant_isRecord: isRecord()
|
|
20
|
+
participant_isRecord-->>participant_readItemId: return
|
|
21
|
+
participant_readItemId-->>participant_createPayloadForEvent: return
|
|
22
|
+
participant_createPayloadForEvent-->>participant_createComponentEventFromHandlerArgs: return
|
|
23
|
+
participant_createComponentEventFromHandlerArgs->>participant_localEventNameToEventType: localEventNameToEventType()
|
|
24
|
+
participant_localEventNameToEventType-->>participant_createComponentEventFromHandlerArgs: return
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_createError as createError
|
|
3
|
+
participant participant_executeDbPersistAction as executeDbPersistAction
|
|
4
|
+
participant participant_isFieldValueEntry as isFieldValueEntry
|
|
5
|
+
participant participant_isRecord as isRecord
|
|
6
|
+
participant participant_resolveDbPersistInput as resolveDbPersistInput
|
|
7
|
+
participant_executeDbPersistAction->>participant_resolveDbPersistInput: resolveDbPersistInput()
|
|
8
|
+
participant_resolveDbPersistInput->>participant_isRecord: isRecord()
|
|
9
|
+
participant_isRecord-->>participant_resolveDbPersistInput: return
|
|
10
|
+
participant_resolveDbPersistInput->>participant_createError: createError()
|
|
11
|
+
participant_createError-->>participant_resolveDbPersistInput: return
|
|
12
|
+
participant_resolveDbPersistInput->>participant_isFieldValueEntry: isFieldValueEntry()
|
|
13
|
+
participant_isFieldValueEntry->>participant_isRecord: isRecord()
|
|
14
|
+
participant_isRecord-->>participant_isFieldValueEntry: return
|
|
15
|
+
participant_isFieldValueEntry-->>participant_resolveDbPersistInput: return
|
|
16
|
+
participant_resolveDbPersistInput-->>participant_executeDbPersistAction: return
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_composeRuntimeNodePropsResolver as composeRuntimeNodePropsResolver
|
|
3
|
+
participant participant_composeRuntimeRendererWrapNode as composeRuntimeRendererWrapNode
|
|
4
|
+
participant participant_mergeRecordConfig as mergeRecordConfig
|
|
5
|
+
participant participant_mergeRuntimeRendererConfig as mergeRuntimeRendererConfig
|
|
6
|
+
participant_mergeRuntimeRendererConfig->>participant_mergeRecordConfig: mergeRecordConfig()
|
|
7
|
+
participant_mergeRecordConfig-->>participant_mergeRuntimeRendererConfig: return
|
|
8
|
+
participant_mergeRuntimeRendererConfig->>participant_composeRuntimeRendererWrapNode: composeRuntimeRendererWrapNode()
|
|
9
|
+
participant_composeRuntimeRendererWrapNode-->>participant_mergeRuntimeRendererConfig: return
|
|
10
|
+
participant_mergeRuntimeRendererConfig->>participant_composeRuntimeNodePropsResolver: composeRuntimeNodePropsResolver()
|
|
11
|
+
participant_composeRuntimeNodePropsResolver-->>participant_mergeRuntimeRendererConfig: return
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_createError as createError
|
|
3
|
+
participant participant_isFieldValueEntry as isFieldValueEntry
|
|
4
|
+
participant participant_isRecord as isRecord
|
|
5
|
+
participant participant_resolveDbPersistInput as resolveDbPersistInput
|
|
6
|
+
participant_resolveDbPersistInput->>participant_isRecord: isRecord()
|
|
7
|
+
participant_isRecord-->>participant_resolveDbPersistInput: return
|
|
8
|
+
participant_resolveDbPersistInput->>participant_createError: createError()
|
|
9
|
+
participant_createError-->>participant_resolveDbPersistInput: return
|
|
10
|
+
participant_resolveDbPersistInput->>participant_isFieldValueEntry: isFieldValueEntry()
|
|
11
|
+
participant_isFieldValueEntry->>participant_isRecord: isRecord()
|
|
12
|
+
participant_isRecord-->>participant_isFieldValueEntry: return
|
|
13
|
+
participant_isFieldValueEntry-->>participant_resolveDbPersistInput: return
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_isRecord as isRecord
|
|
3
|
+
participant participant_resolveRuntimeActionPayload as resolveRuntimeActionPayload
|
|
4
|
+
participant participant_resolveRuntimeActionValue as resolveRuntimeActionValue
|
|
5
|
+
participant_resolveRuntimeActionPayload->>participant_resolveRuntimeActionValue: resolveRuntimeActionValue()
|
|
6
|
+
participant_resolveRuntimeActionValue->>participant_isRecord: isRecord()
|
|
7
|
+
participant_isRecord-->>participant_resolveRuntimeActionValue: return
|
|
8
|
+
participant_resolveRuntimeActionValue-->>participant_resolveRuntimeActionPayload: return
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_isRecord as isRecord
|
|
3
|
+
participant participant_resolveRuntimeActionValue as resolveRuntimeActionValue
|
|
4
|
+
participant_resolveRuntimeActionValue->>participant_isRecord: isRecord()
|
|
5
|
+
participant_isRecord-->>participant_resolveRuntimeActionValue: return
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_composeRuntimeNodePropsResolver as composeRuntimeNodePropsResolver
|
|
3
|
+
participant participant_composeRuntimeRendererWrapNode as composeRuntimeRendererWrapNode
|
|
4
|
+
participant participant_mergeRecordConfig as mergeRecordConfig
|
|
5
|
+
participant participant_mergeRuntimeRendererConfig as mergeRuntimeRendererConfig
|
|
6
|
+
participant participant_RuntimeRendererConfigProvider as RuntimeRendererConfigProvider
|
|
7
|
+
participant participant_useContext as useContext
|
|
8
|
+
participant_RuntimeRendererConfigProvider->>participant_useContext: useContext()
|
|
9
|
+
participant_useContext-->>participant_RuntimeRendererConfigProvider: return
|
|
10
|
+
participant_RuntimeRendererConfigProvider->>participant_mergeRuntimeRendererConfig: mergeRuntimeRendererConfig()
|
|
11
|
+
participant_mergeRuntimeRendererConfig->>participant_mergeRecordConfig: mergeRecordConfig()
|
|
12
|
+
participant_mergeRecordConfig-->>participant_mergeRuntimeRendererConfig: return
|
|
13
|
+
participant_mergeRuntimeRendererConfig->>participant_composeRuntimeRendererWrapNode: composeRuntimeRendererWrapNode()
|
|
14
|
+
participant_composeRuntimeRendererWrapNode-->>participant_mergeRuntimeRendererConfig: return
|
|
15
|
+
participant_mergeRuntimeRendererConfig->>participant_composeRuntimeNodePropsResolver: composeRuntimeNodePropsResolver()
|
|
16
|
+
participant_composeRuntimeNodePropsResolver-->>participant_mergeRuntimeRendererConfig: return
|
|
17
|
+
participant_mergeRuntimeRendererConfig-->>participant_RuntimeRendererConfigProvider: return
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_createRuntimeScreenOperationLoaderLifecycle as createRuntimeScreenOperationLoaderLifecycle
|
|
3
|
+
participant participant_RuntimeScreen as RuntimeScreen
|
|
4
|
+
participant participant_useContext as useContext
|
|
5
|
+
participant participant_useRuntimeApiStateLoaders as useRuntimeApiStateLoaders
|
|
6
|
+
participant participant_useRuntimeRendererConfig as useRuntimeRendererConfig
|
|
7
|
+
participant participant_useRuntimeScreenOperationLoaders as useRuntimeScreenOperationLoaders
|
|
8
|
+
participant_RuntimeScreen->>participant_useRuntimeRendererConfig: useRuntimeRendererConfig()
|
|
9
|
+
participant_useRuntimeRendererConfig->>participant_useContext: useContext()
|
|
10
|
+
participant_useContext-->>participant_useRuntimeRendererConfig: return
|
|
11
|
+
participant_useRuntimeRendererConfig-->>participant_RuntimeScreen: return
|
|
12
|
+
participant_RuntimeScreen->>participant_useRuntimeApiStateLoaders: useRuntimeApiStateLoaders()
|
|
13
|
+
participant_useRuntimeApiStateLoaders-->>participant_RuntimeScreen: return
|
|
14
|
+
participant_RuntimeScreen->>participant_useRuntimeScreenOperationLoaders: useRuntimeScreenOperationLoaders()
|
|
15
|
+
participant_useRuntimeScreenOperationLoaders->>participant_createRuntimeScreenOperationLoaderLifecycle: createRuntimeScreenOperationLoaderLifecycle()
|
|
16
|
+
participant_createRuntimeScreenOperationLoaderLifecycle-->>participant_useRuntimeScreenOperationLoaders: return
|
|
17
|
+
participant_useRuntimeScreenOperationLoaders-->>participant_RuntimeScreen: return
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_useContext as useContext
|
|
3
|
+
participant participant_useManifestContext as useManifestContext
|
|
4
|
+
participant_useManifestContext->>participant_useContext: useContext()
|
|
5
|
+
participant_useContext-->>participant_useManifestContext: return
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_useContext as useContext
|
|
3
|
+
participant participant_useOptionalManifestContext as useOptionalManifestContext
|
|
4
|
+
participant_useOptionalManifestContext->>participant_useContext: useContext()
|
|
5
|
+
participant_useContext-->>participant_useOptionalManifestContext: return
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_useContext as useContext
|
|
3
|
+
participant participant_useRuntimeRendererConfig as useRuntimeRendererConfig
|
|
4
|
+
participant_useRuntimeRendererConfig->>participant_useContext: useContext()
|
|
5
|
+
participant_useContext-->>participant_useRuntimeRendererConfig: return
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_createRuntimeScreenOperationLoaderLifecycle as createRuntimeScreenOperationLoaderLifecycle
|
|
3
|
+
participant participant_useRuntimeScreenOperationLoaders as useRuntimeScreenOperationLoaders
|
|
4
|
+
participant_useRuntimeScreenOperationLoaders->>participant_createRuntimeScreenOperationLoaderLifecycle: createRuntimeScreenOperationLoaderLifecycle()
|
|
5
|
+
participant_createRuntimeScreenOperationLoaderLifecycle-->>participant_useRuntimeScreenOperationLoaders: return
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
sequenceDiagram
|
|
2
|
+
participant participant_createRuntimeBindingDiagnostic as createRuntimeBindingDiagnostic
|
|
3
|
+
participant participant_resolveRuntimeBindingEndpoint as resolveRuntimeBindingEndpoint
|
|
4
|
+
participant participant_validateRuntimeBindingOperationRef as validateRuntimeBindingOperationRef
|
|
5
|
+
participant_validateRuntimeBindingOperationRef->>participant_createRuntimeBindingDiagnostic: createRuntimeBindingDiagnostic()
|
|
6
|
+
participant_createRuntimeBindingDiagnostic-->>participant_validateRuntimeBindingOperationRef: return
|
|
7
|
+
participant_validateRuntimeBindingOperationRef->>participant_resolveRuntimeBindingEndpoint: resolveRuntimeBindingEndpoint()
|
|
8
|
+
participant_resolveRuntimeBindingEndpoint-->>participant_validateRuntimeBindingOperationRef: return
|