@ankhorage/runtime 2.0.0 → 2.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 +12 -0
- package/README.md +1 -1
- package/dist/ManifestContext.d.ts.map +1 -1
- package/dist/ManifestContext.js +6 -6
- package/dist/ManifestContext.js.map +1 -1
- package/dist/RuntimeRenderer.d.ts.map +1 -1
- package/dist/RuntimeRenderer.js +22 -38
- package/dist/RuntimeRenderer.js.map +1 -1
- package/dist/RuntimeRendererConfig.d.ts.map +1 -1
- package/dist/RuntimeRendererConfig.js +4 -6
- package/dist/RuntimeRendererConfig.js.map +1 -1
- package/dist/RuntimeScreen.js +1 -1
- package/dist/RuntimeScreen.js.map +1 -1
- package/dist/bindings.d.ts +7 -0
- package/dist/bindings.d.ts.map +1 -0
- package/dist/bindings.js +4 -0
- package/dist/bindings.js.map +1 -0
- package/dist/runtimeMediaCache.d.ts.map +1 -1
- package/dist/runtimeMediaCache.js +3 -5
- package/dist/runtimeMediaCache.js.map +1 -1
- package/dist/runtimeNodeProps.d.ts +6 -1
- package/dist/runtimeNodeProps.d.ts.map +1 -1
- package/dist/runtimeNodeProps.js +6 -5
- package/dist/runtimeNodeProps.js.map +1 -1
- package/dist/runtimeScreenLoaders.d.ts.map +1 -1
- package/dist/runtimeScreenLoaders.js +24 -28
- package/dist/runtimeScreenLoaders.js.map +1 -1
- package/dist/useRuntimeMediaProps.d.ts.map +1 -1
- package/dist/useRuntimeMediaProps.js +11 -27
- package/dist/useRuntimeMediaProps.js.map +1 -1
- package/package.json +25 -9
- package/paradox/badges/npm.svg +3 -3
- package/paradox/components.md +1 -1
- package/paradox/diagrams/architecture-overview.mmd +14 -0
- package/paradox/diagrams/export-graph.mmd +5 -0
- package/paradox/diagrams/module-relationships.mmd +9 -0
- package/paradox/diagrams/sequences/runtime-renderer-config-provider.mmd +3 -3
- package/paradox/diagrams/sequences/runtime-screen.mmd +3 -3
- package/paradox/diagrams/sequences/use-manifest-context.mmd +3 -3
- package/paradox/diagrams/sequences/use-manifest.mmd +3 -3
- package/paradox/diagrams/sequences/use-optional-manifest-context.mmd +3 -3
- package/paradox/diagrams/sequences/use-runtime-renderer-config.mmd +3 -3
- package/paradox/exports.json +12 -12
- package/paradox/exports.md +12 -12
- package/paradox/index.html +250 -89
- package/paradox/paradox.json +376 -108
package/paradox/paradox.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
{
|
|
13
13
|
"id": "npm",
|
|
14
14
|
"label": "npm",
|
|
15
|
-
"value": "
|
|
15
|
+
"value": "v2.1.0",
|
|
16
16
|
"color": "cb3837"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
@@ -80,6 +80,38 @@
|
|
|
80
80
|
"dependencies": [],
|
|
81
81
|
"exports": ["default"]
|
|
82
82
|
},
|
|
83
|
+
{
|
|
84
|
+
"path": "src/bindings.test.ts",
|
|
85
|
+
"isEntrypoint": false,
|
|
86
|
+
"dependencies": ["src/bindings.ts"],
|
|
87
|
+
"exports": []
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"path": "src/bindings.ts",
|
|
91
|
+
"isEntrypoint": false,
|
|
92
|
+
"dependencies": [],
|
|
93
|
+
"exports": [
|
|
94
|
+
"createRuntimeApiOperationExecutor",
|
|
95
|
+
"createRuntimeBindingOperationKey",
|
|
96
|
+
"resolveBindingInputMap",
|
|
97
|
+
"resolveRuntimeBindings",
|
|
98
|
+
"resolveRuntimeBindingsAsync",
|
|
99
|
+
"resolveRuntimeBindingValue",
|
|
100
|
+
"resolveRuntimeBindingValueSync",
|
|
101
|
+
"RuntimeApiOperationExecutorOptions",
|
|
102
|
+
"RuntimeApiOperationSelection",
|
|
103
|
+
"RuntimeBindingOperationExecutionArgs",
|
|
104
|
+
"RuntimeBindingOperationExecutionResult",
|
|
105
|
+
"RuntimeBindingOperationExecutor",
|
|
106
|
+
"RuntimeBindingOperationKey",
|
|
107
|
+
"RuntimeBindingOperationResultCache",
|
|
108
|
+
"RuntimeBindingOperationResultWriter",
|
|
109
|
+
"RuntimeBindingResolutionArgs",
|
|
110
|
+
"RuntimeBindingResolutionContext",
|
|
111
|
+
"RuntimeBindingResolutionResult",
|
|
112
|
+
"validateRuntimeBindingOperationRef"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
83
115
|
{
|
|
84
116
|
"path": "src/componentRegistry.ts",
|
|
85
117
|
"isEntrypoint": false,
|
|
@@ -190,6 +222,12 @@
|
|
|
190
222
|
"useOptionalManifestContext"
|
|
191
223
|
]
|
|
192
224
|
},
|
|
225
|
+
{
|
|
226
|
+
"path": "src/react19Compatibility.test.tsx",
|
|
227
|
+
"isEntrypoint": false,
|
|
228
|
+
"dependencies": ["src/ManifestContext.tsx", "src/RuntimeRendererConfig.tsx"],
|
|
229
|
+
"exports": []
|
|
230
|
+
},
|
|
193
231
|
{
|
|
194
232
|
"path": "src/registry.test.ts",
|
|
195
233
|
"isEntrypoint": false,
|
|
@@ -588,6 +626,18 @@
|
|
|
588
626
|
"dependencies": ["src/runtimeMedia.ts"],
|
|
589
627
|
"exports": ["useRuntimeMediaProps"]
|
|
590
628
|
},
|
|
629
|
+
{
|
|
630
|
+
"path": "tests/reactNativeWebCompatibility.fixture.tsx",
|
|
631
|
+
"isEntrypoint": false,
|
|
632
|
+
"dependencies": ["src/RuntimeRenderer.tsx"],
|
|
633
|
+
"exports": ["renderReactNativeWebRuntimeFixture"]
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"path": "tests/reactNativeWebCompatibility.test.ts",
|
|
637
|
+
"isEntrypoint": false,
|
|
638
|
+
"dependencies": [],
|
|
639
|
+
"exports": []
|
|
640
|
+
},
|
|
591
641
|
{
|
|
592
642
|
"path": "tests/runtime.test.ts",
|
|
593
643
|
"isEntrypoint": false,
|
|
@@ -623,7 +673,7 @@
|
|
|
623
673
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
624
674
|
"sourceLocation": {
|
|
625
675
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
626
|
-
"line":
|
|
676
|
+
"line": 89,
|
|
627
677
|
"column": 1
|
|
628
678
|
},
|
|
629
679
|
"exportPaths": ["src/index.ts"],
|
|
@@ -661,7 +711,7 @@
|
|
|
661
711
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
662
712
|
"sourceLocation": {
|
|
663
713
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
664
|
-
"line":
|
|
714
|
+
"line": 74,
|
|
665
715
|
"column": 1
|
|
666
716
|
},
|
|
667
717
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1213,7 +1263,7 @@
|
|
|
1213
1263
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1214
1264
|
"sourceLocation": {
|
|
1215
1265
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1216
|
-
"line":
|
|
1266
|
+
"line": 107,
|
|
1217
1267
|
"column": 1
|
|
1218
1268
|
},
|
|
1219
1269
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1587,7 +1637,7 @@
|
|
|
1587
1637
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1588
1638
|
"sourceLocation": {
|
|
1589
1639
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1590
|
-
"line":
|
|
1640
|
+
"line": 42,
|
|
1591
1641
|
"column": 1
|
|
1592
1642
|
},
|
|
1593
1643
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1652,7 +1702,7 @@
|
|
|
1652
1702
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1653
1703
|
"sourceLocation": {
|
|
1654
1704
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1655
|
-
"line":
|
|
1705
|
+
"line": 45,
|
|
1656
1706
|
"column": 1
|
|
1657
1707
|
},
|
|
1658
1708
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1670,7 +1720,7 @@
|
|
|
1670
1720
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1671
1721
|
"sourceLocation": {
|
|
1672
1722
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1673
|
-
"line":
|
|
1723
|
+
"line": 43,
|
|
1674
1724
|
"column": 1
|
|
1675
1725
|
},
|
|
1676
1726
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1688,7 +1738,7 @@
|
|
|
1688
1738
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1689
1739
|
"sourceLocation": {
|
|
1690
1740
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1691
|
-
"line":
|
|
1741
|
+
"line": 35,
|
|
1692
1742
|
"column": 1
|
|
1693
1743
|
},
|
|
1694
1744
|
"exportPaths": ["src/index.ts"],
|
|
@@ -1735,7 +1785,7 @@
|
|
|
1735
1785
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
1736
1786
|
"sourceLocation": {
|
|
1737
1787
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
1738
|
-
"line":
|
|
1788
|
+
"line": 44,
|
|
1739
1789
|
"column": 1
|
|
1740
1790
|
},
|
|
1741
1791
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3004,7 +3054,7 @@
|
|
|
3004
3054
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3005
3055
|
"sourceLocation": {
|
|
3006
3056
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3007
|
-
"line":
|
|
3057
|
+
"line": 47,
|
|
3008
3058
|
"column": 1
|
|
3009
3059
|
},
|
|
3010
3060
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3157,7 +3207,7 @@
|
|
|
3157
3207
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3158
3208
|
"sourceLocation": {
|
|
3159
3209
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3160
|
-
"line":
|
|
3210
|
+
"line": 155,
|
|
3161
3211
|
"column": 1
|
|
3162
3212
|
},
|
|
3163
3213
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3333,7 +3383,7 @@
|
|
|
3333
3383
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3334
3384
|
"sourceLocation": {
|
|
3335
3385
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3336
|
-
"line":
|
|
3386
|
+
"line": 29,
|
|
3337
3387
|
"column": 1
|
|
3338
3388
|
},
|
|
3339
3389
|
"exportPaths": ["src/index.ts"],
|
|
@@ -3697,7 +3747,7 @@
|
|
|
3697
3747
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
3698
3748
|
"sourceLocation": {
|
|
3699
3749
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
3700
|
-
"line":
|
|
3750
|
+
"line": 168,
|
|
3701
3751
|
"column": 1
|
|
3702
3752
|
},
|
|
3703
3753
|
"exportPaths": ["src/index.ts"],
|
|
@@ -4013,7 +4063,7 @@
|
|
|
4013
4063
|
"modulePath": "src/RuntimeRendererConfig.tsx",
|
|
4014
4064
|
"sourceLocation": {
|
|
4015
4065
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
4016
|
-
"line":
|
|
4066
|
+
"line": 155,
|
|
4017
4067
|
"column": 1
|
|
4018
4068
|
},
|
|
4019
4069
|
"exportPaths": ["src/index.ts"],
|
|
@@ -4118,6 +4168,33 @@
|
|
|
4118
4168
|
"column": 1
|
|
4119
4169
|
}
|
|
4120
4170
|
},
|
|
4171
|
+
{
|
|
4172
|
+
"name": "ManifestProbe",
|
|
4173
|
+
"description": null,
|
|
4174
|
+
"sourceLocation": {
|
|
4175
|
+
"filePath": "src/react19Compatibility.test.tsx",
|
|
4176
|
+
"line": 29,
|
|
4177
|
+
"column": 1
|
|
4178
|
+
}
|
|
4179
|
+
},
|
|
4180
|
+
{
|
|
4181
|
+
"name": "RendererConfigProbe",
|
|
4182
|
+
"description": null,
|
|
4183
|
+
"sourceLocation": {
|
|
4184
|
+
"filePath": "src/react19Compatibility.test.tsx",
|
|
4185
|
+
"line": 34,
|
|
4186
|
+
"column": 1
|
|
4187
|
+
}
|
|
4188
|
+
},
|
|
4189
|
+
{
|
|
4190
|
+
"name": "OptionalManifestProbe",
|
|
4191
|
+
"description": null,
|
|
4192
|
+
"sourceLocation": {
|
|
4193
|
+
"filePath": "src/react19Compatibility.test.tsx",
|
|
4194
|
+
"line": 39,
|
|
4195
|
+
"column": 1
|
|
4196
|
+
}
|
|
4197
|
+
},
|
|
4121
4198
|
{
|
|
4122
4199
|
"name": "BaseComponent",
|
|
4123
4200
|
"description": null,
|
|
@@ -5095,7 +5172,7 @@
|
|
|
5095
5172
|
"description": null,
|
|
5096
5173
|
"sourceLocation": {
|
|
5097
5174
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5098
|
-
"line":
|
|
5175
|
+
"line": 18,
|
|
5099
5176
|
"column": 1
|
|
5100
5177
|
}
|
|
5101
5178
|
},
|
|
@@ -5104,7 +5181,7 @@
|
|
|
5104
5181
|
"description": null,
|
|
5105
5182
|
"sourceLocation": {
|
|
5106
5183
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5107
|
-
"line":
|
|
5184
|
+
"line": 22,
|
|
5108
5185
|
"column": 1
|
|
5109
5186
|
}
|
|
5110
5187
|
},
|
|
@@ -5113,7 +5190,7 @@
|
|
|
5113
5190
|
"description": null,
|
|
5114
5191
|
"sourceLocation": {
|
|
5115
5192
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5116
|
-
"line":
|
|
5193
|
+
"line": 31,
|
|
5117
5194
|
"column": 1
|
|
5118
5195
|
}
|
|
5119
5196
|
},
|
|
@@ -5122,7 +5199,7 @@
|
|
|
5122
5199
|
"description": null,
|
|
5123
5200
|
"sourceLocation": {
|
|
5124
5201
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5125
|
-
"line":
|
|
5202
|
+
"line": 37,
|
|
5126
5203
|
"column": 1
|
|
5127
5204
|
}
|
|
5128
5205
|
},
|
|
@@ -5131,7 +5208,7 @@
|
|
|
5131
5208
|
"description": null,
|
|
5132
5209
|
"sourceLocation": {
|
|
5133
5210
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5134
|
-
"line":
|
|
5211
|
+
"line": 41,
|
|
5135
5212
|
"column": 1
|
|
5136
5213
|
}
|
|
5137
5214
|
},
|
|
@@ -5140,7 +5217,7 @@
|
|
|
5140
5217
|
"description": null,
|
|
5141
5218
|
"sourceLocation": {
|
|
5142
5219
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5143
|
-
"line":
|
|
5220
|
+
"line": 45,
|
|
5144
5221
|
"column": 1
|
|
5145
5222
|
}
|
|
5146
5223
|
},
|
|
@@ -5149,7 +5226,7 @@
|
|
|
5149
5226
|
"description": null,
|
|
5150
5227
|
"sourceLocation": {
|
|
5151
5228
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5152
|
-
"line":
|
|
5229
|
+
"line": 62,
|
|
5153
5230
|
"column": 7
|
|
5154
5231
|
}
|
|
5155
5232
|
},
|
|
@@ -5158,7 +5235,7 @@
|
|
|
5158
5235
|
"description": null,
|
|
5159
5236
|
"sourceLocation": {
|
|
5160
5237
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5161
|
-
"line":
|
|
5238
|
+
"line": 64,
|
|
5162
5239
|
"column": 1
|
|
5163
5240
|
}
|
|
5164
5241
|
},
|
|
@@ -5167,7 +5244,7 @@
|
|
|
5167
5244
|
"description": null,
|
|
5168
5245
|
"sourceLocation": {
|
|
5169
5246
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5170
|
-
"line":
|
|
5247
|
+
"line": 87,
|
|
5171
5248
|
"column": 1
|
|
5172
5249
|
}
|
|
5173
5250
|
},
|
|
@@ -5176,16 +5253,34 @@
|
|
|
5176
5253
|
"description": null,
|
|
5177
5254
|
"sourceLocation": {
|
|
5178
5255
|
"filePath": "src/runtimeNodeProps.ts",
|
|
5179
|
-
"line":
|
|
5256
|
+
"line": 130,
|
|
5180
5257
|
"column": 1
|
|
5181
5258
|
}
|
|
5182
5259
|
},
|
|
5260
|
+
{
|
|
5261
|
+
"name": "actionHandler",
|
|
5262
|
+
"description": null,
|
|
5263
|
+
"sourceLocation": {
|
|
5264
|
+
"filePath": "src/runtimeNodeProps.ts",
|
|
5265
|
+
"line": 157,
|
|
5266
|
+
"column": 15
|
|
5267
|
+
}
|
|
5268
|
+
},
|
|
5183
5269
|
{
|
|
5184
5270
|
"name": "listSourceFiles",
|
|
5185
5271
|
"description": null,
|
|
5186
5272
|
"sourceLocation": {
|
|
5187
5273
|
"filePath": "src/runtimePackageIsolation.test.ts",
|
|
5188
|
-
"line":
|
|
5274
|
+
"line": 13,
|
|
5275
|
+
"column": 1
|
|
5276
|
+
}
|
|
5277
|
+
},
|
|
5278
|
+
{
|
|
5279
|
+
"name": "readRuntimePackageManifest",
|
|
5280
|
+
"description": null,
|
|
5281
|
+
"sourceLocation": {
|
|
5282
|
+
"filePath": "src/runtimePackageIsolation.test.ts",
|
|
5283
|
+
"line": 28,
|
|
5189
5284
|
"column": 1
|
|
5190
5285
|
}
|
|
5191
5286
|
},
|
|
@@ -5293,7 +5388,7 @@
|
|
|
5293
5388
|
"description": null,
|
|
5294
5389
|
"sourceLocation": {
|
|
5295
5390
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5296
|
-
"line":
|
|
5391
|
+
"line": 74,
|
|
5297
5392
|
"column": 1
|
|
5298
5393
|
}
|
|
5299
5394
|
},
|
|
@@ -5302,7 +5397,7 @@
|
|
|
5302
5397
|
"description": null,
|
|
5303
5398
|
"sourceLocation": {
|
|
5304
5399
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5305
|
-
"line":
|
|
5400
|
+
"line": 89,
|
|
5306
5401
|
"column": 1
|
|
5307
5402
|
}
|
|
5308
5403
|
},
|
|
@@ -5311,7 +5406,7 @@
|
|
|
5311
5406
|
"description": null,
|
|
5312
5407
|
"sourceLocation": {
|
|
5313
5408
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5314
|
-
"line":
|
|
5409
|
+
"line": 107,
|
|
5315
5410
|
"column": 1
|
|
5316
5411
|
}
|
|
5317
5412
|
},
|
|
@@ -5320,7 +5415,7 @@
|
|
|
5320
5415
|
"description": null,
|
|
5321
5416
|
"sourceLocation": {
|
|
5322
5417
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5323
|
-
"line":
|
|
5418
|
+
"line": 155,
|
|
5324
5419
|
"column": 1
|
|
5325
5420
|
}
|
|
5326
5421
|
},
|
|
@@ -5329,7 +5424,7 @@
|
|
|
5329
5424
|
"description": null,
|
|
5330
5425
|
"sourceLocation": {
|
|
5331
5426
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5332
|
-
"line":
|
|
5427
|
+
"line": 168,
|
|
5333
5428
|
"column": 1
|
|
5334
5429
|
}
|
|
5335
5430
|
},
|
|
@@ -5338,7 +5433,7 @@
|
|
|
5338
5433
|
"description": null,
|
|
5339
5434
|
"sourceLocation": {
|
|
5340
5435
|
"filePath": "src/RuntimeRendererConfig.tsx",
|
|
5341
|
-
"line":
|
|
5436
|
+
"line": 172,
|
|
5342
5437
|
"column": 1
|
|
5343
5438
|
}
|
|
5344
5439
|
},
|
|
@@ -5626,7 +5721,7 @@
|
|
|
5626
5721
|
"description": null,
|
|
5627
5722
|
"sourceLocation": {
|
|
5628
5723
|
"filePath": "src/runtimeScreenLoaders.ts",
|
|
5629
|
-
"line":
|
|
5724
|
+
"line": 388,
|
|
5630
5725
|
"column": 1
|
|
5631
5726
|
}
|
|
5632
5727
|
},
|
|
@@ -5635,7 +5730,7 @@
|
|
|
5635
5730
|
"description": null,
|
|
5636
5731
|
"sourceLocation": {
|
|
5637
5732
|
"filePath": "src/runtimeScreenLoaders.ts",
|
|
5638
|
-
"line":
|
|
5733
|
+
"line": 445,
|
|
5639
5734
|
"column": 1
|
|
5640
5735
|
}
|
|
5641
5736
|
},
|
|
@@ -5644,7 +5739,7 @@
|
|
|
5644
5739
|
"description": null,
|
|
5645
5740
|
"sourceLocation": {
|
|
5646
5741
|
"filePath": "src/runtimeScreenLoaders.ts",
|
|
5647
|
-
"line":
|
|
5742
|
+
"line": 460,
|
|
5648
5743
|
"column": 1
|
|
5649
5744
|
}
|
|
5650
5745
|
},
|
|
@@ -5653,7 +5748,7 @@
|
|
|
5653
5748
|
"description": null,
|
|
5654
5749
|
"sourceLocation": {
|
|
5655
5750
|
"filePath": "src/runtimeScreenLoaders.ts",
|
|
5656
|
-
"line":
|
|
5751
|
+
"line": 475,
|
|
5657
5752
|
"column": 1
|
|
5658
5753
|
}
|
|
5659
5754
|
},
|
|
@@ -5662,7 +5757,7 @@
|
|
|
5662
5757
|
"description": null,
|
|
5663
5758
|
"sourceLocation": {
|
|
5664
5759
|
"filePath": "src/runtimeScreenLoaders.ts",
|
|
5665
|
-
"line":
|
|
5760
|
+
"line": 479,
|
|
5666
5761
|
"column": 1
|
|
5667
5762
|
}
|
|
5668
5763
|
},
|
|
@@ -5671,7 +5766,7 @@
|
|
|
5671
5766
|
"description": null,
|
|
5672
5767
|
"sourceLocation": {
|
|
5673
5768
|
"filePath": "src/runtimeScreenLoaders.ts",
|
|
5674
|
-
"line":
|
|
5769
|
+
"line": 483,
|
|
5675
5770
|
"column": 1
|
|
5676
5771
|
}
|
|
5677
5772
|
},
|
|
@@ -5792,30 +5887,12 @@
|
|
|
5792
5887
|
"column": 1
|
|
5793
5888
|
}
|
|
5794
5889
|
},
|
|
5795
|
-
{
|
|
5796
|
-
"name": "filterResolvedValues",
|
|
5797
|
-
"description": null,
|
|
5798
|
-
"sourceLocation": {
|
|
5799
|
-
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5800
|
-
"line": 62,
|
|
5801
|
-
"column": 1
|
|
5802
|
-
}
|
|
5803
|
-
},
|
|
5804
|
-
{
|
|
5805
|
-
"name": "mapsEqual",
|
|
5806
|
-
"description": null,
|
|
5807
|
-
"sourceLocation": {
|
|
5808
|
-
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5809
|
-
"line": 73,
|
|
5810
|
-
"column": 1
|
|
5811
|
-
}
|
|
5812
|
-
},
|
|
5813
5890
|
{
|
|
5814
5891
|
"name": "isRecord",
|
|
5815
5892
|
"description": null,
|
|
5816
5893
|
"sourceLocation": {
|
|
5817
5894
|
"filePath": "src/useRuntimeMediaProps.ts",
|
|
5818
|
-
"line":
|
|
5895
|
+
"line": 64,
|
|
5819
5896
|
"column": 1
|
|
5820
5897
|
}
|
|
5821
5898
|
}
|
|
@@ -6128,6 +6205,26 @@
|
|
|
6128
6205
|
],
|
|
6129
6206
|
"graphs": {
|
|
6130
6207
|
"imports": [
|
|
6208
|
+
{
|
|
6209
|
+
"fromPath": "src/bindings.test.ts",
|
|
6210
|
+
"toPath": "src/bindings.ts",
|
|
6211
|
+
"sourcePath": "src/bindings.test.ts"
|
|
6212
|
+
},
|
|
6213
|
+
{
|
|
6214
|
+
"fromPath": "src/bindings.ts",
|
|
6215
|
+
"toPath": "src/runtimeApiOperations.ts",
|
|
6216
|
+
"sourcePath": "src/bindings.ts"
|
|
6217
|
+
},
|
|
6218
|
+
{
|
|
6219
|
+
"fromPath": "src/bindings.ts",
|
|
6220
|
+
"toPath": "src/runtimeApiSelection.ts",
|
|
6221
|
+
"sourcePath": "src/bindings.ts"
|
|
6222
|
+
},
|
|
6223
|
+
{
|
|
6224
|
+
"fromPath": "src/bindings.ts",
|
|
6225
|
+
"toPath": "src/runtimeBindings.ts",
|
|
6226
|
+
"sourcePath": "src/bindings.ts"
|
|
6227
|
+
},
|
|
6131
6228
|
{
|
|
6132
6229
|
"fromPath": "src/index.ts",
|
|
6133
6230
|
"toPath": "src/ManifestContext.tsx",
|
|
@@ -6208,6 +6305,16 @@
|
|
|
6208
6305
|
"toPath": "src/runtimeStateAdapter.ts",
|
|
6209
6306
|
"sourcePath": "src/index.ts"
|
|
6210
6307
|
},
|
|
6308
|
+
{
|
|
6309
|
+
"fromPath": "src/react19Compatibility.test.tsx",
|
|
6310
|
+
"toPath": "src/ManifestContext.tsx",
|
|
6311
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6312
|
+
},
|
|
6313
|
+
{
|
|
6314
|
+
"fromPath": "src/react19Compatibility.test.tsx",
|
|
6315
|
+
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
6316
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6317
|
+
},
|
|
6211
6318
|
{
|
|
6212
6319
|
"fromPath": "src/readme-usage.ts",
|
|
6213
6320
|
"toPath": "src/runtimeManifest.ts",
|
|
@@ -6395,47 +6502,47 @@
|
|
|
6395
6502
|
},
|
|
6396
6503
|
{
|
|
6397
6504
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6398
|
-
"toPath": "src/
|
|
6505
|
+
"toPath": "src/runtimeDbPersist.ts",
|
|
6399
6506
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6400
6507
|
},
|
|
6401
6508
|
{
|
|
6402
6509
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6403
|
-
"toPath": "src/
|
|
6510
|
+
"toPath": "src/runtimeEventExecution.ts",
|
|
6404
6511
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6405
6512
|
},
|
|
6406
6513
|
{
|
|
6407
6514
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6408
|
-
"toPath": "src/
|
|
6515
|
+
"toPath": "src/runtimeMedia.ts",
|
|
6409
6516
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6410
6517
|
},
|
|
6411
6518
|
{
|
|
6412
6519
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6413
|
-
"toPath": "src/
|
|
6520
|
+
"toPath": "src/runtimeMediaCache.tsx",
|
|
6414
6521
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6415
6522
|
},
|
|
6416
6523
|
{
|
|
6417
6524
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6418
|
-
"toPath": "src/
|
|
6525
|
+
"toPath": "src/runtimeNodeProps.ts",
|
|
6419
6526
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6420
6527
|
},
|
|
6421
6528
|
{
|
|
6422
6529
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6423
|
-
"toPath": "src/
|
|
6530
|
+
"toPath": "src/RuntimeRendererConfig.tsx",
|
|
6424
6531
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6425
6532
|
},
|
|
6426
6533
|
{
|
|
6427
6534
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6428
|
-
"toPath": "src/
|
|
6535
|
+
"toPath": "src/runtimeRepeat.ts",
|
|
6429
6536
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6430
6537
|
},
|
|
6431
6538
|
{
|
|
6432
6539
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6433
|
-
"toPath": "src/
|
|
6540
|
+
"toPath": "src/runtimeRepeatDiagnostics.ts",
|
|
6434
6541
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6435
6542
|
},
|
|
6436
6543
|
{
|
|
6437
6544
|
"fromPath": "src/RuntimeRenderer.tsx",
|
|
6438
|
-
"toPath": "src/
|
|
6545
|
+
"toPath": "src/runtimeRepeatEmptyState.ts",
|
|
6439
6546
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
6440
6547
|
},
|
|
6441
6548
|
{
|
|
@@ -6573,6 +6680,11 @@
|
|
|
6573
6680
|
"toPath": "src/runtimeMedia.ts",
|
|
6574
6681
|
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
6575
6682
|
},
|
|
6683
|
+
{
|
|
6684
|
+
"fromPath": "tests/reactNativeWebCompatibility.fixture.tsx",
|
|
6685
|
+
"toPath": "src/RuntimeRenderer.tsx",
|
|
6686
|
+
"sourcePath": "tests/reactNativeWebCompatibility.fixture.tsx"
|
|
6687
|
+
},
|
|
6576
6688
|
{
|
|
6577
6689
|
"fromPath": "tests/runtime.test.ts",
|
|
6578
6690
|
"toPath": "src/runtimeManifest.ts",
|
|
@@ -6586,6 +6698,24 @@
|
|
|
6586
6698
|
"callExpression": "defineParadoxConfig",
|
|
6587
6699
|
"sourcePath": "paradox.config.ts"
|
|
6588
6700
|
},
|
|
6701
|
+
{
|
|
6702
|
+
"fromSymbol": "src/bindings.test.ts",
|
|
6703
|
+
"toSymbol": "test",
|
|
6704
|
+
"callExpression": "test",
|
|
6705
|
+
"sourcePath": "src/bindings.test.ts"
|
|
6706
|
+
},
|
|
6707
|
+
{
|
|
6708
|
+
"fromSymbol": "src/bindings.test.ts",
|
|
6709
|
+
"toSymbol": "expect",
|
|
6710
|
+
"callExpression": "expect",
|
|
6711
|
+
"sourcePath": "src/bindings.test.ts"
|
|
6712
|
+
},
|
|
6713
|
+
{
|
|
6714
|
+
"fromSymbol": "src/bindings.test.ts",
|
|
6715
|
+
"toSymbol": "readFile",
|
|
6716
|
+
"callExpression": "readFile",
|
|
6717
|
+
"sourcePath": "src/bindings.test.ts"
|
|
6718
|
+
},
|
|
6589
6719
|
{
|
|
6590
6720
|
"fromSymbol": "src/ManifestContext.tsx",
|
|
6591
6721
|
"toSymbol": "createContext",
|
|
@@ -6594,22 +6724,64 @@
|
|
|
6594
6724
|
},
|
|
6595
6725
|
{
|
|
6596
6726
|
"fromSymbol": "useManifest",
|
|
6597
|
-
"toSymbol": "
|
|
6598
|
-
"callExpression": "
|
|
6727
|
+
"toSymbol": "use",
|
|
6728
|
+
"callExpression": "use",
|
|
6599
6729
|
"sourcePath": "src/ManifestContext.tsx"
|
|
6600
6730
|
},
|
|
6601
6731
|
{
|
|
6602
6732
|
"fromSymbol": "useManifestContext",
|
|
6603
|
-
"toSymbol": "
|
|
6604
|
-
"callExpression": "
|
|
6733
|
+
"toSymbol": "use",
|
|
6734
|
+
"callExpression": "use",
|
|
6605
6735
|
"sourcePath": "src/ManifestContext.tsx"
|
|
6606
6736
|
},
|
|
6607
6737
|
{
|
|
6608
6738
|
"fromSymbol": "useOptionalManifestContext",
|
|
6609
|
-
"toSymbol": "
|
|
6610
|
-
"callExpression": "
|
|
6739
|
+
"toSymbol": "use",
|
|
6740
|
+
"callExpression": "use",
|
|
6611
6741
|
"sourcePath": "src/ManifestContext.tsx"
|
|
6612
6742
|
},
|
|
6743
|
+
{
|
|
6744
|
+
"fromSymbol": "ManifestProbe",
|
|
6745
|
+
"toSymbol": "useManifestContext",
|
|
6746
|
+
"callExpression": "useManifestContext",
|
|
6747
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6748
|
+
},
|
|
6749
|
+
{
|
|
6750
|
+
"fromSymbol": "RendererConfigProbe",
|
|
6751
|
+
"toSymbol": "useRuntimeRendererConfig",
|
|
6752
|
+
"callExpression": "useRuntimeRendererConfig",
|
|
6753
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6754
|
+
},
|
|
6755
|
+
{
|
|
6756
|
+
"fromSymbol": "OptionalManifestProbe",
|
|
6757
|
+
"toSymbol": "useOptionalManifestContext",
|
|
6758
|
+
"callExpression": "useOptionalManifestContext",
|
|
6759
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6760
|
+
},
|
|
6761
|
+
{
|
|
6762
|
+
"fromSymbol": "src/react19Compatibility.test.tsx",
|
|
6763
|
+
"toSymbol": "describe",
|
|
6764
|
+
"callExpression": "describe",
|
|
6765
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6766
|
+
},
|
|
6767
|
+
{
|
|
6768
|
+
"fromSymbol": "src/react19Compatibility.test.tsx",
|
|
6769
|
+
"toSymbol": "it",
|
|
6770
|
+
"callExpression": "it",
|
|
6771
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6772
|
+
},
|
|
6773
|
+
{
|
|
6774
|
+
"fromSymbol": "src/react19Compatibility.test.tsx",
|
|
6775
|
+
"toSymbol": "renderToStaticMarkup",
|
|
6776
|
+
"callExpression": "renderToStaticMarkup",
|
|
6777
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6778
|
+
},
|
|
6779
|
+
{
|
|
6780
|
+
"fromSymbol": "src/react19Compatibility.test.tsx",
|
|
6781
|
+
"toSymbol": "expect",
|
|
6782
|
+
"callExpression": "expect",
|
|
6783
|
+
"sourcePath": "src/react19Compatibility.test.tsx"
|
|
6784
|
+
},
|
|
6613
6785
|
{
|
|
6614
6786
|
"fromSymbol": "src/readme-usage.ts",
|
|
6615
6787
|
"toSymbol": "createRuntimeManifest",
|
|
@@ -7776,8 +7948,8 @@
|
|
|
7776
7948
|
},
|
|
7777
7949
|
{
|
|
7778
7950
|
"fromSymbol": "useRuntimeMediaResolutionCache",
|
|
7779
|
-
"toSymbol": "
|
|
7780
|
-
"callExpression": "
|
|
7951
|
+
"toSymbol": "use",
|
|
7952
|
+
"callExpression": "use",
|
|
7781
7953
|
"sourcePath": "src/runtimeMediaCache.tsx"
|
|
7782
7954
|
},
|
|
7783
7955
|
{
|
|
@@ -7924,6 +8096,12 @@
|
|
|
7924
8096
|
"callExpression": "isNonEmptyActionId",
|
|
7925
8097
|
"sourcePath": "src/runtimeNodeProps.ts"
|
|
7926
8098
|
},
|
|
8099
|
+
{
|
|
8100
|
+
"fromSymbol": "actionHandler",
|
|
8101
|
+
"toSymbol": "handleAction",
|
|
8102
|
+
"callExpression": "handleAction",
|
|
8103
|
+
"sourcePath": "src/runtimeNodeProps.ts"
|
|
8104
|
+
},
|
|
7927
8105
|
{
|
|
7928
8106
|
"fromSymbol": "src/runtimeNodeProps.ts",
|
|
7929
8107
|
"toSymbol": "handleAction",
|
|
@@ -7960,6 +8138,12 @@
|
|
|
7960
8138
|
"callExpression": "listSourceFiles",
|
|
7961
8139
|
"sourcePath": "src/runtimePackageIsolation.test.ts"
|
|
7962
8140
|
},
|
|
8141
|
+
{
|
|
8142
|
+
"fromSymbol": "readRuntimePackageManifest",
|
|
8143
|
+
"toSymbol": "readFileSync",
|
|
8144
|
+
"callExpression": "readFileSync",
|
|
8145
|
+
"sourcePath": "src/runtimePackageIsolation.test.ts"
|
|
8146
|
+
},
|
|
7963
8147
|
{
|
|
7964
8148
|
"fromSymbol": "src/runtimePackageIsolation.test.ts",
|
|
7965
8149
|
"toSymbol": "describe",
|
|
@@ -7984,6 +8168,12 @@
|
|
|
7984
8168
|
"callExpression": "readFileSync",
|
|
7985
8169
|
"sourcePath": "src/runtimePackageIsolation.test.ts"
|
|
7986
8170
|
},
|
|
8171
|
+
{
|
|
8172
|
+
"fromSymbol": "src/runtimePackageIsolation.test.ts",
|
|
8173
|
+
"toSymbol": "readRuntimePackageManifest",
|
|
8174
|
+
"callExpression": "readRuntimePackageManifest",
|
|
8175
|
+
"sourcePath": "src/runtimePackageIsolation.test.ts"
|
|
8176
|
+
},
|
|
7987
8177
|
{
|
|
7988
8178
|
"fromSymbol": "src/RuntimeRenderer.test.ts",
|
|
7989
8179
|
"toSymbol": "describe",
|
|
@@ -8056,6 +8246,12 @@
|
|
|
8056
8246
|
"callExpression": "dispatchRuntimeComponentEventWithReporting",
|
|
8057
8247
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8058
8248
|
},
|
|
8249
|
+
{
|
|
8250
|
+
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8251
|
+
"toSymbol": "executeRuntimeAction",
|
|
8252
|
+
"callExpression": "executeRuntimeAction",
|
|
8253
|
+
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8254
|
+
},
|
|
8059
8255
|
{
|
|
8060
8256
|
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8061
8257
|
"toSymbol": "resolveRuntimeRegistry",
|
|
@@ -8070,20 +8266,20 @@
|
|
|
8070
8266
|
},
|
|
8071
8267
|
{
|
|
8072
8268
|
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8073
|
-
"toSymbol": "
|
|
8074
|
-
"callExpression": "setAsyncRepeatResult",
|
|
8269
|
+
"toSymbol": "__function",
|
|
8270
|
+
"callExpression": "(async () => {\n const result = await resolveRuntimeRepeatItemsAsync(repeat, {\n apis: effectiveConfig.apis,\n context: effectiveConfig.bindingContext,\n dataBindings: effectiveConfig.dataBindings,\n executeOperation: effectiveConfig.executeOperation,\n node,\n operationResults: effectiveConfig.operationResults,\n stateAdapter: effectiveConfig.stateAdapter,\n writeOperationResult: effectiveConfig.writeOperationResult,\n });\n\n if (repeatRequestIdRef.current !== requestId) {\n return;\n }\n\n setAsyncRepeatResult({ ...result, requestToken: repeatRequestToken });\n })",
|
|
8075
8271
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8076
8272
|
},
|
|
8077
8273
|
{
|
|
8078
8274
|
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8079
|
-
"toSymbol": "
|
|
8080
|
-
"callExpression": "
|
|
8275
|
+
"toSymbol": "resolveRuntimeRepeatItemsAsync",
|
|
8276
|
+
"callExpression": "resolveRuntimeRepeatItemsAsync",
|
|
8081
8277
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8082
8278
|
},
|
|
8083
8279
|
{
|
|
8084
8280
|
"fromSymbol": "src/RuntimeRenderer.tsx",
|
|
8085
|
-
"toSymbol": "
|
|
8086
|
-
"callExpression": "
|
|
8281
|
+
"toSymbol": "setAsyncRepeatResult",
|
|
8282
|
+
"callExpression": "setAsyncRepeatResult",
|
|
8087
8283
|
"sourcePath": "src/RuntimeRenderer.tsx"
|
|
8088
8284
|
},
|
|
8089
8285
|
{
|
|
@@ -8262,8 +8458,8 @@
|
|
|
8262
8458
|
},
|
|
8263
8459
|
{
|
|
8264
8460
|
"fromSymbol": "RuntimeRendererConfigProvider",
|
|
8265
|
-
"toSymbol": "
|
|
8266
|
-
"callExpression": "
|
|
8461
|
+
"toSymbol": "use",
|
|
8462
|
+
"callExpression": "use",
|
|
8267
8463
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
8268
8464
|
},
|
|
8269
8465
|
{
|
|
@@ -8274,8 +8470,8 @@
|
|
|
8274
8470
|
},
|
|
8275
8471
|
{
|
|
8276
8472
|
"fromSymbol": "useRuntimeRendererConfig",
|
|
8277
|
-
"toSymbol": "
|
|
8278
|
-
"callExpression": "
|
|
8473
|
+
"toSymbol": "use",
|
|
8474
|
+
"callExpression": "use",
|
|
8279
8475
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
8280
8476
|
},
|
|
8281
8477
|
{
|
|
@@ -8730,20 +8926,20 @@
|
|
|
8730
8926
|
},
|
|
8731
8927
|
{
|
|
8732
8928
|
"fromSymbol": "src/runtimeScreenLoaders.ts",
|
|
8733
|
-
"toSymbol": "
|
|
8734
|
-
"callExpression": "setState",
|
|
8929
|
+
"toSymbol": "__function",
|
|
8930
|
+
"callExpression": "(async () => {\n const result = await executePreparedRuntimeScreenOperationLoaders({\n apis,\n executeOperation,\n plan,\n screen,\n });\n\n setState((currentState) => {\n const completion = completeRuntimeScreenOperationLoaderRequest({\n lifecycle: lifecycleRef.current,\n requestId,\n result,\n state: currentState.dependencyKey === requestKey ? currentState : request.state,\n });\n\n return completion.accepted ? completion.state : currentState;\n });\n })",
|
|
8735
8931
|
"sourcePath": "src/runtimeScreenLoaders.ts"
|
|
8736
8932
|
},
|
|
8737
8933
|
{
|
|
8738
8934
|
"fromSymbol": "src/runtimeScreenLoaders.ts",
|
|
8739
|
-
"toSymbol": "
|
|
8740
|
-
"callExpression": "
|
|
8935
|
+
"toSymbol": "executePreparedRuntimeScreenOperationLoaders",
|
|
8936
|
+
"callExpression": "executePreparedRuntimeScreenOperationLoaders",
|
|
8741
8937
|
"sourcePath": "src/runtimeScreenLoaders.ts"
|
|
8742
8938
|
},
|
|
8743
8939
|
{
|
|
8744
8940
|
"fromSymbol": "src/runtimeScreenLoaders.ts",
|
|
8745
|
-
"toSymbol": "
|
|
8746
|
-
"callExpression": "
|
|
8941
|
+
"toSymbol": "setState",
|
|
8942
|
+
"callExpression": "setState",
|
|
8747
8943
|
"sourcePath": "src/runtimeScreenLoaders.ts"
|
|
8748
8944
|
},
|
|
8749
8945
|
{
|
|
@@ -8761,7 +8957,7 @@
|
|
|
8761
8957
|
{
|
|
8762
8958
|
"fromSymbol": "src/runtimeScreenLoaders.ts",
|
|
8763
8959
|
"toSymbol": "onDiagnostics",
|
|
8764
|
-
"callExpression": "
|
|
8960
|
+
"callExpression": "onDiagnostics",
|
|
8765
8961
|
"sourcePath": "src/runtimeScreenLoaders.ts"
|
|
8766
8962
|
},
|
|
8767
8963
|
{
|
|
@@ -9018,20 +9214,14 @@
|
|
|
9018
9214
|
},
|
|
9019
9215
|
{
|
|
9020
9216
|
"fromSymbol": "src/useRuntimeMediaProps.ts",
|
|
9021
|
-
"toSymbol": "
|
|
9022
|
-
"callExpression": "
|
|
9023
|
-
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9024
|
-
},
|
|
9025
|
-
{
|
|
9026
|
-
"fromSymbol": "src/useRuntimeMediaProps.ts",
|
|
9027
|
-
"toSymbol": "filterResolvedValues",
|
|
9028
|
-
"callExpression": "filterResolvedValues",
|
|
9217
|
+
"toSymbol": "resolveRuntimeMediaAsset",
|
|
9218
|
+
"callExpression": "resolveRuntimeMediaAsset",
|
|
9029
9219
|
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9030
9220
|
},
|
|
9031
9221
|
{
|
|
9032
9222
|
"fromSymbol": "src/useRuntimeMediaProps.ts",
|
|
9033
|
-
"toSymbol": "
|
|
9034
|
-
"callExpression": "
|
|
9223
|
+
"toSymbol": "setAsyncResolved",
|
|
9224
|
+
"callExpression": "setAsyncResolved",
|
|
9035
9225
|
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9036
9226
|
},
|
|
9037
9227
|
{
|
|
@@ -9053,10 +9243,88 @@
|
|
|
9053
9243
|
"sourcePath": "src/useRuntimeMediaProps.ts"
|
|
9054
9244
|
},
|
|
9055
9245
|
{
|
|
9056
|
-
"fromSymbol": "
|
|
9057
|
-
"toSymbol": "
|
|
9058
|
-
"callExpression": "
|
|
9059
|
-
"sourcePath": "
|
|
9246
|
+
"fromSymbol": "renderReactNativeWebRuntimeFixture",
|
|
9247
|
+
"toSymbol": "renderToStaticMarkup",
|
|
9248
|
+
"callExpression": "renderToStaticMarkup",
|
|
9249
|
+
"sourcePath": "tests/reactNativeWebCompatibility.fixture.tsx"
|
|
9250
|
+
},
|
|
9251
|
+
{
|
|
9252
|
+
"fromSymbol": "tests/reactNativeWebCompatibility.test.ts",
|
|
9253
|
+
"toSymbol": "fileURLToPath",
|
|
9254
|
+
"callExpression": "fileURLToPath",
|
|
9255
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9256
|
+
},
|
|
9257
|
+
{
|
|
9258
|
+
"fromSymbol": "loadBundledFixture",
|
|
9259
|
+
"toSymbol": "expect",
|
|
9260
|
+
"callExpression": "expect",
|
|
9261
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9262
|
+
},
|
|
9263
|
+
{
|
|
9264
|
+
"fromSymbol": "loadBundledFixture",
|
|
9265
|
+
"toSymbol": "mkdtemp",
|
|
9266
|
+
"callExpression": "mkdtemp",
|
|
9267
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9268
|
+
},
|
|
9269
|
+
{
|
|
9270
|
+
"fromSymbol": "loadBundledFixture",
|
|
9271
|
+
"toSymbol": "tmpdir",
|
|
9272
|
+
"callExpression": "tmpdir",
|
|
9273
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9274
|
+
},
|
|
9275
|
+
{
|
|
9276
|
+
"fromSymbol": "loadBundledFixture",
|
|
9277
|
+
"toSymbol": "writeFile",
|
|
9278
|
+
"callExpression": "writeFile",
|
|
9279
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9280
|
+
},
|
|
9281
|
+
{
|
|
9282
|
+
"fromSymbol": "loadBundledFixture",
|
|
9283
|
+
"toSymbol": "pathToFileURL",
|
|
9284
|
+
"callExpression": "pathToFileURL",
|
|
9285
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9286
|
+
},
|
|
9287
|
+
{
|
|
9288
|
+
"fromSymbol": "loadBundledFixture",
|
|
9289
|
+
"toSymbol": "isFixtureModule",
|
|
9290
|
+
"callExpression": "isFixtureModule",
|
|
9291
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9292
|
+
},
|
|
9293
|
+
{
|
|
9294
|
+
"fromSymbol": "loadBundledFixture",
|
|
9295
|
+
"toSymbol": "rm",
|
|
9296
|
+
"callExpression": "rm",
|
|
9297
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9298
|
+
},
|
|
9299
|
+
{
|
|
9300
|
+
"fromSymbol": "tests/reactNativeWebCompatibility.test.ts",
|
|
9301
|
+
"toSymbol": "describe",
|
|
9302
|
+
"callExpression": "describe",
|
|
9303
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9304
|
+
},
|
|
9305
|
+
{
|
|
9306
|
+
"fromSymbol": "tests/reactNativeWebCompatibility.test.ts",
|
|
9307
|
+
"toSymbol": "it",
|
|
9308
|
+
"callExpression": "it",
|
|
9309
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9310
|
+
},
|
|
9311
|
+
{
|
|
9312
|
+
"fromSymbol": "tests/reactNativeWebCompatibility.test.ts",
|
|
9313
|
+
"toSymbol": "loadBundledFixture",
|
|
9314
|
+
"callExpression": "loadBundledFixture",
|
|
9315
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9316
|
+
},
|
|
9317
|
+
{
|
|
9318
|
+
"fromSymbol": "tests/reactNativeWebCompatibility.test.ts",
|
|
9319
|
+
"toSymbol": "renderReactNativeWebRuntimeFixture",
|
|
9320
|
+
"callExpression": "fixture.renderReactNativeWebRuntimeFixture",
|
|
9321
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9322
|
+
},
|
|
9323
|
+
{
|
|
9324
|
+
"fromSymbol": "tests/reactNativeWebCompatibility.test.ts",
|
|
9325
|
+
"toSymbol": "expect",
|
|
9326
|
+
"callExpression": "expect",
|
|
9327
|
+
"sourcePath": "tests/reactNativeWebCompatibility.test.ts"
|
|
9060
9328
|
},
|
|
9061
9329
|
{
|
|
9062
9330
|
"fromSymbol": "tests/runtime.test.ts",
|
|
@@ -10232,8 +10500,8 @@
|
|
|
10232
10500
|
"componentComposition": [
|
|
10233
10501
|
{
|
|
10234
10502
|
"fromComponent": "ManifestProvider",
|
|
10235
|
-
"toComponent": "ManifestContext
|
|
10236
|
-
"jsxElement": "<ManifestContext
|
|
10503
|
+
"toComponent": "ManifestContext",
|
|
10504
|
+
"jsxElement": "<ManifestContext value={{ manifest, activeScreenId, onScreenChange }}>",
|
|
10237
10505
|
"sourcePath": "src/ManifestContext.tsx"
|
|
10238
10506
|
},
|
|
10239
10507
|
{
|
|
@@ -10292,8 +10560,8 @@
|
|
|
10292
10560
|
},
|
|
10293
10561
|
{
|
|
10294
10562
|
"fromComponent": "RuntimeRendererConfigProvider",
|
|
10295
|
-
"toComponent": "RuntimeRendererConfigContext
|
|
10296
|
-
"jsxElement": "<RuntimeRendererConfigContext
|
|
10563
|
+
"toComponent": "RuntimeRendererConfigContext",
|
|
10564
|
+
"jsxElement": "<RuntimeRendererConfigContext value={mergedConfig}>",
|
|
10297
10565
|
"sourcePath": "src/RuntimeRendererConfig.tsx"
|
|
10298
10566
|
},
|
|
10299
10567
|
{
|