@alloy-js/core 0.21.0-dev.2 → 0.21.0-dev.8
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/dist/src/binder.d.ts +3 -3
- package/dist/src/binder.d.ts.map +1 -1
- package/dist/src/binder.js +18 -4
- package/dist/src/binder.js.map +1 -1
- package/dist/src/components/ReferenceOrContent.d.ts +1 -1
- package/dist/src/components/ReferenceOrContent.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/library-symbol-reference.d.ts +8 -0
- package/dist/src/library-symbol-reference.d.ts.map +1 -0
- package/dist/src/library-symbol-reference.js +5 -0
- package/dist/src/library-symbol-reference.js.map +1 -0
- package/dist/src/refkey.d.ts +10 -8
- package/dist/src/refkey.d.ts.map +1 -1
- package/dist/src/refkey.js +34 -13
- package/dist/src/refkey.js.map +1 -1
- package/dist/src/render.d.ts.map +1 -1
- package/dist/src/render.js +10 -4
- package/dist/src/render.js.map +1 -1
- package/dist/src/runtime/component.d.ts +22 -2
- package/dist/src/runtime/component.d.ts.map +1 -1
- package/dist/src/runtime/component.js +18 -0
- package/dist/src/runtime/component.js.map +1 -1
- package/dist/src/symbols/output-symbol.d.ts +9 -0
- package/dist/src/symbols/output-symbol.d.ts.map +1 -1
- package/dist/src/symbols/output-symbol.js +30 -0
- package/dist/src/symbols/output-symbol.js.map +1 -1
- package/dist/test/refkey.test.js +11 -1
- package/dist/test/refkey.test.js.map +1 -1
- package/dist/test/rendering/basic.test.js +22 -0
- package/dist/test/rendering/basic.test.js.map +1 -1
- package/dist/test/symbols/output-scope.test.js +4 -3
- package/dist/test/symbols/output-scope.test.js.map +1 -1
- package/dist/test/symbols/resolution.test.js +29 -1
- package/dist/test/symbols/resolution.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/binder.ts +34 -6
- package/src/index.ts +1 -0
- package/src/library-symbol-reference.ts +20 -0
- package/src/refkey.ts +57 -29
- package/src/render.ts +11 -3
- package/src/runtime/component.ts +33 -1
- package/src/symbols/output-symbol.ts +40 -0
- package/temp/api.json +589 -39
- package/test/refkey.test.ts +12 -1
- package/test/rendering/basic.test.tsx +35 -1
- package/test/symbols/output-scope.test.ts +4 -4
- package/test/symbols/resolution.test.ts +42 -1
package/temp/api.json
CHANGED
|
@@ -1499,8 +1499,8 @@
|
|
|
1499
1499
|
},
|
|
1500
1500
|
{
|
|
1501
1501
|
"kind": "Reference",
|
|
1502
|
-
"text": "
|
|
1503
|
-
"canonicalReference": "@alloy-js/core!
|
|
1502
|
+
"text": "Refkeyable",
|
|
1503
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
1504
1504
|
},
|
|
1505
1505
|
{
|
|
1506
1506
|
"kind": "Content",
|
|
@@ -2233,9 +2233,23 @@
|
|
|
2233
2233
|
"kind": "Content",
|
|
2234
2234
|
"text": "export type Child = "
|
|
2235
2235
|
},
|
|
2236
|
+
{
|
|
2237
|
+
"kind": "Reference",
|
|
2238
|
+
"text": "RenderableObject",
|
|
2239
|
+
"canonicalReference": "@alloy-js/core!RenderableObject:interface"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"kind": "Content",
|
|
2243
|
+
"text": " | "
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
"kind": "Reference",
|
|
2247
|
+
"text": "RefkeyableObject",
|
|
2248
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
2249
|
+
},
|
|
2236
2250
|
{
|
|
2237
2251
|
"kind": "Content",
|
|
2238
|
-
"text": "string | boolean | number | undefined | null | void | (() => "
|
|
2252
|
+
"text": " | string | boolean | number | undefined | null | void | (() => "
|
|
2239
2253
|
},
|
|
2240
2254
|
{
|
|
2241
2255
|
"kind": "Reference",
|
|
@@ -2288,7 +2302,7 @@
|
|
|
2288
2302
|
"name": "Child",
|
|
2289
2303
|
"typeTokenRange": {
|
|
2290
2304
|
"startIndex": 1,
|
|
2291
|
-
"endIndex":
|
|
2305
|
+
"endIndex": 14
|
|
2292
2306
|
}
|
|
2293
2307
|
},
|
|
2294
2308
|
{
|
|
@@ -9099,6 +9113,61 @@
|
|
|
9099
9113
|
],
|
|
9100
9114
|
"name": "isKeyedChild"
|
|
9101
9115
|
},
|
|
9116
|
+
{
|
|
9117
|
+
"kind": "Function",
|
|
9118
|
+
"canonicalReference": "@alloy-js/core!isLibrarySymbolReference:function(1)",
|
|
9119
|
+
"docComment": "",
|
|
9120
|
+
"excerptTokens": [
|
|
9121
|
+
{
|
|
9122
|
+
"kind": "Content",
|
|
9123
|
+
"text": "export declare function isLibrarySymbolReference(value: "
|
|
9124
|
+
},
|
|
9125
|
+
{
|
|
9126
|
+
"kind": "Content",
|
|
9127
|
+
"text": "unknown"
|
|
9128
|
+
},
|
|
9129
|
+
{
|
|
9130
|
+
"kind": "Content",
|
|
9131
|
+
"text": "): "
|
|
9132
|
+
},
|
|
9133
|
+
{
|
|
9134
|
+
"kind": "Reference",
|
|
9135
|
+
"text": "value",
|
|
9136
|
+
"canonicalReference": "@alloy-js/core!~value"
|
|
9137
|
+
},
|
|
9138
|
+
{
|
|
9139
|
+
"kind": "Content",
|
|
9140
|
+
"text": " is "
|
|
9141
|
+
},
|
|
9142
|
+
{
|
|
9143
|
+
"kind": "Reference",
|
|
9144
|
+
"text": "LibrarySymbolReference",
|
|
9145
|
+
"canonicalReference": "@alloy-js/core!LibrarySymbolReference:interface"
|
|
9146
|
+
},
|
|
9147
|
+
{
|
|
9148
|
+
"kind": "Content",
|
|
9149
|
+
"text": ";"
|
|
9150
|
+
}
|
|
9151
|
+
],
|
|
9152
|
+
"fileUrlPath": "src/library-symbol-reference.ts",
|
|
9153
|
+
"returnTypeTokenRange": {
|
|
9154
|
+
"startIndex": 3,
|
|
9155
|
+
"endIndex": 6
|
|
9156
|
+
},
|
|
9157
|
+
"releaseTag": "Public",
|
|
9158
|
+
"overloadIndex": 1,
|
|
9159
|
+
"parameters": [
|
|
9160
|
+
{
|
|
9161
|
+
"parameterName": "value",
|
|
9162
|
+
"parameterTypeTokenRange": {
|
|
9163
|
+
"startIndex": 1,
|
|
9164
|
+
"endIndex": 2
|
|
9165
|
+
},
|
|
9166
|
+
"isOptional": false
|
|
9167
|
+
}
|
|
9168
|
+
],
|
|
9169
|
+
"name": "isLibrarySymbolReference"
|
|
9170
|
+
},
|
|
9102
9171
|
{
|
|
9103
9172
|
"kind": "Function",
|
|
9104
9173
|
"canonicalReference": "@alloy-js/core!isMemberRefkey:function(1)",
|
|
@@ -9319,6 +9388,116 @@
|
|
|
9319
9388
|
],
|
|
9320
9389
|
"name": "isRefkey"
|
|
9321
9390
|
},
|
|
9391
|
+
{
|
|
9392
|
+
"kind": "Function",
|
|
9393
|
+
"canonicalReference": "@alloy-js/core!isRefkeyable:function(1)",
|
|
9394
|
+
"docComment": "",
|
|
9395
|
+
"excerptTokens": [
|
|
9396
|
+
{
|
|
9397
|
+
"kind": "Content",
|
|
9398
|
+
"text": "export declare function isRefkeyable(value: "
|
|
9399
|
+
},
|
|
9400
|
+
{
|
|
9401
|
+
"kind": "Content",
|
|
9402
|
+
"text": "unknown"
|
|
9403
|
+
},
|
|
9404
|
+
{
|
|
9405
|
+
"kind": "Content",
|
|
9406
|
+
"text": "): "
|
|
9407
|
+
},
|
|
9408
|
+
{
|
|
9409
|
+
"kind": "Reference",
|
|
9410
|
+
"text": "value",
|
|
9411
|
+
"canonicalReference": "@alloy-js/core!~value"
|
|
9412
|
+
},
|
|
9413
|
+
{
|
|
9414
|
+
"kind": "Content",
|
|
9415
|
+
"text": " is "
|
|
9416
|
+
},
|
|
9417
|
+
{
|
|
9418
|
+
"kind": "Reference",
|
|
9419
|
+
"text": "RefkeyableObject",
|
|
9420
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
9421
|
+
},
|
|
9422
|
+
{
|
|
9423
|
+
"kind": "Content",
|
|
9424
|
+
"text": ";"
|
|
9425
|
+
}
|
|
9426
|
+
],
|
|
9427
|
+
"fileUrlPath": "src/refkey.ts",
|
|
9428
|
+
"returnTypeTokenRange": {
|
|
9429
|
+
"startIndex": 3,
|
|
9430
|
+
"endIndex": 6
|
|
9431
|
+
},
|
|
9432
|
+
"releaseTag": "Public",
|
|
9433
|
+
"overloadIndex": 1,
|
|
9434
|
+
"parameters": [
|
|
9435
|
+
{
|
|
9436
|
+
"parameterName": "value",
|
|
9437
|
+
"parameterTypeTokenRange": {
|
|
9438
|
+
"startIndex": 1,
|
|
9439
|
+
"endIndex": 2
|
|
9440
|
+
},
|
|
9441
|
+
"isOptional": false
|
|
9442
|
+
}
|
|
9443
|
+
],
|
|
9444
|
+
"name": "isRefkeyable"
|
|
9445
|
+
},
|
|
9446
|
+
{
|
|
9447
|
+
"kind": "Function",
|
|
9448
|
+
"canonicalReference": "@alloy-js/core!isRenderableObject:function(1)",
|
|
9449
|
+
"docComment": "/**\n * Returns true if the item is a renderable object, meaning it has an `[ay.RENDERABLE]`\n * method.\n *\n * @param item - The item to check.\n *\n * @returns True if the item is a renderable object.\n */\n",
|
|
9450
|
+
"excerptTokens": [
|
|
9451
|
+
{
|
|
9452
|
+
"kind": "Content",
|
|
9453
|
+
"text": "export declare function isRenderableObject(item: "
|
|
9454
|
+
},
|
|
9455
|
+
{
|
|
9456
|
+
"kind": "Content",
|
|
9457
|
+
"text": "unknown"
|
|
9458
|
+
},
|
|
9459
|
+
{
|
|
9460
|
+
"kind": "Content",
|
|
9461
|
+
"text": "): "
|
|
9462
|
+
},
|
|
9463
|
+
{
|
|
9464
|
+
"kind": "Reference",
|
|
9465
|
+
"text": "item",
|
|
9466
|
+
"canonicalReference": "@alloy-js/core!~item"
|
|
9467
|
+
},
|
|
9468
|
+
{
|
|
9469
|
+
"kind": "Content",
|
|
9470
|
+
"text": " is "
|
|
9471
|
+
},
|
|
9472
|
+
{
|
|
9473
|
+
"kind": "Reference",
|
|
9474
|
+
"text": "RenderableObject",
|
|
9475
|
+
"canonicalReference": "@alloy-js/core!RenderableObject:interface"
|
|
9476
|
+
},
|
|
9477
|
+
{
|
|
9478
|
+
"kind": "Content",
|
|
9479
|
+
"text": ";"
|
|
9480
|
+
}
|
|
9481
|
+
],
|
|
9482
|
+
"fileUrlPath": "src/runtime/component.ts",
|
|
9483
|
+
"returnTypeTokenRange": {
|
|
9484
|
+
"startIndex": 3,
|
|
9485
|
+
"endIndex": 6
|
|
9486
|
+
},
|
|
9487
|
+
"releaseTag": "Public",
|
|
9488
|
+
"overloadIndex": 1,
|
|
9489
|
+
"parameters": [
|
|
9490
|
+
{
|
|
9491
|
+
"parameterName": "item",
|
|
9492
|
+
"parameterTypeTokenRange": {
|
|
9493
|
+
"startIndex": 1,
|
|
9494
|
+
"endIndex": 2
|
|
9495
|
+
},
|
|
9496
|
+
"isOptional": false
|
|
9497
|
+
}
|
|
9498
|
+
],
|
|
9499
|
+
"name": "isRenderableObject"
|
|
9500
|
+
},
|
|
9322
9501
|
{
|
|
9323
9502
|
"kind": "Function",
|
|
9324
9503
|
"canonicalReference": "@alloy-js/core!isSymbolRefkey:function(1)",
|
|
@@ -9600,6 +9779,76 @@
|
|
|
9600
9779
|
"endIndex": 3
|
|
9601
9780
|
}
|
|
9602
9781
|
},
|
|
9782
|
+
{
|
|
9783
|
+
"kind": "Interface",
|
|
9784
|
+
"canonicalReference": "@alloy-js/core!LibrarySymbolReference:interface",
|
|
9785
|
+
"docComment": "",
|
|
9786
|
+
"excerptTokens": [
|
|
9787
|
+
{
|
|
9788
|
+
"kind": "Content",
|
|
9789
|
+
"text": "export interface LibrarySymbolReference extends "
|
|
9790
|
+
},
|
|
9791
|
+
{
|
|
9792
|
+
"kind": "Reference",
|
|
9793
|
+
"text": "RefkeyableObject",
|
|
9794
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
9795
|
+
},
|
|
9796
|
+
{
|
|
9797
|
+
"kind": "Content",
|
|
9798
|
+
"text": " "
|
|
9799
|
+
}
|
|
9800
|
+
],
|
|
9801
|
+
"fileUrlPath": "src/library-symbol-reference.ts",
|
|
9802
|
+
"releaseTag": "Public",
|
|
9803
|
+
"name": "LibrarySymbolReference",
|
|
9804
|
+
"preserveMemberOrder": false,
|
|
9805
|
+
"members": [
|
|
9806
|
+
{
|
|
9807
|
+
"kind": "MethodSignature",
|
|
9808
|
+
"canonicalReference": "@alloy-js/core!LibrarySymbolReference#[TO_SYMBOL]:member(1)",
|
|
9809
|
+
"docComment": "",
|
|
9810
|
+
"excerptTokens": [
|
|
9811
|
+
{
|
|
9812
|
+
"kind": "Content",
|
|
9813
|
+
"text": "["
|
|
9814
|
+
},
|
|
9815
|
+
{
|
|
9816
|
+
"kind": "Reference",
|
|
9817
|
+
"text": "TO_SYMBOL",
|
|
9818
|
+
"canonicalReference": "@alloy-js/core!TO_SYMBOL:var"
|
|
9819
|
+
},
|
|
9820
|
+
{
|
|
9821
|
+
"kind": "Content",
|
|
9822
|
+
"text": "](): "
|
|
9823
|
+
},
|
|
9824
|
+
{
|
|
9825
|
+
"kind": "Reference",
|
|
9826
|
+
"text": "OutputSymbol",
|
|
9827
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
9828
|
+
},
|
|
9829
|
+
{
|
|
9830
|
+
"kind": "Content",
|
|
9831
|
+
"text": ";"
|
|
9832
|
+
}
|
|
9833
|
+
],
|
|
9834
|
+
"isOptional": false,
|
|
9835
|
+
"returnTypeTokenRange": {
|
|
9836
|
+
"startIndex": 3,
|
|
9837
|
+
"endIndex": 4
|
|
9838
|
+
},
|
|
9839
|
+
"releaseTag": "Public",
|
|
9840
|
+
"overloadIndex": 1,
|
|
9841
|
+
"parameters": [],
|
|
9842
|
+
"name": "[TO_SYMBOL]"
|
|
9843
|
+
}
|
|
9844
|
+
],
|
|
9845
|
+
"extendsTokenRanges": [
|
|
9846
|
+
{
|
|
9847
|
+
"startIndex": 1,
|
|
9848
|
+
"endIndex": 2
|
|
9849
|
+
}
|
|
9850
|
+
]
|
|
9851
|
+
},
|
|
9603
9852
|
{
|
|
9604
9853
|
"kind": "TypeAlias",
|
|
9605
9854
|
"canonicalReference": "@alloy-js/core!LineIntrinsicElement:type",
|
|
@@ -10959,8 +11208,8 @@
|
|
|
10959
11208
|
},
|
|
10960
11209
|
{
|
|
10961
11210
|
"kind": "Reference",
|
|
10962
|
-
"text": "
|
|
10963
|
-
"canonicalReference": "@alloy-js/core!
|
|
11211
|
+
"text": "Refkeyable",
|
|
11212
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
10964
11213
|
},
|
|
10965
11214
|
{
|
|
10966
11215
|
"kind": "Content",
|
|
@@ -10972,21 +11221,21 @@
|
|
|
10972
11221
|
},
|
|
10973
11222
|
{
|
|
10974
11223
|
"kind": "Reference",
|
|
10975
|
-
"text": "
|
|
10976
|
-
"canonicalReference": "@alloy-js/core!
|
|
11224
|
+
"text": "Refkeyable",
|
|
11225
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
10977
11226
|
},
|
|
10978
11227
|
{
|
|
10979
11228
|
"kind": "Content",
|
|
10980
|
-
"text": ", ..."
|
|
11229
|
+
"text": " | string, ...("
|
|
10981
11230
|
},
|
|
10982
11231
|
{
|
|
10983
11232
|
"kind": "Reference",
|
|
10984
|
-
"text": "
|
|
10985
|
-
"canonicalReference": "@alloy-js/core!
|
|
11233
|
+
"text": "Refkeyable",
|
|
11234
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
10986
11235
|
},
|
|
10987
11236
|
{
|
|
10988
11237
|
"kind": "Content",
|
|
10989
|
-
"text": "[]]"
|
|
11238
|
+
"text": " | string)[]]"
|
|
10990
11239
|
},
|
|
10991
11240
|
{
|
|
10992
11241
|
"kind": "Content",
|
|
@@ -11040,8 +11289,8 @@
|
|
|
11040
11289
|
},
|
|
11041
11290
|
{
|
|
11042
11291
|
"kind": "Reference",
|
|
11043
|
-
"text": "
|
|
11044
|
-
"canonicalReference": "@alloy-js/core!
|
|
11292
|
+
"text": "RefkeyableObject",
|
|
11293
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
11045
11294
|
},
|
|
11046
11295
|
{
|
|
11047
11296
|
"kind": "Content",
|
|
@@ -11095,6 +11344,10 @@
|
|
|
11095
11344
|
"text": "Refkey",
|
|
11096
11345
|
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
11097
11346
|
},
|
|
11347
|
+
{
|
|
11348
|
+
"kind": "Content",
|
|
11349
|
+
"text": " | string"
|
|
11350
|
+
},
|
|
11098
11351
|
{
|
|
11099
11352
|
"kind": "Content",
|
|
11100
11353
|
"text": ";"
|
|
@@ -11106,7 +11359,7 @@
|
|
|
11106
11359
|
"name": "member",
|
|
11107
11360
|
"propertyTypeTokenRange": {
|
|
11108
11361
|
"startIndex": 1,
|
|
11109
|
-
"endIndex":
|
|
11362
|
+
"endIndex": 3
|
|
11110
11363
|
}
|
|
11111
11364
|
}
|
|
11112
11365
|
],
|
|
@@ -15659,6 +15912,59 @@
|
|
|
15659
15912
|
"isProtected": false,
|
|
15660
15913
|
"isAbstract": false
|
|
15661
15914
|
},
|
|
15915
|
+
{
|
|
15916
|
+
"kind": "Method",
|
|
15917
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol#resolveMemberByName:member(1)",
|
|
15918
|
+
"docComment": "/**\n * Get a member symbol by name from this symbol's member spaces. Checks member\n * spaces in order until it finds a member with that name.\n */\n",
|
|
15919
|
+
"excerptTokens": [
|
|
15920
|
+
{
|
|
15921
|
+
"kind": "Content",
|
|
15922
|
+
"text": "resolveMemberByName(name: "
|
|
15923
|
+
},
|
|
15924
|
+
{
|
|
15925
|
+
"kind": "Content",
|
|
15926
|
+
"text": "string"
|
|
15927
|
+
},
|
|
15928
|
+
{
|
|
15929
|
+
"kind": "Content",
|
|
15930
|
+
"text": "): "
|
|
15931
|
+
},
|
|
15932
|
+
{
|
|
15933
|
+
"kind": "Reference",
|
|
15934
|
+
"text": "OutputSymbol",
|
|
15935
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
15936
|
+
},
|
|
15937
|
+
{
|
|
15938
|
+
"kind": "Content",
|
|
15939
|
+
"text": " | undefined"
|
|
15940
|
+
},
|
|
15941
|
+
{
|
|
15942
|
+
"kind": "Content",
|
|
15943
|
+
"text": ";"
|
|
15944
|
+
}
|
|
15945
|
+
],
|
|
15946
|
+
"isStatic": false,
|
|
15947
|
+
"returnTypeTokenRange": {
|
|
15948
|
+
"startIndex": 3,
|
|
15949
|
+
"endIndex": 5
|
|
15950
|
+
},
|
|
15951
|
+
"releaseTag": "Public",
|
|
15952
|
+
"isProtected": false,
|
|
15953
|
+
"overloadIndex": 1,
|
|
15954
|
+
"parameters": [
|
|
15955
|
+
{
|
|
15956
|
+
"parameterName": "name",
|
|
15957
|
+
"parameterTypeTokenRange": {
|
|
15958
|
+
"startIndex": 1,
|
|
15959
|
+
"endIndex": 2
|
|
15960
|
+
},
|
|
15961
|
+
"isOptional": false
|
|
15962
|
+
}
|
|
15963
|
+
],
|
|
15964
|
+
"isOptional": false,
|
|
15965
|
+
"isAbstract": false,
|
|
15966
|
+
"name": "resolveMemberByName"
|
|
15967
|
+
},
|
|
15662
15968
|
{
|
|
15663
15969
|
"kind": "Property",
|
|
15664
15970
|
"canonicalReference": "@alloy-js/core!OutputSymbol#scope:member",
|
|
@@ -15972,6 +16278,33 @@
|
|
|
15972
16278
|
"endIndex": 2
|
|
15973
16279
|
}
|
|
15974
16280
|
},
|
|
16281
|
+
{
|
|
16282
|
+
"kind": "PropertySignature",
|
|
16283
|
+
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#lazyMemberInitializer:member",
|
|
16284
|
+
"docComment": "/**\n * Provide a function which lazy-initializes members when an enumeration of members are needed.\n */\n",
|
|
16285
|
+
"excerptTokens": [
|
|
16286
|
+
{
|
|
16287
|
+
"kind": "Content",
|
|
16288
|
+
"text": "lazyMemberInitializer?: "
|
|
16289
|
+
},
|
|
16290
|
+
{
|
|
16291
|
+
"kind": "Content",
|
|
16292
|
+
"text": "() => void"
|
|
16293
|
+
},
|
|
16294
|
+
{
|
|
16295
|
+
"kind": "Content",
|
|
16296
|
+
"text": ";"
|
|
16297
|
+
}
|
|
16298
|
+
],
|
|
16299
|
+
"isReadonly": false,
|
|
16300
|
+
"isOptional": true,
|
|
16301
|
+
"releaseTag": "Public",
|
|
16302
|
+
"name": "lazyMemberInitializer",
|
|
16303
|
+
"propertyTypeTokenRange": {
|
|
16304
|
+
"startIndex": 1,
|
|
16305
|
+
"endIndex": 2
|
|
16306
|
+
}
|
|
16307
|
+
},
|
|
15975
16308
|
{
|
|
15976
16309
|
"kind": "PropertySignature",
|
|
15977
16310
|
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#metadata:member",
|
|
@@ -17680,43 +18013,43 @@
|
|
|
17680
18013
|
},
|
|
17681
18014
|
{
|
|
17682
18015
|
"kind": "Content",
|
|
17683
|
-
"text": "<string | number | boolean | void | (
|
|
18016
|
+
"text": "<string | number | boolean | void | import(\"../runtime/component.js\")."
|
|
17684
18017
|
},
|
|
17685
18018
|
{
|
|
17686
18019
|
"kind": "Reference",
|
|
17687
|
-
"text": "
|
|
17688
|
-
"canonicalReference": "@alloy-js/core!
|
|
18020
|
+
"text": "RenderableObject",
|
|
18021
|
+
"canonicalReference": "@alloy-js/core!RenderableObject:interface"
|
|
17689
18022
|
},
|
|
17690
18023
|
{
|
|
17691
18024
|
"kind": "Content",
|
|
17692
|
-
"text": "
|
|
18025
|
+
"text": " | import(\"../refkey.js\")."
|
|
17693
18026
|
},
|
|
17694
18027
|
{
|
|
17695
18028
|
"kind": "Reference",
|
|
17696
|
-
"text": "
|
|
17697
|
-
"canonicalReference": "@
|
|
18029
|
+
"text": "RefkeyableObject",
|
|
18030
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
17698
18031
|
},
|
|
17699
18032
|
{
|
|
17700
18033
|
"kind": "Content",
|
|
17701
|
-
"text": "
|
|
18034
|
+
"text": " | (() => "
|
|
17702
18035
|
},
|
|
17703
18036
|
{
|
|
17704
18037
|
"kind": "Reference",
|
|
17705
|
-
"text": "
|
|
17706
|
-
"canonicalReference": "@alloy-js/core!
|
|
18038
|
+
"text": "Children",
|
|
18039
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
17707
18040
|
},
|
|
17708
18041
|
{
|
|
17709
18042
|
"kind": "Content",
|
|
17710
|
-
"text": " | import(\"
|
|
18043
|
+
"text": ") | import(\"@vue/reactivity\")."
|
|
17711
18044
|
},
|
|
17712
18045
|
{
|
|
17713
18046
|
"kind": "Reference",
|
|
17714
|
-
"text": "
|
|
17715
|
-
"canonicalReference": "@
|
|
18047
|
+
"text": "Ref",
|
|
18048
|
+
"canonicalReference": "@vue/reactivity!Ref:interface"
|
|
17716
18049
|
},
|
|
17717
18050
|
{
|
|
17718
18051
|
"kind": "Content",
|
|
17719
|
-
"text": " | import(\"../reactivity.js\")."
|
|
18052
|
+
"text": "<any, any> | import(\"../reactivity.js\")."
|
|
17720
18053
|
},
|
|
17721
18054
|
{
|
|
17722
18055
|
"kind": "Reference",
|
|
@@ -18107,12 +18440,71 @@
|
|
|
18107
18440
|
},
|
|
18108
18441
|
{
|
|
18109
18442
|
"kind": "TypeAlias",
|
|
18110
|
-
"canonicalReference": "@alloy-js/core!
|
|
18443
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type",
|
|
18444
|
+
"docComment": "",
|
|
18445
|
+
"excerptTokens": [
|
|
18446
|
+
{
|
|
18447
|
+
"kind": "Content",
|
|
18448
|
+
"text": "export type Refkeyable = "
|
|
18449
|
+
},
|
|
18450
|
+
{
|
|
18451
|
+
"kind": "Reference",
|
|
18452
|
+
"text": "RefkeyableObject",
|
|
18453
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
18454
|
+
},
|
|
18455
|
+
{
|
|
18456
|
+
"kind": "Content",
|
|
18457
|
+
"text": " | "
|
|
18458
|
+
},
|
|
18459
|
+
{
|
|
18460
|
+
"kind": "Reference",
|
|
18461
|
+
"text": "Refkey",
|
|
18462
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
18463
|
+
},
|
|
18464
|
+
{
|
|
18465
|
+
"kind": "Content",
|
|
18466
|
+
"text": ";"
|
|
18467
|
+
}
|
|
18468
|
+
],
|
|
18469
|
+
"fileUrlPath": "src/refkey.ts",
|
|
18470
|
+
"releaseTag": "Public",
|
|
18471
|
+
"name": "Refkeyable",
|
|
18472
|
+
"typeTokenRange": {
|
|
18473
|
+
"startIndex": 1,
|
|
18474
|
+
"endIndex": 4
|
|
18475
|
+
}
|
|
18476
|
+
},
|
|
18477
|
+
{
|
|
18478
|
+
"kind": "Variable",
|
|
18479
|
+
"canonicalReference": "@alloy-js/core!REFKEYABLE:var",
|
|
18480
|
+
"docComment": "",
|
|
18481
|
+
"excerptTokens": [
|
|
18482
|
+
{
|
|
18483
|
+
"kind": "Content",
|
|
18484
|
+
"text": "REFKEYABLE: "
|
|
18485
|
+
},
|
|
18486
|
+
{
|
|
18487
|
+
"kind": "Content",
|
|
18488
|
+
"text": "unique symbol"
|
|
18489
|
+
}
|
|
18490
|
+
],
|
|
18491
|
+
"fileUrlPath": "src/refkey.ts",
|
|
18492
|
+
"isReadonly": true,
|
|
18493
|
+
"releaseTag": "Public",
|
|
18494
|
+
"name": "REFKEYABLE",
|
|
18495
|
+
"variableTypeTokenRange": {
|
|
18496
|
+
"startIndex": 1,
|
|
18497
|
+
"endIndex": 2
|
|
18498
|
+
}
|
|
18499
|
+
},
|
|
18500
|
+
{
|
|
18501
|
+
"kind": "TypeAlias",
|
|
18502
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type",
|
|
18111
18503
|
"docComment": "",
|
|
18112
18504
|
"excerptTokens": [
|
|
18113
18505
|
{
|
|
18114
18506
|
"kind": "Content",
|
|
18115
|
-
"text": "export type
|
|
18507
|
+
"text": "export type RefkeyableObject = "
|
|
18116
18508
|
},
|
|
18117
18509
|
{
|
|
18118
18510
|
"kind": "Content",
|
|
@@ -18120,12 +18512,21 @@
|
|
|
18120
18512
|
},
|
|
18121
18513
|
{
|
|
18122
18514
|
"kind": "Reference",
|
|
18123
|
-
"text": "
|
|
18124
|
-
"canonicalReference": "@alloy-js/core
|
|
18515
|
+
"text": "REFKEYABLE",
|
|
18516
|
+
"canonicalReference": "@alloy-js/core!REFKEYABLE:var"
|
|
18517
|
+
},
|
|
18518
|
+
{
|
|
18519
|
+
"kind": "Content",
|
|
18520
|
+
"text": "](): "
|
|
18521
|
+
},
|
|
18522
|
+
{
|
|
18523
|
+
"kind": "Reference",
|
|
18524
|
+
"text": "Refkey",
|
|
18525
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
18125
18526
|
},
|
|
18126
18527
|
{
|
|
18127
18528
|
"kind": "Content",
|
|
18128
|
-
"text": "
|
|
18529
|
+
"text": ";\n}"
|
|
18129
18530
|
},
|
|
18130
18531
|
{
|
|
18131
18532
|
"kind": "Content",
|
|
@@ -18134,10 +18535,10 @@
|
|
|
18134
18535
|
],
|
|
18135
18536
|
"fileUrlPath": "src/refkey.ts",
|
|
18136
18537
|
"releaseTag": "Public",
|
|
18137
|
-
"name": "
|
|
18538
|
+
"name": "RefkeyableObject",
|
|
18138
18539
|
"typeTokenRange": {
|
|
18139
18540
|
"startIndex": 1,
|
|
18140
|
-
"endIndex":
|
|
18541
|
+
"endIndex": 6
|
|
18141
18542
|
}
|
|
18142
18543
|
},
|
|
18143
18544
|
{
|
|
@@ -18204,6 +18605,85 @@
|
|
|
18204
18605
|
],
|
|
18205
18606
|
"name": "render"
|
|
18206
18607
|
},
|
|
18608
|
+
{
|
|
18609
|
+
"kind": "Variable",
|
|
18610
|
+
"canonicalReference": "@alloy-js/core!RENDERABLE:var",
|
|
18611
|
+
"docComment": "",
|
|
18612
|
+
"excerptTokens": [
|
|
18613
|
+
{
|
|
18614
|
+
"kind": "Content",
|
|
18615
|
+
"text": "RENDERABLE: "
|
|
18616
|
+
},
|
|
18617
|
+
{
|
|
18618
|
+
"kind": "Content",
|
|
18619
|
+
"text": "unique symbol"
|
|
18620
|
+
}
|
|
18621
|
+
],
|
|
18622
|
+
"fileUrlPath": "src/runtime/component.ts",
|
|
18623
|
+
"isReadonly": true,
|
|
18624
|
+
"releaseTag": "Public",
|
|
18625
|
+
"name": "RENDERABLE",
|
|
18626
|
+
"variableTypeTokenRange": {
|
|
18627
|
+
"startIndex": 1,
|
|
18628
|
+
"endIndex": 2
|
|
18629
|
+
}
|
|
18630
|
+
},
|
|
18631
|
+
{
|
|
18632
|
+
"kind": "Interface",
|
|
18633
|
+
"canonicalReference": "@alloy-js/core!RenderableObject:interface",
|
|
18634
|
+
"docComment": "/**\n * A renderable object is any object that has an `[ay.RENDERABLE]` method that\n * returns children. This is used to allow custom object types to be used as\n * children in Alloy components.\n */\n",
|
|
18635
|
+
"excerptTokens": [
|
|
18636
|
+
{
|
|
18637
|
+
"kind": "Content",
|
|
18638
|
+
"text": "export interface RenderableObject "
|
|
18639
|
+
}
|
|
18640
|
+
],
|
|
18641
|
+
"fileUrlPath": "src/runtime/component.ts",
|
|
18642
|
+
"releaseTag": "Public",
|
|
18643
|
+
"name": "RenderableObject",
|
|
18644
|
+
"preserveMemberOrder": false,
|
|
18645
|
+
"members": [
|
|
18646
|
+
{
|
|
18647
|
+
"kind": "MethodSignature",
|
|
18648
|
+
"canonicalReference": "@alloy-js/core!RenderableObject#[RENDERABLE]:member(1)",
|
|
18649
|
+
"docComment": "/**\n * Renders this object to children.\n */\n",
|
|
18650
|
+
"excerptTokens": [
|
|
18651
|
+
{
|
|
18652
|
+
"kind": "Content",
|
|
18653
|
+
"text": "["
|
|
18654
|
+
},
|
|
18655
|
+
{
|
|
18656
|
+
"kind": "Reference",
|
|
18657
|
+
"text": "RENDERABLE",
|
|
18658
|
+
"canonicalReference": "@alloy-js/core!RENDERABLE:var"
|
|
18659
|
+
},
|
|
18660
|
+
{
|
|
18661
|
+
"kind": "Content",
|
|
18662
|
+
"text": "](): "
|
|
18663
|
+
},
|
|
18664
|
+
{
|
|
18665
|
+
"kind": "Reference",
|
|
18666
|
+
"text": "Children",
|
|
18667
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
18668
|
+
},
|
|
18669
|
+
{
|
|
18670
|
+
"kind": "Content",
|
|
18671
|
+
"text": ";"
|
|
18672
|
+
}
|
|
18673
|
+
],
|
|
18674
|
+
"isOptional": false,
|
|
18675
|
+
"returnTypeTokenRange": {
|
|
18676
|
+
"startIndex": 3,
|
|
18677
|
+
"endIndex": 4
|
|
18678
|
+
},
|
|
18679
|
+
"releaseTag": "Public",
|
|
18680
|
+
"overloadIndex": 1,
|
|
18681
|
+
"parameters": [],
|
|
18682
|
+
"name": "[RENDERABLE]"
|
|
18683
|
+
}
|
|
18684
|
+
],
|
|
18685
|
+
"extendsTokenRanges": []
|
|
18686
|
+
},
|
|
18207
18687
|
{
|
|
18208
18688
|
"kind": "Function",
|
|
18209
18689
|
"canonicalReference": "@alloy-js/core!renderAsync:function(1)",
|
|
@@ -21465,8 +21945,8 @@
|
|
|
21465
21945
|
},
|
|
21466
21946
|
{
|
|
21467
21947
|
"kind": "Reference",
|
|
21468
|
-
"text": "
|
|
21469
|
-
"canonicalReference": "@alloy-js/core!
|
|
21948
|
+
"text": "Refkeyable",
|
|
21949
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
21470
21950
|
},
|
|
21471
21951
|
{
|
|
21472
21952
|
"kind": "Content",
|
|
@@ -21534,8 +22014,8 @@
|
|
|
21534
22014
|
},
|
|
21535
22015
|
{
|
|
21536
22016
|
"kind": "Reference",
|
|
21537
|
-
"text": "
|
|
21538
|
-
"canonicalReference": "@alloy-js/core!
|
|
22017
|
+
"text": "RefkeyableObject",
|
|
22018
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
21539
22019
|
},
|
|
21540
22020
|
{
|
|
21541
22021
|
"kind": "Content",
|
|
@@ -23211,6 +23691,76 @@
|
|
|
23211
23691
|
],
|
|
23212
23692
|
"name": "text"
|
|
23213
23693
|
},
|
|
23694
|
+
{
|
|
23695
|
+
"kind": "Variable",
|
|
23696
|
+
"canonicalReference": "@alloy-js/core!TO_SYMBOL:var",
|
|
23697
|
+
"docComment": "",
|
|
23698
|
+
"excerptTokens": [
|
|
23699
|
+
{
|
|
23700
|
+
"kind": "Content",
|
|
23701
|
+
"text": "TO_SYMBOL: "
|
|
23702
|
+
},
|
|
23703
|
+
{
|
|
23704
|
+
"kind": "Content",
|
|
23705
|
+
"text": "unique symbol"
|
|
23706
|
+
}
|
|
23707
|
+
],
|
|
23708
|
+
"fileUrlPath": "src/library-symbol-reference.ts",
|
|
23709
|
+
"isReadonly": true,
|
|
23710
|
+
"releaseTag": "Public",
|
|
23711
|
+
"name": "TO_SYMBOL",
|
|
23712
|
+
"variableTypeTokenRange": {
|
|
23713
|
+
"startIndex": 1,
|
|
23714
|
+
"endIndex": 2
|
|
23715
|
+
}
|
|
23716
|
+
},
|
|
23717
|
+
{
|
|
23718
|
+
"kind": "Function",
|
|
23719
|
+
"canonicalReference": "@alloy-js/core!toRefkey:function(1)",
|
|
23720
|
+
"docComment": "",
|
|
23721
|
+
"excerptTokens": [
|
|
23722
|
+
{
|
|
23723
|
+
"kind": "Content",
|
|
23724
|
+
"text": "export declare function toRefkey(refkey: "
|
|
23725
|
+
},
|
|
23726
|
+
{
|
|
23727
|
+
"kind": "Reference",
|
|
23728
|
+
"text": "Refkeyable",
|
|
23729
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
23730
|
+
},
|
|
23731
|
+
{
|
|
23732
|
+
"kind": "Content",
|
|
23733
|
+
"text": "): "
|
|
23734
|
+
},
|
|
23735
|
+
{
|
|
23736
|
+
"kind": "Reference",
|
|
23737
|
+
"text": "Refkey",
|
|
23738
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
23739
|
+
},
|
|
23740
|
+
{
|
|
23741
|
+
"kind": "Content",
|
|
23742
|
+
"text": ";"
|
|
23743
|
+
}
|
|
23744
|
+
],
|
|
23745
|
+
"fileUrlPath": "src/refkey.ts",
|
|
23746
|
+
"returnTypeTokenRange": {
|
|
23747
|
+
"startIndex": 3,
|
|
23748
|
+
"endIndex": 4
|
|
23749
|
+
},
|
|
23750
|
+
"releaseTag": "Public",
|
|
23751
|
+
"overloadIndex": 1,
|
|
23752
|
+
"parameters": [
|
|
23753
|
+
{
|
|
23754
|
+
"parameterName": "refkey",
|
|
23755
|
+
"parameterTypeTokenRange": {
|
|
23756
|
+
"startIndex": 1,
|
|
23757
|
+
"endIndex": 2
|
|
23758
|
+
},
|
|
23759
|
+
"isOptional": false
|
|
23760
|
+
}
|
|
23761
|
+
],
|
|
23762
|
+
"name": "toRefkey"
|
|
23763
|
+
},
|
|
23214
23764
|
{
|
|
23215
23765
|
"kind": "Function",
|
|
23216
23766
|
"canonicalReference": "@alloy-js/core!traverseOutput:function(1)",
|