@alloy-js/core 0.19.0-dev.3 → 0.20.0-dev.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 +22 -0
- package/dist/src/components/AppendFile.d.ts +90 -0
- package/dist/src/components/AppendFile.d.ts.map +1 -0
- package/dist/src/components/AppendFile.js +226 -0
- package/dist/src/components/CopyFile.d.ts +12 -0
- package/dist/src/components/CopyFile.d.ts.map +1 -0
- package/dist/src/components/CopyFile.js +15 -0
- package/dist/src/components/TemplateFile.d.ts +84 -0
- package/dist/src/components/TemplateFile.d.ts.map +1 -0
- package/dist/src/components/TemplateFile.js +133 -0
- package/dist/src/components/UpdateFile.d.ts +34 -0
- package/dist/src/components/UpdateFile.d.ts.map +1 -0
- package/dist/src/components/UpdateFile.js +66 -0
- package/dist/src/components/index.d.ts +4 -0
- package/dist/src/components/index.d.ts.map +1 -1
- package/dist/src/components/index.js +4 -0
- package/dist/src/components/stc/index.d.ts +4 -0
- package/dist/src/components/stc/index.d.ts.map +1 -1
- package/dist/src/components/stc/index.js +4 -0
- package/dist/src/context/source-directory.d.ts +3 -3
- package/dist/src/context/source-directory.d.ts.map +1 -1
- package/dist/src/context/source-file.d.ts +4 -0
- package/dist/src/context/source-file.d.ts.map +1 -1
- package/dist/src/debug.d.ts.map +1 -1
- package/dist/src/debug.js +4 -1
- package/dist/src/host/alloy-host.browser.d.ts +11 -0
- package/dist/src/host/alloy-host.browser.d.ts.map +1 -0
- package/dist/src/host/alloy-host.browser.js +31 -0
- package/dist/src/host/alloy-host.d.ts +11 -0
- package/dist/src/host/alloy-host.d.ts.map +1 -0
- package/dist/src/host/alloy-host.js +143 -0
- package/dist/src/host/interface.d.ts +144 -0
- package/dist/src/host/interface.d.ts.map +1 -0
- package/dist/src/host/interface.js +1 -0
- package/dist/src/index.browser.d.ts +1 -1
- package/dist/src/index.browser.d.ts.map +1 -1
- package/dist/src/index.browser.js +2 -2
- package/dist/src/render.d.ts +10 -2
- package/dist/src/render.d.ts.map +1 -1
- package/dist/src/render.js +20 -1
- package/dist/src/resource.d.ts +80 -0
- package/dist/src/resource.d.ts.map +1 -0
- package/dist/src/resource.js +118 -0
- package/dist/src/scheduler.d.ts +6 -0
- package/dist/src/scheduler.d.ts.map +1 -1
- package/dist/src/scheduler.js +36 -0
- package/dist/src/write-output.d.ts +1 -1
- package/dist/src/write-output.d.ts.map +1 -1
- package/dist/src/write-output.js +40 -21
- package/dist/test/components/append-file.test.d.ts +2 -0
- package/dist/test/components/append-file.test.d.ts.map +1 -0
- package/dist/test/components/append-file.test.js +281 -0
- package/dist/test/components/copy-file.test.d.ts +2 -0
- package/dist/test/components/copy-file.test.d.ts.map +1 -0
- package/dist/test/components/copy-file.test.js +94 -0
- package/dist/test/components/source-file.test.d.ts.map +1 -1
- package/dist/test/components/template-file.test.d.ts +2 -0
- package/dist/test/components/template-file.test.d.ts.map +1 -0
- package/dist/test/components/template-file.test.js +133 -0
- package/dist/test/components/update-file.test.d.ts +2 -0
- package/dist/test/components/update-file.test.d.ts.map +1 -0
- package/dist/test/components/update-file.test.js +169 -0
- package/dist/test/rendering/formatting.test.d.ts.map +1 -1
- package/dist/testing/extend-expect.js +60 -54
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/components/AppendFile.tsx +294 -0
- package/src/components/CopyFile.tsx +29 -0
- package/src/components/TemplateFile.tsx +193 -0
- package/src/components/UpdateFile.tsx +86 -0
- package/src/components/index.tsx +4 -0
- package/src/components/stc/index.ts +4 -0
- package/src/context/source-directory.ts +5 -3
- package/src/context/source-file.ts +5 -0
- package/src/debug.ts +4 -1
- package/src/host/alloy-host.browser.ts +56 -0
- package/src/host/alloy-host.ts +160 -0
- package/src/host/interface.ts +153 -0
- package/src/index.browser.ts +1 -1
- package/src/render.ts +44 -5
- package/src/resource.ts +152 -0
- package/src/scheduler.ts +39 -0
- package/src/write-output.ts +49 -19
- package/temp/api.json +2009 -546
- package/test/components/append-file.test.tsx +275 -0
- package/test/components/copy-file.test.tsx +98 -0
- package/test/components/source-file.test.tsx +5 -2
- package/test/components/template-file.test.tsx +127 -0
- package/test/components/update-file.test.tsx +214 -0
- package/test/rendering/formatting.test.tsx +9 -3
- package/testing/extend-expect.ts +74 -58
- package/testing/vitest.d.ts +4 -0
- package/dist/src/write-output.browser.d.ts +0 -2
- package/dist/src/write-output.browser.d.ts.map +0 -1
- package/dist/src/write-output.browser.js +0 -4
- package/src/write-output.browser.ts +0 -4
package/temp/api.json
CHANGED
|
@@ -203,33 +203,108 @@
|
|
|
203
203
|
"endIndex": 3
|
|
204
204
|
}
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
"kind": "Function",
|
|
208
|
+
"canonicalReference": "@alloy-js/core!AppendFile:function(1)",
|
|
209
|
+
"docComment": "/**\n * A component that reads a file and returns content with new content appended\n * at the end or within specific regions marked by alloy-\\{region name\\}-start/alloy-\\{region name\\}-end sigils.\n *\n * The component can append content in two ways:\n * 1. **Simple append**: Content is appended to the end of the file\n * 2. **Region-based append**: Content is appended before the end sigil on its own line\n *\n * Region sigils are line-based - any line containing \"alloy-\\{region name\\}-start\" or \"alloy-\\{region name\\}-end\"\n * is considered a sigil.\n *\n * @example\n *\n *\n * Simple append to end of file:\n * ```tsx\n * <AppendFile path=\"output.txt\">\n * <AppendRegion id=\"append\">New content to add</AppendRegion>\n * </AppendFile>\n *\n * // Returns:\n * // Original file content\n * // New content to add\n * ```\n *\n * @example\n *\n *\n * Append to specific regions:\n * ```tsx\n * // File content before:\n * // Header content\n * // <!-- alloy-main-start -->\n * // <!-- alloy-main-end -->\n * // Footer content\n *\n * <AppendFile path=\"template.html\" regions={[\"main\"]}>\n * <AppendRegion id=\"main\">New main content</AppendRegion>\n * </AppendFile>\n *\n * // Returns:\n * // Header content\n * // <!-- alloy-main-start -->\n * // New main content\n * // <!-- alloy-main-end -->\n * // Footer content\n * ```\n *\n */\n",
|
|
210
|
+
"excerptTokens": [
|
|
211
|
+
{
|
|
212
|
+
"kind": "Content",
|
|
213
|
+
"text": "export declare function AppendFile(props: "
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"kind": "Reference",
|
|
217
|
+
"text": "AppendFileProps",
|
|
218
|
+
"canonicalReference": "@alloy-js/core!AppendFileProps:interface"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"kind": "Content",
|
|
222
|
+
"text": "): "
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"kind": "Reference",
|
|
226
|
+
"text": "Children",
|
|
227
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"kind": "Content",
|
|
231
|
+
"text": ";"
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
235
|
+
"returnTypeTokenRange": {
|
|
236
|
+
"startIndex": 3,
|
|
237
|
+
"endIndex": 4
|
|
238
|
+
},
|
|
239
|
+
"releaseTag": "Public",
|
|
240
|
+
"overloadIndex": 1,
|
|
241
|
+
"parameters": [
|
|
242
|
+
{
|
|
243
|
+
"parameterName": "props",
|
|
244
|
+
"parameterTypeTokenRange": {
|
|
245
|
+
"startIndex": 1,
|
|
246
|
+
"endIndex": 2
|
|
247
|
+
},
|
|
248
|
+
"isOptional": false
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"name": "AppendFile"
|
|
252
|
+
},
|
|
206
253
|
{
|
|
207
254
|
"kind": "Interface",
|
|
208
|
-
"canonicalReference": "@alloy-js/core!
|
|
255
|
+
"canonicalReference": "@alloy-js/core!AppendFileProps:interface",
|
|
209
256
|
"docComment": "",
|
|
210
257
|
"excerptTokens": [
|
|
211
258
|
{
|
|
212
259
|
"kind": "Content",
|
|
213
|
-
"text": "export interface
|
|
260
|
+
"text": "export interface AppendFileProps "
|
|
214
261
|
}
|
|
215
262
|
],
|
|
216
|
-
"fileUrlPath": "src/
|
|
263
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
217
264
|
"releaseTag": "Public",
|
|
218
|
-
"name": "
|
|
265
|
+
"name": "AppendFileProps",
|
|
219
266
|
"preserveMemberOrder": false,
|
|
220
267
|
"members": [
|
|
221
268
|
{
|
|
222
269
|
"kind": "PropertySignature",
|
|
223
|
-
"canonicalReference": "@alloy-js/core!
|
|
224
|
-
"docComment": "/**\n *
|
|
270
|
+
"canonicalReference": "@alloy-js/core!AppendFileProps#children:member",
|
|
271
|
+
"docComment": "/**\n * AppendRegion children components that define content to append.\n */\n",
|
|
225
272
|
"excerptTokens": [
|
|
226
273
|
{
|
|
227
274
|
"kind": "Content",
|
|
228
|
-
"text": "
|
|
275
|
+
"text": "children?: "
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"kind": "Reference",
|
|
279
|
+
"text": "Children",
|
|
280
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
229
281
|
},
|
|
230
282
|
{
|
|
231
283
|
"kind": "Content",
|
|
232
|
-
"text": "
|
|
284
|
+
"text": ";"
|
|
285
|
+
}
|
|
286
|
+
],
|
|
287
|
+
"isReadonly": false,
|
|
288
|
+
"isOptional": true,
|
|
289
|
+
"releaseTag": "Public",
|
|
290
|
+
"name": "children",
|
|
291
|
+
"propertyTypeTokenRange": {
|
|
292
|
+
"startIndex": 1,
|
|
293
|
+
"endIndex": 2
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"kind": "PropertySignature",
|
|
298
|
+
"canonicalReference": "@alloy-js/core!AppendFileProps#path:member",
|
|
299
|
+
"docComment": "/**\n * The path to the file to read and append content to.\n */\n",
|
|
300
|
+
"excerptTokens": [
|
|
301
|
+
{
|
|
302
|
+
"kind": "Content",
|
|
303
|
+
"text": "path: "
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"kind": "Content",
|
|
307
|
+
"text": "string"
|
|
233
308
|
},
|
|
234
309
|
{
|
|
235
310
|
"kind": "Content",
|
|
@@ -239,7 +314,7 @@
|
|
|
239
314
|
"isReadonly": false,
|
|
240
315
|
"isOptional": false,
|
|
241
316
|
"releaseTag": "Public",
|
|
242
|
-
"name": "
|
|
317
|
+
"name": "path",
|
|
243
318
|
"propertyTypeTokenRange": {
|
|
244
319
|
"startIndex": 1,
|
|
245
320
|
"endIndex": 2
|
|
@@ -247,17 +322,16 @@
|
|
|
247
322
|
},
|
|
248
323
|
{
|
|
249
324
|
"kind": "PropertySignature",
|
|
250
|
-
"canonicalReference": "@alloy-js/core!
|
|
251
|
-
"docComment": "/**\n *
|
|
325
|
+
"canonicalReference": "@alloy-js/core!AppendFileProps#regions:member",
|
|
326
|
+
"docComment": "/**\n * List of region IDs to append to. Defaults to [\"append\"] if not specified.\n * Each region corresponds to an AppendRegion child component.\n */\n",
|
|
252
327
|
"excerptTokens": [
|
|
253
328
|
{
|
|
254
329
|
"kind": "Content",
|
|
255
|
-
"text": "
|
|
330
|
+
"text": "regions?: "
|
|
256
331
|
},
|
|
257
332
|
{
|
|
258
|
-
"kind": "
|
|
259
|
-
"text": "
|
|
260
|
-
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
333
|
+
"kind": "Content",
|
|
334
|
+
"text": "string[]"
|
|
261
335
|
},
|
|
262
336
|
{
|
|
263
337
|
"kind": "Content",
|
|
@@ -265,9 +339,9 @@
|
|
|
265
339
|
}
|
|
266
340
|
],
|
|
267
341
|
"isReadonly": false,
|
|
268
|
-
"isOptional":
|
|
342
|
+
"isOptional": true,
|
|
269
343
|
"releaseTag": "Public",
|
|
270
|
-
"name": "
|
|
344
|
+
"name": "regions",
|
|
271
345
|
"propertyTypeTokenRange": {
|
|
272
346
|
"startIndex": 1,
|
|
273
347
|
"endIndex": 2
|
|
@@ -277,69 +351,123 @@
|
|
|
277
351
|
"extendsTokenRanges": []
|
|
278
352
|
},
|
|
279
353
|
{
|
|
280
|
-
"kind": "
|
|
281
|
-
"canonicalReference": "@alloy-js/core!
|
|
282
|
-
"docComment": "
|
|
354
|
+
"kind": "Function",
|
|
355
|
+
"canonicalReference": "@alloy-js/core!AppendRegion:function(1)",
|
|
356
|
+
"docComment": "",
|
|
283
357
|
"excerptTokens": [
|
|
284
358
|
{
|
|
285
359
|
"kind": "Content",
|
|
286
|
-
"text": "
|
|
360
|
+
"text": "export declare function AppendRegion(props: "
|
|
287
361
|
},
|
|
288
362
|
{
|
|
289
363
|
"kind": "Reference",
|
|
290
|
-
"text": "
|
|
291
|
-
"canonicalReference": "@alloy-js/core!
|
|
364
|
+
"text": "AppendRegionProps",
|
|
365
|
+
"canonicalReference": "@alloy-js/core!AppendRegionProps:type"
|
|
292
366
|
},
|
|
293
367
|
{
|
|
294
368
|
"kind": "Content",
|
|
295
|
-
"text": "
|
|
369
|
+
"text": "): "
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"kind": "Content",
|
|
373
|
+
"text": "void"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"kind": "Content",
|
|
377
|
+
"text": ";"
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
381
|
+
"returnTypeTokenRange": {
|
|
382
|
+
"startIndex": 3,
|
|
383
|
+
"endIndex": 4
|
|
384
|
+
},
|
|
385
|
+
"releaseTag": "Public",
|
|
386
|
+
"overloadIndex": 1,
|
|
387
|
+
"parameters": [
|
|
388
|
+
{
|
|
389
|
+
"parameterName": "props",
|
|
390
|
+
"parameterTypeTokenRange": {
|
|
391
|
+
"startIndex": 1,
|
|
392
|
+
"endIndex": 2
|
|
393
|
+
},
|
|
394
|
+
"isOptional": false
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"name": "AppendRegion"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"kind": "TypeAlias",
|
|
401
|
+
"canonicalReference": "@alloy-js/core!AppendRegionProps:type",
|
|
402
|
+
"docComment": "",
|
|
403
|
+
"excerptTokens": [
|
|
404
|
+
{
|
|
405
|
+
"kind": "Content",
|
|
406
|
+
"text": "export type AppendRegionProps = "
|
|
296
407
|
},
|
|
297
408
|
{
|
|
298
409
|
"kind": "Reference",
|
|
299
|
-
"text": "
|
|
300
|
-
"canonicalReference": "@alloy-js/core!
|
|
410
|
+
"text": "AppendRegionPropsWithChildren",
|
|
411
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithChildren:interface"
|
|
301
412
|
},
|
|
302
413
|
{
|
|
303
414
|
"kind": "Content",
|
|
304
|
-
"text": "
|
|
415
|
+
"text": " | "
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"kind": "Reference",
|
|
419
|
+
"text": "AppendRegionPropsWithContent",
|
|
420
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithContent:interface"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"kind": "Content",
|
|
424
|
+
"text": " | "
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"kind": "Reference",
|
|
428
|
+
"text": "AppendRegionPropsBase",
|
|
429
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsBase:interface"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"kind": "Content",
|
|
433
|
+
"text": ";"
|
|
305
434
|
}
|
|
306
435
|
],
|
|
307
|
-
"fileUrlPath": "src/
|
|
308
|
-
"isReadonly": true,
|
|
436
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
309
437
|
"releaseTag": "Public",
|
|
310
|
-
"name": "
|
|
311
|
-
"
|
|
438
|
+
"name": "AppendRegionProps",
|
|
439
|
+
"typeTokenRange": {
|
|
312
440
|
"startIndex": 1,
|
|
313
|
-
"endIndex":
|
|
441
|
+
"endIndex": 6
|
|
314
442
|
}
|
|
315
443
|
},
|
|
316
444
|
{
|
|
317
445
|
"kind": "Interface",
|
|
318
|
-
"canonicalReference": "@alloy-js/core!
|
|
446
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsBase:interface",
|
|
319
447
|
"docComment": "",
|
|
320
448
|
"excerptTokens": [
|
|
321
449
|
{
|
|
322
450
|
"kind": "Content",
|
|
323
|
-
"text": "export interface
|
|
451
|
+
"text": "export interface AppendRegionPropsBase "
|
|
324
452
|
}
|
|
325
453
|
],
|
|
326
|
-
"fileUrlPath": "src/components/
|
|
454
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
327
455
|
"releaseTag": "Public",
|
|
328
|
-
"name": "
|
|
456
|
+
"name": "AppendRegionPropsBase",
|
|
329
457
|
"preserveMemberOrder": false,
|
|
330
458
|
"members": [
|
|
331
459
|
{
|
|
332
460
|
"kind": "PropertySignature",
|
|
333
|
-
"canonicalReference": "@alloy-js/core!
|
|
334
|
-
"docComment": "/**\n *
|
|
461
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsBase#id:member",
|
|
462
|
+
"docComment": "/**\n * The ID of the region.\n */\n",
|
|
335
463
|
"excerptTokens": [
|
|
336
464
|
{
|
|
337
465
|
"kind": "Content",
|
|
338
|
-
"text": "
|
|
466
|
+
"text": "id: "
|
|
339
467
|
},
|
|
340
468
|
{
|
|
341
469
|
"kind": "Content",
|
|
342
|
-
"text": "
|
|
470
|
+
"text": "string"
|
|
343
471
|
},
|
|
344
472
|
{
|
|
345
473
|
"kind": "Content",
|
|
@@ -347,26 +475,45 @@
|
|
|
347
475
|
}
|
|
348
476
|
],
|
|
349
477
|
"isReadonly": false,
|
|
350
|
-
"isOptional":
|
|
478
|
+
"isOptional": false,
|
|
351
479
|
"releaseTag": "Public",
|
|
352
|
-
"name": "
|
|
480
|
+
"name": "id",
|
|
353
481
|
"propertyTypeTokenRange": {
|
|
354
482
|
"startIndex": 1,
|
|
355
483
|
"endIndex": 2
|
|
356
484
|
}
|
|
357
|
-
}
|
|
485
|
+
}
|
|
486
|
+
],
|
|
487
|
+
"extendsTokenRanges": []
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"kind": "Interface",
|
|
491
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithChildren:interface",
|
|
492
|
+
"docComment": "",
|
|
493
|
+
"excerptTokens": [
|
|
494
|
+
{
|
|
495
|
+
"kind": "Content",
|
|
496
|
+
"text": "export interface AppendRegionPropsWithChildren "
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
500
|
+
"releaseTag": "Public",
|
|
501
|
+
"name": "AppendRegionPropsWithChildren",
|
|
502
|
+
"preserveMemberOrder": false,
|
|
503
|
+
"members": [
|
|
358
504
|
{
|
|
359
505
|
"kind": "PropertySignature",
|
|
360
|
-
"canonicalReference": "@alloy-js/core!
|
|
361
|
-
"docComment": "/**\n *
|
|
506
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithChildren#children:member",
|
|
507
|
+
"docComment": "/**\n * The content to append to the region.\n */\n",
|
|
362
508
|
"excerptTokens": [
|
|
363
509
|
{
|
|
364
510
|
"kind": "Content",
|
|
365
|
-
"text": "
|
|
511
|
+
"text": "children: "
|
|
366
512
|
},
|
|
367
513
|
{
|
|
368
|
-
"kind": "
|
|
369
|
-
"text": "
|
|
514
|
+
"kind": "Reference",
|
|
515
|
+
"text": "Children",
|
|
516
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
370
517
|
},
|
|
371
518
|
{
|
|
372
519
|
"kind": "Content",
|
|
@@ -374,9 +521,9 @@
|
|
|
374
521
|
}
|
|
375
522
|
],
|
|
376
523
|
"isReadonly": false,
|
|
377
|
-
"isOptional":
|
|
524
|
+
"isOptional": false,
|
|
378
525
|
"releaseTag": "Public",
|
|
379
|
-
"name": "
|
|
526
|
+
"name": "children",
|
|
380
527
|
"propertyTypeTokenRange": {
|
|
381
528
|
"startIndex": 1,
|
|
382
529
|
"endIndex": 2
|
|
@@ -384,17 +531,16 @@
|
|
|
384
531
|
},
|
|
385
532
|
{
|
|
386
533
|
"kind": "PropertySignature",
|
|
387
|
-
"canonicalReference": "@alloy-js/core!
|
|
388
|
-
"docComment": "/**\n *
|
|
534
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithChildren#id:member",
|
|
535
|
+
"docComment": "/**\n * The ID of the region.\n */\n",
|
|
389
536
|
"excerptTokens": [
|
|
390
537
|
{
|
|
391
538
|
"kind": "Content",
|
|
392
|
-
"text": "
|
|
539
|
+
"text": "id: "
|
|
393
540
|
},
|
|
394
541
|
{
|
|
395
|
-
"kind": "
|
|
396
|
-
"text": "
|
|
397
|
-
"canonicalReference": "@alloy-js/core!Children:type"
|
|
542
|
+
"kind": "Content",
|
|
543
|
+
"text": "string"
|
|
398
544
|
},
|
|
399
545
|
{
|
|
400
546
|
"kind": "Content",
|
|
@@ -402,26 +548,45 @@
|
|
|
402
548
|
}
|
|
403
549
|
],
|
|
404
550
|
"isReadonly": false,
|
|
405
|
-
"isOptional":
|
|
551
|
+
"isOptional": false,
|
|
406
552
|
"releaseTag": "Public",
|
|
407
|
-
"name": "
|
|
553
|
+
"name": "id",
|
|
408
554
|
"propertyTypeTokenRange": {
|
|
409
555
|
"startIndex": 1,
|
|
410
556
|
"endIndex": 2
|
|
411
557
|
}
|
|
412
|
-
}
|
|
558
|
+
}
|
|
559
|
+
],
|
|
560
|
+
"extendsTokenRanges": []
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"kind": "Interface",
|
|
564
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithContent:interface",
|
|
565
|
+
"docComment": "",
|
|
566
|
+
"excerptTokens": [
|
|
567
|
+
{
|
|
568
|
+
"kind": "Content",
|
|
569
|
+
"text": "export interface AppendRegionPropsWithContent "
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"fileUrlPath": "src/components/AppendFile.tsx",
|
|
573
|
+
"releaseTag": "Public",
|
|
574
|
+
"name": "AppendRegionPropsWithContent",
|
|
575
|
+
"preserveMemberOrder": false,
|
|
576
|
+
"members": [
|
|
413
577
|
{
|
|
414
578
|
"kind": "PropertySignature",
|
|
415
|
-
"canonicalReference": "@alloy-js/core!
|
|
416
|
-
"docComment": "/**\n *
|
|
579
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithContent#content:member",
|
|
580
|
+
"docComment": "/**\n * The content to append to the region.\n */\n",
|
|
417
581
|
"excerptTokens": [
|
|
418
582
|
{
|
|
419
583
|
"kind": "Content",
|
|
420
|
-
"text": "
|
|
584
|
+
"text": "content: "
|
|
421
585
|
},
|
|
422
586
|
{
|
|
423
|
-
"kind": "
|
|
424
|
-
"text": "
|
|
587
|
+
"kind": "Reference",
|
|
588
|
+
"text": "Children",
|
|
589
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
425
590
|
},
|
|
426
591
|
{
|
|
427
592
|
"kind": "Content",
|
|
@@ -429,9 +594,9 @@
|
|
|
429
594
|
}
|
|
430
595
|
],
|
|
431
596
|
"isReadonly": false,
|
|
432
|
-
"isOptional":
|
|
597
|
+
"isOptional": false,
|
|
433
598
|
"releaseTag": "Public",
|
|
434
|
-
"name": "
|
|
599
|
+
"name": "content",
|
|
435
600
|
"propertyTypeTokenRange": {
|
|
436
601
|
"startIndex": 1,
|
|
437
602
|
"endIndex": 2
|
|
@@ -439,16 +604,16 @@
|
|
|
439
604
|
},
|
|
440
605
|
{
|
|
441
606
|
"kind": "PropertySignature",
|
|
442
|
-
"canonicalReference": "@alloy-js/core!
|
|
443
|
-
"docComment": "/**\n *
|
|
607
|
+
"canonicalReference": "@alloy-js/core!AppendRegionPropsWithContent#id:member",
|
|
608
|
+
"docComment": "/**\n * The ID of the region.\n */\n",
|
|
444
609
|
"excerptTokens": [
|
|
445
610
|
{
|
|
446
611
|
"kind": "Content",
|
|
447
|
-
"text": "
|
|
612
|
+
"text": "id: "
|
|
448
613
|
},
|
|
449
614
|
{
|
|
450
615
|
"kind": "Content",
|
|
451
|
-
"text": "
|
|
616
|
+
"text": "string"
|
|
452
617
|
},
|
|
453
618
|
{
|
|
454
619
|
"kind": "Content",
|
|
@@ -456,27 +621,44 @@
|
|
|
456
621
|
}
|
|
457
622
|
],
|
|
458
623
|
"isReadonly": false,
|
|
459
|
-
"isOptional":
|
|
624
|
+
"isOptional": false,
|
|
460
625
|
"releaseTag": "Public",
|
|
461
|
-
"name": "
|
|
626
|
+
"name": "id",
|
|
462
627
|
"propertyTypeTokenRange": {
|
|
463
628
|
"startIndex": 1,
|
|
464
629
|
"endIndex": 2
|
|
465
630
|
}
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"extendsTokenRanges": []
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"kind": "Interface",
|
|
637
|
+
"canonicalReference": "@alloy-js/core!AssignmentContext:interface",
|
|
638
|
+
"docComment": "",
|
|
639
|
+
"excerptTokens": [
|
|
640
|
+
{
|
|
641
|
+
"kind": "Content",
|
|
642
|
+
"text": "export interface AssignmentContext "
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"fileUrlPath": "src/context/assignment.ts",
|
|
646
|
+
"releaseTag": "Public",
|
|
647
|
+
"name": "AssignmentContext",
|
|
648
|
+
"preserveMemberOrder": false,
|
|
649
|
+
"members": [
|
|
650
|
+
{
|
|
651
|
+
"kind": "PropertySignature",
|
|
652
|
+
"canonicalReference": "@alloy-js/core!AssignmentContext#isAssigned:member",
|
|
653
|
+
"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",
|
|
654
|
+
"excerptTokens": [
|
|
655
|
+
{
|
|
473
656
|
"kind": "Content",
|
|
474
|
-
"text": "
|
|
657
|
+
"text": "isAssigned: "
|
|
475
658
|
},
|
|
476
659
|
{
|
|
477
|
-
"kind": "
|
|
478
|
-
"text": "
|
|
479
|
-
"canonicalReference": "@alloy-js/core!Children:type"
|
|
660
|
+
"kind": "Content",
|
|
661
|
+
"text": "boolean"
|
|
480
662
|
},
|
|
481
663
|
{
|
|
482
664
|
"kind": "Content",
|
|
@@ -484,9 +666,9 @@
|
|
|
484
666
|
}
|
|
485
667
|
],
|
|
486
668
|
"isReadonly": false,
|
|
487
|
-
"isOptional":
|
|
669
|
+
"isOptional": false,
|
|
488
670
|
"releaseTag": "Public",
|
|
489
|
-
"name": "
|
|
671
|
+
"name": "isAssigned",
|
|
490
672
|
"propertyTypeTokenRange": {
|
|
491
673
|
"startIndex": 1,
|
|
492
674
|
"endIndex": 2
|
|
@@ -494,16 +676,17 @@
|
|
|
494
676
|
},
|
|
495
677
|
{
|
|
496
678
|
"kind": "PropertySignature",
|
|
497
|
-
"canonicalReference": "@alloy-js/core!
|
|
498
|
-
"docComment": "/**\n *
|
|
679
|
+
"canonicalReference": "@alloy-js/core!AssignmentContext#target:member",
|
|
680
|
+
"docComment": "/**\n * The symbol that is the target of the current assignment.\n */\n",
|
|
499
681
|
"excerptTokens": [
|
|
500
682
|
{
|
|
501
683
|
"kind": "Content",
|
|
502
|
-
"text": "
|
|
684
|
+
"text": "target: "
|
|
503
685
|
},
|
|
504
686
|
{
|
|
505
|
-
"kind": "
|
|
506
|
-
"text": "
|
|
687
|
+
"kind": "Reference",
|
|
688
|
+
"text": "OutputSymbol",
|
|
689
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
507
690
|
},
|
|
508
691
|
{
|
|
509
692
|
"kind": "Content",
|
|
@@ -511,22 +694,77 @@
|
|
|
511
694
|
}
|
|
512
695
|
],
|
|
513
696
|
"isReadonly": false,
|
|
514
|
-
"isOptional":
|
|
697
|
+
"isOptional": false,
|
|
515
698
|
"releaseTag": "Public",
|
|
516
|
-
"name": "
|
|
699
|
+
"name": "target",
|
|
517
700
|
"propertyTypeTokenRange": {
|
|
518
701
|
"startIndex": 1,
|
|
519
702
|
"endIndex": 2
|
|
520
703
|
}
|
|
704
|
+
}
|
|
705
|
+
],
|
|
706
|
+
"extendsTokenRanges": []
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"kind": "Variable",
|
|
710
|
+
"canonicalReference": "@alloy-js/core!AssignmentContext:var",
|
|
711
|
+
"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",
|
|
712
|
+
"excerptTokens": [
|
|
713
|
+
{
|
|
714
|
+
"kind": "Content",
|
|
715
|
+
"text": "AssignmentContext: "
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"kind": "Reference",
|
|
719
|
+
"text": "ComponentContext",
|
|
720
|
+
"canonicalReference": "@alloy-js/core!ComponentContext:interface"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"kind": "Content",
|
|
724
|
+
"text": "<"
|
|
521
725
|
},
|
|
726
|
+
{
|
|
727
|
+
"kind": "Reference",
|
|
728
|
+
"text": "AssignmentContext",
|
|
729
|
+
"canonicalReference": "@alloy-js/core!AssignmentContext:interface"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"kind": "Content",
|
|
733
|
+
"text": ">"
|
|
734
|
+
}
|
|
735
|
+
],
|
|
736
|
+
"fileUrlPath": "src/context/assignment.ts",
|
|
737
|
+
"isReadonly": true,
|
|
738
|
+
"releaseTag": "Public",
|
|
739
|
+
"name": "AssignmentContext",
|
|
740
|
+
"variableTypeTokenRange": {
|
|
741
|
+
"startIndex": 1,
|
|
742
|
+
"endIndex": 5
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"kind": "Interface",
|
|
747
|
+
"canonicalReference": "@alloy-js/core!BaseListProps:interface",
|
|
748
|
+
"docComment": "",
|
|
749
|
+
"excerptTokens": [
|
|
750
|
+
{
|
|
751
|
+
"kind": "Content",
|
|
752
|
+
"text": "export interface BaseListProps "
|
|
753
|
+
}
|
|
754
|
+
],
|
|
755
|
+
"fileUrlPath": "src/components/List.tsx",
|
|
756
|
+
"releaseTag": "Public",
|
|
757
|
+
"name": "BaseListProps",
|
|
758
|
+
"preserveMemberOrder": false,
|
|
759
|
+
"members": [
|
|
522
760
|
{
|
|
523
761
|
"kind": "PropertySignature",
|
|
524
|
-
"canonicalReference": "@alloy-js/core!BaseListProps#
|
|
525
|
-
"docComment": "/**\n * Place a
|
|
762
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#comma:member",
|
|
763
|
+
"docComment": "/**\n * Place a comma between each element\n */\n",
|
|
526
764
|
"excerptTokens": [
|
|
527
765
|
{
|
|
528
766
|
"kind": "Content",
|
|
529
|
-
"text": "
|
|
767
|
+
"text": "comma?: "
|
|
530
768
|
},
|
|
531
769
|
{
|
|
532
770
|
"kind": "Content",
|
|
@@ -540,7 +778,7 @@
|
|
|
540
778
|
"isReadonly": false,
|
|
541
779
|
"isOptional": true,
|
|
542
780
|
"releaseTag": "Public",
|
|
543
|
-
"name": "
|
|
781
|
+
"name": "comma",
|
|
544
782
|
"propertyTypeTokenRange": {
|
|
545
783
|
"startIndex": 1,
|
|
546
784
|
"endIndex": 2
|
|
@@ -548,12 +786,12 @@
|
|
|
548
786
|
},
|
|
549
787
|
{
|
|
550
788
|
"kind": "PropertySignature",
|
|
551
|
-
"canonicalReference": "@alloy-js/core!BaseListProps#
|
|
552
|
-
"docComment": "/**\n * Place
|
|
789
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#doubleHardline:member",
|
|
790
|
+
"docComment": "/**\n * Place two hardlines between each element\n */\n",
|
|
553
791
|
"excerptTokens": [
|
|
554
792
|
{
|
|
555
793
|
"kind": "Content",
|
|
556
|
-
"text": "
|
|
794
|
+
"text": "doubleHardline?: "
|
|
557
795
|
},
|
|
558
796
|
{
|
|
559
797
|
"kind": "Content",
|
|
@@ -567,7 +805,7 @@
|
|
|
567
805
|
"isReadonly": false,
|
|
568
806
|
"isOptional": true,
|
|
569
807
|
"releaseTag": "Public",
|
|
570
|
-
"name": "
|
|
808
|
+
"name": "doubleHardline",
|
|
571
809
|
"propertyTypeTokenRange": {
|
|
572
810
|
"startIndex": 1,
|
|
573
811
|
"endIndex": 2
|
|
@@ -575,16 +813,17 @@
|
|
|
575
813
|
},
|
|
576
814
|
{
|
|
577
815
|
"kind": "PropertySignature",
|
|
578
|
-
"canonicalReference": "@alloy-js/core!BaseListProps#
|
|
579
|
-
"docComment": "/**\n *
|
|
816
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#ender:member",
|
|
817
|
+
"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",
|
|
580
818
|
"excerptTokens": [
|
|
581
819
|
{
|
|
582
820
|
"kind": "Content",
|
|
583
|
-
"text": "
|
|
821
|
+
"text": "ender?: "
|
|
584
822
|
},
|
|
585
823
|
{
|
|
586
|
-
"kind": "
|
|
587
|
-
"text": "
|
|
824
|
+
"kind": "Reference",
|
|
825
|
+
"text": "Children",
|
|
826
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
588
827
|
},
|
|
589
828
|
{
|
|
590
829
|
"kind": "Content",
|
|
@@ -594,7 +833,7 @@
|
|
|
594
833
|
"isReadonly": false,
|
|
595
834
|
"isOptional": true,
|
|
596
835
|
"releaseTag": "Public",
|
|
597
|
-
"name": "
|
|
836
|
+
"name": "ender",
|
|
598
837
|
"propertyTypeTokenRange": {
|
|
599
838
|
"startIndex": 1,
|
|
600
839
|
"endIndex": 2
|
|
@@ -602,12 +841,12 @@
|
|
|
602
841
|
},
|
|
603
842
|
{
|
|
604
843
|
"kind": "PropertySignature",
|
|
605
|
-
"canonicalReference": "@alloy-js/core!BaseListProps#
|
|
606
|
-
"docComment": "/**\n * Place
|
|
844
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#enderPunctuation:member",
|
|
845
|
+
"docComment": "/**\n * Place the join punctuation at the end, but without a line break.\n */\n",
|
|
607
846
|
"excerptTokens": [
|
|
608
847
|
{
|
|
609
848
|
"kind": "Content",
|
|
610
|
-
"text": "
|
|
849
|
+
"text": "enderPunctuation?: "
|
|
611
850
|
},
|
|
612
851
|
{
|
|
613
852
|
"kind": "Content",
|
|
@@ -621,116 +860,306 @@
|
|
|
621
860
|
"isReadonly": false,
|
|
622
861
|
"isOptional": true,
|
|
623
862
|
"releaseTag": "Public",
|
|
624
|
-
"name": "
|
|
863
|
+
"name": "enderPunctuation",
|
|
625
864
|
"propertyTypeTokenRange": {
|
|
626
865
|
"startIndex": 1,
|
|
627
866
|
"endIndex": 2
|
|
628
867
|
}
|
|
629
|
-
}
|
|
630
|
-
],
|
|
631
|
-
"extendsTokenRanges": []
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"kind": "Function",
|
|
635
|
-
"canonicalReference": "@alloy-js/core!baseListPropsToMapJoinArgs:function(1)",
|
|
636
|
-
"docComment": "/**\n * Convert a list of props to a joiner and ender for use in {@link (mapJoin:1)}.\n */\n",
|
|
637
|
-
"excerptTokens": [
|
|
638
|
-
{
|
|
639
|
-
"kind": "Content",
|
|
640
|
-
"text": "export declare function baseListPropsToMapJoinArgs(props: "
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"kind": "Reference",
|
|
644
|
-
"text": "BaseListProps",
|
|
645
|
-
"canonicalReference": "@alloy-js/core!BaseListProps:interface"
|
|
646
868
|
},
|
|
647
869
|
{
|
|
648
|
-
"kind": "
|
|
649
|
-
"
|
|
650
|
-
|
|
651
|
-
{
|
|
652
|
-
"kind": "Reference",
|
|
653
|
-
"text": "JoinOptions",
|
|
654
|
-
"canonicalReference": "@alloy-js/core!JoinOptions:interface"
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
"kind": "Content",
|
|
658
|
-
"text": ";"
|
|
659
|
-
}
|
|
660
|
-
],
|
|
661
|
-
"fileUrlPath": "src/utils.tsx",
|
|
662
|
-
"returnTypeTokenRange": {
|
|
663
|
-
"startIndex": 3,
|
|
664
|
-
"endIndex": 4
|
|
665
|
-
},
|
|
666
|
-
"releaseTag": "Public",
|
|
667
|
-
"overloadIndex": 1,
|
|
668
|
-
"parameters": [
|
|
669
|
-
{
|
|
670
|
-
"parameterName": "props",
|
|
671
|
-
"parameterTypeTokenRange": {
|
|
672
|
-
"startIndex": 1,
|
|
673
|
-
"endIndex": 2
|
|
674
|
-
},
|
|
675
|
-
"isOptional": false
|
|
676
|
-
}
|
|
677
|
-
],
|
|
678
|
-
"name": "baseListPropsToMapJoinArgs"
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"kind": "Interface",
|
|
682
|
-
"canonicalReference": "@alloy-js/core!Binder:interface",
|
|
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",
|
|
684
|
-
"excerptTokens": [
|
|
685
|
-
{
|
|
686
|
-
"kind": "Content",
|
|
687
|
-
"text": "export interface Binder "
|
|
688
|
-
}
|
|
689
|
-
],
|
|
690
|
-
"fileUrlPath": "src/binder.ts",
|
|
691
|
-
"releaseTag": "Public",
|
|
692
|
-
"name": "Binder",
|
|
693
|
-
"preserveMemberOrder": false,
|
|
694
|
-
"members": [
|
|
695
|
-
{
|
|
696
|
-
"kind": "MethodSignature",
|
|
697
|
-
"canonicalReference": "@alloy-js/core!Binder#findScopeName:member(1)",
|
|
698
|
-
"docComment": "",
|
|
870
|
+
"kind": "PropertySignature",
|
|
871
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#hardline:member",
|
|
872
|
+
"docComment": "/**\n * Place a hardline (`<hbr />`) between each element\n */\n",
|
|
699
873
|
"excerptTokens": [
|
|
700
874
|
{
|
|
701
875
|
"kind": "Content",
|
|
702
|
-
"text": "
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"kind": "Reference",
|
|
706
|
-
"text": "OutputScope",
|
|
707
|
-
"canonicalReference": "@alloy-js/core!OutputScope:class"
|
|
876
|
+
"text": "hardline?: "
|
|
708
877
|
},
|
|
709
878
|
{
|
|
710
879
|
"kind": "Content",
|
|
711
|
-
"text": "
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
"kind": "Reference",
|
|
715
|
-
"text": "OutputScope",
|
|
716
|
-
"canonicalReference": "@alloy-js/core!OutputScope:class"
|
|
880
|
+
"text": "boolean"
|
|
717
881
|
},
|
|
718
882
|
{
|
|
719
883
|
"kind": "Content",
|
|
720
|
-
"text": "
|
|
721
|
-
}
|
|
884
|
+
"text": ";"
|
|
885
|
+
}
|
|
886
|
+
],
|
|
887
|
+
"isReadonly": false,
|
|
888
|
+
"isOptional": true,
|
|
889
|
+
"releaseTag": "Public",
|
|
890
|
+
"name": "hardline",
|
|
891
|
+
"propertyTypeTokenRange": {
|
|
892
|
+
"startIndex": 1,
|
|
893
|
+
"endIndex": 2
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
{
|
|
897
|
+
"kind": "PropertySignature",
|
|
898
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#joiner:member",
|
|
899
|
+
"docComment": "/**\n * Text to place between each element\n */\n",
|
|
900
|
+
"excerptTokens": [
|
|
722
901
|
{
|
|
723
902
|
"kind": "Content",
|
|
724
|
-
"text": "
|
|
903
|
+
"text": "joiner?: "
|
|
725
904
|
},
|
|
726
905
|
{
|
|
727
|
-
"kind": "
|
|
728
|
-
"text": ",
|
|
906
|
+
"kind": "Reference",
|
|
907
|
+
"text": "Children",
|
|
908
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
729
909
|
},
|
|
730
910
|
{
|
|
731
911
|
"kind": "Content",
|
|
732
|
-
"text": "
|
|
733
|
-
}
|
|
912
|
+
"text": ";"
|
|
913
|
+
}
|
|
914
|
+
],
|
|
915
|
+
"isReadonly": false,
|
|
916
|
+
"isOptional": true,
|
|
917
|
+
"releaseTag": "Public",
|
|
918
|
+
"name": "joiner",
|
|
919
|
+
"propertyTypeTokenRange": {
|
|
920
|
+
"startIndex": 1,
|
|
921
|
+
"endIndex": 2
|
|
922
|
+
}
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"kind": "PropertySignature",
|
|
926
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#line:member",
|
|
927
|
+
"docComment": "/**\n * Place a regular line (`<br />`) between each element\n */\n",
|
|
928
|
+
"excerptTokens": [
|
|
929
|
+
{
|
|
930
|
+
"kind": "Content",
|
|
931
|
+
"text": "line?: "
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"kind": "Content",
|
|
935
|
+
"text": "boolean"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"kind": "Content",
|
|
939
|
+
"text": ";"
|
|
940
|
+
}
|
|
941
|
+
],
|
|
942
|
+
"isReadonly": false,
|
|
943
|
+
"isOptional": true,
|
|
944
|
+
"releaseTag": "Public",
|
|
945
|
+
"name": "line",
|
|
946
|
+
"propertyTypeTokenRange": {
|
|
947
|
+
"startIndex": 1,
|
|
948
|
+
"endIndex": 2
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"kind": "PropertySignature",
|
|
953
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#literalline:member",
|
|
954
|
+
"docComment": "/**\n * Place a literal line (`<lbr />`) between each element\n */\n",
|
|
955
|
+
"excerptTokens": [
|
|
956
|
+
{
|
|
957
|
+
"kind": "Content",
|
|
958
|
+
"text": "literalline?: "
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"kind": "Content",
|
|
962
|
+
"text": "boolean"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"kind": "Content",
|
|
966
|
+
"text": ";"
|
|
967
|
+
}
|
|
968
|
+
],
|
|
969
|
+
"isReadonly": false,
|
|
970
|
+
"isOptional": true,
|
|
971
|
+
"releaseTag": "Public",
|
|
972
|
+
"name": "literalline",
|
|
973
|
+
"propertyTypeTokenRange": {
|
|
974
|
+
"startIndex": 1,
|
|
975
|
+
"endIndex": 2
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"kind": "PropertySignature",
|
|
980
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#semicolon:member",
|
|
981
|
+
"docComment": "/**\n * Place a semicolon between each element\n */\n",
|
|
982
|
+
"excerptTokens": [
|
|
983
|
+
{
|
|
984
|
+
"kind": "Content",
|
|
985
|
+
"text": "semicolon?: "
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"kind": "Content",
|
|
989
|
+
"text": "boolean"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"kind": "Content",
|
|
993
|
+
"text": ";"
|
|
994
|
+
}
|
|
995
|
+
],
|
|
996
|
+
"isReadonly": false,
|
|
997
|
+
"isOptional": true,
|
|
998
|
+
"releaseTag": "Public",
|
|
999
|
+
"name": "semicolon",
|
|
1000
|
+
"propertyTypeTokenRange": {
|
|
1001
|
+
"startIndex": 1,
|
|
1002
|
+
"endIndex": 2
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"kind": "PropertySignature",
|
|
1007
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#softline:member",
|
|
1008
|
+
"docComment": "/**\n * Place a softline (`<sbr />`) between each element\n */\n",
|
|
1009
|
+
"excerptTokens": [
|
|
1010
|
+
{
|
|
1011
|
+
"kind": "Content",
|
|
1012
|
+
"text": "softline?: "
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"kind": "Content",
|
|
1016
|
+
"text": "boolean"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"kind": "Content",
|
|
1020
|
+
"text": ";"
|
|
1021
|
+
}
|
|
1022
|
+
],
|
|
1023
|
+
"isReadonly": false,
|
|
1024
|
+
"isOptional": true,
|
|
1025
|
+
"releaseTag": "Public",
|
|
1026
|
+
"name": "softline",
|
|
1027
|
+
"propertyTypeTokenRange": {
|
|
1028
|
+
"startIndex": 1,
|
|
1029
|
+
"endIndex": 2
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"kind": "PropertySignature",
|
|
1034
|
+
"canonicalReference": "@alloy-js/core!BaseListProps#space:member",
|
|
1035
|
+
"docComment": "/**\n * Place a space between each element\n */\n",
|
|
1036
|
+
"excerptTokens": [
|
|
1037
|
+
{
|
|
1038
|
+
"kind": "Content",
|
|
1039
|
+
"text": "space?: "
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"kind": "Content",
|
|
1043
|
+
"text": "boolean"
|
|
1044
|
+
},
|
|
1045
|
+
{
|
|
1046
|
+
"kind": "Content",
|
|
1047
|
+
"text": ";"
|
|
1048
|
+
}
|
|
1049
|
+
],
|
|
1050
|
+
"isReadonly": false,
|
|
1051
|
+
"isOptional": true,
|
|
1052
|
+
"releaseTag": "Public",
|
|
1053
|
+
"name": "space",
|
|
1054
|
+
"propertyTypeTokenRange": {
|
|
1055
|
+
"startIndex": 1,
|
|
1056
|
+
"endIndex": 2
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
],
|
|
1060
|
+
"extendsTokenRanges": []
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"kind": "Function",
|
|
1064
|
+
"canonicalReference": "@alloy-js/core!baseListPropsToMapJoinArgs:function(1)",
|
|
1065
|
+
"docComment": "/**\n * Convert a list of props to a joiner and ender for use in {@link (mapJoin:1)}.\n */\n",
|
|
1066
|
+
"excerptTokens": [
|
|
1067
|
+
{
|
|
1068
|
+
"kind": "Content",
|
|
1069
|
+
"text": "export declare function baseListPropsToMapJoinArgs(props: "
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"kind": "Reference",
|
|
1073
|
+
"text": "BaseListProps",
|
|
1074
|
+
"canonicalReference": "@alloy-js/core!BaseListProps:interface"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"kind": "Content",
|
|
1078
|
+
"text": "): "
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"kind": "Reference",
|
|
1082
|
+
"text": "JoinOptions",
|
|
1083
|
+
"canonicalReference": "@alloy-js/core!JoinOptions:interface"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"kind": "Content",
|
|
1087
|
+
"text": ";"
|
|
1088
|
+
}
|
|
1089
|
+
],
|
|
1090
|
+
"fileUrlPath": "src/utils.tsx",
|
|
1091
|
+
"returnTypeTokenRange": {
|
|
1092
|
+
"startIndex": 3,
|
|
1093
|
+
"endIndex": 4
|
|
1094
|
+
},
|
|
1095
|
+
"releaseTag": "Public",
|
|
1096
|
+
"overloadIndex": 1,
|
|
1097
|
+
"parameters": [
|
|
1098
|
+
{
|
|
1099
|
+
"parameterName": "props",
|
|
1100
|
+
"parameterTypeTokenRange": {
|
|
1101
|
+
"startIndex": 1,
|
|
1102
|
+
"endIndex": 2
|
|
1103
|
+
},
|
|
1104
|
+
"isOptional": false
|
|
1105
|
+
}
|
|
1106
|
+
],
|
|
1107
|
+
"name": "baseListPropsToMapJoinArgs"
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"kind": "Interface",
|
|
1111
|
+
"canonicalReference": "@alloy-js/core!Binder:interface",
|
|
1112
|
+
"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",
|
|
1113
|
+
"excerptTokens": [
|
|
1114
|
+
{
|
|
1115
|
+
"kind": "Content",
|
|
1116
|
+
"text": "export interface Binder "
|
|
1117
|
+
}
|
|
1118
|
+
],
|
|
1119
|
+
"fileUrlPath": "src/binder.ts",
|
|
1120
|
+
"releaseTag": "Public",
|
|
1121
|
+
"name": "Binder",
|
|
1122
|
+
"preserveMemberOrder": false,
|
|
1123
|
+
"members": [
|
|
1124
|
+
{
|
|
1125
|
+
"kind": "MethodSignature",
|
|
1126
|
+
"canonicalReference": "@alloy-js/core!Binder#findScopeName:member(1)",
|
|
1127
|
+
"docComment": "",
|
|
1128
|
+
"excerptTokens": [
|
|
1129
|
+
{
|
|
1130
|
+
"kind": "Content",
|
|
1131
|
+
"text": "findScopeName<TScope extends "
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"kind": "Reference",
|
|
1135
|
+
"text": "OutputScope",
|
|
1136
|
+
"canonicalReference": "@alloy-js/core!OutputScope:class"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"kind": "Content",
|
|
1140
|
+
"text": " = "
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"kind": "Reference",
|
|
1144
|
+
"text": "OutputScope",
|
|
1145
|
+
"canonicalReference": "@alloy-js/core!OutputScope:class"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"kind": "Content",
|
|
1149
|
+
"text": ">(currentScope: "
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"kind": "Content",
|
|
1153
|
+
"text": "TScope | undefined"
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
"kind": "Content",
|
|
1157
|
+
"text": ", name: "
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"kind": "Content",
|
|
1161
|
+
"text": "string"
|
|
1162
|
+
},
|
|
734
1163
|
{
|
|
735
1164
|
"kind": "Content",
|
|
736
1165
|
"text": "): "
|
|
@@ -2701,15 +3130,101 @@
|
|
|
2701
3130
|
},
|
|
2702
3131
|
{
|
|
2703
3132
|
"kind": "Interface",
|
|
2704
|
-
"canonicalReference": "@alloy-js/core!
|
|
3133
|
+
"canonicalReference": "@alloy-js/core!ContentOutputFile:interface",
|
|
2705
3134
|
"docComment": "",
|
|
2706
3135
|
"excerptTokens": [
|
|
2707
3136
|
{
|
|
2708
3137
|
"kind": "Content",
|
|
2709
|
-
"text": "export interface
|
|
2710
|
-
}
|
|
2711
|
-
|
|
2712
|
-
|
|
3138
|
+
"text": "export interface ContentOutputFile extends "
|
|
3139
|
+
},
|
|
3140
|
+
{
|
|
3141
|
+
"kind": "Reference",
|
|
3142
|
+
"text": "OutputFileBase",
|
|
3143
|
+
"canonicalReference": "@alloy-js/core!OutputFileBase:interface"
|
|
3144
|
+
},
|
|
3145
|
+
{
|
|
3146
|
+
"kind": "Content",
|
|
3147
|
+
"text": " "
|
|
3148
|
+
}
|
|
3149
|
+
],
|
|
3150
|
+
"fileUrlPath": "src/render.ts",
|
|
3151
|
+
"releaseTag": "Public",
|
|
3152
|
+
"name": "ContentOutputFile",
|
|
3153
|
+
"preserveMemberOrder": false,
|
|
3154
|
+
"members": [
|
|
3155
|
+
{
|
|
3156
|
+
"kind": "PropertySignature",
|
|
3157
|
+
"canonicalReference": "@alloy-js/core!ContentOutputFile#contents:member",
|
|
3158
|
+
"docComment": "",
|
|
3159
|
+
"excerptTokens": [
|
|
3160
|
+
{
|
|
3161
|
+
"kind": "Content",
|
|
3162
|
+
"text": "contents: "
|
|
3163
|
+
},
|
|
3164
|
+
{
|
|
3165
|
+
"kind": "Content",
|
|
3166
|
+
"text": "string"
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
"kind": "Content",
|
|
3170
|
+
"text": ";"
|
|
3171
|
+
}
|
|
3172
|
+
],
|
|
3173
|
+
"isReadonly": false,
|
|
3174
|
+
"isOptional": false,
|
|
3175
|
+
"releaseTag": "Public",
|
|
3176
|
+
"name": "contents",
|
|
3177
|
+
"propertyTypeTokenRange": {
|
|
3178
|
+
"startIndex": 1,
|
|
3179
|
+
"endIndex": 2
|
|
3180
|
+
}
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"kind": "PropertySignature",
|
|
3184
|
+
"canonicalReference": "@alloy-js/core!ContentOutputFile#filetype:member",
|
|
3185
|
+
"docComment": "",
|
|
3186
|
+
"excerptTokens": [
|
|
3187
|
+
{
|
|
3188
|
+
"kind": "Content",
|
|
3189
|
+
"text": "filetype: "
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
"kind": "Content",
|
|
3193
|
+
"text": "string"
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"kind": "Content",
|
|
3197
|
+
"text": ";"
|
|
3198
|
+
}
|
|
3199
|
+
],
|
|
3200
|
+
"isReadonly": false,
|
|
3201
|
+
"isOptional": false,
|
|
3202
|
+
"releaseTag": "Public",
|
|
3203
|
+
"name": "filetype",
|
|
3204
|
+
"propertyTypeTokenRange": {
|
|
3205
|
+
"startIndex": 1,
|
|
3206
|
+
"endIndex": 2
|
|
3207
|
+
}
|
|
3208
|
+
}
|
|
3209
|
+
],
|
|
3210
|
+
"extendsTokenRanges": [
|
|
3211
|
+
{
|
|
3212
|
+
"startIndex": 1,
|
|
3213
|
+
"endIndex": 2
|
|
3214
|
+
}
|
|
3215
|
+
]
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"kind": "Interface",
|
|
3219
|
+
"canonicalReference": "@alloy-js/core!Context:interface",
|
|
3220
|
+
"docComment": "",
|
|
3221
|
+
"excerptTokens": [
|
|
3222
|
+
{
|
|
3223
|
+
"kind": "Content",
|
|
3224
|
+
"text": "export interface Context "
|
|
3225
|
+
}
|
|
3226
|
+
],
|
|
3227
|
+
"fileUrlPath": "src/reactivity.ts",
|
|
2713
3228
|
"releaseTag": "Public",
|
|
2714
3229
|
"name": "Context",
|
|
2715
3230
|
"preserveMemberOrder": false,
|
|
@@ -3115,33 +3630,32 @@
|
|
|
3115
3630
|
},
|
|
3116
3631
|
{
|
|
3117
3632
|
"kind": "Function",
|
|
3118
|
-
"canonicalReference": "@alloy-js/core!
|
|
3119
|
-
"docComment": "
|
|
3633
|
+
"canonicalReference": "@alloy-js/core!CopyFile:function(1)",
|
|
3634
|
+
"docComment": "",
|
|
3120
3635
|
"excerptTokens": [
|
|
3121
3636
|
{
|
|
3122
3637
|
"kind": "Content",
|
|
3123
|
-
"text": "export declare function
|
|
3638
|
+
"text": "export declare function CopyFile(props: "
|
|
3124
3639
|
},
|
|
3125
3640
|
{
|
|
3126
3641
|
"kind": "Reference",
|
|
3127
|
-
"text": "
|
|
3128
|
-
"canonicalReference": "@alloy-js/core!
|
|
3642
|
+
"text": "CopyFileProps",
|
|
3643
|
+
"canonicalReference": "@alloy-js/core!CopyFileProps:interface"
|
|
3129
3644
|
},
|
|
3130
3645
|
{
|
|
3131
3646
|
"kind": "Content",
|
|
3132
3647
|
"text": "): "
|
|
3133
3648
|
},
|
|
3134
3649
|
{
|
|
3135
|
-
"kind": "
|
|
3136
|
-
"text": "
|
|
3137
|
-
"canonicalReference": "@alloy-js/core!AssignmentContext:interface"
|
|
3650
|
+
"kind": "Content",
|
|
3651
|
+
"text": "void"
|
|
3138
3652
|
},
|
|
3139
3653
|
{
|
|
3140
3654
|
"kind": "Content",
|
|
3141
3655
|
"text": ";"
|
|
3142
3656
|
}
|
|
3143
3657
|
],
|
|
3144
|
-
"fileUrlPath": "src/
|
|
3658
|
+
"fileUrlPath": "src/components/CopyFile.tsx",
|
|
3145
3659
|
"returnTypeTokenRange": {
|
|
3146
3660
|
"startIndex": 3,
|
|
3147
3661
|
"endIndex": 4
|
|
@@ -3150,7 +3664,7 @@
|
|
|
3150
3664
|
"overloadIndex": 1,
|
|
3151
3665
|
"parameters": [
|
|
3152
3666
|
{
|
|
3153
|
-
"parameterName": "
|
|
3667
|
+
"parameterName": "props",
|
|
3154
3668
|
"parameterTypeTokenRange": {
|
|
3155
3669
|
"startIndex": 1,
|
|
3156
3670
|
"endIndex": 2
|
|
@@ -3158,218 +3672,224 @@
|
|
|
3158
3672
|
"isOptional": false
|
|
3159
3673
|
}
|
|
3160
3674
|
],
|
|
3161
|
-
"name": "
|
|
3675
|
+
"name": "CopyFile"
|
|
3162
3676
|
},
|
|
3163
3677
|
{
|
|
3164
|
-
"kind": "
|
|
3165
|
-
"canonicalReference": "@alloy-js/core!
|
|
3678
|
+
"kind": "Interface",
|
|
3679
|
+
"canonicalReference": "@alloy-js/core!CopyFileContext:interface",
|
|
3166
3680
|
"docComment": "",
|
|
3167
3681
|
"excerptTokens": [
|
|
3168
3682
|
{
|
|
3169
3683
|
"kind": "Content",
|
|
3170
|
-
"text": "export
|
|
3171
|
-
},
|
|
3172
|
-
{
|
|
3173
|
-
"kind": "Reference",
|
|
3174
|
-
"text": "Props",
|
|
3175
|
-
"canonicalReference": "@alloy-js/core!Props:type"
|
|
3176
|
-
},
|
|
3177
|
-
{
|
|
3178
|
-
"kind": "Content",
|
|
3179
|
-
"text": " = "
|
|
3180
|
-
},
|
|
3181
|
-
{
|
|
3182
|
-
"kind": "Reference",
|
|
3183
|
-
"text": "Props",
|
|
3184
|
-
"canonicalReference": "@alloy-js/core!Props:type"
|
|
3185
|
-
},
|
|
3186
|
-
{
|
|
3187
|
-
"kind": "Content",
|
|
3188
|
-
"text": ">(C: "
|
|
3189
|
-
},
|
|
3190
|
-
{
|
|
3191
|
-
"kind": "Reference",
|
|
3192
|
-
"text": "Component",
|
|
3193
|
-
"canonicalReference": "@alloy-js/core!Component:interface"
|
|
3194
|
-
},
|
|
3195
|
-
{
|
|
3196
|
-
"kind": "Content",
|
|
3197
|
-
"text": "<TProps>"
|
|
3198
|
-
},
|
|
3199
|
-
{
|
|
3200
|
-
"kind": "Content",
|
|
3201
|
-
"text": ", props: "
|
|
3202
|
-
},
|
|
3203
|
-
{
|
|
3204
|
-
"kind": "Content",
|
|
3205
|
-
"text": "TProps"
|
|
3206
|
-
},
|
|
3207
|
-
{
|
|
3208
|
-
"kind": "Content",
|
|
3209
|
-
"text": "): "
|
|
3210
|
-
},
|
|
3211
|
-
{
|
|
3212
|
-
"kind": "Reference",
|
|
3213
|
-
"text": "ComponentCreator",
|
|
3214
|
-
"canonicalReference": "@alloy-js/core!ComponentCreator:interface"
|
|
3215
|
-
},
|
|
3216
|
-
{
|
|
3217
|
-
"kind": "Content",
|
|
3218
|
-
"text": "<TProps>"
|
|
3219
|
-
},
|
|
3220
|
-
{
|
|
3221
|
-
"kind": "Content",
|
|
3222
|
-
"text": ";"
|
|
3684
|
+
"text": "export interface CopyFileContext "
|
|
3223
3685
|
}
|
|
3224
3686
|
],
|
|
3225
|
-
"fileUrlPath": "src/
|
|
3226
|
-
"returnTypeTokenRange": {
|
|
3227
|
-
"startIndex": 10,
|
|
3228
|
-
"endIndex": 12
|
|
3229
|
-
},
|
|
3687
|
+
"fileUrlPath": "src/context/source-file.ts",
|
|
3230
3688
|
"releaseTag": "Public",
|
|
3231
|
-
"
|
|
3232
|
-
"
|
|
3689
|
+
"name": "CopyFileContext",
|
|
3690
|
+
"preserveMemberOrder": false,
|
|
3691
|
+
"members": [
|
|
3233
3692
|
{
|
|
3234
|
-
"
|
|
3235
|
-
"
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3693
|
+
"kind": "PropertySignature",
|
|
3694
|
+
"canonicalReference": "@alloy-js/core!CopyFileContext#path:member",
|
|
3695
|
+
"docComment": "",
|
|
3696
|
+
"excerptTokens": [
|
|
3697
|
+
{
|
|
3698
|
+
"kind": "Content",
|
|
3699
|
+
"text": "path: "
|
|
3700
|
+
},
|
|
3701
|
+
{
|
|
3702
|
+
"kind": "Content",
|
|
3703
|
+
"text": "string"
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"kind": "Content",
|
|
3707
|
+
"text": ";"
|
|
3708
|
+
}
|
|
3709
|
+
],
|
|
3710
|
+
"isReadonly": false,
|
|
3711
|
+
"isOptional": false,
|
|
3712
|
+
"releaseTag": "Public",
|
|
3713
|
+
"name": "path",
|
|
3714
|
+
"propertyTypeTokenRange": {
|
|
3715
|
+
"startIndex": 1,
|
|
3716
|
+
"endIndex": 2
|
|
3717
|
+
}
|
|
3240
3718
|
},
|
|
3241
3719
|
{
|
|
3242
|
-
"
|
|
3243
|
-
"
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3720
|
+
"kind": "PropertySignature",
|
|
3721
|
+
"canonicalReference": "@alloy-js/core!CopyFileContext#sourcePath:member",
|
|
3722
|
+
"docComment": "",
|
|
3723
|
+
"excerptTokens": [
|
|
3724
|
+
{
|
|
3725
|
+
"kind": "Content",
|
|
3726
|
+
"text": "sourcePath: "
|
|
3727
|
+
},
|
|
3728
|
+
{
|
|
3729
|
+
"kind": "Content",
|
|
3730
|
+
"text": "string"
|
|
3731
|
+
},
|
|
3732
|
+
{
|
|
3733
|
+
"kind": "Content",
|
|
3734
|
+
"text": ";"
|
|
3735
|
+
}
|
|
3736
|
+
],
|
|
3737
|
+
"isReadonly": false,
|
|
3738
|
+
"isOptional": false,
|
|
3739
|
+
"releaseTag": "Public",
|
|
3740
|
+
"name": "sourcePath",
|
|
3741
|
+
"propertyTypeTokenRange": {
|
|
3254
3742
|
"startIndex": 1,
|
|
3255
3743
|
"endIndex": 2
|
|
3256
|
-
},
|
|
3257
|
-
"defaultTypeTokenRange": {
|
|
3258
|
-
"startIndex": 3,
|
|
3259
|
-
"endIndex": 4
|
|
3260
3744
|
}
|
|
3261
3745
|
}
|
|
3262
3746
|
],
|
|
3263
|
-
"
|
|
3747
|
+
"extendsTokenRanges": []
|
|
3264
3748
|
},
|
|
3265
3749
|
{
|
|
3266
|
-
"kind": "
|
|
3267
|
-
"canonicalReference": "@alloy-js/core!
|
|
3750
|
+
"kind": "Interface",
|
|
3751
|
+
"canonicalReference": "@alloy-js/core!CopyFileProps:interface",
|
|
3268
3752
|
"docComment": "",
|
|
3269
3753
|
"excerptTokens": [
|
|
3270
3754
|
{
|
|
3271
3755
|
"kind": "Content",
|
|
3272
|
-
"text": "export
|
|
3273
|
-
}
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
"text": ">(defaultValue?: "
|
|
3281
|
-
},
|
|
3282
|
-
{
|
|
3283
|
-
"kind": "Content",
|
|
3284
|
-
"text": "T"
|
|
3285
|
-
},
|
|
3756
|
+
"text": "export interface CopyFileProps "
|
|
3757
|
+
}
|
|
3758
|
+
],
|
|
3759
|
+
"fileUrlPath": "src/components/CopyFile.tsx",
|
|
3760
|
+
"releaseTag": "Public",
|
|
3761
|
+
"name": "CopyFileProps",
|
|
3762
|
+
"preserveMemberOrder": false,
|
|
3763
|
+
"members": [
|
|
3286
3764
|
{
|
|
3287
|
-
"kind": "
|
|
3288
|
-
"
|
|
3765
|
+
"kind": "PropertySignature",
|
|
3766
|
+
"canonicalReference": "@alloy-js/core!CopyFileProps#path:member",
|
|
3767
|
+
"docComment": "/**\n * The path to write the copy to, relative to the containing directory.\n */\n",
|
|
3768
|
+
"excerptTokens": [
|
|
3769
|
+
{
|
|
3770
|
+
"kind": "Content",
|
|
3771
|
+
"text": "path: "
|
|
3772
|
+
},
|
|
3773
|
+
{
|
|
3774
|
+
"kind": "Content",
|
|
3775
|
+
"text": "string"
|
|
3776
|
+
},
|
|
3777
|
+
{
|
|
3778
|
+
"kind": "Content",
|
|
3779
|
+
"text": ";"
|
|
3780
|
+
}
|
|
3781
|
+
],
|
|
3782
|
+
"isReadonly": false,
|
|
3783
|
+
"isOptional": false,
|
|
3784
|
+
"releaseTag": "Public",
|
|
3785
|
+
"name": "path",
|
|
3786
|
+
"propertyTypeTokenRange": {
|
|
3787
|
+
"startIndex": 1,
|
|
3788
|
+
"endIndex": 2
|
|
3789
|
+
}
|
|
3289
3790
|
},
|
|
3290
3791
|
{
|
|
3291
|
-
"kind": "
|
|
3292
|
-
"
|
|
3293
|
-
|
|
3792
|
+
"kind": "PropertySignature",
|
|
3793
|
+
"canonicalReference": "@alloy-js/core!CopyFileProps#src:member",
|
|
3794
|
+
"docComment": "/**\n * The path to the file to copy.\n */\n",
|
|
3795
|
+
"excerptTokens": [
|
|
3796
|
+
{
|
|
3797
|
+
"kind": "Content",
|
|
3798
|
+
"text": "src: "
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
"kind": "Content",
|
|
3802
|
+
"text": "string"
|
|
3803
|
+
},
|
|
3804
|
+
{
|
|
3805
|
+
"kind": "Content",
|
|
3806
|
+
"text": ";"
|
|
3807
|
+
}
|
|
3808
|
+
],
|
|
3809
|
+
"isReadonly": false,
|
|
3810
|
+
"isOptional": false,
|
|
3811
|
+
"releaseTag": "Public",
|
|
3812
|
+
"name": "src",
|
|
3813
|
+
"propertyTypeTokenRange": {
|
|
3814
|
+
"startIndex": 1,
|
|
3815
|
+
"endIndex": 2
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
],
|
|
3819
|
+
"extendsTokenRanges": []
|
|
3820
|
+
},
|
|
3821
|
+
{
|
|
3822
|
+
"kind": "Interface",
|
|
3823
|
+
"canonicalReference": "@alloy-js/core!CopyOutputFile:interface",
|
|
3824
|
+
"docComment": "",
|
|
3825
|
+
"excerptTokens": [
|
|
3294
3826
|
{
|
|
3295
3827
|
"kind": "Content",
|
|
3296
|
-
"text": "
|
|
3828
|
+
"text": "export interface CopyOutputFile extends "
|
|
3297
3829
|
},
|
|
3298
3830
|
{
|
|
3299
3831
|
"kind": "Reference",
|
|
3300
|
-
"text": "
|
|
3301
|
-
"canonicalReference": "@alloy-js/core!
|
|
3302
|
-
},
|
|
3303
|
-
{
|
|
3304
|
-
"kind": "Content",
|
|
3305
|
-
"text": "<T>"
|
|
3832
|
+
"text": "OutputFileBase",
|
|
3833
|
+
"canonicalReference": "@alloy-js/core!OutputFileBase:interface"
|
|
3306
3834
|
},
|
|
3307
3835
|
{
|
|
3308
3836
|
"kind": "Content",
|
|
3309
|
-
"text": "
|
|
3837
|
+
"text": " "
|
|
3310
3838
|
}
|
|
3311
3839
|
],
|
|
3312
|
-
"fileUrlPath": "src/
|
|
3313
|
-
"returnTypeTokenRange": {
|
|
3314
|
-
"startIndex": 7,
|
|
3315
|
-
"endIndex": 9
|
|
3316
|
-
},
|
|
3840
|
+
"fileUrlPath": "src/render.ts",
|
|
3317
3841
|
"releaseTag": "Public",
|
|
3318
|
-
"
|
|
3319
|
-
"
|
|
3320
|
-
|
|
3321
|
-
"parameterName": "defaultValue",
|
|
3322
|
-
"parameterTypeTokenRange": {
|
|
3323
|
-
"startIndex": 3,
|
|
3324
|
-
"endIndex": 4
|
|
3325
|
-
},
|
|
3326
|
-
"isOptional": true
|
|
3327
|
-
},
|
|
3328
|
-
{
|
|
3329
|
-
"parameterName": "name",
|
|
3330
|
-
"parameterTypeTokenRange": {
|
|
3331
|
-
"startIndex": 5,
|
|
3332
|
-
"endIndex": 6
|
|
3333
|
-
},
|
|
3334
|
-
"isOptional": true
|
|
3335
|
-
}
|
|
3336
|
-
],
|
|
3337
|
-
"typeParameters": [
|
|
3842
|
+
"name": "CopyOutputFile",
|
|
3843
|
+
"preserveMemberOrder": false,
|
|
3844
|
+
"members": [
|
|
3338
3845
|
{
|
|
3339
|
-
"
|
|
3340
|
-
"
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3846
|
+
"kind": "PropertySignature",
|
|
3847
|
+
"canonicalReference": "@alloy-js/core!CopyOutputFile#sourcePath:member",
|
|
3848
|
+
"docComment": "",
|
|
3849
|
+
"excerptTokens": [
|
|
3850
|
+
{
|
|
3851
|
+
"kind": "Content",
|
|
3852
|
+
"text": "sourcePath: "
|
|
3853
|
+
},
|
|
3854
|
+
{
|
|
3855
|
+
"kind": "Content",
|
|
3856
|
+
"text": "string"
|
|
3857
|
+
},
|
|
3858
|
+
{
|
|
3859
|
+
"kind": "Content",
|
|
3860
|
+
"text": ";"
|
|
3861
|
+
}
|
|
3862
|
+
],
|
|
3863
|
+
"isReadonly": false,
|
|
3864
|
+
"isOptional": false,
|
|
3865
|
+
"releaseTag": "Public",
|
|
3866
|
+
"name": "sourcePath",
|
|
3867
|
+
"propertyTypeTokenRange": {
|
|
3345
3868
|
"startIndex": 1,
|
|
3346
3869
|
"endIndex": 2
|
|
3347
3870
|
}
|
|
3348
3871
|
}
|
|
3349
3872
|
],
|
|
3350
|
-
"
|
|
3873
|
+
"extendsTokenRanges": [
|
|
3874
|
+
{
|
|
3875
|
+
"startIndex": 1,
|
|
3876
|
+
"endIndex": 2
|
|
3877
|
+
}
|
|
3878
|
+
]
|
|
3351
3879
|
},
|
|
3352
3880
|
{
|
|
3353
3881
|
"kind": "Function",
|
|
3354
|
-
"canonicalReference": "@alloy-js/core!
|
|
3355
|
-
"docComment": "",
|
|
3882
|
+
"canonicalReference": "@alloy-js/core!createAssignmentContext:function(1)",
|
|
3883
|
+
"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",
|
|
3356
3884
|
"excerptTokens": [
|
|
3357
3885
|
{
|
|
3358
3886
|
"kind": "Content",
|
|
3359
|
-
"text": "export declare function
|
|
3360
|
-
},
|
|
3361
|
-
{
|
|
3362
|
-
"kind": "Content",
|
|
3363
|
-
"text": "(useChildren: "
|
|
3887
|
+
"text": "export declare function createAssignmentContext(target: "
|
|
3364
3888
|
},
|
|
3365
3889
|
{
|
|
3366
3890
|
"kind": "Reference",
|
|
3367
|
-
"text": "
|
|
3368
|
-
"canonicalReference": "@alloy-js/core!
|
|
3369
|
-
},
|
|
3370
|
-
{
|
|
3371
|
-
"kind": "Content",
|
|
3372
|
-
"text": ") => void"
|
|
3891
|
+
"text": "OutputSymbol",
|
|
3892
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
3373
3893
|
},
|
|
3374
3894
|
{
|
|
3375
3895
|
"kind": "Content",
|
|
@@ -3377,46 +3897,46 @@
|
|
|
3377
3897
|
},
|
|
3378
3898
|
{
|
|
3379
3899
|
"kind": "Reference",
|
|
3380
|
-
"text": "
|
|
3381
|
-
"canonicalReference": "@alloy-js/core!
|
|
3900
|
+
"text": "AssignmentContext",
|
|
3901
|
+
"canonicalReference": "@alloy-js/core!AssignmentContext:interface"
|
|
3382
3902
|
},
|
|
3383
3903
|
{
|
|
3384
3904
|
"kind": "Content",
|
|
3385
3905
|
"text": ";"
|
|
3386
3906
|
}
|
|
3387
3907
|
],
|
|
3388
|
-
"fileUrlPath": "src/
|
|
3908
|
+
"fileUrlPath": "src/context/assignment.ts",
|
|
3389
3909
|
"returnTypeTokenRange": {
|
|
3390
|
-
"startIndex":
|
|
3391
|
-
"endIndex":
|
|
3910
|
+
"startIndex": 3,
|
|
3911
|
+
"endIndex": 4
|
|
3392
3912
|
},
|
|
3393
3913
|
"releaseTag": "Public",
|
|
3394
3914
|
"overloadIndex": 1,
|
|
3395
3915
|
"parameters": [
|
|
3396
3916
|
{
|
|
3397
|
-
"parameterName": "
|
|
3917
|
+
"parameterName": "target",
|
|
3398
3918
|
"parameterTypeTokenRange": {
|
|
3399
3919
|
"startIndex": 1,
|
|
3400
|
-
"endIndex":
|
|
3920
|
+
"endIndex": 2
|
|
3401
3921
|
},
|
|
3402
3922
|
"isOptional": false
|
|
3403
3923
|
}
|
|
3404
3924
|
],
|
|
3405
|
-
"name": "
|
|
3925
|
+
"name": "createAssignmentContext"
|
|
3406
3926
|
},
|
|
3407
3927
|
{
|
|
3408
3928
|
"kind": "Function",
|
|
3409
|
-
"canonicalReference": "@alloy-js/core!
|
|
3410
|
-
"docComment": "
|
|
3929
|
+
"canonicalReference": "@alloy-js/core!createComponent:function(1)",
|
|
3930
|
+
"docComment": "",
|
|
3411
3931
|
"excerptTokens": [
|
|
3412
3932
|
{
|
|
3413
3933
|
"kind": "Content",
|
|
3414
|
-
"text": "export declare function
|
|
3934
|
+
"text": "export declare function createComponent<TProps extends "
|
|
3415
3935
|
},
|
|
3416
3936
|
{
|
|
3417
3937
|
"kind": "Reference",
|
|
3418
|
-
"text": "
|
|
3419
|
-
"canonicalReference": "@alloy-js/core!
|
|
3938
|
+
"text": "Props",
|
|
3939
|
+
"canonicalReference": "@alloy-js/core!Props:type"
|
|
3420
3940
|
},
|
|
3421
3941
|
{
|
|
3422
3942
|
"kind": "Content",
|
|
@@ -3424,21 +3944,29 @@
|
|
|
3424
3944
|
},
|
|
3425
3945
|
{
|
|
3426
3946
|
"kind": "Reference",
|
|
3427
|
-
"text": "
|
|
3428
|
-
"canonicalReference": "@alloy-js/core!
|
|
3947
|
+
"text": "Props",
|
|
3948
|
+
"canonicalReference": "@alloy-js/core!Props:type"
|
|
3429
3949
|
},
|
|
3430
3950
|
{
|
|
3431
3951
|
"kind": "Content",
|
|
3432
|
-
"text": ">(
|
|
3952
|
+
"text": ">(C: "
|
|
3433
3953
|
},
|
|
3434
3954
|
{
|
|
3435
3955
|
"kind": "Reference",
|
|
3436
|
-
"text": "
|
|
3437
|
-
"canonicalReference": "@alloy-js/core!
|
|
3956
|
+
"text": "Component",
|
|
3957
|
+
"canonicalReference": "@alloy-js/core!Component:interface"
|
|
3438
3958
|
},
|
|
3439
3959
|
{
|
|
3440
3960
|
"kind": "Content",
|
|
3441
|
-
"text": "<
|
|
3961
|
+
"text": "<TProps>"
|
|
3962
|
+
},
|
|
3963
|
+
{
|
|
3964
|
+
"kind": "Content",
|
|
3965
|
+
"text": ", props: "
|
|
3966
|
+
},
|
|
3967
|
+
{
|
|
3968
|
+
"kind": "Content",
|
|
3969
|
+
"text": "TProps"
|
|
3442
3970
|
},
|
|
3443
3971
|
{
|
|
3444
3972
|
"kind": "Content",
|
|
@@ -3446,38 +3974,46 @@
|
|
|
3446
3974
|
},
|
|
3447
3975
|
{
|
|
3448
3976
|
"kind": "Reference",
|
|
3449
|
-
"text": "
|
|
3450
|
-
"canonicalReference": "@alloy-js/core!
|
|
3977
|
+
"text": "ComponentCreator",
|
|
3978
|
+
"canonicalReference": "@alloy-js/core!ComponentCreator:interface"
|
|
3451
3979
|
},
|
|
3452
3980
|
{
|
|
3453
3981
|
"kind": "Content",
|
|
3454
|
-
"text": "<
|
|
3982
|
+
"text": "<TProps>"
|
|
3455
3983
|
},
|
|
3456
3984
|
{
|
|
3457
3985
|
"kind": "Content",
|
|
3458
3986
|
"text": ";"
|
|
3459
3987
|
}
|
|
3460
3988
|
],
|
|
3461
|
-
"fileUrlPath": "src/
|
|
3989
|
+
"fileUrlPath": "src/runtime/component.ts",
|
|
3462
3990
|
"returnTypeTokenRange": {
|
|
3463
|
-
"startIndex":
|
|
3464
|
-
"endIndex":
|
|
3991
|
+
"startIndex": 10,
|
|
3992
|
+
"endIndex": 12
|
|
3465
3993
|
},
|
|
3466
3994
|
"releaseTag": "Public",
|
|
3467
3995
|
"overloadIndex": 1,
|
|
3468
3996
|
"parameters": [
|
|
3469
3997
|
{
|
|
3470
|
-
"parameterName": "
|
|
3998
|
+
"parameterName": "C",
|
|
3471
3999
|
"parameterTypeTokenRange": {
|
|
3472
4000
|
"startIndex": 5,
|
|
3473
4001
|
"endIndex": 7
|
|
3474
4002
|
},
|
|
3475
|
-
"isOptional":
|
|
4003
|
+
"isOptional": false
|
|
4004
|
+
},
|
|
4005
|
+
{
|
|
4006
|
+
"parameterName": "props",
|
|
4007
|
+
"parameterTypeTokenRange": {
|
|
4008
|
+
"startIndex": 8,
|
|
4009
|
+
"endIndex": 9
|
|
4010
|
+
},
|
|
4011
|
+
"isOptional": false
|
|
3476
4012
|
}
|
|
3477
4013
|
],
|
|
3478
4014
|
"typeParameters": [
|
|
3479
4015
|
{
|
|
3480
|
-
"typeParameterName": "
|
|
4016
|
+
"typeParameterName": "TProps",
|
|
3481
4017
|
"constraintTokenRange": {
|
|
3482
4018
|
"startIndex": 1,
|
|
3483
4019
|
"endIndex": 2
|
|
@@ -3488,46 +4024,36 @@
|
|
|
3488
4024
|
}
|
|
3489
4025
|
}
|
|
3490
4026
|
],
|
|
3491
|
-
"name": "
|
|
4027
|
+
"name": "createComponent"
|
|
3492
4028
|
},
|
|
3493
4029
|
{
|
|
3494
4030
|
"kind": "Function",
|
|
3495
|
-
"canonicalReference": "@alloy-js/core!
|
|
4031
|
+
"canonicalReference": "@alloy-js/core!createContext:function(1)",
|
|
3496
4032
|
"docComment": "",
|
|
3497
4033
|
"excerptTokens": [
|
|
3498
4034
|
{
|
|
3499
4035
|
"kind": "Content",
|
|
3500
|
-
"text": "export declare function
|
|
4036
|
+
"text": "export declare function createContext<T = "
|
|
3501
4037
|
},
|
|
3502
4038
|
{
|
|
3503
4039
|
"kind": "Content",
|
|
3504
|
-
"text": "
|
|
3505
|
-
},
|
|
3506
|
-
{
|
|
3507
|
-
"kind": "Reference",
|
|
3508
|
-
"text": "IntrinsicElements",
|
|
3509
|
-
"canonicalReference": "@alloy-js/core!IntrinsicElements:interface"
|
|
4040
|
+
"text": "unknown"
|
|
3510
4041
|
},
|
|
3511
4042
|
{
|
|
3512
4043
|
"kind": "Content",
|
|
3513
|
-
"text": ">(
|
|
4044
|
+
"text": ">(defaultValue?: "
|
|
3514
4045
|
},
|
|
3515
4046
|
{
|
|
3516
4047
|
"kind": "Content",
|
|
3517
|
-
"text": "
|
|
4048
|
+
"text": "T"
|
|
3518
4049
|
},
|
|
3519
4050
|
{
|
|
3520
4051
|
"kind": "Content",
|
|
3521
|
-
"text": ",
|
|
3522
|
-
},
|
|
3523
|
-
{
|
|
3524
|
-
"kind": "Reference",
|
|
3525
|
-
"text": "IntrinsicElements",
|
|
3526
|
-
"canonicalReference": "@alloy-js/core!IntrinsicElements:interface"
|
|
4052
|
+
"text": ", name?: "
|
|
3527
4053
|
},
|
|
3528
4054
|
{
|
|
3529
4055
|
"kind": "Content",
|
|
3530
|
-
"text": "
|
|
4056
|
+
"text": "string"
|
|
3531
4057
|
},
|
|
3532
4058
|
{
|
|
3533
4059
|
"kind": "Content",
|
|
@@ -3535,31 +4061,269 @@
|
|
|
3535
4061
|
},
|
|
3536
4062
|
{
|
|
3537
4063
|
"kind": "Reference",
|
|
3538
|
-
"text": "
|
|
3539
|
-
"canonicalReference": "@alloy-js/core!
|
|
4064
|
+
"text": "ComponentContext",
|
|
4065
|
+
"canonicalReference": "@alloy-js/core!ComponentContext:interface"
|
|
3540
4066
|
},
|
|
3541
4067
|
{
|
|
3542
4068
|
"kind": "Content",
|
|
3543
|
-
"text": "<
|
|
4069
|
+
"text": "<T>"
|
|
3544
4070
|
},
|
|
3545
4071
|
{
|
|
3546
4072
|
"kind": "Content",
|
|
3547
4073
|
"text": ";"
|
|
3548
4074
|
}
|
|
3549
4075
|
],
|
|
3550
|
-
"fileUrlPath": "src/
|
|
4076
|
+
"fileUrlPath": "src/context.ts",
|
|
3551
4077
|
"returnTypeTokenRange": {
|
|
3552
|
-
"startIndex":
|
|
3553
|
-
"endIndex":
|
|
4078
|
+
"startIndex": 7,
|
|
4079
|
+
"endIndex": 9
|
|
3554
4080
|
},
|
|
3555
4081
|
"releaseTag": "Public",
|
|
3556
4082
|
"overloadIndex": 1,
|
|
3557
4083
|
"parameters": [
|
|
3558
4084
|
{
|
|
3559
|
-
"parameterName": "
|
|
4085
|
+
"parameterName": "defaultValue",
|
|
3560
4086
|
"parameterTypeTokenRange": {
|
|
3561
|
-
"startIndex":
|
|
3562
|
-
"endIndex":
|
|
4087
|
+
"startIndex": 3,
|
|
4088
|
+
"endIndex": 4
|
|
4089
|
+
},
|
|
4090
|
+
"isOptional": true
|
|
4091
|
+
},
|
|
4092
|
+
{
|
|
4093
|
+
"parameterName": "name",
|
|
4094
|
+
"parameterTypeTokenRange": {
|
|
4095
|
+
"startIndex": 5,
|
|
4096
|
+
"endIndex": 6
|
|
4097
|
+
},
|
|
4098
|
+
"isOptional": true
|
|
4099
|
+
}
|
|
4100
|
+
],
|
|
4101
|
+
"typeParameters": [
|
|
4102
|
+
{
|
|
4103
|
+
"typeParameterName": "T",
|
|
4104
|
+
"constraintTokenRange": {
|
|
4105
|
+
"startIndex": 0,
|
|
4106
|
+
"endIndex": 0
|
|
4107
|
+
},
|
|
4108
|
+
"defaultTypeTokenRange": {
|
|
4109
|
+
"startIndex": 1,
|
|
4110
|
+
"endIndex": 2
|
|
4111
|
+
}
|
|
4112
|
+
}
|
|
4113
|
+
],
|
|
4114
|
+
"name": "createContext"
|
|
4115
|
+
},
|
|
4116
|
+
{
|
|
4117
|
+
"kind": "Function",
|
|
4118
|
+
"canonicalReference": "@alloy-js/core!createCustomContext:function(1)",
|
|
4119
|
+
"docComment": "",
|
|
4120
|
+
"excerptTokens": [
|
|
4121
|
+
{
|
|
4122
|
+
"kind": "Content",
|
|
4123
|
+
"text": "export declare function createCustomContext(useCallback: "
|
|
4124
|
+
},
|
|
4125
|
+
{
|
|
4126
|
+
"kind": "Content",
|
|
4127
|
+
"text": "(useChildren: "
|
|
4128
|
+
},
|
|
4129
|
+
{
|
|
4130
|
+
"kind": "Reference",
|
|
4131
|
+
"text": "CustomContextChildrenCallback",
|
|
4132
|
+
"canonicalReference": "@alloy-js/core!CustomContextChildrenCallback:type"
|
|
4133
|
+
},
|
|
4134
|
+
{
|
|
4135
|
+
"kind": "Content",
|
|
4136
|
+
"text": ") => void"
|
|
4137
|
+
},
|
|
4138
|
+
{
|
|
4139
|
+
"kind": "Content",
|
|
4140
|
+
"text": "): "
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"kind": "Reference",
|
|
4144
|
+
"text": "CustomContext",
|
|
4145
|
+
"canonicalReference": "@alloy-js/core!CustomContext:interface"
|
|
4146
|
+
},
|
|
4147
|
+
{
|
|
4148
|
+
"kind": "Content",
|
|
4149
|
+
"text": ";"
|
|
4150
|
+
}
|
|
4151
|
+
],
|
|
4152
|
+
"fileUrlPath": "src/reactivity.ts",
|
|
4153
|
+
"returnTypeTokenRange": {
|
|
4154
|
+
"startIndex": 5,
|
|
4155
|
+
"endIndex": 6
|
|
4156
|
+
},
|
|
4157
|
+
"releaseTag": "Public",
|
|
4158
|
+
"overloadIndex": 1,
|
|
4159
|
+
"parameters": [
|
|
4160
|
+
{
|
|
4161
|
+
"parameterName": "useCallback",
|
|
4162
|
+
"parameterTypeTokenRange": {
|
|
4163
|
+
"startIndex": 1,
|
|
4164
|
+
"endIndex": 4
|
|
4165
|
+
},
|
|
4166
|
+
"isOptional": false
|
|
4167
|
+
}
|
|
4168
|
+
],
|
|
4169
|
+
"name": "createCustomContext"
|
|
4170
|
+
},
|
|
4171
|
+
{
|
|
4172
|
+
"kind": "Function",
|
|
4173
|
+
"canonicalReference": "@alloy-js/core!createDeclarationTap:function(1)",
|
|
4174
|
+
"docComment": "/**\n * Create a tap for {@link DeclarationContext}.\n */\n",
|
|
4175
|
+
"excerptTokens": [
|
|
4176
|
+
{
|
|
4177
|
+
"kind": "Content",
|
|
4178
|
+
"text": "export declare function createDeclarationTap<TSymbol extends "
|
|
4179
|
+
},
|
|
4180
|
+
{
|
|
4181
|
+
"kind": "Reference",
|
|
4182
|
+
"text": "OutputSymbol",
|
|
4183
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
"kind": "Content",
|
|
4187
|
+
"text": " = "
|
|
4188
|
+
},
|
|
4189
|
+
{
|
|
4190
|
+
"kind": "Reference",
|
|
4191
|
+
"text": "OutputSymbol",
|
|
4192
|
+
"canonicalReference": "@alloy-js/core!OutputSymbol:class"
|
|
4193
|
+
},
|
|
4194
|
+
{
|
|
4195
|
+
"kind": "Content",
|
|
4196
|
+
"text": ">(handler?: "
|
|
4197
|
+
},
|
|
4198
|
+
{
|
|
4199
|
+
"kind": "Reference",
|
|
4200
|
+
"text": "TapHandler",
|
|
4201
|
+
"canonicalReference": "@alloy-js/core!TapHandler:interface"
|
|
4202
|
+
},
|
|
4203
|
+
{
|
|
4204
|
+
"kind": "Content",
|
|
4205
|
+
"text": "<TSymbol>"
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
"kind": "Content",
|
|
4209
|
+
"text": "): "
|
|
4210
|
+
},
|
|
4211
|
+
{
|
|
4212
|
+
"kind": "Reference",
|
|
4213
|
+
"text": "Tap",
|
|
4214
|
+
"canonicalReference": "@alloy-js/core!Tap:interface"
|
|
4215
|
+
},
|
|
4216
|
+
{
|
|
4217
|
+
"kind": "Content",
|
|
4218
|
+
"text": "<TSymbol>"
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"kind": "Content",
|
|
4222
|
+
"text": ";"
|
|
4223
|
+
}
|
|
4224
|
+
],
|
|
4225
|
+
"fileUrlPath": "src/tap.ts",
|
|
4226
|
+
"returnTypeTokenRange": {
|
|
4227
|
+
"startIndex": 8,
|
|
4228
|
+
"endIndex": 10
|
|
4229
|
+
},
|
|
4230
|
+
"releaseTag": "Public",
|
|
4231
|
+
"overloadIndex": 1,
|
|
4232
|
+
"parameters": [
|
|
4233
|
+
{
|
|
4234
|
+
"parameterName": "handler",
|
|
4235
|
+
"parameterTypeTokenRange": {
|
|
4236
|
+
"startIndex": 5,
|
|
4237
|
+
"endIndex": 7
|
|
4238
|
+
},
|
|
4239
|
+
"isOptional": true
|
|
4240
|
+
}
|
|
4241
|
+
],
|
|
4242
|
+
"typeParameters": [
|
|
4243
|
+
{
|
|
4244
|
+
"typeParameterName": "TSymbol",
|
|
4245
|
+
"constraintTokenRange": {
|
|
4246
|
+
"startIndex": 1,
|
|
4247
|
+
"endIndex": 2
|
|
4248
|
+
},
|
|
4249
|
+
"defaultTypeTokenRange": {
|
|
4250
|
+
"startIndex": 3,
|
|
4251
|
+
"endIndex": 4
|
|
4252
|
+
}
|
|
4253
|
+
}
|
|
4254
|
+
],
|
|
4255
|
+
"name": "createDeclarationTap"
|
|
4256
|
+
},
|
|
4257
|
+
{
|
|
4258
|
+
"kind": "Function",
|
|
4259
|
+
"canonicalReference": "@alloy-js/core!createIntrinsic:function(1)",
|
|
4260
|
+
"docComment": "",
|
|
4261
|
+
"excerptTokens": [
|
|
4262
|
+
{
|
|
4263
|
+
"kind": "Content",
|
|
4264
|
+
"text": "export declare function createIntrinsic<TKey extends "
|
|
4265
|
+
},
|
|
4266
|
+
{
|
|
4267
|
+
"kind": "Content",
|
|
4268
|
+
"text": "keyof "
|
|
4269
|
+
},
|
|
4270
|
+
{
|
|
4271
|
+
"kind": "Reference",
|
|
4272
|
+
"text": "IntrinsicElements",
|
|
4273
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElements:interface"
|
|
4274
|
+
},
|
|
4275
|
+
{
|
|
4276
|
+
"kind": "Content",
|
|
4277
|
+
"text": ">(name: "
|
|
4278
|
+
},
|
|
4279
|
+
{
|
|
4280
|
+
"kind": "Content",
|
|
4281
|
+
"text": "TKey"
|
|
4282
|
+
},
|
|
4283
|
+
{
|
|
4284
|
+
"kind": "Content",
|
|
4285
|
+
"text": ", props: "
|
|
4286
|
+
},
|
|
4287
|
+
{
|
|
4288
|
+
"kind": "Reference",
|
|
4289
|
+
"text": "IntrinsicElements",
|
|
4290
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElements:interface"
|
|
4291
|
+
},
|
|
4292
|
+
{
|
|
4293
|
+
"kind": "Content",
|
|
4294
|
+
"text": "[TKey]"
|
|
4295
|
+
},
|
|
4296
|
+
{
|
|
4297
|
+
"kind": "Content",
|
|
4298
|
+
"text": "): "
|
|
4299
|
+
},
|
|
4300
|
+
{
|
|
4301
|
+
"kind": "Reference",
|
|
4302
|
+
"text": "IntrinsicElementBase",
|
|
4303
|
+
"canonicalReference": "@alloy-js/core!IntrinsicElementBase:interface"
|
|
4304
|
+
},
|
|
4305
|
+
{
|
|
4306
|
+
"kind": "Content",
|
|
4307
|
+
"text": "<TKey>"
|
|
4308
|
+
},
|
|
4309
|
+
{
|
|
4310
|
+
"kind": "Content",
|
|
4311
|
+
"text": ";"
|
|
4312
|
+
}
|
|
4313
|
+
],
|
|
4314
|
+
"fileUrlPath": "src/runtime/intrinsic.ts",
|
|
4315
|
+
"returnTypeTokenRange": {
|
|
4316
|
+
"startIndex": 9,
|
|
4317
|
+
"endIndex": 11
|
|
4318
|
+
},
|
|
4319
|
+
"releaseTag": "Public",
|
|
4320
|
+
"overloadIndex": 1,
|
|
4321
|
+
"parameters": [
|
|
4322
|
+
{
|
|
4323
|
+
"parameterName": "name",
|
|
4324
|
+
"parameterTypeTokenRange": {
|
|
4325
|
+
"startIndex": 4,
|
|
4326
|
+
"endIndex": 5
|
|
3563
4327
|
},
|
|
3564
4328
|
"isOptional": false
|
|
3565
4329
|
},
|
|
@@ -10731,7 +11495,7 @@
|
|
|
10731
11495
|
{
|
|
10732
11496
|
"kind": "Reference",
|
|
10733
11497
|
"text": "OutputFile",
|
|
10734
|
-
"canonicalReference": "@alloy-js/core!OutputFile:
|
|
11498
|
+
"canonicalReference": "@alloy-js/core!OutputFile:type"
|
|
10735
11499
|
},
|
|
10736
11500
|
{
|
|
10737
11501
|
"kind": "Content",
|
|
@@ -10809,77 +11573,59 @@
|
|
|
10809
11573
|
"extendsTokenRanges": []
|
|
10810
11574
|
},
|
|
10811
11575
|
{
|
|
10812
|
-
"kind": "
|
|
10813
|
-
"canonicalReference": "@alloy-js/core!OutputFile:
|
|
11576
|
+
"kind": "TypeAlias",
|
|
11577
|
+
"canonicalReference": "@alloy-js/core!OutputFile:type",
|
|
10814
11578
|
"docComment": "",
|
|
10815
11579
|
"excerptTokens": [
|
|
10816
11580
|
{
|
|
10817
11581
|
"kind": "Content",
|
|
10818
|
-
"text": "export
|
|
11582
|
+
"text": "export type OutputFile = "
|
|
11583
|
+
},
|
|
11584
|
+
{
|
|
11585
|
+
"kind": "Reference",
|
|
11586
|
+
"text": "ContentOutputFile",
|
|
11587
|
+
"canonicalReference": "@alloy-js/core!ContentOutputFile:interface"
|
|
11588
|
+
},
|
|
11589
|
+
{
|
|
11590
|
+
"kind": "Content",
|
|
11591
|
+
"text": " | "
|
|
11592
|
+
},
|
|
11593
|
+
{
|
|
11594
|
+
"kind": "Reference",
|
|
11595
|
+
"text": "CopyOutputFile",
|
|
11596
|
+
"canonicalReference": "@alloy-js/core!CopyOutputFile:interface"
|
|
11597
|
+
},
|
|
11598
|
+
{
|
|
11599
|
+
"kind": "Content",
|
|
11600
|
+
"text": ";"
|
|
10819
11601
|
}
|
|
10820
11602
|
],
|
|
10821
11603
|
"fileUrlPath": "src/render.ts",
|
|
10822
11604
|
"releaseTag": "Public",
|
|
10823
11605
|
"name": "OutputFile",
|
|
11606
|
+
"typeTokenRange": {
|
|
11607
|
+
"startIndex": 1,
|
|
11608
|
+
"endIndex": 4
|
|
11609
|
+
}
|
|
11610
|
+
},
|
|
11611
|
+
{
|
|
11612
|
+
"kind": "Interface",
|
|
11613
|
+
"canonicalReference": "@alloy-js/core!OutputFileBase:interface",
|
|
11614
|
+
"docComment": "",
|
|
11615
|
+
"excerptTokens": [
|
|
11616
|
+
{
|
|
11617
|
+
"kind": "Content",
|
|
11618
|
+
"text": "export interface OutputFileBase "
|
|
11619
|
+
}
|
|
11620
|
+
],
|
|
11621
|
+
"fileUrlPath": "src/render.ts",
|
|
11622
|
+
"releaseTag": "Public",
|
|
11623
|
+
"name": "OutputFileBase",
|
|
10824
11624
|
"preserveMemberOrder": false,
|
|
10825
11625
|
"members": [
|
|
10826
11626
|
{
|
|
10827
11627
|
"kind": "PropertySignature",
|
|
10828
|
-
"canonicalReference": "@alloy-js/core!
|
|
10829
|
-
"docComment": "",
|
|
10830
|
-
"excerptTokens": [
|
|
10831
|
-
{
|
|
10832
|
-
"kind": "Content",
|
|
10833
|
-
"text": "contents: "
|
|
10834
|
-
},
|
|
10835
|
-
{
|
|
10836
|
-
"kind": "Content",
|
|
10837
|
-
"text": "string"
|
|
10838
|
-
},
|
|
10839
|
-
{
|
|
10840
|
-
"kind": "Content",
|
|
10841
|
-
"text": ";"
|
|
10842
|
-
}
|
|
10843
|
-
],
|
|
10844
|
-
"isReadonly": false,
|
|
10845
|
-
"isOptional": false,
|
|
10846
|
-
"releaseTag": "Public",
|
|
10847
|
-
"name": "contents",
|
|
10848
|
-
"propertyTypeTokenRange": {
|
|
10849
|
-
"startIndex": 1,
|
|
10850
|
-
"endIndex": 2
|
|
10851
|
-
}
|
|
10852
|
-
},
|
|
10853
|
-
{
|
|
10854
|
-
"kind": "PropertySignature",
|
|
10855
|
-
"canonicalReference": "@alloy-js/core!OutputFile#filetype:member",
|
|
10856
|
-
"docComment": "",
|
|
10857
|
-
"excerptTokens": [
|
|
10858
|
-
{
|
|
10859
|
-
"kind": "Content",
|
|
10860
|
-
"text": "filetype: "
|
|
10861
|
-
},
|
|
10862
|
-
{
|
|
10863
|
-
"kind": "Content",
|
|
10864
|
-
"text": "string"
|
|
10865
|
-
},
|
|
10866
|
-
{
|
|
10867
|
-
"kind": "Content",
|
|
10868
|
-
"text": ";"
|
|
10869
|
-
}
|
|
10870
|
-
],
|
|
10871
|
-
"isReadonly": false,
|
|
10872
|
-
"isOptional": false,
|
|
10873
|
-
"releaseTag": "Public",
|
|
10874
|
-
"name": "filetype",
|
|
10875
|
-
"propertyTypeTokenRange": {
|
|
10876
|
-
"startIndex": 1,
|
|
10877
|
-
"endIndex": 2
|
|
10878
|
-
}
|
|
10879
|
-
},
|
|
10880
|
-
{
|
|
10881
|
-
"kind": "PropertySignature",
|
|
10882
|
-
"canonicalReference": "@alloy-js/core!OutputFile#kind:member",
|
|
11628
|
+
"canonicalReference": "@alloy-js/core!OutputFileBase#kind:member",
|
|
10883
11629
|
"docComment": "",
|
|
10884
11630
|
"excerptTokens": [
|
|
10885
11631
|
{
|
|
@@ -10906,7 +11652,7 @@
|
|
|
10906
11652
|
},
|
|
10907
11653
|
{
|
|
10908
11654
|
"kind": "PropertySignature",
|
|
10909
|
-
"canonicalReference": "@alloy-js/core!
|
|
11655
|
+
"canonicalReference": "@alloy-js/core!OutputFileBase#path:member",
|
|
10910
11656
|
"docComment": "",
|
|
10911
11657
|
"excerptTokens": [
|
|
10912
11658
|
{
|
|
@@ -13494,7 +14240,7 @@
|
|
|
13494
14240
|
{
|
|
13495
14241
|
"kind": "Reference",
|
|
13496
14242
|
"text": "OutputFile",
|
|
13497
|
-
"canonicalReference": "@alloy-js/core!OutputFile:
|
|
14243
|
+
"canonicalReference": "@alloy-js/core!OutputFile:type"
|
|
13498
14244
|
},
|
|
13499
14245
|
{
|
|
13500
14246
|
"kind": "Content",
|
|
@@ -15175,6 +15921,83 @@
|
|
|
15175
15921
|
],
|
|
15176
15922
|
"name": "render"
|
|
15177
15923
|
},
|
|
15924
|
+
{
|
|
15925
|
+
"kind": "Function",
|
|
15926
|
+
"canonicalReference": "@alloy-js/core!renderAsync:function(1)",
|
|
15927
|
+
"docComment": "",
|
|
15928
|
+
"excerptTokens": [
|
|
15929
|
+
{
|
|
15930
|
+
"kind": "Content",
|
|
15931
|
+
"text": "export declare function renderAsync(children: "
|
|
15932
|
+
},
|
|
15933
|
+
{
|
|
15934
|
+
"kind": "Reference",
|
|
15935
|
+
"text": "Children",
|
|
15936
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
15937
|
+
},
|
|
15938
|
+
{
|
|
15939
|
+
"kind": "Content",
|
|
15940
|
+
"text": ", options?: "
|
|
15941
|
+
},
|
|
15942
|
+
{
|
|
15943
|
+
"kind": "Reference",
|
|
15944
|
+
"text": "PrintTreeOptions",
|
|
15945
|
+
"canonicalReference": "@alloy-js/core!PrintTreeOptions:interface"
|
|
15946
|
+
},
|
|
15947
|
+
{
|
|
15948
|
+
"kind": "Content",
|
|
15949
|
+
"text": "): "
|
|
15950
|
+
},
|
|
15951
|
+
{
|
|
15952
|
+
"kind": "Reference",
|
|
15953
|
+
"text": "Promise",
|
|
15954
|
+
"canonicalReference": "!Promise:interface"
|
|
15955
|
+
},
|
|
15956
|
+
{
|
|
15957
|
+
"kind": "Content",
|
|
15958
|
+
"text": "<"
|
|
15959
|
+
},
|
|
15960
|
+
{
|
|
15961
|
+
"kind": "Reference",
|
|
15962
|
+
"text": "OutputDirectory",
|
|
15963
|
+
"canonicalReference": "@alloy-js/core!OutputDirectory:interface"
|
|
15964
|
+
},
|
|
15965
|
+
{
|
|
15966
|
+
"kind": "Content",
|
|
15967
|
+
"text": ">"
|
|
15968
|
+
},
|
|
15969
|
+
{
|
|
15970
|
+
"kind": "Content",
|
|
15971
|
+
"text": ";"
|
|
15972
|
+
}
|
|
15973
|
+
],
|
|
15974
|
+
"fileUrlPath": "src/render.ts",
|
|
15975
|
+
"returnTypeTokenRange": {
|
|
15976
|
+
"startIndex": 5,
|
|
15977
|
+
"endIndex": 9
|
|
15978
|
+
},
|
|
15979
|
+
"releaseTag": "Public",
|
|
15980
|
+
"overloadIndex": 1,
|
|
15981
|
+
"parameters": [
|
|
15982
|
+
{
|
|
15983
|
+
"parameterName": "children",
|
|
15984
|
+
"parameterTypeTokenRange": {
|
|
15985
|
+
"startIndex": 1,
|
|
15986
|
+
"endIndex": 2
|
|
15987
|
+
},
|
|
15988
|
+
"isOptional": false
|
|
15989
|
+
},
|
|
15990
|
+
{
|
|
15991
|
+
"parameterName": "options",
|
|
15992
|
+
"parameterTypeTokenRange": {
|
|
15993
|
+
"startIndex": 3,
|
|
15994
|
+
"endIndex": 4
|
|
15995
|
+
},
|
|
15996
|
+
"isOptional": true
|
|
15997
|
+
}
|
|
15998
|
+
],
|
|
15999
|
+
"name": "renderAsync"
|
|
16000
|
+
},
|
|
15178
16001
|
{
|
|
15179
16002
|
"kind": "TypeAlias",
|
|
15180
16003
|
"canonicalReference": "@alloy-js/core!RenderedTextTree:type",
|
|
@@ -16322,6 +17145,15 @@
|
|
|
16322
17145
|
"text": "SourceFileContext",
|
|
16323
17146
|
"canonicalReference": "@alloy-js/core!SourceFileContext:interface"
|
|
16324
17147
|
},
|
|
17148
|
+
{
|
|
17149
|
+
"kind": "Content",
|
|
17150
|
+
"text": " | "
|
|
17151
|
+
},
|
|
17152
|
+
{
|
|
17153
|
+
"kind": "Reference",
|
|
17154
|
+
"text": "CopyFileContext",
|
|
17155
|
+
"canonicalReference": "@alloy-js/core!CopyFileContext:interface"
|
|
17156
|
+
},
|
|
16325
17157
|
{
|
|
16326
17158
|
"kind": "Content",
|
|
16327
17159
|
"text": "): "
|
|
@@ -16337,8 +17169,8 @@
|
|
|
16337
17169
|
],
|
|
16338
17170
|
"isOptional": false,
|
|
16339
17171
|
"returnTypeTokenRange": {
|
|
16340
|
-
"startIndex":
|
|
16341
|
-
"endIndex":
|
|
17172
|
+
"startIndex": 7,
|
|
17173
|
+
"endIndex": 8
|
|
16342
17174
|
},
|
|
16343
17175
|
"releaseTag": "Public",
|
|
16344
17176
|
"overloadIndex": 1,
|
|
@@ -16347,7 +17179,7 @@
|
|
|
16347
17179
|
"parameterName": "content",
|
|
16348
17180
|
"parameterTypeTokenRange": {
|
|
16349
17181
|
"startIndex": 1,
|
|
16350
|
-
"endIndex":
|
|
17182
|
+
"endIndex": 6
|
|
16351
17183
|
},
|
|
16352
17184
|
"isOptional": false
|
|
16353
17185
|
}
|
|
@@ -16381,6 +17213,15 @@
|
|
|
16381
17213
|
"text": "SourceFileContext",
|
|
16382
17214
|
"canonicalReference": "@alloy-js/core!SourceFileContext:interface"
|
|
16383
17215
|
},
|
|
17216
|
+
{
|
|
17217
|
+
"kind": "Content",
|
|
17218
|
+
"text": " | "
|
|
17219
|
+
},
|
|
17220
|
+
{
|
|
17221
|
+
"kind": "Reference",
|
|
17222
|
+
"text": "CopyFileContext",
|
|
17223
|
+
"canonicalReference": "@alloy-js/core!CopyFileContext:interface"
|
|
17224
|
+
},
|
|
16384
17225
|
{
|
|
16385
17226
|
"kind": "Content",
|
|
16386
17227
|
"text": ")[]"
|
|
@@ -16396,7 +17237,7 @@
|
|
|
16396
17237
|
"name": "contents",
|
|
16397
17238
|
"propertyTypeTokenRange": {
|
|
16398
17239
|
"startIndex": 1,
|
|
16399
|
-
"endIndex":
|
|
17240
|
+
"endIndex": 8
|
|
16400
17241
|
}
|
|
16401
17242
|
},
|
|
16402
17243
|
{
|
|
@@ -16919,6 +17760,70 @@
|
|
|
16919
17760
|
}
|
|
16920
17761
|
]
|
|
16921
17762
|
},
|
|
17763
|
+
{
|
|
17764
|
+
"kind": "Function",
|
|
17765
|
+
"canonicalReference": "@alloy-js/core!sourceFilesForTree:function(1)",
|
|
17766
|
+
"docComment": "",
|
|
17767
|
+
"excerptTokens": [
|
|
17768
|
+
{
|
|
17769
|
+
"kind": "Content",
|
|
17770
|
+
"text": "export declare function sourceFilesForTree(tree: "
|
|
17771
|
+
},
|
|
17772
|
+
{
|
|
17773
|
+
"kind": "Reference",
|
|
17774
|
+
"text": "RenderedTextTree",
|
|
17775
|
+
"canonicalReference": "@alloy-js/core!RenderedTextTree:type"
|
|
17776
|
+
},
|
|
17777
|
+
{
|
|
17778
|
+
"kind": "Content",
|
|
17779
|
+
"text": ", options?: "
|
|
17780
|
+
},
|
|
17781
|
+
{
|
|
17782
|
+
"kind": "Reference",
|
|
17783
|
+
"text": "PrintTreeOptions",
|
|
17784
|
+
"canonicalReference": "@alloy-js/core!PrintTreeOptions:interface"
|
|
17785
|
+
},
|
|
17786
|
+
{
|
|
17787
|
+
"kind": "Content",
|
|
17788
|
+
"text": "): "
|
|
17789
|
+
},
|
|
17790
|
+
{
|
|
17791
|
+
"kind": "Reference",
|
|
17792
|
+
"text": "OutputDirectory",
|
|
17793
|
+
"canonicalReference": "@alloy-js/core!OutputDirectory:interface"
|
|
17794
|
+
},
|
|
17795
|
+
{
|
|
17796
|
+
"kind": "Content",
|
|
17797
|
+
"text": ";"
|
|
17798
|
+
}
|
|
17799
|
+
],
|
|
17800
|
+
"fileUrlPath": "src/render.ts",
|
|
17801
|
+
"returnTypeTokenRange": {
|
|
17802
|
+
"startIndex": 5,
|
|
17803
|
+
"endIndex": 6
|
|
17804
|
+
},
|
|
17805
|
+
"releaseTag": "Public",
|
|
17806
|
+
"overloadIndex": 1,
|
|
17807
|
+
"parameters": [
|
|
17808
|
+
{
|
|
17809
|
+
"parameterName": "tree",
|
|
17810
|
+
"parameterTypeTokenRange": {
|
|
17811
|
+
"startIndex": 1,
|
|
17812
|
+
"endIndex": 2
|
|
17813
|
+
},
|
|
17814
|
+
"isOptional": false
|
|
17815
|
+
},
|
|
17816
|
+
{
|
|
17817
|
+
"parameterName": "options",
|
|
17818
|
+
"parameterTypeTokenRange": {
|
|
17819
|
+
"startIndex": 3,
|
|
17820
|
+
"endIndex": 4
|
|
17821
|
+
},
|
|
17822
|
+
"isOptional": true
|
|
17823
|
+
}
|
|
17824
|
+
],
|
|
17825
|
+
"name": "sourceFilesForTree"
|
|
17826
|
+
},
|
|
16922
17827
|
{
|
|
16923
17828
|
"kind": "Function",
|
|
16924
17829
|
"canonicalReference": "@alloy-js/core!splitProps:function(1)",
|
|
@@ -18538,98 +19443,472 @@
|
|
|
18538
19443
|
"excerptTokens": [
|
|
18539
19444
|
{
|
|
18540
19445
|
"kind": "Content",
|
|
18541
|
-
"text": "(value: "
|
|
18542
|
-
},
|
|
18543
|
-
{
|
|
18544
|
-
"kind": "Content",
|
|
18545
|
-
"text": "T"
|
|
18546
|
-
},
|
|
18547
|
-
{
|
|
18548
|
-
"kind": "Content",
|
|
18549
|
-
"text": "): "
|
|
19446
|
+
"text": "(value: "
|
|
19447
|
+
},
|
|
19448
|
+
{
|
|
19449
|
+
"kind": "Content",
|
|
19450
|
+
"text": "T"
|
|
19451
|
+
},
|
|
19452
|
+
{
|
|
19453
|
+
"kind": "Content",
|
|
19454
|
+
"text": "): "
|
|
19455
|
+
},
|
|
19456
|
+
{
|
|
19457
|
+
"kind": "Content",
|
|
19458
|
+
"text": "void"
|
|
19459
|
+
},
|
|
19460
|
+
{
|
|
19461
|
+
"kind": "Content",
|
|
19462
|
+
"text": ";"
|
|
19463
|
+
}
|
|
19464
|
+
],
|
|
19465
|
+
"returnTypeTokenRange": {
|
|
19466
|
+
"startIndex": 3,
|
|
19467
|
+
"endIndex": 4
|
|
19468
|
+
},
|
|
19469
|
+
"releaseTag": "Public",
|
|
19470
|
+
"overloadIndex": 1,
|
|
19471
|
+
"parameters": [
|
|
19472
|
+
{
|
|
19473
|
+
"parameterName": "value",
|
|
19474
|
+
"parameterTypeTokenRange": {
|
|
19475
|
+
"startIndex": 1,
|
|
19476
|
+
"endIndex": 2
|
|
19477
|
+
},
|
|
19478
|
+
"isOptional": false
|
|
19479
|
+
}
|
|
19480
|
+
]
|
|
19481
|
+
}
|
|
19482
|
+
],
|
|
19483
|
+
"extendsTokenRanges": []
|
|
19484
|
+
},
|
|
19485
|
+
{
|
|
19486
|
+
"kind": "Interface",
|
|
19487
|
+
"canonicalReference": "@alloy-js/core!Tapper:interface",
|
|
19488
|
+
"docComment": "/**\n * A function called when the Tap is rendered.\n *\n * @returns The tapped value.\n */\n",
|
|
19489
|
+
"excerptTokens": [
|
|
19490
|
+
{
|
|
19491
|
+
"kind": "Content",
|
|
19492
|
+
"text": "export interface Tapper<T> "
|
|
19493
|
+
}
|
|
19494
|
+
],
|
|
19495
|
+
"fileUrlPath": "src/tap.ts",
|
|
19496
|
+
"releaseTag": "Public",
|
|
19497
|
+
"typeParameters": [
|
|
19498
|
+
{
|
|
19499
|
+
"typeParameterName": "T",
|
|
19500
|
+
"constraintTokenRange": {
|
|
19501
|
+
"startIndex": 0,
|
|
19502
|
+
"endIndex": 0
|
|
19503
|
+
},
|
|
19504
|
+
"defaultTypeTokenRange": {
|
|
19505
|
+
"startIndex": 0,
|
|
19506
|
+
"endIndex": 0
|
|
19507
|
+
}
|
|
19508
|
+
}
|
|
19509
|
+
],
|
|
19510
|
+
"name": "Tapper",
|
|
19511
|
+
"preserveMemberOrder": false,
|
|
19512
|
+
"members": [
|
|
19513
|
+
{
|
|
19514
|
+
"kind": "CallSignature",
|
|
19515
|
+
"canonicalReference": "@alloy-js/core!Tapper:call(1)",
|
|
19516
|
+
"docComment": "",
|
|
19517
|
+
"excerptTokens": [
|
|
19518
|
+
{
|
|
19519
|
+
"kind": "Content",
|
|
19520
|
+
"text": "(): "
|
|
19521
|
+
},
|
|
19522
|
+
{
|
|
19523
|
+
"kind": "Content",
|
|
19524
|
+
"text": "T | undefined"
|
|
19525
|
+
},
|
|
19526
|
+
{
|
|
19527
|
+
"kind": "Content",
|
|
19528
|
+
"text": ";"
|
|
19529
|
+
}
|
|
19530
|
+
],
|
|
19531
|
+
"returnTypeTokenRange": {
|
|
19532
|
+
"startIndex": 1,
|
|
19533
|
+
"endIndex": 2
|
|
19534
|
+
},
|
|
19535
|
+
"releaseTag": "Public",
|
|
19536
|
+
"overloadIndex": 1,
|
|
19537
|
+
"parameters": []
|
|
19538
|
+
}
|
|
19539
|
+
],
|
|
19540
|
+
"extendsTokenRanges": []
|
|
19541
|
+
},
|
|
19542
|
+
{
|
|
19543
|
+
"kind": "Function",
|
|
19544
|
+
"canonicalReference": "@alloy-js/core!TemplateFile:function(1)",
|
|
19545
|
+
"docComment": "/**\n * A component that reads a template file and replaces variable placeholders\n * with actual values.\n *\n * Template files can contain variable placeholders in the format\n * `{{ variable_name }}` which will be replaced with values from `TemplateVariable`\n * children components. Whitespace around variable names is ignored, so\n * `{{ name }}`, `{{name}}`, and `{{ name }}` are all equivalent.\n *\n * @example\n *\n *\n * Basic usage with template variables:\n * ```tsx\n * // Template file content (greeting.txt):\n * // \"Hello {{ name }}! You are {{ age }} years old.\"\n *\n * <TemplateFile src=\"greeting.txt\" path=\"output.txt\">\n * <TemplateVariable name=\"name\" value=\"John\" />\n * <TemplateVariable name=\"age\" value=\"25\" />\n * </TemplateFile>\n * ```\n *\n * @example\n *\n *\n * Using children instead of value prop:\n * ```tsx\n * // Template file content (welcome.txt):\n * // \"Welcome {{ greeting }}!\"\n *\n * <TemplateFile src=\"welcome.txt\" path=\"output.txt\">\n * <TemplateVariable name=\"greeting\">Hello World</TemplateVariable>\n * </TemplateFile>\n * ```\n *\n * @example\n *\n *\n * Complex template with multiple variables:\n * ```tsx\n * // Template file content (profile.txt):\n * // \"Name: {{ name }}\\nAge: {{ age }}\\nLocation: {{ location }}\"\n *\n * <TemplateFile src=\"profile.txt\" path=\"profile-output.txt\">\n * <TemplateVariable name=\"name\" value=\"Alice\" />\n * <TemplateVariable name=\"age\">30</TemplateVariable>\n * <TemplateVariable name=\"location\" value=\"New York\" />\n * </TemplateFile>\n * ```\n *\n */\n",
|
|
19546
|
+
"excerptTokens": [
|
|
19547
|
+
{
|
|
19548
|
+
"kind": "Content",
|
|
19549
|
+
"text": "export declare function TemplateFile(props: "
|
|
19550
|
+
},
|
|
19551
|
+
{
|
|
19552
|
+
"kind": "Reference",
|
|
19553
|
+
"text": "TemplateFileProps",
|
|
19554
|
+
"canonicalReference": "@alloy-js/core!TemplateFileProps:interface"
|
|
19555
|
+
},
|
|
19556
|
+
{
|
|
19557
|
+
"kind": "Content",
|
|
19558
|
+
"text": "): "
|
|
19559
|
+
},
|
|
19560
|
+
{
|
|
19561
|
+
"kind": "Reference",
|
|
19562
|
+
"text": "Children",
|
|
19563
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
19564
|
+
},
|
|
19565
|
+
{
|
|
19566
|
+
"kind": "Content",
|
|
19567
|
+
"text": ";"
|
|
19568
|
+
}
|
|
19569
|
+
],
|
|
19570
|
+
"fileUrlPath": "src/components/TemplateFile.tsx",
|
|
19571
|
+
"returnTypeTokenRange": {
|
|
19572
|
+
"startIndex": 3,
|
|
19573
|
+
"endIndex": 4
|
|
19574
|
+
},
|
|
19575
|
+
"releaseTag": "Public",
|
|
19576
|
+
"overloadIndex": 1,
|
|
19577
|
+
"parameters": [
|
|
19578
|
+
{
|
|
19579
|
+
"parameterName": "props",
|
|
19580
|
+
"parameterTypeTokenRange": {
|
|
19581
|
+
"startIndex": 1,
|
|
19582
|
+
"endIndex": 2
|
|
19583
|
+
},
|
|
19584
|
+
"isOptional": false
|
|
19585
|
+
}
|
|
19586
|
+
],
|
|
19587
|
+
"name": "TemplateFile"
|
|
19588
|
+
},
|
|
19589
|
+
{
|
|
19590
|
+
"kind": "Interface",
|
|
19591
|
+
"canonicalReference": "@alloy-js/core!TemplateFileProps:interface",
|
|
19592
|
+
"docComment": "",
|
|
19593
|
+
"excerptTokens": [
|
|
19594
|
+
{
|
|
19595
|
+
"kind": "Content",
|
|
19596
|
+
"text": "export interface TemplateFileProps "
|
|
19597
|
+
}
|
|
19598
|
+
],
|
|
19599
|
+
"fileUrlPath": "src/components/TemplateFile.tsx",
|
|
19600
|
+
"releaseTag": "Public",
|
|
19601
|
+
"name": "TemplateFileProps",
|
|
19602
|
+
"preserveMemberOrder": false,
|
|
19603
|
+
"members": [
|
|
19604
|
+
{
|
|
19605
|
+
"kind": "PropertySignature",
|
|
19606
|
+
"canonicalReference": "@alloy-js/core!TemplateFileProps#children:member",
|
|
19607
|
+
"docComment": "/**\n * Template variable children components.\n */\n",
|
|
19608
|
+
"excerptTokens": [
|
|
19609
|
+
{
|
|
19610
|
+
"kind": "Content",
|
|
19611
|
+
"text": "children?: "
|
|
19612
|
+
},
|
|
19613
|
+
{
|
|
19614
|
+
"kind": "Reference",
|
|
19615
|
+
"text": "Children",
|
|
19616
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
19617
|
+
},
|
|
19618
|
+
{
|
|
19619
|
+
"kind": "Content",
|
|
19620
|
+
"text": ";"
|
|
19621
|
+
}
|
|
19622
|
+
],
|
|
19623
|
+
"isReadonly": false,
|
|
19624
|
+
"isOptional": true,
|
|
19625
|
+
"releaseTag": "Public",
|
|
19626
|
+
"name": "children",
|
|
19627
|
+
"propertyTypeTokenRange": {
|
|
19628
|
+
"startIndex": 1,
|
|
19629
|
+
"endIndex": 2
|
|
19630
|
+
}
|
|
19631
|
+
},
|
|
19632
|
+
{
|
|
19633
|
+
"kind": "PropertySignature",
|
|
19634
|
+
"canonicalReference": "@alloy-js/core!TemplateFileProps#path:member",
|
|
19635
|
+
"docComment": "/**\n * The path to write the compiled template to.\n */\n",
|
|
19636
|
+
"excerptTokens": [
|
|
19637
|
+
{
|
|
19638
|
+
"kind": "Content",
|
|
19639
|
+
"text": "path: "
|
|
19640
|
+
},
|
|
19641
|
+
{
|
|
19642
|
+
"kind": "Content",
|
|
19643
|
+
"text": "string"
|
|
19644
|
+
},
|
|
19645
|
+
{
|
|
19646
|
+
"kind": "Content",
|
|
19647
|
+
"text": ";"
|
|
19648
|
+
}
|
|
19649
|
+
],
|
|
19650
|
+
"isReadonly": false,
|
|
19651
|
+
"isOptional": false,
|
|
19652
|
+
"releaseTag": "Public",
|
|
19653
|
+
"name": "path",
|
|
19654
|
+
"propertyTypeTokenRange": {
|
|
19655
|
+
"startIndex": 1,
|
|
19656
|
+
"endIndex": 2
|
|
19657
|
+
}
|
|
19658
|
+
},
|
|
19659
|
+
{
|
|
19660
|
+
"kind": "PropertySignature",
|
|
19661
|
+
"canonicalReference": "@alloy-js/core!TemplateFileProps#src:member",
|
|
19662
|
+
"docComment": "/**\n * The file path of the template.\n */\n",
|
|
19663
|
+
"excerptTokens": [
|
|
19664
|
+
{
|
|
19665
|
+
"kind": "Content",
|
|
19666
|
+
"text": "src: "
|
|
19667
|
+
},
|
|
19668
|
+
{
|
|
19669
|
+
"kind": "Content",
|
|
19670
|
+
"text": "string"
|
|
19671
|
+
},
|
|
19672
|
+
{
|
|
19673
|
+
"kind": "Content",
|
|
19674
|
+
"text": ";"
|
|
19675
|
+
}
|
|
19676
|
+
],
|
|
19677
|
+
"isReadonly": false,
|
|
19678
|
+
"isOptional": false,
|
|
19679
|
+
"releaseTag": "Public",
|
|
19680
|
+
"name": "src",
|
|
19681
|
+
"propertyTypeTokenRange": {
|
|
19682
|
+
"startIndex": 1,
|
|
19683
|
+
"endIndex": 2
|
|
19684
|
+
}
|
|
19685
|
+
}
|
|
19686
|
+
],
|
|
19687
|
+
"extendsTokenRanges": []
|
|
19688
|
+
},
|
|
19689
|
+
{
|
|
19690
|
+
"kind": "Function",
|
|
19691
|
+
"canonicalReference": "@alloy-js/core!TemplateVariable:function(1)",
|
|
19692
|
+
"docComment": "",
|
|
19693
|
+
"excerptTokens": [
|
|
19694
|
+
{
|
|
19695
|
+
"kind": "Content",
|
|
19696
|
+
"text": "export declare function TemplateVariable(props: "
|
|
19697
|
+
},
|
|
19698
|
+
{
|
|
19699
|
+
"kind": "Reference",
|
|
19700
|
+
"text": "TemplateVariableProps",
|
|
19701
|
+
"canonicalReference": "@alloy-js/core!TemplateVariableProps:type"
|
|
19702
|
+
},
|
|
19703
|
+
{
|
|
19704
|
+
"kind": "Content",
|
|
19705
|
+
"text": "): "
|
|
19706
|
+
},
|
|
19707
|
+
{
|
|
19708
|
+
"kind": "Content",
|
|
19709
|
+
"text": "void"
|
|
19710
|
+
},
|
|
19711
|
+
{
|
|
19712
|
+
"kind": "Content",
|
|
19713
|
+
"text": ";"
|
|
19714
|
+
}
|
|
19715
|
+
],
|
|
19716
|
+
"fileUrlPath": "src/components/TemplateFile.tsx",
|
|
19717
|
+
"returnTypeTokenRange": {
|
|
19718
|
+
"startIndex": 3,
|
|
19719
|
+
"endIndex": 4
|
|
19720
|
+
},
|
|
19721
|
+
"releaseTag": "Public",
|
|
19722
|
+
"overloadIndex": 1,
|
|
19723
|
+
"parameters": [
|
|
19724
|
+
{
|
|
19725
|
+
"parameterName": "props",
|
|
19726
|
+
"parameterTypeTokenRange": {
|
|
19727
|
+
"startIndex": 1,
|
|
19728
|
+
"endIndex": 2
|
|
19729
|
+
},
|
|
19730
|
+
"isOptional": false
|
|
19731
|
+
}
|
|
19732
|
+
],
|
|
19733
|
+
"name": "TemplateVariable"
|
|
19734
|
+
},
|
|
19735
|
+
{
|
|
19736
|
+
"kind": "TypeAlias",
|
|
19737
|
+
"canonicalReference": "@alloy-js/core!TemplateVariableProps:type",
|
|
19738
|
+
"docComment": "",
|
|
19739
|
+
"excerptTokens": [
|
|
19740
|
+
{
|
|
19741
|
+
"kind": "Content",
|
|
19742
|
+
"text": "export type TemplateVariableProps = "
|
|
19743
|
+
},
|
|
19744
|
+
{
|
|
19745
|
+
"kind": "Reference",
|
|
19746
|
+
"text": "TemplateVariablePropsWithChildren",
|
|
19747
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithChildren:interface"
|
|
19748
|
+
},
|
|
19749
|
+
{
|
|
19750
|
+
"kind": "Content",
|
|
19751
|
+
"text": " | "
|
|
19752
|
+
},
|
|
19753
|
+
{
|
|
19754
|
+
"kind": "Reference",
|
|
19755
|
+
"text": "TemplateVariablePropsWithValue",
|
|
19756
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithValue:interface"
|
|
19757
|
+
},
|
|
19758
|
+
{
|
|
19759
|
+
"kind": "Content",
|
|
19760
|
+
"text": ";"
|
|
19761
|
+
}
|
|
19762
|
+
],
|
|
19763
|
+
"fileUrlPath": "src/components/TemplateFile.tsx",
|
|
19764
|
+
"releaseTag": "Public",
|
|
19765
|
+
"name": "TemplateVariableProps",
|
|
19766
|
+
"typeTokenRange": {
|
|
19767
|
+
"startIndex": 1,
|
|
19768
|
+
"endIndex": 4
|
|
19769
|
+
}
|
|
19770
|
+
},
|
|
19771
|
+
{
|
|
19772
|
+
"kind": "Interface",
|
|
19773
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithChildren:interface",
|
|
19774
|
+
"docComment": "",
|
|
19775
|
+
"excerptTokens": [
|
|
19776
|
+
{
|
|
19777
|
+
"kind": "Content",
|
|
19778
|
+
"text": "export interface TemplateVariablePropsWithChildren "
|
|
19779
|
+
}
|
|
19780
|
+
],
|
|
19781
|
+
"fileUrlPath": "src/components/TemplateFile.tsx",
|
|
19782
|
+
"releaseTag": "Public",
|
|
19783
|
+
"name": "TemplateVariablePropsWithChildren",
|
|
19784
|
+
"preserveMemberOrder": false,
|
|
19785
|
+
"members": [
|
|
19786
|
+
{
|
|
19787
|
+
"kind": "PropertySignature",
|
|
19788
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithChildren#children:member",
|
|
19789
|
+
"docComment": "/**\n * The value of the variable.\n */\n",
|
|
19790
|
+
"excerptTokens": [
|
|
19791
|
+
{
|
|
19792
|
+
"kind": "Content",
|
|
19793
|
+
"text": "children: "
|
|
19794
|
+
},
|
|
19795
|
+
{
|
|
19796
|
+
"kind": "Reference",
|
|
19797
|
+
"text": "Children",
|
|
19798
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
19799
|
+
},
|
|
19800
|
+
{
|
|
19801
|
+
"kind": "Content",
|
|
19802
|
+
"text": ";"
|
|
19803
|
+
}
|
|
19804
|
+
],
|
|
19805
|
+
"isReadonly": false,
|
|
19806
|
+
"isOptional": false,
|
|
19807
|
+
"releaseTag": "Public",
|
|
19808
|
+
"name": "children",
|
|
19809
|
+
"propertyTypeTokenRange": {
|
|
19810
|
+
"startIndex": 1,
|
|
19811
|
+
"endIndex": 2
|
|
19812
|
+
}
|
|
19813
|
+
},
|
|
19814
|
+
{
|
|
19815
|
+
"kind": "PropertySignature",
|
|
19816
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithChildren#name:member",
|
|
19817
|
+
"docComment": "/**\n * The name of the variable.\n */\n",
|
|
19818
|
+
"excerptTokens": [
|
|
19819
|
+
{
|
|
19820
|
+
"kind": "Content",
|
|
19821
|
+
"text": "name: "
|
|
18550
19822
|
},
|
|
18551
19823
|
{
|
|
18552
19824
|
"kind": "Content",
|
|
18553
|
-
"text": "
|
|
19825
|
+
"text": "string"
|
|
18554
19826
|
},
|
|
18555
19827
|
{
|
|
18556
19828
|
"kind": "Content",
|
|
18557
19829
|
"text": ";"
|
|
18558
19830
|
}
|
|
18559
19831
|
],
|
|
18560
|
-
"
|
|
18561
|
-
|
|
18562
|
-
"endIndex": 4
|
|
18563
|
-
},
|
|
19832
|
+
"isReadonly": false,
|
|
19833
|
+
"isOptional": false,
|
|
18564
19834
|
"releaseTag": "Public",
|
|
18565
|
-
"
|
|
18566
|
-
"
|
|
18567
|
-
|
|
18568
|
-
|
|
18569
|
-
|
|
18570
|
-
"startIndex": 1,
|
|
18571
|
-
"endIndex": 2
|
|
18572
|
-
},
|
|
18573
|
-
"isOptional": false
|
|
18574
|
-
}
|
|
18575
|
-
]
|
|
19835
|
+
"name": "name",
|
|
19836
|
+
"propertyTypeTokenRange": {
|
|
19837
|
+
"startIndex": 1,
|
|
19838
|
+
"endIndex": 2
|
|
19839
|
+
}
|
|
18576
19840
|
}
|
|
18577
19841
|
],
|
|
18578
19842
|
"extendsTokenRanges": []
|
|
18579
19843
|
},
|
|
18580
19844
|
{
|
|
18581
19845
|
"kind": "Interface",
|
|
18582
|
-
"canonicalReference": "@alloy-js/core!
|
|
18583
|
-
"docComment": "
|
|
19846
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithValue:interface",
|
|
19847
|
+
"docComment": "",
|
|
18584
19848
|
"excerptTokens": [
|
|
18585
19849
|
{
|
|
18586
19850
|
"kind": "Content",
|
|
18587
|
-
"text": "export interface
|
|
19851
|
+
"text": "export interface TemplateVariablePropsWithValue "
|
|
18588
19852
|
}
|
|
18589
19853
|
],
|
|
18590
|
-
"fileUrlPath": "src/
|
|
19854
|
+
"fileUrlPath": "src/components/TemplateFile.tsx",
|
|
18591
19855
|
"releaseTag": "Public",
|
|
18592
|
-
"
|
|
18593
|
-
{
|
|
18594
|
-
"typeParameterName": "T",
|
|
18595
|
-
"constraintTokenRange": {
|
|
18596
|
-
"startIndex": 0,
|
|
18597
|
-
"endIndex": 0
|
|
18598
|
-
},
|
|
18599
|
-
"defaultTypeTokenRange": {
|
|
18600
|
-
"startIndex": 0,
|
|
18601
|
-
"endIndex": 0
|
|
18602
|
-
}
|
|
18603
|
-
}
|
|
18604
|
-
],
|
|
18605
|
-
"name": "Tapper",
|
|
19856
|
+
"name": "TemplateVariablePropsWithValue",
|
|
18606
19857
|
"preserveMemberOrder": false,
|
|
18607
19858
|
"members": [
|
|
18608
19859
|
{
|
|
18609
|
-
"kind": "
|
|
18610
|
-
"canonicalReference": "@alloy-js/core!
|
|
18611
|
-
"docComment": "",
|
|
19860
|
+
"kind": "PropertySignature",
|
|
19861
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithValue#name:member",
|
|
19862
|
+
"docComment": "/**\n * The name of the variable.\n */\n",
|
|
18612
19863
|
"excerptTokens": [
|
|
18613
19864
|
{
|
|
18614
19865
|
"kind": "Content",
|
|
18615
|
-
"text": "
|
|
19866
|
+
"text": "name: "
|
|
18616
19867
|
},
|
|
18617
19868
|
{
|
|
18618
19869
|
"kind": "Content",
|
|
18619
|
-
"text": "
|
|
19870
|
+
"text": "string"
|
|
18620
19871
|
},
|
|
18621
19872
|
{
|
|
18622
19873
|
"kind": "Content",
|
|
18623
19874
|
"text": ";"
|
|
18624
19875
|
}
|
|
18625
19876
|
],
|
|
18626
|
-
"
|
|
19877
|
+
"isReadonly": false,
|
|
19878
|
+
"isOptional": false,
|
|
19879
|
+
"releaseTag": "Public",
|
|
19880
|
+
"name": "name",
|
|
19881
|
+
"propertyTypeTokenRange": {
|
|
18627
19882
|
"startIndex": 1,
|
|
18628
19883
|
"endIndex": 2
|
|
18629
|
-
}
|
|
19884
|
+
}
|
|
19885
|
+
},
|
|
19886
|
+
{
|
|
19887
|
+
"kind": "PropertySignature",
|
|
19888
|
+
"canonicalReference": "@alloy-js/core!TemplateVariablePropsWithValue#value:member",
|
|
19889
|
+
"docComment": "/**\n * The value of the variable.\n */\n",
|
|
19890
|
+
"excerptTokens": [
|
|
19891
|
+
{
|
|
19892
|
+
"kind": "Content",
|
|
19893
|
+
"text": "value: "
|
|
19894
|
+
},
|
|
19895
|
+
{
|
|
19896
|
+
"kind": "Content",
|
|
19897
|
+
"text": "string"
|
|
19898
|
+
},
|
|
19899
|
+
{
|
|
19900
|
+
"kind": "Content",
|
|
19901
|
+
"text": ";"
|
|
19902
|
+
}
|
|
19903
|
+
],
|
|
19904
|
+
"isReadonly": false,
|
|
19905
|
+
"isOptional": false,
|
|
18630
19906
|
"releaseTag": "Public",
|
|
18631
|
-
"
|
|
18632
|
-
"
|
|
19907
|
+
"name": "value",
|
|
19908
|
+
"propertyTypeTokenRange": {
|
|
19909
|
+
"startIndex": 1,
|
|
19910
|
+
"endIndex": 2
|
|
19911
|
+
}
|
|
18633
19912
|
}
|
|
18634
19913
|
],
|
|
18635
19914
|
"extendsTokenRanges": []
|
|
@@ -18823,6 +20102,185 @@
|
|
|
18823
20102
|
],
|
|
18824
20103
|
"name": "untrack"
|
|
18825
20104
|
},
|
|
20105
|
+
{
|
|
20106
|
+
"kind": "Function",
|
|
20107
|
+
"canonicalReference": "@alloy-js/core!UpdateFile:function(1)",
|
|
20108
|
+
"docComment": "/**\n * A component for updating existing files or initializing new files.\n *\n * This component allows you to read the current contents of a file and generate\n * new content based on those contents. If the file doesn't exist, it can use\n * default content from either a file path or inline content.\n *\n * @example\n * ```tsx\n * <UpdateFile path=\"config.json\" defaultContent=\"{}\">\n * {(currentContents) => {\n * const config = currentContents ? JSON.parse(currentContents) : {};\n * config.newProperty = \"value\";\n * return JSON.stringify(config, null, 2);\n * }}\n * </UpdateFile>\n * ```\n *\n */\n",
|
|
20109
|
+
"excerptTokens": [
|
|
20110
|
+
{
|
|
20111
|
+
"kind": "Content",
|
|
20112
|
+
"text": "export declare function UpdateFile(props: "
|
|
20113
|
+
},
|
|
20114
|
+
{
|
|
20115
|
+
"kind": "Reference",
|
|
20116
|
+
"text": "UpdateFileProps",
|
|
20117
|
+
"canonicalReference": "@alloy-js/core!UpdateFileProps:interface"
|
|
20118
|
+
},
|
|
20119
|
+
{
|
|
20120
|
+
"kind": "Content",
|
|
20121
|
+
"text": "): "
|
|
20122
|
+
},
|
|
20123
|
+
{
|
|
20124
|
+
"kind": "Reference",
|
|
20125
|
+
"text": "Children",
|
|
20126
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
20127
|
+
},
|
|
20128
|
+
{
|
|
20129
|
+
"kind": "Content",
|
|
20130
|
+
"text": ";"
|
|
20131
|
+
}
|
|
20132
|
+
],
|
|
20133
|
+
"fileUrlPath": "src/components/UpdateFile.tsx",
|
|
20134
|
+
"returnTypeTokenRange": {
|
|
20135
|
+
"startIndex": 3,
|
|
20136
|
+
"endIndex": 4
|
|
20137
|
+
},
|
|
20138
|
+
"releaseTag": "Public",
|
|
20139
|
+
"overloadIndex": 1,
|
|
20140
|
+
"parameters": [
|
|
20141
|
+
{
|
|
20142
|
+
"parameterName": "props",
|
|
20143
|
+
"parameterTypeTokenRange": {
|
|
20144
|
+
"startIndex": 1,
|
|
20145
|
+
"endIndex": 2
|
|
20146
|
+
},
|
|
20147
|
+
"isOptional": false
|
|
20148
|
+
}
|
|
20149
|
+
],
|
|
20150
|
+
"name": "UpdateFile"
|
|
20151
|
+
},
|
|
20152
|
+
{
|
|
20153
|
+
"kind": "Interface",
|
|
20154
|
+
"canonicalReference": "@alloy-js/core!UpdateFileProps:interface",
|
|
20155
|
+
"docComment": "/**\n * Props for the UpdateFile component.\n */\n",
|
|
20156
|
+
"excerptTokens": [
|
|
20157
|
+
{
|
|
20158
|
+
"kind": "Content",
|
|
20159
|
+
"text": "export interface UpdateFileProps "
|
|
20160
|
+
}
|
|
20161
|
+
],
|
|
20162
|
+
"fileUrlPath": "src/components/UpdateFile.tsx",
|
|
20163
|
+
"releaseTag": "Public",
|
|
20164
|
+
"name": "UpdateFileProps",
|
|
20165
|
+
"preserveMemberOrder": false,
|
|
20166
|
+
"members": [
|
|
20167
|
+
{
|
|
20168
|
+
"kind": "PropertySignature",
|
|
20169
|
+
"canonicalReference": "@alloy-js/core!UpdateFileProps#children:member",
|
|
20170
|
+
"docComment": "/**\n * Function that receives the current file contents and returns the new content\n */\n",
|
|
20171
|
+
"excerptTokens": [
|
|
20172
|
+
{
|
|
20173
|
+
"kind": "Content",
|
|
20174
|
+
"text": "children: "
|
|
20175
|
+
},
|
|
20176
|
+
{
|
|
20177
|
+
"kind": "Content",
|
|
20178
|
+
"text": "(currentContents: string | null) => "
|
|
20179
|
+
},
|
|
20180
|
+
{
|
|
20181
|
+
"kind": "Reference",
|
|
20182
|
+
"text": "Children",
|
|
20183
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
20184
|
+
},
|
|
20185
|
+
{
|
|
20186
|
+
"kind": "Content",
|
|
20187
|
+
"text": ";"
|
|
20188
|
+
}
|
|
20189
|
+
],
|
|
20190
|
+
"isReadonly": false,
|
|
20191
|
+
"isOptional": false,
|
|
20192
|
+
"releaseTag": "Public",
|
|
20193
|
+
"name": "children",
|
|
20194
|
+
"propertyTypeTokenRange": {
|
|
20195
|
+
"startIndex": 1,
|
|
20196
|
+
"endIndex": 3
|
|
20197
|
+
}
|
|
20198
|
+
},
|
|
20199
|
+
{
|
|
20200
|
+
"kind": "PropertySignature",
|
|
20201
|
+
"canonicalReference": "@alloy-js/core!UpdateFileProps#defaultContent:member",
|
|
20202
|
+
"docComment": "/**\n * Optional default content to use when the target file doesn't exist\n */\n",
|
|
20203
|
+
"excerptTokens": [
|
|
20204
|
+
{
|
|
20205
|
+
"kind": "Content",
|
|
20206
|
+
"text": "defaultContent?: "
|
|
20207
|
+
},
|
|
20208
|
+
{
|
|
20209
|
+
"kind": "Reference",
|
|
20210
|
+
"text": "Children",
|
|
20211
|
+
"canonicalReference": "@alloy-js/core!Children:type"
|
|
20212
|
+
},
|
|
20213
|
+
{
|
|
20214
|
+
"kind": "Content",
|
|
20215
|
+
"text": ";"
|
|
20216
|
+
}
|
|
20217
|
+
],
|
|
20218
|
+
"isReadonly": false,
|
|
20219
|
+
"isOptional": true,
|
|
20220
|
+
"releaseTag": "Public",
|
|
20221
|
+
"name": "defaultContent",
|
|
20222
|
+
"propertyTypeTokenRange": {
|
|
20223
|
+
"startIndex": 1,
|
|
20224
|
+
"endIndex": 2
|
|
20225
|
+
}
|
|
20226
|
+
},
|
|
20227
|
+
{
|
|
20228
|
+
"kind": "PropertySignature",
|
|
20229
|
+
"canonicalReference": "@alloy-js/core!UpdateFileProps#defaultContentPath:member",
|
|
20230
|
+
"docComment": "/**\n * Optional path to a file containing default content to use when the target file doesn't exist\n */\n",
|
|
20231
|
+
"excerptTokens": [
|
|
20232
|
+
{
|
|
20233
|
+
"kind": "Content",
|
|
20234
|
+
"text": "defaultContentPath?: "
|
|
20235
|
+
},
|
|
20236
|
+
{
|
|
20237
|
+
"kind": "Content",
|
|
20238
|
+
"text": "string"
|
|
20239
|
+
},
|
|
20240
|
+
{
|
|
20241
|
+
"kind": "Content",
|
|
20242
|
+
"text": ";"
|
|
20243
|
+
}
|
|
20244
|
+
],
|
|
20245
|
+
"isReadonly": false,
|
|
20246
|
+
"isOptional": true,
|
|
20247
|
+
"releaseTag": "Public",
|
|
20248
|
+
"name": "defaultContentPath",
|
|
20249
|
+
"propertyTypeTokenRange": {
|
|
20250
|
+
"startIndex": 1,
|
|
20251
|
+
"endIndex": 2
|
|
20252
|
+
}
|
|
20253
|
+
},
|
|
20254
|
+
{
|
|
20255
|
+
"kind": "PropertySignature",
|
|
20256
|
+
"canonicalReference": "@alloy-js/core!UpdateFileProps#path:member",
|
|
20257
|
+
"docComment": "/**\n * The relative path to the file to update or create\n */\n",
|
|
20258
|
+
"excerptTokens": [
|
|
20259
|
+
{
|
|
20260
|
+
"kind": "Content",
|
|
20261
|
+
"text": "path: "
|
|
20262
|
+
},
|
|
20263
|
+
{
|
|
20264
|
+
"kind": "Content",
|
|
20265
|
+
"text": "string"
|
|
20266
|
+
},
|
|
20267
|
+
{
|
|
20268
|
+
"kind": "Content",
|
|
20269
|
+
"text": ";"
|
|
20270
|
+
}
|
|
20271
|
+
],
|
|
20272
|
+
"isReadonly": false,
|
|
20273
|
+
"isOptional": false,
|
|
20274
|
+
"releaseTag": "Public",
|
|
20275
|
+
"name": "path",
|
|
20276
|
+
"propertyTypeTokenRange": {
|
|
20277
|
+
"startIndex": 1,
|
|
20278
|
+
"endIndex": 2
|
|
20279
|
+
}
|
|
20280
|
+
}
|
|
20281
|
+
],
|
|
20282
|
+
"extendsTokenRanges": []
|
|
20283
|
+
},
|
|
18826
20284
|
{
|
|
18827
20285
|
"kind": "Function",
|
|
18828
20286
|
"canonicalReference": "@alloy-js/core!useBinder:function(1)",
|
|
@@ -19334,9 +20792,14 @@
|
|
|
19334
20792
|
"kind": "Content",
|
|
19335
20793
|
"text": "): "
|
|
19336
20794
|
},
|
|
20795
|
+
{
|
|
20796
|
+
"kind": "Reference",
|
|
20797
|
+
"text": "Promise",
|
|
20798
|
+
"canonicalReference": "!Promise:interface"
|
|
20799
|
+
},
|
|
19337
20800
|
{
|
|
19338
20801
|
"kind": "Content",
|
|
19339
|
-
"text": "void"
|
|
20802
|
+
"text": "<void[]>"
|
|
19340
20803
|
},
|
|
19341
20804
|
{
|
|
19342
20805
|
"kind": "Content",
|
|
@@ -19346,7 +20809,7 @@
|
|
|
19346
20809
|
"fileUrlPath": "src/write-output.ts",
|
|
19347
20810
|
"returnTypeTokenRange": {
|
|
19348
20811
|
"startIndex": 5,
|
|
19349
|
-
"endIndex":
|
|
20812
|
+
"endIndex": 7
|
|
19350
20813
|
},
|
|
19351
20814
|
"releaseTag": "Public",
|
|
19352
20815
|
"overloadIndex": 1,
|