@ankhorage/runtime 1.0.0 → 1.1.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 -2
- package/dist/RuntimeRenderer.d.ts +4 -1
- package/dist/RuntimeRenderer.d.ts.map +1 -1
- package/dist/RuntimeRenderer.js +32 -13
- package/dist/RuntimeRenderer.js.map +1 -1
- package/dist/RuntimeRendererConfig.d.ts +4 -1
- package/dist/RuntimeRendererConfig.d.ts.map +1 -1
- package/dist/RuntimeRendererConfig.js +2 -0
- package/dist/RuntimeRendererConfig.js.map +1 -1
- package/dist/RuntimeScreen.d.ts.map +1 -1
- package/dist/RuntimeScreen.js +1 -1
- package/dist/RuntimeScreen.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/readme-usage.js +1 -1
- package/dist/readme-usage.js.map +1 -1
- package/dist/runtimeMedia.d.ts +13 -0
- package/dist/runtimeMedia.d.ts.map +1 -0
- package/dist/runtimeMedia.js +80 -0
- package/dist/runtimeMedia.js.map +1 -0
- package/dist/runtimeMediaCache.d.ts +8 -0
- package/dist/runtimeMediaCache.d.ts.map +1 -0
- package/dist/runtimeMediaCache.js +14 -0
- package/dist/runtimeMediaCache.js.map +1 -0
- package/dist/useRuntimeMediaProps.d.ts +9 -0
- package/dist/useRuntimeMediaProps.d.ts.map +1 -0
- package/dist/useRuntimeMediaProps.js +61 -0
- package/dist/useRuntimeMediaProps.js.map +1 -0
- package/package.json +4 -3
- package/paradox/badges/npm.svg +3 -3
- package/paradox/components.md +4 -2
- package/paradox/diagrams/architecture-overview.mmd +18 -0
- package/paradox/diagrams/export-graph.mmd +13 -19
- package/paradox/diagrams/module-relationships.mmd +13 -0
- package/paradox/exports.json +116 -213
- package/paradox/exports.md +120 -163
- package/paradox/index.html +500 -305
- package/paradox/paradox.json +674 -319
package/paradox/paradox.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{
|
|
13
13
|
"id": "npm",
|
|
14
14
|
"label": "npm",
|
|
15
|
-
"value": "
|
|
15
|
+
"value": "v1.0.0",
|
|
16
16
|
"color": "cb3837"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
@@ -59,15 +59,18 @@
|
|
|
59
59
|
}
|
|
60
60
|
],
|
|
61
61
|
"usage": null,
|
|
62
|
+
"readmeUsageDescription": null,
|
|
62
63
|
"readmeUsage": [
|
|
63
64
|
{
|
|
64
65
|
"title": "Framework-neutral runtime boundary",
|
|
65
66
|
"description": "Framework-neutral runtime boundary\n\n`@ankhorage/runtime` owns platform-neutral runtime renderer contracts for generated apps.\n\nHost apps keep router, theme, and other framework-specific behavior outside this package and\ninject it at the runtime boundary.",
|
|
66
67
|
"language": "ts",
|
|
67
|
-
"code": "import { createRuntimeManifest } from './
|
|
68
|
+
"code": "import { createRuntimeManifest } from './runtimeManifest.js';\n\ncreateRuntimeManifest({\n config: {\n appId: 'demo',\n },\n});",
|
|
68
69
|
"sourcePath": "src/readme-usage.ts"
|
|
69
70
|
}
|
|
70
71
|
],
|
|
72
|
+
"readmeCli": null,
|
|
73
|
+
"readmeConfig": null,
|
|
71
74
|
"config": null,
|
|
72
75
|
"entrypoints": ["src/index.ts"],
|
|
73
76
|
"modules": [
|
|
@@ -99,17 +102,12 @@
|
|
|
99
102
|
"createRuntimeActionRegistry",
|
|
100
103
|
"createRuntimeBindingOperationKey",
|
|
101
104
|
"createRuntimeDataSourceOperationExecutor",
|
|
102
|
-
"createRuntimeManifest",
|
|
103
105
|
"createRuntimeMemoryStateAdapter",
|
|
104
106
|
"createRuntimeScreenLoaderRequestKey",
|
|
105
|
-
"defineRuntimeAction",
|
|
106
|
-
"defineRuntimeAdapter",
|
|
107
|
-
"defineRuntimeBinding",
|
|
108
107
|
"dispatchRuntimeComponentEvent",
|
|
109
108
|
"dispatchRuntimeComponentEventWithReporting",
|
|
110
109
|
"executeDbPersistAction",
|
|
111
110
|
"executeRuntimeScreenOperationLoaders",
|
|
112
|
-
"listRuntimeCapabilities",
|
|
113
111
|
"ManifestContext",
|
|
114
112
|
"ManifestProvider",
|
|
115
113
|
"mergeRuntimeRendererConfig",
|
|
@@ -122,8 +120,6 @@
|
|
|
122
120
|
"resolveRuntimeBindingValue",
|
|
123
121
|
"resolveRuntimeBindingValueSync",
|
|
124
122
|
"resolveScreenOperationLoaders",
|
|
125
|
-
"RUNTIME_CAPABILITIES",
|
|
126
|
-
"RUNTIME_MANIFEST_KIND",
|
|
127
123
|
"RuntimeAction",
|
|
128
124
|
"RuntimeActionDescriptor",
|
|
129
125
|
"RuntimeActionExecutor",
|
|
@@ -156,6 +152,8 @@
|
|
|
156
152
|
"RuntimeManifest",
|
|
157
153
|
"RuntimeManifestConfig",
|
|
158
154
|
"RuntimeManifestInput",
|
|
155
|
+
"RuntimeMediaAssetResolver",
|
|
156
|
+
"RuntimeMediaAssetResolverArgs",
|
|
159
157
|
"RuntimeMemoryStateAdapterOptions",
|
|
160
158
|
"RuntimeNodePropsResolver",
|
|
161
159
|
"RuntimeRenderer",
|
|
@@ -163,6 +161,7 @@
|
|
|
163
161
|
"RuntimeRendererConfigProvider",
|
|
164
162
|
"RuntimeRendererProps",
|
|
165
163
|
"RuntimeRendererWrapArgs",
|
|
164
|
+
"RuntimeResolvedMediaValue",
|
|
166
165
|
"RuntimeResolveNodePropsArgs",
|
|
167
166
|
"RuntimeScreen",
|
|
168
167
|
"RuntimeScreenOperationLoaderExecutionResult",
|
|
@@ -350,6 +349,40 @@
|
|
|
350
349
|
"RuntimeManifestInput"
|
|
351
350
|
]
|
|
352
351
|
},
|
|
352
|
+
{
|
|
353
|
+
"path": "src/runtimeMedia.test.ts",
|
|
354
|
+
"isEntrypoint": false,
|
|
355
|
+
"dependencies": ["src/runtimeMedia.ts"],
|
|
356
|
+
"exports": []
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"path": "src/runtimeMedia.ts",
|
|
360
|
+
"isEntrypoint": false,
|
|
361
|
+
"dependencies": [],
|
|
362
|
+
"exports": [
|
|
363
|
+
"collectRuntimeMediaReferenceIds",
|
|
364
|
+
"createRuntimeMediaResolutionCache",
|
|
365
|
+
"createSyncRuntimeMediaResolutionMap",
|
|
366
|
+
"replaceRuntimeMediaReferences",
|
|
367
|
+
"resolveRuntimeMediaAsset",
|
|
368
|
+
"RuntimeMediaAssetResolver",
|
|
369
|
+
"RuntimeMediaAssetResolverArgs",
|
|
370
|
+
"RuntimeMediaResolutionCache",
|
|
371
|
+
"RuntimeResolvedMediaValue"
|
|
372
|
+
]
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"path": "src/runtimeMediaCache.tsx",
|
|
376
|
+
"isEntrypoint": false,
|
|
377
|
+
"dependencies": ["src/runtimeMedia.ts"],
|
|
378
|
+
"exports": ["RuntimeMediaResolutionCacheProvider", "useRuntimeMediaResolutionCache"]
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"path": "src/runtimeMediaConfig.test.ts",
|
|
382
|
+
"isEntrypoint": false,
|
|
383
|
+
"dependencies": ["src/RuntimeRendererConfig.tsx"],
|
|
384
|
+
"exports": []
|
|
385
|
+
},
|
|
353
386
|
{
|
|
354
387
|
"path": "src/runtimeNodeProps.test.ts",
|
|
355
388
|
"isEntrypoint": false,
|
|
@@ -384,11 +417,14 @@
|
|
|
384
417
|
"src/runtimeBindings.ts",
|
|
385
418
|
"src/runtimeDbPersist.ts",
|
|
386
419
|
"src/runtimeEventExecution.ts",
|
|
420
|
+
"src/runtimeMedia.ts",
|
|
421
|
+
"src/runtimeMediaCache.tsx",
|
|
387
422
|
"src/runtimeNodeProps.ts",
|
|
388
423
|
"src/RuntimeRendererConfig.tsx",
|
|
389
424
|
"src/runtimeRepeat.ts",
|
|
390
425
|
"src/runtimeRepeatDiagnostics.ts",
|
|
391
|
-
"src/runtimeRepeatEmptyState.ts"
|
|
426
|
+
"src/runtimeRepeatEmptyState.ts",
|
|
427
|
+
"src/useRuntimeMediaProps.ts"
|
|
392
428
|
],
|
|
393
429
|
"exports": ["RuntimeRenderer", "RuntimeRendererProps"]
|
|
394
430
|
},
|
|
@@ -401,7 +437,7 @@
|
|
|
401
437
|
{
|
|
402
438
|
"path": "src/RuntimeRendererConfig.tsx",
|
|
403
439
|
"isEntrypoint": false,
|
|
404
|
-
"dependencies": ["src/registry.tsx", "src/runtimeBindings.ts"],
|
|
440
|
+
"dependencies": ["src/registry.tsx", "src/runtimeBindings.ts", "src/runtimeMedia.ts"],
|
|
405
441
|
"exports": [
|
|
406
442
|
"composeRuntimeNodePropsResolver",
|
|
407
443
|
"composeRuntimeRendererWrapNode",
|
|
@@ -514,6 +550,12 @@
|
|
|
514
550
|
],
|
|
515
551
|
"exports": []
|
|
516
552
|
},
|
|
553
|
+
{
|
|
554
|
+
"path": "src/useRuntimeMediaProps.ts",
|
|
555
|
+
"isEntrypoint": false,
|
|
556
|
+
"dependencies": ["src/runtimeMedia.ts"],
|
|
557
|
+
"exports": ["useRuntimeMediaProps"]
|
|
558
|
+
},
|
|
517
559
|
{
|
|
518
560
|
"path": "tests/runtime.test.ts",
|
|
519
561
|
"isEntrypoint": false,
|
|
@@ -549,7 +591,7 @@
|
|
|
549
591
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
550
592
|
"sourceLocation": {
|
|
551
593
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
552
|
-
"line":
|
|
594
|
+
"line": 92,
|
|
553
595
|
"column": 1
|
|
554
596
|
},
|
|
555
597
|
"exportPaths": ["src/index.ts"],
|
|
@@ -587,7 +629,7 @@
|
|
|
587
629
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
588
630
|
"sourceLocation": {
|
|
589
631
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
590
|
-
"line":
|
|
632
|
+
"line": 77,
|
|
591
633
|
"column": 1
|
|
592
634
|
},
|
|
593
635
|
"exportPaths": ["src/index.ts"],
|
|
@@ -882,38 +924,6 @@
|
|
|
882
924
|
"members": [],
|
|
883
925
|
"structuredRows": []
|
|
884
926
|
},
|
|
885
|
-
{
|
|
886
|
-
"name": "createRuntimeManifest",
|
|
887
|
-
"description": null,
|
|
888
|
-
"isReadme": false,
|
|
889
|
-
"examples": [],
|
|
890
|
-
"kind": "function",
|
|
891
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
892
|
-
"sourceLocation": {
|
|
893
|
-
"filePath": "src/runtimeManifest.ts",
|
|
894
|
-
"line": 81,
|
|
895
|
-
"column": 1
|
|
896
|
-
},
|
|
897
|
-
"exportPaths": ["src/index.ts"],
|
|
898
|
-
"relatedSymbols": ["RuntimeManifest", "RuntimeManifestInput"],
|
|
899
|
-
"signatures": [
|
|
900
|
-
{
|
|
901
|
-
"label": "(input: RuntimeManifestInput) => RuntimeManifest",
|
|
902
|
-
"parameters": [
|
|
903
|
-
{
|
|
904
|
-
"name": "input",
|
|
905
|
-
"type": "RuntimeManifestInput",
|
|
906
|
-
"required": true,
|
|
907
|
-
"description": null
|
|
908
|
-
}
|
|
909
|
-
],
|
|
910
|
-
"returnType": "RuntimeManifest",
|
|
911
|
-
"returnDescription": null
|
|
912
|
-
}
|
|
913
|
-
],
|
|
914
|
-
"members": [],
|
|
915
|
-
"structuredRows": []
|
|
916
|
-
},
|
|
917
927
|
{
|
|
918
928
|
"name": "createRuntimeMemoryStateAdapter",
|
|
919
929
|
"description": null,
|
|
@@ -978,102 +988,6 @@
|
|
|
978
988
|
"members": [],
|
|
979
989
|
"structuredRows": []
|
|
980
990
|
},
|
|
981
|
-
{
|
|
982
|
-
"name": "defineRuntimeAction",
|
|
983
|
-
"description": null,
|
|
984
|
-
"isReadme": false,
|
|
985
|
-
"examples": [],
|
|
986
|
-
"kind": "function",
|
|
987
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
988
|
-
"sourceLocation": {
|
|
989
|
-
"filePath": "src/runtimeManifest.ts",
|
|
990
|
-
"line": 63,
|
|
991
|
-
"column": 1
|
|
992
|
-
},
|
|
993
|
-
"exportPaths": ["src/index.ts"],
|
|
994
|
-
"relatedSymbols": ["RuntimeActionDescriptor"],
|
|
995
|
-
"signatures": [
|
|
996
|
-
{
|
|
997
|
-
"label": "(action: RuntimeActionDescriptor<Data>) => RuntimeActionDescriptor<Data>",
|
|
998
|
-
"parameters": [
|
|
999
|
-
{
|
|
1000
|
-
"name": "action",
|
|
1001
|
-
"type": "RuntimeActionDescriptor<Data>",
|
|
1002
|
-
"required": true,
|
|
1003
|
-
"description": null
|
|
1004
|
-
}
|
|
1005
|
-
],
|
|
1006
|
-
"returnType": "RuntimeActionDescriptor<Data>",
|
|
1007
|
-
"returnDescription": null
|
|
1008
|
-
}
|
|
1009
|
-
],
|
|
1010
|
-
"members": [],
|
|
1011
|
-
"structuredRows": []
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"name": "defineRuntimeAdapter",
|
|
1015
|
-
"description": null,
|
|
1016
|
-
"isReadme": false,
|
|
1017
|
-
"examples": [],
|
|
1018
|
-
"kind": "function",
|
|
1019
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
1020
|
-
"sourceLocation": {
|
|
1021
|
-
"filePath": "src/runtimeManifest.ts",
|
|
1022
|
-
"line": 69,
|
|
1023
|
-
"column": 1
|
|
1024
|
-
},
|
|
1025
|
-
"exportPaths": ["src/index.ts"],
|
|
1026
|
-
"relatedSymbols": ["RuntimeAdapterDescriptor"],
|
|
1027
|
-
"signatures": [
|
|
1028
|
-
{
|
|
1029
|
-
"label": "(adapter: RuntimeAdapterDescriptor<Options>) => RuntimeAdapterDescriptor<Options>",
|
|
1030
|
-
"parameters": [
|
|
1031
|
-
{
|
|
1032
|
-
"name": "adapter",
|
|
1033
|
-
"type": "RuntimeAdapterDescriptor<Options>",
|
|
1034
|
-
"required": true,
|
|
1035
|
-
"description": null
|
|
1036
|
-
}
|
|
1037
|
-
],
|
|
1038
|
-
"returnType": "RuntimeAdapterDescriptor<Options>",
|
|
1039
|
-
"returnDescription": null
|
|
1040
|
-
}
|
|
1041
|
-
],
|
|
1042
|
-
"members": [],
|
|
1043
|
-
"structuredRows": []
|
|
1044
|
-
},
|
|
1045
|
-
{
|
|
1046
|
-
"name": "defineRuntimeBinding",
|
|
1047
|
-
"description": null,
|
|
1048
|
-
"isReadme": false,
|
|
1049
|
-
"examples": [],
|
|
1050
|
-
"kind": "function",
|
|
1051
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
1052
|
-
"sourceLocation": {
|
|
1053
|
-
"filePath": "src/runtimeManifest.ts",
|
|
1054
|
-
"line": 75,
|
|
1055
|
-
"column": 1
|
|
1056
|
-
},
|
|
1057
|
-
"exportPaths": ["src/index.ts"],
|
|
1058
|
-
"relatedSymbols": ["RuntimeBindingDescriptor"],
|
|
1059
|
-
"signatures": [
|
|
1060
|
-
{
|
|
1061
|
-
"label": "(binding: RuntimeBindingDescriptor<Value>) => RuntimeBindingDescriptor<Value>",
|
|
1062
|
-
"parameters": [
|
|
1063
|
-
{
|
|
1064
|
-
"name": "binding",
|
|
1065
|
-
"type": "RuntimeBindingDescriptor<Value>",
|
|
1066
|
-
"required": true,
|
|
1067
|
-
"description": null
|
|
1068
|
-
}
|
|
1069
|
-
],
|
|
1070
|
-
"returnType": "RuntimeBindingDescriptor<Value>",
|
|
1071
|
-
"returnDescription": null
|
|
1072
|
-
}
|
|
1073
|
-
],
|
|
1074
|
-
"members": [],
|
|
1075
|
-
"structuredRows": []
|
|
1076
|
-
},
|
|
1077
991
|
{
|
|
1078
992
|
"name": "dispatchRuntimeComponentEvent",
|
|
1079
993
|
"description": null,
|
|
@@ -1211,31 +1125,6 @@
|
|
|
1211
1125
|
"members": [],
|
|
1212
1126
|
"structuredRows": []
|
|
1213
1127
|
},
|
|
1214
|
-
{
|
|
1215
|
-
"name": "listRuntimeCapabilities",
|
|
1216
|
-
"description": null,
|
|
1217
|
-
"isReadme": false,
|
|
1218
|
-
"examples": [],
|
|
1219
|
-
"kind": "function",
|
|
1220
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
1221
|
-
"sourceLocation": {
|
|
1222
|
-
"filePath": "src/runtimeManifest.ts",
|
|
1223
|
-
"line": 93,
|
|
1224
|
-
"column": 1
|
|
1225
|
-
},
|
|
1226
|
-
"exportPaths": ["src/index.ts"],
|
|
1227
|
-
"relatedSymbols": [],
|
|
1228
|
-
"signatures": [
|
|
1229
|
-
{
|
|
1230
|
-
"label": "() => readonly (\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\")[]",
|
|
1231
|
-
"parameters": [],
|
|
1232
|
-
"returnType": "readonly (\"runtime.render\" | \"runtime.actions\" | \"runtime.bindings\" | \"runtime.adapters\")[]",
|
|
1233
|
-
"returnDescription": null
|
|
1234
|
-
}
|
|
1235
|
-
],
|
|
1236
|
-
"members": [],
|
|
1237
|
-
"structuredRows": []
|
|
1238
|
-
},
|
|
1239
1128
|
{
|
|
1240
1129
|
"name": "ManifestContext",
|
|
1241
1130
|
"description": null,
|
|
@@ -1295,7 +1184,7 @@
|
|
|
1295
1184
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1296
1185
|
"sourceLocation": {
|
|
1297
1186
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1298
|
-
"line":
|
|
1187
|
+
"line": 110,
|
|
1299
1188
|
"column": 1
|
|
1300
1189
|
},
|
|
1301
1190
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1660,42 +1549,6 @@
|
|
|
1660
1549
|
"members": [],
|
|
1661
1550
|
"structuredRows": []
|
|
1662
1551
|
},
|
|
1663
|
-
{
|
|
1664
|
-
"name": "RUNTIME_CAPABILITIES",
|
|
1665
|
-
"description": null,
|
|
1666
|
-
"isReadme": false,
|
|
1667
|
-
"examples": [],
|
|
1668
|
-
"kind": "value",
|
|
1669
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
1670
|
-
"sourceLocation": {
|
|
1671
|
-
"filePath": "src/runtimeManifest.ts",
|
|
1672
|
-
"line": 1,
|
|
1673
|
-
"column": 14
|
|
1674
|
-
},
|
|
1675
|
-
"exportPaths": ["src/index.ts"],
|
|
1676
|
-
"relatedSymbols": [],
|
|
1677
|
-
"signatures": [],
|
|
1678
|
-
"members": [],
|
|
1679
|
-
"structuredRows": []
|
|
1680
|
-
},
|
|
1681
|
-
{
|
|
1682
|
-
"name": "RUNTIME_MANIFEST_KIND",
|
|
1683
|
-
"description": null,
|
|
1684
|
-
"isReadme": false,
|
|
1685
|
-
"examples": [],
|
|
1686
|
-
"kind": "value",
|
|
1687
|
-
"modulePath": "src/runtimeManifest.ts",
|
|
1688
|
-
"sourceLocation": {
|
|
1689
|
-
"filePath": "src/runtimeManifest.ts",
|
|
1690
|
-
"line": 8,
|
|
1691
|
-
"column": 14
|
|
1692
|
-
},
|
|
1693
|
-
"exportPaths": ["src/index.ts"],
|
|
1694
|
-
"relatedSymbols": [],
|
|
1695
|
-
"signatures": [],
|
|
1696
|
-
"members": [],
|
|
1697
|
-
"structuredRows": []
|
|
1698
|
-
},
|
|
1699
1552
|
{
|
|
1700
1553
|
"name": "RuntimeAction",
|
|
1701
1554
|
"description": null,
|
|
@@ -1705,7 +1558,7 @@
|
|
|
1705
1558
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1706
1559
|
"sourceLocation": {
|
|
1707
1560
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1708
|
-
"line":
|
|
1561
|
+
"line": 45,
|
|
1709
1562
|
"column": 1
|
|
1710
1563
|
},
|
|
1711
1564
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1770,7 +1623,7 @@
|
|
|
1770
1623
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1771
1624
|
"sourceLocation": {
|
|
1772
1625
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1773
|
-
"line":
|
|
1626
|
+
"line": 48,
|
|
1774
1627
|
"column": 1
|
|
1775
1628
|
},
|
|
1776
1629
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1788,7 +1641,7 @@
|
|
|
1788
1641
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1789
1642
|
"sourceLocation": {
|
|
1790
1643
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1791
|
-
"line":
|
|
1644
|
+
"line": 46,
|
|
1792
1645
|
"column": 1
|
|
1793
1646
|
},
|
|
1794
1647
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1806,7 +1659,7 @@
|
|
|
1806
1659
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1807
1660
|
"sourceLocation": {
|
|
1808
1661
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1809
|
-
"line":
|
|
1662
|
+
"line": 38,
|
|
1810
1663
|
"column": 1
|
|
1811
1664
|
},
|
|
1812
1665
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1853,7 +1706,7 @@
|
|
|
1853
1706
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1854
1707
|
"sourceLocation": {
|
|
1855
1708
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1856
|
-
"line":
|
|
1709
|
+
"line": 47,
|
|
1857
1710
|
"column": 1
|
|
1858
1711
|
},
|
|
1859
1712
|
"exportPaths": ["src/index.ts"],
|
|
@@ -2246,7 +2099,7 @@
|
|
|
2246
2099
|
{
|
|
2247
2100
|
"name": "dataBindings",
|
|
2248
2101
|
"kind": "property",
|
|
2249
|
-
"type": "Readonly<Record<string, import(\"
|
|
2102
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
|
|
2250
2103
|
"required": false,
|
|
2251
2104
|
"description": null
|
|
2252
2105
|
},
|
|
@@ -2328,7 +2181,7 @@
|
|
|
2328
2181
|
{
|
|
2329
2182
|
"name": "dataBindings",
|
|
2330
2183
|
"kind": "property",
|
|
2331
|
-
"type": "Readonly<Record<string, import(\"
|
|
2184
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
|
|
2332
2185
|
"required": false,
|
|
2333
2186
|
"description": null
|
|
2334
2187
|
},
|
|
@@ -2451,7 +2304,7 @@
|
|
|
2451
2304
|
{
|
|
2452
2305
|
"name": "dataBindings",
|
|
2453
2306
|
"kind": "property",
|
|
2454
|
-
"type": "Readonly<Record<string, import(\"
|
|
2307
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
|
|
2455
2308
|
"required": false,
|
|
2456
2309
|
"description": null
|
|
2457
2310
|
},
|
|
@@ -2744,7 +2597,7 @@
|
|
|
2744
2597
|
{
|
|
2745
2598
|
"name": "dataBindings",
|
|
2746
2599
|
"kind": "property",
|
|
2747
|
-
"type": "Readonly<Record<string, import(\"
|
|
2600
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
|
|
2748
2601
|
"required": false,
|
|
2749
2602
|
"description": null
|
|
2750
2603
|
},
|
|
@@ -2967,6 +2820,50 @@
|
|
|
2967
2820
|
],
|
|
2968
2821
|
"structuredRows": []
|
|
2969
2822
|
},
|
|
2823
|
+
{
|
|
2824
|
+
"name": "RuntimeMediaAssetResolver",
|
|
2825
|
+
"description": null,
|
|
2826
|
+
"isReadme": false,
|
|
2827
|
+
"examples": [],
|
|
2828
|
+
"kind": "unknown",
|
|
2829
|
+
"modulePath": "src/runtimeMedia.ts",
|
|
2830
|
+
"sourceLocation": {
|
|
2831
|
+
"filePath": "src/runtimeMedia.ts",
|
|
2832
|
+
"line": 13,
|
|
2833
|
+
"column": 1
|
|
2834
|
+
},
|
|
2835
|
+
"exportPaths": ["src/index.ts"],
|
|
2836
|
+
"relatedSymbols": [],
|
|
2837
|
+
"signatures": [],
|
|
2838
|
+
"members": [],
|
|
2839
|
+
"structuredRows": []
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
"name": "RuntimeMediaAssetResolverArgs",
|
|
2843
|
+
"description": null,
|
|
2844
|
+
"isReadme": false,
|
|
2845
|
+
"examples": [],
|
|
2846
|
+
"kind": "type",
|
|
2847
|
+
"modulePath": "src/runtimeMedia.ts",
|
|
2848
|
+
"sourceLocation": {
|
|
2849
|
+
"filePath": "src/runtimeMedia.ts",
|
|
2850
|
+
"line": 9,
|
|
2851
|
+
"column": 1
|
|
2852
|
+
},
|
|
2853
|
+
"exportPaths": ["src/index.ts"],
|
|
2854
|
+
"relatedSymbols": [],
|
|
2855
|
+
"signatures": [],
|
|
2856
|
+
"members": [
|
|
2857
|
+
{
|
|
2858
|
+
"name": "asset",
|
|
2859
|
+
"kind": "property",
|
|
2860
|
+
"type": "MediaAsset",
|
|
2861
|
+
"required": true,
|
|
2862
|
+
"description": null
|
|
2863
|
+
}
|
|
2864
|
+
],
|
|
2865
|
+
"structuredRows": []
|
|
2866
|
+
},
|
|
2970
2867
|
{
|
|
2971
2868
|
"name": "RuntimeMemoryStateAdapterOptions",
|
|
2972
2869
|
"description": null,
|
|
@@ -3020,7 +2917,7 @@
|
|
|
3020
2917
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
3021
2918
|
"sourceLocation": {
|
|
3022
2919
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
3023
|
-
"line":
|
|
2920
|
+
"line": 76,
|
|
3024
2921
|
"column": 1
|
|
3025
2922
|
},
|
|
3026
2923
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3052,7 +2949,7 @@
|
|
|
3052
2949
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3053
2950
|
"sourceLocation": {
|
|
3054
2951
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3055
|
-
"line":
|
|
2952
|
+
"line": 50,
|
|
3056
2953
|
"column": 1
|
|
3057
2954
|
},
|
|
3058
2955
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3061,6 +2958,7 @@
|
|
|
3061
2958
|
"RuntimeActionHandlers",
|
|
3062
2959
|
"RuntimeBindingOperationExecutor",
|
|
3063
2960
|
"RuntimeBindingOperationResultWriter",
|
|
2961
|
+
"RuntimeMediaAssetResolver",
|
|
3064
2962
|
"RuntimeNodePropsResolver",
|
|
3065
2963
|
"RuntimeRendererWrapArgs"
|
|
3066
2964
|
],
|
|
@@ -3083,14 +2981,14 @@
|
|
|
3083
2981
|
{
|
|
3084
2982
|
"name": "dataBindings",
|
|
3085
2983
|
"kind": "property",
|
|
3086
|
-
"type": "Readonly<Record<string, import(\"
|
|
2984
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
|
|
3087
2985
|
"required": false,
|
|
3088
2986
|
"description": null
|
|
3089
2987
|
},
|
|
3090
2988
|
{
|
|
3091
2989
|
"name": "dataSources",
|
|
3092
2990
|
"kind": "property",
|
|
3093
|
-
"type": "Readonly<Record<string, import(\"
|
|
2991
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/index\").DataSourceConfig>> | undefined",
|
|
3094
2992
|
"required": false,
|
|
3095
2993
|
"description": null
|
|
3096
2994
|
},
|
|
@@ -3129,6 +3027,13 @@
|
|
|
3129
3027
|
"required": false,
|
|
3130
3028
|
"description": null
|
|
3131
3029
|
},
|
|
3030
|
+
{
|
|
3031
|
+
"name": "mediaAssets",
|
|
3032
|
+
"kind": "property",
|
|
3033
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/media\").MediaAsset>> | undefined",
|
|
3034
|
+
"required": false,
|
|
3035
|
+
"description": null
|
|
3036
|
+
},
|
|
3132
3037
|
{
|
|
3133
3038
|
"name": "onDiagnostics",
|
|
3134
3039
|
"kind": "property",
|
|
@@ -3139,7 +3044,7 @@
|
|
|
3139
3044
|
{
|
|
3140
3045
|
"name": "operationResults",
|
|
3141
3046
|
"kind": "property",
|
|
3142
|
-
"type": "Readonly<Record<string, import(\"
|
|
3047
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").BindingValue | undefined>> | undefined",
|
|
3143
3048
|
"required": false,
|
|
3144
3049
|
"description": null
|
|
3145
3050
|
},
|
|
@@ -3150,6 +3055,13 @@
|
|
|
3150
3055
|
"required": false,
|
|
3151
3056
|
"description": null
|
|
3152
3057
|
},
|
|
3058
|
+
{
|
|
3059
|
+
"name": "resolveMediaAsset",
|
|
3060
|
+
"kind": "property",
|
|
3061
|
+
"type": "RuntimeMediaAssetResolver | undefined",
|
|
3062
|
+
"required": false,
|
|
3063
|
+
"description": null
|
|
3064
|
+
},
|
|
3153
3065
|
{
|
|
3154
3066
|
"name": "resolveNodeProps",
|
|
3155
3067
|
"kind": "property",
|
|
@@ -3190,7 +3102,7 @@
|
|
|
3190
3102
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3191
3103
|
"sourceLocation": {
|
|
3192
3104
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3193
|
-
"line":
|
|
3105
|
+
"line": 158,
|
|
3194
3106
|
"column": 1
|
|
3195
3107
|
},
|
|
3196
3108
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3222,13 +3134,14 @@
|
|
|
3222
3134
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
3223
3135
|
"sourceLocation": {
|
|
3224
3136
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
3225
|
-
"line":
|
|
3137
|
+
"line": 56,
|
|
3226
3138
|
"column": 1
|
|
3227
3139
|
},
|
|
3228
3140
|
"exportPaths": ["src/index.ts"],
|
|
3229
3141
|
"relatedSymbols": [
|
|
3230
3142
|
"RuntimeActionHandler",
|
|
3231
3143
|
"RuntimeBindingOperationExecutor",
|
|
3144
|
+
"RuntimeMediaAssetResolver",
|
|
3232
3145
|
"RuntimeRendererConfig",
|
|
3233
3146
|
"RuntimeRendererWrapArgs"
|
|
3234
3147
|
],
|
|
@@ -3244,14 +3157,14 @@
|
|
|
3244
3157
|
{
|
|
3245
3158
|
"name": "dataBindings",
|
|
3246
3159
|
"kind": "property",
|
|
3247
|
-
"type": "Readonly<Record<string, import(\"
|
|
3160
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/bindings\").ComponentDataBinding>> | undefined",
|
|
3248
3161
|
"required": false,
|
|
3249
3162
|
"description": null
|
|
3250
3163
|
},
|
|
3251
3164
|
{
|
|
3252
3165
|
"name": "dataSources",
|
|
3253
3166
|
"kind": "property",
|
|
3254
|
-
"type": "Readonly<Record<string, import(\"
|
|
3167
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/index\").DataSourceConfig>> | undefined",
|
|
3255
3168
|
"required": false,
|
|
3256
3169
|
"description": null
|
|
3257
3170
|
},
|
|
@@ -3279,7 +3192,7 @@
|
|
|
3279
3192
|
{
|
|
3280
3193
|
"name": "executeAction",
|
|
3281
3194
|
"kind": "property",
|
|
3282
|
-
"type": "import(\"
|
|
3195
|
+
"type": "import(\"./src/RuntimeRendererConfig\").RuntimeActionHandler | undefined",
|
|
3283
3196
|
"required": false,
|
|
3284
3197
|
"description": null
|
|
3285
3198
|
},
|
|
@@ -3297,6 +3210,13 @@
|
|
|
3297
3210
|
"required": false,
|
|
3298
3211
|
"description": null
|
|
3299
3212
|
},
|
|
3213
|
+
{
|
|
3214
|
+
"name": "mediaAssets",
|
|
3215
|
+
"kind": "property",
|
|
3216
|
+
"type": "Readonly<Record<string, import(\"@ankhorage/contracts/dist/media\").MediaAsset>> | undefined",
|
|
3217
|
+
"required": false,
|
|
3218
|
+
"description": null
|
|
3219
|
+
},
|
|
3300
3220
|
{
|
|
3301
3221
|
"name": "node",
|
|
3302
3222
|
"kind": "property",
|
|
@@ -3325,6 +3245,13 @@
|
|
|
3325
3245
|
"required": false,
|
|
3326
3246
|
"description": null
|
|
3327
3247
|
},
|
|
3248
|
+
{
|
|
3249
|
+
"name": "resolveMediaAsset",
|
|
3250
|
+
"kind": "property",
|
|
3251
|
+
"type": "RuntimeMediaAssetResolver | undefined",
|
|
3252
|
+
"required": false,
|
|
3253
|
+
"description": null
|
|
3254
|
+
},
|
|
3328
3255
|
{
|
|
3329
3256
|
"name": "stateAdapter",
|
|
3330
3257
|
"kind": "property",
|
|
@@ -3351,7 +3278,7 @@
|
|
|
3351
3278
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3352
3279
|
"sourceLocation": {
|
|
3353
3280
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3354
|
-
"line":
|
|
3281
|
+
"line": 32,
|
|
3355
3282
|
"column": 1
|
|
3356
3283
|
},
|
|
3357
3284
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3382,6 +3309,24 @@
|
|
|
3382
3309
|
],
|
|
3383
3310
|
"structuredRows": []
|
|
3384
3311
|
},
|
|
3312
|
+
{
|
|
3313
|
+
"name": "RuntimeResolvedMediaValue",
|
|
3314
|
+
"description": null,
|
|
3315
|
+
"isReadme": false,
|
|
3316
|
+
"examples": [],
|
|
3317
|
+
"kind": "unknown",
|
|
3318
|
+
"modulePath": "src/runtimeMedia.ts",
|
|
3319
|
+
"sourceLocation": {
|
|
3320
|
+
"filePath": "src/runtimeMedia.ts",
|
|
3321
|
+
"line": 7,
|
|
3322
|
+
"column": 1
|
|
3323
|
+
},
|
|
3324
|
+
"exportPaths": ["src/index.ts"],
|
|
3325
|
+
"relatedSymbols": [],
|
|
3326
|
+
"signatures": [],
|
|
3327
|
+
"members": [],
|
|
3328
|
+
"structuredRows": []
|
|
3329
|
+
},
|
|
3385
3330
|
{
|
|
3386
3331
|
"name": "RuntimeResolveNodePropsArgs",
|
|
3387
3332
|
"description": null,
|
|
@@ -3697,7 +3642,7 @@
|
|
|
3697
3642
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3698
3643
|
"sourceLocation": {
|
|
3699
3644
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3700
|
-
"line":
|
|
3645
|
+
"line": 173,
|
|
3701
3646
|
"column": 1
|
|
3702
3647
|
},
|
|
3703
3648
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3896,7 +3841,7 @@
|
|
|
3896
3841
|
"modulePath": "src/RuntimeRenderer.tsx",
|
|
3897
3842
|
"sourceLocation": {
|
|
3898
3843
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
3899
|
-
"line":
|
|
3844
|
+
"line": 76,
|
|
3900
3845
|
"column": 1
|
|
3901
3846
|
},
|
|
3902
3847
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3955,6 +3900,12 @@
|
|
|
3955
3900
|
"required": false,
|
|
3956
3901
|
"description": null
|
|
3957
3902
|
},
|
|
3903
|
+
{
|
|
3904
|
+
"name": "mediaAssets",
|
|
3905
|
+
"type": "MediaAssetRegistry | undefined",
|
|
3906
|
+
"required": false,
|
|
3907
|
+
"description": null
|
|
3908
|
+
},
|
|
3958
3909
|
{
|
|
3959
3910
|
"name": "node",
|
|
3960
3911
|
"type": "UiNode",
|
|
@@ -3979,6 +3930,12 @@
|
|
|
3979
3930
|
"required": false,
|
|
3980
3931
|
"description": null
|
|
3981
3932
|
},
|
|
3933
|
+
{
|
|
3934
|
+
"name": "resolveMediaAsset",
|
|
3935
|
+
"type": "RuntimeMediaAssetResolver | undefined",
|
|
3936
|
+
"required": false,
|
|
3937
|
+
"description": null
|
|
3938
|
+
},
|
|
3982
3939
|
{
|
|
3983
3940
|
"name": "stateAdapter",
|
|
3984
3941
|
"type": "StateAdapter | undefined",
|
|
@@ -4001,7 +3958,7 @@
|
|
|
4001
3958
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
4002
3959
|
"sourceLocation": {
|
|
4003
3960
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
4004
|
-
"line":
|
|
3961
|
+
"line": 158,
|
|
4005
3962
|
"column": 1
|
|
4006
3963
|
},
|
|
4007
3964
|
"exportPaths": ["src/index.ts"],
|
|
@@ -5087,6 +5044,150 @@
|
|
|
5087
5044
|
"column": 1
|
|
5088
5045
|
}
|
|
5089
5046
|
},
|
|
5047
|
+
{
|
|
5048
|
+
"name": "resolver",
|
|
5049
|
+
"description": null,
|
|
5050
|
+
"sourceLocation": {
|
|
5051
|
+
"filePath": "src/runtimeMedia.test.ts",
|
|
5052
|
+
"line": 59,
|
|
5053
|
+
"column": 11
|
|
5054
|
+
}
|
|
5055
|
+
},
|
|
5056
|
+
{
|
|
5057
|
+
"name": "firstResolver",
|
|
5058
|
+
"description": null,
|
|
5059
|
+
"sourceLocation": {
|
|
5060
|
+
"filePath": "src/runtimeMedia.test.ts",
|
|
5061
|
+
"line": 84,
|
|
5062
|
+
"column": 11
|
|
5063
|
+
}
|
|
5064
|
+
},
|
|
5065
|
+
{
|
|
5066
|
+
"name": "secondResolver",
|
|
5067
|
+
"description": null,
|
|
5068
|
+
"sourceLocation": {
|
|
5069
|
+
"filePath": "src/runtimeMedia.test.ts",
|
|
5070
|
+
"line": 85,
|
|
5071
|
+
"column": 11
|
|
5072
|
+
}
|
|
5073
|
+
},
|
|
5074
|
+
{
|
|
5075
|
+
"name": "createRuntimeMediaResolutionCache",
|
|
5076
|
+
"description": null,
|
|
5077
|
+
"sourceLocation": {
|
|
5078
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5079
|
+
"line": 24,
|
|
5080
|
+
"column": 1
|
|
5081
|
+
}
|
|
5082
|
+
},
|
|
5083
|
+
{
|
|
5084
|
+
"name": "collectRuntimeMediaReferenceIds",
|
|
5085
|
+
"description": null,
|
|
5086
|
+
"sourceLocation": {
|
|
5087
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5088
|
+
"line": 28,
|
|
5089
|
+
"column": 1
|
|
5090
|
+
}
|
|
5091
|
+
},
|
|
5092
|
+
{
|
|
5093
|
+
"name": "replaceRuntimeMediaReferences",
|
|
5094
|
+
"description": null,
|
|
5095
|
+
"sourceLocation": {
|
|
5096
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5097
|
+
"line": 34,
|
|
5098
|
+
"column": 1
|
|
5099
|
+
}
|
|
5100
|
+
},
|
|
5101
|
+
{
|
|
5102
|
+
"name": "resolveRuntimeMediaAsset",
|
|
5103
|
+
"description": null,
|
|
5104
|
+
"sourceLocation": {
|
|
5105
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5106
|
+
"line": 42,
|
|
5107
|
+
"column": 1
|
|
5108
|
+
}
|
|
5109
|
+
},
|
|
5110
|
+
{
|
|
5111
|
+
"name": "createSyncRuntimeMediaResolutionMap",
|
|
5112
|
+
"description": null,
|
|
5113
|
+
"sourceLocation": {
|
|
5114
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5115
|
+
"line": 64,
|
|
5116
|
+
"column": 1
|
|
5117
|
+
}
|
|
5118
|
+
},
|
|
5119
|
+
{
|
|
5120
|
+
"name": "collectMediaReferenceIds",
|
|
5121
|
+
"description": null,
|
|
5122
|
+
"sourceLocation": {
|
|
5123
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5124
|
+
"line": 78,
|
|
5125
|
+
"column": 1
|
|
5126
|
+
}
|
|
5127
|
+
},
|
|
5128
|
+
{
|
|
5129
|
+
"name": "replaceMediaValue",
|
|
5130
|
+
"description": null,
|
|
5131
|
+
"sourceLocation": {
|
|
5132
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5133
|
+
"line": 93,
|
|
5134
|
+
"column": 1
|
|
5135
|
+
}
|
|
5136
|
+
},
|
|
5137
|
+
{
|
|
5138
|
+
"name": "isPlainObject",
|
|
5139
|
+
"description": null,
|
|
5140
|
+
"sourceLocation": {
|
|
5141
|
+
"filePath": "src/runtimeMedia.ts",
|
|
5142
|
+
"line": 118,
|
|
5143
|
+
"column": 1
|
|
5144
|
+
}
|
|
5145
|
+
},
|
|
5146
|
+
{
|
|
5147
|
+
"name": "useRuntimeMediaResolutionCache",
|
|
5148
|
+
"description": null,
|
|
5149
|
+
"sourceLocation": {
|
|
5150
|
+
"filePath": "src/runtimeMediaCache.tsx",
|
|
5151
|
+
"line": 10,
|
|
5152
|
+
"column": 1
|
|
5153
|
+
}
|
|
5154
|
+
},
|
|
5155
|
+
{
|
|
5156
|
+
"name": "RuntimeMediaResolutionCacheProvider",
|
|
5157
|
+
"description": null,
|
|
5158
|
+
"sourceLocation": {
|
|
5159
|
+
"filePath": "src/runtimeMediaCache.tsx",
|
|
5160
|
+
"line": 16,
|
|
5161
|
+
"column": 1
|
|
5162
|
+
}
|
|
5163
|
+
},
|
|
5164
|
+
{
|
|
5165
|
+
"name": "resolver",
|
|
5166
|
+
"description": null,
|
|
5167
|
+
"sourceLocation": {
|
|
5168
|
+
"filePath": "src/runtimeMediaConfig.test.ts",
|
|
5169
|
+
"line": 26,
|
|
5170
|
+
"column": 11
|
|
5171
|
+
}
|
|
5172
|
+
},
|
|
5173
|
+
{
|
|
5174
|
+
"name": "inheritedResolver",
|
|
5175
|
+
"description": null,
|
|
5176
|
+
"sourceLocation": {
|
|
5177
|
+
"filePath": "src/runtimeMediaConfig.test.ts",
|
|
5178
|
+
"line": 40,
|
|
5179
|
+
"column": 11
|
|
5180
|
+
}
|
|
5181
|
+
},
|
|
5182
|
+
{
|
|
5183
|
+
"name": "localResolver",
|
|
5184
|
+
"description": null,
|
|
5185
|
+
"sourceLocation": {
|
|
5186
|
+
"filePath": "src/runtimeMediaConfig.test.ts",
|
|
5187
|
+
"line": 41,
|
|
5188
|
+
"column": 11
|
|
5189
|
+
}
|
|
5190
|
+
},
|
|
5090
5191
|
{
|
|
5091
5192
|
"name": "isCallable",
|
|
5092
5193
|
"description": null,
|
|
@@ -5200,7 +5301,7 @@
|
|
|
5200
5301
|
"description": null,
|
|
5201
5302
|
"sourceLocation": {
|
|
5202
5303
|
"filePath": "src/RuntimeRenderer.tsx",
|
|
5203
|
-
"line":
|
|
5304
|
+
"line": 76,
|
|
5204
5305
|
"column": 1
|
|
5205
5306
|
}
|
|
5206
5307
|
},
|
|
@@ -5299,7 +5400,7 @@
|
|
|
5299
5400
|
"description": null,
|
|
5300
5401
|
"sourceLocation": {
|
|
5301
5402
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5302
|
-
"line":
|
|
5403
|
+
"line": 77,
|
|
5303
5404
|
"column": 1
|
|
5304
5405
|
}
|
|
5305
5406
|
},
|
|
@@ -5308,7 +5409,7 @@
|
|
|
5308
5409
|
"description": null,
|
|
5309
5410
|
"sourceLocation": {
|
|
5310
5411
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5311
|
-
"line":
|
|
5412
|
+
"line": 92,
|
|
5312
5413
|
"column": 1
|
|
5313
5414
|
}
|
|
5314
5415
|
},
|
|
@@ -5317,7 +5418,7 @@
|
|
|
5317
5418
|
"description": null,
|
|
5318
5419
|
"sourceLocation": {
|
|
5319
5420
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5320
|
-
"line":
|
|
5421
|
+
"line": 110,
|
|
5321
5422
|
"column": 1
|
|
5322
5423
|
}
|
|
5323
5424
|
},
|
|
@@ -5326,7 +5427,7 @@
|
|
|
5326
5427
|
"description": null,
|
|
5327
5428
|
"sourceLocation": {
|
|
5328
5429
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5329
|
-
"line":
|
|
5430
|
+
"line": 158,
|
|
5330
5431
|
"column": 1
|
|
5331
5432
|
}
|
|
5332
5433
|
},
|
|
@@ -5335,7 +5436,7 @@
|
|
|
5335
5436
|
"description": null,
|
|
5336
5437
|
"sourceLocation": {
|
|
5337
5438
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5338
|
-
"line":
|
|
5439
|
+
"line": 173,
|
|
5339
5440
|
"column": 1
|
|
5340
5441
|
}
|
|
5341
5442
|
},
|
|
@@ -5344,7 +5445,7 @@
|
|
|
5344
5445
|
"description": null,
|
|
5345
5446
|
"sourceLocation": {
|
|
5346
5447
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5347
|
-
"line":
|
|
5448
|
+
"line": 177,
|
|
5348
5449
|
"column": 1
|
|
5349
5450
|
}
|
|
5350
5451
|
},
|
|
@@ -5797,6 +5898,42 @@
|
|
|
5797
5898
|
"line": 16,
|
|
5798
5899
|
"column": 1
|
|
5799
5900
|
}
|
|
5901
|
+
},
|
|
5902
|
+
{
|
|
5903
|
+
"name": "useRuntimeMediaProps",
|
|
5904
|
+
"description": null,
|
|
5905
|
+
"sourceLocation": {
|
|
5906
|
+
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5907
|
+
"line": 14,
|
|
5908
|
+
"column": 1
|
|
5909
|
+
}
|
|
5910
|
+
},
|
|
5911
|
+
{
|
|
5912
|
+
"name": "filterResolvedValues",
|
|
5913
|
+
"description": null,
|
|
5914
|
+
"sourceLocation": {
|
|
5915
|
+
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5916
|
+
"line": 62,
|
|
5917
|
+
"column": 1
|
|
5918
|
+
}
|
|
5919
|
+
},
|
|
5920
|
+
{
|
|
5921
|
+
"name": "mapsEqual",
|
|
5922
|
+
"description": null,
|
|
5923
|
+
"sourceLocation": {
|
|
5924
|
+
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5925
|
+
"line": 73,
|
|
5926
|
+
"column": 1
|
|
5927
|
+
}
|
|
5928
|
+
},
|
|
5929
|
+
{
|
|
5930
|
+
"name": "isRecord",
|
|
5931
|
+
"description": null,
|
|
5932
|
+
"sourceLocation": {
|
|
5933
|
+
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5934
|
+
"line": 84,
|
|
5935
|
+
"column": 1
|
|
5936
|
+
}
|
|
5800
5937
|
}
|
|
5801
5938
|
],
|
|
5802
5939
|
"sequenceScenarios": [
|
|
@@ -5880,14 +6017,6 @@
|
|
|
5880
6017
|
"description": null,
|
|
5881
6018
|
"isReadme": false
|
|
5882
6019
|
},
|
|
5883
|
-
{
|
|
5884
|
-
"kind": "export",
|
|
5885
|
-
"name": "createRuntimeManifest",
|
|
5886
|
-
"sourcePath": "src/runtimeManifest.ts",
|
|
5887
|
-
"symbolName": "createRuntimeManifest",
|
|
5888
|
-
"description": null,
|
|
5889
|
-
"isReadme": false
|
|
5890
|
-
},
|
|
5891
6020
|
{
|
|
5892
6021
|
"kind": "export",
|
|
5893
6022
|
"name": "createRuntimeMemoryStateAdapter",
|
|
@@ -5904,30 +6033,6 @@
|
|
|
5904
6033
|
"description": null,
|
|
5905
6034
|
"isReadme": false
|
|
5906
6035
|
},
|
|
5907
|
-
{
|
|
5908
|
-
"kind": "export",
|
|
5909
|
-
"name": "defineRuntimeAction",
|
|
5910
|
-
"sourcePath": "src/runtimeManifest.ts",
|
|
5911
|
-
"symbolName": "defineRuntimeAction",
|
|
5912
|
-
"description": null,
|
|
5913
|
-
"isReadme": false
|
|
5914
|
-
},
|
|
5915
|
-
{
|
|
5916
|
-
"kind": "export",
|
|
5917
|
-
"name": "defineRuntimeAdapter",
|
|
5918
|
-
"sourcePath": "src/runtimeManifest.ts",
|
|
5919
|
-
"symbolName": "defineRuntimeAdapter",
|
|
5920
|
-
"description": null,
|
|
5921
|
-
"isReadme": false
|
|
5922
|
-
},
|
|
5923
|
-
{
|
|
5924
|
-
"kind": "export",
|
|
5925
|
-
"name": "defineRuntimeBinding",
|
|
5926
|
-
"sourcePath": "src/runtimeManifest.ts",
|
|
5927
|
-
"symbolName": "defineRuntimeBinding",
|
|
5928
|
-
"description": null,
|
|
5929
|
-
"isReadme": false
|
|
5930
|
-
},
|
|
5931
6036
|
{
|
|
5932
6037
|
"kind": "export",
|
|
5933
6038
|
"name": "dispatchRuntimeComponentEvent",
|
|
@@ -5960,14 +6065,6 @@
|
|
|
5960
6065
|
"description": null,
|
|
5961
6066
|
"isReadme": false
|
|
5962
6067
|
},
|
|
5963
|
-
{
|
|
5964
|
-
"kind": "export",
|
|
5965
|
-
"name": "listRuntimeCapabilities",
|
|
5966
|
-
"sourcePath": "src/runtimeManifest.ts",
|
|
5967
|
-
"symbolName": "listRuntimeCapabilities",
|
|
5968
|
-
"description": null,
|
|
5969
|
-
"isReadme": false
|
|
5970
|
-
},
|
|
5971
6068
|
{
|
|
5972
6069
|
"kind": "export",
|
|
5973
6070
|
"name": "ManifestProvider",
|
|
@@ -6187,6 +6284,11 @@
|
|
|
6187
6284
|
"toPath": "src/runtimeManifest.ts",
|
|
6188
6285
|
"sourcePath": "src/index.ts"
|
|
6189
6286
|
},
|
|
6287
|
+
{
|
|
6288
|
+
"fromPath": "src/index.ts",
|
|
6289
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6290
|
+
"sourcePath": "src/index.ts"
|
|
6291
|
+
},
|
|
6190
6292
|
{
|
|
6191
6293
|
"fromPath": "src/index.ts",
|
|
6192
6294
|
"toPath": "src/RuntimeRenderer.tsx",
|
|
@@ -6219,7 +6321,7 @@
|
|
|
6219
6321
|
},
|
|
6220
6322
|
{
|
|
6221
6323
|
"fromPath": "src/readme-usage.ts",
|
|
6222
|
-
"toPath": "src/
|
|
6324
|
+
"toPath": "src/runtimeManifest.ts",
|
|
6223
6325
|
"sourcePath": "src/readme-usage.ts"
|
|
6224
6326
|
},
|
|
6225
6327
|
{
|
|
@@ -6327,6 +6429,21 @@
|
|
|
6327
6429
|
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
6328
6430
|
"sourcePath": "src/runtimeEventExecution.ts"
|
|
6329
6431
|
},
|
|
6432
|
+
{
|
|
6433
|
+
"fromPath": "src/runtimeMedia.test.ts",
|
|
6434
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6435
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
6436
|
+
},
|
|
6437
|
+
{
|
|
6438
|
+
"fromPath": "src/runtimeMediaCache.tsx",
|
|
6439
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6440
|
+
"sourcePath": "src/runtimeMediaCache.tsx"
|
|
6441
|
+
},
|
|
6442
|
+
{
|
|
6443
|
+
"fromPath": "src/runtimeMediaConfig.test.ts",
|
|
6444
|
+
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
6445
|
+
"sourcePath": "src/runtimeMediaConfig.test.ts"
|
|
6446
|
+
},
|
|
6330
6447
|
{
|
|
6331
6448
|
"fromPath": "src/runtimeNodeProps.test.ts",
|
|
6332
6449
|
"toPath": "src/runtimeNodeProps.ts",
|
|
@@ -6367,6 +6484,16 @@
|
|
|
6367
6484
|
"toPath": "src/runtimeBindings.ts",
|
|
6368
6485
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6369
6486
|
},
|
|
6487
|
+
{
|
|
6488
|
+
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6489
|
+
"toPath": "src/runtimeMediaCache.tsx",
|
|
6490
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6491
|
+
},
|
|
6492
|
+
{
|
|
6493
|
+
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6494
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6495
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6496
|
+
},
|
|
6370
6497
|
{
|
|
6371
6498
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6372
6499
|
"toPath": "src/runtimeNodeProps.ts",
|
|
@@ -6402,6 +6529,11 @@
|
|
|
6402
6529
|
"toPath": "src/runtimeDbPersist.ts",
|
|
6403
6530
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6404
6531
|
},
|
|
6532
|
+
{
|
|
6533
|
+
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6534
|
+
"toPath": "src/useRuntimeMediaProps.ts",
|
|
6535
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6536
|
+
},
|
|
6405
6537
|
{
|
|
6406
6538
|
"fromPath": "src/RuntimeRendererConfig.test.tsx",
|
|
6407
6539
|
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
@@ -6417,6 +6549,11 @@
|
|
|
6417
6549
|
"toPath": "src/runtimeBindings.ts",
|
|
6418
6550
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
6419
6551
|
},
|
|
6552
|
+
{
|
|
6553
|
+
"fromPath": "src/RuntimeRendererConfig.tsx",
|
|
6554
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6555
|
+
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
6556
|
+
},
|
|
6420
6557
|
{
|
|
6421
6558
|
"fromPath": "src/runtimeRepeat.test.ts",
|
|
6422
6559
|
"toPath": "src/runtimeActionRegistry.ts",
|
|
@@ -6502,6 +6639,11 @@
|
|
|
6502
6639
|
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
6503
6640
|
"sourcePath": "src/runtimeStateAdapterConfig.test.ts"
|
|
6504
6641
|
},
|
|
6642
|
+
{
|
|
6643
|
+
"fromPath": "src/useRuntimeMediaProps.ts",
|
|
6644
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6645
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
6646
|
+
},
|
|
6505
6647
|
{
|
|
6506
6648
|
"fromPath": "tests/runtime.test.ts",
|
|
6507
6649
|
"toPath": "src/runtimeManifest.ts",
|
|
@@ -7733,6 +7875,162 @@
|
|
|
7733
7875
|
"callExpression": "report",
|
|
7734
7876
|
"sourcePath": "src/runtimeEventExecution.ts"
|
|
7735
7877
|
},
|
|
7878
|
+
{
|
|
7879
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7880
|
+
"toSymbol": "describe",
|
|
7881
|
+
"callExpression": "describe",
|
|
7882
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7883
|
+
},
|
|
7884
|
+
{
|
|
7885
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7886
|
+
"toSymbol": "it",
|
|
7887
|
+
"callExpression": "it",
|
|
7888
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7889
|
+
},
|
|
7890
|
+
{
|
|
7891
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7892
|
+
"toSymbol": "expect",
|
|
7893
|
+
"callExpression": "expect",
|
|
7894
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7895
|
+
},
|
|
7896
|
+
{
|
|
7897
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7898
|
+
"toSymbol": "collectRuntimeMediaReferenceIds",
|
|
7899
|
+
"callExpression": "collectRuntimeMediaReferenceIds",
|
|
7900
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7901
|
+
},
|
|
7902
|
+
{
|
|
7903
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7904
|
+
"toSymbol": "createSyncRuntimeMediaResolutionMap",
|
|
7905
|
+
"callExpression": "createSyncRuntimeMediaResolutionMap",
|
|
7906
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7907
|
+
},
|
|
7908
|
+
{
|
|
7909
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7910
|
+
"toSymbol": "replaceRuntimeMediaReferences",
|
|
7911
|
+
"callExpression": "replaceRuntimeMediaReferences",
|
|
7912
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7913
|
+
},
|
|
7914
|
+
{
|
|
7915
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7916
|
+
"toSymbol": "createRuntimeMediaResolutionCache",
|
|
7917
|
+
"callExpression": "createRuntimeMediaResolutionCache",
|
|
7918
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7919
|
+
},
|
|
7920
|
+
{
|
|
7921
|
+
"fromSymbol": "src/runtimeMedia.test.ts",
|
|
7922
|
+
"toSymbol": "resolveRuntimeMediaAsset",
|
|
7923
|
+
"callExpression": "resolveRuntimeMediaAsset",
|
|
7924
|
+
"sourcePath": "src/runtimeMedia.test.ts"
|
|
7925
|
+
},
|
|
7926
|
+
{
|
|
7927
|
+
"fromSymbol": "collectRuntimeMediaReferenceIds",
|
|
7928
|
+
"toSymbol": "collectMediaReferenceIds",
|
|
7929
|
+
"callExpression": "collectMediaReferenceIds",
|
|
7930
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7931
|
+
},
|
|
7932
|
+
{
|
|
7933
|
+
"fromSymbol": "replaceRuntimeMediaReferences",
|
|
7934
|
+
"toSymbol": "replaceMediaValue",
|
|
7935
|
+
"callExpression": "replaceMediaValue",
|
|
7936
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7937
|
+
},
|
|
7938
|
+
{
|
|
7939
|
+
"fromSymbol": "resolveRuntimeMediaAsset",
|
|
7940
|
+
"toSymbol": "resolver",
|
|
7941
|
+
"callExpression": "resolver",
|
|
7942
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7943
|
+
},
|
|
7944
|
+
{
|
|
7945
|
+
"fromSymbol": "collectMediaReferenceIds",
|
|
7946
|
+
"toSymbol": "isMediaAssetReference",
|
|
7947
|
+
"callExpression": "isMediaAssetReference",
|
|
7948
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7949
|
+
},
|
|
7950
|
+
{
|
|
7951
|
+
"fromSymbol": "src/runtimeMedia.ts",
|
|
7952
|
+
"toSymbol": "collectMediaReferenceIds",
|
|
7953
|
+
"callExpression": "collectMediaReferenceIds",
|
|
7954
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7955
|
+
},
|
|
7956
|
+
{
|
|
7957
|
+
"fromSymbol": "collectMediaReferenceIds",
|
|
7958
|
+
"toSymbol": "isPlainObject",
|
|
7959
|
+
"callExpression": "isPlainObject",
|
|
7960
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7961
|
+
},
|
|
7962
|
+
{
|
|
7963
|
+
"fromSymbol": "replaceMediaValue",
|
|
7964
|
+
"toSymbol": "isMediaAssetReference",
|
|
7965
|
+
"callExpression": "isMediaAssetReference",
|
|
7966
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7967
|
+
},
|
|
7968
|
+
{
|
|
7969
|
+
"fromSymbol": "src/runtimeMedia.ts",
|
|
7970
|
+
"toSymbol": "replaceMediaValue",
|
|
7971
|
+
"callExpression": "replaceMediaValue",
|
|
7972
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7973
|
+
},
|
|
7974
|
+
{
|
|
7975
|
+
"fromSymbol": "replaceMediaValue",
|
|
7976
|
+
"toSymbol": "isPlainObject",
|
|
7977
|
+
"callExpression": "isPlainObject",
|
|
7978
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7979
|
+
},
|
|
7980
|
+
{
|
|
7981
|
+
"fromSymbol": "replaceMediaValue",
|
|
7982
|
+
"toSymbol": "replaceMediaValue",
|
|
7983
|
+
"callExpression": "replaceMediaValue",
|
|
7984
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
"fromSymbol": "src/runtimeMediaCache.tsx",
|
|
7988
|
+
"toSymbol": "createContext",
|
|
7989
|
+
"callExpression": "createContext",
|
|
7990
|
+
"sourcePath": "src/runtimeMediaCache.tsx"
|
|
7991
|
+
},
|
|
7992
|
+
{
|
|
7993
|
+
"fromSymbol": "useRuntimeMediaResolutionCache",
|
|
7994
|
+
"toSymbol": "useContext",
|
|
7995
|
+
"callExpression": "useContext",
|
|
7996
|
+
"sourcePath": "src/runtimeMediaCache.tsx"
|
|
7997
|
+
},
|
|
7998
|
+
{
|
|
7999
|
+
"fromSymbol": "useRuntimeMediaResolutionCache",
|
|
8000
|
+
"toSymbol": "useMemo",
|
|
8001
|
+
"callExpression": "useMemo",
|
|
8002
|
+
"sourcePath": "src/runtimeMediaCache.tsx"
|
|
8003
|
+
},
|
|
8004
|
+
{
|
|
8005
|
+
"fromSymbol": "src/runtimeMediaCache.tsx",
|
|
8006
|
+
"toSymbol": "createRuntimeMediaResolutionCache",
|
|
8007
|
+
"callExpression": "createRuntimeMediaResolutionCache",
|
|
8008
|
+
"sourcePath": "src/runtimeMediaCache.tsx"
|
|
8009
|
+
},
|
|
8010
|
+
{
|
|
8011
|
+
"fromSymbol": "src/runtimeMediaConfig.test.ts",
|
|
8012
|
+
"toSymbol": "describe",
|
|
8013
|
+
"callExpression": "describe",
|
|
8014
|
+
"sourcePath": "src/runtimeMediaConfig.test.ts"
|
|
8015
|
+
},
|
|
8016
|
+
{
|
|
8017
|
+
"fromSymbol": "src/runtimeMediaConfig.test.ts",
|
|
8018
|
+
"toSymbol": "it",
|
|
8019
|
+
"callExpression": "it",
|
|
8020
|
+
"sourcePath": "src/runtimeMediaConfig.test.ts"
|
|
8021
|
+
},
|
|
8022
|
+
{
|
|
8023
|
+
"fromSymbol": "src/runtimeMediaConfig.test.ts",
|
|
8024
|
+
"toSymbol": "mergeRuntimeRendererConfig",
|
|
8025
|
+
"callExpression": "mergeRuntimeRendererConfig",
|
|
8026
|
+
"sourcePath": "src/runtimeMediaConfig.test.ts"
|
|
8027
|
+
},
|
|
8028
|
+
{
|
|
8029
|
+
"fromSymbol": "src/runtimeMediaConfig.test.ts",
|
|
8030
|
+
"toSymbol": "expect",
|
|
8031
|
+
"callExpression": "expect",
|
|
8032
|
+
"sourcePath": "src/runtimeMediaConfig.test.ts"
|
|
8033
|
+
},
|
|
7736
8034
|
{
|
|
7737
8035
|
"fromSymbol": "src/runtimeNodeProps.test.ts",
|
|
7738
8036
|
"toSymbol": "describe",
|
|
@@ -7931,6 +8229,12 @@
|
|
|
7931
8229
|
"callExpression": "useRuntimeRendererConfig",
|
|
7932
8230
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
7933
8231
|
},
|
|
8232
|
+
{
|
|
8233
|
+
"fromSymbol": "RuntimeRenderer",
|
|
8234
|
+
"toSymbol": "useRuntimeMediaResolutionCache",
|
|
8235
|
+
"callExpression": "useRuntimeMediaResolutionCache",
|
|
8236
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8237
|
+
},
|
|
7934
8238
|
{
|
|
7935
8239
|
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
7936
8240
|
"toSymbol": "setLocalOperationResults",
|
|
@@ -8009,6 +8313,24 @@
|
|
|
8009
8313
|
"callExpression": "effectiveConfig.onDiagnostics",
|
|
8010
8314
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8011
8315
|
},
|
|
8316
|
+
{
|
|
8317
|
+
"fromSymbol": "RuntimeRenderer",
|
|
8318
|
+
"toSymbol": "resolveRuntimeNodeProps",
|
|
8319
|
+
"callExpression": "resolveRuntimeNodeProps",
|
|
8320
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8321
|
+
},
|
|
8322
|
+
{
|
|
8323
|
+
"fromSymbol": "RuntimeRenderer",
|
|
8324
|
+
"toSymbol": "useRuntimeMediaProps",
|
|
8325
|
+
"callExpression": "useRuntimeMediaProps",
|
|
8326
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8327
|
+
},
|
|
8328
|
+
{
|
|
8329
|
+
"fromSymbol": "RuntimeRenderer",
|
|
8330
|
+
"toSymbol": "resolveNodeProps",
|
|
8331
|
+
"callExpression": "effectiveConfig.resolveNodeProps",
|
|
8332
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8333
|
+
},
|
|
8012
8334
|
{
|
|
8013
8335
|
"fromSymbol": "RuntimeRenderer",
|
|
8014
8336
|
"toSymbol": "getUnknownComponentDiagnostic",
|
|
@@ -8033,12 +8355,6 @@
|
|
|
8033
8355
|
"callExpression": "createRuntimeRepeatBindingContext",
|
|
8034
8356
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8035
8357
|
},
|
|
8036
|
-
{
|
|
8037
|
-
"fromSymbol": "RuntimeRenderer",
|
|
8038
|
-
"toSymbol": "resolveRuntimeNodeProps",
|
|
8039
|
-
"callExpression": "resolveRuntimeNodeProps",
|
|
8040
|
-
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8041
|
-
},
|
|
8042
8358
|
{
|
|
8043
8359
|
"fromSymbol": "RuntimeRenderer",
|
|
8044
8360
|
"toSymbol": "wrapRuntimeActionProps",
|
|
@@ -8897,6 +9213,54 @@
|
|
|
8897
9213
|
"callExpression": "resolveRuntimeBindings",
|
|
8898
9214
|
"sourcePath": "src/runtimeStateAdapterConfig.test.ts"
|
|
8899
9215
|
},
|
|
9216
|
+
{
|
|
9217
|
+
"fromSymbol": "useRuntimeMediaProps",
|
|
9218
|
+
"toSymbol": "collectRuntimeMediaReferenceIds",
|
|
9219
|
+
"callExpression": "collectRuntimeMediaReferenceIds",
|
|
9220
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9221
|
+
},
|
|
9222
|
+
{
|
|
9223
|
+
"fromSymbol": "src/useRuntimeMediaProps.ts",
|
|
9224
|
+
"toSymbol": "setAsyncResolved",
|
|
9225
|
+
"callExpression": "setAsyncResolved",
|
|
9226
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9227
|
+
},
|
|
9228
|
+
{
|
|
9229
|
+
"fromSymbol": "src/useRuntimeMediaProps.ts",
|
|
9230
|
+
"toSymbol": "filterResolvedValues",
|
|
9231
|
+
"callExpression": "filterResolvedValues",
|
|
9232
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9233
|
+
},
|
|
9234
|
+
{
|
|
9235
|
+
"fromSymbol": "src/useRuntimeMediaProps.ts",
|
|
9236
|
+
"toSymbol": "resolveRuntimeMediaAsset",
|
|
9237
|
+
"callExpression": "resolveRuntimeMediaAsset",
|
|
9238
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9239
|
+
},
|
|
9240
|
+
{
|
|
9241
|
+
"fromSymbol": "useRuntimeMediaProps",
|
|
9242
|
+
"toSymbol": "createSyncRuntimeMediaResolutionMap",
|
|
9243
|
+
"callExpression": "createSyncRuntimeMediaResolutionMap",
|
|
9244
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9245
|
+
},
|
|
9246
|
+
{
|
|
9247
|
+
"fromSymbol": "useRuntimeMediaProps",
|
|
9248
|
+
"toSymbol": "replaceRuntimeMediaReferences",
|
|
9249
|
+
"callExpression": "replaceRuntimeMediaReferences",
|
|
9250
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9251
|
+
},
|
|
9252
|
+
{
|
|
9253
|
+
"fromSymbol": "useRuntimeMediaProps",
|
|
9254
|
+
"toSymbol": "isRecord",
|
|
9255
|
+
"callExpression": "isRecord",
|
|
9256
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9257
|
+
},
|
|
9258
|
+
{
|
|
9259
|
+
"fromSymbol": "filterResolvedValues",
|
|
9260
|
+
"toSymbol": "mapsEqual",
|
|
9261
|
+
"callExpression": "mapsEqual",
|
|
9262
|
+
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9263
|
+
},
|
|
8900
9264
|
{
|
|
8901
9265
|
"fromSymbol": "tests/runtime.test.ts",
|
|
8902
9266
|
"toSymbol": "describe",
|
|
@@ -9593,44 +9957,9 @@
|
|
|
9593
9957
|
"sourcePath": "src/runtimeManifest.ts"
|
|
9594
9958
|
},
|
|
9595
9959
|
{
|
|
9596
|
-
"fromSymbol": "
|
|
9597
|
-
"toType": "
|
|
9598
|
-
"sourcePath": "src/
|
|
9599
|
-
},
|
|
9600
|
-
{
|
|
9601
|
-
"fromSymbol": "createRuntimeManifest",
|
|
9602
|
-
"toType": "RuntimeManifestInput",
|
|
9603
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9604
|
-
},
|
|
9605
|
-
{
|
|
9606
|
-
"fromSymbol": "defineRuntimeAction",
|
|
9607
|
-
"toType": "Data",
|
|
9608
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9609
|
-
},
|
|
9610
|
-
{
|
|
9611
|
-
"fromSymbol": "defineRuntimeAction",
|
|
9612
|
-
"toType": "RuntimeActionDescriptor",
|
|
9613
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9614
|
-
},
|
|
9615
|
-
{
|
|
9616
|
-
"fromSymbol": "defineRuntimeAdapter",
|
|
9617
|
-
"toType": "Options",
|
|
9618
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9619
|
-
},
|
|
9620
|
-
{
|
|
9621
|
-
"fromSymbol": "defineRuntimeAdapter",
|
|
9622
|
-
"toType": "RuntimeAdapterDescriptor",
|
|
9623
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9624
|
-
},
|
|
9625
|
-
{
|
|
9626
|
-
"fromSymbol": "defineRuntimeBinding",
|
|
9627
|
-
"toType": "RuntimeBindingDescriptor",
|
|
9628
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9629
|
-
},
|
|
9630
|
-
{
|
|
9631
|
-
"fromSymbol": "defineRuntimeBinding",
|
|
9632
|
-
"toType": "Value",
|
|
9633
|
-
"sourcePath": "src/runtimeManifest.ts"
|
|
9960
|
+
"fromSymbol": "RuntimeMediaAssetResolverArgs",
|
|
9961
|
+
"toType": "MediaAsset",
|
|
9962
|
+
"sourcePath": "src/runtimeMedia.ts"
|
|
9634
9963
|
},
|
|
9635
9964
|
{
|
|
9636
9965
|
"fromSymbol": "RuntimeRendererProps",
|
|
@@ -9672,6 +10001,11 @@
|
|
|
9672
10001
|
"toType": "IntrinsicElements",
|
|
9673
10002
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
9674
10003
|
},
|
|
10004
|
+
{
|
|
10005
|
+
"fromSymbol": "RuntimeRendererProps",
|
|
10006
|
+
"toType": "MediaAsset",
|
|
10007
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
10008
|
+
},
|
|
9675
10009
|
{
|
|
9676
10010
|
"fromSymbol": "RuntimeRendererProps",
|
|
9677
10011
|
"toType": "React",
|
|
@@ -9697,6 +10031,11 @@
|
|
|
9697
10031
|
"toType": "RuntimeBindingOperationExecutor",
|
|
9698
10032
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
9699
10033
|
},
|
|
10034
|
+
{
|
|
10035
|
+
"fromSymbol": "RuntimeRendererProps",
|
|
10036
|
+
"toType": "RuntimeMediaAssetResolver",
|
|
10037
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
10038
|
+
},
|
|
9700
10039
|
{
|
|
9701
10040
|
"fromSymbol": "RuntimeRendererProps",
|
|
9702
10041
|
"toType": "RuntimeRendererConfig",
|
|
@@ -9807,6 +10146,11 @@
|
|
|
9807
10146
|
"toType": "IntrinsicElements",
|
|
9808
10147
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
9809
10148
|
},
|
|
10149
|
+
{
|
|
10150
|
+
"fromSymbol": "RuntimeRendererConfig",
|
|
10151
|
+
"toType": "MediaAsset",
|
|
10152
|
+
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
10153
|
+
},
|
|
9810
10154
|
{
|
|
9811
10155
|
"fromSymbol": "RuntimeRendererConfig",
|
|
9812
10156
|
"toType": "React",
|
|
@@ -9842,6 +10186,11 @@
|
|
|
9842
10186
|
"toType": "RuntimeBindingOperationResultWriter",
|
|
9843
10187
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
9844
10188
|
},
|
|
10189
|
+
{
|
|
10190
|
+
"fromSymbol": "RuntimeRendererConfig",
|
|
10191
|
+
"toType": "RuntimeMediaAssetResolver",
|
|
10192
|
+
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
10193
|
+
},
|
|
9845
10194
|
{
|
|
9846
10195
|
"fromSymbol": "RuntimeRendererConfig",
|
|
9847
10196
|
"toType": "RuntimeNodePropsResolver",
|
|
@@ -10137,6 +10486,12 @@
|
|
|
10137
10486
|
"jsxElement": "<Component {...propsWithEvents}>",
|
|
10138
10487
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
10139
10488
|
},
|
|
10489
|
+
{
|
|
10490
|
+
"fromComponent": "RuntimeRenderer",
|
|
10491
|
+
"toComponent": "RuntimeMediaResolutionCacheProvider",
|
|
10492
|
+
"jsxElement": "<RuntimeMediaResolutionCacheProvider value={mediaResolutionCache}>",
|
|
10493
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
10494
|
+
},
|
|
10140
10495
|
{
|
|
10141
10496
|
"fromComponent": "RuntimeRenderer",
|
|
10142
10497
|
"toComponent": "RuntimeRendererConfigProvider",
|
|
@@ -10152,7 +10507,7 @@
|
|
|
10152
10507
|
{
|
|
10153
10508
|
"fromComponent": "RuntimeScreen",
|
|
10154
10509
|
"toComponent": "RuntimeRenderer",
|
|
10155
|
-
"jsxElement": "<RuntimeRenderer\n key={`${screen.id}:${screenOperationLoaders.renderVersion}`}\n node={screen.root}\n isRoot\n registry={registry}\n stateAdapter={stateAdapter}\n dataBindings={manifest.dataBindings}\n dataSources={manifest.dataSources}\n operationResults={screenOperationLoaders.operationResults}\n />",
|
|
10510
|
+
"jsxElement": "<RuntimeRenderer\n key={`${screen.id}:${screenOperationLoaders.renderVersion}`}\n node={screen.root}\n isRoot\n registry={registry}\n stateAdapter={stateAdapter}\n dataBindings={manifest.dataBindings}\n dataSources={manifest.dataSources}\n mediaAssets={manifest.media?.assets}\n operationResults={screenOperationLoaders.operationResults}\n />",
|
|
10156
10511
|
"sourcePath": "src/RuntimeScreen.tsx"
|
|
10157
10512
|
}
|
|
10158
10513
|
]
|