@alloy-js/core 0.21.0-dev.1 → 0.21.0-dev.13
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/pretty-string/pretty-string.d.ts +47 -0
- package/dist/src/pretty-string/pretty-string.d.ts.map +1 -0
- package/dist/src/pretty-string/pretty-string.js +100 -0
- package/dist/src/pretty-string/pretty-string.js.map +1 -0
- package/dist/src/pretty-string/pretty-string.test.d.ts +2 -0
- package/dist/src/pretty-string/pretty-string.test.d.ts.map +1 -0
- package/dist/src/pretty-string/pretty-string.test.js +38 -0
- package/dist/src/pretty-string/pretty-string.test.js.map +1 -0
- package/dist/src/reactivity.d.ts.map +1 -1
- package/dist/src/reactivity.js +4 -1
- package/dist/src/reactivity.js.map +1 -1
- package/dist/src/refkey.d.ts +12 -8
- package/dist/src/refkey.d.ts.map +1 -1
- package/dist/src/refkey.js +41 -12
- package/dist/src/refkey.js.map +1 -1
- package/dist/src/render.d.ts.map +1 -1
- package/dist/src/render.js +13 -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/scheduler.d.ts +4 -4
- package/dist/src/scheduler.d.ts.map +1 -1
- package/dist/src/scheduler.js +10 -5
- package/dist/src/scheduler.js.map +1 -1
- package/dist/src/symbols/output-scope.js +4 -2
- package/dist/src/symbols/output-scope.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/src/tracer.d.ts.map +1 -1
- package/dist/src/tracer.js +4 -4
- package/dist/src/tracer.js.map +1 -1
- package/dist/src/utils.d.ts +12 -0
- package/dist/src/utils.d.ts.map +1 -1
- package/dist/src/utils.js +15 -3
- package/dist/src/utils.js.map +1 -1
- package/dist/test/reactivity/circular-reactives.test.js +18 -0
- package/dist/test/reactivity/circular-reactives.test.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/test/utils.test.js +13 -0
- package/dist/test/utils.test.js.map +1 -1
- package/dist/testing/create-test-wrapper.d.ts +22 -0
- package/dist/testing/create-test-wrapper.d.ts.map +1 -0
- package/dist/testing/create-test-wrapper.js +60 -0
- package/dist/testing/create-test-wrapper.js.map +1 -0
- package/dist/testing/index.d.ts +1 -0
- package/dist/testing/index.d.ts.map +1 -1
- package/dist/testing/index.js +1 -0
- package/dist/testing/index.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/pretty-string/pretty-string.test.ts +47 -0
- package/src/pretty-string/pretty-string.ts +130 -0
- package/src/reactivity.ts +4 -1
- package/src/refkey.ts +68 -26
- package/src/render.ts +14 -3
- package/src/runtime/component.ts +33 -1
- package/src/scheduler.ts +12 -11
- package/src/symbols/output-scope.ts +4 -4
- package/src/symbols/output-symbol.ts +40 -0
- package/src/tracer.ts +5 -8
- package/src/utils.tsx +25 -4
- package/temp/api.json +854 -92
- package/test/reactivity/circular-reactives.test.tsx +20 -0
- 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/test/utils.test.tsx +18 -0
- package/testing/create-test-wrapper.tsx +70 -0
- package/testing/index.ts +1 -0
- package/tsconfig.json +1 -0
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
|
{
|
|
@@ -7668,6 +7682,52 @@
|
|
|
7668
7682
|
],
|
|
7669
7683
|
"extendsTokenRanges": []
|
|
7670
7684
|
},
|
|
7685
|
+
{
|
|
7686
|
+
"kind": "Function",
|
|
7687
|
+
"canonicalReference": "@alloy-js/core!inspectRefkey:function(1)",
|
|
7688
|
+
"docComment": "",
|
|
7689
|
+
"excerptTokens": [
|
|
7690
|
+
{
|
|
7691
|
+
"kind": "Content",
|
|
7692
|
+
"text": "export declare function inspectRefkey(refkey: "
|
|
7693
|
+
},
|
|
7694
|
+
{
|
|
7695
|
+
"kind": "Reference",
|
|
7696
|
+
"text": "Refkey",
|
|
7697
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
7698
|
+
},
|
|
7699
|
+
{
|
|
7700
|
+
"kind": "Content",
|
|
7701
|
+
"text": "): "
|
|
7702
|
+
},
|
|
7703
|
+
{
|
|
7704
|
+
"kind": "Content",
|
|
7705
|
+
"text": "string"
|
|
7706
|
+
},
|
|
7707
|
+
{
|
|
7708
|
+
"kind": "Content",
|
|
7709
|
+
"text": ";"
|
|
7710
|
+
}
|
|
7711
|
+
],
|
|
7712
|
+
"fileUrlPath": "src/refkey.ts",
|
|
7713
|
+
"returnTypeTokenRange": {
|
|
7714
|
+
"startIndex": 3,
|
|
7715
|
+
"endIndex": 4
|
|
7716
|
+
},
|
|
7717
|
+
"releaseTag": "Public",
|
|
7718
|
+
"overloadIndex": 1,
|
|
7719
|
+
"parameters": [
|
|
7720
|
+
{
|
|
7721
|
+
"parameterName": "refkey",
|
|
7722
|
+
"parameterTypeTokenRange": {
|
|
7723
|
+
"startIndex": 1,
|
|
7724
|
+
"endIndex": 2
|
|
7725
|
+
},
|
|
7726
|
+
"isOptional": false
|
|
7727
|
+
}
|
|
7728
|
+
],
|
|
7729
|
+
"name": "inspectRefkey"
|
|
7730
|
+
},
|
|
7671
7731
|
{
|
|
7672
7732
|
"kind": "Function",
|
|
7673
7733
|
"canonicalReference": "@alloy-js/core!instantiateTakenMembersTo:function(1)",
|
|
@@ -9053,6 +9113,61 @@
|
|
|
9053
9113
|
],
|
|
9054
9114
|
"name": "isKeyedChild"
|
|
9055
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
|
+
},
|
|
9056
9171
|
{
|
|
9057
9172
|
"kind": "Function",
|
|
9058
9173
|
"canonicalReference": "@alloy-js/core!isMemberRefkey:function(1)",
|
|
@@ -9273,6 +9388,116 @@
|
|
|
9273
9388
|
],
|
|
9274
9389
|
"name": "isRefkey"
|
|
9275
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
|
+
},
|
|
9276
9501
|
{
|
|
9277
9502
|
"kind": "Function",
|
|
9278
9503
|
"canonicalReference": "@alloy-js/core!isSymbolRefkey:function(1)",
|
|
@@ -9555,67 +9780,137 @@
|
|
|
9555
9780
|
}
|
|
9556
9781
|
},
|
|
9557
9782
|
{
|
|
9558
|
-
"kind": "
|
|
9559
|
-
"canonicalReference": "@alloy-js/core!
|
|
9783
|
+
"kind": "Interface",
|
|
9784
|
+
"canonicalReference": "@alloy-js/core!LibrarySymbolReference:interface",
|
|
9560
9785
|
"docComment": "",
|
|
9561
9786
|
"excerptTokens": [
|
|
9562
9787
|
{
|
|
9563
9788
|
"kind": "Content",
|
|
9564
|
-
"text": "export
|
|
9789
|
+
"text": "export interface LibrarySymbolReference extends "
|
|
9565
9790
|
},
|
|
9566
9791
|
{
|
|
9567
9792
|
"kind": "Reference",
|
|
9568
|
-
"text": "
|
|
9569
|
-
"canonicalReference": "@alloy-js/core!
|
|
9570
|
-
},
|
|
9571
|
-
{
|
|
9572
|
-
"kind": "Content",
|
|
9573
|
-
"text": "<\"line\">"
|
|
9793
|
+
"text": "RefkeyableObject",
|
|
9794
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
9574
9795
|
},
|
|
9575
9796
|
{
|
|
9576
9797
|
"kind": "Content",
|
|
9577
|
-
"text": "
|
|
9798
|
+
"text": " "
|
|
9578
9799
|
}
|
|
9579
9800
|
],
|
|
9580
|
-
"fileUrlPath": "src/
|
|
9801
|
+
"fileUrlPath": "src/library-symbol-reference.ts",
|
|
9581
9802
|
"releaseTag": "Public",
|
|
9582
|
-
"name": "
|
|
9583
|
-
"
|
|
9584
|
-
|
|
9585
|
-
"endIndex": 3
|
|
9586
|
-
}
|
|
9587
|
-
},
|
|
9588
|
-
{
|
|
9589
|
-
"kind": "TypeAlias",
|
|
9590
|
-
"canonicalReference": "@alloy-js/core!LineSuffixBoundaryIntrinsicElement:type",
|
|
9591
|
-
"docComment": "",
|
|
9592
|
-
"excerptTokens": [
|
|
9593
|
-
{
|
|
9594
|
-
"kind": "Content",
|
|
9595
|
-
"text": "export type LineSuffixBoundaryIntrinsicElement = "
|
|
9596
|
-
},
|
|
9597
|
-
{
|
|
9598
|
-
"kind": "Reference",
|
|
9599
|
-
"text": "IntrinsicElementBase",
|
|
9600
|
-
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
9601
|
-
},
|
|
9602
|
-
{
|
|
9603
|
-
"kind": "Content",
|
|
9604
|
-
"text": "<\"lineSuffixBoundary\">"
|
|
9605
|
-
},
|
|
9803
|
+
"name": "LibrarySymbolReference",
|
|
9804
|
+
"preserveMemberOrder": false,
|
|
9805
|
+
"members": [
|
|
9606
9806
|
{
|
|
9607
|
-
"kind": "
|
|
9608
|
-
"
|
|
9609
|
-
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
|
|
9613
|
-
|
|
9614
|
-
|
|
9615
|
-
|
|
9616
|
-
|
|
9617
|
-
|
|
9618
|
-
|
|
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
|
+
},
|
|
9852
|
+
{
|
|
9853
|
+
"kind": "TypeAlias",
|
|
9854
|
+
"canonicalReference": "@alloy-js/core!LineIntrinsicElement:type",
|
|
9855
|
+
"docComment": "",
|
|
9856
|
+
"excerptTokens": [
|
|
9857
|
+
{
|
|
9858
|
+
"kind": "Content",
|
|
9859
|
+
"text": "export type LineIntrinsicElement = "
|
|
9860
|
+
},
|
|
9861
|
+
{
|
|
9862
|
+
"kind": "Reference",
|
|
9863
|
+
"text": "IntrinsicElementBase",
|
|
9864
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
9865
|
+
},
|
|
9866
|
+
{
|
|
9867
|
+
"kind": "Content",
|
|
9868
|
+
"text": "<\"line\">"
|
|
9869
|
+
},
|
|
9870
|
+
{
|
|
9871
|
+
"kind": "Content",
|
|
9872
|
+
"text": ";"
|
|
9873
|
+
}
|
|
9874
|
+
],
|
|
9875
|
+
"fileUrlPath": "src/runtime/intrinsic.ts",
|
|
9876
|
+
"releaseTag": "Public",
|
|
9877
|
+
"name": "LineIntrinsicElement",
|
|
9878
|
+
"typeTokenRange": {
|
|
9879
|
+
"startIndex": 1,
|
|
9880
|
+
"endIndex": 3
|
|
9881
|
+
}
|
|
9882
|
+
},
|
|
9883
|
+
{
|
|
9884
|
+
"kind": "TypeAlias",
|
|
9885
|
+
"canonicalReference": "@alloy-js/core!LineSuffixBoundaryIntrinsicElement:type",
|
|
9886
|
+
"docComment": "",
|
|
9887
|
+
"excerptTokens": [
|
|
9888
|
+
{
|
|
9889
|
+
"kind": "Content",
|
|
9890
|
+
"text": "export type LineSuffixBoundaryIntrinsicElement = "
|
|
9891
|
+
},
|
|
9892
|
+
{
|
|
9893
|
+
"kind": "Reference",
|
|
9894
|
+
"text": "IntrinsicElementBase",
|
|
9895
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
9896
|
+
},
|
|
9897
|
+
{
|
|
9898
|
+
"kind": "Content",
|
|
9899
|
+
"text": "<\"lineSuffixBoundary\">"
|
|
9900
|
+
},
|
|
9901
|
+
{
|
|
9902
|
+
"kind": "Content",
|
|
9903
|
+
"text": ";"
|
|
9904
|
+
}
|
|
9905
|
+
],
|
|
9906
|
+
"fileUrlPath": "src/runtime/intrinsic.ts",
|
|
9907
|
+
"releaseTag": "Public",
|
|
9908
|
+
"name": "LineSuffixBoundaryIntrinsicElement",
|
|
9909
|
+
"typeTokenRange": {
|
|
9910
|
+
"startIndex": 1,
|
|
9911
|
+
"endIndex": 3
|
|
9912
|
+
}
|
|
9913
|
+
},
|
|
9619
9914
|
{
|
|
9620
9915
|
"kind": "TypeAlias",
|
|
9621
9916
|
"canonicalReference": "@alloy-js/core!LineSuffixIntrinsicElement:type",
|
|
@@ -9993,6 +10288,126 @@
|
|
|
9993
10288
|
{
|
|
9994
10289
|
"kind": "Function",
|
|
9995
10290
|
"canonicalReference": "@alloy-js/core!mapJoin:function(2)",
|
|
10291
|
+
"docComment": "/**\n * Map a Map to an array using a mapper and place a joiner between each element.\n * Defaults to joining with a newline.\n *\n * @param src - Source map.\n *\n * @param cb - Mapper function.\n *\n * @param options - Join options.\n *\n * @returns The mapped and joined array.\n *\n * @see\n *\n * {@link join} for joining without mapping.\n */\n",
|
|
10292
|
+
"excerptTokens": [
|
|
10293
|
+
{
|
|
10294
|
+
"kind": "Content",
|
|
10295
|
+
"text": "export declare function mapJoin<U, V>(src: "
|
|
10296
|
+
},
|
|
10297
|
+
{
|
|
10298
|
+
"kind": "Content",
|
|
10299
|
+
"text": "() => "
|
|
10300
|
+
},
|
|
10301
|
+
{
|
|
10302
|
+
"kind": "Reference",
|
|
10303
|
+
"text": "Set",
|
|
10304
|
+
"canonicalReference": "!Set:interface"
|
|
10305
|
+
},
|
|
10306
|
+
{
|
|
10307
|
+
"kind": "Content",
|
|
10308
|
+
"text": "<U>"
|
|
10309
|
+
},
|
|
10310
|
+
{
|
|
10311
|
+
"kind": "Content",
|
|
10312
|
+
"text": ", cb: "
|
|
10313
|
+
},
|
|
10314
|
+
{
|
|
10315
|
+
"kind": "Content",
|
|
10316
|
+
"text": "(value: U, index: number) => V"
|
|
10317
|
+
},
|
|
10318
|
+
{
|
|
10319
|
+
"kind": "Content",
|
|
10320
|
+
"text": ", options?: "
|
|
10321
|
+
},
|
|
10322
|
+
{
|
|
10323
|
+
"kind": "Reference",
|
|
10324
|
+
"text": "JoinOptions",
|
|
10325
|
+
"canonicalReference": "@alloy-js/core!JoinOptions:interface"
|
|
10326
|
+
},
|
|
10327
|
+
{
|
|
10328
|
+
"kind": "Content",
|
|
10329
|
+
"text": "): "
|
|
10330
|
+
},
|
|
10331
|
+
{
|
|
10332
|
+
"kind": "Content",
|
|
10333
|
+
"text": "() => (V | string | undefined | "
|
|
10334
|
+
},
|
|
10335
|
+
{
|
|
10336
|
+
"kind": "Reference",
|
|
10337
|
+
"text": "CustomContext",
|
|
10338
|
+
"canonicalReference": "@alloy-js/core!CustomContext:interface"
|
|
10339
|
+
},
|
|
10340
|
+
{
|
|
10341
|
+
"kind": "Content",
|
|
10342
|
+
"text": ")[]"
|
|
10343
|
+
},
|
|
10344
|
+
{
|
|
10345
|
+
"kind": "Content",
|
|
10346
|
+
"text": ";"
|
|
10347
|
+
}
|
|
10348
|
+
],
|
|
10349
|
+
"fileUrlPath": "src/utils.tsx",
|
|
10350
|
+
"returnTypeTokenRange": {
|
|
10351
|
+
"startIndex": 9,
|
|
10352
|
+
"endIndex": 12
|
|
10353
|
+
},
|
|
10354
|
+
"releaseTag": "Public",
|
|
10355
|
+
"overloadIndex": 2,
|
|
10356
|
+
"parameters": [
|
|
10357
|
+
{
|
|
10358
|
+
"parameterName": "src",
|
|
10359
|
+
"parameterTypeTokenRange": {
|
|
10360
|
+
"startIndex": 1,
|
|
10361
|
+
"endIndex": 4
|
|
10362
|
+
},
|
|
10363
|
+
"isOptional": false
|
|
10364
|
+
},
|
|
10365
|
+
{
|
|
10366
|
+
"parameterName": "cb",
|
|
10367
|
+
"parameterTypeTokenRange": {
|
|
10368
|
+
"startIndex": 5,
|
|
10369
|
+
"endIndex": 6
|
|
10370
|
+
},
|
|
10371
|
+
"isOptional": false
|
|
10372
|
+
},
|
|
10373
|
+
{
|
|
10374
|
+
"parameterName": "options",
|
|
10375
|
+
"parameterTypeTokenRange": {
|
|
10376
|
+
"startIndex": 7,
|
|
10377
|
+
"endIndex": 8
|
|
10378
|
+
},
|
|
10379
|
+
"isOptional": true
|
|
10380
|
+
}
|
|
10381
|
+
],
|
|
10382
|
+
"typeParameters": [
|
|
10383
|
+
{
|
|
10384
|
+
"typeParameterName": "U",
|
|
10385
|
+
"constraintTokenRange": {
|
|
10386
|
+
"startIndex": 0,
|
|
10387
|
+
"endIndex": 0
|
|
10388
|
+
},
|
|
10389
|
+
"defaultTypeTokenRange": {
|
|
10390
|
+
"startIndex": 0,
|
|
10391
|
+
"endIndex": 0
|
|
10392
|
+
}
|
|
10393
|
+
},
|
|
10394
|
+
{
|
|
10395
|
+
"typeParameterName": "V",
|
|
10396
|
+
"constraintTokenRange": {
|
|
10397
|
+
"startIndex": 0,
|
|
10398
|
+
"endIndex": 0
|
|
10399
|
+
},
|
|
10400
|
+
"defaultTypeTokenRange": {
|
|
10401
|
+
"startIndex": 0,
|
|
10402
|
+
"endIndex": 0
|
|
10403
|
+
}
|
|
10404
|
+
}
|
|
10405
|
+
],
|
|
10406
|
+
"name": "mapJoin"
|
|
10407
|
+
},
|
|
10408
|
+
{
|
|
10409
|
+
"kind": "Function",
|
|
10410
|
+
"canonicalReference": "@alloy-js/core!mapJoin:function(3)",
|
|
9996
10411
|
"docComment": "/**\n * Map a array or iterator to another array using a mapper and place a joiner\n * between each element. Defaults to joining with a newline.\n *\n * @param src - Source array.\n *\n * @param cb - Mapper function.\n *\n * @param options - Join options.\n *\n * @returns The mapped and joined array.\n *\n * @see\n *\n * {@link join} for joining without mapping.\n */\n",
|
|
9997
10412
|
"excerptTokens": [
|
|
9998
10413
|
{
|
|
@@ -10057,7 +10472,7 @@
|
|
|
10057
10472
|
"endIndex": 12
|
|
10058
10473
|
},
|
|
10059
10474
|
"releaseTag": "Public",
|
|
10060
|
-
"overloadIndex":
|
|
10475
|
+
"overloadIndex": 3,
|
|
10061
10476
|
"parameters": [
|
|
10062
10477
|
{
|
|
10063
10478
|
"parameterName": "src",
|
|
@@ -10913,8 +11328,8 @@
|
|
|
10913
11328
|
},
|
|
10914
11329
|
{
|
|
10915
11330
|
"kind": "Reference",
|
|
10916
|
-
"text": "
|
|
10917
|
-
"canonicalReference": "@alloy-js/core!
|
|
11331
|
+
"text": "Refkeyable",
|
|
11332
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
10918
11333
|
},
|
|
10919
11334
|
{
|
|
10920
11335
|
"kind": "Content",
|
|
@@ -10926,21 +11341,21 @@
|
|
|
10926
11341
|
},
|
|
10927
11342
|
{
|
|
10928
11343
|
"kind": "Reference",
|
|
10929
|
-
"text": "
|
|
10930
|
-
"canonicalReference": "@alloy-js/core!
|
|
11344
|
+
"text": "Refkeyable",
|
|
11345
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
10931
11346
|
},
|
|
10932
11347
|
{
|
|
10933
11348
|
"kind": "Content",
|
|
10934
|
-
"text": ", ..."
|
|
11349
|
+
"text": " | string, ...("
|
|
10935
11350
|
},
|
|
10936
11351
|
{
|
|
10937
11352
|
"kind": "Reference",
|
|
10938
|
-
"text": "
|
|
10939
|
-
"canonicalReference": "@alloy-js/core!
|
|
11353
|
+
"text": "Refkeyable",
|
|
11354
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
10940
11355
|
},
|
|
10941
11356
|
{
|
|
10942
11357
|
"kind": "Content",
|
|
10943
|
-
"text": "[]]"
|
|
11358
|
+
"text": " | string)[]]"
|
|
10944
11359
|
},
|
|
10945
11360
|
{
|
|
10946
11361
|
"kind": "Content",
|
|
@@ -10994,8 +11409,8 @@
|
|
|
10994
11409
|
},
|
|
10995
11410
|
{
|
|
10996
11411
|
"kind": "Reference",
|
|
10997
|
-
"text": "
|
|
10998
|
-
"canonicalReference": "@alloy-js/core!
|
|
11412
|
+
"text": "RefkeyableObject",
|
|
11413
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
10999
11414
|
},
|
|
11000
11415
|
{
|
|
11001
11416
|
"kind": "Content",
|
|
@@ -11049,6 +11464,10 @@
|
|
|
11049
11464
|
"text": "Refkey",
|
|
11050
11465
|
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
11051
11466
|
},
|
|
11467
|
+
{
|
|
11468
|
+
"kind": "Content",
|
|
11469
|
+
"text": " | string"
|
|
11470
|
+
},
|
|
11052
11471
|
{
|
|
11053
11472
|
"kind": "Content",
|
|
11054
11473
|
"text": ";"
|
|
@@ -11060,7 +11479,7 @@
|
|
|
11060
11479
|
"name": "member",
|
|
11061
11480
|
"propertyTypeTokenRange": {
|
|
11062
11481
|
"startIndex": 1,
|
|
11063
|
-
"endIndex":
|
|
11482
|
+
"endIndex": 3
|
|
11064
11483
|
}
|
|
11065
11484
|
}
|
|
11066
11485
|
],
|
|
@@ -15613,6 +16032,59 @@
|
|
|
15613
16032
|
"isProtected": false,
|
|
15614
16033
|
"isAbstract": false
|
|
15615
16034
|
},
|
|
16035
|
+
{
|
|
16036
|
+
"kind": "Method",
|
|
16037
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol#resolveMemberByName:member(1)",
|
|
16038
|
+
"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",
|
|
16039
|
+
"excerptTokens": [
|
|
16040
|
+
{
|
|
16041
|
+
"kind": "Content",
|
|
16042
|
+
"text": "resolveMemberByName(name: "
|
|
16043
|
+
},
|
|
16044
|
+
{
|
|
16045
|
+
"kind": "Content",
|
|
16046
|
+
"text": "string"
|
|
16047
|
+
},
|
|
16048
|
+
{
|
|
16049
|
+
"kind": "Content",
|
|
16050
|
+
"text": "): "
|
|
16051
|
+
},
|
|
16052
|
+
{
|
|
16053
|
+
"kind": "Reference",
|
|
16054
|
+
"text": "OutputSymbol",
|
|
16055
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
16056
|
+
},
|
|
16057
|
+
{
|
|
16058
|
+
"kind": "Content",
|
|
16059
|
+
"text": " | undefined"
|
|
16060
|
+
},
|
|
16061
|
+
{
|
|
16062
|
+
"kind": "Content",
|
|
16063
|
+
"text": ";"
|
|
16064
|
+
}
|
|
16065
|
+
],
|
|
16066
|
+
"isStatic": false,
|
|
16067
|
+
"returnTypeTokenRange": {
|
|
16068
|
+
"startIndex": 3,
|
|
16069
|
+
"endIndex": 5
|
|
16070
|
+
},
|
|
16071
|
+
"releaseTag": "Public",
|
|
16072
|
+
"isProtected": false,
|
|
16073
|
+
"overloadIndex": 1,
|
|
16074
|
+
"parameters": [
|
|
16075
|
+
{
|
|
16076
|
+
"parameterName": "name",
|
|
16077
|
+
"parameterTypeTokenRange": {
|
|
16078
|
+
"startIndex": 1,
|
|
16079
|
+
"endIndex": 2
|
|
16080
|
+
},
|
|
16081
|
+
"isOptional": false
|
|
16082
|
+
}
|
|
16083
|
+
],
|
|
16084
|
+
"isOptional": false,
|
|
16085
|
+
"isAbstract": false,
|
|
16086
|
+
"name": "resolveMemberByName"
|
|
16087
|
+
},
|
|
15616
16088
|
{
|
|
15617
16089
|
"kind": "Property",
|
|
15618
16090
|
"canonicalReference": "@alloy-js/core!OutputSymbol#scope:member",
|
|
@@ -15901,16 +16373,43 @@
|
|
|
15901
16373
|
},
|
|
15902
16374
|
{
|
|
15903
16375
|
"kind": "PropertySignature",
|
|
15904
|
-
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#ignoreNamePolicy:member",
|
|
15905
|
-
"docComment": "/**\n * Whether the name of this symbol should bypass the active name policy. When true,\n * the name of this symbol will be fixed, though it may conflict with other symbols which are\n * also ignoring the name policy.\n */\n",
|
|
16376
|
+
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#ignoreNamePolicy:member",
|
|
16377
|
+
"docComment": "/**\n * Whether the name of this symbol should bypass the active name policy. When true,\n * the name of this symbol will be fixed, though it may conflict with other symbols which are\n * also ignoring the name policy.\n */\n",
|
|
16378
|
+
"excerptTokens": [
|
|
16379
|
+
{
|
|
16380
|
+
"kind": "Content",
|
|
16381
|
+
"text": "ignoreNamePolicy?: "
|
|
16382
|
+
},
|
|
16383
|
+
{
|
|
16384
|
+
"kind": "Content",
|
|
16385
|
+
"text": "boolean"
|
|
16386
|
+
},
|
|
16387
|
+
{
|
|
16388
|
+
"kind": "Content",
|
|
16389
|
+
"text": ";"
|
|
16390
|
+
}
|
|
16391
|
+
],
|
|
16392
|
+
"isReadonly": false,
|
|
16393
|
+
"isOptional": true,
|
|
16394
|
+
"releaseTag": "Public",
|
|
16395
|
+
"name": "ignoreNamePolicy",
|
|
16396
|
+
"propertyTypeTokenRange": {
|
|
16397
|
+
"startIndex": 1,
|
|
16398
|
+
"endIndex": 2
|
|
16399
|
+
}
|
|
16400
|
+
},
|
|
16401
|
+
{
|
|
16402
|
+
"kind": "PropertySignature",
|
|
16403
|
+
"canonicalReference": "@alloy-js/core!OutputSymbolOptions#lazyMemberInitializer:member",
|
|
16404
|
+
"docComment": "/**\n * Provide a function which lazy-initializes members when an enumeration of members are needed.\n */\n",
|
|
15906
16405
|
"excerptTokens": [
|
|
15907
16406
|
{
|
|
15908
16407
|
"kind": "Content",
|
|
15909
|
-
"text": "
|
|
16408
|
+
"text": "lazyMemberInitializer?: "
|
|
15910
16409
|
},
|
|
15911
16410
|
{
|
|
15912
16411
|
"kind": "Content",
|
|
15913
|
-
"text": "
|
|
16412
|
+
"text": "() => void"
|
|
15914
16413
|
},
|
|
15915
16414
|
{
|
|
15916
16415
|
"kind": "Content",
|
|
@@ -15920,7 +16419,7 @@
|
|
|
15920
16419
|
"isReadonly": false,
|
|
15921
16420
|
"isOptional": true,
|
|
15922
16421
|
"releaseTag": "Public",
|
|
15923
|
-
"name": "
|
|
16422
|
+
"name": "lazyMemberInitializer",
|
|
15924
16423
|
"propertyTypeTokenRange": {
|
|
15925
16424
|
"startIndex": 1,
|
|
15926
16425
|
"endIndex": 2
|
|
@@ -17634,43 +18133,43 @@
|
|
|
17634
18133
|
},
|
|
17635
18134
|
{
|
|
17636
18135
|
"kind": "Content",
|
|
17637
|
-
"text": "<string | number | boolean | void | (
|
|
18136
|
+
"text": "<string | number | boolean | void | import(\"../runtime/component.js\")."
|
|
17638
18137
|
},
|
|
17639
18138
|
{
|
|
17640
18139
|
"kind": "Reference",
|
|
17641
|
-
"text": "
|
|
17642
|
-
"canonicalReference": "@alloy-js/core!
|
|
18140
|
+
"text": "RenderableObject",
|
|
18141
|
+
"canonicalReference": "@alloy-js/core!RenderableObject:interface"
|
|
17643
18142
|
},
|
|
17644
18143
|
{
|
|
17645
18144
|
"kind": "Content",
|
|
17646
|
-
"text": "
|
|
18145
|
+
"text": " | import(\"../refkey.js\")."
|
|
17647
18146
|
},
|
|
17648
18147
|
{
|
|
17649
18148
|
"kind": "Reference",
|
|
17650
|
-
"text": "
|
|
17651
|
-
"canonicalReference": "@
|
|
18149
|
+
"text": "RefkeyableObject",
|
|
18150
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
17652
18151
|
},
|
|
17653
18152
|
{
|
|
17654
18153
|
"kind": "Content",
|
|
17655
|
-
"text": "
|
|
18154
|
+
"text": " | (() => "
|
|
17656
18155
|
},
|
|
17657
18156
|
{
|
|
17658
18157
|
"kind": "Reference",
|
|
17659
|
-
"text": "
|
|
17660
|
-
"canonicalReference": "@alloy-js/core!
|
|
18158
|
+
"text": "Children",
|
|
18159
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
17661
18160
|
},
|
|
17662
18161
|
{
|
|
17663
18162
|
"kind": "Content",
|
|
17664
|
-
"text": " | import(\"
|
|
18163
|
+
"text": ") | import(\"@vue/reactivity\")."
|
|
17665
18164
|
},
|
|
17666
18165
|
{
|
|
17667
18166
|
"kind": "Reference",
|
|
17668
|
-
"text": "
|
|
17669
|
-
"canonicalReference": "@
|
|
18167
|
+
"text": "Ref",
|
|
18168
|
+
"canonicalReference": "@vue/reactivity!Ref:interface"
|
|
17670
18169
|
},
|
|
17671
18170
|
{
|
|
17672
18171
|
"kind": "Content",
|
|
17673
|
-
"text": " | import(\"../reactivity.js\")."
|
|
18172
|
+
"text": "<any, any> | import(\"../reactivity.js\")."
|
|
17674
18173
|
},
|
|
17675
18174
|
{
|
|
17676
18175
|
"kind": "Reference",
|
|
@@ -18061,12 +18560,71 @@
|
|
|
18061
18560
|
},
|
|
18062
18561
|
{
|
|
18063
18562
|
"kind": "TypeAlias",
|
|
18064
|
-
"canonicalReference": "@alloy-js/core!
|
|
18563
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type",
|
|
18564
|
+
"docComment": "",
|
|
18565
|
+
"excerptTokens": [
|
|
18566
|
+
{
|
|
18567
|
+
"kind": "Content",
|
|
18568
|
+
"text": "export type Refkeyable = "
|
|
18569
|
+
},
|
|
18570
|
+
{
|
|
18571
|
+
"kind": "Reference",
|
|
18572
|
+
"text": "RefkeyableObject",
|
|
18573
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
18574
|
+
},
|
|
18575
|
+
{
|
|
18576
|
+
"kind": "Content",
|
|
18577
|
+
"text": " | "
|
|
18578
|
+
},
|
|
18579
|
+
{
|
|
18580
|
+
"kind": "Reference",
|
|
18581
|
+
"text": "Refkey",
|
|
18582
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
18583
|
+
},
|
|
18584
|
+
{
|
|
18585
|
+
"kind": "Content",
|
|
18586
|
+
"text": ";"
|
|
18587
|
+
}
|
|
18588
|
+
],
|
|
18589
|
+
"fileUrlPath": "src/refkey.ts",
|
|
18590
|
+
"releaseTag": "Public",
|
|
18591
|
+
"name": "Refkeyable",
|
|
18592
|
+
"typeTokenRange": {
|
|
18593
|
+
"startIndex": 1,
|
|
18594
|
+
"endIndex": 4
|
|
18595
|
+
}
|
|
18596
|
+
},
|
|
18597
|
+
{
|
|
18598
|
+
"kind": "Variable",
|
|
18599
|
+
"canonicalReference": "@alloy-js/core!REFKEYABLE:var",
|
|
18600
|
+
"docComment": "",
|
|
18601
|
+
"excerptTokens": [
|
|
18602
|
+
{
|
|
18603
|
+
"kind": "Content",
|
|
18604
|
+
"text": "REFKEYABLE: "
|
|
18605
|
+
},
|
|
18606
|
+
{
|
|
18607
|
+
"kind": "Content",
|
|
18608
|
+
"text": "unique symbol"
|
|
18609
|
+
}
|
|
18610
|
+
],
|
|
18611
|
+
"fileUrlPath": "src/refkey.ts",
|
|
18612
|
+
"isReadonly": true,
|
|
18613
|
+
"releaseTag": "Public",
|
|
18614
|
+
"name": "REFKEYABLE",
|
|
18615
|
+
"variableTypeTokenRange": {
|
|
18616
|
+
"startIndex": 1,
|
|
18617
|
+
"endIndex": 2
|
|
18618
|
+
}
|
|
18619
|
+
},
|
|
18620
|
+
{
|
|
18621
|
+
"kind": "TypeAlias",
|
|
18622
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type",
|
|
18065
18623
|
"docComment": "",
|
|
18066
18624
|
"excerptTokens": [
|
|
18067
18625
|
{
|
|
18068
18626
|
"kind": "Content",
|
|
18069
|
-
"text": "export type
|
|
18627
|
+
"text": "export type RefkeyableObject = "
|
|
18070
18628
|
},
|
|
18071
18629
|
{
|
|
18072
18630
|
"kind": "Content",
|
|
@@ -18074,12 +18632,21 @@
|
|
|
18074
18632
|
},
|
|
18075
18633
|
{
|
|
18076
18634
|
"kind": "Reference",
|
|
18077
|
-
"text": "
|
|
18078
|
-
"canonicalReference": "@alloy-js/core
|
|
18635
|
+
"text": "REFKEYABLE",
|
|
18636
|
+
"canonicalReference": "@alloy-js/core!REFKEYABLE:var"
|
|
18637
|
+
},
|
|
18638
|
+
{
|
|
18639
|
+
"kind": "Content",
|
|
18640
|
+
"text": "](): "
|
|
18641
|
+
},
|
|
18642
|
+
{
|
|
18643
|
+
"kind": "Reference",
|
|
18644
|
+
"text": "Refkey",
|
|
18645
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
18079
18646
|
},
|
|
18080
18647
|
{
|
|
18081
18648
|
"kind": "Content",
|
|
18082
|
-
"text": "
|
|
18649
|
+
"text": ";\n}"
|
|
18083
18650
|
},
|
|
18084
18651
|
{
|
|
18085
18652
|
"kind": "Content",
|
|
@@ -18088,10 +18655,10 @@
|
|
|
18088
18655
|
],
|
|
18089
18656
|
"fileUrlPath": "src/refkey.ts",
|
|
18090
18657
|
"releaseTag": "Public",
|
|
18091
|
-
"name": "
|
|
18658
|
+
"name": "RefkeyableObject",
|
|
18092
18659
|
"typeTokenRange": {
|
|
18093
18660
|
"startIndex": 1,
|
|
18094
|
-
"endIndex":
|
|
18661
|
+
"endIndex": 6
|
|
18095
18662
|
}
|
|
18096
18663
|
},
|
|
18097
18664
|
{
|
|
@@ -18158,6 +18725,85 @@
|
|
|
18158
18725
|
],
|
|
18159
18726
|
"name": "render"
|
|
18160
18727
|
},
|
|
18728
|
+
{
|
|
18729
|
+
"kind": "Variable",
|
|
18730
|
+
"canonicalReference": "@alloy-js/core!RENDERABLE:var",
|
|
18731
|
+
"docComment": "",
|
|
18732
|
+
"excerptTokens": [
|
|
18733
|
+
{
|
|
18734
|
+
"kind": "Content",
|
|
18735
|
+
"text": "RENDERABLE: "
|
|
18736
|
+
},
|
|
18737
|
+
{
|
|
18738
|
+
"kind": "Content",
|
|
18739
|
+
"text": "unique symbol"
|
|
18740
|
+
}
|
|
18741
|
+
],
|
|
18742
|
+
"fileUrlPath": "src/runtime/component.ts",
|
|
18743
|
+
"isReadonly": true,
|
|
18744
|
+
"releaseTag": "Public",
|
|
18745
|
+
"name": "RENDERABLE",
|
|
18746
|
+
"variableTypeTokenRange": {
|
|
18747
|
+
"startIndex": 1,
|
|
18748
|
+
"endIndex": 2
|
|
18749
|
+
}
|
|
18750
|
+
},
|
|
18751
|
+
{
|
|
18752
|
+
"kind": "Interface",
|
|
18753
|
+
"canonicalReference": "@alloy-js/core!RenderableObject:interface",
|
|
18754
|
+
"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",
|
|
18755
|
+
"excerptTokens": [
|
|
18756
|
+
{
|
|
18757
|
+
"kind": "Content",
|
|
18758
|
+
"text": "export interface RenderableObject "
|
|
18759
|
+
}
|
|
18760
|
+
],
|
|
18761
|
+
"fileUrlPath": "src/runtime/component.ts",
|
|
18762
|
+
"releaseTag": "Public",
|
|
18763
|
+
"name": "RenderableObject",
|
|
18764
|
+
"preserveMemberOrder": false,
|
|
18765
|
+
"members": [
|
|
18766
|
+
{
|
|
18767
|
+
"kind": "MethodSignature",
|
|
18768
|
+
"canonicalReference": "@alloy-js/core!RenderableObject#[RENDERABLE]:member(1)",
|
|
18769
|
+
"docComment": "/**\n * Renders this object to children.\n */\n",
|
|
18770
|
+
"excerptTokens": [
|
|
18771
|
+
{
|
|
18772
|
+
"kind": "Content",
|
|
18773
|
+
"text": "["
|
|
18774
|
+
},
|
|
18775
|
+
{
|
|
18776
|
+
"kind": "Reference",
|
|
18777
|
+
"text": "RENDERABLE",
|
|
18778
|
+
"canonicalReference": "@alloy-js/core!RENDERABLE:var"
|
|
18779
|
+
},
|
|
18780
|
+
{
|
|
18781
|
+
"kind": "Content",
|
|
18782
|
+
"text": "](): "
|
|
18783
|
+
},
|
|
18784
|
+
{
|
|
18785
|
+
"kind": "Reference",
|
|
18786
|
+
"text": "Children",
|
|
18787
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
18788
|
+
},
|
|
18789
|
+
{
|
|
18790
|
+
"kind": "Content",
|
|
18791
|
+
"text": ";"
|
|
18792
|
+
}
|
|
18793
|
+
],
|
|
18794
|
+
"isOptional": false,
|
|
18795
|
+
"returnTypeTokenRange": {
|
|
18796
|
+
"startIndex": 3,
|
|
18797
|
+
"endIndex": 4
|
|
18798
|
+
},
|
|
18799
|
+
"releaseTag": "Public",
|
|
18800
|
+
"overloadIndex": 1,
|
|
18801
|
+
"parameters": [],
|
|
18802
|
+
"name": "[RENDERABLE]"
|
|
18803
|
+
}
|
|
18804
|
+
],
|
|
18805
|
+
"extendsTokenRanges": []
|
|
18806
|
+
},
|
|
18161
18807
|
{
|
|
18162
18808
|
"kind": "Function",
|
|
18163
18809
|
"canonicalReference": "@alloy-js/core!renderAsync:function(1)",
|
|
@@ -21419,8 +22065,8 @@
|
|
|
21419
22065
|
},
|
|
21420
22066
|
{
|
|
21421
22067
|
"kind": "Reference",
|
|
21422
|
-
"text": "
|
|
21423
|
-
"canonicalReference": "@alloy-js/core!
|
|
22068
|
+
"text": "Refkeyable",
|
|
22069
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
21424
22070
|
},
|
|
21425
22071
|
{
|
|
21426
22072
|
"kind": "Content",
|
|
@@ -21488,8 +22134,8 @@
|
|
|
21488
22134
|
},
|
|
21489
22135
|
{
|
|
21490
22136
|
"kind": "Reference",
|
|
21491
|
-
"text": "
|
|
21492
|
-
"canonicalReference": "@alloy-js/core!
|
|
22137
|
+
"text": "RefkeyableObject",
|
|
22138
|
+
"canonicalReference": "@alloy-js/core!RefkeyableObject:type"
|
|
21493
22139
|
},
|
|
21494
22140
|
{
|
|
21495
22141
|
"kind": "Content",
|
|
@@ -23165,6 +23811,76 @@
|
|
|
23165
23811
|
],
|
|
23166
23812
|
"name": "text"
|
|
23167
23813
|
},
|
|
23814
|
+
{
|
|
23815
|
+
"kind": "Variable",
|
|
23816
|
+
"canonicalReference": "@alloy-js/core!TO_SYMBOL:var",
|
|
23817
|
+
"docComment": "",
|
|
23818
|
+
"excerptTokens": [
|
|
23819
|
+
{
|
|
23820
|
+
"kind": "Content",
|
|
23821
|
+
"text": "TO_SYMBOL: "
|
|
23822
|
+
},
|
|
23823
|
+
{
|
|
23824
|
+
"kind": "Content",
|
|
23825
|
+
"text": "unique symbol"
|
|
23826
|
+
}
|
|
23827
|
+
],
|
|
23828
|
+
"fileUrlPath": "src/library-symbol-reference.ts",
|
|
23829
|
+
"isReadonly": true,
|
|
23830
|
+
"releaseTag": "Public",
|
|
23831
|
+
"name": "TO_SYMBOL",
|
|
23832
|
+
"variableTypeTokenRange": {
|
|
23833
|
+
"startIndex": 1,
|
|
23834
|
+
"endIndex": 2
|
|
23835
|
+
}
|
|
23836
|
+
},
|
|
23837
|
+
{
|
|
23838
|
+
"kind": "Function",
|
|
23839
|
+
"canonicalReference": "@alloy-js/core!toRefkey:function(1)",
|
|
23840
|
+
"docComment": "",
|
|
23841
|
+
"excerptTokens": [
|
|
23842
|
+
{
|
|
23843
|
+
"kind": "Content",
|
|
23844
|
+
"text": "export declare function toRefkey(refkey: "
|
|
23845
|
+
},
|
|
23846
|
+
{
|
|
23847
|
+
"kind": "Reference",
|
|
23848
|
+
"text": "Refkeyable",
|
|
23849
|
+
"canonicalReference": "@alloy-js/core!Refkeyable:type"
|
|
23850
|
+
},
|
|
23851
|
+
{
|
|
23852
|
+
"kind": "Content",
|
|
23853
|
+
"text": "): "
|
|
23854
|
+
},
|
|
23855
|
+
{
|
|
23856
|
+
"kind": "Reference",
|
|
23857
|
+
"text": "Refkey",
|
|
23858
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
23859
|
+
},
|
|
23860
|
+
{
|
|
23861
|
+
"kind": "Content",
|
|
23862
|
+
"text": ";"
|
|
23863
|
+
}
|
|
23864
|
+
],
|
|
23865
|
+
"fileUrlPath": "src/refkey.ts",
|
|
23866
|
+
"returnTypeTokenRange": {
|
|
23867
|
+
"startIndex": 3,
|
|
23868
|
+
"endIndex": 4
|
|
23869
|
+
},
|
|
23870
|
+
"releaseTag": "Public",
|
|
23871
|
+
"overloadIndex": 1,
|
|
23872
|
+
"parameters": [
|
|
23873
|
+
{
|
|
23874
|
+
"parameterName": "refkey",
|
|
23875
|
+
"parameterTypeTokenRange": {
|
|
23876
|
+
"startIndex": 1,
|
|
23877
|
+
"endIndex": 2
|
|
23878
|
+
},
|
|
23879
|
+
"isOptional": false
|
|
23880
|
+
}
|
|
23881
|
+
],
|
|
23882
|
+
"name": "toRefkey"
|
|
23883
|
+
},
|
|
23168
23884
|
{
|
|
23169
23885
|
"kind": "Function",
|
|
23170
23886
|
"canonicalReference": "@alloy-js/core!traverseOutput:function(1)",
|
|
@@ -23233,6 +23949,52 @@
|
|
|
23233
23949
|
],
|
|
23234
23950
|
"name": "traverseOutput"
|
|
23235
23951
|
},
|
|
23952
|
+
{
|
|
23953
|
+
"kind": "Function",
|
|
23954
|
+
"canonicalReference": "@alloy-js/core!unresolvedRefkey:function(1)",
|
|
23955
|
+
"docComment": "",
|
|
23956
|
+
"excerptTokens": [
|
|
23957
|
+
{
|
|
23958
|
+
"kind": "Content",
|
|
23959
|
+
"text": "export declare function unresolvedRefkey(refkey: "
|
|
23960
|
+
},
|
|
23961
|
+
{
|
|
23962
|
+
"kind": "Reference",
|
|
23963
|
+
"text": "Refkey",
|
|
23964
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
23965
|
+
},
|
|
23966
|
+
{
|
|
23967
|
+
"kind": "Content",
|
|
23968
|
+
"text": "): "
|
|
23969
|
+
},
|
|
23970
|
+
{
|
|
23971
|
+
"kind": "Content",
|
|
23972
|
+
"text": "string"
|
|
23973
|
+
},
|
|
23974
|
+
{
|
|
23975
|
+
"kind": "Content",
|
|
23976
|
+
"text": ";"
|
|
23977
|
+
}
|
|
23978
|
+
],
|
|
23979
|
+
"fileUrlPath": "src/refkey.ts",
|
|
23980
|
+
"returnTypeTokenRange": {
|
|
23981
|
+
"startIndex": 3,
|
|
23982
|
+
"endIndex": 4
|
|
23983
|
+
},
|
|
23984
|
+
"releaseTag": "Public",
|
|
23985
|
+
"overloadIndex": 1,
|
|
23986
|
+
"parameters": [
|
|
23987
|
+
{
|
|
23988
|
+
"parameterName": "refkey",
|
|
23989
|
+
"parameterTypeTokenRange": {
|
|
23990
|
+
"startIndex": 1,
|
|
23991
|
+
"endIndex": 2
|
|
23992
|
+
},
|
|
23993
|
+
"isOptional": false
|
|
23994
|
+
}
|
|
23995
|
+
],
|
|
23996
|
+
"name": "unresolvedRefkey"
|
|
23997
|
+
},
|
|
23236
23998
|
{
|
|
23237
23999
|
"kind": "Function",
|
|
23238
24000
|
"canonicalReference": "@alloy-js/core!untrack:function(1)",
|