@microsoft/fast-element 2.0.0-beta.20 → 2.0.0-beta.22
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.json +54 -0
- package/CHANGELOG.md +21 -1
- package/dist/dts/binding/binding.d.ts +49 -0
- package/dist/dts/binding/normalize.d.ts +9 -0
- package/dist/dts/binding/one-time.d.ts +11 -0
- package/dist/dts/binding/one-way.d.ts +20 -0
- package/dist/dts/{templating/binding-signal.d.ts → binding/signal.d.ts} +1 -1
- package/dist/dts/{templating/binding-two-way.d.ts → binding/two-way.d.ts} +3 -4
- package/dist/dts/components/element-controller.d.ts +20 -5
- package/dist/dts/context.d.ts +26 -13
- package/dist/dts/dom-policy.d.ts +15 -0
- package/dist/dts/index.d.ts +6 -2
- package/dist/dts/interfaces.d.ts +6 -5
- package/dist/dts/metadata.d.ts +6 -5
- package/dist/dts/pending-task.d.ts +19 -7
- package/dist/dts/platform.d.ts +10 -2
- package/dist/dts/styles/css-binding-directive.d.ts +60 -0
- package/dist/dts/styles/css.d.ts +9 -2
- package/dist/dts/styles/host.d.ts +2 -5
- package/dist/dts/templating/{binding.d.ts → html-binding-directive.d.ts} +3 -34
- package/dist/dts/templating/html-directive.d.ts +3 -35
- package/dist/dts/templating/render.d.ts +19 -5
- package/dist/dts/templating/repeat.d.ts +3 -2
- package/dist/dts/templating/template.d.ts +2 -6
- package/dist/dts/templating/view.d.ts +16 -6
- package/dist/dts/testing/fakes.d.ts +2 -1
- package/dist/dts/utilities.d.ts +3 -2
- package/dist/esm/binding/binding.js +18 -0
- package/dist/esm/binding/normalize.js +17 -0
- package/dist/esm/binding/one-time.js +21 -0
- package/dist/esm/binding/one-way.js +30 -0
- package/dist/esm/{templating/binding-signal.js → binding/signal.js} +5 -8
- package/dist/esm/{templating/binding-two-way.js → binding/two-way.js} +11 -15
- package/dist/esm/components/element-controller.js +33 -9
- package/dist/esm/context.js +24 -3
- package/dist/esm/debug.js +1 -0
- package/dist/esm/di/di.js +5 -5
- package/dist/esm/dom-policy.js +9 -1
- package/dist/esm/index.js +8 -2
- package/dist/esm/interfaces.js +3 -3
- package/dist/esm/metadata.js +11 -8
- package/dist/esm/observation/observable.js +3 -6
- package/dist/esm/pending-task.js +13 -1
- package/dist/esm/platform.js +10 -1
- package/dist/esm/styles/css-binding-directive.js +76 -0
- package/dist/esm/styles/css.js +14 -2
- package/dist/esm/templating/compiler.js +2 -1
- package/dist/esm/templating/{binding.js → html-binding-directive.js} +3 -70
- package/dist/esm/templating/html-directive.js +2 -25
- package/dist/esm/templating/render.js +25 -12
- package/dist/esm/templating/repeat.js +3 -3
- package/dist/esm/templating/template.js +9 -10
- package/dist/esm/templating/view.js +2 -6
- package/dist/esm/testing/fakes.js +1 -1
- package/dist/esm/utilities.js +3 -2
- package/dist/fast-element.api.json +1827 -663
- package/dist/fast-element.d.ts +167 -43
- package/dist/fast-element.debug.js +227 -120
- package/dist/fast-element.debug.min.js +1 -1
- package/dist/fast-element.js +226 -120
- package/dist/fast-element.min.js +1 -1
- package/dist/fast-element.untrimmed.d.ts +134 -82
- package/docs/api-report.md +54 -57
- package/package.json +5 -5
|
@@ -1352,114 +1352,6 @@
|
|
|
1352
1352
|
"endIndex": 6
|
|
1353
1353
|
}
|
|
1354
1354
|
},
|
|
1355
|
-
{
|
|
1356
|
-
"kind": "Function",
|
|
1357
|
-
"canonicalReference": "@microsoft/fast-element!bind:function(1)",
|
|
1358
|
-
"docComment": "/**\n * Creates an standard binding.\n *\n * @param expression - The binding to refresh when changed.\n *\n * @param policy - The security policy to associate with th binding.\n *\n * @param isVolatile - Indicates whether the binding is volatile or not.\n *\n * @returns A binding configuration.\n *\n * @public\n */\n",
|
|
1359
|
-
"excerptTokens": [
|
|
1360
|
-
{
|
|
1361
|
-
"kind": "Content",
|
|
1362
|
-
"text": "export declare function bind<T = "
|
|
1363
|
-
},
|
|
1364
|
-
{
|
|
1365
|
-
"kind": "Content",
|
|
1366
|
-
"text": "any"
|
|
1367
|
-
},
|
|
1368
|
-
{
|
|
1369
|
-
"kind": "Content",
|
|
1370
|
-
"text": ">(expression: "
|
|
1371
|
-
},
|
|
1372
|
-
{
|
|
1373
|
-
"kind": "Reference",
|
|
1374
|
-
"text": "Expression",
|
|
1375
|
-
"canonicalReference": "@microsoft/fast-element!Expression:type"
|
|
1376
|
-
},
|
|
1377
|
-
{
|
|
1378
|
-
"kind": "Content",
|
|
1379
|
-
"text": "<T>"
|
|
1380
|
-
},
|
|
1381
|
-
{
|
|
1382
|
-
"kind": "Content",
|
|
1383
|
-
"text": ", policy?: "
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
"kind": "Reference",
|
|
1387
|
-
"text": "DOMPolicy",
|
|
1388
|
-
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
"kind": "Content",
|
|
1392
|
-
"text": ", isVolatile?: "
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
"kind": "Content",
|
|
1396
|
-
"text": "boolean"
|
|
1397
|
-
},
|
|
1398
|
-
{
|
|
1399
|
-
"kind": "Content",
|
|
1400
|
-
"text": "): "
|
|
1401
|
-
},
|
|
1402
|
-
{
|
|
1403
|
-
"kind": "Reference",
|
|
1404
|
-
"text": "Binding",
|
|
1405
|
-
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
"kind": "Content",
|
|
1409
|
-
"text": "<T>"
|
|
1410
|
-
},
|
|
1411
|
-
{
|
|
1412
|
-
"kind": "Content",
|
|
1413
|
-
"text": ";"
|
|
1414
|
-
}
|
|
1415
|
-
],
|
|
1416
|
-
"returnTypeTokenRange": {
|
|
1417
|
-
"startIndex": 10,
|
|
1418
|
-
"endIndex": 12
|
|
1419
|
-
},
|
|
1420
|
-
"releaseTag": "Public",
|
|
1421
|
-
"overloadIndex": 1,
|
|
1422
|
-
"parameters": [
|
|
1423
|
-
{
|
|
1424
|
-
"parameterName": "expression",
|
|
1425
|
-
"parameterTypeTokenRange": {
|
|
1426
|
-
"startIndex": 3,
|
|
1427
|
-
"endIndex": 5
|
|
1428
|
-
},
|
|
1429
|
-
"isOptional": false
|
|
1430
|
-
},
|
|
1431
|
-
{
|
|
1432
|
-
"parameterName": "policy",
|
|
1433
|
-
"parameterTypeTokenRange": {
|
|
1434
|
-
"startIndex": 6,
|
|
1435
|
-
"endIndex": 7
|
|
1436
|
-
},
|
|
1437
|
-
"isOptional": true
|
|
1438
|
-
},
|
|
1439
|
-
{
|
|
1440
|
-
"parameterName": "isVolatile",
|
|
1441
|
-
"parameterTypeTokenRange": {
|
|
1442
|
-
"startIndex": 8,
|
|
1443
|
-
"endIndex": 9
|
|
1444
|
-
},
|
|
1445
|
-
"isOptional": true
|
|
1446
|
-
}
|
|
1447
|
-
],
|
|
1448
|
-
"typeParameters": [
|
|
1449
|
-
{
|
|
1450
|
-
"typeParameterName": "T",
|
|
1451
|
-
"constraintTokenRange": {
|
|
1452
|
-
"startIndex": 0,
|
|
1453
|
-
"endIndex": 0
|
|
1454
|
-
},
|
|
1455
|
-
"defaultTypeTokenRange": {
|
|
1456
|
-
"startIndex": 1,
|
|
1457
|
-
"endIndex": 2
|
|
1458
|
-
}
|
|
1459
|
-
}
|
|
1460
|
-
],
|
|
1461
|
-
"name": "bind"
|
|
1462
|
-
},
|
|
1463
1355
|
{
|
|
1464
1356
|
"kind": "Class",
|
|
1465
1357
|
"canonicalReference": "@microsoft/fast-element!Binding:class",
|
|
@@ -1608,25 +1500,25 @@
|
|
|
1608
1500
|
{
|
|
1609
1501
|
"kind": "Method",
|
|
1610
1502
|
"canonicalReference": "@microsoft/fast-element!Binding#createObserver:member(1)",
|
|
1611
|
-
"docComment": "/**\n * Creates an observer capable of notifying a subscriber when the output of a binding changes.\n *\n * @param
|
|
1503
|
+
"docComment": "/**\n * Creates an observer capable of notifying a subscriber when the output of a binding changes.\n *\n * @param subscriber - The subscriber to changes in the binding.\n *\n * @param directive - The Binding directive to create the observer for.\n */\n",
|
|
1612
1504
|
"excerptTokens": [
|
|
1613
1505
|
{
|
|
1614
1506
|
"kind": "Content",
|
|
1615
|
-
"text": "abstract createObserver(
|
|
1507
|
+
"text": "abstract createObserver(subscriber: "
|
|
1616
1508
|
},
|
|
1617
1509
|
{
|
|
1618
1510
|
"kind": "Reference",
|
|
1619
|
-
"text": "
|
|
1620
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
1511
|
+
"text": "Subscriber",
|
|
1512
|
+
"canonicalReference": "@microsoft/fast-element!Subscriber:interface"
|
|
1621
1513
|
},
|
|
1622
1514
|
{
|
|
1623
1515
|
"kind": "Content",
|
|
1624
|
-
"text": ",
|
|
1516
|
+
"text": ", directive: "
|
|
1625
1517
|
},
|
|
1626
1518
|
{
|
|
1627
1519
|
"kind": "Reference",
|
|
1628
|
-
"text": "
|
|
1629
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
1520
|
+
"text": "BindingDirective",
|
|
1521
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective:interface"
|
|
1630
1522
|
},
|
|
1631
1523
|
{
|
|
1632
1524
|
"kind": "Content",
|
|
@@ -1656,7 +1548,7 @@
|
|
|
1656
1548
|
"overloadIndex": 1,
|
|
1657
1549
|
"parameters": [
|
|
1658
1550
|
{
|
|
1659
|
-
"parameterName": "
|
|
1551
|
+
"parameterName": "subscriber",
|
|
1660
1552
|
"parameterTypeTokenRange": {
|
|
1661
1553
|
"startIndex": 1,
|
|
1662
1554
|
"endIndex": 2
|
|
@@ -1664,7 +1556,7 @@
|
|
|
1664
1556
|
"isOptional": false
|
|
1665
1557
|
},
|
|
1666
1558
|
{
|
|
1667
|
-
"parameterName": "
|
|
1559
|
+
"parameterName": "directive",
|
|
1668
1560
|
"parameterTypeTokenRange": {
|
|
1669
1561
|
"startIndex": 3,
|
|
1670
1562
|
"endIndex": 4
|
|
@@ -1795,6 +1687,102 @@
|
|
|
1795
1687
|
],
|
|
1796
1688
|
"implementsTokenRanges": []
|
|
1797
1689
|
},
|
|
1690
|
+
{
|
|
1691
|
+
"kind": "Interface",
|
|
1692
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective:interface",
|
|
1693
|
+
"docComment": "/**\n * The directive from which a binding originates.\n *\n * @public\n */\n",
|
|
1694
|
+
"excerptTokens": [
|
|
1695
|
+
{
|
|
1696
|
+
"kind": "Content",
|
|
1697
|
+
"text": "export interface BindingDirective "
|
|
1698
|
+
}
|
|
1699
|
+
],
|
|
1700
|
+
"releaseTag": "Public",
|
|
1701
|
+
"name": "BindingDirective",
|
|
1702
|
+
"members": [
|
|
1703
|
+
{
|
|
1704
|
+
"kind": "PropertySignature",
|
|
1705
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective#aspectType:member",
|
|
1706
|
+
"docComment": "/**\n * The type of aspect to target.\n */\n",
|
|
1707
|
+
"excerptTokens": [
|
|
1708
|
+
{
|
|
1709
|
+
"kind": "Content",
|
|
1710
|
+
"text": "readonly aspectType?: "
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"kind": "Reference",
|
|
1714
|
+
"text": "DOMAspect",
|
|
1715
|
+
"canonicalReference": "@microsoft/fast-element!DOMAspect:type"
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"kind": "Content",
|
|
1719
|
+
"text": ";"
|
|
1720
|
+
}
|
|
1721
|
+
],
|
|
1722
|
+
"isOptional": true,
|
|
1723
|
+
"releaseTag": "Public",
|
|
1724
|
+
"name": "aspectType",
|
|
1725
|
+
"propertyTypeTokenRange": {
|
|
1726
|
+
"startIndex": 1,
|
|
1727
|
+
"endIndex": 2
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"kind": "PropertySignature",
|
|
1732
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective#dataBinding:member",
|
|
1733
|
+
"docComment": "/**\n * The binding.\n */\n",
|
|
1734
|
+
"excerptTokens": [
|
|
1735
|
+
{
|
|
1736
|
+
"kind": "Content",
|
|
1737
|
+
"text": "readonly dataBinding: "
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"kind": "Reference",
|
|
1741
|
+
"text": "Binding",
|
|
1742
|
+
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"kind": "Content",
|
|
1746
|
+
"text": ";"
|
|
1747
|
+
}
|
|
1748
|
+
],
|
|
1749
|
+
"isOptional": false,
|
|
1750
|
+
"releaseTag": "Public",
|
|
1751
|
+
"name": "dataBinding",
|
|
1752
|
+
"propertyTypeTokenRange": {
|
|
1753
|
+
"startIndex": 1,
|
|
1754
|
+
"endIndex": 2
|
|
1755
|
+
}
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"kind": "PropertySignature",
|
|
1759
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective#targetAspect:member",
|
|
1760
|
+
"docComment": "/**\n * The evaluated target aspect.\n */\n",
|
|
1761
|
+
"excerptTokens": [
|
|
1762
|
+
{
|
|
1763
|
+
"kind": "Content",
|
|
1764
|
+
"text": "readonly targetAspect?: "
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"kind": "Content",
|
|
1768
|
+
"text": "string"
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
"kind": "Content",
|
|
1772
|
+
"text": ";"
|
|
1773
|
+
}
|
|
1774
|
+
],
|
|
1775
|
+
"isOptional": true,
|
|
1776
|
+
"releaseTag": "Public",
|
|
1777
|
+
"name": "targetAspect",
|
|
1778
|
+
"propertyTypeTokenRange": {
|
|
1779
|
+
"startIndex": 1,
|
|
1780
|
+
"endIndex": 2
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
],
|
|
1784
|
+
"extendsTokenRanges": []
|
|
1785
|
+
},
|
|
1798
1786
|
{
|
|
1799
1787
|
"kind": "Variable",
|
|
1800
1788
|
"canonicalReference": "@microsoft/fast-element!booleanConverter:var",
|
|
@@ -3014,26 +3002,31 @@
|
|
|
3014
3002
|
}
|
|
3015
3003
|
},
|
|
3016
3004
|
{
|
|
3017
|
-
"kind": "
|
|
3018
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3019
|
-
"docComment": "/**\n *
|
|
3005
|
+
"kind": "Class",
|
|
3006
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective:class",
|
|
3007
|
+
"docComment": "/**\n * Enables bindings in CSS.\n *\n * @public\n */\n",
|
|
3020
3008
|
"excerptTokens": [
|
|
3021
3009
|
{
|
|
3022
3010
|
"kind": "Content",
|
|
3023
|
-
"text": "export declare
|
|
3011
|
+
"text": "export declare class CSSBindingDirective implements "
|
|
3012
|
+
},
|
|
3013
|
+
{
|
|
3014
|
+
"kind": "Reference",
|
|
3015
|
+
"text": "HostBehavior",
|
|
3016
|
+
"canonicalReference": "@microsoft/fast-element!HostBehavior:interface"
|
|
3024
3017
|
},
|
|
3025
3018
|
{
|
|
3026
3019
|
"kind": "Content",
|
|
3027
|
-
"text": "
|
|
3020
|
+
"text": ", "
|
|
3028
3021
|
},
|
|
3029
3022
|
{
|
|
3030
3023
|
"kind": "Reference",
|
|
3031
|
-
"text": "
|
|
3032
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3024
|
+
"text": "Subscriber",
|
|
3025
|
+
"canonicalReference": "@microsoft/fast-element!Subscriber:interface"
|
|
3033
3026
|
},
|
|
3034
3027
|
{
|
|
3035
3028
|
"kind": "Content",
|
|
3036
|
-
"text": "
|
|
3029
|
+
"text": ", "
|
|
3037
3030
|
},
|
|
3038
3031
|
{
|
|
3039
3032
|
"kind": "Reference",
|
|
@@ -3042,58 +3035,534 @@
|
|
|
3042
3035
|
},
|
|
3043
3036
|
{
|
|
3044
3037
|
"kind": "Content",
|
|
3045
|
-
"text": "
|
|
3038
|
+
"text": ", "
|
|
3046
3039
|
},
|
|
3047
3040
|
{
|
|
3048
|
-
"kind": "
|
|
3049
|
-
"text": "
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
"returnTypeTokenRange": {
|
|
3053
|
-
"startIndex": 1,
|
|
3054
|
-
"endIndex": 6
|
|
3055
|
-
},
|
|
3056
|
-
"releaseTag": "Public",
|
|
3057
|
-
"overloadIndex": 1,
|
|
3058
|
-
"parameters": [],
|
|
3059
|
-
"name": "cssDirective"
|
|
3060
|
-
},
|
|
3061
|
-
{
|
|
3062
|
-
"kind": "Interface",
|
|
3063
|
-
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface",
|
|
3064
|
-
"docComment": "/**\n * Directive for use in {@link css}.\n *\n * @public\n */\n",
|
|
3065
|
-
"excerptTokens": [
|
|
3041
|
+
"kind": "Reference",
|
|
3042
|
+
"text": "BindingDirective",
|
|
3043
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective:interface"
|
|
3044
|
+
},
|
|
3066
3045
|
{
|
|
3067
3046
|
"kind": "Content",
|
|
3068
|
-
"text": "
|
|
3047
|
+
"text": " "
|
|
3069
3048
|
}
|
|
3070
3049
|
],
|
|
3071
3050
|
"releaseTag": "Public",
|
|
3072
|
-
"name": "
|
|
3051
|
+
"name": "CSSBindingDirective",
|
|
3073
3052
|
"members": [
|
|
3074
3053
|
{
|
|
3075
|
-
"kind": "
|
|
3076
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3077
|
-
"docComment": "/**\n * Creates
|
|
3054
|
+
"kind": "Constructor",
|
|
3055
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective:constructor(1)",
|
|
3056
|
+
"docComment": "/**\n * Creates an instance of CSSBindingDirective.\n *\n * @param dataBinding - The binding to use in CSS.\n *\n * @param targetAspect - The CSS property to target.\n */\n",
|
|
3078
3057
|
"excerptTokens": [
|
|
3079
3058
|
{
|
|
3080
3059
|
"kind": "Content",
|
|
3081
|
-
"text": "
|
|
3060
|
+
"text": "constructor(dataBinding: "
|
|
3082
3061
|
},
|
|
3083
3062
|
{
|
|
3084
3063
|
"kind": "Reference",
|
|
3085
|
-
"text": "
|
|
3086
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3064
|
+
"text": "Binding",
|
|
3065
|
+
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
3087
3066
|
},
|
|
3088
3067
|
{
|
|
3089
3068
|
"kind": "Content",
|
|
3090
|
-
"text": "
|
|
3069
|
+
"text": ", targetAspect: "
|
|
3091
3070
|
},
|
|
3092
3071
|
{
|
|
3093
|
-
"kind": "
|
|
3094
|
-
"text": "
|
|
3095
|
-
|
|
3096
|
-
|
|
3072
|
+
"kind": "Content",
|
|
3073
|
+
"text": "string"
|
|
3074
|
+
},
|
|
3075
|
+
{
|
|
3076
|
+
"kind": "Content",
|
|
3077
|
+
"text": ");"
|
|
3078
|
+
}
|
|
3079
|
+
],
|
|
3080
|
+
"releaseTag": "Public",
|
|
3081
|
+
"overloadIndex": 1,
|
|
3082
|
+
"parameters": [
|
|
3083
|
+
{
|
|
3084
|
+
"parameterName": "dataBinding",
|
|
3085
|
+
"parameterTypeTokenRange": {
|
|
3086
|
+
"startIndex": 1,
|
|
3087
|
+
"endIndex": 2
|
|
3088
|
+
},
|
|
3089
|
+
"isOptional": false
|
|
3090
|
+
},
|
|
3091
|
+
{
|
|
3092
|
+
"parameterName": "targetAspect",
|
|
3093
|
+
"parameterTypeTokenRange": {
|
|
3094
|
+
"startIndex": 3,
|
|
3095
|
+
"endIndex": 4
|
|
3096
|
+
},
|
|
3097
|
+
"isOptional": false
|
|
3098
|
+
}
|
|
3099
|
+
]
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"kind": "Method",
|
|
3103
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective#addedCallback:member(1)",
|
|
3104
|
+
"docComment": "/**\n * Executed when this behavior is attached to a controller.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
|
|
3105
|
+
"excerptTokens": [
|
|
3106
|
+
{
|
|
3107
|
+
"kind": "Content",
|
|
3108
|
+
"text": "addedCallback(controller: "
|
|
3109
|
+
},
|
|
3110
|
+
{
|
|
3111
|
+
"kind": "Reference",
|
|
3112
|
+
"text": "HostController",
|
|
3113
|
+
"canonicalReference": "@microsoft/fast-element!HostController:interface"
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
"kind": "Content",
|
|
3117
|
+
"text": "<"
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
"kind": "Reference",
|
|
3121
|
+
"text": "HTMLElement",
|
|
3122
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"kind": "Content",
|
|
3126
|
+
"text": " & {\n $cssBindings: "
|
|
3127
|
+
},
|
|
3128
|
+
{
|
|
3129
|
+
"kind": "Reference",
|
|
3130
|
+
"text": "Map",
|
|
3131
|
+
"canonicalReference": "!Map:interface"
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
"kind": "Content",
|
|
3135
|
+
"text": "<"
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
"kind": "Reference",
|
|
3139
|
+
"text": "CSSBindingDirective",
|
|
3140
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective:class"
|
|
3141
|
+
},
|
|
3142
|
+
{
|
|
3143
|
+
"kind": "Content",
|
|
3144
|
+
"text": ", "
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"kind": "Reference",
|
|
3148
|
+
"text": "CSSBindingEntry",
|
|
3149
|
+
"canonicalReference": "@microsoft/fast-element!~CSSBindingEntry:type"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"kind": "Content",
|
|
3153
|
+
"text": ">;\n }>"
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
"kind": "Content",
|
|
3157
|
+
"text": "): "
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
"kind": "Content",
|
|
3161
|
+
"text": "void"
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
"kind": "Content",
|
|
3165
|
+
"text": ";"
|
|
3166
|
+
}
|
|
3167
|
+
],
|
|
3168
|
+
"isOptional": false,
|
|
3169
|
+
"isStatic": false,
|
|
3170
|
+
"returnTypeTokenRange": {
|
|
3171
|
+
"startIndex": 12,
|
|
3172
|
+
"endIndex": 13
|
|
3173
|
+
},
|
|
3174
|
+
"releaseTag": "Public",
|
|
3175
|
+
"overloadIndex": 1,
|
|
3176
|
+
"parameters": [
|
|
3177
|
+
{
|
|
3178
|
+
"parameterName": "controller",
|
|
3179
|
+
"parameterTypeTokenRange": {
|
|
3180
|
+
"startIndex": 1,
|
|
3181
|
+
"endIndex": 11
|
|
3182
|
+
},
|
|
3183
|
+
"isOptional": false
|
|
3184
|
+
}
|
|
3185
|
+
],
|
|
3186
|
+
"name": "addedCallback"
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
"kind": "Method",
|
|
3190
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective#connectedCallback:member(1)",
|
|
3191
|
+
"docComment": "/**\n * Executed when this behavior's host is connected.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
|
|
3192
|
+
"excerptTokens": [
|
|
3193
|
+
{
|
|
3194
|
+
"kind": "Content",
|
|
3195
|
+
"text": "connectedCallback(controller: "
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
"kind": "Reference",
|
|
3199
|
+
"text": "HostController",
|
|
3200
|
+
"canonicalReference": "@microsoft/fast-element!HostController:interface"
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
"kind": "Content",
|
|
3204
|
+
"text": "<"
|
|
3205
|
+
},
|
|
3206
|
+
{
|
|
3207
|
+
"kind": "Reference",
|
|
3208
|
+
"text": "HTMLElement",
|
|
3209
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"kind": "Content",
|
|
3213
|
+
"text": " & {\n $cssBindings: "
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"kind": "Reference",
|
|
3217
|
+
"text": "Map",
|
|
3218
|
+
"canonicalReference": "!Map:interface"
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"kind": "Content",
|
|
3222
|
+
"text": "<"
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
"kind": "Reference",
|
|
3226
|
+
"text": "CSSBindingDirective",
|
|
3227
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective:class"
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"kind": "Content",
|
|
3231
|
+
"text": ", "
|
|
3232
|
+
},
|
|
3233
|
+
{
|
|
3234
|
+
"kind": "Reference",
|
|
3235
|
+
"text": "CSSBindingEntry",
|
|
3236
|
+
"canonicalReference": "@microsoft/fast-element!~CSSBindingEntry:type"
|
|
3237
|
+
},
|
|
3238
|
+
{
|
|
3239
|
+
"kind": "Content",
|
|
3240
|
+
"text": ">;\n }>"
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"kind": "Content",
|
|
3244
|
+
"text": "): "
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"kind": "Content",
|
|
3248
|
+
"text": "void"
|
|
3249
|
+
},
|
|
3250
|
+
{
|
|
3251
|
+
"kind": "Content",
|
|
3252
|
+
"text": ";"
|
|
3253
|
+
}
|
|
3254
|
+
],
|
|
3255
|
+
"isOptional": false,
|
|
3256
|
+
"isStatic": false,
|
|
3257
|
+
"returnTypeTokenRange": {
|
|
3258
|
+
"startIndex": 12,
|
|
3259
|
+
"endIndex": 13
|
|
3260
|
+
},
|
|
3261
|
+
"releaseTag": "Public",
|
|
3262
|
+
"overloadIndex": 1,
|
|
3263
|
+
"parameters": [
|
|
3264
|
+
{
|
|
3265
|
+
"parameterName": "controller",
|
|
3266
|
+
"parameterTypeTokenRange": {
|
|
3267
|
+
"startIndex": 1,
|
|
3268
|
+
"endIndex": 11
|
|
3269
|
+
},
|
|
3270
|
+
"isOptional": false
|
|
3271
|
+
}
|
|
3272
|
+
],
|
|
3273
|
+
"name": "connectedCallback"
|
|
3274
|
+
},
|
|
3275
|
+
{
|
|
3276
|
+
"kind": "Method",
|
|
3277
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective#createCSS:member(1)",
|
|
3278
|
+
"docComment": "/**\n * Creates a CSS fragment to interpolate into the CSS document.\n *\n * @returns - the string to interpolate into CSS\n */\n",
|
|
3279
|
+
"excerptTokens": [
|
|
3280
|
+
{
|
|
3281
|
+
"kind": "Content",
|
|
3282
|
+
"text": "createCSS(add: "
|
|
3283
|
+
},
|
|
3284
|
+
{
|
|
3285
|
+
"kind": "Reference",
|
|
3286
|
+
"text": "AddBehavior",
|
|
3287
|
+
"canonicalReference": "@microsoft/fast-element!AddBehavior:type"
|
|
3288
|
+
},
|
|
3289
|
+
{
|
|
3290
|
+
"kind": "Content",
|
|
3291
|
+
"text": "): "
|
|
3292
|
+
},
|
|
3293
|
+
{
|
|
3294
|
+
"kind": "Reference",
|
|
3295
|
+
"text": "ComposableStyles",
|
|
3296
|
+
"canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
"kind": "Content",
|
|
3300
|
+
"text": ";"
|
|
3301
|
+
}
|
|
3302
|
+
],
|
|
3303
|
+
"isOptional": false,
|
|
3304
|
+
"isStatic": false,
|
|
3305
|
+
"returnTypeTokenRange": {
|
|
3306
|
+
"startIndex": 3,
|
|
3307
|
+
"endIndex": 4
|
|
3308
|
+
},
|
|
3309
|
+
"releaseTag": "Public",
|
|
3310
|
+
"overloadIndex": 1,
|
|
3311
|
+
"parameters": [
|
|
3312
|
+
{
|
|
3313
|
+
"parameterName": "add",
|
|
3314
|
+
"parameterTypeTokenRange": {
|
|
3315
|
+
"startIndex": 1,
|
|
3316
|
+
"endIndex": 2
|
|
3317
|
+
},
|
|
3318
|
+
"isOptional": false
|
|
3319
|
+
}
|
|
3320
|
+
],
|
|
3321
|
+
"name": "createCSS"
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"kind": "Property",
|
|
3325
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective#dataBinding:member",
|
|
3326
|
+
"docComment": "",
|
|
3327
|
+
"excerptTokens": [
|
|
3328
|
+
{
|
|
3329
|
+
"kind": "Content",
|
|
3330
|
+
"text": "readonly dataBinding: "
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
"kind": "Reference",
|
|
3334
|
+
"text": "Binding",
|
|
3335
|
+
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"kind": "Content",
|
|
3339
|
+
"text": ";"
|
|
3340
|
+
}
|
|
3341
|
+
],
|
|
3342
|
+
"isOptional": false,
|
|
3343
|
+
"releaseTag": "Public",
|
|
3344
|
+
"name": "dataBinding",
|
|
3345
|
+
"propertyTypeTokenRange": {
|
|
3346
|
+
"startIndex": 1,
|
|
3347
|
+
"endIndex": 2
|
|
3348
|
+
},
|
|
3349
|
+
"isStatic": false
|
|
3350
|
+
},
|
|
3351
|
+
{
|
|
3352
|
+
"kind": "Method",
|
|
3353
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective#removedCallback:member(1)",
|
|
3354
|
+
"docComment": "/**\n * Executed when this behavior is detached from a controller.\n *\n * @param controller - Controls the behavior lifecycle.\n */\n",
|
|
3355
|
+
"excerptTokens": [
|
|
3356
|
+
{
|
|
3357
|
+
"kind": "Content",
|
|
3358
|
+
"text": "removedCallback(controller: "
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"kind": "Reference",
|
|
3362
|
+
"text": "HostController",
|
|
3363
|
+
"canonicalReference": "@microsoft/fast-element!HostController:interface"
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"kind": "Content",
|
|
3367
|
+
"text": "<"
|
|
3368
|
+
},
|
|
3369
|
+
{
|
|
3370
|
+
"kind": "Reference",
|
|
3371
|
+
"text": "HTMLElement",
|
|
3372
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
3373
|
+
},
|
|
3374
|
+
{
|
|
3375
|
+
"kind": "Content",
|
|
3376
|
+
"text": " & {\n $cssBindings: "
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"kind": "Reference",
|
|
3380
|
+
"text": "Map",
|
|
3381
|
+
"canonicalReference": "!Map:interface"
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
"kind": "Content",
|
|
3385
|
+
"text": "<"
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"kind": "Reference",
|
|
3389
|
+
"text": "CSSBindingDirective",
|
|
3390
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective:class"
|
|
3391
|
+
},
|
|
3392
|
+
{
|
|
3393
|
+
"kind": "Content",
|
|
3394
|
+
"text": ", "
|
|
3395
|
+
},
|
|
3396
|
+
{
|
|
3397
|
+
"kind": "Reference",
|
|
3398
|
+
"text": "CSSBindingEntry",
|
|
3399
|
+
"canonicalReference": "@microsoft/fast-element!~CSSBindingEntry:type"
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"kind": "Content",
|
|
3403
|
+
"text": ">;\n }>"
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"kind": "Content",
|
|
3407
|
+
"text": "): "
|
|
3408
|
+
},
|
|
3409
|
+
{
|
|
3410
|
+
"kind": "Content",
|
|
3411
|
+
"text": "void"
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"kind": "Content",
|
|
3415
|
+
"text": ";"
|
|
3416
|
+
}
|
|
3417
|
+
],
|
|
3418
|
+
"isOptional": false,
|
|
3419
|
+
"isStatic": false,
|
|
3420
|
+
"returnTypeTokenRange": {
|
|
3421
|
+
"startIndex": 12,
|
|
3422
|
+
"endIndex": 13
|
|
3423
|
+
},
|
|
3424
|
+
"releaseTag": "Public",
|
|
3425
|
+
"overloadIndex": 1,
|
|
3426
|
+
"parameters": [
|
|
3427
|
+
{
|
|
3428
|
+
"parameterName": "controller",
|
|
3429
|
+
"parameterTypeTokenRange": {
|
|
3430
|
+
"startIndex": 1,
|
|
3431
|
+
"endIndex": 11
|
|
3432
|
+
},
|
|
3433
|
+
"isOptional": false
|
|
3434
|
+
}
|
|
3435
|
+
],
|
|
3436
|
+
"name": "removedCallback"
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
"kind": "Property",
|
|
3440
|
+
"canonicalReference": "@microsoft/fast-element!CSSBindingDirective#targetAspect:member",
|
|
3441
|
+
"docComment": "",
|
|
3442
|
+
"excerptTokens": [
|
|
3443
|
+
{
|
|
3444
|
+
"kind": "Content",
|
|
3445
|
+
"text": "readonly targetAspect: "
|
|
3446
|
+
},
|
|
3447
|
+
{
|
|
3448
|
+
"kind": "Content",
|
|
3449
|
+
"text": "string"
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
"kind": "Content",
|
|
3453
|
+
"text": ";"
|
|
3454
|
+
}
|
|
3455
|
+
],
|
|
3456
|
+
"isOptional": false,
|
|
3457
|
+
"releaseTag": "Public",
|
|
3458
|
+
"name": "targetAspect",
|
|
3459
|
+
"propertyTypeTokenRange": {
|
|
3460
|
+
"startIndex": 1,
|
|
3461
|
+
"endIndex": 2
|
|
3462
|
+
},
|
|
3463
|
+
"isStatic": false
|
|
3464
|
+
}
|
|
3465
|
+
],
|
|
3466
|
+
"implementsTokenRanges": [
|
|
3467
|
+
{
|
|
3468
|
+
"startIndex": 1,
|
|
3469
|
+
"endIndex": 2
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
"startIndex": 3,
|
|
3473
|
+
"endIndex": 4
|
|
3474
|
+
},
|
|
3475
|
+
{
|
|
3476
|
+
"startIndex": 5,
|
|
3477
|
+
"endIndex": 6
|
|
3478
|
+
},
|
|
3479
|
+
{
|
|
3480
|
+
"startIndex": 7,
|
|
3481
|
+
"endIndex": 8
|
|
3482
|
+
}
|
|
3483
|
+
]
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
"kind": "Function",
|
|
3487
|
+
"canonicalReference": "@microsoft/fast-element!cssDirective:function(1)",
|
|
3488
|
+
"docComment": "/**\n * Decorator: Defines a CSSDirective.\n *\n * @public\n */\n",
|
|
3489
|
+
"excerptTokens": [
|
|
3490
|
+
{
|
|
3491
|
+
"kind": "Content",
|
|
3492
|
+
"text": "export declare function cssDirective(): "
|
|
3493
|
+
},
|
|
3494
|
+
{
|
|
3495
|
+
"kind": "Content",
|
|
3496
|
+
"text": "(type: "
|
|
3497
|
+
},
|
|
3498
|
+
{
|
|
3499
|
+
"kind": "Reference",
|
|
3500
|
+
"text": "Constructable",
|
|
3501
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
3502
|
+
},
|
|
3503
|
+
{
|
|
3504
|
+
"kind": "Content",
|
|
3505
|
+
"text": "<"
|
|
3506
|
+
},
|
|
3507
|
+
{
|
|
3508
|
+
"kind": "Reference",
|
|
3509
|
+
"text": "CSSDirective",
|
|
3510
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
"kind": "Content",
|
|
3514
|
+
"text": ">) => void"
|
|
3515
|
+
},
|
|
3516
|
+
{
|
|
3517
|
+
"kind": "Content",
|
|
3518
|
+
"text": ";"
|
|
3519
|
+
}
|
|
3520
|
+
],
|
|
3521
|
+
"returnTypeTokenRange": {
|
|
3522
|
+
"startIndex": 1,
|
|
3523
|
+
"endIndex": 6
|
|
3524
|
+
},
|
|
3525
|
+
"releaseTag": "Public",
|
|
3526
|
+
"overloadIndex": 1,
|
|
3527
|
+
"parameters": [],
|
|
3528
|
+
"name": "cssDirective"
|
|
3529
|
+
},
|
|
3530
|
+
{
|
|
3531
|
+
"kind": "Interface",
|
|
3532
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface",
|
|
3533
|
+
"docComment": "/**\n * Directive for use in {@link css}.\n *\n * @public\n */\n",
|
|
3534
|
+
"excerptTokens": [
|
|
3535
|
+
{
|
|
3536
|
+
"kind": "Content",
|
|
3537
|
+
"text": "export interface CSSDirective "
|
|
3538
|
+
}
|
|
3539
|
+
],
|
|
3540
|
+
"releaseTag": "Public",
|
|
3541
|
+
"name": "CSSDirective",
|
|
3542
|
+
"members": [
|
|
3543
|
+
{
|
|
3544
|
+
"kind": "MethodSignature",
|
|
3545
|
+
"canonicalReference": "@microsoft/fast-element!CSSDirective#createCSS:member(1)",
|
|
3546
|
+
"docComment": "/**\n * Creates a CSS fragment to interpolate into the CSS document.\n *\n * @returns - the string to interpolate into CSS\n */\n",
|
|
3547
|
+
"excerptTokens": [
|
|
3548
|
+
{
|
|
3549
|
+
"kind": "Content",
|
|
3550
|
+
"text": "createCSS(add: "
|
|
3551
|
+
},
|
|
3552
|
+
{
|
|
3553
|
+
"kind": "Reference",
|
|
3554
|
+
"text": "AddBehavior",
|
|
3555
|
+
"canonicalReference": "@microsoft/fast-element!AddBehavior:type"
|
|
3556
|
+
},
|
|
3557
|
+
{
|
|
3558
|
+
"kind": "Content",
|
|
3559
|
+
"text": "): "
|
|
3560
|
+
},
|
|
3561
|
+
{
|
|
3562
|
+
"kind": "Reference",
|
|
3563
|
+
"text": "ComposableStyles",
|
|
3564
|
+
"canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
|
|
3565
|
+
},
|
|
3097
3566
|
{
|
|
3098
3567
|
"kind": "Content",
|
|
3099
3568
|
"text": ";"
|
|
@@ -3338,7 +3807,7 @@
|
|
|
3338
3807
|
},
|
|
3339
3808
|
{
|
|
3340
3809
|
"kind": "Content",
|
|
3341
|
-
"text": "((strings: "
|
|
3810
|
+
"text": "(<TSource = any, TParent = any>(strings: "
|
|
3342
3811
|
},
|
|
3343
3812
|
{
|
|
3344
3813
|
"kind": "Reference",
|
|
@@ -3347,16 +3816,43 @@
|
|
|
3347
3816
|
},
|
|
3348
3817
|
{
|
|
3349
3818
|
"kind": "Content",
|
|
3350
|
-
"text": ", ...values:
|
|
3819
|
+
"text": ", ...values: "
|
|
3351
3820
|
},
|
|
3352
3821
|
{
|
|
3353
3822
|
"kind": "Reference",
|
|
3354
|
-
"text": "
|
|
3355
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3823
|
+
"text": "CSSValue",
|
|
3824
|
+
"canonicalReference": "@microsoft/fast-element!CSSValue:type"
|
|
3356
3825
|
},
|
|
3357
3826
|
{
|
|
3358
3827
|
"kind": "Content",
|
|
3359
|
-
"text": "
|
|
3828
|
+
"text": "<TSource, TParent>[]) => "
|
|
3829
|
+
},
|
|
3830
|
+
{
|
|
3831
|
+
"kind": "Reference",
|
|
3832
|
+
"text": "ElementStyles",
|
|
3833
|
+
"canonicalReference": "@microsoft/fast-element!ElementStyles:class"
|
|
3834
|
+
},
|
|
3835
|
+
{
|
|
3836
|
+
"kind": "Content",
|
|
3837
|
+
"text": ") & {\n partial<TSource = any, TParent = any>(strings: "
|
|
3838
|
+
},
|
|
3839
|
+
{
|
|
3840
|
+
"kind": "Reference",
|
|
3841
|
+
"text": "TemplateStringsArray",
|
|
3842
|
+
"canonicalReference": "!TemplateStringsArray:interface"
|
|
3843
|
+
},
|
|
3844
|
+
{
|
|
3845
|
+
"kind": "Content",
|
|
3846
|
+
"text": ", ...values: "
|
|
3847
|
+
},
|
|
3848
|
+
{
|
|
3849
|
+
"kind": "Reference",
|
|
3850
|
+
"text": "CSSValue",
|
|
3851
|
+
"canonicalReference": "@microsoft/fast-element!CSSValue:type"
|
|
3852
|
+
},
|
|
3853
|
+
{
|
|
3854
|
+
"kind": "Content",
|
|
3855
|
+
"text": "<TSource, TParent>[]): "
|
|
3360
3856
|
},
|
|
3361
3857
|
{
|
|
3362
3858
|
"kind": "Reference",
|
|
@@ -3365,63 +3861,103 @@
|
|
|
3365
3861
|
},
|
|
3366
3862
|
{
|
|
3367
3863
|
"kind": "Content",
|
|
3368
|
-
"text": "
|
|
3864
|
+
"text": ";\n}"
|
|
3369
3865
|
},
|
|
3370
3866
|
{
|
|
3371
|
-
"kind": "
|
|
3372
|
-
"text": "
|
|
3373
|
-
|
|
3867
|
+
"kind": "Content",
|
|
3868
|
+
"text": ";"
|
|
3869
|
+
}
|
|
3870
|
+
],
|
|
3871
|
+
"releaseTag": "Public",
|
|
3872
|
+
"name": "CSSTemplateTag",
|
|
3873
|
+
"typeTokenRange": {
|
|
3874
|
+
"startIndex": 1,
|
|
3875
|
+
"endIndex": 14
|
|
3876
|
+
}
|
|
3877
|
+
},
|
|
3878
|
+
{
|
|
3879
|
+
"kind": "TypeAlias",
|
|
3880
|
+
"canonicalReference": "@microsoft/fast-element!CSSValue:type",
|
|
3881
|
+
"docComment": "/**\n * Represents the types of values that can be interpolated into a template.\n *\n * @public\n */\n",
|
|
3882
|
+
"excerptTokens": [
|
|
3883
|
+
{
|
|
3884
|
+
"kind": "Content",
|
|
3885
|
+
"text": "export declare type CSSValue<TSource, TParent = "
|
|
3886
|
+
},
|
|
3887
|
+
{
|
|
3888
|
+
"kind": "Content",
|
|
3889
|
+
"text": "any"
|
|
3374
3890
|
},
|
|
3375
3891
|
{
|
|
3376
3892
|
"kind": "Content",
|
|
3377
|
-
"text": "
|
|
3893
|
+
"text": "> = "
|
|
3378
3894
|
},
|
|
3379
3895
|
{
|
|
3380
3896
|
"kind": "Reference",
|
|
3381
|
-
"text": "
|
|
3382
|
-
"canonicalReference": "!
|
|
3897
|
+
"text": "Expression",
|
|
3898
|
+
"canonicalReference": "@microsoft/fast-element!Expression:type"
|
|
3383
3899
|
},
|
|
3384
3900
|
{
|
|
3385
3901
|
"kind": "Content",
|
|
3386
|
-
"text": ",
|
|
3902
|
+
"text": "<TSource, any, TParent> | "
|
|
3387
3903
|
},
|
|
3388
3904
|
{
|
|
3389
3905
|
"kind": "Reference",
|
|
3390
|
-
"text": "
|
|
3391
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3906
|
+
"text": "Binding",
|
|
3907
|
+
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
3392
3908
|
},
|
|
3393
3909
|
{
|
|
3394
3910
|
"kind": "Content",
|
|
3395
|
-
"text": " | "
|
|
3911
|
+
"text": "<TSource, any, TParent> | "
|
|
3396
3912
|
},
|
|
3397
3913
|
{
|
|
3398
3914
|
"kind": "Reference",
|
|
3399
|
-
"text": "
|
|
3400
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
3915
|
+
"text": "ComposableStyles",
|
|
3916
|
+
"canonicalReference": "@microsoft/fast-element!ComposableStyles:type"
|
|
3401
3917
|
},
|
|
3402
3918
|
{
|
|
3403
3919
|
"kind": "Content",
|
|
3404
|
-
"text": "
|
|
3920
|
+
"text": " | "
|
|
3405
3921
|
},
|
|
3406
3922
|
{
|
|
3407
3923
|
"kind": "Reference",
|
|
3408
3924
|
"text": "CSSDirective",
|
|
3409
3925
|
"canonicalReference": "@microsoft/fast-element!CSSDirective:interface"
|
|
3410
3926
|
},
|
|
3411
|
-
{
|
|
3412
|
-
"kind": "Content",
|
|
3413
|
-
"text": ";\n}"
|
|
3414
|
-
},
|
|
3415
3927
|
{
|
|
3416
3928
|
"kind": "Content",
|
|
3417
3929
|
"text": ";"
|
|
3418
3930
|
}
|
|
3419
3931
|
],
|
|
3420
3932
|
"releaseTag": "Public",
|
|
3421
|
-
"name": "
|
|
3933
|
+
"name": "CSSValue",
|
|
3934
|
+
"typeParameters": [
|
|
3935
|
+
{
|
|
3936
|
+
"typeParameterName": "TSource",
|
|
3937
|
+
"constraintTokenRange": {
|
|
3938
|
+
"startIndex": 0,
|
|
3939
|
+
"endIndex": 0
|
|
3940
|
+
},
|
|
3941
|
+
"defaultTypeTokenRange": {
|
|
3942
|
+
"startIndex": 0,
|
|
3943
|
+
"endIndex": 0
|
|
3944
|
+
}
|
|
3945
|
+
},
|
|
3946
|
+
{
|
|
3947
|
+
"typeParameterName": "TParent",
|
|
3948
|
+
"constraintTokenRange": {
|
|
3949
|
+
"startIndex": 0,
|
|
3950
|
+
"endIndex": 0
|
|
3951
|
+
},
|
|
3952
|
+
"defaultTypeTokenRange": {
|
|
3953
|
+
"startIndex": 1,
|
|
3954
|
+
"endIndex": 2
|
|
3955
|
+
}
|
|
3956
|
+
}
|
|
3957
|
+
],
|
|
3422
3958
|
"typeTokenRange": {
|
|
3423
|
-
"startIndex":
|
|
3424
|
-
"endIndex":
|
|
3959
|
+
"startIndex": 3,
|
|
3960
|
+
"endIndex": 10
|
|
3425
3961
|
}
|
|
3426
3962
|
},
|
|
3427
3963
|
{
|
|
@@ -4115,6 +4651,34 @@
|
|
|
4115
4651
|
"parameters": [],
|
|
4116
4652
|
"name": "connect"
|
|
4117
4653
|
},
|
|
4654
|
+
{
|
|
4655
|
+
"kind": "Property",
|
|
4656
|
+
"canonicalReference": "@microsoft/fast-element!ElementController#context:member",
|
|
4657
|
+
"docComment": "/**\n * The context the expression is evaluated against.\n */\n",
|
|
4658
|
+
"excerptTokens": [
|
|
4659
|
+
{
|
|
4660
|
+
"kind": "Content",
|
|
4661
|
+
"text": "get context(): "
|
|
4662
|
+
},
|
|
4663
|
+
{
|
|
4664
|
+
"kind": "Reference",
|
|
4665
|
+
"text": "ExecutionContext",
|
|
4666
|
+
"canonicalReference": "@microsoft/fast-element!ExecutionContext:interface"
|
|
4667
|
+
},
|
|
4668
|
+
{
|
|
4669
|
+
"kind": "Content",
|
|
4670
|
+
"text": ";"
|
|
4671
|
+
}
|
|
4672
|
+
],
|
|
4673
|
+
"isOptional": false,
|
|
4674
|
+
"releaseTag": "Public",
|
|
4675
|
+
"name": "context",
|
|
4676
|
+
"propertyTypeTokenRange": {
|
|
4677
|
+
"startIndex": 1,
|
|
4678
|
+
"endIndex": 2
|
|
4679
|
+
},
|
|
4680
|
+
"isStatic": false
|
|
4681
|
+
},
|
|
4118
4682
|
{
|
|
4119
4683
|
"kind": "Property",
|
|
4120
4684
|
"canonicalReference": "@microsoft/fast-element!ElementController#definition:member",
|
|
@@ -4312,6 +4876,33 @@
|
|
|
4312
4876
|
],
|
|
4313
4877
|
"name": "forCustomElement"
|
|
4314
4878
|
},
|
|
4879
|
+
{
|
|
4880
|
+
"kind": "Property",
|
|
4881
|
+
"canonicalReference": "@microsoft/fast-element!ElementController#isBound:member",
|
|
4882
|
+
"docComment": "/**\n * Indicates whether the controller is bound.\n */\n",
|
|
4883
|
+
"excerptTokens": [
|
|
4884
|
+
{
|
|
4885
|
+
"kind": "Content",
|
|
4886
|
+
"text": "get isBound(): "
|
|
4887
|
+
},
|
|
4888
|
+
{
|
|
4889
|
+
"kind": "Content",
|
|
4890
|
+
"text": "boolean"
|
|
4891
|
+
},
|
|
4892
|
+
{
|
|
4893
|
+
"kind": "Content",
|
|
4894
|
+
"text": ";"
|
|
4895
|
+
}
|
|
4896
|
+
],
|
|
4897
|
+
"isOptional": false,
|
|
4898
|
+
"releaseTag": "Public",
|
|
4899
|
+
"name": "isBound",
|
|
4900
|
+
"propertyTypeTokenRange": {
|
|
4901
|
+
"startIndex": 1,
|
|
4902
|
+
"endIndex": 2
|
|
4903
|
+
},
|
|
4904
|
+
"isStatic": false
|
|
4905
|
+
},
|
|
4315
4906
|
{
|
|
4316
4907
|
"kind": "Property",
|
|
4317
4908
|
"canonicalReference": "@microsoft/fast-element!ElementController#isConnected:member",
|
|
@@ -4462,6 +5053,61 @@
|
|
|
4462
5053
|
],
|
|
4463
5054
|
"name": "onAttributeChangedCallback"
|
|
4464
5055
|
},
|
|
5056
|
+
{
|
|
5057
|
+
"kind": "Method",
|
|
5058
|
+
"canonicalReference": "@microsoft/fast-element!ElementController#onUnbind:member(1)",
|
|
5059
|
+
"docComment": "/**\n * Registers an unbind handler with the controller.\n *\n * @param behavior - An object to call when the controller unbinds.\n */\n",
|
|
5060
|
+
"excerptTokens": [
|
|
5061
|
+
{
|
|
5062
|
+
"kind": "Content",
|
|
5063
|
+
"text": "onUnbind(behavior: "
|
|
5064
|
+
},
|
|
5065
|
+
{
|
|
5066
|
+
"kind": "Content",
|
|
5067
|
+
"text": "{\n unbind(controller: "
|
|
5068
|
+
},
|
|
5069
|
+
{
|
|
5070
|
+
"kind": "Reference",
|
|
5071
|
+
"text": "ExpressionController",
|
|
5072
|
+
"canonicalReference": "@microsoft/fast-element!ExpressionController:interface"
|
|
5073
|
+
},
|
|
5074
|
+
{
|
|
5075
|
+
"kind": "Content",
|
|
5076
|
+
"text": "<TElement>): any;\n }"
|
|
5077
|
+
},
|
|
5078
|
+
{
|
|
5079
|
+
"kind": "Content",
|
|
5080
|
+
"text": "): "
|
|
5081
|
+
},
|
|
5082
|
+
{
|
|
5083
|
+
"kind": "Content",
|
|
5084
|
+
"text": "void"
|
|
5085
|
+
},
|
|
5086
|
+
{
|
|
5087
|
+
"kind": "Content",
|
|
5088
|
+
"text": ";"
|
|
5089
|
+
}
|
|
5090
|
+
],
|
|
5091
|
+
"isOptional": false,
|
|
5092
|
+
"isStatic": false,
|
|
5093
|
+
"returnTypeTokenRange": {
|
|
5094
|
+
"startIndex": 5,
|
|
5095
|
+
"endIndex": 6
|
|
5096
|
+
},
|
|
5097
|
+
"releaseTag": "Public",
|
|
5098
|
+
"overloadIndex": 1,
|
|
5099
|
+
"parameters": [
|
|
5100
|
+
{
|
|
5101
|
+
"parameterName": "behavior",
|
|
5102
|
+
"parameterTypeTokenRange": {
|
|
5103
|
+
"startIndex": 1,
|
|
5104
|
+
"endIndex": 4
|
|
5105
|
+
},
|
|
5106
|
+
"isOptional": false
|
|
5107
|
+
}
|
|
5108
|
+
],
|
|
5109
|
+
"name": "onUnbind"
|
|
5110
|
+
},
|
|
4465
5111
|
{
|
|
4466
5112
|
"kind": "Method",
|
|
4467
5113
|
"canonicalReference": "@microsoft/fast-element!ElementController#removeBehavior:member(1)",
|
|
@@ -4663,6 +5309,38 @@
|
|
|
4663
5309
|
},
|
|
4664
5310
|
"isStatic": false
|
|
4665
5311
|
},
|
|
5312
|
+
{
|
|
5313
|
+
"kind": "Property",
|
|
5314
|
+
"canonicalReference": "@microsoft/fast-element!ElementController#sourceLifetime:member",
|
|
5315
|
+
"docComment": "/**\n * Indicates how the source's lifetime relates to the controller's lifetime.\n */\n",
|
|
5316
|
+
"excerptTokens": [
|
|
5317
|
+
{
|
|
5318
|
+
"kind": "Content",
|
|
5319
|
+
"text": "get sourceLifetime(): "
|
|
5320
|
+
},
|
|
5321
|
+
{
|
|
5322
|
+
"kind": "Reference",
|
|
5323
|
+
"text": "SourceLifetime",
|
|
5324
|
+
"canonicalReference": "@microsoft/fast-element!SourceLifetime:type"
|
|
5325
|
+
},
|
|
5326
|
+
{
|
|
5327
|
+
"kind": "Content",
|
|
5328
|
+
"text": " | undefined"
|
|
5329
|
+
},
|
|
5330
|
+
{
|
|
5331
|
+
"kind": "Content",
|
|
5332
|
+
"text": ";"
|
|
5333
|
+
}
|
|
5334
|
+
],
|
|
5335
|
+
"isOptional": false,
|
|
5336
|
+
"releaseTag": "Public",
|
|
5337
|
+
"name": "sourceLifetime",
|
|
5338
|
+
"propertyTypeTokenRange": {
|
|
5339
|
+
"startIndex": 1,
|
|
5340
|
+
"endIndex": 3
|
|
5341
|
+
},
|
|
5342
|
+
"isStatic": false
|
|
5343
|
+
},
|
|
4666
5344
|
{
|
|
4667
5345
|
"kind": "Property",
|
|
4668
5346
|
"canonicalReference": "@microsoft/fast-element!ElementController#template:member",
|
|
@@ -5432,6 +6110,87 @@
|
|
|
5432
6110
|
}
|
|
5433
6111
|
],
|
|
5434
6112
|
"name": "appendTo"
|
|
6113
|
+
},
|
|
6114
|
+
{
|
|
6115
|
+
"kind": "MethodSignature",
|
|
6116
|
+
"canonicalReference": "@microsoft/fast-element!ElementView#onUnbind:member(1)",
|
|
6117
|
+
"docComment": "/**\n * Registers an unbind handler with the controller.\n *\n * @param behavior - An object to call when the controller unbinds.\n */\n",
|
|
6118
|
+
"excerptTokens": [
|
|
6119
|
+
{
|
|
6120
|
+
"kind": "Content",
|
|
6121
|
+
"text": "onUnbind(behavior: "
|
|
6122
|
+
},
|
|
6123
|
+
{
|
|
6124
|
+
"kind": "Content",
|
|
6125
|
+
"text": "{\n unbind(controller: "
|
|
6126
|
+
},
|
|
6127
|
+
{
|
|
6128
|
+
"kind": "Reference",
|
|
6129
|
+
"text": "ViewController",
|
|
6130
|
+
"canonicalReference": "@microsoft/fast-element!ViewController:interface"
|
|
6131
|
+
},
|
|
6132
|
+
{
|
|
6133
|
+
"kind": "Content",
|
|
6134
|
+
"text": "<TSource, TParent>): any;\n }"
|
|
6135
|
+
},
|
|
6136
|
+
{
|
|
6137
|
+
"kind": "Content",
|
|
6138
|
+
"text": "): "
|
|
6139
|
+
},
|
|
6140
|
+
{
|
|
6141
|
+
"kind": "Content",
|
|
6142
|
+
"text": "void"
|
|
6143
|
+
},
|
|
6144
|
+
{
|
|
6145
|
+
"kind": "Content",
|
|
6146
|
+
"text": ";"
|
|
6147
|
+
}
|
|
6148
|
+
],
|
|
6149
|
+
"isOptional": false,
|
|
6150
|
+
"returnTypeTokenRange": {
|
|
6151
|
+
"startIndex": 5,
|
|
6152
|
+
"endIndex": 6
|
|
6153
|
+
},
|
|
6154
|
+
"releaseTag": "Public",
|
|
6155
|
+
"overloadIndex": 1,
|
|
6156
|
+
"parameters": [
|
|
6157
|
+
{
|
|
6158
|
+
"parameterName": "behavior",
|
|
6159
|
+
"parameterTypeTokenRange": {
|
|
6160
|
+
"startIndex": 1,
|
|
6161
|
+
"endIndex": 4
|
|
6162
|
+
},
|
|
6163
|
+
"isOptional": false
|
|
6164
|
+
}
|
|
6165
|
+
],
|
|
6166
|
+
"name": "onUnbind"
|
|
6167
|
+
},
|
|
6168
|
+
{
|
|
6169
|
+
"kind": "PropertySignature",
|
|
6170
|
+
"canonicalReference": "@microsoft/fast-element!ElementView#sourceLifetime:member",
|
|
6171
|
+
"docComment": "/**\n * Indicates how the source's lifetime relates to the controller's lifetime.\n */\n",
|
|
6172
|
+
"excerptTokens": [
|
|
6173
|
+
{
|
|
6174
|
+
"kind": "Content",
|
|
6175
|
+
"text": "readonly sourceLifetime?: "
|
|
6176
|
+
},
|
|
6177
|
+
{
|
|
6178
|
+
"kind": "Reference",
|
|
6179
|
+
"text": "SourceLifetime",
|
|
6180
|
+
"canonicalReference": "@microsoft/fast-element!SourceLifetime:type"
|
|
6181
|
+
},
|
|
6182
|
+
{
|
|
6183
|
+
"kind": "Content",
|
|
6184
|
+
"text": ";"
|
|
6185
|
+
}
|
|
6186
|
+
],
|
|
6187
|
+
"isOptional": true,
|
|
6188
|
+
"releaseTag": "Public",
|
|
6189
|
+
"name": "sourceLifetime",
|
|
6190
|
+
"propertyTypeTokenRange": {
|
|
6191
|
+
"startIndex": 1,
|
|
6192
|
+
"endIndex": 2
|
|
6193
|
+
}
|
|
5435
6194
|
}
|
|
5436
6195
|
],
|
|
5437
6196
|
"extendsTokenRanges": [
|
|
@@ -6806,6 +7565,28 @@
|
|
|
6806
7565
|
],
|
|
6807
7566
|
"extendsTokenRanges": []
|
|
6808
7567
|
},
|
|
7568
|
+
{
|
|
7569
|
+
"kind": "Variable",
|
|
7570
|
+
"canonicalReference": "@microsoft/fast-element!FAST:var",
|
|
7571
|
+
"docComment": "/**\n * The FAST global.\n *\n * @public\n */\n",
|
|
7572
|
+
"excerptTokens": [
|
|
7573
|
+
{
|
|
7574
|
+
"kind": "Content",
|
|
7575
|
+
"text": "FAST: "
|
|
7576
|
+
},
|
|
7577
|
+
{
|
|
7578
|
+
"kind": "Reference",
|
|
7579
|
+
"text": "FASTGlobal",
|
|
7580
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal:interface"
|
|
7581
|
+
}
|
|
7582
|
+
],
|
|
7583
|
+
"releaseTag": "Public",
|
|
7584
|
+
"name": "FAST",
|
|
7585
|
+
"variableTypeTokenRange": {
|
|
7586
|
+
"startIndex": 1,
|
|
7587
|
+
"endIndex": 2
|
|
7588
|
+
}
|
|
7589
|
+
},
|
|
6809
7590
|
{
|
|
6810
7591
|
"kind": "Interface",
|
|
6811
7592
|
"canonicalReference": "@microsoft/fast-element!FASTElement:interface",
|
|
@@ -7206,40 +7987,285 @@
|
|
|
7206
7987
|
"startIndex": 1,
|
|
7207
7988
|
"endIndex": 4
|
|
7208
7989
|
},
|
|
7209
|
-
"defaultTypeTokenRange": {
|
|
7210
|
-
"startIndex": 6,
|
|
7211
|
-
"endIndex": 10
|
|
7212
|
-
}
|
|
7213
|
-
}
|
|
7214
|
-
],
|
|
7215
|
-
"name": "FASTElementDefinition",
|
|
7216
|
-
"members": [
|
|
7990
|
+
"defaultTypeTokenRange": {
|
|
7991
|
+
"startIndex": 6,
|
|
7992
|
+
"endIndex": 10
|
|
7993
|
+
}
|
|
7994
|
+
}
|
|
7995
|
+
],
|
|
7996
|
+
"name": "FASTElementDefinition",
|
|
7997
|
+
"members": [
|
|
7998
|
+
{
|
|
7999
|
+
"kind": "Property",
|
|
8000
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#attributeLookup:member",
|
|
8001
|
+
"docComment": "/**\n * A map enabling lookup of property by associated attribute name.\n */\n",
|
|
8002
|
+
"excerptTokens": [
|
|
8003
|
+
{
|
|
8004
|
+
"kind": "Content",
|
|
8005
|
+
"text": "readonly attributeLookup: "
|
|
8006
|
+
},
|
|
8007
|
+
{
|
|
8008
|
+
"kind": "Reference",
|
|
8009
|
+
"text": "Record",
|
|
8010
|
+
"canonicalReference": "!Record:type"
|
|
8011
|
+
},
|
|
8012
|
+
{
|
|
8013
|
+
"kind": "Content",
|
|
8014
|
+
"text": "<string, "
|
|
8015
|
+
},
|
|
8016
|
+
{
|
|
8017
|
+
"kind": "Reference",
|
|
8018
|
+
"text": "AttributeDefinition",
|
|
8019
|
+
"canonicalReference": "@microsoft/fast-element!AttributeDefinition:class"
|
|
8020
|
+
},
|
|
8021
|
+
{
|
|
8022
|
+
"kind": "Content",
|
|
8023
|
+
"text": ">"
|
|
8024
|
+
},
|
|
8025
|
+
{
|
|
8026
|
+
"kind": "Content",
|
|
8027
|
+
"text": ";"
|
|
8028
|
+
}
|
|
8029
|
+
],
|
|
8030
|
+
"isOptional": false,
|
|
8031
|
+
"releaseTag": "Public",
|
|
8032
|
+
"name": "attributeLookup",
|
|
8033
|
+
"propertyTypeTokenRange": {
|
|
8034
|
+
"startIndex": 1,
|
|
8035
|
+
"endIndex": 5
|
|
8036
|
+
},
|
|
8037
|
+
"isStatic": false
|
|
8038
|
+
},
|
|
8039
|
+
{
|
|
8040
|
+
"kind": "Property",
|
|
8041
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#attributes:member",
|
|
8042
|
+
"docComment": "/**\n * The custom attributes of the custom element.\n */\n",
|
|
8043
|
+
"excerptTokens": [
|
|
8044
|
+
{
|
|
8045
|
+
"kind": "Content",
|
|
8046
|
+
"text": "readonly attributes: "
|
|
8047
|
+
},
|
|
8048
|
+
{
|
|
8049
|
+
"kind": "Reference",
|
|
8050
|
+
"text": "ReadonlyArray",
|
|
8051
|
+
"canonicalReference": "!ReadonlyArray:interface"
|
|
8052
|
+
},
|
|
8053
|
+
{
|
|
8054
|
+
"kind": "Content",
|
|
8055
|
+
"text": "<"
|
|
8056
|
+
},
|
|
8057
|
+
{
|
|
8058
|
+
"kind": "Reference",
|
|
8059
|
+
"text": "AttributeDefinition",
|
|
8060
|
+
"canonicalReference": "@microsoft/fast-element!AttributeDefinition:class"
|
|
8061
|
+
},
|
|
8062
|
+
{
|
|
8063
|
+
"kind": "Content",
|
|
8064
|
+
"text": ">"
|
|
8065
|
+
},
|
|
8066
|
+
{
|
|
8067
|
+
"kind": "Content",
|
|
8068
|
+
"text": ";"
|
|
8069
|
+
}
|
|
8070
|
+
],
|
|
8071
|
+
"isOptional": false,
|
|
8072
|
+
"releaseTag": "Public",
|
|
8073
|
+
"name": "attributes",
|
|
8074
|
+
"propertyTypeTokenRange": {
|
|
8075
|
+
"startIndex": 1,
|
|
8076
|
+
"endIndex": 5
|
|
8077
|
+
},
|
|
8078
|
+
"isStatic": false
|
|
8079
|
+
},
|
|
8080
|
+
{
|
|
8081
|
+
"kind": "Method",
|
|
8082
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition.compose:member(1)",
|
|
8083
|
+
"docComment": "/**\n * Creates an instance of FASTElementDefinition.\n *\n * @param type - The type this definition is being created for.\n *\n * @param nameOrDef - The name of the element to define or a config object that describes the element to define.\n */\n",
|
|
8084
|
+
"excerptTokens": [
|
|
8085
|
+
{
|
|
8086
|
+
"kind": "Content",
|
|
8087
|
+
"text": "static compose<TType extends "
|
|
8088
|
+
},
|
|
8089
|
+
{
|
|
8090
|
+
"kind": "Reference",
|
|
8091
|
+
"text": "Constructable",
|
|
8092
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
8093
|
+
},
|
|
8094
|
+
{
|
|
8095
|
+
"kind": "Content",
|
|
8096
|
+
"text": "<"
|
|
8097
|
+
},
|
|
8098
|
+
{
|
|
8099
|
+
"kind": "Reference",
|
|
8100
|
+
"text": "HTMLElement",
|
|
8101
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
8102
|
+
},
|
|
8103
|
+
{
|
|
8104
|
+
"kind": "Content",
|
|
8105
|
+
"text": "> "
|
|
8106
|
+
},
|
|
8107
|
+
{
|
|
8108
|
+
"kind": "Content",
|
|
8109
|
+
"text": "= "
|
|
8110
|
+
},
|
|
8111
|
+
{
|
|
8112
|
+
"kind": "Reference",
|
|
8113
|
+
"text": "Constructable",
|
|
8114
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
8115
|
+
},
|
|
8116
|
+
{
|
|
8117
|
+
"kind": "Content",
|
|
8118
|
+
"text": "<"
|
|
8119
|
+
},
|
|
8120
|
+
{
|
|
8121
|
+
"kind": "Reference",
|
|
8122
|
+
"text": "HTMLElement",
|
|
8123
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
8124
|
+
},
|
|
8125
|
+
{
|
|
8126
|
+
"kind": "Content",
|
|
8127
|
+
"text": ">"
|
|
8128
|
+
},
|
|
8129
|
+
{
|
|
8130
|
+
"kind": "Content",
|
|
8131
|
+
"text": ">(type: "
|
|
8132
|
+
},
|
|
8133
|
+
{
|
|
8134
|
+
"kind": "Content",
|
|
8135
|
+
"text": "TType"
|
|
8136
|
+
},
|
|
8137
|
+
{
|
|
8138
|
+
"kind": "Content",
|
|
8139
|
+
"text": ", nameOrDef?: "
|
|
8140
|
+
},
|
|
8141
|
+
{
|
|
8142
|
+
"kind": "Content",
|
|
8143
|
+
"text": "string | "
|
|
8144
|
+
},
|
|
8145
|
+
{
|
|
8146
|
+
"kind": "Reference",
|
|
8147
|
+
"text": "PartialFASTElementDefinition",
|
|
8148
|
+
"canonicalReference": "@microsoft/fast-element!PartialFASTElementDefinition:interface"
|
|
8149
|
+
},
|
|
8150
|
+
{
|
|
8151
|
+
"kind": "Content",
|
|
8152
|
+
"text": "): "
|
|
8153
|
+
},
|
|
8154
|
+
{
|
|
8155
|
+
"kind": "Reference",
|
|
8156
|
+
"text": "FASTElementDefinition",
|
|
8157
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
8158
|
+
},
|
|
8159
|
+
{
|
|
8160
|
+
"kind": "Content",
|
|
8161
|
+
"text": "<TType>"
|
|
8162
|
+
},
|
|
8163
|
+
{
|
|
8164
|
+
"kind": "Content",
|
|
8165
|
+
"text": ";"
|
|
8166
|
+
}
|
|
8167
|
+
],
|
|
8168
|
+
"isOptional": false,
|
|
8169
|
+
"isStatic": true,
|
|
8170
|
+
"returnTypeTokenRange": {
|
|
8171
|
+
"startIndex": 16,
|
|
8172
|
+
"endIndex": 18
|
|
8173
|
+
},
|
|
8174
|
+
"releaseTag": "Public",
|
|
8175
|
+
"overloadIndex": 1,
|
|
8176
|
+
"parameters": [
|
|
8177
|
+
{
|
|
8178
|
+
"parameterName": "type",
|
|
8179
|
+
"parameterTypeTokenRange": {
|
|
8180
|
+
"startIndex": 11,
|
|
8181
|
+
"endIndex": 12
|
|
8182
|
+
},
|
|
8183
|
+
"isOptional": false
|
|
8184
|
+
},
|
|
8185
|
+
{
|
|
8186
|
+
"parameterName": "nameOrDef",
|
|
8187
|
+
"parameterTypeTokenRange": {
|
|
8188
|
+
"startIndex": 13,
|
|
8189
|
+
"endIndex": 15
|
|
8190
|
+
},
|
|
8191
|
+
"isOptional": true
|
|
8192
|
+
}
|
|
8193
|
+
],
|
|
8194
|
+
"typeParameters": [
|
|
8195
|
+
{
|
|
8196
|
+
"typeParameterName": "TType",
|
|
8197
|
+
"constraintTokenRange": {
|
|
8198
|
+
"startIndex": 1,
|
|
8199
|
+
"endIndex": 4
|
|
8200
|
+
},
|
|
8201
|
+
"defaultTypeTokenRange": {
|
|
8202
|
+
"startIndex": 6,
|
|
8203
|
+
"endIndex": 10
|
|
8204
|
+
}
|
|
8205
|
+
}
|
|
8206
|
+
],
|
|
8207
|
+
"name": "compose"
|
|
8208
|
+
},
|
|
8209
|
+
{
|
|
8210
|
+
"kind": "Method",
|
|
8211
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#define:member(1)",
|
|
8212
|
+
"docComment": "/**\n * Defines a custom element based on this definition.\n *\n * @remarks\n *\n * This operation is idempotent per registry.\n *\n * @param registry - The element registry to define the element in.\n */\n",
|
|
8213
|
+
"excerptTokens": [
|
|
8214
|
+
{
|
|
8215
|
+
"kind": "Content",
|
|
8216
|
+
"text": "define(registry?: "
|
|
8217
|
+
},
|
|
8218
|
+
{
|
|
8219
|
+
"kind": "Reference",
|
|
8220
|
+
"text": "CustomElementRegistry",
|
|
8221
|
+
"canonicalReference": "!CustomElementRegistry:interface"
|
|
8222
|
+
},
|
|
8223
|
+
{
|
|
8224
|
+
"kind": "Content",
|
|
8225
|
+
"text": "): "
|
|
8226
|
+
},
|
|
8227
|
+
{
|
|
8228
|
+
"kind": "Content",
|
|
8229
|
+
"text": "this"
|
|
8230
|
+
},
|
|
8231
|
+
{
|
|
8232
|
+
"kind": "Content",
|
|
8233
|
+
"text": ";"
|
|
8234
|
+
}
|
|
8235
|
+
],
|
|
8236
|
+
"isOptional": false,
|
|
8237
|
+
"isStatic": false,
|
|
8238
|
+
"returnTypeTokenRange": {
|
|
8239
|
+
"startIndex": 3,
|
|
8240
|
+
"endIndex": 4
|
|
8241
|
+
},
|
|
8242
|
+
"releaseTag": "Public",
|
|
8243
|
+
"overloadIndex": 1,
|
|
8244
|
+
"parameters": [
|
|
8245
|
+
{
|
|
8246
|
+
"parameterName": "registry",
|
|
8247
|
+
"parameterTypeTokenRange": {
|
|
8248
|
+
"startIndex": 1,
|
|
8249
|
+
"endIndex": 2
|
|
8250
|
+
},
|
|
8251
|
+
"isOptional": true
|
|
8252
|
+
}
|
|
8253
|
+
],
|
|
8254
|
+
"name": "define"
|
|
8255
|
+
},
|
|
7217
8256
|
{
|
|
7218
8257
|
"kind": "Property",
|
|
7219
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#
|
|
7220
|
-
"docComment": "/**\n *
|
|
8258
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#elementOptions:member",
|
|
8259
|
+
"docComment": "/**\n * Options controlling how the custom element is defined with the platform.\n */\n",
|
|
7221
8260
|
"excerptTokens": [
|
|
7222
8261
|
{
|
|
7223
8262
|
"kind": "Content",
|
|
7224
|
-
"text": "readonly
|
|
7225
|
-
},
|
|
7226
|
-
{
|
|
7227
|
-
"kind": "Reference",
|
|
7228
|
-
"text": "Record",
|
|
7229
|
-
"canonicalReference": "!Record:type"
|
|
7230
|
-
},
|
|
7231
|
-
{
|
|
7232
|
-
"kind": "Content",
|
|
7233
|
-
"text": "<string, "
|
|
8263
|
+
"text": "readonly elementOptions: "
|
|
7234
8264
|
},
|
|
7235
8265
|
{
|
|
7236
8266
|
"kind": "Reference",
|
|
7237
|
-
"text": "
|
|
7238
|
-
"canonicalReference": "
|
|
7239
|
-
},
|
|
7240
|
-
{
|
|
7241
|
-
"kind": "Content",
|
|
7242
|
-
"text": ">"
|
|
8267
|
+
"text": "ElementDefinitionOptions",
|
|
8268
|
+
"canonicalReference": "!ElementDefinitionOptions:interface"
|
|
7243
8269
|
},
|
|
7244
8270
|
{
|
|
7245
8271
|
"kind": "Content",
|
|
@@ -7248,26 +8274,39 @@
|
|
|
7248
8274
|
],
|
|
7249
8275
|
"isOptional": false,
|
|
7250
8276
|
"releaseTag": "Public",
|
|
7251
|
-
"name": "
|
|
8277
|
+
"name": "elementOptions",
|
|
7252
8278
|
"propertyTypeTokenRange": {
|
|
7253
8279
|
"startIndex": 1,
|
|
7254
|
-
"endIndex":
|
|
8280
|
+
"endIndex": 2
|
|
7255
8281
|
},
|
|
7256
8282
|
"isStatic": false
|
|
7257
8283
|
},
|
|
7258
8284
|
{
|
|
7259
8285
|
"kind": "Property",
|
|
7260
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition
|
|
7261
|
-
"docComment": "/**\n * The custom
|
|
8286
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition.getByType:member",
|
|
8287
|
+
"docComment": "/**\n * Gets the element definition associated with the specified type.\n *\n * @param type - The custom element type to retrieve the definition for.\n */\n",
|
|
7262
8288
|
"excerptTokens": [
|
|
7263
8289
|
{
|
|
7264
8290
|
"kind": "Content",
|
|
7265
|
-
"text": "readonly
|
|
8291
|
+
"text": "static readonly getByType: "
|
|
8292
|
+
},
|
|
8293
|
+
{
|
|
8294
|
+
"kind": "Content",
|
|
8295
|
+
"text": "(key: "
|
|
7266
8296
|
},
|
|
7267
8297
|
{
|
|
7268
8298
|
"kind": "Reference",
|
|
7269
|
-
"text": "
|
|
7270
|
-
"canonicalReference": "!
|
|
8299
|
+
"text": "Function",
|
|
8300
|
+
"canonicalReference": "!Function:interface"
|
|
8301
|
+
},
|
|
8302
|
+
{
|
|
8303
|
+
"kind": "Content",
|
|
8304
|
+
"text": ") => "
|
|
8305
|
+
},
|
|
8306
|
+
{
|
|
8307
|
+
"kind": "Reference",
|
|
8308
|
+
"text": "FASTElementDefinition",
|
|
8309
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
7271
8310
|
},
|
|
7272
8311
|
{
|
|
7273
8312
|
"kind": "Content",
|
|
@@ -7275,12 +8314,21 @@
|
|
|
7275
8314
|
},
|
|
7276
8315
|
{
|
|
7277
8316
|
"kind": "Reference",
|
|
7278
|
-
"text": "
|
|
7279
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
8317
|
+
"text": "Constructable",
|
|
8318
|
+
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
7280
8319
|
},
|
|
7281
8320
|
{
|
|
7282
8321
|
"kind": "Content",
|
|
7283
|
-
"text": "
|
|
8322
|
+
"text": "<"
|
|
8323
|
+
},
|
|
8324
|
+
{
|
|
8325
|
+
"kind": "Reference",
|
|
8326
|
+
"text": "HTMLElement",
|
|
8327
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
8328
|
+
},
|
|
8329
|
+
{
|
|
8330
|
+
"kind": "Content",
|
|
8331
|
+
"text": ">> | undefined"
|
|
7284
8332
|
},
|
|
7285
8333
|
{
|
|
7286
8334
|
"kind": "Content",
|
|
@@ -7289,43 +8337,34 @@
|
|
|
7289
8337
|
],
|
|
7290
8338
|
"isOptional": false,
|
|
7291
8339
|
"releaseTag": "Public",
|
|
7292
|
-
"name": "
|
|
8340
|
+
"name": "getByType",
|
|
7293
8341
|
"propertyTypeTokenRange": {
|
|
7294
8342
|
"startIndex": 1,
|
|
7295
|
-
"endIndex":
|
|
8343
|
+
"endIndex": 10
|
|
7296
8344
|
},
|
|
7297
|
-
"isStatic":
|
|
8345
|
+
"isStatic": true
|
|
7298
8346
|
},
|
|
7299
8347
|
{
|
|
7300
|
-
"kind": "
|
|
7301
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition.
|
|
7302
|
-
"docComment": "/**\n *
|
|
8348
|
+
"kind": "Property",
|
|
8349
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition.getForInstance:member",
|
|
8350
|
+
"docComment": "/**\n * Gets the element definition associated with the instance.\n *\n * @param instance - The custom element instance to retrieve the definition for.\n */\n",
|
|
7303
8351
|
"excerptTokens": [
|
|
7304
8352
|
{
|
|
7305
8353
|
"kind": "Content",
|
|
7306
|
-
"text": "static
|
|
7307
|
-
},
|
|
7308
|
-
{
|
|
7309
|
-
"kind": "Reference",
|
|
7310
|
-
"text": "Constructable",
|
|
7311
|
-
"canonicalReference": "@microsoft/fast-element!Constructable:type"
|
|
8354
|
+
"text": "static readonly getForInstance: "
|
|
7312
8355
|
},
|
|
7313
8356
|
{
|
|
7314
8357
|
"kind": "Content",
|
|
7315
|
-
"text": "
|
|
8358
|
+
"text": "(object: any) => "
|
|
7316
8359
|
},
|
|
7317
8360
|
{
|
|
7318
8361
|
"kind": "Reference",
|
|
7319
|
-
"text": "
|
|
7320
|
-
"canonicalReference": "!
|
|
7321
|
-
},
|
|
7322
|
-
{
|
|
7323
|
-
"kind": "Content",
|
|
7324
|
-
"text": "> "
|
|
8362
|
+
"text": "FASTElementDefinition",
|
|
8363
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
7325
8364
|
},
|
|
7326
8365
|
{
|
|
7327
8366
|
"kind": "Content",
|
|
7328
|
-
"text": "
|
|
8367
|
+
"text": "<"
|
|
7329
8368
|
},
|
|
7330
8369
|
{
|
|
7331
8370
|
"kind": "Reference",
|
|
@@ -7343,41 +8382,102 @@
|
|
|
7343
8382
|
},
|
|
7344
8383
|
{
|
|
7345
8384
|
"kind": "Content",
|
|
7346
|
-
"text": "
|
|
8385
|
+
"text": ">> | undefined"
|
|
7347
8386
|
},
|
|
7348
8387
|
{
|
|
7349
8388
|
"kind": "Content",
|
|
7350
|
-
"text": "
|
|
8389
|
+
"text": ";"
|
|
8390
|
+
}
|
|
8391
|
+
],
|
|
8392
|
+
"isOptional": false,
|
|
8393
|
+
"releaseTag": "Public",
|
|
8394
|
+
"name": "getForInstance",
|
|
8395
|
+
"propertyTypeTokenRange": {
|
|
8396
|
+
"startIndex": 1,
|
|
8397
|
+
"endIndex": 8
|
|
8398
|
+
},
|
|
8399
|
+
"isStatic": true
|
|
8400
|
+
},
|
|
8401
|
+
{
|
|
8402
|
+
"kind": "Property",
|
|
8403
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#isDefined:member",
|
|
8404
|
+
"docComment": "/**\n * Indicates if this element has been defined in at least one registry.\n */\n",
|
|
8405
|
+
"excerptTokens": [
|
|
8406
|
+
{
|
|
8407
|
+
"kind": "Content",
|
|
8408
|
+
"text": "get isDefined(): "
|
|
7351
8409
|
},
|
|
7352
8410
|
{
|
|
7353
8411
|
"kind": "Content",
|
|
7354
|
-
"text": "
|
|
8412
|
+
"text": "boolean"
|
|
7355
8413
|
},
|
|
7356
8414
|
{
|
|
7357
8415
|
"kind": "Content",
|
|
7358
|
-
"text": "
|
|
8416
|
+
"text": ";"
|
|
8417
|
+
}
|
|
8418
|
+
],
|
|
8419
|
+
"isOptional": false,
|
|
8420
|
+
"releaseTag": "Public",
|
|
8421
|
+
"name": "isDefined",
|
|
8422
|
+
"propertyTypeTokenRange": {
|
|
8423
|
+
"startIndex": 1,
|
|
8424
|
+
"endIndex": 2
|
|
8425
|
+
},
|
|
8426
|
+
"isStatic": false
|
|
8427
|
+
},
|
|
8428
|
+
{
|
|
8429
|
+
"kind": "Property",
|
|
8430
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#name:member",
|
|
8431
|
+
"docComment": "/**\n * The name of the custom element.\n */\n",
|
|
8432
|
+
"excerptTokens": [
|
|
8433
|
+
{
|
|
8434
|
+
"kind": "Content",
|
|
8435
|
+
"text": "readonly name: "
|
|
7359
8436
|
},
|
|
7360
8437
|
{
|
|
7361
8438
|
"kind": "Content",
|
|
7362
|
-
"text": "string
|
|
8439
|
+
"text": "string"
|
|
8440
|
+
},
|
|
8441
|
+
{
|
|
8442
|
+
"kind": "Content",
|
|
8443
|
+
"text": ";"
|
|
8444
|
+
}
|
|
8445
|
+
],
|
|
8446
|
+
"isOptional": false,
|
|
8447
|
+
"releaseTag": "Public",
|
|
8448
|
+
"name": "name",
|
|
8449
|
+
"propertyTypeTokenRange": {
|
|
8450
|
+
"startIndex": 1,
|
|
8451
|
+
"endIndex": 2
|
|
8452
|
+
},
|
|
8453
|
+
"isStatic": false
|
|
8454
|
+
},
|
|
8455
|
+
{
|
|
8456
|
+
"kind": "Property",
|
|
8457
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#propertyLookup:member",
|
|
8458
|
+
"docComment": "/**\n * A map enabling lookup of attribute by associated property name.\n */\n",
|
|
8459
|
+
"excerptTokens": [
|
|
8460
|
+
{
|
|
8461
|
+
"kind": "Content",
|
|
8462
|
+
"text": "readonly propertyLookup: "
|
|
7363
8463
|
},
|
|
7364
8464
|
{
|
|
7365
8465
|
"kind": "Reference",
|
|
7366
|
-
"text": "
|
|
7367
|
-
"canonicalReference": "
|
|
8466
|
+
"text": "Record",
|
|
8467
|
+
"canonicalReference": "!Record:type"
|
|
7368
8468
|
},
|
|
7369
8469
|
{
|
|
7370
8470
|
"kind": "Content",
|
|
7371
|
-
"text": "
|
|
8471
|
+
"text": "<string, "
|
|
7372
8472
|
},
|
|
7373
8473
|
{
|
|
7374
8474
|
"kind": "Reference",
|
|
7375
|
-
"text": "
|
|
7376
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
8475
|
+
"text": "AttributeDefinition",
|
|
8476
|
+
"canonicalReference": "@microsoft/fast-element!AttributeDefinition:class"
|
|
7377
8477
|
},
|
|
7378
8478
|
{
|
|
7379
8479
|
"kind": "Content",
|
|
7380
|
-
"text": "
|
|
8480
|
+
"text": ">"
|
|
7381
8481
|
},
|
|
7382
8482
|
{
|
|
7383
8483
|
"kind": "Content",
|
|
@@ -7385,115 +8485,120 @@
|
|
|
7385
8485
|
}
|
|
7386
8486
|
],
|
|
7387
8487
|
"isOptional": false,
|
|
7388
|
-
"isStatic": true,
|
|
7389
|
-
"returnTypeTokenRange": {
|
|
7390
|
-
"startIndex": 16,
|
|
7391
|
-
"endIndex": 18
|
|
7392
|
-
},
|
|
7393
8488
|
"releaseTag": "Public",
|
|
7394
|
-
"
|
|
7395
|
-
"
|
|
8489
|
+
"name": "propertyLookup",
|
|
8490
|
+
"propertyTypeTokenRange": {
|
|
8491
|
+
"startIndex": 1,
|
|
8492
|
+
"endIndex": 5
|
|
8493
|
+
},
|
|
8494
|
+
"isStatic": false
|
|
8495
|
+
},
|
|
8496
|
+
{
|
|
8497
|
+
"kind": "Property",
|
|
8498
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#registry:member",
|
|
8499
|
+
"docComment": "/**\n * The registry to register this component in by default.\n */\n",
|
|
8500
|
+
"excerptTokens": [
|
|
7396
8501
|
{
|
|
7397
|
-
"
|
|
7398
|
-
"
|
|
7399
|
-
"startIndex": 11,
|
|
7400
|
-
"endIndex": 12
|
|
7401
|
-
},
|
|
7402
|
-
"isOptional": false
|
|
8502
|
+
"kind": "Content",
|
|
8503
|
+
"text": "readonly registry: "
|
|
7403
8504
|
},
|
|
7404
8505
|
{
|
|
7405
|
-
"
|
|
7406
|
-
"
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
},
|
|
7410
|
-
"isOptional": true
|
|
7411
|
-
}
|
|
7412
|
-
],
|
|
7413
|
-
"typeParameters": [
|
|
8506
|
+
"kind": "Reference",
|
|
8507
|
+
"text": "CustomElementRegistry",
|
|
8508
|
+
"canonicalReference": "!CustomElementRegistry:interface"
|
|
8509
|
+
},
|
|
7414
8510
|
{
|
|
7415
|
-
"
|
|
7416
|
-
"
|
|
7417
|
-
"startIndex": 1,
|
|
7418
|
-
"endIndex": 4
|
|
7419
|
-
},
|
|
7420
|
-
"defaultTypeTokenRange": {
|
|
7421
|
-
"startIndex": 6,
|
|
7422
|
-
"endIndex": 10
|
|
7423
|
-
}
|
|
8511
|
+
"kind": "Content",
|
|
8512
|
+
"text": ";"
|
|
7424
8513
|
}
|
|
7425
8514
|
],
|
|
7426
|
-
"
|
|
8515
|
+
"isOptional": false,
|
|
8516
|
+
"releaseTag": "Public",
|
|
8517
|
+
"name": "registry",
|
|
8518
|
+
"propertyTypeTokenRange": {
|
|
8519
|
+
"startIndex": 1,
|
|
8520
|
+
"endIndex": 2
|
|
8521
|
+
},
|
|
8522
|
+
"isStatic": false
|
|
7427
8523
|
},
|
|
7428
8524
|
{
|
|
7429
|
-
"kind": "
|
|
7430
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#
|
|
7431
|
-
"docComment": "/**\n *
|
|
8525
|
+
"kind": "Property",
|
|
8526
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#shadowOptions:member",
|
|
8527
|
+
"docComment": "/**\n * Options controlling the creation of the custom element's shadow DOM.\n */\n",
|
|
7432
8528
|
"excerptTokens": [
|
|
7433
8529
|
{
|
|
7434
8530
|
"kind": "Content",
|
|
7435
|
-
"text": "
|
|
8531
|
+
"text": "readonly shadowOptions?: "
|
|
7436
8532
|
},
|
|
7437
8533
|
{
|
|
7438
8534
|
"kind": "Reference",
|
|
7439
|
-
"text": "
|
|
7440
|
-
"canonicalReference": "!
|
|
8535
|
+
"text": "ShadowRootOptions",
|
|
8536
|
+
"canonicalReference": "@microsoft/fast-element!ShadowRootOptions:interface"
|
|
7441
8537
|
},
|
|
7442
8538
|
{
|
|
7443
8539
|
"kind": "Content",
|
|
7444
|
-
"text": "
|
|
7445
|
-
}
|
|
8540
|
+
"text": ";"
|
|
8541
|
+
}
|
|
8542
|
+
],
|
|
8543
|
+
"isOptional": true,
|
|
8544
|
+
"releaseTag": "Public",
|
|
8545
|
+
"name": "shadowOptions",
|
|
8546
|
+
"propertyTypeTokenRange": {
|
|
8547
|
+
"startIndex": 1,
|
|
8548
|
+
"endIndex": 2
|
|
8549
|
+
},
|
|
8550
|
+
"isStatic": false
|
|
8551
|
+
},
|
|
8552
|
+
{
|
|
8553
|
+
"kind": "Property",
|
|
8554
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#styles:member",
|
|
8555
|
+
"docComment": "/**\n * The styles to associate with the custom element.\n */\n",
|
|
8556
|
+
"excerptTokens": [
|
|
7446
8557
|
{
|
|
7447
8558
|
"kind": "Content",
|
|
7448
|
-
"text": "
|
|
8559
|
+
"text": "readonly styles?: "
|
|
8560
|
+
},
|
|
8561
|
+
{
|
|
8562
|
+
"kind": "Reference",
|
|
8563
|
+
"text": "ElementStyles",
|
|
8564
|
+
"canonicalReference": "@microsoft/fast-element!ElementStyles:class"
|
|
7449
8565
|
},
|
|
7450
8566
|
{
|
|
7451
8567
|
"kind": "Content",
|
|
7452
8568
|
"text": ";"
|
|
7453
8569
|
}
|
|
7454
8570
|
],
|
|
7455
|
-
"isOptional":
|
|
7456
|
-
"isStatic": false,
|
|
7457
|
-
"returnTypeTokenRange": {
|
|
7458
|
-
"startIndex": 3,
|
|
7459
|
-
"endIndex": 4
|
|
7460
|
-
},
|
|
8571
|
+
"isOptional": true,
|
|
7461
8572
|
"releaseTag": "Public",
|
|
7462
|
-
"
|
|
7463
|
-
"
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
"endIndex": 2
|
|
7469
|
-
},
|
|
7470
|
-
"isOptional": true
|
|
7471
|
-
}
|
|
7472
|
-
],
|
|
7473
|
-
"name": "define"
|
|
8573
|
+
"name": "styles",
|
|
8574
|
+
"propertyTypeTokenRange": {
|
|
8575
|
+
"startIndex": 1,
|
|
8576
|
+
"endIndex": 2
|
|
8577
|
+
},
|
|
8578
|
+
"isStatic": false
|
|
7474
8579
|
},
|
|
7475
8580
|
{
|
|
7476
8581
|
"kind": "Property",
|
|
7477
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#
|
|
7478
|
-
"docComment": "/**\n *
|
|
8582
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#template:member",
|
|
8583
|
+
"docComment": "/**\n * The template to render for the custom element.\n */\n",
|
|
7479
8584
|
"excerptTokens": [
|
|
7480
8585
|
{
|
|
7481
8586
|
"kind": "Content",
|
|
7482
|
-
"text": "readonly
|
|
8587
|
+
"text": "readonly template?: "
|
|
7483
8588
|
},
|
|
7484
8589
|
{
|
|
7485
8590
|
"kind": "Reference",
|
|
7486
|
-
"text": "
|
|
7487
|
-
"canonicalReference": "!
|
|
8591
|
+
"text": "ElementViewTemplate",
|
|
8592
|
+
"canonicalReference": "@microsoft/fast-element!ElementViewTemplate:interface"
|
|
7488
8593
|
},
|
|
7489
8594
|
{
|
|
7490
8595
|
"kind": "Content",
|
|
7491
8596
|
"text": ";"
|
|
7492
8597
|
}
|
|
7493
8598
|
],
|
|
7494
|
-
"isOptional":
|
|
8599
|
+
"isOptional": true,
|
|
7495
8600
|
"releaseTag": "Public",
|
|
7496
|
-
"name": "
|
|
8601
|
+
"name": "template",
|
|
7497
8602
|
"propertyTypeTokenRange": {
|
|
7498
8603
|
"startIndex": 1,
|
|
7499
8604
|
"endIndex": 2
|
|
@@ -7502,52 +8607,72 @@
|
|
|
7502
8607
|
},
|
|
7503
8608
|
{
|
|
7504
8609
|
"kind": "Property",
|
|
7505
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition
|
|
7506
|
-
"docComment": "/**\n *
|
|
8610
|
+
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#type:member",
|
|
8611
|
+
"docComment": "/**\n * The type this element definition describes.\n */\n",
|
|
7507
8612
|
"excerptTokens": [
|
|
7508
8613
|
{
|
|
7509
8614
|
"kind": "Content",
|
|
7510
|
-
"text": "
|
|
8615
|
+
"text": "readonly type: "
|
|
7511
8616
|
},
|
|
7512
8617
|
{
|
|
7513
8618
|
"kind": "Content",
|
|
7514
|
-
"text": "
|
|
7515
|
-
},
|
|
7516
|
-
{
|
|
7517
|
-
"kind": "Reference",
|
|
7518
|
-
"text": "Function",
|
|
7519
|
-
"canonicalReference": "!Function:interface"
|
|
8619
|
+
"text": "TType"
|
|
7520
8620
|
},
|
|
7521
8621
|
{
|
|
7522
8622
|
"kind": "Content",
|
|
7523
|
-
"text": "
|
|
7524
|
-
}
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7528
|
-
|
|
7529
|
-
|
|
8623
|
+
"text": ";"
|
|
8624
|
+
}
|
|
8625
|
+
],
|
|
8626
|
+
"isOptional": false,
|
|
8627
|
+
"releaseTag": "Public",
|
|
8628
|
+
"name": "type",
|
|
8629
|
+
"propertyTypeTokenRange": {
|
|
8630
|
+
"startIndex": 1,
|
|
8631
|
+
"endIndex": 2
|
|
8632
|
+
},
|
|
8633
|
+
"isStatic": false
|
|
8634
|
+
}
|
|
8635
|
+
],
|
|
8636
|
+
"implementsTokenRanges": []
|
|
8637
|
+
},
|
|
8638
|
+
{
|
|
8639
|
+
"kind": "Interface",
|
|
8640
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal:interface",
|
|
8641
|
+
"docComment": "/**\n * The FAST global.\n *\n * @public\n */\n",
|
|
8642
|
+
"excerptTokens": [
|
|
8643
|
+
{
|
|
8644
|
+
"kind": "Content",
|
|
8645
|
+
"text": "export interface FASTGlobal "
|
|
8646
|
+
}
|
|
8647
|
+
],
|
|
8648
|
+
"releaseTag": "Public",
|
|
8649
|
+
"name": "FASTGlobal",
|
|
8650
|
+
"members": [
|
|
8651
|
+
{
|
|
8652
|
+
"kind": "MethodSignature",
|
|
8653
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal#addMessages:member(1)",
|
|
8654
|
+
"docComment": "/**\n * Adds debug messages for errors and warnings.\n *\n * @remarks\n *\n * Message can include placeholders like $\\{name\\} which can be replaced by values passed at runtime.\n *\n * @param messages - The message dictionary to add.\n */\n",
|
|
8655
|
+
"excerptTokens": [
|
|
7530
8656
|
{
|
|
7531
8657
|
"kind": "Content",
|
|
7532
|
-
"text": "
|
|
8658
|
+
"text": "addMessages(messages: "
|
|
7533
8659
|
},
|
|
7534
8660
|
{
|
|
7535
8661
|
"kind": "Reference",
|
|
7536
|
-
"text": "
|
|
7537
|
-
"canonicalReference": "
|
|
8662
|
+
"text": "Record",
|
|
8663
|
+
"canonicalReference": "!Record:type"
|
|
7538
8664
|
},
|
|
7539
8665
|
{
|
|
7540
8666
|
"kind": "Content",
|
|
7541
|
-
"text": "<"
|
|
8667
|
+
"text": "<number, string>"
|
|
7542
8668
|
},
|
|
7543
8669
|
{
|
|
7544
|
-
"kind": "
|
|
7545
|
-
"text": "
|
|
7546
|
-
"canonicalReference": "!HTMLElement:interface"
|
|
8670
|
+
"kind": "Content",
|
|
8671
|
+
"text": "): "
|
|
7547
8672
|
},
|
|
7548
8673
|
{
|
|
7549
8674
|
"kind": "Content",
|
|
7550
|
-
"text": "
|
|
8675
|
+
"text": "void"
|
|
7551
8676
|
},
|
|
7552
8677
|
{
|
|
7553
8678
|
"kind": "Content",
|
|
@@ -7555,53 +8680,58 @@
|
|
|
7555
8680
|
}
|
|
7556
8681
|
],
|
|
7557
8682
|
"isOptional": false,
|
|
7558
|
-
"
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
"startIndex": 1,
|
|
7562
|
-
"endIndex": 10
|
|
8683
|
+
"returnTypeTokenRange": {
|
|
8684
|
+
"startIndex": 4,
|
|
8685
|
+
"endIndex": 5
|
|
7563
8686
|
},
|
|
7564
|
-
"
|
|
8687
|
+
"releaseTag": "Public",
|
|
8688
|
+
"overloadIndex": 1,
|
|
8689
|
+
"parameters": [
|
|
8690
|
+
{
|
|
8691
|
+
"parameterName": "messages",
|
|
8692
|
+
"parameterTypeTokenRange": {
|
|
8693
|
+
"startIndex": 1,
|
|
8694
|
+
"endIndex": 3
|
|
8695
|
+
},
|
|
8696
|
+
"isOptional": false
|
|
8697
|
+
}
|
|
8698
|
+
],
|
|
8699
|
+
"name": "addMessages"
|
|
7565
8700
|
},
|
|
7566
8701
|
{
|
|
7567
|
-
"kind": "
|
|
7568
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
7569
|
-
"docComment": "/**\n *
|
|
8702
|
+
"kind": "MethodSignature",
|
|
8703
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal#error:member(1)",
|
|
8704
|
+
"docComment": "/**\n * Creates an error.\n *\n * @param code - The error code to send.\n *\n * @param values - Values relevant for the error message.\n */\n",
|
|
7570
8705
|
"excerptTokens": [
|
|
7571
8706
|
{
|
|
7572
8707
|
"kind": "Content",
|
|
7573
|
-
"text": "
|
|
8708
|
+
"text": "error(code: "
|
|
7574
8709
|
},
|
|
7575
8710
|
{
|
|
7576
8711
|
"kind": "Content",
|
|
7577
|
-
"text": "
|
|
7578
|
-
},
|
|
7579
|
-
{
|
|
7580
|
-
"kind": "Reference",
|
|
7581
|
-
"text": "FASTElementDefinition",
|
|
7582
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition:class"
|
|
8712
|
+
"text": "number"
|
|
7583
8713
|
},
|
|
7584
8714
|
{
|
|
7585
8715
|
"kind": "Content",
|
|
7586
|
-
"text": "
|
|
8716
|
+
"text": ", values?: "
|
|
7587
8717
|
},
|
|
7588
8718
|
{
|
|
7589
8719
|
"kind": "Reference",
|
|
7590
|
-
"text": "
|
|
7591
|
-
"canonicalReference": "
|
|
8720
|
+
"text": "Record",
|
|
8721
|
+
"canonicalReference": "!Record:type"
|
|
7592
8722
|
},
|
|
7593
8723
|
{
|
|
7594
8724
|
"kind": "Content",
|
|
7595
|
-
"text": "<"
|
|
8725
|
+
"text": "<string, any>"
|
|
7596
8726
|
},
|
|
7597
8727
|
{
|
|
7598
|
-
"kind": "
|
|
7599
|
-
"text": "
|
|
7600
|
-
"canonicalReference": "!HTMLElement:interface"
|
|
8728
|
+
"kind": "Content",
|
|
8729
|
+
"text": "): "
|
|
7601
8730
|
},
|
|
7602
8731
|
{
|
|
7603
|
-
"kind": "
|
|
7604
|
-
"text": "
|
|
8732
|
+
"kind": "Reference",
|
|
8733
|
+
"text": "Error",
|
|
8734
|
+
"canonicalReference": "!Error:interface"
|
|
7605
8735
|
},
|
|
7606
8736
|
{
|
|
7607
8737
|
"kind": "Content",
|
|
@@ -7609,94 +8739,118 @@
|
|
|
7609
8739
|
}
|
|
7610
8740
|
],
|
|
7611
8741
|
"isOptional": false,
|
|
7612
|
-
"
|
|
7613
|
-
|
|
7614
|
-
|
|
7615
|
-
"startIndex": 1,
|
|
7616
|
-
"endIndex": 8
|
|
8742
|
+
"returnTypeTokenRange": {
|
|
8743
|
+
"startIndex": 6,
|
|
8744
|
+
"endIndex": 7
|
|
7617
8745
|
},
|
|
7618
|
-
"
|
|
8746
|
+
"releaseTag": "Public",
|
|
8747
|
+
"overloadIndex": 1,
|
|
8748
|
+
"parameters": [
|
|
8749
|
+
{
|
|
8750
|
+
"parameterName": "code",
|
|
8751
|
+
"parameterTypeTokenRange": {
|
|
8752
|
+
"startIndex": 1,
|
|
8753
|
+
"endIndex": 2
|
|
8754
|
+
},
|
|
8755
|
+
"isOptional": false
|
|
8756
|
+
},
|
|
8757
|
+
{
|
|
8758
|
+
"parameterName": "values",
|
|
8759
|
+
"parameterTypeTokenRange": {
|
|
8760
|
+
"startIndex": 3,
|
|
8761
|
+
"endIndex": 5
|
|
8762
|
+
},
|
|
8763
|
+
"isOptional": true
|
|
8764
|
+
}
|
|
8765
|
+
],
|
|
8766
|
+
"name": "error"
|
|
7619
8767
|
},
|
|
7620
8768
|
{
|
|
7621
|
-
"kind": "
|
|
7622
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
7623
|
-
"docComment": "/**\n *
|
|
8769
|
+
"kind": "MethodSignature",
|
|
8770
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal#getById:member(1)",
|
|
8771
|
+
"docComment": "/**\n * Gets a kernel value.\n *\n * @param id - The id to get the value for.\n *\n * @param initialize - Creates the initial value for the id if not already existing.\n */\n",
|
|
7624
8772
|
"excerptTokens": [
|
|
7625
8773
|
{
|
|
7626
8774
|
"kind": "Content",
|
|
7627
|
-
"text": "
|
|
8775
|
+
"text": "getById<T>(id: "
|
|
7628
8776
|
},
|
|
7629
8777
|
{
|
|
7630
8778
|
"kind": "Content",
|
|
7631
|
-
"text": "
|
|
8779
|
+
"text": "string | number"
|
|
8780
|
+
},
|
|
8781
|
+
{
|
|
8782
|
+
"kind": "Content",
|
|
8783
|
+
"text": "): "
|
|
8784
|
+
},
|
|
8785
|
+
{
|
|
8786
|
+
"kind": "Content",
|
|
8787
|
+
"text": "T | null"
|
|
7632
8788
|
},
|
|
7633
8789
|
{
|
|
7634
8790
|
"kind": "Content",
|
|
7635
8791
|
"text": ";"
|
|
7636
8792
|
}
|
|
7637
8793
|
],
|
|
7638
|
-
"isOptional": false,
|
|
7639
|
-
"
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7645
|
-
"
|
|
8794
|
+
"isOptional": false,
|
|
8795
|
+
"returnTypeTokenRange": {
|
|
8796
|
+
"startIndex": 3,
|
|
8797
|
+
"endIndex": 4
|
|
8798
|
+
},
|
|
8799
|
+
"releaseTag": "Public",
|
|
8800
|
+
"overloadIndex": 1,
|
|
8801
|
+
"parameters": [
|
|
8802
|
+
{
|
|
8803
|
+
"parameterName": "id",
|
|
8804
|
+
"parameterTypeTokenRange": {
|
|
8805
|
+
"startIndex": 1,
|
|
8806
|
+
"endIndex": 2
|
|
8807
|
+
},
|
|
8808
|
+
"isOptional": false
|
|
8809
|
+
}
|
|
8810
|
+
],
|
|
8811
|
+
"typeParameters": [
|
|
8812
|
+
{
|
|
8813
|
+
"typeParameterName": "T",
|
|
8814
|
+
"constraintTokenRange": {
|
|
8815
|
+
"startIndex": 0,
|
|
8816
|
+
"endIndex": 0
|
|
8817
|
+
},
|
|
8818
|
+
"defaultTypeTokenRange": {
|
|
8819
|
+
"startIndex": 0,
|
|
8820
|
+
"endIndex": 0
|
|
8821
|
+
}
|
|
8822
|
+
}
|
|
8823
|
+
],
|
|
8824
|
+
"name": "getById"
|
|
7646
8825
|
},
|
|
7647
8826
|
{
|
|
7648
|
-
"kind": "
|
|
7649
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
7650
|
-
"docComment": "
|
|
8827
|
+
"kind": "MethodSignature",
|
|
8828
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal#getById:member(2)",
|
|
8829
|
+
"docComment": "",
|
|
7651
8830
|
"excerptTokens": [
|
|
7652
8831
|
{
|
|
7653
8832
|
"kind": "Content",
|
|
7654
|
-
"text": "
|
|
8833
|
+
"text": "getById<T>(id: "
|
|
7655
8834
|
},
|
|
7656
8835
|
{
|
|
7657
8836
|
"kind": "Content",
|
|
7658
|
-
"text": "string"
|
|
8837
|
+
"text": "string | number"
|
|
7659
8838
|
},
|
|
7660
8839
|
{
|
|
7661
8840
|
"kind": "Content",
|
|
7662
|
-
"text": "
|
|
7663
|
-
}
|
|
7664
|
-
],
|
|
7665
|
-
"isOptional": false,
|
|
7666
|
-
"releaseTag": "Public",
|
|
7667
|
-
"name": "name",
|
|
7668
|
-
"propertyTypeTokenRange": {
|
|
7669
|
-
"startIndex": 1,
|
|
7670
|
-
"endIndex": 2
|
|
7671
|
-
},
|
|
7672
|
-
"isStatic": false
|
|
7673
|
-
},
|
|
7674
|
-
{
|
|
7675
|
-
"kind": "Property",
|
|
7676
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#propertyLookup:member",
|
|
7677
|
-
"docComment": "/**\n * A map enabling lookup of attribute by associated property name.\n */\n",
|
|
7678
|
-
"excerptTokens": [
|
|
7679
|
-
{
|
|
7680
|
-
"kind": "Content",
|
|
7681
|
-
"text": "readonly propertyLookup: "
|
|
7682
|
-
},
|
|
7683
|
-
{
|
|
7684
|
-
"kind": "Reference",
|
|
7685
|
-
"text": "Record",
|
|
7686
|
-
"canonicalReference": "!Record:type"
|
|
8841
|
+
"text": ", initialize: "
|
|
7687
8842
|
},
|
|
7688
8843
|
{
|
|
7689
8844
|
"kind": "Content",
|
|
7690
|
-
"text": "
|
|
8845
|
+
"text": "() => T"
|
|
7691
8846
|
},
|
|
7692
8847
|
{
|
|
7693
|
-
"kind": "
|
|
7694
|
-
"text": "
|
|
7695
|
-
"canonicalReference": "@microsoft/fast-element!AttributeDefinition:class"
|
|
8848
|
+
"kind": "Content",
|
|
8849
|
+
"text": "): "
|
|
7696
8850
|
},
|
|
7697
8851
|
{
|
|
7698
8852
|
"kind": "Content",
|
|
7699
|
-
"text": "
|
|
8853
|
+
"text": "T"
|
|
7700
8854
|
},
|
|
7701
8855
|
{
|
|
7702
8856
|
"kind": "Content",
|
|
@@ -7704,138 +8858,104 @@
|
|
|
7704
8858
|
}
|
|
7705
8859
|
],
|
|
7706
8860
|
"isOptional": false,
|
|
7707
|
-
"
|
|
7708
|
-
|
|
7709
|
-
|
|
7710
|
-
"startIndex": 1,
|
|
7711
|
-
"endIndex": 5
|
|
8861
|
+
"returnTypeTokenRange": {
|
|
8862
|
+
"startIndex": 5,
|
|
8863
|
+
"endIndex": 6
|
|
7712
8864
|
},
|
|
7713
|
-
"
|
|
7714
|
-
|
|
7715
|
-
|
|
7716
|
-
"kind": "Property",
|
|
7717
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#registry:member",
|
|
7718
|
-
"docComment": "/**\n * The registry to register this component in by default.\n */\n",
|
|
7719
|
-
"excerptTokens": [
|
|
8865
|
+
"releaseTag": "Public",
|
|
8866
|
+
"overloadIndex": 2,
|
|
8867
|
+
"parameters": [
|
|
7720
8868
|
{
|
|
7721
|
-
"
|
|
7722
|
-
"
|
|
8869
|
+
"parameterName": "id",
|
|
8870
|
+
"parameterTypeTokenRange": {
|
|
8871
|
+
"startIndex": 1,
|
|
8872
|
+
"endIndex": 2
|
|
8873
|
+
},
|
|
8874
|
+
"isOptional": false
|
|
7723
8875
|
},
|
|
7724
8876
|
{
|
|
7725
|
-
"
|
|
7726
|
-
"
|
|
7727
|
-
|
|
7728
|
-
|
|
8877
|
+
"parameterName": "initialize",
|
|
8878
|
+
"parameterTypeTokenRange": {
|
|
8879
|
+
"startIndex": 3,
|
|
8880
|
+
"endIndex": 4
|
|
8881
|
+
},
|
|
8882
|
+
"isOptional": false
|
|
8883
|
+
}
|
|
8884
|
+
],
|
|
8885
|
+
"typeParameters": [
|
|
7729
8886
|
{
|
|
7730
|
-
"
|
|
7731
|
-
"
|
|
8887
|
+
"typeParameterName": "T",
|
|
8888
|
+
"constraintTokenRange": {
|
|
8889
|
+
"startIndex": 0,
|
|
8890
|
+
"endIndex": 0
|
|
8891
|
+
},
|
|
8892
|
+
"defaultTypeTokenRange": {
|
|
8893
|
+
"startIndex": 0,
|
|
8894
|
+
"endIndex": 0
|
|
8895
|
+
}
|
|
7732
8896
|
}
|
|
7733
8897
|
],
|
|
7734
|
-
"
|
|
7735
|
-
"releaseTag": "Public",
|
|
7736
|
-
"name": "registry",
|
|
7737
|
-
"propertyTypeTokenRange": {
|
|
7738
|
-
"startIndex": 1,
|
|
7739
|
-
"endIndex": 2
|
|
7740
|
-
},
|
|
7741
|
-
"isStatic": false
|
|
8898
|
+
"name": "getById"
|
|
7742
8899
|
},
|
|
7743
8900
|
{
|
|
7744
|
-
"kind": "
|
|
7745
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
7746
|
-
"docComment": "/**\n *
|
|
8901
|
+
"kind": "PropertySignature",
|
|
8902
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal#versions:member",
|
|
8903
|
+
"docComment": "/**\n * The list of loaded versions.\n */\n",
|
|
7747
8904
|
"excerptTokens": [
|
|
7748
8905
|
{
|
|
7749
8906
|
"kind": "Content",
|
|
7750
|
-
"text": "readonly
|
|
8907
|
+
"text": "readonly versions: "
|
|
7751
8908
|
},
|
|
7752
8909
|
{
|
|
7753
|
-
"kind": "
|
|
7754
|
-
"text": "
|
|
7755
|
-
"canonicalReference": "@microsoft/fast-element!ShadowRootOptions:interface"
|
|
8910
|
+
"kind": "Content",
|
|
8911
|
+
"text": "string[]"
|
|
7756
8912
|
},
|
|
7757
8913
|
{
|
|
7758
8914
|
"kind": "Content",
|
|
7759
8915
|
"text": ";"
|
|
7760
8916
|
}
|
|
7761
8917
|
],
|
|
7762
|
-
"isOptional":
|
|
8918
|
+
"isOptional": false,
|
|
7763
8919
|
"releaseTag": "Public",
|
|
7764
|
-
"name": "
|
|
8920
|
+
"name": "versions",
|
|
7765
8921
|
"propertyTypeTokenRange": {
|
|
7766
8922
|
"startIndex": 1,
|
|
7767
8923
|
"endIndex": 2
|
|
7768
|
-
}
|
|
7769
|
-
"isStatic": false
|
|
8924
|
+
}
|
|
7770
8925
|
},
|
|
7771
8926
|
{
|
|
7772
|
-
"kind": "
|
|
7773
|
-
"canonicalReference": "@microsoft/fast-element!
|
|
7774
|
-
"docComment": "/**\n * The
|
|
8927
|
+
"kind": "MethodSignature",
|
|
8928
|
+
"canonicalReference": "@microsoft/fast-element!FASTGlobal#warn:member(1)",
|
|
8929
|
+
"docComment": "/**\n * Sends a warning to the developer.\n *\n * @param code - The warning code to send.\n *\n * @param values - Values relevant for the warning message.\n */\n",
|
|
7775
8930
|
"excerptTokens": [
|
|
7776
8931
|
{
|
|
7777
8932
|
"kind": "Content",
|
|
7778
|
-
"text": "
|
|
7779
|
-
},
|
|
7780
|
-
{
|
|
7781
|
-
"kind": "Reference",
|
|
7782
|
-
"text": "ElementStyles",
|
|
7783
|
-
"canonicalReference": "@microsoft/fast-element!ElementStyles:class"
|
|
8933
|
+
"text": "warn(code: "
|
|
7784
8934
|
},
|
|
7785
8935
|
{
|
|
7786
8936
|
"kind": "Content",
|
|
7787
|
-
"text": "
|
|
7788
|
-
}
|
|
7789
|
-
],
|
|
7790
|
-
"isOptional": true,
|
|
7791
|
-
"releaseTag": "Public",
|
|
7792
|
-
"name": "styles",
|
|
7793
|
-
"propertyTypeTokenRange": {
|
|
7794
|
-
"startIndex": 1,
|
|
7795
|
-
"endIndex": 2
|
|
7796
|
-
},
|
|
7797
|
-
"isStatic": false
|
|
7798
|
-
},
|
|
7799
|
-
{
|
|
7800
|
-
"kind": "Property",
|
|
7801
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#template:member",
|
|
7802
|
-
"docComment": "/**\n * The template to render for the custom element.\n */\n",
|
|
7803
|
-
"excerptTokens": [
|
|
8937
|
+
"text": "number"
|
|
8938
|
+
},
|
|
7804
8939
|
{
|
|
7805
8940
|
"kind": "Content",
|
|
7806
|
-
"text": "
|
|
8941
|
+
"text": ", values?: "
|
|
7807
8942
|
},
|
|
7808
8943
|
{
|
|
7809
8944
|
"kind": "Reference",
|
|
7810
|
-
"text": "
|
|
7811
|
-
"canonicalReference": "
|
|
8945
|
+
"text": "Record",
|
|
8946
|
+
"canonicalReference": "!Record:type"
|
|
7812
8947
|
},
|
|
7813
8948
|
{
|
|
7814
8949
|
"kind": "Content",
|
|
7815
|
-
"text": "
|
|
7816
|
-
}
|
|
7817
|
-
],
|
|
7818
|
-
"isOptional": true,
|
|
7819
|
-
"releaseTag": "Public",
|
|
7820
|
-
"name": "template",
|
|
7821
|
-
"propertyTypeTokenRange": {
|
|
7822
|
-
"startIndex": 1,
|
|
7823
|
-
"endIndex": 2
|
|
7824
|
-
},
|
|
7825
|
-
"isStatic": false
|
|
7826
|
-
},
|
|
7827
|
-
{
|
|
7828
|
-
"kind": "Property",
|
|
7829
|
-
"canonicalReference": "@microsoft/fast-element!FASTElementDefinition#type:member",
|
|
7830
|
-
"docComment": "/**\n * The type this element definition describes.\n */\n",
|
|
7831
|
-
"excerptTokens": [
|
|
8950
|
+
"text": "<string, any>"
|
|
8951
|
+
},
|
|
7832
8952
|
{
|
|
7833
8953
|
"kind": "Content",
|
|
7834
|
-
"text": "
|
|
8954
|
+
"text": "): "
|
|
7835
8955
|
},
|
|
7836
8956
|
{
|
|
7837
8957
|
"kind": "Content",
|
|
7838
|
-
"text": "
|
|
8958
|
+
"text": "void"
|
|
7839
8959
|
},
|
|
7840
8960
|
{
|
|
7841
8961
|
"kind": "Content",
|
|
@@ -7843,16 +8963,34 @@
|
|
|
7843
8963
|
}
|
|
7844
8964
|
],
|
|
7845
8965
|
"isOptional": false,
|
|
7846
|
-
"
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
"startIndex": 1,
|
|
7850
|
-
"endIndex": 2
|
|
8966
|
+
"returnTypeTokenRange": {
|
|
8967
|
+
"startIndex": 6,
|
|
8968
|
+
"endIndex": 7
|
|
7851
8969
|
},
|
|
7852
|
-
"
|
|
8970
|
+
"releaseTag": "Public",
|
|
8971
|
+
"overloadIndex": 1,
|
|
8972
|
+
"parameters": [
|
|
8973
|
+
{
|
|
8974
|
+
"parameterName": "code",
|
|
8975
|
+
"parameterTypeTokenRange": {
|
|
8976
|
+
"startIndex": 1,
|
|
8977
|
+
"endIndex": 2
|
|
8978
|
+
},
|
|
8979
|
+
"isOptional": false
|
|
8980
|
+
},
|
|
8981
|
+
{
|
|
8982
|
+
"parameterName": "values",
|
|
8983
|
+
"parameterTypeTokenRange": {
|
|
8984
|
+
"startIndex": 3,
|
|
8985
|
+
"endIndex": 5
|
|
8986
|
+
},
|
|
8987
|
+
"isOptional": true
|
|
8988
|
+
}
|
|
8989
|
+
],
|
|
8990
|
+
"name": "warn"
|
|
7853
8991
|
}
|
|
7854
8992
|
],
|
|
7855
|
-
"
|
|
8993
|
+
"extendsTokenRanges": []
|
|
7856
8994
|
},
|
|
7857
8995
|
{
|
|
7858
8996
|
"kind": "Interface",
|
|
@@ -8106,7 +9244,16 @@
|
|
|
8106
9244
|
},
|
|
8107
9245
|
{
|
|
8108
9246
|
"kind": "Content",
|
|
8109
|
-
"text": "> "
|
|
9247
|
+
"text": "> extends "
|
|
9248
|
+
},
|
|
9249
|
+
{
|
|
9250
|
+
"kind": "Reference",
|
|
9251
|
+
"text": "ExpressionController",
|
|
9252
|
+
"canonicalReference": "@microsoft/fast-element!ExpressionController:interface"
|
|
9253
|
+
},
|
|
9254
|
+
{
|
|
9255
|
+
"kind": "Content",
|
|
9256
|
+
"text": "<TSource> "
|
|
8110
9257
|
}
|
|
8111
9258
|
],
|
|
8112
9259
|
"releaseTag": "Public",
|
|
@@ -8415,35 +9562,14 @@
|
|
|
8415
9562
|
}
|
|
8416
9563
|
],
|
|
8417
9564
|
"name": "removeStyles"
|
|
8418
|
-
},
|
|
8419
|
-
{
|
|
8420
|
-
"kind": "PropertySignature",
|
|
8421
|
-
"canonicalReference": "@microsoft/fast-element!HostController#source:member",
|
|
8422
|
-
"docComment": "/**\n * The component source.\n */\n",
|
|
8423
|
-
"excerptTokens": [
|
|
8424
|
-
{
|
|
8425
|
-
"kind": "Content",
|
|
8426
|
-
"text": "readonly source: "
|
|
8427
|
-
},
|
|
8428
|
-
{
|
|
8429
|
-
"kind": "Content",
|
|
8430
|
-
"text": "TSource"
|
|
8431
|
-
},
|
|
8432
|
-
{
|
|
8433
|
-
"kind": "Content",
|
|
8434
|
-
"text": ";"
|
|
8435
|
-
}
|
|
8436
|
-
],
|
|
8437
|
-
"isOptional": false,
|
|
8438
|
-
"releaseTag": "Public",
|
|
8439
|
-
"name": "source",
|
|
8440
|
-
"propertyTypeTokenRange": {
|
|
8441
|
-
"startIndex": 1,
|
|
8442
|
-
"endIndex": 2
|
|
8443
|
-
}
|
|
8444
9565
|
}
|
|
8445
9566
|
],
|
|
8446
|
-
"extendsTokenRanges": [
|
|
9567
|
+
"extendsTokenRanges": [
|
|
9568
|
+
{
|
|
9569
|
+
"startIndex": 3,
|
|
9570
|
+
"endIndex": 4
|
|
9571
|
+
}
|
|
9572
|
+
]
|
|
8447
9573
|
},
|
|
8448
9574
|
{
|
|
8449
9575
|
"kind": "Variable",
|
|
@@ -8508,6 +9634,15 @@
|
|
|
8508
9634
|
"text": "Aspected",
|
|
8509
9635
|
"canonicalReference": "@microsoft/fast-element!Aspected:interface"
|
|
8510
9636
|
},
|
|
9637
|
+
{
|
|
9638
|
+
"kind": "Content",
|
|
9639
|
+
"text": ", "
|
|
9640
|
+
},
|
|
9641
|
+
{
|
|
9642
|
+
"kind": "Reference",
|
|
9643
|
+
"text": "BindingDirective",
|
|
9644
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective:interface"
|
|
9645
|
+
},
|
|
8511
9646
|
{
|
|
8512
9647
|
"kind": "Content",
|
|
8513
9648
|
"text": " "
|
|
@@ -8861,6 +9996,10 @@
|
|
|
8861
9996
|
{
|
|
8862
9997
|
"startIndex": 7,
|
|
8863
9998
|
"endIndex": 8
|
|
9999
|
+
},
|
|
10000
|
+
{
|
|
10001
|
+
"startIndex": 9,
|
|
10002
|
+
"endIndex": 10
|
|
8864
10003
|
}
|
|
8865
10004
|
]
|
|
8866
10005
|
},
|
|
@@ -11506,128 +12645,6 @@
|
|
|
11506
12645
|
},
|
|
11507
12646
|
"implementsTokenRanges": []
|
|
11508
12647
|
},
|
|
11509
|
-
{
|
|
11510
|
-
"kind": "Function",
|
|
11511
|
-
"canonicalReference": "@microsoft/fast-element!normalizeBinding:function(1)",
|
|
11512
|
-
"docComment": "/**\n * Normalizes the input value into a binding.\n *\n * @param value - The value to create the default binding for.\n *\n * @returns A binding configuration for the provided value.\n *\n * @public\n */\n",
|
|
11513
|
-
"excerptTokens": [
|
|
11514
|
-
{
|
|
11515
|
-
"kind": "Content",
|
|
11516
|
-
"text": "export declare function normalizeBinding<TSource = "
|
|
11517
|
-
},
|
|
11518
|
-
{
|
|
11519
|
-
"kind": "Content",
|
|
11520
|
-
"text": "any"
|
|
11521
|
-
},
|
|
11522
|
-
{
|
|
11523
|
-
"kind": "Content",
|
|
11524
|
-
"text": ", TReturn = "
|
|
11525
|
-
},
|
|
11526
|
-
{
|
|
11527
|
-
"kind": "Content",
|
|
11528
|
-
"text": "any"
|
|
11529
|
-
},
|
|
11530
|
-
{
|
|
11531
|
-
"kind": "Content",
|
|
11532
|
-
"text": ", TParent = "
|
|
11533
|
-
},
|
|
11534
|
-
{
|
|
11535
|
-
"kind": "Content",
|
|
11536
|
-
"text": "any"
|
|
11537
|
-
},
|
|
11538
|
-
{
|
|
11539
|
-
"kind": "Content",
|
|
11540
|
-
"text": ">(value: "
|
|
11541
|
-
},
|
|
11542
|
-
{
|
|
11543
|
-
"kind": "Reference",
|
|
11544
|
-
"text": "Expression",
|
|
11545
|
-
"canonicalReference": "@microsoft/fast-element!Expression:type"
|
|
11546
|
-
},
|
|
11547
|
-
{
|
|
11548
|
-
"kind": "Content",
|
|
11549
|
-
"text": "<TSource, TReturn, TParent> | "
|
|
11550
|
-
},
|
|
11551
|
-
{
|
|
11552
|
-
"kind": "Reference",
|
|
11553
|
-
"text": "Binding",
|
|
11554
|
-
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
11555
|
-
},
|
|
11556
|
-
{
|
|
11557
|
-
"kind": "Content",
|
|
11558
|
-
"text": "<TSource, TReturn, TParent> | {}"
|
|
11559
|
-
},
|
|
11560
|
-
{
|
|
11561
|
-
"kind": "Content",
|
|
11562
|
-
"text": "): "
|
|
11563
|
-
},
|
|
11564
|
-
{
|
|
11565
|
-
"kind": "Reference",
|
|
11566
|
-
"text": "Binding",
|
|
11567
|
-
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
11568
|
-
},
|
|
11569
|
-
{
|
|
11570
|
-
"kind": "Content",
|
|
11571
|
-
"text": "<TSource, TReturn, TParent>"
|
|
11572
|
-
},
|
|
11573
|
-
{
|
|
11574
|
-
"kind": "Content",
|
|
11575
|
-
"text": ";"
|
|
11576
|
-
}
|
|
11577
|
-
],
|
|
11578
|
-
"returnTypeTokenRange": {
|
|
11579
|
-
"startIndex": 12,
|
|
11580
|
-
"endIndex": 14
|
|
11581
|
-
},
|
|
11582
|
-
"releaseTag": "Public",
|
|
11583
|
-
"overloadIndex": 1,
|
|
11584
|
-
"parameters": [
|
|
11585
|
-
{
|
|
11586
|
-
"parameterName": "value",
|
|
11587
|
-
"parameterTypeTokenRange": {
|
|
11588
|
-
"startIndex": 7,
|
|
11589
|
-
"endIndex": 11
|
|
11590
|
-
},
|
|
11591
|
-
"isOptional": false
|
|
11592
|
-
}
|
|
11593
|
-
],
|
|
11594
|
-
"typeParameters": [
|
|
11595
|
-
{
|
|
11596
|
-
"typeParameterName": "TSource",
|
|
11597
|
-
"constraintTokenRange": {
|
|
11598
|
-
"startIndex": 0,
|
|
11599
|
-
"endIndex": 0
|
|
11600
|
-
},
|
|
11601
|
-
"defaultTypeTokenRange": {
|
|
11602
|
-
"startIndex": 1,
|
|
11603
|
-
"endIndex": 2
|
|
11604
|
-
}
|
|
11605
|
-
},
|
|
11606
|
-
{
|
|
11607
|
-
"typeParameterName": "TReturn",
|
|
11608
|
-
"constraintTokenRange": {
|
|
11609
|
-
"startIndex": 0,
|
|
11610
|
-
"endIndex": 0
|
|
11611
|
-
},
|
|
11612
|
-
"defaultTypeTokenRange": {
|
|
11613
|
-
"startIndex": 3,
|
|
11614
|
-
"endIndex": 4
|
|
11615
|
-
}
|
|
11616
|
-
},
|
|
11617
|
-
{
|
|
11618
|
-
"typeParameterName": "TParent",
|
|
11619
|
-
"constraintTokenRange": {
|
|
11620
|
-
"startIndex": 0,
|
|
11621
|
-
"endIndex": 0
|
|
11622
|
-
},
|
|
11623
|
-
"defaultTypeTokenRange": {
|
|
11624
|
-
"startIndex": 5,
|
|
11625
|
-
"endIndex": 6
|
|
11626
|
-
}
|
|
11627
|
-
}
|
|
11628
|
-
],
|
|
11629
|
-
"name": "normalizeBinding"
|
|
11630
|
-
},
|
|
11631
12648
|
{
|
|
11632
12649
|
"kind": "Interface",
|
|
11633
12650
|
"canonicalReference": "@microsoft/fast-element!Notifier:interface",
|
|
@@ -12215,6 +13232,114 @@
|
|
|
12215
13232
|
],
|
|
12216
13233
|
"name": "oneTime"
|
|
12217
13234
|
},
|
|
13235
|
+
{
|
|
13236
|
+
"kind": "Function",
|
|
13237
|
+
"canonicalReference": "@microsoft/fast-element!oneWay:function(1)",
|
|
13238
|
+
"docComment": "/**\n * Creates an standard binding.\n *\n * @param expression - The binding to refresh when changed.\n *\n * @param policy - The security policy to associate with th binding.\n *\n * @param isVolatile - Indicates whether the binding is volatile or not.\n *\n * @returns A binding configuration.\n *\n * @public\n */\n",
|
|
13239
|
+
"excerptTokens": [
|
|
13240
|
+
{
|
|
13241
|
+
"kind": "Content",
|
|
13242
|
+
"text": "export declare function oneWay<T = "
|
|
13243
|
+
},
|
|
13244
|
+
{
|
|
13245
|
+
"kind": "Content",
|
|
13246
|
+
"text": "any"
|
|
13247
|
+
},
|
|
13248
|
+
{
|
|
13249
|
+
"kind": "Content",
|
|
13250
|
+
"text": ">(expression: "
|
|
13251
|
+
},
|
|
13252
|
+
{
|
|
13253
|
+
"kind": "Reference",
|
|
13254
|
+
"text": "Expression",
|
|
13255
|
+
"canonicalReference": "@microsoft/fast-element!Expression:type"
|
|
13256
|
+
},
|
|
13257
|
+
{
|
|
13258
|
+
"kind": "Content",
|
|
13259
|
+
"text": "<T>"
|
|
13260
|
+
},
|
|
13261
|
+
{
|
|
13262
|
+
"kind": "Content",
|
|
13263
|
+
"text": ", policy?: "
|
|
13264
|
+
},
|
|
13265
|
+
{
|
|
13266
|
+
"kind": "Reference",
|
|
13267
|
+
"text": "DOMPolicy",
|
|
13268
|
+
"canonicalReference": "@microsoft/fast-element!DOMPolicy:interface"
|
|
13269
|
+
},
|
|
13270
|
+
{
|
|
13271
|
+
"kind": "Content",
|
|
13272
|
+
"text": ", isVolatile?: "
|
|
13273
|
+
},
|
|
13274
|
+
{
|
|
13275
|
+
"kind": "Content",
|
|
13276
|
+
"text": "boolean"
|
|
13277
|
+
},
|
|
13278
|
+
{
|
|
13279
|
+
"kind": "Content",
|
|
13280
|
+
"text": "): "
|
|
13281
|
+
},
|
|
13282
|
+
{
|
|
13283
|
+
"kind": "Reference",
|
|
13284
|
+
"text": "Binding",
|
|
13285
|
+
"canonicalReference": "@microsoft/fast-element!Binding:class"
|
|
13286
|
+
},
|
|
13287
|
+
{
|
|
13288
|
+
"kind": "Content",
|
|
13289
|
+
"text": "<T>"
|
|
13290
|
+
},
|
|
13291
|
+
{
|
|
13292
|
+
"kind": "Content",
|
|
13293
|
+
"text": ";"
|
|
13294
|
+
}
|
|
13295
|
+
],
|
|
13296
|
+
"returnTypeTokenRange": {
|
|
13297
|
+
"startIndex": 10,
|
|
13298
|
+
"endIndex": 12
|
|
13299
|
+
},
|
|
13300
|
+
"releaseTag": "Public",
|
|
13301
|
+
"overloadIndex": 1,
|
|
13302
|
+
"parameters": [
|
|
13303
|
+
{
|
|
13304
|
+
"parameterName": "expression",
|
|
13305
|
+
"parameterTypeTokenRange": {
|
|
13306
|
+
"startIndex": 3,
|
|
13307
|
+
"endIndex": 5
|
|
13308
|
+
},
|
|
13309
|
+
"isOptional": false
|
|
13310
|
+
},
|
|
13311
|
+
{
|
|
13312
|
+
"parameterName": "policy",
|
|
13313
|
+
"parameterTypeTokenRange": {
|
|
13314
|
+
"startIndex": 6,
|
|
13315
|
+
"endIndex": 7
|
|
13316
|
+
},
|
|
13317
|
+
"isOptional": true
|
|
13318
|
+
},
|
|
13319
|
+
{
|
|
13320
|
+
"parameterName": "isVolatile",
|
|
13321
|
+
"parameterTypeTokenRange": {
|
|
13322
|
+
"startIndex": 8,
|
|
13323
|
+
"endIndex": 9
|
|
13324
|
+
},
|
|
13325
|
+
"isOptional": true
|
|
13326
|
+
}
|
|
13327
|
+
],
|
|
13328
|
+
"typeParameters": [
|
|
13329
|
+
{
|
|
13330
|
+
"typeParameterName": "T",
|
|
13331
|
+
"constraintTokenRange": {
|
|
13332
|
+
"startIndex": 0,
|
|
13333
|
+
"endIndex": 0
|
|
13334
|
+
},
|
|
13335
|
+
"defaultTypeTokenRange": {
|
|
13336
|
+
"startIndex": 1,
|
|
13337
|
+
"endIndex": 2
|
|
13338
|
+
}
|
|
13339
|
+
}
|
|
13340
|
+
],
|
|
13341
|
+
"name": "oneWay"
|
|
13342
|
+
},
|
|
12218
13343
|
{
|
|
12219
13344
|
"kind": "Variable",
|
|
12220
13345
|
"canonicalReference": "@microsoft/fast-element!Parser:var",
|
|
@@ -13439,6 +14564,15 @@
|
|
|
13439
14564
|
"text": "ViewBehaviorFactory",
|
|
13440
14565
|
"canonicalReference": "@microsoft/fast-element!ViewBehaviorFactory:interface"
|
|
13441
14566
|
},
|
|
14567
|
+
{
|
|
14568
|
+
"kind": "Content",
|
|
14569
|
+
"text": ", "
|
|
14570
|
+
},
|
|
14571
|
+
{
|
|
14572
|
+
"kind": "Reference",
|
|
14573
|
+
"text": "BindingDirective",
|
|
14574
|
+
"canonicalReference": "@microsoft/fast-element!BindingDirective:interface"
|
|
14575
|
+
},
|
|
13442
14576
|
{
|
|
13443
14577
|
"kind": "Content",
|
|
13444
14578
|
"text": " "
|
|
@@ -13761,6 +14895,10 @@
|
|
|
13761
14895
|
{
|
|
13762
14896
|
"startIndex": 5,
|
|
13763
14897
|
"endIndex": 6
|
|
14898
|
+
},
|
|
14899
|
+
{
|
|
14900
|
+
"startIndex": 7,
|
|
14901
|
+
"endIndex": 8
|
|
13764
14902
|
}
|
|
13765
14903
|
]
|
|
13766
14904
|
},
|
|
@@ -17473,6 +18611,32 @@
|
|
|
17473
18611
|
"endIndex": 3
|
|
17474
18612
|
}
|
|
17475
18613
|
},
|
|
18614
|
+
{
|
|
18615
|
+
"kind": "PropertySignature",
|
|
18616
|
+
"canonicalReference": "@microsoft/fast-element!View#isBound:member",
|
|
18617
|
+
"docComment": "/**\n * Indicates whether the controller is bound.\n */\n",
|
|
18618
|
+
"excerptTokens": [
|
|
18619
|
+
{
|
|
18620
|
+
"kind": "Content",
|
|
18621
|
+
"text": "readonly isBound: "
|
|
18622
|
+
},
|
|
18623
|
+
{
|
|
18624
|
+
"kind": "Content",
|
|
18625
|
+
"text": "boolean"
|
|
18626
|
+
},
|
|
18627
|
+
{
|
|
18628
|
+
"kind": "Content",
|
|
18629
|
+
"text": ";"
|
|
18630
|
+
}
|
|
18631
|
+
],
|
|
18632
|
+
"isOptional": false,
|
|
18633
|
+
"releaseTag": "Public",
|
|
18634
|
+
"name": "isBound",
|
|
18635
|
+
"propertyTypeTokenRange": {
|
|
18636
|
+
"startIndex": 1,
|
|
18637
|
+
"endIndex": 2
|
|
18638
|
+
}
|
|
18639
|
+
},
|
|
17476
18640
|
{
|
|
17477
18641
|
"kind": "PropertySignature",
|
|
17478
18642
|
"canonicalReference": "@microsoft/fast-element!View#source:member",
|