@alloy-js/core 0.7.0 → 0.9.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 +36 -0
- package/babel.config.cjs +1 -4
- package/dist/src/binder.d.ts +14 -12
- package/dist/src/binder.d.ts.map +1 -1
- package/dist/src/binder.js +26 -23
- package/dist/src/binder.js.map +1 -1
- package/dist/src/code.d.ts +11 -2
- package/dist/src/code.d.ts.map +1 -1
- package/dist/src/code.js +27 -2
- package/dist/src/code.js.map +1 -1
- package/dist/src/components/Block.d.ts +2 -2
- package/dist/src/components/Block.d.ts.map +1 -1
- package/dist/src/components/Block.js +6 -5
- package/dist/src/components/Block.js.map +1 -1
- package/dist/src/components/Declaration.d.ts +31 -7
- package/dist/src/components/Declaration.d.ts.map +1 -1
- package/dist/src/components/Declaration.js +15 -7
- package/dist/src/components/Declaration.js.map +1 -1
- package/dist/src/components/For.d.ts +8 -2
- package/dist/src/components/For.d.ts.map +1 -1
- package/dist/src/components/For.js +2 -3
- package/dist/src/components/For.js.map +1 -1
- package/dist/src/components/Indent.d.ts +29 -1
- package/dist/src/components/Indent.d.ts.map +1 -1
- package/dist/src/components/Indent.js +7 -2
- package/dist/src/components/Indent.js.map +1 -1
- package/dist/src/components/List.d.ts +7 -3
- package/dist/src/components/List.d.ts.map +1 -1
- package/dist/src/components/List.js +1 -16
- package/dist/src/components/List.js.map +1 -1
- package/dist/src/components/MemberDeclaration.d.ts +35 -5
- package/dist/src/components/MemberDeclaration.d.ts.map +1 -1
- package/dist/src/components/MemberDeclaration.js +18 -7
- package/dist/src/components/MemberDeclaration.js.map +1 -1
- package/dist/src/components/MemberScope.d.ts +2 -0
- package/dist/src/components/MemberScope.d.ts.map +1 -1
- package/dist/src/components/MemberScope.js +2 -0
- package/dist/src/components/MemberScope.js.map +1 -1
- package/dist/src/components/Prose.d.ts +10 -0
- package/dist/src/components/Prose.d.ts.map +1 -0
- package/dist/src/components/Prose.js +23 -0
- package/dist/src/components/Prose.js.map +1 -0
- package/dist/src/components/Scope.d.ts +33 -2
- package/dist/src/components/Scope.d.ts.map +1 -1
- package/dist/src/components/Scope.js +20 -4
- package/dist/src/components/Scope.js.map +1 -1
- package/dist/src/components/SourceFile.d.ts +5 -0
- package/dist/src/components/SourceFile.d.ts.map +1 -1
- package/dist/src/components/SourceFile.js +10 -1
- package/dist/src/components/SourceFile.js.map +1 -1
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +1 -0
- package/dist/src/components/index.js.map +1 -1
- package/dist/src/components/stc/index.d.ts +19 -95
- package/dist/src/components/stc/index.d.ts.map +1 -1
- package/dist/src/components/stc/index.js +3 -6
- package/dist/src/components/stc/index.js.map +1 -1
- package/dist/src/components/stc/sti.d.ts +9 -0
- package/dist/src/components/stc/sti.d.ts.map +1 -0
- package/dist/src/components/stc/sti.js +10 -0
- package/dist/src/components/stc/sti.js.map +1 -0
- package/dist/src/context/assignment.d.ts +6 -0
- package/dist/src/context/assignment.d.ts.map +1 -1
- package/dist/src/context/assignment.js +7 -0
- package/dist/src/context/assignment.js.map +1 -1
- package/dist/src/context.d.ts +2 -0
- package/dist/src/context.d.ts.map +1 -1
- package/dist/src/context.js +12 -9
- package/dist/src/context.js.map +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/jsx-runtime.d.ts +93 -2
- package/dist/src/jsx-runtime.d.ts.map +1 -1
- package/dist/src/jsx-runtime.js +51 -3
- package/dist/src/jsx-runtime.js.map +1 -1
- package/dist/src/stc.d.ts +5 -7
- package/dist/src/stc.d.ts.map +1 -1
- package/dist/src/stc.js +11 -23
- package/dist/src/stc.js.map +1 -1
- package/dist/src/sti.d.ts +11 -0
- package/dist/src/sti.d.ts.map +1 -0
- package/dist/src/sti.js +31 -0
- package/dist/src/sti.js.map +1 -0
- package/dist/src/tap.d.ts +69 -6
- package/dist/src/tap.d.ts.map +1 -1
- package/dist/src/tap.js +70 -0
- package/dist/src/tap.js.map +1 -1
- package/dist/src/utils.d.ts +5 -0
- package/dist/src/utils.d.ts.map +1 -1
- package/dist/src/utils.js +20 -0
- package/dist/src/utils.js.map +1 -1
- package/dist/test/components/prose.test.d.ts +2 -0
- package/dist/test/components/prose.test.d.ts.map +1 -0
- package/dist/test/props-with-defaults.test.d.ts +2 -0
- package/dist/test/props-with-defaults.test.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/binder.ts +44 -29
- package/src/code.ts +37 -3
- package/src/components/Block.tsx +3 -6
- package/src/components/Declaration.tsx +43 -11
- package/src/components/For.tsx +16 -4
- package/src/components/Indent.tsx +38 -5
- package/src/components/List.tsx +14 -40
- package/src/components/MemberDeclaration.tsx +51 -12
- package/src/components/MemberScope.tsx +2 -0
- package/src/components/Prose.tsx +35 -0
- package/src/components/Scope.tsx +45 -5
- package/src/components/SourceFile.tsx +10 -0
- package/src/components/index.tsx +1 -0
- package/src/components/stc/index.ts +3 -6
- package/src/components/stc/sti.ts +10 -0
- package/src/context/assignment.ts +7 -1
- package/src/context.ts +15 -11
- package/src/index.ts +3 -0
- package/src/jsx-runtime.ts +168 -3
- package/src/stc.ts +38 -59
- package/src/sti.ts +63 -0
- package/src/tap.ts +69 -6
- package/src/{utils.ts → utils.tsx} +45 -0
- package/temp/api.json +1657 -440
- package/test/components/declaration.test.tsx +1 -1
- package/test/components/prose.test.tsx +36 -0
- package/test/components/source-file.test.tsx +17 -0
- package/test/control-flow/for.test.tsx +17 -0
- package/test/props-with-defaults.test.ts +97 -0
- package/test/symbols.test.ts +0 -25
- package/vitest.config.ts +2 -10
package/temp/api.json
CHANGED
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
{
|
|
222
222
|
"kind": "PropertySignature",
|
|
223
223
|
"canonicalReference": "@alloy-js/core!AssignmentContext#isAssigned:member",
|
|
224
|
-
"docComment": "/**\n * Whether the symbol has had a value assigned to it. Once the symbol has been assigned, subsequent assignments will have no effect.\n */\n",
|
|
224
|
+
"docComment": "/**\n * Whether the symbol has had a value assigned to it. Once the symbol has been\n * assigned, subsequent assignments will have no effect.\n */\n",
|
|
225
225
|
"excerptTokens": [
|
|
226
226
|
{
|
|
227
227
|
"kind": "Content",
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
{
|
|
280
280
|
"kind": "Variable",
|
|
281
281
|
"canonicalReference": "@alloy-js/core!AssignmentContext:var",
|
|
282
|
-
"docComment": "/**\n * AssignmentContext provides the symbol that is the target of the current assignment.\n *\n * @remarks\n *\n * When a variable is declared, the symbol for the variable doesn't yet know what value it will hold, because that depends on the assignment to the variable in the variable declaration's initializer. This context provides the symbol that is the target of the current assignment, so that children of an assignment or initializer can provide additional symbol information.\n *\n * For example, when assigning an object value expression to a variable, the object value expression should use assignment context to provide the member symbols for the object value's properties.\n */\n",
|
|
282
|
+
"docComment": "/**\n * AssignmentContext provides the symbol that is the target of the current\n * assignment.\n *\n * @remarks\n *\n *\n *\n * When a variable is declared, the symbol for the variable doesn't yet know\n * what value it will hold, because that depends on the assignment to the\n * variable in the variable declaration's initializer. This context provides the\n * symbol that is the target of the current assignment, so that children of an\n * assignment or initializer can provide additional symbol information.\n *\n * For example, when assigning an object value expression to a variable, the\n * object value expression should use assignment context to provide the member\n * symbols for the object value's properties.\n */\n",
|
|
283
283
|
"excerptTokens": [
|
|
284
284
|
{
|
|
285
285
|
"kind": "Content",
|
|
@@ -355,10 +355,37 @@
|
|
|
355
355
|
"endIndex": 2
|
|
356
356
|
}
|
|
357
357
|
},
|
|
358
|
+
{
|
|
359
|
+
"kind": "PropertySignature",
|
|
360
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#doubleHardline:member",
|
|
361
|
+
"docComment": "/**\n * Place two hardlines between each element\n */\n",
|
|
362
|
+
"excerptTokens": [
|
|
363
|
+
{
|
|
364
|
+
"kind": "Content",
|
|
365
|
+
"text": "doubleHardline?: "
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"kind": "Content",
|
|
369
|
+
"text": "boolean"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"kind": "Content",
|
|
373
|
+
"text": ";"
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"isReadonly": false,
|
|
377
|
+
"isOptional": true,
|
|
378
|
+
"releaseTag": "Public",
|
|
379
|
+
"name": "doubleHardline",
|
|
380
|
+
"propertyTypeTokenRange": {
|
|
381
|
+
"startIndex": 1,
|
|
382
|
+
"endIndex": 2
|
|
383
|
+
}
|
|
384
|
+
},
|
|
358
385
|
{
|
|
359
386
|
"kind": "PropertySignature",
|
|
360
387
|
"canonicalReference": "@alloy-js/core!BaseListProps#ender:member",
|
|
361
|
-
"docComment": "/**\n * Text to place at the end of the list when there is at least one item. If set to true, the joiner is used.\n */\n",
|
|
388
|
+
"docComment": "/**\n * Text to place at the end of the list when there is at least one item. If\n * set to true, the joiner is used.\n */\n",
|
|
362
389
|
"excerptTokens": [
|
|
363
390
|
{
|
|
364
391
|
"kind": "Content",
|
|
@@ -413,7 +440,7 @@
|
|
|
413
440
|
{
|
|
414
441
|
"kind": "PropertySignature",
|
|
415
442
|
"canonicalReference": "@alloy-js/core!BaseListProps#hardline:member",
|
|
416
|
-
"docComment": "",
|
|
443
|
+
"docComment": "/**\n * Place a hardline (`<hbr />`) between each element\n */\n",
|
|
417
444
|
"excerptTokens": [
|
|
418
445
|
{
|
|
419
446
|
"kind": "Content",
|
|
@@ -468,7 +495,7 @@
|
|
|
468
495
|
{
|
|
469
496
|
"kind": "PropertySignature",
|
|
470
497
|
"canonicalReference": "@alloy-js/core!BaseListProps#line:member",
|
|
471
|
-
"docComment": "",
|
|
498
|
+
"docComment": "/**\n * Place a regular line (`<br />`) between each element\n */\n",
|
|
472
499
|
"excerptTokens": [
|
|
473
500
|
{
|
|
474
501
|
"kind": "Content",
|
|
@@ -495,7 +522,7 @@
|
|
|
495
522
|
{
|
|
496
523
|
"kind": "PropertySignature",
|
|
497
524
|
"canonicalReference": "@alloy-js/core!BaseListProps#literalline:member",
|
|
498
|
-
"docComment": "",
|
|
525
|
+
"docComment": "/**\n * Place a literal line (`<lbr />`) between each element\n */\n",
|
|
499
526
|
"excerptTokens": [
|
|
500
527
|
{
|
|
501
528
|
"kind": "Content",
|
|
@@ -549,7 +576,7 @@
|
|
|
549
576
|
{
|
|
550
577
|
"kind": "PropertySignature",
|
|
551
578
|
"canonicalReference": "@alloy-js/core!BaseListProps#softline:member",
|
|
552
|
-
"docComment": "",
|
|
579
|
+
"docComment": "/**\n * Place a softline (`<sbr />`) between each element\n */\n",
|
|
553
580
|
"excerptTokens": [
|
|
554
581
|
{
|
|
555
582
|
"kind": "Content",
|
|
@@ -576,7 +603,7 @@
|
|
|
576
603
|
{
|
|
577
604
|
"kind": "PropertySignature",
|
|
578
605
|
"canonicalReference": "@alloy-js/core!BaseListProps#space:member",
|
|
579
|
-
"docComment": "",
|
|
606
|
+
"docComment": "/**\n * Place a space between each element\n */\n",
|
|
580
607
|
"excerptTokens": [
|
|
581
608
|
{
|
|
582
609
|
"kind": "Content",
|
|
@@ -606,7 +633,7 @@
|
|
|
606
633
|
{
|
|
607
634
|
"kind": "Function",
|
|
608
635
|
"canonicalReference": "@alloy-js/core!baseListPropsToMapJoinArgs:function(1)",
|
|
609
|
-
"docComment": "",
|
|
636
|
+
"docComment": "/**\n * Convert a list of props to a joiner and ender for use in {@link (mapJoin:1)}.\n */\n",
|
|
610
637
|
"excerptTokens": [
|
|
611
638
|
{
|
|
612
639
|
"kind": "Content",
|
|
@@ -631,7 +658,7 @@
|
|
|
631
658
|
"text": ";"
|
|
632
659
|
}
|
|
633
660
|
],
|
|
634
|
-
"fileUrlPath": "src/
|
|
661
|
+
"fileUrlPath": "src/utils.tsx",
|
|
635
662
|
"returnTypeTokenRange": {
|
|
636
663
|
"startIndex": 3,
|
|
637
664
|
"endIndex": 4
|
|
@@ -653,7 +680,7 @@
|
|
|
653
680
|
{
|
|
654
681
|
"kind": "Interface",
|
|
655
682
|
"canonicalReference": "@alloy-js/core!Binder:interface",
|
|
656
|
-
"docComment": "/**\n * The binder tracks all output scopes and symbols. Scopes are nested containers for symbols.\n *\n * @remarks\n *\n * Symbol information is reactive because in certain situations this data may change. For example, when a symbol becomes conflicted with another symbol
|
|
683
|
+
"docComment": "/**\n * The binder tracks all output scopes and symbols. Scopes are nested containers\n * for symbols.\n *\n * @remarks\n *\n *\n *\n * Symbol information is reactive because in certain situations this data may\n * change. For example, when a symbol becomes conflicted with another symbol,\n * one of the symbol names may change. Ensure that you interact with binder\n * values in a reactive context (i.e. within JSX/code template, or within\n * memo/computed/etc).\n *\n */\n",
|
|
657
684
|
"excerptTokens": [
|
|
658
685
|
{
|
|
659
686
|
"kind": "Content",
|
|
@@ -760,7 +787,7 @@
|
|
|
760
787
|
{
|
|
761
788
|
"kind": "MethodSignature",
|
|
762
789
|
"canonicalReference": "@alloy-js/core!Binder#createScope:member(1)",
|
|
763
|
-
"docComment": "/**\n * Create a new scope. The scope will be added to the parent scope's children
|
|
790
|
+
"docComment": "/**\n * Create a new scope. The scope will be added to the parent scope's children.\n * The returned scope object is reactive.\n */\n",
|
|
764
791
|
"excerptTokens": [
|
|
765
792
|
{
|
|
766
793
|
"kind": "Content",
|
|
@@ -832,7 +859,7 @@
|
|
|
832
859
|
{
|
|
833
860
|
"kind": "MethodSignature",
|
|
834
861
|
"canonicalReference": "@alloy-js/core!Binder#createSymbol:member(1)",
|
|
835
|
-
"docComment": "/**\n * Create a new symbol. The symbol will be added to the parent scope's symbols
|
|
862
|
+
"docComment": "/**\n * Create a new symbol. The symbol will be added to the parent scope's symbols.\n * The returned symbol object is reactive.\n */\n",
|
|
836
863
|
"excerptTokens": [
|
|
837
864
|
{
|
|
838
865
|
"kind": "Content",
|
|
@@ -904,7 +931,7 @@
|
|
|
904
931
|
{
|
|
905
932
|
"kind": "MethodSignature",
|
|
906
933
|
"canonicalReference": "@alloy-js/core!Binder#deleteSymbol:member(1)",
|
|
907
|
-
"docComment": "/**\n * Delete the given symbol. The symbol will be removed from its parent's scope. Any resolutions to this symbol will become undefined.\n */\n",
|
|
934
|
+
"docComment": "/**\n * Delete the given symbol. The symbol will be removed from its parent's\n * scope. Any resolutions to this symbol will become undefined.\n */\n",
|
|
908
935
|
"excerptTokens": [
|
|
909
936
|
{
|
|
910
937
|
"kind": "Content",
|
|
@@ -1047,7 +1074,7 @@
|
|
|
1047
1074
|
{
|
|
1048
1075
|
"kind": "MethodSignature",
|
|
1049
1076
|
"canonicalReference": "@alloy-js/core!Binder#findSymbolName:member(1)",
|
|
1050
|
-
"docComment": "/**\n * Find a symbol with a given name in the given scope. Returns a ref for the symbol, such that when the symbol is available, the ref value will update.\n */\n",
|
|
1077
|
+
"docComment": "/**\n * Find a symbol with a given name in the given scope. Returns a ref\n * for the symbol, such that when the symbol is available, the ref value\n * will update.\n */\n",
|
|
1051
1078
|
"excerptTokens": [
|
|
1052
1079
|
{
|
|
1053
1080
|
"kind": "Content",
|
|
@@ -1170,6 +1197,79 @@
|
|
|
1170
1197
|
],
|
|
1171
1198
|
"name": "findSymbolName"
|
|
1172
1199
|
},
|
|
1200
|
+
{
|
|
1201
|
+
"kind": "MethodSignature",
|
|
1202
|
+
"canonicalReference": "@alloy-js/core!Binder#getSymbolForRefkey:member(1)",
|
|
1203
|
+
"docComment": "",
|
|
1204
|
+
"excerptTokens": [
|
|
1205
|
+
{
|
|
1206
|
+
"kind": "Content",
|
|
1207
|
+
"text": "getSymbolForRefkey<TSymbol extends "
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"kind": "Reference",
|
|
1211
|
+
"text": "OutputSymbol",
|
|
1212
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:interface"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"kind": "Content",
|
|
1216
|
+
"text": ">(refkey: "
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"kind": "Reference",
|
|
1220
|
+
"text": "Refkey",
|
|
1221
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"kind": "Content",
|
|
1225
|
+
"text": "): "
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"kind": "Reference",
|
|
1229
|
+
"text": "Ref",
|
|
1230
|
+
"canonicalReference": "@vue/reactivity!Ref:interface"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"kind": "Content",
|
|
1234
|
+
"text": "<TSymbol | undefined>"
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
"kind": "Content",
|
|
1238
|
+
"text": ";"
|
|
1239
|
+
}
|
|
1240
|
+
],
|
|
1241
|
+
"isOptional": false,
|
|
1242
|
+
"returnTypeTokenRange": {
|
|
1243
|
+
"startIndex": 5,
|
|
1244
|
+
"endIndex": 7
|
|
1245
|
+
},
|
|
1246
|
+
"releaseTag": "Public",
|
|
1247
|
+
"overloadIndex": 1,
|
|
1248
|
+
"parameters": [
|
|
1249
|
+
{
|
|
1250
|
+
"parameterName": "refkey",
|
|
1251
|
+
"parameterTypeTokenRange": {
|
|
1252
|
+
"startIndex": 3,
|
|
1253
|
+
"endIndex": 4
|
|
1254
|
+
},
|
|
1255
|
+
"isOptional": false
|
|
1256
|
+
}
|
|
1257
|
+
],
|
|
1258
|
+
"typeParameters": [
|
|
1259
|
+
{
|
|
1260
|
+
"typeParameterName": "TSymbol",
|
|
1261
|
+
"constraintTokenRange": {
|
|
1262
|
+
"startIndex": 1,
|
|
1263
|
+
"endIndex": 2
|
|
1264
|
+
},
|
|
1265
|
+
"defaultTypeTokenRange": {
|
|
1266
|
+
"startIndex": 0,
|
|
1267
|
+
"endIndex": 0
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
],
|
|
1271
|
+
"name": "getSymbolForRefkey"
|
|
1272
|
+
},
|
|
1173
1273
|
{
|
|
1174
1274
|
"kind": "PropertySignature",
|
|
1175
1275
|
"canonicalReference": "@alloy-js/core!Binder#globalScope:member",
|
|
@@ -1201,7 +1301,7 @@
|
|
|
1201
1301
|
{
|
|
1202
1302
|
"kind": "MethodSignature",
|
|
1203
1303
|
"canonicalReference": "@alloy-js/core!Binder#instantiateSymbolInto:member(1)",
|
|
1204
|
-
"docComment": "/**\n * Instantiate the static members of a symbol into the instance members of another symbol.\n *\n * @param sourceSym - The symbol to add instance members to.\n *\n * @param targetSym - The symbol with the static members to instantiate.\n */\n",
|
|
1304
|
+
"docComment": "/**\n * Instantiate the static members of a symbol into the instance members of\n * another symbol.\n *\n * @param sourceSym - The symbol to add instance members to.\n *\n * @param targetSym - The symbol with the static members to instantiate.\n */\n",
|
|
1205
1305
|
"excerptTokens": [
|
|
1206
1306
|
{
|
|
1207
1307
|
"kind": "Content",
|
|
@@ -1264,7 +1364,7 @@
|
|
|
1264
1364
|
{
|
|
1265
1365
|
"kind": "MethodSignature",
|
|
1266
1366
|
"canonicalReference": "@alloy-js/core!Binder#resolveDeclarationByKey:member(1)",
|
|
1267
|
-
"docComment": "/**\n * Resolve the given refkey in the current scope.\n *\n * @returns
|
|
1367
|
+
"docComment": "/**\n * Resolve the given refkey in the current scope.\n *\n * @returns a ref for the resolution result.\n *\n * @see\n *\n * {@link resolve} a convenience function that uses the current scope and\n * binder.\n */\n",
|
|
1268
1368
|
"excerptTokens": [
|
|
1269
1369
|
{
|
|
1270
1370
|
"kind": "Content",
|
|
@@ -1416,7 +1516,7 @@
|
|
|
1416
1516
|
{
|
|
1417
1517
|
"kind": "MethodSignature",
|
|
1418
1518
|
"canonicalReference": "@alloy-js/core!Binder#resolveFQN:member(1)",
|
|
1419
|
-
"docComment": "/**\n * Resolve a fully qualified name to a symbol. Access a nested scope by name with `::`, a nested static member with `.` and a nested instance member with `#`.\n *\n * Per-language packages may provide their own resolveFQN function that uses syntax more natural to that
|
|
1519
|
+
"docComment": "/**\n * Resolve a fully qualified name to a symbol. Access a nested scope by name\n * with `::`, a nested static member with `.` and a nested instance member\n * with `#`.\n *\n * Per-language packages may provide their own resolveFQN function that uses\n * syntax more natural to that language.\n */\n",
|
|
1420
1520
|
"excerptTokens": [
|
|
1421
1521
|
{
|
|
1422
1522
|
"kind": "Content",
|
|
@@ -1529,7 +1629,7 @@
|
|
|
1529
1629
|
{
|
|
1530
1630
|
"kind": "Variable",
|
|
1531
1631
|
"canonicalReference": "@alloy-js/core!BinderContext:var",
|
|
1532
|
-
"docComment": "/**\n * The binder context provides the binder instance to all components. This context is provided by the {@link Output | output component}.\n */\n",
|
|
1632
|
+
"docComment": "/**\n * The binder context provides the binder instance to all components. This\n * context is provided by the {@link Output | output component}.\n */\n",
|
|
1533
1633
|
"excerptTokens": [
|
|
1534
1634
|
{
|
|
1535
1635
|
"kind": "Content",
|
|
@@ -1612,7 +1712,7 @@
|
|
|
1612
1712
|
{
|
|
1613
1713
|
"kind": "Function",
|
|
1614
1714
|
"canonicalReference": "@alloy-js/core!Block:function(1)",
|
|
1615
|
-
"docComment": "/**\n * Create an indented block of source text. The block has `opener` text which is added prior to the block, which defaults to
|
|
1715
|
+
"docComment": "/**\n * Create an indented block of source text. The block has `opener` text which is\n * added prior to the block, which defaults to `\"{\"`, and `closer` text which is\n * added after the block, which defaults to `\"}\"`.\n */\n",
|
|
1616
1716
|
"excerptTokens": [
|
|
1617
1717
|
{
|
|
1618
1718
|
"kind": "Content",
|
|
@@ -1729,7 +1829,7 @@
|
|
|
1729
1829
|
{
|
|
1730
1830
|
"kind": "PropertySignature",
|
|
1731
1831
|
"canonicalReference": "@alloy-js/core!BlockProps#newline:member",
|
|
1732
|
-
"docComment": "/**\n * Whether the block starts on a new line. When true, a hardline is added prior to the block.\n */\n",
|
|
1832
|
+
"docComment": "/**\n * Whether the block starts on a new line. When true, a hardline is added\n * prior to the block.\n */\n",
|
|
1733
1833
|
"excerptTokens": [
|
|
1734
1834
|
{
|
|
1735
1835
|
"kind": "Content",
|
|
@@ -1783,32 +1883,6 @@
|
|
|
1783
1883
|
],
|
|
1784
1884
|
"extendsTokenRanges": []
|
|
1785
1885
|
},
|
|
1786
|
-
{
|
|
1787
|
-
"kind": "TypeAlias",
|
|
1788
|
-
"canonicalReference": "@alloy-js/core!BreakKind:type",
|
|
1789
|
-
"docComment": "",
|
|
1790
|
-
"excerptTokens": [
|
|
1791
|
-
{
|
|
1792
|
-
"kind": "Content",
|
|
1793
|
-
"text": "export type BreakKind = "
|
|
1794
|
-
},
|
|
1795
|
-
{
|
|
1796
|
-
"kind": "Content",
|
|
1797
|
-
"text": "\"none\" | \"space\" | \"soft\" | \"hard\" | \"literal\""
|
|
1798
|
-
},
|
|
1799
|
-
{
|
|
1800
|
-
"kind": "Content",
|
|
1801
|
-
"text": ";"
|
|
1802
|
-
}
|
|
1803
|
-
],
|
|
1804
|
-
"fileUrlPath": "src/components/List.tsx",
|
|
1805
|
-
"releaseTag": "Public",
|
|
1806
|
-
"name": "BreakKind",
|
|
1807
|
-
"typeTokenRange": {
|
|
1808
|
-
"startIndex": 1,
|
|
1809
|
-
"endIndex": 2
|
|
1810
|
-
}
|
|
1811
|
-
},
|
|
1812
1886
|
{
|
|
1813
1887
|
"kind": "TypeAlias",
|
|
1814
1888
|
"canonicalReference": "@alloy-js/core!BreakParentIntrinsicElement:type",
|
|
@@ -1941,7 +2015,7 @@
|
|
|
1941
2015
|
{
|
|
1942
2016
|
"kind": "Function",
|
|
1943
2017
|
"canonicalReference": "@alloy-js/core!children:function(1)",
|
|
1944
|
-
"docComment": "/**\n * Returns a memo which is a list of all the provided children
|
|
2018
|
+
"docComment": "/**\n * Returns a memo which is a list of all the provided children.\n * If you want this as an array, see {@link childrenArray}.\n */\n",
|
|
1945
2019
|
"excerptTokens": [
|
|
1946
2020
|
{
|
|
1947
2021
|
"kind": "Content",
|
|
@@ -1983,7 +2057,7 @@
|
|
|
1983
2057
|
"text": ";"
|
|
1984
2058
|
}
|
|
1985
2059
|
],
|
|
1986
|
-
"fileUrlPath": "src/utils.
|
|
2060
|
+
"fileUrlPath": "src/utils.tsx",
|
|
1987
2061
|
"returnTypeTokenRange": {
|
|
1988
2062
|
"startIndex": 6,
|
|
1989
2063
|
"endIndex": 8
|
|
@@ -2095,7 +2169,7 @@
|
|
|
2095
2169
|
"text": ";"
|
|
2096
2170
|
}
|
|
2097
2171
|
],
|
|
2098
|
-
"fileUrlPath": "src/utils.
|
|
2172
|
+
"fileUrlPath": "src/utils.tsx",
|
|
2099
2173
|
"returnTypeTokenRange": {
|
|
2100
2174
|
"startIndex": 6,
|
|
2101
2175
|
"endIndex": 8
|
|
@@ -2132,7 +2206,7 @@
|
|
|
2132
2206
|
"text": "export interface ChildrenOptions "
|
|
2133
2207
|
}
|
|
2134
2208
|
],
|
|
2135
|
-
"fileUrlPath": "src/utils.
|
|
2209
|
+
"fileUrlPath": "src/utils.tsx",
|
|
2136
2210
|
"releaseTag": "Public",
|
|
2137
2211
|
"name": "ChildrenOptions",
|
|
2138
2212
|
"preserveMemberOrder": false,
|
|
@@ -2170,7 +2244,7 @@
|
|
|
2170
2244
|
{
|
|
2171
2245
|
"kind": "Function",
|
|
2172
2246
|
"canonicalReference": "@alloy-js/core!code:function(1)",
|
|
2173
|
-
"docComment": "",
|
|
2247
|
+
"docComment": "/**\n * Turn the provided string template into Children by replacing literal line\n * breaks with hardlines and automatically indenting indented content. Similar\n * in spirit to the `<code>` element in HTML.\n *\n * @see\n *\n * {@link text} for a similar function which treats whitespace similar to\n * JSX template bodies.\n */\n",
|
|
2174
2248
|
"excerptTokens": [
|
|
2175
2249
|
{
|
|
2176
2250
|
"kind": "Content",
|
|
@@ -2200,12 +2274,8 @@
|
|
|
2200
2274
|
},
|
|
2201
2275
|
{
|
|
2202
2276
|
"kind": "Reference",
|
|
2203
|
-
"text": "
|
|
2204
|
-
"canonicalReference": "@alloy-js/core!
|
|
2205
|
-
},
|
|
2206
|
-
{
|
|
2207
|
-
"kind": "Content",
|
|
2208
|
-
"text": "[]"
|
|
2277
|
+
"text": "Children",
|
|
2278
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
2209
2279
|
},
|
|
2210
2280
|
{
|
|
2211
2281
|
"kind": "Content",
|
|
@@ -2215,7 +2285,7 @@
|
|
|
2215
2285
|
"fileUrlPath": "src/code.ts",
|
|
2216
2286
|
"returnTypeTokenRange": {
|
|
2217
2287
|
"startIndex": 6,
|
|
2218
|
-
"endIndex":
|
|
2288
|
+
"endIndex": 7
|
|
2219
2289
|
},
|
|
2220
2290
|
"releaseTag": "Public",
|
|
2221
2291
|
"overloadIndex": 1,
|
|
@@ -2499,6 +2569,47 @@
|
|
|
2499
2569
|
"startIndex": 1,
|
|
2500
2570
|
"endIndex": 5
|
|
2501
2571
|
}
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
"kind": "PropertySignature",
|
|
2575
|
+
"canonicalReference": "@alloy-js/core!ComponentContext#ProviderStc:member",
|
|
2576
|
+
"docComment": "",
|
|
2577
|
+
"excerptTokens": [
|
|
2578
|
+
{
|
|
2579
|
+
"kind": "Content",
|
|
2580
|
+
"text": "ProviderStc: "
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"kind": "Reference",
|
|
2584
|
+
"text": "StcSignature",
|
|
2585
|
+
"canonicalReference": "@alloy-js/core!StcSignature:type"
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
"kind": "Content",
|
|
2589
|
+
"text": "<"
|
|
2590
|
+
},
|
|
2591
|
+
{
|
|
2592
|
+
"kind": "Reference",
|
|
2593
|
+
"text": "ContextProviderProps",
|
|
2594
|
+
"canonicalReference": "@alloy-js/core!ContextProviderProps:interface"
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
"kind": "Content",
|
|
2598
|
+
"text": "<T>>"
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"kind": "Content",
|
|
2602
|
+
"text": ";"
|
|
2603
|
+
}
|
|
2604
|
+
],
|
|
2605
|
+
"isReadonly": false,
|
|
2606
|
+
"isOptional": false,
|
|
2607
|
+
"releaseTag": "Public",
|
|
2608
|
+
"name": "ProviderStc",
|
|
2609
|
+
"propertyTypeTokenRange": {
|
|
2610
|
+
"startIndex": 1,
|
|
2611
|
+
"endIndex": 5
|
|
2612
|
+
}
|
|
2502
2613
|
}
|
|
2503
2614
|
],
|
|
2504
2615
|
"extendsTokenRanges": []
|
|
@@ -2609,9 +2720,8 @@
|
|
|
2609
2720
|
"text": "props: "
|
|
2610
2721
|
},
|
|
2611
2722
|
{
|
|
2612
|
-
"kind": "
|
|
2613
|
-
"text": "
|
|
2614
|
-
"canonicalReference": "@alloy-js/core!Props:type"
|
|
2723
|
+
"kind": "Content",
|
|
2724
|
+
"text": "TProps"
|
|
2615
2725
|
},
|
|
2616
2726
|
{
|
|
2617
2727
|
"kind": "Content",
|
|
@@ -2759,7 +2869,7 @@
|
|
|
2759
2869
|
{
|
|
2760
2870
|
"kind": "PropertySignature",
|
|
2761
2871
|
"canonicalReference": "@alloy-js/core!Context#componentOwner:member",
|
|
2762
|
-
"docComment": "/**\n * When this context was created by a component, this will be the component that created it.\n */\n",
|
|
2872
|
+
"docComment": "/**\n * When this context was created by a component, this will\n * be the component that created it.\n */\n",
|
|
2763
2873
|
"excerptTokens": [
|
|
2764
2874
|
{
|
|
2765
2875
|
"kind": "Content",
|
|
@@ -2855,7 +2965,7 @@
|
|
|
2855
2965
|
{
|
|
2856
2966
|
"kind": "PropertySignature",
|
|
2857
2967
|
"canonicalReference": "@alloy-js/core!Context#elementCache:member",
|
|
2858
|
-
"docComment": "/**\n * A cache of RenderTextTree nodes created within this context
|
|
2968
|
+
"docComment": "/**\n * A cache of RenderTextTree nodes created within this context,\n * indexed by the component or function which created them.\n */\n",
|
|
2859
2969
|
"excerptTokens": [
|
|
2860
2970
|
{
|
|
2861
2971
|
"kind": "Content",
|
|
@@ -3081,7 +3191,7 @@
|
|
|
3081
3191
|
{
|
|
3082
3192
|
"kind": "Function",
|
|
3083
3193
|
"canonicalReference": "@alloy-js/core!createAssignmentContext:function(1)",
|
|
3084
|
-
"docComment": "/**\n * Creates a new {@link (AssignmentContext:interface)}.\n *\n * @param target - The symbol that is the target of the current assignment.\n *\n * @returns
|
|
3194
|
+
"docComment": "/**\n * Creates a new {@link (AssignmentContext:interface)}.\n *\n * @param target - The symbol that is the target of the current assignment.\n *\n * @returns A new {@link (AssignmentContext:interface)}.\n */\n",
|
|
3085
3195
|
"excerptTokens": [
|
|
3086
3196
|
{
|
|
3087
3197
|
"kind": "Content",
|
|
@@ -3372,7 +3482,7 @@
|
|
|
3372
3482
|
{
|
|
3373
3483
|
"kind": "Function",
|
|
3374
3484
|
"canonicalReference": "@alloy-js/core!createDeclarationTap:function(1)",
|
|
3375
|
-
"docComment": "",
|
|
3485
|
+
"docComment": "/**\n * Create a tap for {@link DeclarationContext}.\n */\n",
|
|
3376
3486
|
"excerptTokens": [
|
|
3377
3487
|
{
|
|
3378
3488
|
"kind": "Content",
|
|
@@ -3398,8 +3508,8 @@
|
|
|
3398
3508
|
},
|
|
3399
3509
|
{
|
|
3400
3510
|
"kind": "Reference",
|
|
3401
|
-
"text": "
|
|
3402
|
-
"canonicalReference": "@alloy-js/core!
|
|
3511
|
+
"text": "TapHandler",
|
|
3512
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface"
|
|
3403
3513
|
},
|
|
3404
3514
|
{
|
|
3405
3515
|
"kind": "Content",
|
|
@@ -3555,7 +3665,7 @@
|
|
|
3555
3665
|
{
|
|
3556
3666
|
"kind": "Function",
|
|
3557
3667
|
"canonicalReference": "@alloy-js/core!createMemberTap:function(1)",
|
|
3558
|
-
"docComment": "",
|
|
3668
|
+
"docComment": "/**\n * Create a tap for {@link MemberDeclarationContext}.\n */\n",
|
|
3559
3669
|
"excerptTokens": [
|
|
3560
3670
|
{
|
|
3561
3671
|
"kind": "Content",
|
|
@@ -3581,8 +3691,8 @@
|
|
|
3581
3691
|
},
|
|
3582
3692
|
{
|
|
3583
3693
|
"kind": "Reference",
|
|
3584
|
-
"text": "
|
|
3585
|
-
"canonicalReference": "@alloy-js/core!
|
|
3694
|
+
"text": "TapHandler",
|
|
3695
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface"
|
|
3586
3696
|
},
|
|
3587
3697
|
{
|
|
3588
3698
|
"kind": "Content",
|
|
@@ -3977,7 +4087,16 @@
|
|
|
3977
4087
|
},
|
|
3978
4088
|
{
|
|
3979
4089
|
"kind": "Content",
|
|
3980
|
-
"text": ";\n
|
|
4090
|
+
"text": ";\n metadata?: "
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
"kind": "Reference",
|
|
4094
|
+
"text": "Record",
|
|
4095
|
+
"canonicalReference": "!Record:type"
|
|
4096
|
+
},
|
|
4097
|
+
{
|
|
4098
|
+
"kind": "Content",
|
|
4099
|
+
"text": "<string, unknown>;\n} & "
|
|
3981
4100
|
},
|
|
3982
4101
|
{
|
|
3983
4102
|
"kind": "Reference",
|
|
@@ -4020,13 +4139,13 @@
|
|
|
4020
4139
|
],
|
|
4021
4140
|
"typeTokenRange": {
|
|
4022
4141
|
"startIndex": 5,
|
|
4023
|
-
"endIndex":
|
|
4142
|
+
"endIndex": 18
|
|
4024
4143
|
}
|
|
4025
4144
|
},
|
|
4026
4145
|
{
|
|
4027
4146
|
"kind": "Function",
|
|
4028
4147
|
"canonicalReference": "@alloy-js/core!createScopeTap:function(1)",
|
|
4029
|
-
"docComment": "",
|
|
4148
|
+
"docComment": "/**\n * Create a tap for {@link OutputScope}.\n */\n",
|
|
4030
4149
|
"excerptTokens": [
|
|
4031
4150
|
{
|
|
4032
4151
|
"kind": "Content",
|
|
@@ -4052,8 +4171,8 @@
|
|
|
4052
4171
|
},
|
|
4053
4172
|
{
|
|
4054
4173
|
"kind": "Reference",
|
|
4055
|
-
"text": "
|
|
4056
|
-
"canonicalReference": "@alloy-js/core!
|
|
4174
|
+
"text": "TapHandler",
|
|
4175
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface"
|
|
4057
4176
|
},
|
|
4058
4177
|
{
|
|
4059
4178
|
"kind": "Content",
|
|
@@ -4112,7 +4231,7 @@
|
|
|
4112
4231
|
{
|
|
4113
4232
|
"kind": "Function",
|
|
4114
4233
|
"canonicalReference": "@alloy-js/core!createSourceFileTap:function(1)",
|
|
4115
|
-
"docComment": "",
|
|
4234
|
+
"docComment": "/**\n * Create a tap for {@link (SourceFileContext:interface)}.\n */\n",
|
|
4116
4235
|
"excerptTokens": [
|
|
4117
4236
|
{
|
|
4118
4237
|
"kind": "Content",
|
|
@@ -4120,8 +4239,8 @@
|
|
|
4120
4239
|
},
|
|
4121
4240
|
{
|
|
4122
4241
|
"kind": "Reference",
|
|
4123
|
-
"text": "
|
|
4124
|
-
"canonicalReference": "@alloy-js/core!
|
|
4242
|
+
"text": "TapHandler",
|
|
4243
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface"
|
|
4125
4244
|
},
|
|
4126
4245
|
{
|
|
4127
4246
|
"kind": "Content",
|
|
@@ -4229,7 +4348,7 @@
|
|
|
4229
4348
|
},
|
|
4230
4349
|
{
|
|
4231
4350
|
"kind": "Content",
|
|
4232
|
-
"text": "
|
|
4351
|
+
"text": " | "
|
|
4233
4352
|
},
|
|
4234
4353
|
{
|
|
4235
4354
|
"kind": "Reference",
|
|
@@ -4247,7 +4366,16 @@
|
|
|
4247
4366
|
},
|
|
4248
4367
|
{
|
|
4249
4368
|
"kind": "Content",
|
|
4250
|
-
"text": ";\n
|
|
4369
|
+
"text": ";\n metadata?: "
|
|
4370
|
+
},
|
|
4371
|
+
{
|
|
4372
|
+
"kind": "Reference",
|
|
4373
|
+
"text": "Record",
|
|
4374
|
+
"canonicalReference": "!Record:type"
|
|
4375
|
+
},
|
|
4376
|
+
{
|
|
4377
|
+
"kind": "Content",
|
|
4378
|
+
"text": "<string, unknown>;\n} & "
|
|
4251
4379
|
},
|
|
4252
4380
|
{
|
|
4253
4381
|
"kind": "Reference",
|
|
@@ -4290,13 +4418,13 @@
|
|
|
4290
4418
|
],
|
|
4291
4419
|
"typeTokenRange": {
|
|
4292
4420
|
"startIndex": 5,
|
|
4293
|
-
"endIndex":
|
|
4421
|
+
"endIndex": 20
|
|
4294
4422
|
}
|
|
4295
4423
|
},
|
|
4296
4424
|
{
|
|
4297
4425
|
"kind": "Function",
|
|
4298
4426
|
"canonicalReference": "@alloy-js/core!createTap:function(1)",
|
|
4299
|
-
"docComment": "",
|
|
4427
|
+
"docComment": "/**\n * Create a component that when rendered, initializes the tapped value\n * with the provided callback. This is useful for accessing context\n * provided by child components inside a parent component.\n *\n * @example\n * ```tsx\n * import { type Children, computed, createTap } from \"@alloy-js/core\";\n *\n * // context we will tap into\n * const SomeContext = createContext<string>();\n *\n * // a component which provides some specific context\n * function MyDeclaration(props: { children: Children }) {\n * return <SomeContext.Provider value=\"Hello World\">\n * {props.children}\n * </SomeContext.Provider>;\n * }\n *\n * // a parent component which wants to know about the context set\n * // by its children\n * function MySpecialDeclaration() {\n * const SomeContextTap = createTap(() => useContext(SomeContext));\n *\n * return <>\n * The declaration context is: {SomeContextTap.ref}\n * <MyDeclaration>\n * <SomeContextTap />\n * </MyDeclaration>\n * </>\n * }\n *\n * @see {@link createDeclarationTap} for tapping {@link DeclarationContext}.\n * @see {@link createMemberTap} for tapping {@link MemberDeclarationContext}.\n * @see {@link createScopeTap} for tapping {@link OutputScope}.\n * @see {@link createSourceFileTap} for tapping {@link SourceFileContext}.\n * ```\n *\n */\n",
|
|
4300
4428
|
"excerptTokens": [
|
|
4301
4429
|
{
|
|
4302
4430
|
"kind": "Content",
|
|
@@ -4325,8 +4453,8 @@
|
|
|
4325
4453
|
},
|
|
4326
4454
|
{
|
|
4327
4455
|
"kind": "Reference",
|
|
4328
|
-
"text": "
|
|
4329
|
-
"canonicalReference": "@alloy-js/core!
|
|
4456
|
+
"text": "TapHandler",
|
|
4457
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface"
|
|
4330
4458
|
},
|
|
4331
4459
|
{
|
|
4332
4460
|
"kind": "Content",
|
|
@@ -4393,7 +4521,7 @@
|
|
|
4393
4521
|
{
|
|
4394
4522
|
"kind": "Interface",
|
|
4395
4523
|
"canonicalReference": "@alloy-js/core!CustomContext:interface",
|
|
4396
|
-
"docComment": "/**\n * Create a custom reactive context for the children returned by the provided context.\n */\n",
|
|
4524
|
+
"docComment": "/**\n * Create a custom reactive context for the children returned by\n * the provided context.\n */\n",
|
|
4397
4525
|
"excerptTokens": [
|
|
4398
4526
|
{
|
|
4399
4527
|
"kind": "Content",
|
|
@@ -4518,7 +4646,7 @@
|
|
|
4518
4646
|
{
|
|
4519
4647
|
"kind": "Function",
|
|
4520
4648
|
"canonicalReference": "@alloy-js/core!Declaration:function(1)",
|
|
4521
|
-
"docComment": "/**\n * Declares a symbol in the current scope for this component's children.\n *\n * @remarks\n *\n * This component must be called in one of two ways: with a name and an optional refkey, or else passing in the symbol. When called with a name and refkey, a symbol will be created in the current scope (provided by {@link ScopeContext}) with that name and refkey
|
|
4649
|
+
"docComment": "/**\n * Declares a symbol in the current scope for this component's children.\n *\n * @remarks\n *\n *\n *\n * This component must be called in one of two ways: with a name and an optional\n * refkey, or else passing in the symbol. When called with a name and refkey, a\n * symbol will be created in the current scope (provided by\n * {@link ScopeContext}) with that name and refkey.\n *\n * When called with a symbol, that symbol is merely exposed via\n * {@link DeclarationContext}. It is assumed that the caller of this component\n * has created the symbol with the `createSymbol` API on the\n * {@link BinderContext}.\n *\n * @see\n *\n * {@link BinderContext}\n */\n",
|
|
4522
4650
|
"excerptTokens": [
|
|
4523
4651
|
{
|
|
4524
4652
|
"kind": "Content",
|
|
@@ -4527,7 +4655,7 @@
|
|
|
4527
4655
|
{
|
|
4528
4656
|
"kind": "Reference",
|
|
4529
4657
|
"text": "DeclarationProps",
|
|
4530
|
-
"canonicalReference": "@alloy-js/core!DeclarationProps:
|
|
4658
|
+
"canonicalReference": "@alloy-js/core!DeclarationProps:type"
|
|
4531
4659
|
},
|
|
4532
4660
|
{
|
|
4533
4661
|
"kind": "Content",
|
|
@@ -4600,23 +4728,59 @@
|
|
|
4600
4728
|
}
|
|
4601
4729
|
},
|
|
4602
4730
|
{
|
|
4603
|
-
"kind": "
|
|
4604
|
-
"canonicalReference": "@alloy-js/core!DeclarationProps:
|
|
4731
|
+
"kind": "TypeAlias",
|
|
4732
|
+
"canonicalReference": "@alloy-js/core!DeclarationProps:type",
|
|
4605
4733
|
"docComment": "",
|
|
4606
4734
|
"excerptTokens": [
|
|
4607
4735
|
{
|
|
4608
4736
|
"kind": "Content",
|
|
4609
|
-
"text": "export
|
|
4737
|
+
"text": "export type DeclarationProps = "
|
|
4738
|
+
},
|
|
4739
|
+
{
|
|
4740
|
+
"kind": "Reference",
|
|
4741
|
+
"text": "DeclarationPropsWithSymbol",
|
|
4742
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithSymbol:interface"
|
|
4743
|
+
},
|
|
4744
|
+
{
|
|
4745
|
+
"kind": "Content",
|
|
4746
|
+
"text": " | "
|
|
4747
|
+
},
|
|
4748
|
+
{
|
|
4749
|
+
"kind": "Reference",
|
|
4750
|
+
"text": "DeclarationPropsWithInfo",
|
|
4751
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithInfo:interface"
|
|
4752
|
+
},
|
|
4753
|
+
{
|
|
4754
|
+
"kind": "Content",
|
|
4755
|
+
"text": ";"
|
|
4610
4756
|
}
|
|
4611
4757
|
],
|
|
4612
4758
|
"fileUrlPath": "src/components/Declaration.tsx",
|
|
4613
4759
|
"releaseTag": "Public",
|
|
4614
4760
|
"name": "DeclarationProps",
|
|
4761
|
+
"typeTokenRange": {
|
|
4762
|
+
"startIndex": 1,
|
|
4763
|
+
"endIndex": 4
|
|
4764
|
+
}
|
|
4765
|
+
},
|
|
4766
|
+
{
|
|
4767
|
+
"kind": "Interface",
|
|
4768
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithInfo:interface",
|
|
4769
|
+
"docComment": "/**\n * Create a declaration by providing a symbol name and optional symbol metadata.\n */\n",
|
|
4770
|
+
"excerptTokens": [
|
|
4771
|
+
{
|
|
4772
|
+
"kind": "Content",
|
|
4773
|
+
"text": "export interface DeclarationPropsWithInfo "
|
|
4774
|
+
}
|
|
4775
|
+
],
|
|
4776
|
+
"fileUrlPath": "src/components/Declaration.tsx",
|
|
4777
|
+
"releaseTag": "Public",
|
|
4778
|
+
"name": "DeclarationPropsWithInfo",
|
|
4615
4779
|
"preserveMemberOrder": false,
|
|
4616
4780
|
"members": [
|
|
4617
4781
|
{
|
|
4618
4782
|
"kind": "PropertySignature",
|
|
4619
|
-
"canonicalReference": "@alloy-js/core!
|
|
4783
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithInfo#children:member",
|
|
4620
4784
|
"docComment": "",
|
|
4621
4785
|
"excerptTokens": [
|
|
4622
4786
|
{
|
|
@@ -4644,16 +4808,21 @@
|
|
|
4644
4808
|
},
|
|
4645
4809
|
{
|
|
4646
4810
|
"kind": "PropertySignature",
|
|
4647
|
-
"canonicalReference": "@alloy-js/core!
|
|
4648
|
-
"docComment": "",
|
|
4811
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithInfo#metadata:member",
|
|
4812
|
+
"docComment": "/**\n * Additional metadata for the declared symbol.\n */\n",
|
|
4649
4813
|
"excerptTokens": [
|
|
4650
4814
|
{
|
|
4651
4815
|
"kind": "Content",
|
|
4652
|
-
"text": "
|
|
4816
|
+
"text": "metadata?: "
|
|
4817
|
+
},
|
|
4818
|
+
{
|
|
4819
|
+
"kind": "Reference",
|
|
4820
|
+
"text": "Record",
|
|
4821
|
+
"canonicalReference": "!Record:type"
|
|
4653
4822
|
},
|
|
4654
4823
|
{
|
|
4655
4824
|
"kind": "Content",
|
|
4656
|
-
"text": "string"
|
|
4825
|
+
"text": "<string, unknown>"
|
|
4657
4826
|
},
|
|
4658
4827
|
{
|
|
4659
4828
|
"kind": "Content",
|
|
@@ -4663,25 +4832,24 @@
|
|
|
4663
4832
|
"isReadonly": false,
|
|
4664
4833
|
"isOptional": true,
|
|
4665
4834
|
"releaseTag": "Public",
|
|
4666
|
-
"name": "
|
|
4835
|
+
"name": "metadata",
|
|
4667
4836
|
"propertyTypeTokenRange": {
|
|
4668
4837
|
"startIndex": 1,
|
|
4669
|
-
"endIndex":
|
|
4838
|
+
"endIndex": 3
|
|
4670
4839
|
}
|
|
4671
4840
|
},
|
|
4672
4841
|
{
|
|
4673
4842
|
"kind": "PropertySignature",
|
|
4674
|
-
"canonicalReference": "@alloy-js/core!
|
|
4675
|
-
"docComment": "",
|
|
4843
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithInfo#name:member",
|
|
4844
|
+
"docComment": "/**\n * The name of this declaration.\n */\n",
|
|
4676
4845
|
"excerptTokens": [
|
|
4677
4846
|
{
|
|
4678
4847
|
"kind": "Content",
|
|
4679
|
-
"text": "
|
|
4848
|
+
"text": "name: "
|
|
4680
4849
|
},
|
|
4681
4850
|
{
|
|
4682
|
-
"kind": "
|
|
4683
|
-
"text": "
|
|
4684
|
-
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
4851
|
+
"kind": "Content",
|
|
4852
|
+
"text": "string"
|
|
4685
4853
|
},
|
|
4686
4854
|
{
|
|
4687
4855
|
"kind": "Content",
|
|
@@ -4689,9 +4857,9 @@
|
|
|
4689
4857
|
}
|
|
4690
4858
|
],
|
|
4691
4859
|
"isReadonly": false,
|
|
4692
|
-
"isOptional":
|
|
4860
|
+
"isOptional": false,
|
|
4693
4861
|
"releaseTag": "Public",
|
|
4694
|
-
"name": "
|
|
4862
|
+
"name": "name",
|
|
4695
4863
|
"propertyTypeTokenRange": {
|
|
4696
4864
|
"startIndex": 1,
|
|
4697
4865
|
"endIndex": 2
|
|
@@ -4699,26 +4867,113 @@
|
|
|
4699
4867
|
},
|
|
4700
4868
|
{
|
|
4701
4869
|
"kind": "PropertySignature",
|
|
4702
|
-
"canonicalReference": "@alloy-js/core!
|
|
4703
|
-
"docComment": "",
|
|
4870
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithInfo#refkey:member",
|
|
4871
|
+
"docComment": "/**\n * The unique key or array of unique keys for this declaration.\n */\n",
|
|
4704
4872
|
"excerptTokens": [
|
|
4705
4873
|
{
|
|
4706
4874
|
"kind": "Content",
|
|
4707
|
-
"text": "
|
|
4875
|
+
"text": "refkey?: "
|
|
4708
4876
|
},
|
|
4709
4877
|
{
|
|
4710
4878
|
"kind": "Reference",
|
|
4711
|
-
"text": "
|
|
4712
|
-
"canonicalReference": "@alloy-js/core!
|
|
4879
|
+
"text": "Refkey",
|
|
4880
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
4713
4881
|
},
|
|
4714
4882
|
{
|
|
4715
4883
|
"kind": "Content",
|
|
4716
|
-
"text": "
|
|
4717
|
-
}
|
|
4884
|
+
"text": " | "
|
|
4885
|
+
},
|
|
4886
|
+
{
|
|
4887
|
+
"kind": "Reference",
|
|
4888
|
+
"text": "Refkey",
|
|
4889
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
4890
|
+
},
|
|
4891
|
+
{
|
|
4892
|
+
"kind": "Content",
|
|
4893
|
+
"text": "[]"
|
|
4894
|
+
},
|
|
4895
|
+
{
|
|
4896
|
+
"kind": "Content",
|
|
4897
|
+
"text": ";"
|
|
4898
|
+
}
|
|
4899
|
+
],
|
|
4900
|
+
"isReadonly": false,
|
|
4901
|
+
"isOptional": true,
|
|
4902
|
+
"releaseTag": "Public",
|
|
4903
|
+
"name": "refkey",
|
|
4904
|
+
"propertyTypeTokenRange": {
|
|
4905
|
+
"startIndex": 1,
|
|
4906
|
+
"endIndex": 5
|
|
4907
|
+
}
|
|
4908
|
+
}
|
|
4909
|
+
],
|
|
4910
|
+
"extendsTokenRanges": []
|
|
4911
|
+
},
|
|
4912
|
+
{
|
|
4913
|
+
"kind": "Interface",
|
|
4914
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithSymbol:interface",
|
|
4915
|
+
"docComment": "/**\n * Create a declaration by providing an already created symbol. The symbol is\n * merely exposed via {@link DeclarationContext}.\n */\n",
|
|
4916
|
+
"excerptTokens": [
|
|
4917
|
+
{
|
|
4918
|
+
"kind": "Content",
|
|
4919
|
+
"text": "export interface DeclarationPropsWithSymbol "
|
|
4920
|
+
}
|
|
4921
|
+
],
|
|
4922
|
+
"fileUrlPath": "src/components/Declaration.tsx",
|
|
4923
|
+
"releaseTag": "Public",
|
|
4924
|
+
"name": "DeclarationPropsWithSymbol",
|
|
4925
|
+
"preserveMemberOrder": false,
|
|
4926
|
+
"members": [
|
|
4927
|
+
{
|
|
4928
|
+
"kind": "PropertySignature",
|
|
4929
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithSymbol#children:member",
|
|
4930
|
+
"docComment": "",
|
|
4931
|
+
"excerptTokens": [
|
|
4932
|
+
{
|
|
4933
|
+
"kind": "Content",
|
|
4934
|
+
"text": "children?: "
|
|
4935
|
+
},
|
|
4936
|
+
{
|
|
4937
|
+
"kind": "Reference",
|
|
4938
|
+
"text": "Children",
|
|
4939
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
4940
|
+
},
|
|
4941
|
+
{
|
|
4942
|
+
"kind": "Content",
|
|
4943
|
+
"text": ";"
|
|
4944
|
+
}
|
|
4718
4945
|
],
|
|
4719
4946
|
"isReadonly": false,
|
|
4720
4947
|
"isOptional": true,
|
|
4721
4948
|
"releaseTag": "Public",
|
|
4949
|
+
"name": "children",
|
|
4950
|
+
"propertyTypeTokenRange": {
|
|
4951
|
+
"startIndex": 1,
|
|
4952
|
+
"endIndex": 2
|
|
4953
|
+
}
|
|
4954
|
+
},
|
|
4955
|
+
{
|
|
4956
|
+
"kind": "PropertySignature",
|
|
4957
|
+
"canonicalReference": "@alloy-js/core!DeclarationPropsWithSymbol#symbol:member",
|
|
4958
|
+
"docComment": "/**\n * The symbol being declared. When provided, the name, refkey, and metadata\n * props are ignored.\n */\n",
|
|
4959
|
+
"excerptTokens": [
|
|
4960
|
+
{
|
|
4961
|
+
"kind": "Content",
|
|
4962
|
+
"text": "symbol: "
|
|
4963
|
+
},
|
|
4964
|
+
{
|
|
4965
|
+
"kind": "Reference",
|
|
4966
|
+
"text": "OutputSymbol",
|
|
4967
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:interface"
|
|
4968
|
+
},
|
|
4969
|
+
{
|
|
4970
|
+
"kind": "Content",
|
|
4971
|
+
"text": ";"
|
|
4972
|
+
}
|
|
4973
|
+
],
|
|
4974
|
+
"isReadonly": false,
|
|
4975
|
+
"isOptional": false,
|
|
4976
|
+
"releaseTag": "Public",
|
|
4722
4977
|
"name": "symbol",
|
|
4723
4978
|
"propertyTypeTokenRange": {
|
|
4724
4979
|
"startIndex": 1,
|
|
@@ -4790,6 +5045,93 @@
|
|
|
4790
5045
|
"endIndex": 3
|
|
4791
5046
|
}
|
|
4792
5047
|
},
|
|
5048
|
+
{
|
|
5049
|
+
"kind": "Function",
|
|
5050
|
+
"canonicalReference": "@alloy-js/core!defaultProps:function(1)",
|
|
5051
|
+
"docComment": "/**\n * Applies default values to a props object. Reactive props are handled properly\n * by ensuring that their value is not accessed by `defaultProps`, avoiding any\n * unintended side effects.\n */\n",
|
|
5052
|
+
"excerptTokens": [
|
|
5053
|
+
{
|
|
5054
|
+
"kind": "Content",
|
|
5055
|
+
"text": "export declare function defaultProps<T extends "
|
|
5056
|
+
},
|
|
5057
|
+
{
|
|
5058
|
+
"kind": "Content",
|
|
5059
|
+
"text": "{}"
|
|
5060
|
+
},
|
|
5061
|
+
{
|
|
5062
|
+
"kind": "Content",
|
|
5063
|
+
"text": ">(props: "
|
|
5064
|
+
},
|
|
5065
|
+
{
|
|
5066
|
+
"kind": "Content",
|
|
5067
|
+
"text": "T"
|
|
5068
|
+
},
|
|
5069
|
+
{
|
|
5070
|
+
"kind": "Content",
|
|
5071
|
+
"text": ", defaults: "
|
|
5072
|
+
},
|
|
5073
|
+
{
|
|
5074
|
+
"kind": "Reference",
|
|
5075
|
+
"text": "Partial",
|
|
5076
|
+
"canonicalReference": "!Partial:type"
|
|
5077
|
+
},
|
|
5078
|
+
{
|
|
5079
|
+
"kind": "Content",
|
|
5080
|
+
"text": "<T>"
|
|
5081
|
+
},
|
|
5082
|
+
{
|
|
5083
|
+
"kind": "Content",
|
|
5084
|
+
"text": "): "
|
|
5085
|
+
},
|
|
5086
|
+
{
|
|
5087
|
+
"kind": "Content",
|
|
5088
|
+
"text": "T"
|
|
5089
|
+
},
|
|
5090
|
+
{
|
|
5091
|
+
"kind": "Content",
|
|
5092
|
+
"text": ";"
|
|
5093
|
+
}
|
|
5094
|
+
],
|
|
5095
|
+
"fileUrlPath": "src/jsx-runtime.ts",
|
|
5096
|
+
"returnTypeTokenRange": {
|
|
5097
|
+
"startIndex": 8,
|
|
5098
|
+
"endIndex": 9
|
|
5099
|
+
},
|
|
5100
|
+
"releaseTag": "Public",
|
|
5101
|
+
"overloadIndex": 1,
|
|
5102
|
+
"parameters": [
|
|
5103
|
+
{
|
|
5104
|
+
"parameterName": "props",
|
|
5105
|
+
"parameterTypeTokenRange": {
|
|
5106
|
+
"startIndex": 3,
|
|
5107
|
+
"endIndex": 4
|
|
5108
|
+
},
|
|
5109
|
+
"isOptional": false
|
|
5110
|
+
},
|
|
5111
|
+
{
|
|
5112
|
+
"parameterName": "defaults",
|
|
5113
|
+
"parameterTypeTokenRange": {
|
|
5114
|
+
"startIndex": 5,
|
|
5115
|
+
"endIndex": 7
|
|
5116
|
+
},
|
|
5117
|
+
"isOptional": false
|
|
5118
|
+
}
|
|
5119
|
+
],
|
|
5120
|
+
"typeParameters": [
|
|
5121
|
+
{
|
|
5122
|
+
"typeParameterName": "T",
|
|
5123
|
+
"constraintTokenRange": {
|
|
5124
|
+
"startIndex": 1,
|
|
5125
|
+
"endIndex": 2
|
|
5126
|
+
},
|
|
5127
|
+
"defaultTypeTokenRange": {
|
|
5128
|
+
"startIndex": 0,
|
|
5129
|
+
"endIndex": 0
|
|
5130
|
+
}
|
|
5131
|
+
}
|
|
5132
|
+
],
|
|
5133
|
+
"name": "defaultProps"
|
|
5134
|
+
},
|
|
4793
5135
|
{
|
|
4794
5136
|
"kind": "Interface",
|
|
4795
5137
|
"canonicalReference": "@alloy-js/core!Disposable_2:interface",
|
|
@@ -5077,7 +5419,7 @@
|
|
|
5077
5419
|
"text": ";"
|
|
5078
5420
|
}
|
|
5079
5421
|
],
|
|
5080
|
-
"fileUrlPath": "src/utils.
|
|
5422
|
+
"fileUrlPath": "src/utils.tsx",
|
|
5081
5423
|
"returnTypeTokenRange": {
|
|
5082
5424
|
"startIndex": 6,
|
|
5083
5425
|
"endIndex": 10
|
|
@@ -5157,7 +5499,7 @@
|
|
|
5157
5499
|
"text": ";"
|
|
5158
5500
|
}
|
|
5159
5501
|
],
|
|
5160
|
-
"fileUrlPath": "src/utils.
|
|
5502
|
+
"fileUrlPath": "src/utils.tsx",
|
|
5161
5503
|
"returnTypeTokenRange": {
|
|
5162
5504
|
"startIndex": 6,
|
|
5163
5505
|
"endIndex": 10
|
|
@@ -5220,7 +5562,7 @@
|
|
|
5220
5562
|
"text": ";"
|
|
5221
5563
|
}
|
|
5222
5564
|
],
|
|
5223
|
-
"fileUrlPath": "src/utils.
|
|
5565
|
+
"fileUrlPath": "src/utils.tsx",
|
|
5224
5566
|
"returnTypeTokenRange": {
|
|
5225
5567
|
"startIndex": 4,
|
|
5226
5568
|
"endIndex": 6
|
|
@@ -5242,7 +5584,7 @@
|
|
|
5242
5584
|
{
|
|
5243
5585
|
"kind": "Function",
|
|
5244
5586
|
"canonicalReference": "@alloy-js/core!For:function(1)",
|
|
5245
|
-
"docComment": "/**\n * The For component iterates over the provided array and invokes the child callback for each item. It can optionally be provided with a `joiner` which is placed between each item, and an `ender` which is placed after the last item when there is at least one item.\n *\n * @remarks\n *\n * When the `each` prop is a reactive (e.g. a reactive array, or ref to an array), `For` will automatically update when the array changes. When doing so, it will attempt to avoid re-rendering items which have not changed. For example, when appending an item to a reactive array, existing items will not be re-rendered. Note that presently the implementation is fairly simple
|
|
5587
|
+
"docComment": "/**\n * The For component iterates over the provided array and invokes the child\n * callback for each item. It can optionally be provided with a `joiner` which\n * is placed between each item, and an `ender` which is placed after the last\n * item when there is at least one item.\n *\n * @remarks\n *\n *\n *\n * When the `each` prop is a reactive (e.g. a reactive array, or ref to an\n * array), `For` will automatically update when the array changes. When doing\n * so, it will attempt to avoid re-rendering items which have not changed. For\n * example, when appending an item to a reactive array, existing items will not\n * be re-rendered. Note that presently the implementation is fairly simple -\n * when making modifications to the middle of an array it likely that every\n * element after the modification will be rerendered.\n *\n * @example\n *\n *\n *\n * ```tsx\n * const items = [\"apple\", \"pear\", \"plum\"];\n * return <For each={items}>\n * {(item) => <>Fruit: {item}</>}\n * </For>\n * ```\n *\n * @see\n *\n * {@link (mapJoin:1)} for mapping arrays to elements outside of JSX templates.\n */\n",
|
|
5246
5588
|
"excerptTokens": [
|
|
5247
5589
|
{
|
|
5248
5590
|
"kind": "Content",
|
|
@@ -5416,6 +5758,15 @@
|
|
|
5416
5758
|
"text": "Set",
|
|
5417
5759
|
"canonicalReference": "!Set:interface"
|
|
5418
5760
|
},
|
|
5761
|
+
{
|
|
5762
|
+
"kind": "Content",
|
|
5763
|
+
"text": "<infer U> ? [value: U] : T extends "
|
|
5764
|
+
},
|
|
5765
|
+
{
|
|
5766
|
+
"kind": "Reference",
|
|
5767
|
+
"text": "IterableIterator",
|
|
5768
|
+
"canonicalReference": "!IterableIterator:interface"
|
|
5769
|
+
},
|
|
5419
5770
|
{
|
|
5420
5771
|
"kind": "Content",
|
|
5421
5772
|
"text": "<infer U> ? [value: U] : []"
|
|
@@ -5443,7 +5794,7 @@
|
|
|
5443
5794
|
],
|
|
5444
5795
|
"typeTokenRange": {
|
|
5445
5796
|
"startIndex": 1,
|
|
5446
|
-
"endIndex":
|
|
5797
|
+
"endIndex": 14
|
|
5447
5798
|
}
|
|
5448
5799
|
},
|
|
5449
5800
|
{
|
|
@@ -5605,6 +5956,33 @@
|
|
|
5605
5956
|
"startIndex": 1,
|
|
5606
5957
|
"endIndex": 2
|
|
5607
5958
|
}
|
|
5959
|
+
},
|
|
5960
|
+
{
|
|
5961
|
+
"kind": "PropertySignature",
|
|
5962
|
+
"canonicalReference": "@alloy-js/core!ForProps#skipFalsy:member",
|
|
5963
|
+
"docComment": "/**\n * Whether to skip falsy values. By default, falsy values are mapped. However,\n * when mapping children, it is useful to skip falsy values, as it enables\n * omitting list elements via patterns like `{condition && <ListItem />}`.\n */\n",
|
|
5964
|
+
"excerptTokens": [
|
|
5965
|
+
{
|
|
5966
|
+
"kind": "Content",
|
|
5967
|
+
"text": "skipFalsy?: "
|
|
5968
|
+
},
|
|
5969
|
+
{
|
|
5970
|
+
"kind": "Content",
|
|
5971
|
+
"text": "boolean"
|
|
5972
|
+
},
|
|
5973
|
+
{
|
|
5974
|
+
"kind": "Content",
|
|
5975
|
+
"text": ";"
|
|
5976
|
+
}
|
|
5977
|
+
],
|
|
5978
|
+
"isReadonly": false,
|
|
5979
|
+
"isOptional": true,
|
|
5980
|
+
"releaseTag": "Public",
|
|
5981
|
+
"name": "skipFalsy",
|
|
5982
|
+
"propertyTypeTokenRange": {
|
|
5983
|
+
"startIndex": 1,
|
|
5984
|
+
"endIndex": 2
|
|
5985
|
+
}
|
|
5608
5986
|
}
|
|
5609
5987
|
],
|
|
5610
5988
|
"extendsTokenRanges": [
|
|
@@ -5641,6 +6019,15 @@
|
|
|
5641
6019
|
"text": "Set",
|
|
5642
6020
|
"canonicalReference": "!Set:interface"
|
|
5643
6021
|
},
|
|
6022
|
+
{
|
|
6023
|
+
"kind": "Content",
|
|
6024
|
+
"text": "<any> | "
|
|
6025
|
+
},
|
|
6026
|
+
{
|
|
6027
|
+
"kind": "Reference",
|
|
6028
|
+
"text": "IterableIterator",
|
|
6029
|
+
"canonicalReference": "!IterableIterator:interface"
|
|
6030
|
+
},
|
|
5644
6031
|
{
|
|
5645
6032
|
"kind": "Content",
|
|
5646
6033
|
"text": "<any>"
|
|
@@ -5655,13 +6042,13 @@
|
|
|
5655
6042
|
"name": "ForSupportedCollections",
|
|
5656
6043
|
"typeTokenRange": {
|
|
5657
6044
|
"startIndex": 1,
|
|
5658
|
-
"endIndex":
|
|
6045
|
+
"endIndex": 8
|
|
5659
6046
|
}
|
|
5660
6047
|
},
|
|
5661
6048
|
{
|
|
5662
6049
|
"kind": "Function",
|
|
5663
6050
|
"canonicalReference": "@alloy-js/core!getAssignmentSymbol:function(1)",
|
|
5664
|
-
"docComment": "",
|
|
6051
|
+
"docComment": "/**\n * Get the symbol being defined.\n *\n * @returns The symbol currently being defined, or `undefined` if no symbol is\n * being defined.\n */\n",
|
|
5665
6052
|
"excerptTokens": [
|
|
5666
6053
|
{
|
|
5667
6054
|
"kind": "Content",
|
|
@@ -5929,119 +6316,45 @@
|
|
|
5929
6316
|
}
|
|
5930
6317
|
},
|
|
5931
6318
|
{
|
|
5932
|
-
"kind": "
|
|
5933
|
-
"canonicalReference": "@alloy-js/core!
|
|
6319
|
+
"kind": "TypeAlias",
|
|
6320
|
+
"canonicalReference": "@alloy-js/core!HardlineIntrinsicElement:type",
|
|
5934
6321
|
"docComment": "",
|
|
5935
6322
|
"excerptTokens": [
|
|
5936
6323
|
{
|
|
5937
6324
|
"kind": "Content",
|
|
5938
|
-
"text": "export
|
|
6325
|
+
"text": "export type HardlineIntrinsicElement = "
|
|
6326
|
+
},
|
|
6327
|
+
{
|
|
6328
|
+
"kind": "Reference",
|
|
6329
|
+
"text": "IntrinsicElementBase",
|
|
6330
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"kind": "Content",
|
|
6334
|
+
"text": "<\"hardline\">"
|
|
6335
|
+
},
|
|
6336
|
+
{
|
|
6337
|
+
"kind": "Content",
|
|
6338
|
+
"text": ";"
|
|
5939
6339
|
}
|
|
5940
6340
|
],
|
|
5941
|
-
"fileUrlPath": "src/
|
|
6341
|
+
"fileUrlPath": "src/jsx-runtime.ts",
|
|
5942
6342
|
"releaseTag": "Public",
|
|
5943
|
-
"
|
|
6343
|
+
"name": "HardlineIntrinsicElement",
|
|
6344
|
+
"typeTokenRange": {
|
|
6345
|
+
"startIndex": 1,
|
|
6346
|
+
"endIndex": 3
|
|
6347
|
+
}
|
|
6348
|
+
},
|
|
6349
|
+
{
|
|
6350
|
+
"kind": "TypeAlias",
|
|
6351
|
+
"canonicalReference": "@alloy-js/core!HbrIntrinsicElement:type",
|
|
6352
|
+
"docComment": "",
|
|
6353
|
+
"excerptTokens": [
|
|
5944
6354
|
{
|
|
5945
|
-
"
|
|
5946
|
-
"
|
|
5947
|
-
|
|
5948
|
-
"endIndex": 0
|
|
5949
|
-
},
|
|
5950
|
-
"defaultTypeTokenRange": {
|
|
5951
|
-
"startIndex": 0,
|
|
5952
|
-
"endIndex": 0
|
|
5953
|
-
}
|
|
5954
|
-
}
|
|
5955
|
-
],
|
|
5956
|
-
"name": "Handler",
|
|
5957
|
-
"preserveMemberOrder": false,
|
|
5958
|
-
"members": [
|
|
5959
|
-
{
|
|
5960
|
-
"kind": "CallSignature",
|
|
5961
|
-
"canonicalReference": "@alloy-js/core!Handler:call(1)",
|
|
5962
|
-
"docComment": "",
|
|
5963
|
-
"excerptTokens": [
|
|
5964
|
-
{
|
|
5965
|
-
"kind": "Content",
|
|
5966
|
-
"text": "(value: "
|
|
5967
|
-
},
|
|
5968
|
-
{
|
|
5969
|
-
"kind": "Content",
|
|
5970
|
-
"text": "T"
|
|
5971
|
-
},
|
|
5972
|
-
{
|
|
5973
|
-
"kind": "Content",
|
|
5974
|
-
"text": "): "
|
|
5975
|
-
},
|
|
5976
|
-
{
|
|
5977
|
-
"kind": "Content",
|
|
5978
|
-
"text": "void"
|
|
5979
|
-
},
|
|
5980
|
-
{
|
|
5981
|
-
"kind": "Content",
|
|
5982
|
-
"text": ";"
|
|
5983
|
-
}
|
|
5984
|
-
],
|
|
5985
|
-
"returnTypeTokenRange": {
|
|
5986
|
-
"startIndex": 3,
|
|
5987
|
-
"endIndex": 4
|
|
5988
|
-
},
|
|
5989
|
-
"releaseTag": "Public",
|
|
5990
|
-
"overloadIndex": 1,
|
|
5991
|
-
"parameters": [
|
|
5992
|
-
{
|
|
5993
|
-
"parameterName": "value",
|
|
5994
|
-
"parameterTypeTokenRange": {
|
|
5995
|
-
"startIndex": 1,
|
|
5996
|
-
"endIndex": 2
|
|
5997
|
-
},
|
|
5998
|
-
"isOptional": false
|
|
5999
|
-
}
|
|
6000
|
-
]
|
|
6001
|
-
}
|
|
6002
|
-
],
|
|
6003
|
-
"extendsTokenRanges": []
|
|
6004
|
-
},
|
|
6005
|
-
{
|
|
6006
|
-
"kind": "TypeAlias",
|
|
6007
|
-
"canonicalReference": "@alloy-js/core!HardlineIntrinsicElement:type",
|
|
6008
|
-
"docComment": "",
|
|
6009
|
-
"excerptTokens": [
|
|
6010
|
-
{
|
|
6011
|
-
"kind": "Content",
|
|
6012
|
-
"text": "export type HardlineIntrinsicElement = "
|
|
6013
|
-
},
|
|
6014
|
-
{
|
|
6015
|
-
"kind": "Reference",
|
|
6016
|
-
"text": "IntrinsicElementBase",
|
|
6017
|
-
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
6018
|
-
},
|
|
6019
|
-
{
|
|
6020
|
-
"kind": "Content",
|
|
6021
|
-
"text": "<\"hardline\">"
|
|
6022
|
-
},
|
|
6023
|
-
{
|
|
6024
|
-
"kind": "Content",
|
|
6025
|
-
"text": ";"
|
|
6026
|
-
}
|
|
6027
|
-
],
|
|
6028
|
-
"fileUrlPath": "src/jsx-runtime.ts",
|
|
6029
|
-
"releaseTag": "Public",
|
|
6030
|
-
"name": "HardlineIntrinsicElement",
|
|
6031
|
-
"typeTokenRange": {
|
|
6032
|
-
"startIndex": 1,
|
|
6033
|
-
"endIndex": 3
|
|
6034
|
-
}
|
|
6035
|
-
},
|
|
6036
|
-
{
|
|
6037
|
-
"kind": "TypeAlias",
|
|
6038
|
-
"canonicalReference": "@alloy-js/core!HbrIntrinsicElement:type",
|
|
6039
|
-
"docComment": "",
|
|
6040
|
-
"excerptTokens": [
|
|
6041
|
-
{
|
|
6042
|
-
"kind": "Content",
|
|
6043
|
-
"text": "export type HbrIntrinsicElement = "
|
|
6044
|
-
},
|
|
6355
|
+
"kind": "Content",
|
|
6356
|
+
"text": "export type HbrIntrinsicElement = "
|
|
6357
|
+
},
|
|
6045
6358
|
{
|
|
6046
6359
|
"kind": "Reference",
|
|
6047
6360
|
"text": "IntrinsicElementBase",
|
|
@@ -6098,7 +6411,7 @@
|
|
|
6098
6411
|
{
|
|
6099
6412
|
"kind": "Function",
|
|
6100
6413
|
"canonicalReference": "@alloy-js/core!Indent:function(1)",
|
|
6101
|
-
"docComment": "",
|
|
6414
|
+
"docComment": "/**\n * Create an indented block of source text. The indented block starts a new line\n * at the new indentation level and, with `trailingBreak`, ends with a new line\n * after restoring the indentation level. The default line break is a hard line\n * break suitable for typical blocks of statements but can be configured.\n */\n",
|
|
6102
6415
|
"excerptTokens": [
|
|
6103
6416
|
{
|
|
6104
6417
|
"kind": "Content",
|
|
@@ -6221,16 +6534,44 @@
|
|
|
6221
6534
|
"members": [
|
|
6222
6535
|
{
|
|
6223
6536
|
"kind": "PropertySignature",
|
|
6224
|
-
"canonicalReference": "@alloy-js/core!IndentProps#
|
|
6537
|
+
"canonicalReference": "@alloy-js/core!IndentProps#children:member",
|
|
6225
6538
|
"docComment": "",
|
|
6226
6539
|
"excerptTokens": [
|
|
6227
6540
|
{
|
|
6228
6541
|
"kind": "Content",
|
|
6229
|
-
"text": "
|
|
6542
|
+
"text": "children: "
|
|
6543
|
+
},
|
|
6544
|
+
{
|
|
6545
|
+
"kind": "Reference",
|
|
6546
|
+
"text": "Children",
|
|
6547
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
6548
|
+
},
|
|
6549
|
+
{
|
|
6550
|
+
"kind": "Content",
|
|
6551
|
+
"text": ";"
|
|
6552
|
+
}
|
|
6553
|
+
],
|
|
6554
|
+
"isReadonly": false,
|
|
6555
|
+
"isOptional": false,
|
|
6556
|
+
"releaseTag": "Public",
|
|
6557
|
+
"name": "children",
|
|
6558
|
+
"propertyTypeTokenRange": {
|
|
6559
|
+
"startIndex": 1,
|
|
6560
|
+
"endIndex": 2
|
|
6561
|
+
}
|
|
6562
|
+
},
|
|
6563
|
+
{
|
|
6564
|
+
"kind": "PropertySignature",
|
|
6565
|
+
"canonicalReference": "@alloy-js/core!IndentProps#hardline:member",
|
|
6566
|
+
"docComment": "/**\n * Use a hard line (`<hbr />`) to start (and optionally end with\n * `trailingBreak`) the new indentation level.\n */\n",
|
|
6567
|
+
"excerptTokens": [
|
|
6568
|
+
{
|
|
6569
|
+
"kind": "Content",
|
|
6570
|
+
"text": "hardline?: "
|
|
6230
6571
|
},
|
|
6231
6572
|
{
|
|
6232
6573
|
"kind": "Content",
|
|
6233
|
-
"text": "
|
|
6574
|
+
"text": "boolean"
|
|
6234
6575
|
},
|
|
6235
6576
|
{
|
|
6236
6577
|
"kind": "Content",
|
|
@@ -6240,7 +6581,7 @@
|
|
|
6240
6581
|
"isReadonly": false,
|
|
6241
6582
|
"isOptional": true,
|
|
6242
6583
|
"releaseTag": "Public",
|
|
6243
|
-
"name": "
|
|
6584
|
+
"name": "hardline",
|
|
6244
6585
|
"propertyTypeTokenRange": {
|
|
6245
6586
|
"startIndex": 1,
|
|
6246
6587
|
"endIndex": 2
|
|
@@ -6248,17 +6589,16 @@
|
|
|
6248
6589
|
},
|
|
6249
6590
|
{
|
|
6250
6591
|
"kind": "PropertySignature",
|
|
6251
|
-
"canonicalReference": "@alloy-js/core!IndentProps#
|
|
6252
|
-
"docComment": "",
|
|
6592
|
+
"canonicalReference": "@alloy-js/core!IndentProps#line:member",
|
|
6593
|
+
"docComment": "/**\n * Use a regular line (`<br />`) to start (and optionally end with\n * `trailingBreak`) the new indentation level.\n */\n",
|
|
6253
6594
|
"excerptTokens": [
|
|
6254
6595
|
{
|
|
6255
6596
|
"kind": "Content",
|
|
6256
|
-
"text": "
|
|
6597
|
+
"text": "line?: "
|
|
6257
6598
|
},
|
|
6258
6599
|
{
|
|
6259
|
-
"kind": "
|
|
6260
|
-
"text": "
|
|
6261
|
-
"canonicalReference": "@alloy-js/core!Children:type"
|
|
6600
|
+
"kind": "Content",
|
|
6601
|
+
"text": "boolean"
|
|
6262
6602
|
},
|
|
6263
6603
|
{
|
|
6264
6604
|
"kind": "Content",
|
|
@@ -6266,9 +6606,9 @@
|
|
|
6266
6606
|
}
|
|
6267
6607
|
],
|
|
6268
6608
|
"isReadonly": false,
|
|
6269
|
-
"isOptional":
|
|
6609
|
+
"isOptional": true,
|
|
6270
6610
|
"releaseTag": "Public",
|
|
6271
|
-
"name": "
|
|
6611
|
+
"name": "line",
|
|
6272
6612
|
"propertyTypeTokenRange": {
|
|
6273
6613
|
"startIndex": 1,
|
|
6274
6614
|
"endIndex": 2
|
|
@@ -6277,7 +6617,7 @@
|
|
|
6277
6617
|
{
|
|
6278
6618
|
"kind": "PropertySignature",
|
|
6279
6619
|
"canonicalReference": "@alloy-js/core!IndentProps#nobreak:member",
|
|
6280
|
-
"docComment": "",
|
|
6620
|
+
"docComment": "/**\n * Don't include a line break. The new indentation level will start after the\n * first linebreak within the children.\n */\n",
|
|
6281
6621
|
"excerptTokens": [
|
|
6282
6622
|
{
|
|
6283
6623
|
"kind": "Content",
|
|
@@ -6301,10 +6641,37 @@
|
|
|
6301
6641
|
"endIndex": 2
|
|
6302
6642
|
}
|
|
6303
6643
|
},
|
|
6644
|
+
{
|
|
6645
|
+
"kind": "PropertySignature",
|
|
6646
|
+
"canonicalReference": "@alloy-js/core!IndentProps#softline:member",
|
|
6647
|
+
"docComment": "/**\n * Use a soft line (`<sbr />`) to start (and optionally end with\n * `trailingBreak`) the new indentation level.\n */\n",
|
|
6648
|
+
"excerptTokens": [
|
|
6649
|
+
{
|
|
6650
|
+
"kind": "Content",
|
|
6651
|
+
"text": "softline?: "
|
|
6652
|
+
},
|
|
6653
|
+
{
|
|
6654
|
+
"kind": "Content",
|
|
6655
|
+
"text": "boolean"
|
|
6656
|
+
},
|
|
6657
|
+
{
|
|
6658
|
+
"kind": "Content",
|
|
6659
|
+
"text": ";"
|
|
6660
|
+
}
|
|
6661
|
+
],
|
|
6662
|
+
"isReadonly": false,
|
|
6663
|
+
"isOptional": true,
|
|
6664
|
+
"releaseTag": "Public",
|
|
6665
|
+
"name": "softline",
|
|
6666
|
+
"propertyTypeTokenRange": {
|
|
6667
|
+
"startIndex": 1,
|
|
6668
|
+
"endIndex": 2
|
|
6669
|
+
}
|
|
6670
|
+
},
|
|
6304
6671
|
{
|
|
6305
6672
|
"kind": "PropertySignature",
|
|
6306
6673
|
"canonicalReference": "@alloy-js/core!IndentProps#trailingBreak:member",
|
|
6307
|
-
"docComment": "",
|
|
6674
|
+
"docComment": "/**\n * Place the configured line break at the end of the block after restoring the\n * indentation level.\n */\n",
|
|
6308
6675
|
"excerptTokens": [
|
|
6309
6676
|
{
|
|
6310
6677
|
"kind": "Content",
|
|
@@ -6711,12 +7078,33 @@
|
|
|
6711
7078
|
"excerptTokens": [
|
|
6712
7079
|
{
|
|
6713
7080
|
"kind": "Content",
|
|
6714
|
-
"text": "export declare function isComponentCreator
|
|
7081
|
+
"text": "export declare function isComponentCreator<TProps = "
|
|
7082
|
+
},
|
|
7083
|
+
{
|
|
7084
|
+
"kind": "Content",
|
|
7085
|
+
"text": "any"
|
|
7086
|
+
},
|
|
7087
|
+
{
|
|
7088
|
+
"kind": "Content",
|
|
7089
|
+
"text": ">(item: "
|
|
6715
7090
|
},
|
|
6716
7091
|
{
|
|
6717
7092
|
"kind": "Content",
|
|
6718
7093
|
"text": "unknown"
|
|
6719
7094
|
},
|
|
7095
|
+
{
|
|
7096
|
+
"kind": "Content",
|
|
7097
|
+
"text": ", component?: "
|
|
7098
|
+
},
|
|
7099
|
+
{
|
|
7100
|
+
"kind": "Reference",
|
|
7101
|
+
"text": "Component",
|
|
7102
|
+
"canonicalReference": "@alloy-js/core!Component:interface"
|
|
7103
|
+
},
|
|
7104
|
+
{
|
|
7105
|
+
"kind": "Content",
|
|
7106
|
+
"text": "<TProps>"
|
|
7107
|
+
},
|
|
6720
7108
|
{
|
|
6721
7109
|
"kind": "Content",
|
|
6722
7110
|
"text": "): "
|
|
@@ -6735,6 +7123,10 @@
|
|
|
6735
7123
|
"text": "ComponentCreator",
|
|
6736
7124
|
"canonicalReference": "@alloy-js/core!ComponentCreator:interface"
|
|
6737
7125
|
},
|
|
7126
|
+
{
|
|
7127
|
+
"kind": "Content",
|
|
7128
|
+
"text": "<TProps>"
|
|
7129
|
+
},
|
|
6738
7130
|
{
|
|
6739
7131
|
"kind": "Content",
|
|
6740
7132
|
"text": ";"
|
|
@@ -6742,8 +7134,8 @@
|
|
|
6742
7134
|
],
|
|
6743
7135
|
"fileUrlPath": "src/jsx-runtime.ts",
|
|
6744
7136
|
"returnTypeTokenRange": {
|
|
6745
|
-
"startIndex":
|
|
6746
|
-
"endIndex":
|
|
7137
|
+
"startIndex": 8,
|
|
7138
|
+
"endIndex": 12
|
|
6747
7139
|
},
|
|
6748
7140
|
"releaseTag": "Public",
|
|
6749
7141
|
"overloadIndex": 1,
|
|
@@ -6751,10 +7143,31 @@
|
|
|
6751
7143
|
{
|
|
6752
7144
|
"parameterName": "item",
|
|
6753
7145
|
"parameterTypeTokenRange": {
|
|
6754
|
-
"startIndex":
|
|
6755
|
-
"endIndex":
|
|
7146
|
+
"startIndex": 3,
|
|
7147
|
+
"endIndex": 4
|
|
6756
7148
|
},
|
|
6757
7149
|
"isOptional": false
|
|
7150
|
+
},
|
|
7151
|
+
{
|
|
7152
|
+
"parameterName": "component",
|
|
7153
|
+
"parameterTypeTokenRange": {
|
|
7154
|
+
"startIndex": 5,
|
|
7155
|
+
"endIndex": 7
|
|
7156
|
+
},
|
|
7157
|
+
"isOptional": true
|
|
7158
|
+
}
|
|
7159
|
+
],
|
|
7160
|
+
"typeParameters": [
|
|
7161
|
+
{
|
|
7162
|
+
"typeParameterName": "TProps",
|
|
7163
|
+
"constraintTokenRange": {
|
|
7164
|
+
"startIndex": 0,
|
|
7165
|
+
"endIndex": 0
|
|
7166
|
+
},
|
|
7167
|
+
"defaultTypeTokenRange": {
|
|
7168
|
+
"startIndex": 1,
|
|
7169
|
+
"endIndex": 2
|
|
7170
|
+
}
|
|
6758
7171
|
}
|
|
6759
7172
|
],
|
|
6760
7173
|
"name": "isComponentCreator"
|
|
@@ -6907,7 +7320,7 @@
|
|
|
6907
7320
|
"text": ";"
|
|
6908
7321
|
}
|
|
6909
7322
|
],
|
|
6910
|
-
"fileUrlPath": "src/utils.
|
|
7323
|
+
"fileUrlPath": "src/utils.tsx",
|
|
6911
7324
|
"returnTypeTokenRange": {
|
|
6912
7325
|
"startIndex": 3,
|
|
6913
7326
|
"endIndex": 6
|
|
@@ -7039,7 +7452,7 @@
|
|
|
7039
7452
|
{
|
|
7040
7453
|
"kind": "Function",
|
|
7041
7454
|
"canonicalReference": "@alloy-js/core!join:function(1)",
|
|
7042
|
-
"docComment": "/**\n * Place a joiner between each element of an array or iterator. Defaults to joining with a newline.\n *\n * @returns
|
|
7455
|
+
"docComment": "/**\n * Place a joiner between each element of an array or iterator. Defaults to\n * joining with a newline.\n *\n * @returns The joined array\n *\n * @see\n *\n * mapJoin for mapping before joining.\n */\n",
|
|
7043
7456
|
"excerptTokens": [
|
|
7044
7457
|
{
|
|
7045
7458
|
"kind": "Content",
|
|
@@ -7090,7 +7503,7 @@
|
|
|
7090
7503
|
"text": ";"
|
|
7091
7504
|
}
|
|
7092
7505
|
],
|
|
7093
|
-
"fileUrlPath": "src/utils.
|
|
7506
|
+
"fileUrlPath": "src/utils.tsx",
|
|
7094
7507
|
"returnTypeTokenRange": {
|
|
7095
7508
|
"startIndex": 9,
|
|
7096
7509
|
"endIndex": 10
|
|
@@ -7140,7 +7553,7 @@
|
|
|
7140
7553
|
"text": "export interface JoinOptions "
|
|
7141
7554
|
}
|
|
7142
7555
|
],
|
|
7143
|
-
"fileUrlPath": "src/utils.
|
|
7556
|
+
"fileUrlPath": "src/utils.tsx",
|
|
7144
7557
|
"releaseTag": "Public",
|
|
7145
7558
|
"name": "JoinOptions",
|
|
7146
7559
|
"preserveMemberOrder": false,
|
|
@@ -7148,7 +7561,7 @@
|
|
|
7148
7561
|
{
|
|
7149
7562
|
"kind": "PropertySignature",
|
|
7150
7563
|
"canonicalReference": "@alloy-js/core!JoinOptions#ender:member",
|
|
7151
|
-
"docComment": "/**\n * When true, the joiner is placed at the end of the array. When a string
|
|
7564
|
+
"docComment": "/**\n * When true, the joiner is placed at the end of the array. When a string,\n * that string is placed at the end of the array. The ender is only emitted\n * when the array has at least one element.\n */\n",
|
|
7152
7565
|
"excerptTokens": [
|
|
7153
7566
|
{
|
|
7154
7567
|
"kind": "Content",
|
|
@@ -7319,7 +7732,7 @@
|
|
|
7319
7732
|
{
|
|
7320
7733
|
"kind": "Namespace",
|
|
7321
7734
|
"canonicalReference": "@alloy-js/core!JSX:namespace",
|
|
7322
|
-
"docComment": "/**\n * This namespace is predominantly for interop with React tooling in VSCode and controls the type of JSX elements, components, and the like.\n */\n",
|
|
7735
|
+
"docComment": "/**\n * This namespace is predominantly for interop with React tooling in VSCode\n * and controls the type of JSX elements, components, and the like.\n */\n",
|
|
7323
7736
|
"excerptTokens": [
|
|
7324
7737
|
{
|
|
7325
7738
|
"kind": "Content",
|
|
@@ -7496,7 +7909,7 @@
|
|
|
7496
7909
|
{
|
|
7497
7910
|
"kind": "PropertySignature",
|
|
7498
7911
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#align:member",
|
|
7499
|
-
"docComment": "",
|
|
7912
|
+
"docComment": "/**\n * Indent the children of this component by either the number of characters\n * indicated by the `width` prop, or by the provided string indicated by the\n * `string` prop.\n */\n",
|
|
7500
7913
|
"excerptTokens": [
|
|
7501
7914
|
{
|
|
7502
7915
|
"kind": "Content",
|
|
@@ -7541,7 +7954,7 @@
|
|
|
7541
7954
|
{
|
|
7542
7955
|
"kind": "PropertySignature",
|
|
7543
7956
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#br:member",
|
|
7544
|
-
"docComment": "",
|
|
7957
|
+
"docComment": "/**\n * A regular line break. This will break if the line exceeds the print\n * width, otherwise it will be a space.\n */\n",
|
|
7545
7958
|
"excerptTokens": [
|
|
7546
7959
|
{
|
|
7547
7960
|
"kind": "Content",
|
|
@@ -7568,7 +7981,7 @@
|
|
|
7568
7981
|
{
|
|
7569
7982
|
"kind": "PropertySignature",
|
|
7570
7983
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#breakParent:member",
|
|
7571
|
-
"docComment": "",
|
|
7984
|
+
"docComment": "/**\n * Force the parent group to break.\n */\n",
|
|
7572
7985
|
"excerptTokens": [
|
|
7573
7986
|
{
|
|
7574
7987
|
"kind": "Content",
|
|
@@ -7595,7 +8008,7 @@
|
|
|
7595
8008
|
{
|
|
7596
8009
|
"kind": "PropertySignature",
|
|
7597
8010
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#dedent:member",
|
|
7598
|
-
"docComment": "",
|
|
8011
|
+
"docComment": "/**\n * Decrease the indentation level of the children of this component.\n * Indentation is determined by the print options provided to the Output\n * component or source file.\n */\n",
|
|
7599
8012
|
"excerptTokens": [
|
|
7600
8013
|
{
|
|
7601
8014
|
"kind": "Content",
|
|
@@ -7631,7 +8044,7 @@
|
|
|
7631
8044
|
{
|
|
7632
8045
|
"kind": "PropertySignature",
|
|
7633
8046
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#dedentToRoot:member",
|
|
7634
|
-
"docComment": "",
|
|
8047
|
+
"docComment": "/**\n * Decrease the indentation level to the root level specified by\n * `<markAsRoot />`, or else to no indentation.\n */\n",
|
|
7635
8048
|
"excerptTokens": [
|
|
7636
8049
|
{
|
|
7637
8050
|
"kind": "Content",
|
|
@@ -7667,7 +8080,7 @@
|
|
|
7667
8080
|
{
|
|
7668
8081
|
"kind": "PropertySignature",
|
|
7669
8082
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#fill:member",
|
|
7670
|
-
"docComment": "",
|
|
8083
|
+
"docComment": "/**\n * Similar to `group`, but will only place a line break before the last\n * segment to exceed the print width. This is useful for formatting\n * paragraphs of text where breaks are inserted prior to words which would\n * otherwise exceed the print width.\n */\n",
|
|
7671
8084
|
"excerptTokens": [
|
|
7672
8085
|
{
|
|
7673
8086
|
"kind": "Content",
|
|
@@ -7703,7 +8116,7 @@
|
|
|
7703
8116
|
{
|
|
7704
8117
|
"kind": "PropertySignature",
|
|
7705
8118
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#group:member",
|
|
7706
|
-
"docComment": "",
|
|
8119
|
+
"docComment": "/**\n * Attempt to render the children on a single line if possible. If a group\n * contains `<breakParent />` or a hard line, or if the group exceeds the\n * print width, all linebreaks in the group will be broken.\n */\n",
|
|
7707
8120
|
"excerptTokens": [
|
|
7708
8121
|
{
|
|
7709
8122
|
"kind": "Content",
|
|
@@ -7739,7 +8152,7 @@
|
|
|
7739
8152
|
{
|
|
7740
8153
|
"kind": "PropertySignature",
|
|
7741
8154
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#hardline:member",
|
|
7742
|
-
"docComment": "",
|
|
8155
|
+
"docComment": "/**\n * A hard line break. This is a line that will always break, even if the\n * group does not exceed print width.\n */\n",
|
|
7743
8156
|
"excerptTokens": [
|
|
7744
8157
|
{
|
|
7745
8158
|
"kind": "Content",
|
|
@@ -7766,7 +8179,7 @@
|
|
|
7766
8179
|
{
|
|
7767
8180
|
"kind": "PropertySignature",
|
|
7768
8181
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#hbr:member",
|
|
7769
|
-
"docComment": "",
|
|
8182
|
+
"docComment": "/**\n * A hard line break. This is a line that will always break, even if the\n * group does not exceed print width.\n */\n",
|
|
7770
8183
|
"excerptTokens": [
|
|
7771
8184
|
{
|
|
7772
8185
|
"kind": "Content",
|
|
@@ -7793,7 +8206,7 @@
|
|
|
7793
8206
|
{
|
|
7794
8207
|
"kind": "PropertySignature",
|
|
7795
8208
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#ifBreak:member",
|
|
7796
|
-
"docComment": "",
|
|
8209
|
+
"docComment": "/**\n * Print children if the current group or already printed group specified by\n * `groupId` is broken. Otherwise, `flatContents` is printed instead.\n */\n",
|
|
7797
8210
|
"excerptTokens": [
|
|
7798
8211
|
{
|
|
7799
8212
|
"kind": "Content",
|
|
@@ -7838,7 +8251,7 @@
|
|
|
7838
8251
|
{
|
|
7839
8252
|
"kind": "PropertySignature",
|
|
7840
8253
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#indent:member",
|
|
7841
|
-
"docComment": "",
|
|
8254
|
+
"docComment": "/**\n * Increase the indentation level of the children of this component.\n * Indentation is determined by the print options provided to the Output\n * component or source file.\n */\n",
|
|
7842
8255
|
"excerptTokens": [
|
|
7843
8256
|
{
|
|
7844
8257
|
"kind": "Content",
|
|
@@ -7874,7 +8287,7 @@
|
|
|
7874
8287
|
{
|
|
7875
8288
|
"kind": "PropertySignature",
|
|
7876
8289
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#indentIfBreak:member",
|
|
7877
|
-
"docComment": "",
|
|
8290
|
+
"docComment": "/**\n * Indent the children of this component if the group specified by `groupId`\n * is broken (or not broken if `negate` is passed). The specified group must\n * already be printed.\n */\n",
|
|
7878
8291
|
"excerptTokens": [
|
|
7879
8292
|
{
|
|
7880
8293
|
"kind": "Content",
|
|
@@ -7910,7 +8323,7 @@
|
|
|
7910
8323
|
{
|
|
7911
8324
|
"kind": "PropertySignature",
|
|
7912
8325
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#lbr:member",
|
|
7913
|
-
"docComment": "",
|
|
8326
|
+
"docComment": "/**\n * A literal line break. This will always break, even if the group does not\n * exceed print width. The new line will ignore indentation.\n */\n",
|
|
7914
8327
|
"excerptTokens": [
|
|
7915
8328
|
{
|
|
7916
8329
|
"kind": "Content",
|
|
@@ -7937,7 +8350,7 @@
|
|
|
7937
8350
|
{
|
|
7938
8351
|
"kind": "PropertySignature",
|
|
7939
8352
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#line:member",
|
|
7940
|
-
"docComment": "",
|
|
8353
|
+
"docComment": "/**\n * A regular line break. This will break if the line exceeds the print\n * width, otherwise it will be a space.\n */\n",
|
|
7941
8354
|
"excerptTokens": [
|
|
7942
8355
|
{
|
|
7943
8356
|
"kind": "Content",
|
|
@@ -7964,7 +8377,7 @@
|
|
|
7964
8377
|
{
|
|
7965
8378
|
"kind": "PropertySignature",
|
|
7966
8379
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#lineSuffix:member",
|
|
7967
|
-
"docComment": "",
|
|
8380
|
+
"docComment": "/**\n * Print this content at the end of the line. Useful for things like line\n * comments.\n */\n",
|
|
7968
8381
|
"excerptTokens": [
|
|
7969
8382
|
{
|
|
7970
8383
|
"kind": "Content",
|
|
@@ -8000,7 +8413,7 @@
|
|
|
8000
8413
|
{
|
|
8001
8414
|
"kind": "PropertySignature",
|
|
8002
8415
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#lineSuffixBoundary:member",
|
|
8003
|
-
"docComment": "",
|
|
8416
|
+
"docComment": "/**\n * Force any line suffixes to print at this point.\n */\n",
|
|
8004
8417
|
"excerptTokens": [
|
|
8005
8418
|
{
|
|
8006
8419
|
"kind": "Content",
|
|
@@ -8027,7 +8440,7 @@
|
|
|
8027
8440
|
{
|
|
8028
8441
|
"kind": "PropertySignature",
|
|
8029
8442
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#literalline:member",
|
|
8030
|
-
"docComment": "",
|
|
8443
|
+
"docComment": "/**\n * A literal line break. This will always break, even if the group does not\n * exceed print width. The new line will ignore indentation.\n */\n",
|
|
8031
8444
|
"excerptTokens": [
|
|
8032
8445
|
{
|
|
8033
8446
|
"kind": "Content",
|
|
@@ -8054,7 +8467,7 @@
|
|
|
8054
8467
|
{
|
|
8055
8468
|
"kind": "PropertySignature",
|
|
8056
8469
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#markAsRoot:member",
|
|
8057
|
-
"docComment": "",
|
|
8470
|
+
"docComment": "/**\n * Mark the current indentation level as \"root\" for the purposes of literal\n * line breaks and `dedentToRoot`.\n */\n",
|
|
8058
8471
|
"excerptTokens": [
|
|
8059
8472
|
{
|
|
8060
8473
|
"kind": "Content",
|
|
@@ -8090,7 +8503,7 @@
|
|
|
8090
8503
|
{
|
|
8091
8504
|
"kind": "PropertySignature",
|
|
8092
8505
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#sbr:member",
|
|
8093
|
-
"docComment": "",
|
|
8506
|
+
"docComment": "/**\n * A soft line break. This will break if the line exceeds the print width,\n * otherwise it will be be nothing.\n */\n",
|
|
8094
8507
|
"excerptTokens": [
|
|
8095
8508
|
{
|
|
8096
8509
|
"kind": "Content",
|
|
@@ -8117,7 +8530,7 @@
|
|
|
8117
8530
|
{
|
|
8118
8531
|
"kind": "PropertySignature",
|
|
8119
8532
|
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements#softline:member",
|
|
8120
|
-
"docComment": "",
|
|
8533
|
+
"docComment": "/**\n * A soft line break. This will break if the line exceeds the print width,\n * otherwise it will be be nothing.\n */\n",
|
|
8121
8534
|
"excerptTokens": [
|
|
8122
8535
|
{
|
|
8123
8536
|
"kind": "Content",
|
|
@@ -8301,7 +8714,7 @@
|
|
|
8301
8714
|
{
|
|
8302
8715
|
"kind": "Function",
|
|
8303
8716
|
"canonicalReference": "@alloy-js/core!List:function(1)",
|
|
8304
|
-
"docComment": "/**\n * Create a list of children with text between each child. The text to join with is specified by providing either `joiner` children, or providing boolean props for the punctuation and line breaks. The default joiner is no punctuation and a hard break. The `ender` prop can provide text to place at the end of the list when there is at least one child.\n */\n",
|
|
8717
|
+
"docComment": "/**\n * Create a list of children with text between each child. The text to join with\n * is specified by providing either `joiner` children, or providing boolean\n * props for the punctuation and line breaks. The default joiner is no\n * punctuation and a hard break. The `ender` prop can provide text to place at\n * the end of the list when there is at least one child.\n */\n",
|
|
8305
8718
|
"excerptTokens": [
|
|
8306
8719
|
{
|
|
8307
8720
|
"kind": "Content",
|
|
@@ -8513,7 +8926,7 @@
|
|
|
8513
8926
|
{
|
|
8514
8927
|
"kind": "Function",
|
|
8515
8928
|
"canonicalReference": "@alloy-js/core!mapJoin:function(1)",
|
|
8516
|
-
"docComment": "/**\n * Map a Map to an array using a mapper and place a joiner between each element
|
|
8929
|
+
"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",
|
|
8517
8930
|
"excerptTokens": [
|
|
8518
8931
|
{
|
|
8519
8932
|
"kind": "Content",
|
|
@@ -8571,7 +8984,7 @@
|
|
|
8571
8984
|
"text": ";"
|
|
8572
8985
|
}
|
|
8573
8986
|
],
|
|
8574
|
-
"fileUrlPath": "src/utils.
|
|
8987
|
+
"fileUrlPath": "src/utils.tsx",
|
|
8575
8988
|
"returnTypeTokenRange": {
|
|
8576
8989
|
"startIndex": 9,
|
|
8577
8990
|
"endIndex": 12
|
|
@@ -8644,7 +9057,7 @@
|
|
|
8644
9057
|
{
|
|
8645
9058
|
"kind": "Function",
|
|
8646
9059
|
"canonicalReference": "@alloy-js/core!mapJoin:function(2)",
|
|
8647
|
-
"docComment": "/**\n * Map a array or iterator to another array using a mapper and place a joiner 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
|
|
9060
|
+
"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",
|
|
8648
9061
|
"excerptTokens": [
|
|
8649
9062
|
{
|
|
8650
9063
|
"kind": "Content",
|
|
@@ -8702,7 +9115,7 @@
|
|
|
8702
9115
|
"text": ";"
|
|
8703
9116
|
}
|
|
8704
9117
|
],
|
|
8705
|
-
"fileUrlPath": "src/utils.
|
|
9118
|
+
"fileUrlPath": "src/utils.tsx",
|
|
8706
9119
|
"returnTypeTokenRange": {
|
|
8707
9120
|
"startIndex": 9,
|
|
8708
9121
|
"endIndex": 12
|
|
@@ -8795,7 +9208,7 @@
|
|
|
8795
9208
|
{
|
|
8796
9209
|
"kind": "Variable",
|
|
8797
9210
|
"canonicalReference": "@alloy-js/core!Match:var",
|
|
8798
|
-
"docComment": "/**\n * The Match component is used inside of a {@link Switch} component to define conditionally rendered blocks of content.\n */\n",
|
|
9211
|
+
"docComment": "/**\n * The Match component is used inside of a {@link Switch} component to\n * define conditionally rendered blocks of content.\n */\n",
|
|
8799
9212
|
"excerptTokens": [
|
|
8800
9213
|
{
|
|
8801
9214
|
"kind": "Content",
|
|
@@ -8879,7 +9292,7 @@
|
|
|
8879
9292
|
{
|
|
8880
9293
|
"kind": "PropertySignature",
|
|
8881
9294
|
"canonicalReference": "@alloy-js/core!MatchProps#else:member",
|
|
8882
|
-
"docComment": "/**\n * If no `when` is matched, the children of this element will be rendered
|
|
9295
|
+
"docComment": "/**\n * If no `when` is matched, the children of this element will be rendered.\n * The `else` match must be placed last.\n */\n",
|
|
8883
9296
|
"excerptTokens": [
|
|
8884
9297
|
{
|
|
8885
9298
|
"kind": "Content",
|
|
@@ -8959,7 +9372,7 @@
|
|
|
8959
9372
|
{
|
|
8960
9373
|
"kind": "Function",
|
|
8961
9374
|
"canonicalReference": "@alloy-js/core!MemberDeclaration:function(1)",
|
|
8962
|
-
"docComment": "/**\n * Declares a symbol in the current member scope for this component's children.\n *\n * @remarks\n *\n * This component must be called in one of two ways: with a name and an optional refkey, or else passing in the symbol. When called with a name and refkey, a symbol will be created in the current scope (provided by {@link MemberDeclarationContext}) with that name and refkey. If a refkey is not provided, `refkey(props.name)` is used.\n *\n * When called with a symbol, that symbol is merely exposed via {@link MemberDeclarationContext}. It is assumed that the caller of this component has created the symbol with the `createSymbol` API on the {@link BinderContext}.\n *\n * @see\n *\n *
|
|
9375
|
+
"docComment": "/**\n * Declares a symbol in the current member scope for this component's children.\n *\n * @remarks\n *\n *\n *\n * This component must be called in one of two ways: with a name and an optional\n * refkey, or else passing in the symbol. When called with a name and refkey, a\n * symbol will be created in the current scope (provided by\n * {@link MemberDeclarationContext}) with that name and refkey. If a refkey is not\n * provided, `refkey(props.name)` is used.\n *\n * When called with a symbol, that symbol is merely exposed via\n * {@link MemberDeclarationContext}. It is assumed that the caller of this component\n * has created the symbol with the `createSymbol` API on the\n * {@link BinderContext}.\n *\n * @see\n *\n * {@link BinderContext}\n */\n",
|
|
8963
9376
|
"excerptTokens": [
|
|
8964
9377
|
{
|
|
8965
9378
|
"kind": "Content",
|
|
@@ -8968,7 +9381,7 @@
|
|
|
8968
9381
|
{
|
|
8969
9382
|
"kind": "Reference",
|
|
8970
9383
|
"text": "MemberDeclarationProps",
|
|
8971
|
-
"canonicalReference": "@alloy-js/core!MemberDeclarationProps:
|
|
9384
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationProps:type"
|
|
8972
9385
|
},
|
|
8973
9386
|
{
|
|
8974
9387
|
"kind": "Content",
|
|
@@ -9006,7 +9419,7 @@
|
|
|
9006
9419
|
{
|
|
9007
9420
|
"kind": "Variable",
|
|
9008
9421
|
"canonicalReference": "@alloy-js/core!MemberDeclarationContext:var",
|
|
9009
|
-
"docComment": "/**\n * Provides the symbol for the member currently being declared.\n *\n * @see\n *\n *
|
|
9422
|
+
"docComment": "/**\n * Provides the symbol for the member currently being declared.\n *\n * @see\n *\n * {@link DeclarationContext} for getting the symbol for the current non-member declaration.\n */\n",
|
|
9010
9423
|
"excerptTokens": [
|
|
9011
9424
|
{
|
|
9012
9425
|
"kind": "Content",
|
|
@@ -9041,23 +9454,59 @@
|
|
|
9041
9454
|
}
|
|
9042
9455
|
},
|
|
9043
9456
|
{
|
|
9044
|
-
"kind": "
|
|
9045
|
-
"canonicalReference": "@alloy-js/core!MemberDeclarationProps:
|
|
9457
|
+
"kind": "TypeAlias",
|
|
9458
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationProps:type",
|
|
9046
9459
|
"docComment": "",
|
|
9047
9460
|
"excerptTokens": [
|
|
9048
9461
|
{
|
|
9049
9462
|
"kind": "Content",
|
|
9050
|
-
"text": "export
|
|
9463
|
+
"text": "export type MemberDeclarationProps = "
|
|
9464
|
+
},
|
|
9465
|
+
{
|
|
9466
|
+
"kind": "Reference",
|
|
9467
|
+
"text": "MemberDeclarationPropsWithInfo",
|
|
9468
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo:interface"
|
|
9469
|
+
},
|
|
9470
|
+
{
|
|
9471
|
+
"kind": "Content",
|
|
9472
|
+
"text": " | "
|
|
9473
|
+
},
|
|
9474
|
+
{
|
|
9475
|
+
"kind": "Reference",
|
|
9476
|
+
"text": "MemberDeclarationPropsWithSymbol",
|
|
9477
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithSymbol:interface"
|
|
9478
|
+
},
|
|
9479
|
+
{
|
|
9480
|
+
"kind": "Content",
|
|
9481
|
+
"text": ";"
|
|
9051
9482
|
}
|
|
9052
9483
|
],
|
|
9053
9484
|
"fileUrlPath": "src/components/MemberDeclaration.tsx",
|
|
9054
9485
|
"releaseTag": "Public",
|
|
9055
9486
|
"name": "MemberDeclarationProps",
|
|
9487
|
+
"typeTokenRange": {
|
|
9488
|
+
"startIndex": 1,
|
|
9489
|
+
"endIndex": 4
|
|
9490
|
+
}
|
|
9491
|
+
},
|
|
9492
|
+
{
|
|
9493
|
+
"kind": "Interface",
|
|
9494
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo:interface",
|
|
9495
|
+
"docComment": "/**\n * Create a member declaration by providing a symbol name and optional symbol\n * metadata.\n */\n",
|
|
9496
|
+
"excerptTokens": [
|
|
9497
|
+
{
|
|
9498
|
+
"kind": "Content",
|
|
9499
|
+
"text": "export interface MemberDeclarationPropsWithInfo "
|
|
9500
|
+
}
|
|
9501
|
+
],
|
|
9502
|
+
"fileUrlPath": "src/components/MemberDeclaration.tsx",
|
|
9503
|
+
"releaseTag": "Public",
|
|
9504
|
+
"name": "MemberDeclarationPropsWithInfo",
|
|
9056
9505
|
"preserveMemberOrder": false,
|
|
9057
9506
|
"members": [
|
|
9058
9507
|
{
|
|
9059
9508
|
"kind": "PropertySignature",
|
|
9060
|
-
"canonicalReference": "@alloy-js/core!
|
|
9509
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo#children:member",
|
|
9061
9510
|
"docComment": "",
|
|
9062
9511
|
"excerptTokens": [
|
|
9063
9512
|
{
|
|
@@ -9085,16 +9534,21 @@
|
|
|
9085
9534
|
},
|
|
9086
9535
|
{
|
|
9087
9536
|
"kind": "PropertySignature",
|
|
9088
|
-
"canonicalReference": "@alloy-js/core!
|
|
9089
|
-
"docComment": "",
|
|
9537
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo#metadata:member",
|
|
9538
|
+
"docComment": "/**\n * Additional metadata for the declared symbol.\n */\n",
|
|
9090
9539
|
"excerptTokens": [
|
|
9091
9540
|
{
|
|
9092
9541
|
"kind": "Content",
|
|
9093
|
-
"text": "
|
|
9542
|
+
"text": "metadata?: "
|
|
9543
|
+
},
|
|
9544
|
+
{
|
|
9545
|
+
"kind": "Reference",
|
|
9546
|
+
"text": "Record",
|
|
9547
|
+
"canonicalReference": "!Record:type"
|
|
9094
9548
|
},
|
|
9095
9549
|
{
|
|
9096
9550
|
"kind": "Content",
|
|
9097
|
-
"text": "string"
|
|
9551
|
+
"text": "<string, unknown>"
|
|
9098
9552
|
},
|
|
9099
9553
|
{
|
|
9100
9554
|
"kind": "Content",
|
|
@@ -9104,6 +9558,33 @@
|
|
|
9104
9558
|
"isReadonly": false,
|
|
9105
9559
|
"isOptional": true,
|
|
9106
9560
|
"releaseTag": "Public",
|
|
9561
|
+
"name": "metadata",
|
|
9562
|
+
"propertyTypeTokenRange": {
|
|
9563
|
+
"startIndex": 1,
|
|
9564
|
+
"endIndex": 3
|
|
9565
|
+
}
|
|
9566
|
+
},
|
|
9567
|
+
{
|
|
9568
|
+
"kind": "PropertySignature",
|
|
9569
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo#name:member",
|
|
9570
|
+
"docComment": "/**\n * The name of this declaration.\n */\n",
|
|
9571
|
+
"excerptTokens": [
|
|
9572
|
+
{
|
|
9573
|
+
"kind": "Content",
|
|
9574
|
+
"text": "name: "
|
|
9575
|
+
},
|
|
9576
|
+
{
|
|
9577
|
+
"kind": "Content",
|
|
9578
|
+
"text": "string"
|
|
9579
|
+
},
|
|
9580
|
+
{
|
|
9581
|
+
"kind": "Content",
|
|
9582
|
+
"text": ";"
|
|
9583
|
+
}
|
|
9584
|
+
],
|
|
9585
|
+
"isReadonly": false,
|
|
9586
|
+
"isOptional": false,
|
|
9587
|
+
"releaseTag": "Public",
|
|
9107
9588
|
"name": "name",
|
|
9108
9589
|
"propertyTypeTokenRange": {
|
|
9109
9590
|
"startIndex": 1,
|
|
@@ -9112,8 +9593,8 @@
|
|
|
9112
9593
|
},
|
|
9113
9594
|
{
|
|
9114
9595
|
"kind": "PropertySignature",
|
|
9115
|
-
"canonicalReference": "@alloy-js/core!
|
|
9116
|
-
"docComment": "",
|
|
9596
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo#refkey:member",
|
|
9597
|
+
"docComment": "/**\n * The refkey or array refkeys for this declaration.\n */\n",
|
|
9117
9598
|
"excerptTokens": [
|
|
9118
9599
|
{
|
|
9119
9600
|
"kind": "Content",
|
|
@@ -9124,6 +9605,19 @@
|
|
|
9124
9605
|
"text": "Refkey",
|
|
9125
9606
|
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
9126
9607
|
},
|
|
9608
|
+
{
|
|
9609
|
+
"kind": "Content",
|
|
9610
|
+
"text": " | "
|
|
9611
|
+
},
|
|
9612
|
+
{
|
|
9613
|
+
"kind": "Reference",
|
|
9614
|
+
"text": "Refkey",
|
|
9615
|
+
"canonicalReference": "@alloy-js/core!Refkey:type"
|
|
9616
|
+
},
|
|
9617
|
+
{
|
|
9618
|
+
"kind": "Content",
|
|
9619
|
+
"text": "[]"
|
|
9620
|
+
},
|
|
9127
9621
|
{
|
|
9128
9622
|
"kind": "Content",
|
|
9129
9623
|
"text": ";"
|
|
@@ -9135,13 +9629,13 @@
|
|
|
9135
9629
|
"name": "refkey",
|
|
9136
9630
|
"propertyTypeTokenRange": {
|
|
9137
9631
|
"startIndex": 1,
|
|
9138
|
-
"endIndex":
|
|
9632
|
+
"endIndex": 5
|
|
9139
9633
|
}
|
|
9140
9634
|
},
|
|
9141
9635
|
{
|
|
9142
9636
|
"kind": "PropertySignature",
|
|
9143
|
-
"canonicalReference": "@alloy-js/core!
|
|
9144
|
-
"docComment": "",
|
|
9637
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithInfo#static:member",
|
|
9638
|
+
"docComment": "/**\n * Whether this is a static member. If not provided, the member is an instance\n * member.\n */\n",
|
|
9145
9639
|
"excerptTokens": [
|
|
9146
9640
|
{
|
|
9147
9641
|
"kind": "Content",
|
|
@@ -9164,15 +9658,61 @@
|
|
|
9164
9658
|
"startIndex": 1,
|
|
9165
9659
|
"endIndex": 2
|
|
9166
9660
|
}
|
|
9167
|
-
}
|
|
9661
|
+
}
|
|
9662
|
+
],
|
|
9663
|
+
"extendsTokenRanges": []
|
|
9664
|
+
},
|
|
9665
|
+
{
|
|
9666
|
+
"kind": "Interface",
|
|
9667
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithSymbol:interface",
|
|
9668
|
+
"docComment": "/**\n * Create a declaration by providing an already created symbol. The symbol is\n * merely exposed via {@link DeclarationContext}.\n */\n",
|
|
9669
|
+
"excerptTokens": [
|
|
9670
|
+
{
|
|
9671
|
+
"kind": "Content",
|
|
9672
|
+
"text": "export interface MemberDeclarationPropsWithSymbol "
|
|
9673
|
+
}
|
|
9674
|
+
],
|
|
9675
|
+
"fileUrlPath": "src/components/MemberDeclaration.tsx",
|
|
9676
|
+
"releaseTag": "Public",
|
|
9677
|
+
"name": "MemberDeclarationPropsWithSymbol",
|
|
9678
|
+
"preserveMemberOrder": false,
|
|
9679
|
+
"members": [
|
|
9168
9680
|
{
|
|
9169
9681
|
"kind": "PropertySignature",
|
|
9170
|
-
"canonicalReference": "@alloy-js/core!
|
|
9682
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithSymbol#children:member",
|
|
9171
9683
|
"docComment": "",
|
|
9172
9684
|
"excerptTokens": [
|
|
9173
9685
|
{
|
|
9174
9686
|
"kind": "Content",
|
|
9175
|
-
"text": "
|
|
9687
|
+
"text": "children?: "
|
|
9688
|
+
},
|
|
9689
|
+
{
|
|
9690
|
+
"kind": "Reference",
|
|
9691
|
+
"text": "Children",
|
|
9692
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
9693
|
+
},
|
|
9694
|
+
{
|
|
9695
|
+
"kind": "Content",
|
|
9696
|
+
"text": ";"
|
|
9697
|
+
}
|
|
9698
|
+
],
|
|
9699
|
+
"isReadonly": false,
|
|
9700
|
+
"isOptional": true,
|
|
9701
|
+
"releaseTag": "Public",
|
|
9702
|
+
"name": "children",
|
|
9703
|
+
"propertyTypeTokenRange": {
|
|
9704
|
+
"startIndex": 1,
|
|
9705
|
+
"endIndex": 2
|
|
9706
|
+
}
|
|
9707
|
+
},
|
|
9708
|
+
{
|
|
9709
|
+
"kind": "PropertySignature",
|
|
9710
|
+
"canonicalReference": "@alloy-js/core!MemberDeclarationPropsWithSymbol#symbol:member",
|
|
9711
|
+
"docComment": "/**\n * The symbol being declared. When provided, the name, refkey, and metadata\n * props are ignored.\n */\n",
|
|
9712
|
+
"excerptTokens": [
|
|
9713
|
+
{
|
|
9714
|
+
"kind": "Content",
|
|
9715
|
+
"text": "symbol: "
|
|
9176
9716
|
},
|
|
9177
9717
|
{
|
|
9178
9718
|
"kind": "Reference",
|
|
@@ -9185,7 +9725,7 @@
|
|
|
9185
9725
|
}
|
|
9186
9726
|
],
|
|
9187
9727
|
"isReadonly": false,
|
|
9188
|
-
"isOptional":
|
|
9728
|
+
"isOptional": false,
|
|
9189
9729
|
"releaseTag": "Public",
|
|
9190
9730
|
"name": "symbol",
|
|
9191
9731
|
"propertyTypeTokenRange": {
|
|
@@ -9232,7 +9772,7 @@
|
|
|
9232
9772
|
{
|
|
9233
9773
|
"kind": "Function",
|
|
9234
9774
|
"canonicalReference": "@alloy-js/core!MemberScope:function(1)",
|
|
9235
|
-
"docComment": "/**\n * Declare a member scope, which is a scope that holds instance and static members. This scope is then used for nested instance or static member declarations and resolution of instance members.\n *\n * @remarks\n *\n * The member scope contains scopes for both instance and static members
|
|
9775
|
+
"docComment": "/**\n * Declare a member scope, which is a scope that holds instance and static\n * members. This scope is then used for nested instance or static member\n * declarations and resolution of instance members.\n *\n * @remarks\n *\n *\n *\n * The member scope contains scopes for both instance and static members.\n * However, it does not affect the resolution of static members.\n *\n * @see\n *\n * {@link (MemberScopeContext:variable)}\n */\n",
|
|
9236
9776
|
"excerptTokens": [
|
|
9237
9777
|
{
|
|
9238
9778
|
"kind": "Content",
|
|
@@ -9279,7 +9819,7 @@
|
|
|
9279
9819
|
{
|
|
9280
9820
|
"kind": "Interface",
|
|
9281
9821
|
"canonicalReference": "@alloy-js/core!MemberScopeContext:interface",
|
|
9282
|
-
"docComment": "/**\n * The member scope context provides the instance and static member scopes that are used for member declarations and instance member resolution.\n */\n",
|
|
9822
|
+
"docComment": "/**\n * The member scope context provides the instance and static member scopes that\n * are used for member declarations and instance member resolution.\n */\n",
|
|
9283
9823
|
"excerptTokens": [
|
|
9284
9824
|
{
|
|
9285
9825
|
"kind": "Content",
|
|
@@ -9460,7 +10000,7 @@
|
|
|
9460
10000
|
{
|
|
9461
10001
|
"kind": "PropertySignature",
|
|
9462
10002
|
"canonicalReference": "@alloy-js/core!MemberScopeProps#owner:member",
|
|
9463
|
-
"docComment": "/**\n * The symbol that owns these members. This symbol must have either {@link OutputSymbolFlags.InstanceMemberContainer} or {@link OutputSymbolFlags.StaticMemberContainer}.\n */\n",
|
|
10003
|
+
"docComment": "/**\n * The symbol that owns these members. This symbol must have either\n * {@link OutputSymbolFlags.InstanceMemberContainer} or\n * {@link OutputSymbolFlags.StaticMemberContainer}.\n */\n",
|
|
9464
10004
|
"excerptTokens": [
|
|
9465
10005
|
{
|
|
9466
10006
|
"kind": "Content",
|
|
@@ -10179,7 +10719,7 @@
|
|
|
10179
10719
|
{
|
|
10180
10720
|
"kind": "Function",
|
|
10181
10721
|
"canonicalReference": "@alloy-js/core!onCleanup:function(1)",
|
|
10182
|
-
"docComment": "/**\n * Register a cleanup function which is called when the current reactive scope is recalculated or disposed. This is useful to clean up any side effects created in the reactive scope.\n *\n * @remarks\n *\n * When onCleanup is called inside a component definition, the provided function is called when the component is removed from the tree. This can be useful to clean up any side effects created as a result of rendering the component. For example, if rendering a component creates a symbol, `onCleanup` can be used to remove the symbol when the component is removed from the tree.\n *\n * When onCleanup is called inside a memo or effect, the function is called when the effect is refreshed (e.g. when a memo or computed recalculates) or disposed (e.g. it is no longer needed because it is attached to a component which was removed).\n */\n",
|
|
10722
|
+
"docComment": "/**\n * Register a cleanup function which is called when the current reactive scope\n * is recalculated or disposed. This is useful to clean up any side effects\n * created in the reactive scope.\n *\n * @remarks\n *\n *\n *\n * When onCleanup is called inside a component definition, the provided function\n * is called when the component is removed from the tree. This can be useful to\n * clean up any side effects created as a result of rendering the component. For\n * example, if rendering a component creates a symbol, `onCleanup` can be used\n * to remove the symbol when the component is removed from the tree.\n *\n * When onCleanup is called inside a memo or effect, the function is called when\n * the effect is refreshed (e.g. when a memo or computed recalculates) or\n * disposed (e.g. it is no longer needed because it is attached to a component\n * which was removed).\n */\n",
|
|
10183
10723
|
"excerptTokens": [
|
|
10184
10724
|
{
|
|
10185
10725
|
"kind": "Content",
|
|
@@ -10225,7 +10765,7 @@
|
|
|
10225
10765
|
{
|
|
10226
10766
|
"kind": "Function",
|
|
10227
10767
|
"canonicalReference": "@alloy-js/core!Output:function(1)",
|
|
10228
|
-
"docComment": "/**\n * This component is the root component for all your emitted output. Place your various {@link SourceDirectory} and {@link SourceFile} components inside `Output` to create directories and files in your output directory.\n *\n * @see\n *\n *
|
|
10768
|
+
"docComment": "/**\n * This component is the root component for all your emitted output. Place your\n * various {@link SourceDirectory} and {@link SourceFile} components inside\n * `Output` to create directories and files in your output directory.\n *\n * @see\n *\n * {@link NamePolicyContext}\n */\n",
|
|
10229
10769
|
"excerptTokens": [
|
|
10230
10770
|
{
|
|
10231
10771
|
"kind": "Content",
|
|
@@ -10272,7 +10812,7 @@
|
|
|
10272
10812
|
{
|
|
10273
10813
|
"kind": "Interface",
|
|
10274
10814
|
"canonicalReference": "@alloy-js/core!OutputDirectory:interface",
|
|
10275
|
-
"docComment": "/**\n * Turning components into source text involves three different trees produced sequentially:\n *\n * 1. Component tree, built by the nesting of components 2. Rendered text tree, produced by *rendering* the component tree 3. Document tree, produced by *printing* the rendered text tree\n *\n * Finally, the document tree is converted to text via `prettier`. Let's look at each of these trees and the conversions in detail.\n *\n * # Component tree\n *\n * The component tree is built by JSX or STC templates. The nodes in this tree are defined by the type `Child` and are one of the following\n *\n * ## Primitive values\n *\n * Strings in the tree are placed into the rendered text tree as-is. Numbers are converted to strings. Falsy primitive values and booleans are converted to empty strings (and may cause a line break to be ignored, see below).\n *\n * ## Nullary functions\n *\n * Nullary functions represent computed or reactive values in the component tree, such as expressions placed into a JSX template with curly brackets
|
|
10815
|
+
"docComment": "/**\n * Turning components into source text involves three different trees produced\n * sequentially:\n *\n * 1. Component tree, built by the nesting of components\n * 2. Rendered text tree, produced by *rendering* the component tree\n * 3. Document tree, produced by *printing* the rendered text tree\n *\n * Finally, the document tree is converted to text via `prettier`. Let's look at\n * each of these trees and the conversions in detail.\n *\n * # Component tree\n *\n * The component tree is built by JSX or STC templates. The nodes in this tree\n * are defined by the type `Child` and are one of the following\n *\n * ## Primitive values\n *\n * Strings in the tree are placed into the rendered text tree as-is. Numbers are\n * converted to strings. Falsy primitive values and booleans are converted to\n * empty strings (and may cause a line break to be ignored, see below).\n *\n * ## Nullary functions\n *\n * Nullary functions represent computed or reactive values in the component\n * tree, such as expressions placed into a JSX template with curly brackets.\n * Nullary functions return `Children` which are then recursively rendered.\n * Nullary functions are invoked in an effect which will update the rendered\n * text tree when any reactive dependencies change.\n *\n * ## Component creators\n *\n * Component creators are a special kind of nullary function which instantiate\n * components in order to get their children which are then recursively\n * rendered. Component creators have some special rendering behavior, such as\n * tracking the stack of rendered components. Like other nullary functions,\n * component creators are invoked in an effect which will update the rendered\n * text tree when any reactive dependencies change.\n *\n * ## Refs\n *\n * Refs are wrapped in a nullary function and rendered in an effect which will\n * update the rendered text tree when the ref's value changes. This is\n * essentially a syntactic convenience, allowing JSX templates to contain\n * `\\{ someRef \\}` instead of `\\{ someRef.value \\}`.\n *\n * ## Refkey\n *\n * Refkeys are replaced with a component creator for the Reference component\n * associated with the current source file. This allows creating references by\n * placing them directly in the component tree e.g. `{ someRefkey }`.\n *\n * ## CustomContext\n *\n * CustomContext is a special kind of component which allows rendering children\n * within a custom reactive context. This enables components to manually manage\n * the lifetime of their reactive contexts.\n *\n * ## IntrinsicElement\n *\n * Various intrinsic elements exist to control formatting. These elements\n * provide Print Hooks that are called during Printing.\n *\n * # Rendered Text Tree\n *\n * This tree is a nested array structure containing the rendered output of all\n * the components in the component tree. This structure is updated reactively\n * when reactive dependencies change. The nodes in this tree are predominantly\n * strings, but can also be Print Hooks.\n *\n * This tree is built by the `renderTree` function.\n *\n * # Document Tree\n *\n * This tree is constructed by calling `printTree` on the rendered text tree.\n * The rendered text tree is walked and the appropriate Prettier builders are\n * called to produce a document tree. The result is then passed to Prettier's\n * `printDocToString` function to produce the final source text.\n */\n",
|
|
10276
10816
|
"excerptTokens": [
|
|
10277
10817
|
{
|
|
10278
10818
|
"kind": "Content",
|
|
@@ -10693,7 +11233,7 @@
|
|
|
10693
11233
|
{
|
|
10694
11234
|
"kind": "Interface",
|
|
10695
11235
|
"canonicalReference": "@alloy-js/core!OutputScope:interface",
|
|
10696
|
-
"docComment": "/**\n * A container of symbols accessible within some scope in your output code.\n *\n * @remarks\n *\n * Scopes form a tree. All scopes except the global scope have a parent scope identified by `parent`. Scopes can have nested scopes which can be accessed using the `children` property. Whether a child scope can be accessed from the parent scope is determined by each language's scoping rules.\n *\n * This interface is the base implementation of scope. Generally, most languages will have subtypes of this interface that provide additional metadata about the scope. For example, TypeScript scopes need to track whether the scope represents a package, module, class, function, etc.\n *\n * Scopes are reactive values, which allows you to observe changes to the scope within a reactive context.\n */\n",
|
|
11236
|
+
"docComment": "/**\n * A container of symbols accessible within some scope in your output code.\n *\n * @remarks\n *\n *\n *\n * Scopes form a tree. All scopes except the global scope have a parent scope\n * identified by `parent`. Scopes can have nested scopes which can be accessed\n * using the `children` property. Whether a child scope can be accessed from\n * the parent scope is determined by each language's scoping rules.\n *\n * This interface is the base implementation of scope. Generally, most languages\n * will have subtypes of this interface that provide additional metadata about\n * the scope. For example, TypeScript scopes need to track whether the scope\n * represents a package, module, class, function, etc.\n *\n * Scopes are reactive values, which allows you to observe changes to the scope\n * within a reactive context.\n */\n",
|
|
10697
11237
|
"excerptTokens": [
|
|
10698
11238
|
{
|
|
10699
11239
|
"kind": "Content",
|
|
@@ -10838,11 +11378,11 @@
|
|
|
10838
11378
|
{
|
|
10839
11379
|
"kind": "PropertySignature",
|
|
10840
11380
|
"canonicalReference": "@alloy-js/core!OutputScope#kind:member",
|
|
10841
|
-
"docComment": "/**\n * The kind of scope. Subtypes will likely provide a set of known scope kinds
|
|
11381
|
+
"docComment": "/**\n * The kind of scope. Subtypes will likely provide a set of known scope kinds.\n * The kind is not used by the binder itself.\n */\n",
|
|
10842
11382
|
"excerptTokens": [
|
|
10843
11383
|
{
|
|
10844
11384
|
"kind": "Content",
|
|
10845
|
-
"text": "kind
|
|
11385
|
+
"text": "kind?: "
|
|
10846
11386
|
},
|
|
10847
11387
|
{
|
|
10848
11388
|
"kind": "Content",
|
|
@@ -10854,7 +11394,7 @@
|
|
|
10854
11394
|
}
|
|
10855
11395
|
],
|
|
10856
11396
|
"isReadonly": false,
|
|
10857
|
-
"isOptional":
|
|
11397
|
+
"isOptional": true,
|
|
10858
11398
|
"releaseTag": "Public",
|
|
10859
11399
|
"name": "kind",
|
|
10860
11400
|
"propertyTypeTokenRange": {
|
|
@@ -10892,7 +11432,7 @@
|
|
|
10892
11432
|
{
|
|
10893
11433
|
"kind": "PropertySignature",
|
|
10894
11434
|
"canonicalReference": "@alloy-js/core!OutputScope#owner:member",
|
|
10895
|
-
"docComment": "/**\n * The symbol that owns this scope. This is only defined for scopes that have the {@link OutputScopeFlags.StaticMemberScope} flag.\n */\n",
|
|
11435
|
+
"docComment": "/**\n * The symbol that owns this scope. This is only defined for scopes that have\n * the {@link OutputScopeFlags.StaticMemberScope} flag.\n */\n",
|
|
10896
11436
|
"excerptTokens": [
|
|
10897
11437
|
{
|
|
10898
11438
|
"kind": "Content",
|
|
@@ -11082,7 +11622,7 @@
|
|
|
11082
11622
|
{
|
|
11083
11623
|
"kind": "EnumMember",
|
|
11084
11624
|
"canonicalReference": "@alloy-js/core!OutputScopeFlags.MemberScope:member",
|
|
11085
|
-
"docComment": "/**\n * This scope is a member scope. Scopes with this flag will have an `owner
|
|
11625
|
+
"docComment": "/**\n * This scope is a member scope. Scopes with this flag will have an `owner`\n * property that points to the symbol whose member this scope holds.\n */\n",
|
|
11086
11626
|
"excerptTokens": [
|
|
11087
11627
|
{
|
|
11088
11628
|
"kind": "Content",
|
|
@@ -11147,7 +11687,7 @@
|
|
|
11147
11687
|
{
|
|
11148
11688
|
"kind": "Interface",
|
|
11149
11689
|
"canonicalReference": "@alloy-js/core!OutputSymbol:interface",
|
|
11150
|
-
"docComment": "/**\n * An output symbol is a named entity that can be referenced in your output code. Referencing symbols is generally accomplished by using a {@link Refkey}.\n *\n * @remarks\n *\n * This interface is the base implementation of symbol. Generally, most languages will have subtypes of this interface that provide additional
|
|
11690
|
+
"docComment": "/**\n * An output symbol is a named entity that can be referenced in your output\n * code. Referencing symbols is generally accomplished by using a\n * {@link Refkey}.\n *\n * @remarks\n *\n *\n *\n * This interface is the base implementation of symbol. Generally, most\n * languages will have subtypes of this interface that provide additional,\n * language-specific metadata about declared symbols. For example, symbols in\n * TypeScript need to track whether they are exported or what kind of symbol\n * they are (e.g. type, value, parameter, etc.)\n *\n * Symbols are reactive values, which allows you to observe changes to the symbol\n * information. For example, a symbol's name may change if it becomes conflicted\n * with a symbol that is added later.\n */\n",
|
|
11151
11691
|
"excerptTokens": [
|
|
11152
11692
|
{
|
|
11153
11693
|
"kind": "Content",
|
|
@@ -11218,7 +11758,7 @@
|
|
|
11218
11758
|
{
|
|
11219
11759
|
"kind": "PropertySignature",
|
|
11220
11760
|
"canonicalReference": "@alloy-js/core!OutputSymbol#instanceMemberScope:member",
|
|
11221
|
-
"docComment": "/**\n * The instance members available on this symbol.\n *\n * @remarks\n *\n * Instance members are members that are available when this symbol is instantiated. Instantiation is language-specific. For example, in TypeScript, instance members of symbols for classes are available when the class is instantiated with a new expression.\n *\n * When a symbol cannot have instance members, this is undefined.\n */\n",
|
|
11761
|
+
"docComment": "/**\n * The instance members available on this symbol.\n *\n * @remarks\n *\n *\n *\n * Instance members are members that are available when this symbol is\n * instantiated. Instantiation is language-specific. For example, in\n * TypeScript, instance members of symbols for classes are available when the\n * class is instantiated with a new expression.\n *\n * When a symbol cannot have instance members, this is undefined.\n */\n",
|
|
11222
11762
|
"excerptTokens": [
|
|
11223
11763
|
{
|
|
11224
11764
|
"kind": "Content",
|
|
@@ -11243,6 +11783,38 @@
|
|
|
11243
11783
|
"endIndex": 2
|
|
11244
11784
|
}
|
|
11245
11785
|
},
|
|
11786
|
+
{
|
|
11787
|
+
"kind": "PropertySignature",
|
|
11788
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol#metadata:member",
|
|
11789
|
+
"docComment": "/**\n * Additional custom metadata about this symbol.\n */\n",
|
|
11790
|
+
"excerptTokens": [
|
|
11791
|
+
{
|
|
11792
|
+
"kind": "Content",
|
|
11793
|
+
"text": "metadata: "
|
|
11794
|
+
},
|
|
11795
|
+
{
|
|
11796
|
+
"kind": "Reference",
|
|
11797
|
+
"text": "Record",
|
|
11798
|
+
"canonicalReference": "!Record:type"
|
|
11799
|
+
},
|
|
11800
|
+
{
|
|
11801
|
+
"kind": "Content",
|
|
11802
|
+
"text": "<string, unknown>"
|
|
11803
|
+
},
|
|
11804
|
+
{
|
|
11805
|
+
"kind": "Content",
|
|
11806
|
+
"text": ";"
|
|
11807
|
+
}
|
|
11808
|
+
],
|
|
11809
|
+
"isReadonly": false,
|
|
11810
|
+
"isOptional": false,
|
|
11811
|
+
"releaseTag": "Public",
|
|
11812
|
+
"name": "metadata",
|
|
11813
|
+
"propertyTypeTokenRange": {
|
|
11814
|
+
"startIndex": 1,
|
|
11815
|
+
"endIndex": 3
|
|
11816
|
+
}
|
|
11817
|
+
},
|
|
11246
11818
|
{
|
|
11247
11819
|
"kind": "PropertySignature",
|
|
11248
11820
|
"canonicalReference": "@alloy-js/core!OutputSymbol#name:member",
|
|
@@ -11360,7 +11932,7 @@
|
|
|
11360
11932
|
{
|
|
11361
11933
|
"kind": "PropertySignature",
|
|
11362
11934
|
"canonicalReference": "@alloy-js/core!OutputSymbol#staticMemberScope:member",
|
|
11363
|
-
"docComment": "/**\n * The static members available on this symbol.\n *\n * @remarks\n *\n * Static members are members that are available on the symbol itself. These symbols can be accessed off the parent symbol directly with a refkey. There is only ever one static member symbol in the output (i.e., the symbol is unique).\n */\n",
|
|
11935
|
+
"docComment": "/**\n * The static members available on this symbol.\n *\n * @remarks\n *\n *\n *\n * Static members are members that are available on the symbol itself. These symbols\n * can be accessed off the parent symbol directly with a refkey. There is only ever\n * one static member symbol in the output (i.e., the symbol is unique).\n */\n",
|
|
11364
11936
|
"excerptTokens": [
|
|
11365
11937
|
{
|
|
11366
11938
|
"kind": "Content",
|
|
@@ -11406,7 +11978,7 @@
|
|
|
11406
11978
|
{
|
|
11407
11979
|
"kind": "EnumMember",
|
|
11408
11980
|
"canonicalReference": "@alloy-js/core!OutputSymbolFlags.InstanceMember:member",
|
|
11409
|
-
"docComment": "/**\n * Whether this symbol is an instance member of another symbol (i.e that it is stored in an instance member scope).\n */\n",
|
|
11981
|
+
"docComment": "/**\n * Whether this symbol is an instance member of another symbol (i.e that it is\n * stored in an instance member scope).\n */\n",
|
|
11410
11982
|
"excerptTokens": [
|
|
11411
11983
|
{
|
|
11412
11984
|
"kind": "Content",
|
|
@@ -11427,7 +11999,7 @@
|
|
|
11427
11999
|
{
|
|
11428
12000
|
"kind": "EnumMember",
|
|
11429
12001
|
"canonicalReference": "@alloy-js/core!OutputSymbolFlags.InstanceMemberContainer:member",
|
|
11430
|
-
"docComment": "/**\n * The symbol is an instance member container. Symbols with this flag will have a instanceMemberScope property that contains symbols for instance members.\n */\n",
|
|
12002
|
+
"docComment": "/**\n * The symbol is an instance member container. Symbols with this flag will have a\n * instanceMemberScope property that contains symbols for instance members.\n */\n",
|
|
11431
12003
|
"excerptTokens": [
|
|
11432
12004
|
{
|
|
11433
12005
|
"kind": "Content",
|
|
@@ -11511,7 +12083,7 @@
|
|
|
11511
12083
|
{
|
|
11512
12084
|
"kind": "EnumMember",
|
|
11513
12085
|
"canonicalReference": "@alloy-js/core!OutputSymbolFlags.StaticMember:member",
|
|
11514
|
-
"docComment": "/**\n * Whether this symbol is a static member of another symbol (i.e that it is stored in a static member scope).\n */\n",
|
|
12086
|
+
"docComment": "/**\n * Whether this symbol is a static member of another symbol (i.e that it is\n * stored in a static member scope).\n */\n",
|
|
11515
12087
|
"excerptTokens": [
|
|
11516
12088
|
{
|
|
11517
12089
|
"kind": "Content",
|
|
@@ -11532,7 +12104,7 @@
|
|
|
11532
12104
|
{
|
|
11533
12105
|
"kind": "EnumMember",
|
|
11534
12106
|
"canonicalReference": "@alloy-js/core!OutputSymbolFlags.StaticMemberContainer:member",
|
|
11535
|
-
"docComment": "/**\n * The symbol is a static member container. Symbols with this flag will have a staticMemberScope property that contains symbols for static members.\n */\n",
|
|
12107
|
+
"docComment": "/**\n * The symbol is a static member container. Symbols with this flag will have a\n * staticMemberScope property that contains symbols for static members.\n */\n",
|
|
11536
12108
|
"excerptTokens": [
|
|
11537
12109
|
{
|
|
11538
12110
|
"kind": "Content",
|
|
@@ -11555,14 +12127,14 @@
|
|
|
11555
12127
|
{
|
|
11556
12128
|
"kind": "Interface",
|
|
11557
12129
|
"canonicalReference": "@alloy-js/core!OutputVisitor:interface",
|
|
11558
|
-
"docComment": "/**\n * A visitor to collect the output from {@link render}. Used by {@link traverseOutput}.\n */\n",
|
|
12130
|
+
"docComment": "/**\n * A visitor to collect the output from {@link render}. Used by\n * {@link traverseOutput}.\n */\n",
|
|
11559
12131
|
"excerptTokens": [
|
|
11560
12132
|
{
|
|
11561
12133
|
"kind": "Content",
|
|
11562
12134
|
"text": "export interface OutputVisitor "
|
|
11563
12135
|
}
|
|
11564
12136
|
],
|
|
11565
|
-
"fileUrlPath": "src/utils.
|
|
12137
|
+
"fileUrlPath": "src/utils.tsx",
|
|
11566
12138
|
"releaseTag": "Public",
|
|
11567
12139
|
"name": "OutputVisitor",
|
|
11568
12140
|
"preserveMemberOrder": false,
|
|
@@ -12028,7 +12600,7 @@
|
|
|
12028
12600
|
{
|
|
12029
12601
|
"kind": "PropertySignature",
|
|
12030
12602
|
"canonicalReference": "@alloy-js/core!PrintTreeOptions#printWidth:member",
|
|
12031
|
-
"docComment": "/**\n * The number of characters the printer will wrap on. Defaults to 100 characters.\n */\n",
|
|
12603
|
+
"docComment": "/**\n * The number of characters the printer will wrap on. Defaults to 100\n * characters.\n */\n",
|
|
12032
12604
|
"excerptTokens": [
|
|
12033
12605
|
{
|
|
12034
12606
|
"kind": "Content",
|
|
@@ -12140,6 +12712,99 @@
|
|
|
12140
12712
|
"endIndex": 3
|
|
12141
12713
|
}
|
|
12142
12714
|
},
|
|
12715
|
+
{
|
|
12716
|
+
"kind": "Function",
|
|
12717
|
+
"canonicalReference": "@alloy-js/core!Prose:function(1)",
|
|
12718
|
+
"docComment": "/**\n * Create a block of text which will break once a word exceeds the configured line width.\n * The children are expected to be strings, and a <br /> is added between each word.\n */\n",
|
|
12719
|
+
"excerptTokens": [
|
|
12720
|
+
{
|
|
12721
|
+
"kind": "Content",
|
|
12722
|
+
"text": "export declare function Prose(props: "
|
|
12723
|
+
},
|
|
12724
|
+
{
|
|
12725
|
+
"kind": "Reference",
|
|
12726
|
+
"text": "Prose",
|
|
12727
|
+
"canonicalReference": "@alloy-js/core!Prose:interface"
|
|
12728
|
+
},
|
|
12729
|
+
{
|
|
12730
|
+
"kind": "Content",
|
|
12731
|
+
"text": "): "
|
|
12732
|
+
},
|
|
12733
|
+
{
|
|
12734
|
+
"kind": "Reference",
|
|
12735
|
+
"text": "Children",
|
|
12736
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
12737
|
+
},
|
|
12738
|
+
{
|
|
12739
|
+
"kind": "Content",
|
|
12740
|
+
"text": ";"
|
|
12741
|
+
}
|
|
12742
|
+
],
|
|
12743
|
+
"fileUrlPath": "src/components/Prose.tsx",
|
|
12744
|
+
"returnTypeTokenRange": {
|
|
12745
|
+
"startIndex": 3,
|
|
12746
|
+
"endIndex": 4
|
|
12747
|
+
},
|
|
12748
|
+
"releaseTag": "Public",
|
|
12749
|
+
"overloadIndex": 1,
|
|
12750
|
+
"parameters": [
|
|
12751
|
+
{
|
|
12752
|
+
"parameterName": "props",
|
|
12753
|
+
"parameterTypeTokenRange": {
|
|
12754
|
+
"startIndex": 1,
|
|
12755
|
+
"endIndex": 2
|
|
12756
|
+
},
|
|
12757
|
+
"isOptional": false
|
|
12758
|
+
}
|
|
12759
|
+
],
|
|
12760
|
+
"name": "Prose"
|
|
12761
|
+
},
|
|
12762
|
+
{
|
|
12763
|
+
"kind": "Interface",
|
|
12764
|
+
"canonicalReference": "@alloy-js/core!Prose:interface",
|
|
12765
|
+
"docComment": "",
|
|
12766
|
+
"excerptTokens": [
|
|
12767
|
+
{
|
|
12768
|
+
"kind": "Content",
|
|
12769
|
+
"text": "export interface Prose "
|
|
12770
|
+
}
|
|
12771
|
+
],
|
|
12772
|
+
"fileUrlPath": "src/components/Prose.tsx",
|
|
12773
|
+
"releaseTag": "Public",
|
|
12774
|
+
"name": "Prose",
|
|
12775
|
+
"preserveMemberOrder": false,
|
|
12776
|
+
"members": [
|
|
12777
|
+
{
|
|
12778
|
+
"kind": "PropertySignature",
|
|
12779
|
+
"canonicalReference": "@alloy-js/core!Prose#children:member",
|
|
12780
|
+
"docComment": "",
|
|
12781
|
+
"excerptTokens": [
|
|
12782
|
+
{
|
|
12783
|
+
"kind": "Content",
|
|
12784
|
+
"text": "children: "
|
|
12785
|
+
},
|
|
12786
|
+
{
|
|
12787
|
+
"kind": "Reference",
|
|
12788
|
+
"text": "Children",
|
|
12789
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
12790
|
+
},
|
|
12791
|
+
{
|
|
12792
|
+
"kind": "Content",
|
|
12793
|
+
"text": ";"
|
|
12794
|
+
}
|
|
12795
|
+
],
|
|
12796
|
+
"isReadonly": false,
|
|
12797
|
+
"isOptional": false,
|
|
12798
|
+
"releaseTag": "Public",
|
|
12799
|
+
"name": "children",
|
|
12800
|
+
"propertyTypeTokenRange": {
|
|
12801
|
+
"startIndex": 1,
|
|
12802
|
+
"endIndex": 2
|
|
12803
|
+
}
|
|
12804
|
+
}
|
|
12805
|
+
],
|
|
12806
|
+
"extendsTokenRanges": []
|
|
12807
|
+
},
|
|
12143
12808
|
{
|
|
12144
12809
|
"kind": "Function",
|
|
12145
12810
|
"canonicalReference": "@alloy-js/core!pushStack:function(1)",
|
|
@@ -12446,7 +13111,7 @@
|
|
|
12446
13111
|
{
|
|
12447
13112
|
"kind": "Interface",
|
|
12448
13113
|
"canonicalReference": "@alloy-js/core!ResolutionResult:interface",
|
|
12449
|
-
"docComment": "/**\n * A successful resolution of a refkey.\n *\n * @example\n *\n * Let's say we have the following scopes and symbols:\n * ```\n * scope: global scope\n * ├── scope: namespace scope 1\n * │ └── symbol: foo\n * │ └── static member scope\n * │ └── symbol: bar\n * └── scope: namespace scope 2\n * └── (resolve bar from here)\n * ```\n *\n * When we resolve the refkey for `bar` from within `namespace scope 2`, we will get the following resolution result:\n *\n * **targetDeclaration**: symbol bar, the symbol we resolved.\n
|
|
13114
|
+
"docComment": "/**\n * A successful resolution of a refkey.\n *\n * @example\n *\n *\n *\n * Let's say we have the following scopes and symbols:\n *\n * ```\n * scope: global scope\n * ├── scope: namespace scope 1\n * │ └── symbol: foo\n * │ └── static member scope\n * │ └── symbol: bar\n * └── scope: namespace scope 2\n * └── (resolve bar from here)\n * ```\n *\n *\n * When we resolve the refkey for `bar` from within `namespace scope 2`, we will get the following\n * resolution result:\n *\n * * **targetDeclaration**: symbol bar, the symbol we resolved.\n * * **commonScope**: global scope, because this is the most specific scope that contains both the declaration and the reference.\n * * **pathUp**: [namespace scope 2], because this is the scope between the reference and the common scope.\n * * **pathDown**: [namespace scope 1], because this is the scope between the common scope and the declaration\n * * **memberPath**: [foo, bar], because we resolved a member symbol and these are the symbols that lead from the base declaration to the member symbol.\n */\n",
|
|
12450
13115
|
"excerptTokens": [
|
|
12451
13116
|
{
|
|
12452
13117
|
"kind": "Content",
|
|
@@ -12530,7 +13195,7 @@
|
|
|
12530
13195
|
{
|
|
12531
13196
|
"kind": "PropertySignature",
|
|
12532
13197
|
"canonicalReference": "@alloy-js/core!ResolutionResult#memberPath:member",
|
|
12533
|
-
"docComment": "/**\n * When resolving a member symbol, this is the path of symbols that lead from the base declaration to the member symbol.\n */\n",
|
|
13198
|
+
"docComment": "/**\n * When resolving a member symbol, this is the path of symbols that lead from\n * the base declaration to the member symbol.\n */\n",
|
|
12534
13199
|
"excerptTokens": [
|
|
12535
13200
|
{
|
|
12536
13201
|
"kind": "Content",
|
|
@@ -12641,7 +13306,7 @@
|
|
|
12641
13306
|
{
|
|
12642
13307
|
"kind": "Function",
|
|
12643
13308
|
"canonicalReference": "@alloy-js/core!resolve:function(1)",
|
|
12644
|
-
"docComment": "/**\n * Resolve a refkey in the current scope. Returns a Ref for the resolution result
|
|
13309
|
+
"docComment": "/**\n * Resolve a refkey in the current scope. Returns a Ref for the resolution result.\n * The value of the ref will be undefined if the identifier hasn't been resolved yet.\n *\n * @remarks\n *\n *\n *\n * This API may return a ref for undefined, but that does not mean that the symbol is\n * not found. The symbol you're looking for may not have been declared yet. When the symbol\n * is declared, the ref will be updated with the resolution result.\n */\n",
|
|
12645
13310
|
"excerptTokens": [
|
|
12646
13311
|
{
|
|
12647
13312
|
"kind": "Content",
|
|
@@ -12908,7 +13573,7 @@
|
|
|
12908
13573
|
{
|
|
12909
13574
|
"kind": "Function",
|
|
12910
13575
|
"canonicalReference": "@alloy-js/core!Scope:function(1)",
|
|
12911
|
-
"docComment": "",
|
|
13576
|
+
"docComment": "/**\n * Declare a scope for this component's children. Any symbols and scopes\n * declared in the children of this component will be in this scope.\n *\n * @see\n *\n * {@link ScopeContext}\n */\n",
|
|
12912
13577
|
"excerptTokens": [
|
|
12913
13578
|
{
|
|
12914
13579
|
"kind": "Content",
|
|
@@ -12917,7 +13582,7 @@
|
|
|
12917
13582
|
{
|
|
12918
13583
|
"kind": "Reference",
|
|
12919
13584
|
"text": "ScopeProps",
|
|
12920
|
-
"canonicalReference": "@alloy-js/core!ScopeProps:
|
|
13585
|
+
"canonicalReference": "@alloy-js/core!ScopeProps:type"
|
|
12921
13586
|
},
|
|
12922
13587
|
{
|
|
12923
13588
|
"kind": "Content",
|
|
@@ -12990,23 +13655,59 @@
|
|
|
12990
13655
|
}
|
|
12991
13656
|
},
|
|
12992
13657
|
{
|
|
12993
|
-
"kind": "
|
|
12994
|
-
"canonicalReference": "@alloy-js/core!ScopeProps:
|
|
13658
|
+
"kind": "TypeAlias",
|
|
13659
|
+
"canonicalReference": "@alloy-js/core!ScopeProps:type",
|
|
12995
13660
|
"docComment": "",
|
|
12996
13661
|
"excerptTokens": [
|
|
12997
13662
|
{
|
|
12998
13663
|
"kind": "Content",
|
|
12999
|
-
"text": "export
|
|
13664
|
+
"text": "export type ScopeProps = "
|
|
13665
|
+
},
|
|
13666
|
+
{
|
|
13667
|
+
"kind": "Reference",
|
|
13668
|
+
"text": "ScopePropsWithValue",
|
|
13669
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithValue:interface"
|
|
13670
|
+
},
|
|
13671
|
+
{
|
|
13672
|
+
"kind": "Content",
|
|
13673
|
+
"text": " | "
|
|
13674
|
+
},
|
|
13675
|
+
{
|
|
13676
|
+
"kind": "Reference",
|
|
13677
|
+
"text": "ScopePropsWithInfo",
|
|
13678
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithInfo:interface"
|
|
13679
|
+
},
|
|
13680
|
+
{
|
|
13681
|
+
"kind": "Content",
|
|
13682
|
+
"text": ";"
|
|
13000
13683
|
}
|
|
13001
13684
|
],
|
|
13002
13685
|
"fileUrlPath": "src/components/Scope.tsx",
|
|
13003
13686
|
"releaseTag": "Public",
|
|
13004
13687
|
"name": "ScopeProps",
|
|
13688
|
+
"typeTokenRange": {
|
|
13689
|
+
"startIndex": 1,
|
|
13690
|
+
"endIndex": 4
|
|
13691
|
+
}
|
|
13692
|
+
},
|
|
13693
|
+
{
|
|
13694
|
+
"kind": "Interface",
|
|
13695
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithInfo:interface",
|
|
13696
|
+
"docComment": "/**\n * Create a scope by providing a name and optional metadata.\n */\n",
|
|
13697
|
+
"excerptTokens": [
|
|
13698
|
+
{
|
|
13699
|
+
"kind": "Content",
|
|
13700
|
+
"text": "export interface ScopePropsWithInfo "
|
|
13701
|
+
}
|
|
13702
|
+
],
|
|
13703
|
+
"fileUrlPath": "src/components/Scope.tsx",
|
|
13704
|
+
"releaseTag": "Public",
|
|
13705
|
+
"name": "ScopePropsWithInfo",
|
|
13005
13706
|
"preserveMemberOrder": false,
|
|
13006
13707
|
"members": [
|
|
13007
13708
|
{
|
|
13008
13709
|
"kind": "PropertySignature",
|
|
13009
|
-
"canonicalReference": "@alloy-js/core!
|
|
13710
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithInfo#children:member",
|
|
13010
13711
|
"docComment": "",
|
|
13011
13712
|
"excerptTokens": [
|
|
13012
13713
|
{
|
|
@@ -13034,8 +13735,8 @@
|
|
|
13034
13735
|
},
|
|
13035
13736
|
{
|
|
13036
13737
|
"kind": "PropertySignature",
|
|
13037
|
-
"canonicalReference": "@alloy-js/core!
|
|
13038
|
-
"docComment": "",
|
|
13738
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithInfo#kind:member",
|
|
13739
|
+
"docComment": "/**\n * The kind of scope. This may be used by application code to determine how\n * to handle symbols in this scope. It is not used by the core framework.\n */\n",
|
|
13039
13740
|
"excerptTokens": [
|
|
13040
13741
|
{
|
|
13041
13742
|
"kind": "Content",
|
|
@@ -13061,16 +13762,21 @@
|
|
|
13061
13762
|
},
|
|
13062
13763
|
{
|
|
13063
13764
|
"kind": "PropertySignature",
|
|
13064
|
-
"canonicalReference": "@alloy-js/core!
|
|
13065
|
-
"docComment": "",
|
|
13765
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithInfo#metadata:member",
|
|
13766
|
+
"docComment": "/**\n * Additional metadata for the scope.\n */\n",
|
|
13066
13767
|
"excerptTokens": [
|
|
13067
13768
|
{
|
|
13068
13769
|
"kind": "Content",
|
|
13069
|
-
"text": "
|
|
13770
|
+
"text": "metadata?: "
|
|
13771
|
+
},
|
|
13772
|
+
{
|
|
13773
|
+
"kind": "Reference",
|
|
13774
|
+
"text": "Record",
|
|
13775
|
+
"canonicalReference": "!Record:type"
|
|
13070
13776
|
},
|
|
13071
13777
|
{
|
|
13072
13778
|
"kind": "Content",
|
|
13073
|
-
"text": "string"
|
|
13779
|
+
"text": "<string, unknown>"
|
|
13074
13780
|
},
|
|
13075
13781
|
{
|
|
13076
13782
|
"kind": "Content",
|
|
@@ -13080,25 +13786,24 @@
|
|
|
13080
13786
|
"isReadonly": false,
|
|
13081
13787
|
"isOptional": true,
|
|
13082
13788
|
"releaseTag": "Public",
|
|
13083
|
-
"name": "
|
|
13789
|
+
"name": "metadata",
|
|
13084
13790
|
"propertyTypeTokenRange": {
|
|
13085
13791
|
"startIndex": 1,
|
|
13086
|
-
"endIndex":
|
|
13792
|
+
"endIndex": 3
|
|
13087
13793
|
}
|
|
13088
13794
|
},
|
|
13089
13795
|
{
|
|
13090
13796
|
"kind": "PropertySignature",
|
|
13091
|
-
"canonicalReference": "@alloy-js/core!
|
|
13092
|
-
"docComment": "",
|
|
13797
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithInfo#name:member",
|
|
13798
|
+
"docComment": "/**\n * The name of this scope.\n */\n",
|
|
13093
13799
|
"excerptTokens": [
|
|
13094
13800
|
{
|
|
13095
13801
|
"kind": "Content",
|
|
13096
|
-
"text": "
|
|
13802
|
+
"text": "name?: "
|
|
13097
13803
|
},
|
|
13098
13804
|
{
|
|
13099
|
-
"kind": "
|
|
13100
|
-
"text": "
|
|
13101
|
-
"canonicalReference": "@alloy-js/core!OutputScope:interface"
|
|
13805
|
+
"kind": "Content",
|
|
13806
|
+
"text": "string"
|
|
13102
13807
|
},
|
|
13103
13808
|
{
|
|
13104
13809
|
"kind": "Content",
|
|
@@ -13108,7 +13813,81 @@
|
|
|
13108
13813
|
"isReadonly": false,
|
|
13109
13814
|
"isOptional": true,
|
|
13110
13815
|
"releaseTag": "Public",
|
|
13111
|
-
"name": "
|
|
13816
|
+
"name": "name",
|
|
13817
|
+
"propertyTypeTokenRange": {
|
|
13818
|
+
"startIndex": 1,
|
|
13819
|
+
"endIndex": 2
|
|
13820
|
+
}
|
|
13821
|
+
}
|
|
13822
|
+
],
|
|
13823
|
+
"extendsTokenRanges": []
|
|
13824
|
+
},
|
|
13825
|
+
{
|
|
13826
|
+
"kind": "Interface",
|
|
13827
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithValue:interface",
|
|
13828
|
+
"docComment": "/**\n * Declare a scope by providing an already created scope. The scope is merely\n * exposed via {@link ScopeContext}.\n */\n",
|
|
13829
|
+
"excerptTokens": [
|
|
13830
|
+
{
|
|
13831
|
+
"kind": "Content",
|
|
13832
|
+
"text": "export interface ScopePropsWithValue "
|
|
13833
|
+
}
|
|
13834
|
+
],
|
|
13835
|
+
"fileUrlPath": "src/components/Scope.tsx",
|
|
13836
|
+
"releaseTag": "Public",
|
|
13837
|
+
"name": "ScopePropsWithValue",
|
|
13838
|
+
"preserveMemberOrder": false,
|
|
13839
|
+
"members": [
|
|
13840
|
+
{
|
|
13841
|
+
"kind": "PropertySignature",
|
|
13842
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithValue#children:member",
|
|
13843
|
+
"docComment": "",
|
|
13844
|
+
"excerptTokens": [
|
|
13845
|
+
{
|
|
13846
|
+
"kind": "Content",
|
|
13847
|
+
"text": "children?: "
|
|
13848
|
+
},
|
|
13849
|
+
{
|
|
13850
|
+
"kind": "Reference",
|
|
13851
|
+
"text": "Children",
|
|
13852
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
13853
|
+
},
|
|
13854
|
+
{
|
|
13855
|
+
"kind": "Content",
|
|
13856
|
+
"text": ";"
|
|
13857
|
+
}
|
|
13858
|
+
],
|
|
13859
|
+
"isReadonly": false,
|
|
13860
|
+
"isOptional": true,
|
|
13861
|
+
"releaseTag": "Public",
|
|
13862
|
+
"name": "children",
|
|
13863
|
+
"propertyTypeTokenRange": {
|
|
13864
|
+
"startIndex": 1,
|
|
13865
|
+
"endIndex": 2
|
|
13866
|
+
}
|
|
13867
|
+
},
|
|
13868
|
+
{
|
|
13869
|
+
"kind": "PropertySignature",
|
|
13870
|
+
"canonicalReference": "@alloy-js/core!ScopePropsWithValue#value:member",
|
|
13871
|
+
"docComment": "/**\n * The scope to use. If not provided, a new scope will be created.\n */\n",
|
|
13872
|
+
"excerptTokens": [
|
|
13873
|
+
{
|
|
13874
|
+
"kind": "Content",
|
|
13875
|
+
"text": "value: "
|
|
13876
|
+
},
|
|
13877
|
+
{
|
|
13878
|
+
"kind": "Reference",
|
|
13879
|
+
"text": "OutputScope",
|
|
13880
|
+
"canonicalReference": "@alloy-js/core!OutputScope:interface"
|
|
13881
|
+
},
|
|
13882
|
+
{
|
|
13883
|
+
"kind": "Content",
|
|
13884
|
+
"text": ";"
|
|
13885
|
+
}
|
|
13886
|
+
],
|
|
13887
|
+
"isReadonly": false,
|
|
13888
|
+
"isOptional": false,
|
|
13889
|
+
"releaseTag": "Public",
|
|
13890
|
+
"name": "value",
|
|
13112
13891
|
"propertyTypeTokenRange": {
|
|
13113
13892
|
"startIndex": 1,
|
|
13114
13893
|
"endIndex": 2
|
|
@@ -13878,6 +14657,34 @@
|
|
|
13878
14657
|
"endIndex": 2
|
|
13879
14658
|
}
|
|
13880
14659
|
},
|
|
14660
|
+
{
|
|
14661
|
+
"kind": "PropertySignature",
|
|
14662
|
+
"canonicalReference": "@alloy-js/core!SourceFileProps#header:member",
|
|
14663
|
+
"docComment": "/**\n * The header of the file. This is rendered before the contents of the file.\n * This is useful for adding license headers or other metadata to the file.\n */\n",
|
|
14664
|
+
"excerptTokens": [
|
|
14665
|
+
{
|
|
14666
|
+
"kind": "Content",
|
|
14667
|
+
"text": "header?: "
|
|
14668
|
+
},
|
|
14669
|
+
{
|
|
14670
|
+
"kind": "Reference",
|
|
14671
|
+
"text": "Children",
|
|
14672
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
14673
|
+
},
|
|
14674
|
+
{
|
|
14675
|
+
"kind": "Content",
|
|
14676
|
+
"text": ";"
|
|
14677
|
+
}
|
|
14678
|
+
],
|
|
14679
|
+
"isReadonly": false,
|
|
14680
|
+
"isOptional": true,
|
|
14681
|
+
"releaseTag": "Public",
|
|
14682
|
+
"name": "header",
|
|
14683
|
+
"propertyTypeTokenRange": {
|
|
14684
|
+
"startIndex": 1,
|
|
14685
|
+
"endIndex": 2
|
|
14686
|
+
}
|
|
14687
|
+
},
|
|
13881
14688
|
{
|
|
13882
14689
|
"kind": "PropertySignature",
|
|
13883
14690
|
"canonicalReference": "@alloy-js/core!SourceFileProps#path:member",
|
|
@@ -13908,7 +14715,7 @@
|
|
|
13908
14715
|
{
|
|
13909
14716
|
"kind": "PropertySignature",
|
|
13910
14717
|
"canonicalReference": "@alloy-js/core!SourceFileProps#reference:member",
|
|
13911
|
-
"docComment": "/**\n * The component to use to render refkeys references within the file's contents.\n */\n",
|
|
14718
|
+
"docComment": "/**\n * The component to use to render refkeys references within the file's\n * contents.\n */\n",
|
|
13912
14719
|
"excerptTokens": [
|
|
13913
14720
|
{
|
|
13914
14721
|
"kind": "Content",
|
|
@@ -14273,36 +15080,87 @@
|
|
|
14273
15080
|
"kind": "Content",
|
|
14274
15081
|
"text": "): "
|
|
14275
15082
|
},
|
|
15083
|
+
{
|
|
15084
|
+
"kind": "Reference",
|
|
15085
|
+
"text": "StcSignature",
|
|
15086
|
+
"canonicalReference": "@alloy-js/core!StcSignature:type"
|
|
15087
|
+
},
|
|
14276
15088
|
{
|
|
14277
15089
|
"kind": "Content",
|
|
14278
|
-
"text": "
|
|
15090
|
+
"text": "<T>"
|
|
15091
|
+
},
|
|
15092
|
+
{
|
|
15093
|
+
"kind": "Content",
|
|
15094
|
+
"text": ";"
|
|
15095
|
+
}
|
|
15096
|
+
],
|
|
15097
|
+
"fileUrlPath": "src/stc.ts",
|
|
15098
|
+
"returnTypeTokenRange": {
|
|
15099
|
+
"startIndex": 6,
|
|
15100
|
+
"endIndex": 8
|
|
15101
|
+
},
|
|
15102
|
+
"releaseTag": "Public",
|
|
15103
|
+
"overloadIndex": 1,
|
|
15104
|
+
"parameters": [
|
|
15105
|
+
{
|
|
15106
|
+
"parameterName": "Component",
|
|
15107
|
+
"parameterTypeTokenRange": {
|
|
15108
|
+
"startIndex": 3,
|
|
15109
|
+
"endIndex": 5
|
|
15110
|
+
},
|
|
15111
|
+
"isOptional": false
|
|
15112
|
+
}
|
|
15113
|
+
],
|
|
15114
|
+
"typeParameters": [
|
|
15115
|
+
{
|
|
15116
|
+
"typeParameterName": "T",
|
|
15117
|
+
"constraintTokenRange": {
|
|
15118
|
+
"startIndex": 1,
|
|
15119
|
+
"endIndex": 2
|
|
15120
|
+
},
|
|
15121
|
+
"defaultTypeTokenRange": {
|
|
15122
|
+
"startIndex": 0,
|
|
15123
|
+
"endIndex": 0
|
|
15124
|
+
}
|
|
15125
|
+
}
|
|
15126
|
+
],
|
|
15127
|
+
"name": "stc"
|
|
15128
|
+
},
|
|
15129
|
+
{
|
|
15130
|
+
"kind": "TypeAlias",
|
|
15131
|
+
"canonicalReference": "@alloy-js/core!StcComponentCreator:type",
|
|
15132
|
+
"docComment": "",
|
|
15133
|
+
"excerptTokens": [
|
|
15134
|
+
{
|
|
15135
|
+
"kind": "Content",
|
|
15136
|
+
"text": "export type StcComponentCreator<T> = "
|
|
14279
15137
|
},
|
|
14280
15138
|
{
|
|
14281
15139
|
"kind": "Reference",
|
|
14282
|
-
"text": "
|
|
14283
|
-
"canonicalReference": "!
|
|
15140
|
+
"text": "ComponentCreator",
|
|
15141
|
+
"canonicalReference": "@alloy-js/core!ComponentCreator:interface"
|
|
14284
15142
|
},
|
|
14285
15143
|
{
|
|
14286
15144
|
"kind": "Content",
|
|
14287
|
-
"text": "<T
|
|
15145
|
+
"text": "<T> & {\n code(template: "
|
|
14288
15146
|
},
|
|
14289
15147
|
{
|
|
14290
15148
|
"kind": "Reference",
|
|
14291
|
-
"text": "
|
|
14292
|
-
"canonicalReference": "
|
|
15149
|
+
"text": "TemplateStringsArray",
|
|
15150
|
+
"canonicalReference": "!TemplateStringsArray:interface"
|
|
14293
15151
|
},
|
|
14294
15152
|
{
|
|
14295
15153
|
"kind": "Content",
|
|
14296
|
-
"text": "
|
|
15154
|
+
"text": ", ...substitutions: "
|
|
14297
15155
|
},
|
|
14298
15156
|
{
|
|
14299
15157
|
"kind": "Reference",
|
|
14300
|
-
"text": "
|
|
14301
|
-
"canonicalReference": "@alloy-js/core!
|
|
15158
|
+
"text": "Children",
|
|
15159
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
14302
15160
|
},
|
|
14303
15161
|
{
|
|
14304
15162
|
"kind": "Content",
|
|
14305
|
-
"text": "
|
|
15163
|
+
"text": "[]): "
|
|
14306
15164
|
},
|
|
14307
15165
|
{
|
|
14308
15166
|
"kind": "Reference",
|
|
@@ -14311,7 +15169,7 @@
|
|
|
14311
15169
|
},
|
|
14312
15170
|
{
|
|
14313
15171
|
"kind": "Content",
|
|
14314
|
-
"text": "<T
|
|
15172
|
+
"text": "<T>;\n text(template: "
|
|
14315
15173
|
},
|
|
14316
15174
|
{
|
|
14317
15175
|
"kind": "Reference",
|
|
@@ -14364,28 +15222,14 @@
|
|
|
14364
15222
|
}
|
|
14365
15223
|
],
|
|
14366
15224
|
"fileUrlPath": "src/stc.ts",
|
|
14367
|
-
"returnTypeTokenRange": {
|
|
14368
|
-
"startIndex": 6,
|
|
14369
|
-
"endIndex": 25
|
|
14370
|
-
},
|
|
14371
15225
|
"releaseTag": "Public",
|
|
14372
|
-
"
|
|
14373
|
-
"parameters": [
|
|
14374
|
-
{
|
|
14375
|
-
"parameterName": "Component",
|
|
14376
|
-
"parameterTypeTokenRange": {
|
|
14377
|
-
"startIndex": 3,
|
|
14378
|
-
"endIndex": 5
|
|
14379
|
-
},
|
|
14380
|
-
"isOptional": false
|
|
14381
|
-
}
|
|
14382
|
-
],
|
|
15226
|
+
"name": "StcComponentCreator",
|
|
14383
15227
|
"typeParameters": [
|
|
14384
15228
|
{
|
|
14385
15229
|
"typeParameterName": "T",
|
|
14386
15230
|
"constraintTokenRange": {
|
|
14387
|
-
"startIndex":
|
|
14388
|
-
"endIndex":
|
|
15231
|
+
"startIndex": 0,
|
|
15232
|
+
"endIndex": 0
|
|
14389
15233
|
},
|
|
14390
15234
|
"defaultTypeTokenRange": {
|
|
14391
15235
|
"startIndex": 0,
|
|
@@ -14393,37 +15237,27 @@
|
|
|
14393
15237
|
}
|
|
14394
15238
|
}
|
|
14395
15239
|
],
|
|
14396
|
-
"
|
|
15240
|
+
"typeTokenRange": {
|
|
15241
|
+
"startIndex": 1,
|
|
15242
|
+
"endIndex": 19
|
|
15243
|
+
}
|
|
14397
15244
|
},
|
|
14398
15245
|
{
|
|
14399
|
-
"kind": "
|
|
14400
|
-
"canonicalReference": "@alloy-js/core!
|
|
15246
|
+
"kind": "TypeAlias",
|
|
15247
|
+
"canonicalReference": "@alloy-js/core!StcSignature:type",
|
|
14401
15248
|
"docComment": "",
|
|
14402
15249
|
"excerptTokens": [
|
|
14403
15250
|
{
|
|
14404
15251
|
"kind": "Content",
|
|
14405
|
-
"text": "export
|
|
14406
|
-
},
|
|
14407
|
-
{
|
|
14408
|
-
"kind": "Content",
|
|
14409
|
-
"text": "keyof "
|
|
14410
|
-
},
|
|
14411
|
-
{
|
|
14412
|
-
"kind": "Reference",
|
|
14413
|
-
"text": "JSX.IntrinsicElements",
|
|
14414
|
-
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
14415
|
-
},
|
|
14416
|
-
{
|
|
14417
|
-
"kind": "Content",
|
|
14418
|
-
"text": ">(name: "
|
|
15252
|
+
"text": "export type StcSignature<T extends "
|
|
14419
15253
|
},
|
|
14420
15254
|
{
|
|
14421
15255
|
"kind": "Content",
|
|
14422
|
-
"text": "
|
|
15256
|
+
"text": "{}"
|
|
14423
15257
|
},
|
|
14424
15258
|
{
|
|
14425
15259
|
"kind": "Content",
|
|
14426
|
-
"text": "
|
|
15260
|
+
"text": "> = "
|
|
14427
15261
|
},
|
|
14428
15262
|
{
|
|
14429
15263
|
"kind": "Content",
|
|
@@ -14436,52 +15270,162 @@
|
|
|
14436
15270
|
},
|
|
14437
15271
|
{
|
|
14438
15272
|
"kind": "Content",
|
|
14439
|
-
"text": "<"
|
|
15273
|
+
"text": "<T, \"children\"> ? [props?: "
|
|
14440
15274
|
},
|
|
14441
15275
|
{
|
|
14442
15276
|
"kind": "Reference",
|
|
14443
|
-
"text": "
|
|
14444
|
-
"canonicalReference": "@alloy-js/core!
|
|
15277
|
+
"text": "MakeChildrenOptional",
|
|
15278
|
+
"canonicalReference": "@alloy-js/core!MakeChildrenOptional:type"
|
|
14445
15279
|
},
|
|
14446
15280
|
{
|
|
14447
15281
|
"kind": "Content",
|
|
14448
|
-
"text": "
|
|
15282
|
+
"text": "<T>] : [props: "
|
|
14449
15283
|
},
|
|
14450
15284
|
{
|
|
14451
15285
|
"kind": "Reference",
|
|
14452
|
-
"text": "
|
|
14453
|
-
"canonicalReference": "@alloy-js/core!
|
|
15286
|
+
"text": "MakeChildrenOptional",
|
|
15287
|
+
"canonicalReference": "@alloy-js/core!MakeChildrenOptional:type"
|
|
14454
15288
|
},
|
|
14455
15289
|
{
|
|
14456
15290
|
"kind": "Content",
|
|
14457
|
-
"text": "
|
|
15291
|
+
"text": "<T>]) => "
|
|
14458
15292
|
},
|
|
14459
15293
|
{
|
|
14460
15294
|
"kind": "Reference",
|
|
14461
|
-
"text": "
|
|
14462
|
-
"canonicalReference": "@alloy-js/core!
|
|
15295
|
+
"text": "StcComponentCreator",
|
|
15296
|
+
"canonicalReference": "@alloy-js/core!StcComponentCreator:type"
|
|
14463
15297
|
},
|
|
14464
15298
|
{
|
|
14465
15299
|
"kind": "Content",
|
|
14466
|
-
"text": "
|
|
14467
|
-
},
|
|
14468
|
-
{
|
|
14469
|
-
"kind": "Reference",
|
|
14470
|
-
"text": "IntrinsicElementBase",
|
|
14471
|
-
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
15300
|
+
"text": "<T>"
|
|
14472
15301
|
},
|
|
14473
15302
|
{
|
|
14474
15303
|
"kind": "Content",
|
|
14475
|
-
"text": "
|
|
14476
|
-
}
|
|
15304
|
+
"text": ";"
|
|
15305
|
+
}
|
|
15306
|
+
],
|
|
15307
|
+
"fileUrlPath": "src/stc.ts",
|
|
15308
|
+
"releaseTag": "Public",
|
|
15309
|
+
"name": "StcSignature",
|
|
15310
|
+
"typeParameters": [
|
|
14477
15311
|
{
|
|
14478
|
-
"
|
|
14479
|
-
"
|
|
14480
|
-
|
|
14481
|
-
|
|
15312
|
+
"typeParameterName": "T",
|
|
15313
|
+
"constraintTokenRange": {
|
|
15314
|
+
"startIndex": 1,
|
|
15315
|
+
"endIndex": 2
|
|
15316
|
+
},
|
|
15317
|
+
"defaultTypeTokenRange": {
|
|
15318
|
+
"startIndex": 0,
|
|
15319
|
+
"endIndex": 0
|
|
15320
|
+
}
|
|
15321
|
+
}
|
|
15322
|
+
],
|
|
15323
|
+
"typeTokenRange": {
|
|
15324
|
+
"startIndex": 3,
|
|
15325
|
+
"endIndex": 12
|
|
15326
|
+
}
|
|
15327
|
+
},
|
|
15328
|
+
{
|
|
15329
|
+
"kind": "Function",
|
|
15330
|
+
"canonicalReference": "@alloy-js/core!sti:function(1)",
|
|
15331
|
+
"docComment": "",
|
|
15332
|
+
"excerptTokens": [
|
|
14482
15333
|
{
|
|
14483
15334
|
"kind": "Content",
|
|
14484
|
-
"text": "
|
|
15335
|
+
"text": "export declare function sti<T extends "
|
|
15336
|
+
},
|
|
15337
|
+
{
|
|
15338
|
+
"kind": "Content",
|
|
15339
|
+
"text": "keyof "
|
|
15340
|
+
},
|
|
15341
|
+
{
|
|
15342
|
+
"kind": "Reference",
|
|
15343
|
+
"text": "JSX.IntrinsicElements",
|
|
15344
|
+
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
15345
|
+
},
|
|
15346
|
+
{
|
|
15347
|
+
"kind": "Content",
|
|
15348
|
+
"text": ">(name: "
|
|
15349
|
+
},
|
|
15350
|
+
{
|
|
15351
|
+
"kind": "Content",
|
|
15352
|
+
"text": "T"
|
|
15353
|
+
},
|
|
15354
|
+
{
|
|
15355
|
+
"kind": "Content",
|
|
15356
|
+
"text": "): "
|
|
15357
|
+
},
|
|
15358
|
+
{
|
|
15359
|
+
"kind": "Reference",
|
|
15360
|
+
"text": "StiSignature",
|
|
15361
|
+
"canonicalReference": "@alloy-js/core!StiSignature:type"
|
|
15362
|
+
},
|
|
15363
|
+
{
|
|
15364
|
+
"kind": "Content",
|
|
15365
|
+
"text": "<T>"
|
|
15366
|
+
},
|
|
15367
|
+
{
|
|
15368
|
+
"kind": "Content",
|
|
15369
|
+
"text": ";"
|
|
15370
|
+
}
|
|
15371
|
+
],
|
|
15372
|
+
"fileUrlPath": "src/sti.ts",
|
|
15373
|
+
"returnTypeTokenRange": {
|
|
15374
|
+
"startIndex": 6,
|
|
15375
|
+
"endIndex": 8
|
|
15376
|
+
},
|
|
15377
|
+
"releaseTag": "Public",
|
|
15378
|
+
"overloadIndex": 1,
|
|
15379
|
+
"parameters": [
|
|
15380
|
+
{
|
|
15381
|
+
"parameterName": "name",
|
|
15382
|
+
"parameterTypeTokenRange": {
|
|
15383
|
+
"startIndex": 4,
|
|
15384
|
+
"endIndex": 5
|
|
15385
|
+
},
|
|
15386
|
+
"isOptional": false
|
|
15387
|
+
}
|
|
15388
|
+
],
|
|
15389
|
+
"typeParameters": [
|
|
15390
|
+
{
|
|
15391
|
+
"typeParameterName": "T",
|
|
15392
|
+
"constraintTokenRange": {
|
|
15393
|
+
"startIndex": 1,
|
|
15394
|
+
"endIndex": 3
|
|
15395
|
+
},
|
|
15396
|
+
"defaultTypeTokenRange": {
|
|
15397
|
+
"startIndex": 0,
|
|
15398
|
+
"endIndex": 0
|
|
15399
|
+
}
|
|
15400
|
+
}
|
|
15401
|
+
],
|
|
15402
|
+
"name": "sti"
|
|
15403
|
+
},
|
|
15404
|
+
{
|
|
15405
|
+
"kind": "TypeAlias",
|
|
15406
|
+
"canonicalReference": "@alloy-js/core!StiComponentCreator:type",
|
|
15407
|
+
"docComment": "",
|
|
15408
|
+
"excerptTokens": [
|
|
15409
|
+
{
|
|
15410
|
+
"kind": "Content",
|
|
15411
|
+
"text": "export type StiComponentCreator<T extends "
|
|
15412
|
+
},
|
|
15413
|
+
{
|
|
15414
|
+
"kind": "Content",
|
|
15415
|
+
"text": "keyof "
|
|
15416
|
+
},
|
|
15417
|
+
{
|
|
15418
|
+
"kind": "Reference",
|
|
15419
|
+
"text": "JSX.IntrinsicElements",
|
|
15420
|
+
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
15421
|
+
},
|
|
15422
|
+
{
|
|
15423
|
+
"kind": "Content",
|
|
15424
|
+
"text": "> = "
|
|
15425
|
+
},
|
|
15426
|
+
{
|
|
15427
|
+
"kind": "Content",
|
|
15428
|
+
"text": "(() => "
|
|
14485
15429
|
},
|
|
14486
15430
|
{
|
|
14487
15431
|
"kind": "Reference",
|
|
@@ -14490,7 +15434,7 @@
|
|
|
14490
15434
|
},
|
|
14491
15435
|
{
|
|
14492
15436
|
"kind": "Content",
|
|
14493
|
-
"text": "<T>)
|
|
15437
|
+
"text": "<T>) & {\n code(template: "
|
|
14494
15438
|
},
|
|
14495
15439
|
{
|
|
14496
15440
|
"kind": "Reference",
|
|
@@ -14508,7 +15452,7 @@
|
|
|
14508
15452
|
},
|
|
14509
15453
|
{
|
|
14510
15454
|
"kind": "Content",
|
|
14511
|
-
"text": "[]): (
|
|
15455
|
+
"text": "[]): () => "
|
|
14512
15456
|
},
|
|
14513
15457
|
{
|
|
14514
15458
|
"kind": "Reference",
|
|
@@ -14517,30 +15461,158 @@
|
|
|
14517
15461
|
},
|
|
14518
15462
|
{
|
|
14519
15463
|
"kind": "Content",
|
|
14520
|
-
"text": "<T
|
|
15464
|
+
"text": "<T>;\n text(template: "
|
|
15465
|
+
},
|
|
15466
|
+
{
|
|
15467
|
+
"kind": "Reference",
|
|
15468
|
+
"text": "TemplateStringsArray",
|
|
15469
|
+
"canonicalReference": "!TemplateStringsArray:interface"
|
|
15470
|
+
},
|
|
15471
|
+
{
|
|
15472
|
+
"kind": "Content",
|
|
15473
|
+
"text": ", ...substitutions: "
|
|
15474
|
+
},
|
|
15475
|
+
{
|
|
15476
|
+
"kind": "Reference",
|
|
15477
|
+
"text": "Children",
|
|
15478
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
15479
|
+
},
|
|
15480
|
+
{
|
|
15481
|
+
"kind": "Content",
|
|
15482
|
+
"text": "[]): () => "
|
|
15483
|
+
},
|
|
15484
|
+
{
|
|
15485
|
+
"kind": "Reference",
|
|
15486
|
+
"text": "IntrinsicElementBase",
|
|
15487
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
15488
|
+
},
|
|
15489
|
+
{
|
|
15490
|
+
"kind": "Content",
|
|
15491
|
+
"text": "<T>;\n children(...children: "
|
|
15492
|
+
},
|
|
15493
|
+
{
|
|
15494
|
+
"kind": "Reference",
|
|
15495
|
+
"text": "Children",
|
|
15496
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
15497
|
+
},
|
|
15498
|
+
{
|
|
15499
|
+
"kind": "Content",
|
|
15500
|
+
"text": "[]): () => "
|
|
15501
|
+
},
|
|
15502
|
+
{
|
|
15503
|
+
"kind": "Reference",
|
|
15504
|
+
"text": "IntrinsicElementBase",
|
|
15505
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
15506
|
+
},
|
|
15507
|
+
{
|
|
15508
|
+
"kind": "Content",
|
|
15509
|
+
"text": "<T>;\n}"
|
|
14521
15510
|
},
|
|
14522
15511
|
{
|
|
14523
15512
|
"kind": "Content",
|
|
14524
15513
|
"text": ";"
|
|
14525
15514
|
}
|
|
14526
15515
|
],
|
|
14527
|
-
"fileUrlPath": "src/
|
|
14528
|
-
"returnTypeTokenRange": {
|
|
14529
|
-
"startIndex": 6,
|
|
14530
|
-
"endIndex": 27
|
|
14531
|
-
},
|
|
15516
|
+
"fileUrlPath": "src/sti.ts",
|
|
14532
15517
|
"releaseTag": "Public",
|
|
14533
|
-
"
|
|
14534
|
-
"
|
|
15518
|
+
"name": "StiComponentCreator",
|
|
15519
|
+
"typeParameters": [
|
|
14535
15520
|
{
|
|
14536
|
-
"
|
|
14537
|
-
"
|
|
14538
|
-
"startIndex":
|
|
14539
|
-
"endIndex":
|
|
15521
|
+
"typeParameterName": "T",
|
|
15522
|
+
"constraintTokenRange": {
|
|
15523
|
+
"startIndex": 1,
|
|
15524
|
+
"endIndex": 3
|
|
14540
15525
|
},
|
|
14541
|
-
"
|
|
15526
|
+
"defaultTypeTokenRange": {
|
|
15527
|
+
"startIndex": 0,
|
|
15528
|
+
"endIndex": 0
|
|
15529
|
+
}
|
|
14542
15530
|
}
|
|
14543
15531
|
],
|
|
15532
|
+
"typeTokenRange": {
|
|
15533
|
+
"startIndex": 4,
|
|
15534
|
+
"endIndex": 23
|
|
15535
|
+
}
|
|
15536
|
+
},
|
|
15537
|
+
{
|
|
15538
|
+
"kind": "TypeAlias",
|
|
15539
|
+
"canonicalReference": "@alloy-js/core!StiSignature:type",
|
|
15540
|
+
"docComment": "",
|
|
15541
|
+
"excerptTokens": [
|
|
15542
|
+
{
|
|
15543
|
+
"kind": "Content",
|
|
15544
|
+
"text": "export type StiSignature<T extends "
|
|
15545
|
+
},
|
|
15546
|
+
{
|
|
15547
|
+
"kind": "Content",
|
|
15548
|
+
"text": "keyof "
|
|
15549
|
+
},
|
|
15550
|
+
{
|
|
15551
|
+
"kind": "Reference",
|
|
15552
|
+
"text": "JSX.IntrinsicElements",
|
|
15553
|
+
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
15554
|
+
},
|
|
15555
|
+
{
|
|
15556
|
+
"kind": "Content",
|
|
15557
|
+
"text": "> = "
|
|
15558
|
+
},
|
|
15559
|
+
{
|
|
15560
|
+
"kind": "Content",
|
|
15561
|
+
"text": "(...args: unknown extends T ? [] : {} extends "
|
|
15562
|
+
},
|
|
15563
|
+
{
|
|
15564
|
+
"kind": "Reference",
|
|
15565
|
+
"text": "Omit",
|
|
15566
|
+
"canonicalReference": "!Omit:type"
|
|
15567
|
+
},
|
|
15568
|
+
{
|
|
15569
|
+
"kind": "Content",
|
|
15570
|
+
"text": "<"
|
|
15571
|
+
},
|
|
15572
|
+
{
|
|
15573
|
+
"kind": "Reference",
|
|
15574
|
+
"text": "JSX.IntrinsicElements",
|
|
15575
|
+
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
15576
|
+
},
|
|
15577
|
+
{
|
|
15578
|
+
"kind": "Content",
|
|
15579
|
+
"text": "[T], \"children\"> ? [\n props?: "
|
|
15580
|
+
},
|
|
15581
|
+
{
|
|
15582
|
+
"kind": "Reference",
|
|
15583
|
+
"text": "JSX.IntrinsicElements",
|
|
15584
|
+
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
15585
|
+
},
|
|
15586
|
+
{
|
|
15587
|
+
"kind": "Content",
|
|
15588
|
+
"text": "[T]\n] : [props: "
|
|
15589
|
+
},
|
|
15590
|
+
{
|
|
15591
|
+
"kind": "Reference",
|
|
15592
|
+
"text": "JSX.IntrinsicElements",
|
|
15593
|
+
"canonicalReference": "@alloy-js/core!JSX.IntrinsicElements:interface"
|
|
15594
|
+
},
|
|
15595
|
+
{
|
|
15596
|
+
"kind": "Content",
|
|
15597
|
+
"text": "[T]]) => "
|
|
15598
|
+
},
|
|
15599
|
+
{
|
|
15600
|
+
"kind": "Reference",
|
|
15601
|
+
"text": "StiComponentCreator",
|
|
15602
|
+
"canonicalReference": "@alloy-js/core!StiComponentCreator:type"
|
|
15603
|
+
},
|
|
15604
|
+
{
|
|
15605
|
+
"kind": "Content",
|
|
15606
|
+
"text": "<T>"
|
|
15607
|
+
},
|
|
15608
|
+
{
|
|
15609
|
+
"kind": "Content",
|
|
15610
|
+
"text": ";"
|
|
15611
|
+
}
|
|
15612
|
+
],
|
|
15613
|
+
"fileUrlPath": "src/sti.ts",
|
|
15614
|
+
"releaseTag": "Public",
|
|
15615
|
+
"name": "StiSignature",
|
|
14544
15616
|
"typeParameters": [
|
|
14545
15617
|
{
|
|
14546
15618
|
"typeParameterName": "T",
|
|
@@ -14554,12 +15626,15 @@
|
|
|
14554
15626
|
}
|
|
14555
15627
|
}
|
|
14556
15628
|
],
|
|
14557
|
-
"
|
|
15629
|
+
"typeTokenRange": {
|
|
15630
|
+
"startIndex": 4,
|
|
15631
|
+
"endIndex": 15
|
|
15632
|
+
}
|
|
14558
15633
|
},
|
|
14559
15634
|
{
|
|
14560
15635
|
"kind": "Function",
|
|
14561
15636
|
"canonicalReference": "@alloy-js/core!Switch:function(1)",
|
|
14562
|
-
"docComment": "/**\n * Conditionally render blocks of content based on the `when` prop of nested {@link Match} components.\n *\n * @example\n * ```tsx\n * <Switch>\n * <Match when={someCondition}>\n * <div>Condition met!</div>\n * </Match>\n * <Match else>\n * <div>Condition not met!</div>\n * </Match>\n * </Switch>\n * ```\n *\n */\n",
|
|
15637
|
+
"docComment": "/**\n * Conditionally render blocks of content based on the `when` prop of nested\n * {@link Match} components.\n *\n * @example\n *\n *\n *\n * ```tsx\n * <Switch>\n * <Match when={someCondition}>\n * <div>Condition met!</div>\n * </Match>\n * <Match else>\n * <div>Condition not met!</div>\n * </Match>\n * </Switch>\n * ```\n *\n */\n",
|
|
14563
15638
|
"excerptTokens": [
|
|
14564
15639
|
{
|
|
14565
15640
|
"kind": "Content",
|
|
@@ -14817,7 +15892,7 @@
|
|
|
14817
15892
|
{
|
|
14818
15893
|
"kind": "Interface",
|
|
14819
15894
|
"canonicalReference": "@alloy-js/core!Tap:interface",
|
|
14820
|
-
"docComment": "",
|
|
15895
|
+
"docComment": "/**\n * The return value of {@link createTap}, this holds a reference to the tapped\n * value. It will be undefined until the tapped value is initialized.\n */\n",
|
|
14821
15896
|
"excerptTokens": [
|
|
14822
15897
|
{
|
|
14823
15898
|
"kind": "Content",
|
|
@@ -14854,7 +15929,7 @@
|
|
|
14854
15929
|
{
|
|
14855
15930
|
"kind": "PropertySignature",
|
|
14856
15931
|
"canonicalReference": "@alloy-js/core!Tap#ref:member",
|
|
14857
|
-
"docComment": "",
|
|
15932
|
+
"docComment": "/**\n * Ref for the tapped value\n */\n",
|
|
14858
15933
|
"excerptTokens": [
|
|
14859
15934
|
{
|
|
14860
15935
|
"kind": "Content",
|
|
@@ -14891,10 +15966,84 @@
|
|
|
14891
15966
|
}
|
|
14892
15967
|
]
|
|
14893
15968
|
},
|
|
15969
|
+
{
|
|
15970
|
+
"kind": "Interface",
|
|
15971
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface",
|
|
15972
|
+
"docComment": "/**\n * A function that is called when the tapped value is available.\n */\n",
|
|
15973
|
+
"excerptTokens": [
|
|
15974
|
+
{
|
|
15975
|
+
"kind": "Content",
|
|
15976
|
+
"text": "export interface TapHandler<T> "
|
|
15977
|
+
}
|
|
15978
|
+
],
|
|
15979
|
+
"fileUrlPath": "src/tap.ts",
|
|
15980
|
+
"releaseTag": "Public",
|
|
15981
|
+
"typeParameters": [
|
|
15982
|
+
{
|
|
15983
|
+
"typeParameterName": "T",
|
|
15984
|
+
"constraintTokenRange": {
|
|
15985
|
+
"startIndex": 0,
|
|
15986
|
+
"endIndex": 0
|
|
15987
|
+
},
|
|
15988
|
+
"defaultTypeTokenRange": {
|
|
15989
|
+
"startIndex": 0,
|
|
15990
|
+
"endIndex": 0
|
|
15991
|
+
}
|
|
15992
|
+
}
|
|
15993
|
+
],
|
|
15994
|
+
"name": "TapHandler",
|
|
15995
|
+
"preserveMemberOrder": false,
|
|
15996
|
+
"members": [
|
|
15997
|
+
{
|
|
15998
|
+
"kind": "CallSignature",
|
|
15999
|
+
"canonicalReference": "@alloy-js/core!TapHandler:call(1)",
|
|
16000
|
+
"docComment": "",
|
|
16001
|
+
"excerptTokens": [
|
|
16002
|
+
{
|
|
16003
|
+
"kind": "Content",
|
|
16004
|
+
"text": "(value: "
|
|
16005
|
+
},
|
|
16006
|
+
{
|
|
16007
|
+
"kind": "Content",
|
|
16008
|
+
"text": "T"
|
|
16009
|
+
},
|
|
16010
|
+
{
|
|
16011
|
+
"kind": "Content",
|
|
16012
|
+
"text": "): "
|
|
16013
|
+
},
|
|
16014
|
+
{
|
|
16015
|
+
"kind": "Content",
|
|
16016
|
+
"text": "void"
|
|
16017
|
+
},
|
|
16018
|
+
{
|
|
16019
|
+
"kind": "Content",
|
|
16020
|
+
"text": ";"
|
|
16021
|
+
}
|
|
16022
|
+
],
|
|
16023
|
+
"returnTypeTokenRange": {
|
|
16024
|
+
"startIndex": 3,
|
|
16025
|
+
"endIndex": 4
|
|
16026
|
+
},
|
|
16027
|
+
"releaseTag": "Public",
|
|
16028
|
+
"overloadIndex": 1,
|
|
16029
|
+
"parameters": [
|
|
16030
|
+
{
|
|
16031
|
+
"parameterName": "value",
|
|
16032
|
+
"parameterTypeTokenRange": {
|
|
16033
|
+
"startIndex": 1,
|
|
16034
|
+
"endIndex": 2
|
|
16035
|
+
},
|
|
16036
|
+
"isOptional": false
|
|
16037
|
+
}
|
|
16038
|
+
]
|
|
16039
|
+
}
|
|
16040
|
+
],
|
|
16041
|
+
"extendsTokenRanges": []
|
|
16042
|
+
},
|
|
14894
16043
|
{
|
|
14895
16044
|
"kind": "Interface",
|
|
14896
16045
|
"canonicalReference": "@alloy-js/core!Tapper:interface",
|
|
14897
|
-
"docComment": "",
|
|
16046
|
+
"docComment": "/**\n * A function called when the Tap is rendered.\n *\n * @returns The tapped value.\n */\n",
|
|
14898
16047
|
"excerptTokens": [
|
|
14899
16048
|
{
|
|
14900
16049
|
"kind": "Content",
|
|
@@ -14948,10 +16097,78 @@
|
|
|
14948
16097
|
],
|
|
14949
16098
|
"extendsTokenRanges": []
|
|
14950
16099
|
},
|
|
16100
|
+
{
|
|
16101
|
+
"kind": "Function",
|
|
16102
|
+
"canonicalReference": "@alloy-js/core!text:function(1)",
|
|
16103
|
+
"docComment": "",
|
|
16104
|
+
"excerptTokens": [
|
|
16105
|
+
{
|
|
16106
|
+
"kind": "Content",
|
|
16107
|
+
"text": "export declare function text(template: "
|
|
16108
|
+
},
|
|
16109
|
+
{
|
|
16110
|
+
"kind": "Reference",
|
|
16111
|
+
"text": "TemplateStringsArray",
|
|
16112
|
+
"canonicalReference": "!TemplateStringsArray:interface"
|
|
16113
|
+
},
|
|
16114
|
+
{
|
|
16115
|
+
"kind": "Content",
|
|
16116
|
+
"text": ", ...substitutions: "
|
|
16117
|
+
},
|
|
16118
|
+
{
|
|
16119
|
+
"kind": "Reference",
|
|
16120
|
+
"text": "Children",
|
|
16121
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
16122
|
+
},
|
|
16123
|
+
{
|
|
16124
|
+
"kind": "Content",
|
|
16125
|
+
"text": "[]"
|
|
16126
|
+
},
|
|
16127
|
+
{
|
|
16128
|
+
"kind": "Content",
|
|
16129
|
+
"text": "): "
|
|
16130
|
+
},
|
|
16131
|
+
{
|
|
16132
|
+
"kind": "Reference",
|
|
16133
|
+
"text": "Children",
|
|
16134
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
16135
|
+
},
|
|
16136
|
+
{
|
|
16137
|
+
"kind": "Content",
|
|
16138
|
+
"text": ";"
|
|
16139
|
+
}
|
|
16140
|
+
],
|
|
16141
|
+
"fileUrlPath": "src/code.ts",
|
|
16142
|
+
"returnTypeTokenRange": {
|
|
16143
|
+
"startIndex": 6,
|
|
16144
|
+
"endIndex": 7
|
|
16145
|
+
},
|
|
16146
|
+
"releaseTag": "Public",
|
|
16147
|
+
"overloadIndex": 1,
|
|
16148
|
+
"parameters": [
|
|
16149
|
+
{
|
|
16150
|
+
"parameterName": "template",
|
|
16151
|
+
"parameterTypeTokenRange": {
|
|
16152
|
+
"startIndex": 1,
|
|
16153
|
+
"endIndex": 2
|
|
16154
|
+
},
|
|
16155
|
+
"isOptional": false
|
|
16156
|
+
},
|
|
16157
|
+
{
|
|
16158
|
+
"parameterName": "substitutions",
|
|
16159
|
+
"parameterTypeTokenRange": {
|
|
16160
|
+
"startIndex": 3,
|
|
16161
|
+
"endIndex": 5
|
|
16162
|
+
},
|
|
16163
|
+
"isOptional": false
|
|
16164
|
+
}
|
|
16165
|
+
],
|
|
16166
|
+
"name": "text"
|
|
16167
|
+
},
|
|
14951
16168
|
{
|
|
14952
16169
|
"kind": "Function",
|
|
14953
16170
|
"canonicalReference": "@alloy-js/core!traverseOutput:function(1)",
|
|
14954
|
-
"docComment": "/**\n * Traverse the output from {@link render} and call the visitor for each file and directory within it.\n *\n * @param sourceDirectory - The root directory to traverse.\n *\n * @param visitor - The visitor to call for each file and directory.\n */\n",
|
|
16171
|
+
"docComment": "/**\n * Traverse the output from {@link render} and call the visitor for each\n * file and directory within it.\n *\n * @param sourceDirectory - The root directory to traverse.\n *\n * @param visitor - The visitor to call for each file and directory.\n */\n",
|
|
14955
16172
|
"excerptTokens": [
|
|
14956
16173
|
{
|
|
14957
16174
|
"kind": "Content",
|
|
@@ -14984,7 +16201,7 @@
|
|
|
14984
16201
|
"text": ";"
|
|
14985
16202
|
}
|
|
14986
16203
|
],
|
|
14987
|
-
"fileUrlPath": "src/utils.
|
|
16204
|
+
"fileUrlPath": "src/utils.tsx",
|
|
14988
16205
|
"returnTypeTokenRange": {
|
|
14989
16206
|
"startIndex": 5,
|
|
14990
16207
|
"endIndex": 6
|
|
@@ -15164,7 +16381,7 @@
|
|
|
15164
16381
|
{
|
|
15165
16382
|
"kind": "Function",
|
|
15166
16383
|
"canonicalReference": "@alloy-js/core!useDefaultScope:function(1)",
|
|
15167
|
-
"docComment": "/**\n * Use symbol flags to determine the scope in which a symbol with those flags should be declared given the current context.\n *\n * @param flags - The symbol flags to use to determine the default scope.\n *\n * @returns
|
|
16384
|
+
"docComment": "/**\n * Use symbol flags to determine the scope in which a symbol with those flags\n * should be declared given the current context.\n *\n * @param flags - The symbol flags to use to determine the default scope.\n *\n * @returns an {@link OutputScope} that is the default scope for the given\n * flags.\n */\n",
|
|
15168
16385
|
"excerptTokens": [
|
|
15169
16386
|
{
|
|
15170
16387
|
"kind": "Content",
|
|
@@ -15339,7 +16556,7 @@
|
|
|
15339
16556
|
{
|
|
15340
16557
|
"kind": "Function",
|
|
15341
16558
|
"canonicalReference": "@alloy-js/core!Wrap:function(1)",
|
|
15342
|
-
"docComment": "/**\n * Conditionally wrap the children of this component with the component given to `with` and passing `props` to it.\n */\n",
|
|
16559
|
+
"docComment": "/**\n * Conditionally wrap the children of this component with the component given to\n * `with` and passing `props` to it.\n */\n",
|
|
15343
16560
|
"excerptTokens": [
|
|
15344
16561
|
{
|
|
15345
16562
|
"kind": "Content",
|
|
@@ -15491,7 +16708,7 @@
|
|
|
15491
16708
|
{
|
|
15492
16709
|
"kind": "PropertySignature",
|
|
15493
16710
|
"canonicalReference": "@alloy-js/core!WrapProps#when:member",
|
|
15494
|
-
"docComment": "/**\n * When true, the children will be wrapped with the provided component
|
|
16711
|
+
"docComment": "/**\n * When true, the children will be wrapped with the provided component.\n * Otherwise, the children will be rendered as is.\n */\n",
|
|
15495
16712
|
"excerptTokens": [
|
|
15496
16713
|
{
|
|
15497
16714
|
"kind": "Content",
|
|
@@ -15553,7 +16770,7 @@
|
|
|
15553
16770
|
{
|
|
15554
16771
|
"kind": "Function",
|
|
15555
16772
|
"canonicalReference": "@alloy-js/core!writeOutput:function(1)",
|
|
15556
|
-
"docComment": "/**\n * Write the output from {@link render} to the file system.\n */\n",
|
|
16773
|
+
"docComment": "/**\n * Write the output from {@link render} to the file system.\n *\n */\n",
|
|
15557
16774
|
"excerptTokens": [
|
|
15558
16775
|
{
|
|
15559
16776
|
"kind": "Content",
|