@m3e/button 1.0.0-rc.1 → 1.0.0-rc.3
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/README.md +1 -2
- package/dist/custom-elements.json +2910 -12
- package/dist/html-custom-data.json +3 -3
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/src/ButtonElement.d.ts +1 -1
- package/dist/src/ButtonElement.d.ts.map +1 -1
- package/package.json +3 -3
- package/cem.config.mjs +0 -16
- package/demo/index.html +0 -105
- package/eslint.config.mjs +0 -13
- package/rollup.config.js +0 -32
- package/src/ButtonElement.ts +0 -629
- package/src/ButtonShape.ts +0 -2
- package/src/ButtonSize.ts +0 -2
- package/src/ButtonVariant.ts +0 -2
- package/src/index.ts +0 -4
- package/src/styles/ButtonSizeStyle.ts +0 -102
- package/src/styles/ButtonSizeToken.ts +0 -180
- package/src/styles/ButtonStyle.ts +0 -191
- package/src/styles/ButtonVariantStyle.ts +0 -170
- package/src/styles/ButtonVariantToken.ts +0 -1165
- package/src/styles/index.ts +0 -3
- package/tsconfig.json +0 -9
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"declarations": [
|
|
9
9
|
{
|
|
10
10
|
"kind": "class",
|
|
11
|
-
"description": "",
|
|
11
|
+
"description": "A button users interact with to perform an action.",
|
|
12
12
|
"name": "M3eButtonElement",
|
|
13
13
|
"cssProperties": [
|
|
14
14
|
{
|
|
@@ -1468,6 +1468,282 @@
|
|
|
1468
1468
|
"default": "false"
|
|
1469
1469
|
}
|
|
1470
1470
|
]
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"kind": "field",
|
|
1474
|
+
"name": "#keyUpHandler",
|
|
1475
|
+
"privacy": "private",
|
|
1476
|
+
"readonly": true,
|
|
1477
|
+
"inheritedFrom": {
|
|
1478
|
+
"name": "KeyboardClick",
|
|
1479
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
"kind": "method",
|
|
1484
|
+
"name": "#handleKeyUp",
|
|
1485
|
+
"privacy": "private",
|
|
1486
|
+
"return": {
|
|
1487
|
+
"type": {
|
|
1488
|
+
"text": "void"
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
"parameters": [
|
|
1492
|
+
{
|
|
1493
|
+
"name": "e",
|
|
1494
|
+
"type": {
|
|
1495
|
+
"text": "KeyboardEvent"
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
],
|
|
1499
|
+
"inheritedFrom": {
|
|
1500
|
+
"name": "KeyboardClick",
|
|
1501
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
{
|
|
1505
|
+
"kind": "field",
|
|
1506
|
+
"name": "[_clickHandler]",
|
|
1507
|
+
"privacy": "private",
|
|
1508
|
+
"inheritedFrom": {
|
|
1509
|
+
"name": "FormSubmitter",
|
|
1510
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
"kind": "field",
|
|
1515
|
+
"name": "href",
|
|
1516
|
+
"type": {
|
|
1517
|
+
"text": "string"
|
|
1518
|
+
},
|
|
1519
|
+
"default": "\"\"",
|
|
1520
|
+
"description": "The URL to which the link button points.",
|
|
1521
|
+
"attribute": "href",
|
|
1522
|
+
"inheritedFrom": {
|
|
1523
|
+
"name": "LinkButton",
|
|
1524
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1525
|
+
}
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"kind": "field",
|
|
1529
|
+
"name": "target",
|
|
1530
|
+
"type": {
|
|
1531
|
+
"text": "LinkTarget"
|
|
1532
|
+
},
|
|
1533
|
+
"default": "\"\"",
|
|
1534
|
+
"description": "The target of the link button.",
|
|
1535
|
+
"attribute": "target",
|
|
1536
|
+
"inheritedFrom": {
|
|
1537
|
+
"name": "LinkButton",
|
|
1538
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"kind": "field",
|
|
1543
|
+
"name": "rel",
|
|
1544
|
+
"type": {
|
|
1545
|
+
"text": "string"
|
|
1546
|
+
},
|
|
1547
|
+
"default": "\"\"",
|
|
1548
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
1549
|
+
"attribute": "rel",
|
|
1550
|
+
"inheritedFrom": {
|
|
1551
|
+
"name": "LinkButton",
|
|
1552
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1553
|
+
}
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"kind": "field",
|
|
1557
|
+
"name": "download",
|
|
1558
|
+
"type": {
|
|
1559
|
+
"text": "string | null"
|
|
1560
|
+
},
|
|
1561
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
1562
|
+
"default": "null",
|
|
1563
|
+
"attribute": "download",
|
|
1564
|
+
"inheritedFrom": {
|
|
1565
|
+
"name": "LinkButton",
|
|
1566
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"kind": "method",
|
|
1571
|
+
"name": "#handleLinkPointerDown",
|
|
1572
|
+
"privacy": "private",
|
|
1573
|
+
"return": {
|
|
1574
|
+
"type": {
|
|
1575
|
+
"text": "void"
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
"parameters": [
|
|
1579
|
+
{
|
|
1580
|
+
"name": "e",
|
|
1581
|
+
"type": {
|
|
1582
|
+
"text": "PointerEvent"
|
|
1583
|
+
}
|
|
1584
|
+
}
|
|
1585
|
+
],
|
|
1586
|
+
"inheritedFrom": {
|
|
1587
|
+
"name": "LinkButton",
|
|
1588
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"kind": "method",
|
|
1593
|
+
"name": "#handleLinkFocus",
|
|
1594
|
+
"privacy": "private",
|
|
1595
|
+
"return": {
|
|
1596
|
+
"type": {
|
|
1597
|
+
"text": "void"
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1600
|
+
"parameters": [
|
|
1601
|
+
{
|
|
1602
|
+
"name": "e",
|
|
1603
|
+
"type": {
|
|
1604
|
+
"text": "Event"
|
|
1605
|
+
}
|
|
1606
|
+
}
|
|
1607
|
+
],
|
|
1608
|
+
"inheritedFrom": {
|
|
1609
|
+
"name": "LinkButton",
|
|
1610
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1611
|
+
}
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
"kind": "method",
|
|
1615
|
+
"name": "#handleLinkBlur",
|
|
1616
|
+
"privacy": "private",
|
|
1617
|
+
"return": {
|
|
1618
|
+
"type": {
|
|
1619
|
+
"text": "void"
|
|
1620
|
+
}
|
|
1621
|
+
},
|
|
1622
|
+
"parameters": [
|
|
1623
|
+
{
|
|
1624
|
+
"name": "e",
|
|
1625
|
+
"type": {
|
|
1626
|
+
"text": "Event"
|
|
1627
|
+
}
|
|
1628
|
+
}
|
|
1629
|
+
],
|
|
1630
|
+
"inheritedFrom": {
|
|
1631
|
+
"name": "LinkButton",
|
|
1632
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1633
|
+
}
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"kind": "field",
|
|
1637
|
+
"name": "formAssociated",
|
|
1638
|
+
"static": true,
|
|
1639
|
+
"readonly": true,
|
|
1640
|
+
"default": "true",
|
|
1641
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration.",
|
|
1642
|
+
"type": {
|
|
1643
|
+
"text": "boolean"
|
|
1644
|
+
},
|
|
1645
|
+
"inheritedFrom": {
|
|
1646
|
+
"name": "AttachInternals",
|
|
1647
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
{
|
|
1651
|
+
"kind": "field",
|
|
1652
|
+
"name": "name",
|
|
1653
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
1654
|
+
"attribute": "name",
|
|
1655
|
+
"inheritedFrom": {
|
|
1656
|
+
"name": "FormSubmitter",
|
|
1657
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1658
|
+
}
|
|
1659
|
+
},
|
|
1660
|
+
{
|
|
1661
|
+
"kind": "field",
|
|
1662
|
+
"name": "value",
|
|
1663
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
1664
|
+
"attribute": "value",
|
|
1665
|
+
"inheritedFrom": {
|
|
1666
|
+
"name": "FormSubmitter",
|
|
1667
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"kind": "field",
|
|
1672
|
+
"name": "type",
|
|
1673
|
+
"type": {
|
|
1674
|
+
"text": "FormSubmitterType"
|
|
1675
|
+
},
|
|
1676
|
+
"default": "\"button\"",
|
|
1677
|
+
"description": "The type of the element.",
|
|
1678
|
+
"attribute": "type",
|
|
1679
|
+
"inheritedFrom": {
|
|
1680
|
+
"name": "FormSubmitter",
|
|
1681
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"kind": "field",
|
|
1686
|
+
"name": "[_tabindex]",
|
|
1687
|
+
"type": {
|
|
1688
|
+
"text": "number"
|
|
1689
|
+
},
|
|
1690
|
+
"privacy": "private",
|
|
1691
|
+
"default": "0",
|
|
1692
|
+
"inheritedFrom": {
|
|
1693
|
+
"name": "Focusable",
|
|
1694
|
+
"module": "../core/src/shared/mixins/Focusable.ts"
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1697
|
+
{
|
|
1698
|
+
"kind": "field",
|
|
1699
|
+
"name": "[_suppressedEventHandler]",
|
|
1700
|
+
"privacy": "private",
|
|
1701
|
+
"readonly": true,
|
|
1702
|
+
"inheritedFrom": {
|
|
1703
|
+
"name": "DisabledInteractive",
|
|
1704
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1705
|
+
}
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"kind": "field",
|
|
1709
|
+
"name": "disabledInteractive",
|
|
1710
|
+
"type": {
|
|
1711
|
+
"text": "boolean"
|
|
1712
|
+
},
|
|
1713
|
+
"default": "false",
|
|
1714
|
+
"description": "Whether the element is disabled and interactive.",
|
|
1715
|
+
"attribute": "disabled-interactive",
|
|
1716
|
+
"reflects": true,
|
|
1717
|
+
"inheritedFrom": {
|
|
1718
|
+
"name": "DisabledInteractive",
|
|
1719
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"kind": "field",
|
|
1724
|
+
"name": "disabled",
|
|
1725
|
+
"type": {
|
|
1726
|
+
"text": "boolean"
|
|
1727
|
+
},
|
|
1728
|
+
"default": "false",
|
|
1729
|
+
"description": "Whether the element is disabled.",
|
|
1730
|
+
"attribute": "disabled",
|
|
1731
|
+
"inheritedFrom": {
|
|
1732
|
+
"name": "Disabled",
|
|
1733
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"kind": "field",
|
|
1738
|
+
"name": "[_internals]",
|
|
1739
|
+
"type": {
|
|
1740
|
+
"text": "ElementInternals | undefined"
|
|
1741
|
+
},
|
|
1742
|
+
"privacy": "private",
|
|
1743
|
+
"inheritedFrom": {
|
|
1744
|
+
"name": "AttachInternals",
|
|
1745
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
1746
|
+
}
|
|
1471
1747
|
}
|
|
1472
1748
|
],
|
|
1473
1749
|
"events": [
|
|
@@ -1484,32 +1760,93 @@
|
|
|
1484
1760
|
"text": "Event"
|
|
1485
1761
|
},
|
|
1486
1762
|
"description": "Dispatched when a toggle button's selected state changes."
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"name": "click",
|
|
1766
|
+
"type": {
|
|
1767
|
+
"text": "MouseEvent"
|
|
1768
|
+
},
|
|
1769
|
+
"description": "Emitted when the element is clicked.",
|
|
1770
|
+
"inheritedFrom": {
|
|
1771
|
+
"name": "LinkButton",
|
|
1772
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1773
|
+
}
|
|
1487
1774
|
}
|
|
1488
1775
|
],
|
|
1489
1776
|
"attributes": [
|
|
1490
1777
|
{
|
|
1778
|
+
"name": "disabled",
|
|
1779
|
+
"type": {
|
|
1780
|
+
"text": "boolean"
|
|
1781
|
+
},
|
|
1782
|
+
"default": "false",
|
|
1491
1783
|
"description": "Whether the element is disabled.",
|
|
1492
|
-
"
|
|
1784
|
+
"fieldName": "disabled",
|
|
1785
|
+
"inheritedFrom": {
|
|
1786
|
+
"name": "Disabled",
|
|
1787
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
1788
|
+
}
|
|
1493
1789
|
},
|
|
1494
1790
|
{
|
|
1791
|
+
"name": "disabled-interactive",
|
|
1792
|
+
"type": {
|
|
1793
|
+
"text": "boolean"
|
|
1794
|
+
},
|
|
1795
|
+
"default": "false",
|
|
1495
1796
|
"description": "Whether the element is disabled and interactive.",
|
|
1496
|
-
"
|
|
1797
|
+
"fieldName": "disabledInteractive",
|
|
1798
|
+
"inheritedFrom": {
|
|
1799
|
+
"name": "DisabledInteractive",
|
|
1800
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
1801
|
+
}
|
|
1497
1802
|
},
|
|
1498
1803
|
{
|
|
1804
|
+
"name": "download",
|
|
1805
|
+
"type": {
|
|
1806
|
+
"text": "string | null"
|
|
1807
|
+
},
|
|
1499
1808
|
"description": "A value indicating whether the `target` of the link button will be downloaded, optionally specifying the new name of the file.",
|
|
1500
|
-
"
|
|
1809
|
+
"default": "null",
|
|
1810
|
+
"fieldName": "download",
|
|
1811
|
+
"inheritedFrom": {
|
|
1812
|
+
"name": "LinkButton",
|
|
1813
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1814
|
+
}
|
|
1501
1815
|
},
|
|
1502
1816
|
{
|
|
1817
|
+
"name": "href",
|
|
1818
|
+
"type": {
|
|
1819
|
+
"text": "string"
|
|
1820
|
+
},
|
|
1821
|
+
"default": "\"\"",
|
|
1503
1822
|
"description": "The URL to which the link button points.",
|
|
1504
|
-
"
|
|
1823
|
+
"fieldName": "href",
|
|
1824
|
+
"inheritedFrom": {
|
|
1825
|
+
"name": "LinkButton",
|
|
1826
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1827
|
+
}
|
|
1505
1828
|
},
|
|
1506
1829
|
{
|
|
1830
|
+
"name": "name",
|
|
1507
1831
|
"description": "The name of the element, submitted as a pair with the element's `value` as part of form data, when the element is used to submit a form.",
|
|
1508
|
-
"
|
|
1832
|
+
"fieldName": "name",
|
|
1833
|
+
"inheritedFrom": {
|
|
1834
|
+
"name": "FormSubmitter",
|
|
1835
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1836
|
+
}
|
|
1509
1837
|
},
|
|
1510
1838
|
{
|
|
1839
|
+
"name": "rel",
|
|
1840
|
+
"type": {
|
|
1841
|
+
"text": "string"
|
|
1842
|
+
},
|
|
1843
|
+
"default": "\"\"",
|
|
1511
1844
|
"description": "The relationship between the `target` of the link button and the document.",
|
|
1512
|
-
"
|
|
1845
|
+
"fieldName": "rel",
|
|
1846
|
+
"inheritedFrom": {
|
|
1847
|
+
"name": "LinkButton",
|
|
1848
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1849
|
+
}
|
|
1513
1850
|
},
|
|
1514
1851
|
{
|
|
1515
1852
|
"description": "Whether the toggle button is selected.",
|
|
@@ -1539,8 +1876,17 @@
|
|
|
1539
1876
|
"fieldName": "size"
|
|
1540
1877
|
},
|
|
1541
1878
|
{
|
|
1879
|
+
"name": "target",
|
|
1880
|
+
"type": {
|
|
1881
|
+
"text": "LinkTarget"
|
|
1882
|
+
},
|
|
1883
|
+
"default": "\"\"",
|
|
1542
1884
|
"description": "The target of the link button.",
|
|
1543
|
-
"
|
|
1885
|
+
"fieldName": "target",
|
|
1886
|
+
"inheritedFrom": {
|
|
1887
|
+
"name": "LinkButton",
|
|
1888
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
1889
|
+
}
|
|
1544
1890
|
},
|
|
1545
1891
|
{
|
|
1546
1892
|
"description": "Whether the button will toggle between selected and unselected states.",
|
|
@@ -1552,12 +1898,26 @@
|
|
|
1552
1898
|
"fieldName": "toggle"
|
|
1553
1899
|
},
|
|
1554
1900
|
{
|
|
1901
|
+
"name": "type",
|
|
1902
|
+
"type": {
|
|
1903
|
+
"text": "FormSubmitterType"
|
|
1904
|
+
},
|
|
1905
|
+
"default": "\"button\"",
|
|
1555
1906
|
"description": "The type of the element.",
|
|
1556
|
-
"
|
|
1907
|
+
"fieldName": "type",
|
|
1908
|
+
"inheritedFrom": {
|
|
1909
|
+
"name": "FormSubmitter",
|
|
1910
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1911
|
+
}
|
|
1557
1912
|
},
|
|
1558
1913
|
{
|
|
1914
|
+
"name": "value",
|
|
1559
1915
|
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
1560
|
-
"
|
|
1916
|
+
"fieldName": "value",
|
|
1917
|
+
"inheritedFrom": {
|
|
1918
|
+
"name": "FormSubmitter",
|
|
1919
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
1920
|
+
}
|
|
1561
1921
|
},
|
|
1562
1922
|
{
|
|
1563
1923
|
"description": "The appearance variant of the button.",
|
|
@@ -1608,8 +1968,7 @@
|
|
|
1608
1968
|
"package": "lit"
|
|
1609
1969
|
},
|
|
1610
1970
|
"tagName": "m3e-button",
|
|
1611
|
-
"customElement": true
|
|
1612
|
-
"summary": "A button users interact with to perform an action."
|
|
1971
|
+
"customElement": true
|
|
1613
1972
|
}
|
|
1614
1973
|
],
|
|
1615
1974
|
"exports": [
|
|
@@ -1748,6 +2107,2545 @@
|
|
|
1748
2107
|
}
|
|
1749
2108
|
}
|
|
1750
2109
|
]
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"kind": "javascript-module",
|
|
2113
|
+
"path": "../core/src/shared/mixins/AttachInternals.ts",
|
|
2114
|
+
"declarations": [
|
|
2115
|
+
{
|
|
2116
|
+
"kind": "variable",
|
|
2117
|
+
"name": "internals",
|
|
2118
|
+
"description": "A symbol through which to access the `ElementInternals` attached to an element."
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"kind": "function",
|
|
2122
|
+
"name": "isAttachInternalsMixin",
|
|
2123
|
+
"return": {
|
|
2124
|
+
"type": {
|
|
2125
|
+
"text": ""
|
|
2126
|
+
}
|
|
2127
|
+
},
|
|
2128
|
+
"parameters": [
|
|
2129
|
+
{
|
|
2130
|
+
"name": "value",
|
|
2131
|
+
"type": {
|
|
2132
|
+
"text": "unknown"
|
|
2133
|
+
},
|
|
2134
|
+
"description": "The value to test."
|
|
2135
|
+
}
|
|
2136
|
+
],
|
|
2137
|
+
"description": "Determines whether a value is an `AttachInternalsMixin`."
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"kind": "mixin",
|
|
2141
|
+
"description": "Mixin to augment an element with behavior that attaches to `ElementInternals`.",
|
|
2142
|
+
"name": "AttachInternals",
|
|
2143
|
+
"members": [
|
|
2144
|
+
{
|
|
2145
|
+
"kind": "field",
|
|
2146
|
+
"name": "formAssociated",
|
|
2147
|
+
"static": true,
|
|
2148
|
+
"readonly": true,
|
|
2149
|
+
"default": "formAssociated",
|
|
2150
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"kind": "field",
|
|
2154
|
+
"name": "[_internals]",
|
|
2155
|
+
"type": {
|
|
2156
|
+
"text": "ElementInternals | undefined"
|
|
2157
|
+
},
|
|
2158
|
+
"privacy": "private"
|
|
2159
|
+
}
|
|
2160
|
+
],
|
|
2161
|
+
"parameters": [
|
|
2162
|
+
{
|
|
2163
|
+
"name": "base",
|
|
2164
|
+
"type": {
|
|
2165
|
+
"text": "T"
|
|
2166
|
+
},
|
|
2167
|
+
"description": "The base class."
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"name": "formAssociated",
|
|
2171
|
+
"optional": true,
|
|
2172
|
+
"type": {
|
|
2173
|
+
"text": "boolean | undefined"
|
|
2174
|
+
},
|
|
2175
|
+
"description": "Whether the element is \"Form Associated\"."
|
|
2176
|
+
}
|
|
2177
|
+
]
|
|
2178
|
+
}
|
|
2179
|
+
],
|
|
2180
|
+
"exports": [
|
|
2181
|
+
{
|
|
2182
|
+
"kind": "js",
|
|
2183
|
+
"name": "internals",
|
|
2184
|
+
"declaration": {
|
|
2185
|
+
"name": "internals",
|
|
2186
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"kind": "js",
|
|
2191
|
+
"name": "isAttachInternalsMixin",
|
|
2192
|
+
"declaration": {
|
|
2193
|
+
"name": "isAttachInternalsMixin",
|
|
2194
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2197
|
+
{
|
|
2198
|
+
"kind": "js",
|
|
2199
|
+
"name": "AttachInternals",
|
|
2200
|
+
"declaration": {
|
|
2201
|
+
"name": "AttachInternals",
|
|
2202
|
+
"module": "../core/src/shared/mixins/AttachInternals.ts"
|
|
2203
|
+
}
|
|
2204
|
+
}
|
|
2205
|
+
]
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"kind": "javascript-module",
|
|
2209
|
+
"path": "../core/src/shared/mixins/Checked.ts",
|
|
2210
|
+
"declarations": [
|
|
2211
|
+
{
|
|
2212
|
+
"kind": "function",
|
|
2213
|
+
"name": "isCheckedMixin",
|
|
2214
|
+
"return": {
|
|
2215
|
+
"type": {
|
|
2216
|
+
"text": ""
|
|
2217
|
+
}
|
|
2218
|
+
},
|
|
2219
|
+
"parameters": [
|
|
2220
|
+
{
|
|
2221
|
+
"name": "value",
|
|
2222
|
+
"type": {
|
|
2223
|
+
"text": "unknown"
|
|
2224
|
+
},
|
|
2225
|
+
"description": "The value to test."
|
|
2226
|
+
}
|
|
2227
|
+
],
|
|
2228
|
+
"description": "Determines whether a value is a `CheckedMixin`."
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"kind": "mixin",
|
|
2232
|
+
"description": "Mixin to augment an element with behavior that supports a checked state.",
|
|
2233
|
+
"name": "Checked",
|
|
2234
|
+
"members": [
|
|
2235
|
+
{
|
|
2236
|
+
"kind": "field",
|
|
2237
|
+
"name": "checked",
|
|
2238
|
+
"type": {
|
|
2239
|
+
"text": "boolean"
|
|
2240
|
+
},
|
|
2241
|
+
"default": "false",
|
|
2242
|
+
"description": "Whether the element is checked.",
|
|
2243
|
+
"attribute": "checked",
|
|
2244
|
+
"reflects": true
|
|
2245
|
+
}
|
|
2246
|
+
],
|
|
2247
|
+
"attributes": [
|
|
2248
|
+
{
|
|
2249
|
+
"name": "checked",
|
|
2250
|
+
"type": {
|
|
2251
|
+
"text": "boolean"
|
|
2252
|
+
},
|
|
2253
|
+
"default": "false",
|
|
2254
|
+
"description": "Whether the element is checked.",
|
|
2255
|
+
"fieldName": "checked"
|
|
2256
|
+
}
|
|
2257
|
+
],
|
|
2258
|
+
"parameters": [
|
|
2259
|
+
{
|
|
2260
|
+
"name": "base",
|
|
2261
|
+
"type": {
|
|
2262
|
+
"text": "T"
|
|
2263
|
+
},
|
|
2264
|
+
"description": "The base class."
|
|
2265
|
+
}
|
|
2266
|
+
]
|
|
2267
|
+
}
|
|
2268
|
+
],
|
|
2269
|
+
"exports": [
|
|
2270
|
+
{
|
|
2271
|
+
"kind": "js",
|
|
2272
|
+
"name": "isCheckedMixin",
|
|
2273
|
+
"declaration": {
|
|
2274
|
+
"name": "isCheckedMixin",
|
|
2275
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
2276
|
+
}
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
"kind": "js",
|
|
2280
|
+
"name": "Checked",
|
|
2281
|
+
"declaration": {
|
|
2282
|
+
"name": "Checked",
|
|
2283
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
]
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"kind": "javascript-module",
|
|
2290
|
+
"path": "../core/src/shared/mixins/CheckedIndeterminate.ts",
|
|
2291
|
+
"declarations": [
|
|
2292
|
+
{
|
|
2293
|
+
"kind": "function",
|
|
2294
|
+
"name": "isCheckedIndeterminateMixin",
|
|
2295
|
+
"return": {
|
|
2296
|
+
"type": {
|
|
2297
|
+
"text": ""
|
|
2298
|
+
}
|
|
2299
|
+
},
|
|
2300
|
+
"parameters": [
|
|
2301
|
+
{
|
|
2302
|
+
"name": "value",
|
|
2303
|
+
"type": {
|
|
2304
|
+
"text": "unknown"
|
|
2305
|
+
},
|
|
2306
|
+
"description": "The value to test."
|
|
2307
|
+
}
|
|
2308
|
+
],
|
|
2309
|
+
"description": "Determines whether a value is a `CheckedIndeterminateMixin`."
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"kind": "mixin",
|
|
2313
|
+
"description": "Mixin to augment an element with behavior that supports a mixed checked state.",
|
|
2314
|
+
"name": "CheckedIndeterminate",
|
|
2315
|
+
"members": [
|
|
2316
|
+
{
|
|
2317
|
+
"kind": "field",
|
|
2318
|
+
"name": "indeterminate",
|
|
2319
|
+
"type": {
|
|
2320
|
+
"text": "boolean"
|
|
2321
|
+
},
|
|
2322
|
+
"default": "false",
|
|
2323
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
2324
|
+
"attribute": "indeterminate",
|
|
2325
|
+
"reflects": true
|
|
2326
|
+
},
|
|
2327
|
+
{
|
|
2328
|
+
"kind": "field",
|
|
2329
|
+
"name": "checked",
|
|
2330
|
+
"type": {
|
|
2331
|
+
"text": "boolean"
|
|
2332
|
+
},
|
|
2333
|
+
"default": "false",
|
|
2334
|
+
"description": "Whether the element is checked.",
|
|
2335
|
+
"attribute": "checked",
|
|
2336
|
+
"reflects": true,
|
|
2337
|
+
"inheritedFrom": {
|
|
2338
|
+
"name": "Checked",
|
|
2339
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
2340
|
+
}
|
|
2341
|
+
}
|
|
2342
|
+
],
|
|
2343
|
+
"attributes": [
|
|
2344
|
+
{
|
|
2345
|
+
"name": "indeterminate",
|
|
2346
|
+
"type": {
|
|
2347
|
+
"text": "boolean"
|
|
2348
|
+
},
|
|
2349
|
+
"default": "false",
|
|
2350
|
+
"description": "Whether the element's checked state is indeterminate.",
|
|
2351
|
+
"fieldName": "indeterminate"
|
|
2352
|
+
},
|
|
2353
|
+
{
|
|
2354
|
+
"name": "checked",
|
|
2355
|
+
"type": {
|
|
2356
|
+
"text": "boolean"
|
|
2357
|
+
},
|
|
2358
|
+
"default": "false",
|
|
2359
|
+
"description": "Whether the element is checked.",
|
|
2360
|
+
"fieldName": "checked",
|
|
2361
|
+
"inheritedFrom": {
|
|
2362
|
+
"name": "Checked",
|
|
2363
|
+
"module": "../core/src/shared/mixins/Checked.ts"
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
],
|
|
2367
|
+
"mixins": [
|
|
2368
|
+
{
|
|
2369
|
+
"name": "Checked",
|
|
2370
|
+
"module": "/core/src/shared/mixins/Checked"
|
|
2371
|
+
}
|
|
2372
|
+
],
|
|
2373
|
+
"parameters": [
|
|
2374
|
+
{
|
|
2375
|
+
"name": "base",
|
|
2376
|
+
"type": {
|
|
2377
|
+
"text": "T"
|
|
2378
|
+
},
|
|
2379
|
+
"description": "The base class."
|
|
2380
|
+
}
|
|
2381
|
+
]
|
|
2382
|
+
}
|
|
2383
|
+
],
|
|
2384
|
+
"exports": [
|
|
2385
|
+
{
|
|
2386
|
+
"kind": "js",
|
|
2387
|
+
"name": "isCheckedIndeterminateMixin",
|
|
2388
|
+
"declaration": {
|
|
2389
|
+
"name": "isCheckedIndeterminateMixin",
|
|
2390
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"kind": "js",
|
|
2395
|
+
"name": "CheckedIndeterminate",
|
|
2396
|
+
"declaration": {
|
|
2397
|
+
"name": "CheckedIndeterminate",
|
|
2398
|
+
"module": "../core/src/shared/mixins/CheckedIndeterminate.ts"
|
|
2399
|
+
}
|
|
2400
|
+
}
|
|
2401
|
+
]
|
|
2402
|
+
},
|
|
2403
|
+
{
|
|
2404
|
+
"kind": "javascript-module",
|
|
2405
|
+
"path": "../core/src/shared/mixins/CheckedOrSelected.ts",
|
|
2406
|
+
"declarations": [
|
|
2407
|
+
{
|
|
2408
|
+
"kind": "function",
|
|
2409
|
+
"name": "isCheckedOrSelectedMixin",
|
|
2410
|
+
"return": {
|
|
2411
|
+
"type": {
|
|
2412
|
+
"text": ""
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
"parameters": [
|
|
2416
|
+
{
|
|
2417
|
+
"name": "value",
|
|
2418
|
+
"type": {
|
|
2419
|
+
"text": "unknown"
|
|
2420
|
+
},
|
|
2421
|
+
"description": "The value to test."
|
|
2422
|
+
}
|
|
2423
|
+
],
|
|
2424
|
+
"description": "Determines whether a value is a `CheckedOrSelectedMixin`."
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
"kind": "function",
|
|
2428
|
+
"name": "isCheckedOrSelected",
|
|
2429
|
+
"return": {
|
|
2430
|
+
"type": {
|
|
2431
|
+
"text": "boolean"
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2434
|
+
"parameters": [
|
|
2435
|
+
{
|
|
2436
|
+
"name": "element",
|
|
2437
|
+
"type": {
|
|
2438
|
+
"text": "CheckedOrSelectedMixin"
|
|
2439
|
+
},
|
|
2440
|
+
"description": "The element to test."
|
|
2441
|
+
}
|
|
2442
|
+
],
|
|
2443
|
+
"description": "Determines whether the state of an element is checked or selected."
|
|
2444
|
+
},
|
|
2445
|
+
{
|
|
2446
|
+
"kind": "function",
|
|
2447
|
+
"name": "checkOrSelect",
|
|
2448
|
+
"return": {
|
|
2449
|
+
"type": {
|
|
2450
|
+
"text": "void"
|
|
2451
|
+
}
|
|
2452
|
+
},
|
|
2453
|
+
"parameters": [
|
|
2454
|
+
{
|
|
2455
|
+
"name": "element",
|
|
2456
|
+
"type": {
|
|
2457
|
+
"text": "CheckedOrSelectedMixin"
|
|
2458
|
+
},
|
|
2459
|
+
"description": "The element for which to set the checked or selected state."
|
|
2460
|
+
},
|
|
2461
|
+
{
|
|
2462
|
+
"name": "checkedOrSelected",
|
|
2463
|
+
"type": {
|
|
2464
|
+
"text": "boolean"
|
|
2465
|
+
},
|
|
2466
|
+
"description": "The checked or selected state."
|
|
2467
|
+
}
|
|
2468
|
+
],
|
|
2469
|
+
"description": "Sets the checked or selected state of an element."
|
|
2470
|
+
}
|
|
2471
|
+
],
|
|
2472
|
+
"exports": [
|
|
2473
|
+
{
|
|
2474
|
+
"kind": "js",
|
|
2475
|
+
"name": "isCheckedOrSelectedMixin",
|
|
2476
|
+
"declaration": {
|
|
2477
|
+
"name": "isCheckedOrSelectedMixin",
|
|
2478
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
2479
|
+
}
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"kind": "js",
|
|
2483
|
+
"name": "isCheckedOrSelected",
|
|
2484
|
+
"declaration": {
|
|
2485
|
+
"name": "isCheckedOrSelected",
|
|
2486
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
2487
|
+
}
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"kind": "js",
|
|
2491
|
+
"name": "checkOrSelect",
|
|
2492
|
+
"declaration": {
|
|
2493
|
+
"name": "checkOrSelect",
|
|
2494
|
+
"module": "../core/src/shared/mixins/CheckedOrSelected.ts"
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
]
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"kind": "javascript-module",
|
|
2501
|
+
"path": "../core/src/shared/mixins/ConstraintValidation.ts",
|
|
2502
|
+
"declarations": [
|
|
2503
|
+
{
|
|
2504
|
+
"kind": "variable",
|
|
2505
|
+
"name": "validate",
|
|
2506
|
+
"description": "A symbol through which a \"Form Associated\" custom element validates its current state."
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"kind": "function",
|
|
2510
|
+
"name": "isConstraintValidationMixin",
|
|
2511
|
+
"return": {
|
|
2512
|
+
"type": {
|
|
2513
|
+
"text": ""
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
2516
|
+
"parameters": [
|
|
2517
|
+
{
|
|
2518
|
+
"name": "value",
|
|
2519
|
+
"type": {
|
|
2520
|
+
"text": "unknown"
|
|
2521
|
+
},
|
|
2522
|
+
"description": "The value to test."
|
|
2523
|
+
}
|
|
2524
|
+
],
|
|
2525
|
+
"description": "Determines whether a value is a `ConstraintValidationMixin`."
|
|
2526
|
+
},
|
|
2527
|
+
{
|
|
2528
|
+
"kind": "mixin",
|
|
2529
|
+
"description": "Mixin to augment an element with \"Form Associated\" behavior that supports constraint validation.",
|
|
2530
|
+
"name": "ConstraintValidation",
|
|
2531
|
+
"members": [
|
|
2532
|
+
{
|
|
2533
|
+
"kind": "field",
|
|
2534
|
+
"name": "[_validityMessage]",
|
|
2535
|
+
"type": {
|
|
2536
|
+
"text": "string | undefined"
|
|
2537
|
+
},
|
|
2538
|
+
"privacy": "private"
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"kind": "field",
|
|
2542
|
+
"name": "willValidate",
|
|
2543
|
+
"type": {
|
|
2544
|
+
"text": "boolean"
|
|
2545
|
+
},
|
|
2546
|
+
"description": "Whether the element is a submittable element that is a candidate for constraint validation.",
|
|
2547
|
+
"readonly": true
|
|
2548
|
+
},
|
|
2549
|
+
{
|
|
2550
|
+
"kind": "field",
|
|
2551
|
+
"name": "validity",
|
|
2552
|
+
"type": {
|
|
2553
|
+
"text": "ValidityState"
|
|
2554
|
+
},
|
|
2555
|
+
"description": "The validity state of the element.",
|
|
2556
|
+
"readonly": true
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
"kind": "field",
|
|
2560
|
+
"name": "validationMessage",
|
|
2561
|
+
"type": {
|
|
2562
|
+
"text": "string"
|
|
2563
|
+
},
|
|
2564
|
+
"description": "The error message that would be displayed if the user submits the form, or an empty string if no error message.",
|
|
2565
|
+
"readonly": true
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
"kind": "method",
|
|
2569
|
+
"name": "reportValidity",
|
|
2570
|
+
"return": {
|
|
2571
|
+
"type": {
|
|
2572
|
+
"text": "boolean"
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
"description": "Returns `true` if the element has no validity problems; otherwise, returns `false`, fires\r\nan invalid event, and (if the event isn't canceled) reports the problem to the user."
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
"kind": "method",
|
|
2579
|
+
"name": "checkValidity",
|
|
2580
|
+
"return": {
|
|
2581
|
+
"type": {
|
|
2582
|
+
"text": "boolean"
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
"description": "Returns `true` if the element has no validity problems; otherwise,\r\nreturns `false`, fires an invalid event."
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
"kind": "method",
|
|
2589
|
+
"name": "setCustomValidity",
|
|
2590
|
+
"return": {
|
|
2591
|
+
"type": {
|
|
2592
|
+
"text": "void"
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"parameters": [
|
|
2596
|
+
{
|
|
2597
|
+
"name": "error",
|
|
2598
|
+
"type": {
|
|
2599
|
+
"text": "string"
|
|
2600
|
+
},
|
|
2601
|
+
"description": "The message to use for validity errors."
|
|
2602
|
+
}
|
|
2603
|
+
],
|
|
2604
|
+
"description": "Sets a custom validity message for the element."
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
"kind": "method",
|
|
2608
|
+
"name": "[_updateValidity]",
|
|
2609
|
+
"privacy": "private",
|
|
2610
|
+
"return": {
|
|
2611
|
+
"type": {
|
|
2612
|
+
"text": "void"
|
|
2613
|
+
}
|
|
2614
|
+
}
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
"kind": "method",
|
|
2618
|
+
"name": "#getNativeMessage",
|
|
2619
|
+
"privacy": "private",
|
|
2620
|
+
"return": {
|
|
2621
|
+
"type": {
|
|
2622
|
+
"text": "string"
|
|
2623
|
+
}
|
|
2624
|
+
},
|
|
2625
|
+
"parameters": [
|
|
2626
|
+
{
|
|
2627
|
+
"name": "flags",
|
|
2628
|
+
"type": {
|
|
2629
|
+
"text": "ValidityStateFlags"
|
|
2630
|
+
}
|
|
2631
|
+
}
|
|
2632
|
+
]
|
|
2633
|
+
}
|
|
2634
|
+
],
|
|
2635
|
+
"parameters": [
|
|
2636
|
+
{
|
|
2637
|
+
"name": "base",
|
|
2638
|
+
"type": {
|
|
2639
|
+
"text": "T"
|
|
2640
|
+
},
|
|
2641
|
+
"description": "The base class."
|
|
2642
|
+
}
|
|
2643
|
+
]
|
|
2644
|
+
}
|
|
2645
|
+
],
|
|
2646
|
+
"exports": [
|
|
2647
|
+
{
|
|
2648
|
+
"kind": "js",
|
|
2649
|
+
"name": "validate",
|
|
2650
|
+
"declaration": {
|
|
2651
|
+
"name": "validate",
|
|
2652
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
2653
|
+
}
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"kind": "js",
|
|
2657
|
+
"name": "isConstraintValidationMixin",
|
|
2658
|
+
"declaration": {
|
|
2659
|
+
"name": "isConstraintValidationMixin",
|
|
2660
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
2661
|
+
}
|
|
2662
|
+
},
|
|
2663
|
+
{
|
|
2664
|
+
"kind": "js",
|
|
2665
|
+
"name": "ConstraintValidation",
|
|
2666
|
+
"declaration": {
|
|
2667
|
+
"name": "ConstraintValidation",
|
|
2668
|
+
"module": "../core/src/shared/mixins/ConstraintValidation.ts"
|
|
2669
|
+
}
|
|
2670
|
+
}
|
|
2671
|
+
]
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"kind": "javascript-module",
|
|
2675
|
+
"path": "../core/src/shared/mixins/Constructor.ts",
|
|
2676
|
+
"declarations": [],
|
|
2677
|
+
"exports": []
|
|
2678
|
+
},
|
|
2679
|
+
{
|
|
2680
|
+
"kind": "javascript-module",
|
|
2681
|
+
"path": "../core/src/shared/mixins/Dirty.ts",
|
|
2682
|
+
"declarations": [
|
|
2683
|
+
{
|
|
2684
|
+
"kind": "function",
|
|
2685
|
+
"name": "isDirtyMixin",
|
|
2686
|
+
"return": {
|
|
2687
|
+
"type": {
|
|
2688
|
+
"text": ""
|
|
2689
|
+
}
|
|
2690
|
+
},
|
|
2691
|
+
"parameters": [
|
|
2692
|
+
{
|
|
2693
|
+
"name": "value",
|
|
2694
|
+
"type": {
|
|
2695
|
+
"text": "unknown"
|
|
2696
|
+
},
|
|
2697
|
+
"description": "The value to test."
|
|
2698
|
+
}
|
|
2699
|
+
],
|
|
2700
|
+
"description": "Determines whether a value is a `DirtyMixin`."
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"kind": "mixin",
|
|
2704
|
+
"description": "Mixin to augment an element with functionality used to mark it as dirty.",
|
|
2705
|
+
"name": "Dirty",
|
|
2706
|
+
"members": [
|
|
2707
|
+
{
|
|
2708
|
+
"kind": "field",
|
|
2709
|
+
"name": "[_eventHandler]",
|
|
2710
|
+
"privacy": "private"
|
|
2711
|
+
},
|
|
2712
|
+
{
|
|
2713
|
+
"kind": "field",
|
|
2714
|
+
"name": "dirty",
|
|
2715
|
+
"type": {
|
|
2716
|
+
"text": "boolean"
|
|
2717
|
+
},
|
|
2718
|
+
"description": "Whether the user has modified the value of the element.",
|
|
2719
|
+
"readonly": true
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
"kind": "field",
|
|
2723
|
+
"name": "pristine",
|
|
2724
|
+
"type": {
|
|
2725
|
+
"text": "boolean"
|
|
2726
|
+
},
|
|
2727
|
+
"description": "Whether the user has not modified the value of the element.",
|
|
2728
|
+
"readonly": true
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
"kind": "method",
|
|
2732
|
+
"name": "markAsPristine",
|
|
2733
|
+
"return": {
|
|
2734
|
+
"type": {
|
|
2735
|
+
"text": "void"
|
|
2736
|
+
}
|
|
2737
|
+
},
|
|
2738
|
+
"description": "Marks the element as pristine."
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
"kind": "method",
|
|
2742
|
+
"name": "markAsDirty",
|
|
2743
|
+
"return": {
|
|
2744
|
+
"type": {
|
|
2745
|
+
"text": "void"
|
|
2746
|
+
}
|
|
2747
|
+
},
|
|
2748
|
+
"description": "Marks the element as dirty."
|
|
2749
|
+
}
|
|
2750
|
+
],
|
|
2751
|
+
"parameters": [
|
|
2752
|
+
{
|
|
2753
|
+
"name": "base",
|
|
2754
|
+
"type": {
|
|
2755
|
+
"text": "T"
|
|
2756
|
+
},
|
|
2757
|
+
"description": "The base class."
|
|
2758
|
+
}
|
|
2759
|
+
]
|
|
2760
|
+
}
|
|
2761
|
+
],
|
|
2762
|
+
"exports": [
|
|
2763
|
+
{
|
|
2764
|
+
"kind": "js",
|
|
2765
|
+
"name": "isDirtyMixin",
|
|
2766
|
+
"declaration": {
|
|
2767
|
+
"name": "isDirtyMixin",
|
|
2768
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
2769
|
+
}
|
|
2770
|
+
},
|
|
2771
|
+
{
|
|
2772
|
+
"kind": "js",
|
|
2773
|
+
"name": "Dirty",
|
|
2774
|
+
"declaration": {
|
|
2775
|
+
"name": "Dirty",
|
|
2776
|
+
"module": "../core/src/shared/mixins/Dirty.ts"
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
]
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"kind": "javascript-module",
|
|
2783
|
+
"path": "../core/src/shared/mixins/Disabled.ts",
|
|
2784
|
+
"declarations": [
|
|
2785
|
+
{
|
|
2786
|
+
"kind": "function",
|
|
2787
|
+
"name": "isDisabledMixin",
|
|
2788
|
+
"return": {
|
|
2789
|
+
"type": {
|
|
2790
|
+
"text": "value is DisabledMixin"
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
"parameters": [
|
|
2794
|
+
{
|
|
2795
|
+
"name": "value",
|
|
2796
|
+
"type": {
|
|
2797
|
+
"text": "unknown"
|
|
2798
|
+
},
|
|
2799
|
+
"description": "The value to test."
|
|
2800
|
+
}
|
|
2801
|
+
],
|
|
2802
|
+
"description": "Determines whether a value is a `DisabledMixin`."
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
"kind": "mixin",
|
|
2806
|
+
"description": "Mixin to augment an element with behavior that supports a disabled state.",
|
|
2807
|
+
"name": "Disabled",
|
|
2808
|
+
"members": [
|
|
2809
|
+
{
|
|
2810
|
+
"kind": "field",
|
|
2811
|
+
"name": "disabled",
|
|
2812
|
+
"type": {
|
|
2813
|
+
"text": "boolean"
|
|
2814
|
+
},
|
|
2815
|
+
"default": "false",
|
|
2816
|
+
"description": "Whether the element is disabled.",
|
|
2817
|
+
"attribute": "disabled"
|
|
2818
|
+
}
|
|
2819
|
+
],
|
|
2820
|
+
"attributes": [
|
|
2821
|
+
{
|
|
2822
|
+
"name": "disabled",
|
|
2823
|
+
"type": {
|
|
2824
|
+
"text": "boolean"
|
|
2825
|
+
},
|
|
2826
|
+
"default": "false",
|
|
2827
|
+
"description": "Whether the element is disabled.",
|
|
2828
|
+
"fieldName": "disabled"
|
|
2829
|
+
}
|
|
2830
|
+
],
|
|
2831
|
+
"parameters": [
|
|
2832
|
+
{
|
|
2833
|
+
"name": "base",
|
|
2834
|
+
"type": {
|
|
2835
|
+
"text": "T"
|
|
2836
|
+
},
|
|
2837
|
+
"description": "The base class."
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"name": "reflect",
|
|
2841
|
+
"default": "true",
|
|
2842
|
+
"type": {
|
|
2843
|
+
"text": "boolean"
|
|
2844
|
+
},
|
|
2845
|
+
"description": "Whether the disabled property is reflected as an attribute.",
|
|
2846
|
+
"optional": true
|
|
2847
|
+
}
|
|
2848
|
+
]
|
|
2849
|
+
}
|
|
2850
|
+
],
|
|
2851
|
+
"exports": [
|
|
2852
|
+
{
|
|
2853
|
+
"kind": "js",
|
|
2854
|
+
"name": "isDisabledMixin",
|
|
2855
|
+
"declaration": {
|
|
2856
|
+
"name": "isDisabledMixin",
|
|
2857
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
2858
|
+
}
|
|
2859
|
+
},
|
|
2860
|
+
{
|
|
2861
|
+
"kind": "js",
|
|
2862
|
+
"name": "Disabled",
|
|
2863
|
+
"declaration": {
|
|
2864
|
+
"name": "Disabled",
|
|
2865
|
+
"module": "../core/src/shared/mixins/Disabled.ts"
|
|
2866
|
+
}
|
|
2867
|
+
}
|
|
2868
|
+
]
|
|
2869
|
+
},
|
|
2870
|
+
{
|
|
2871
|
+
"kind": "javascript-module",
|
|
2872
|
+
"path": "../core/src/shared/mixins/DisabledInteractive.ts",
|
|
2873
|
+
"declarations": [
|
|
2874
|
+
{
|
|
2875
|
+
"kind": "function",
|
|
2876
|
+
"name": "isDisabledInteractiveMixin",
|
|
2877
|
+
"return": {
|
|
2878
|
+
"type": {
|
|
2879
|
+
"text": "value is DisabledInteractiveMixin"
|
|
2880
|
+
}
|
|
2881
|
+
},
|
|
2882
|
+
"parameters": [
|
|
2883
|
+
{
|
|
2884
|
+
"name": "value",
|
|
2885
|
+
"type": {
|
|
2886
|
+
"text": "unknown"
|
|
2887
|
+
},
|
|
2888
|
+
"description": "The value to test."
|
|
2889
|
+
}
|
|
2890
|
+
],
|
|
2891
|
+
"description": "Determines whether a value is a `DisabledInteractiveMixin`."
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
"kind": "mixin",
|
|
2895
|
+
"description": "Mixin to augment an element with behavior that supports an interactive disabled state.",
|
|
2896
|
+
"name": "DisabledInteractive",
|
|
2897
|
+
"members": [
|
|
2898
|
+
{
|
|
2899
|
+
"kind": "field",
|
|
2900
|
+
"name": "[_suppressedEventHandler]",
|
|
2901
|
+
"privacy": "private",
|
|
2902
|
+
"readonly": true
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"kind": "field",
|
|
2906
|
+
"name": "disabledInteractive",
|
|
2907
|
+
"type": {
|
|
2908
|
+
"text": "boolean"
|
|
2909
|
+
},
|
|
2910
|
+
"default": "false",
|
|
2911
|
+
"description": "Whether the element is disabled and interactive.",
|
|
2912
|
+
"attribute": "disabled-interactive",
|
|
2913
|
+
"reflects": true
|
|
2914
|
+
}
|
|
2915
|
+
],
|
|
2916
|
+
"attributes": [
|
|
2917
|
+
{
|
|
2918
|
+
"name": "disabled-interactive",
|
|
2919
|
+
"type": {
|
|
2920
|
+
"text": "boolean"
|
|
2921
|
+
},
|
|
2922
|
+
"default": "false",
|
|
2923
|
+
"description": "Whether the element is disabled and interactive.",
|
|
2924
|
+
"fieldName": "disabledInteractive"
|
|
2925
|
+
}
|
|
2926
|
+
],
|
|
2927
|
+
"parameters": [
|
|
2928
|
+
{
|
|
2929
|
+
"name": "base",
|
|
2930
|
+
"type": {
|
|
2931
|
+
"text": "T"
|
|
2932
|
+
},
|
|
2933
|
+
"description": "The base class."
|
|
2934
|
+
}
|
|
2935
|
+
]
|
|
2936
|
+
}
|
|
2937
|
+
],
|
|
2938
|
+
"exports": [
|
|
2939
|
+
{
|
|
2940
|
+
"kind": "js",
|
|
2941
|
+
"name": "isDisabledInteractiveMixin",
|
|
2942
|
+
"declaration": {
|
|
2943
|
+
"name": "isDisabledInteractiveMixin",
|
|
2944
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
2945
|
+
}
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
"kind": "js",
|
|
2949
|
+
"name": "DisabledInteractive",
|
|
2950
|
+
"declaration": {
|
|
2951
|
+
"name": "DisabledInteractive",
|
|
2952
|
+
"module": "../core/src/shared/mixins/DisabledInteractive.ts"
|
|
2953
|
+
}
|
|
2954
|
+
}
|
|
2955
|
+
]
|
|
2956
|
+
},
|
|
2957
|
+
{
|
|
2958
|
+
"kind": "javascript-module",
|
|
2959
|
+
"path": "../core/src/shared/mixins/EventAttribute.ts",
|
|
2960
|
+
"declarations": [
|
|
2961
|
+
{
|
|
2962
|
+
"kind": "mixin",
|
|
2963
|
+
"description": "Mixin that adds support for custom event attributes.",
|
|
2964
|
+
"name": "EventAttribute",
|
|
2965
|
+
"parameters": [
|
|
2966
|
+
{
|
|
2967
|
+
"name": "base",
|
|
2968
|
+
"type": {
|
|
2969
|
+
"text": "T"
|
|
2970
|
+
},
|
|
2971
|
+
"description": "The base class from which to inherit."
|
|
2972
|
+
},
|
|
2973
|
+
{
|
|
2974
|
+
"name": "types",
|
|
2975
|
+
"type": {
|
|
2976
|
+
"text": "string[]"
|
|
2977
|
+
},
|
|
2978
|
+
"description": "The types of event attributes."
|
|
2979
|
+
}
|
|
2980
|
+
]
|
|
2981
|
+
}
|
|
2982
|
+
],
|
|
2983
|
+
"exports": [
|
|
2984
|
+
{
|
|
2985
|
+
"kind": "js",
|
|
2986
|
+
"name": "EventAttribute",
|
|
2987
|
+
"declaration": {
|
|
2988
|
+
"name": "EventAttribute",
|
|
2989
|
+
"module": "../core/src/shared/mixins/EventAttribute.ts"
|
|
2990
|
+
}
|
|
2991
|
+
}
|
|
2992
|
+
]
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
"kind": "javascript-module",
|
|
2996
|
+
"path": "../core/src/shared/mixins/Focusable.ts",
|
|
2997
|
+
"declarations": [
|
|
2998
|
+
{
|
|
2999
|
+
"kind": "mixin",
|
|
3000
|
+
"description": "Mixin to augment an element with behavior that supports a focused state.",
|
|
3001
|
+
"name": "Focusable",
|
|
3002
|
+
"members": [
|
|
3003
|
+
{
|
|
3004
|
+
"kind": "field",
|
|
3005
|
+
"name": "[_tabindex]",
|
|
3006
|
+
"type": {
|
|
3007
|
+
"text": "number"
|
|
3008
|
+
},
|
|
3009
|
+
"privacy": "private",
|
|
3010
|
+
"default": "0"
|
|
3011
|
+
}
|
|
3012
|
+
],
|
|
3013
|
+
"parameters": [
|
|
3014
|
+
{
|
|
3015
|
+
"name": "base",
|
|
3016
|
+
"type": {
|
|
3017
|
+
"text": "T"
|
|
3018
|
+
},
|
|
3019
|
+
"description": "The base class."
|
|
3020
|
+
}
|
|
3021
|
+
]
|
|
3022
|
+
}
|
|
3023
|
+
],
|
|
3024
|
+
"exports": [
|
|
3025
|
+
{
|
|
3026
|
+
"kind": "js",
|
|
3027
|
+
"name": "Focusable",
|
|
3028
|
+
"declaration": {
|
|
3029
|
+
"name": "Focusable",
|
|
3030
|
+
"module": "../core/src/shared/mixins/Focusable.ts"
|
|
3031
|
+
}
|
|
3032
|
+
}
|
|
3033
|
+
]
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
"kind": "javascript-module",
|
|
3037
|
+
"path": "../core/src/shared/mixins/FormAssociated.ts",
|
|
3038
|
+
"declarations": [
|
|
3039
|
+
{
|
|
3040
|
+
"kind": "variable",
|
|
3041
|
+
"name": "formValue",
|
|
3042
|
+
"description": "A symbol through which a \"Form Associated\" custom element provides a value for a form."
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
"kind": "variable",
|
|
3046
|
+
"name": "defaultValue",
|
|
3047
|
+
"description": "A symbol through which a \"Form Associated\" custom element provides a default value for resetting a form."
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
"kind": "function",
|
|
3051
|
+
"name": "isFormAssociatedMixin",
|
|
3052
|
+
"return": {
|
|
3053
|
+
"type": {
|
|
3054
|
+
"text": ""
|
|
3055
|
+
}
|
|
3056
|
+
},
|
|
3057
|
+
"parameters": [
|
|
3058
|
+
{
|
|
3059
|
+
"name": "value",
|
|
3060
|
+
"type": {
|
|
3061
|
+
"text": "unknown"
|
|
3062
|
+
},
|
|
3063
|
+
"description": "The value to test."
|
|
3064
|
+
}
|
|
3065
|
+
],
|
|
3066
|
+
"description": "Determines whether a value is a `FormAssociatedMixin`."
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"kind": "mixin",
|
|
3070
|
+
"description": "Mixin to augment an element with \"Form Associated\" behavior.",
|
|
3071
|
+
"name": "FormAssociated",
|
|
3072
|
+
"members": [
|
|
3073
|
+
{
|
|
3074
|
+
"kind": "field",
|
|
3075
|
+
"name": "formAssociated",
|
|
3076
|
+
"type": {
|
|
3077
|
+
"text": "boolean"
|
|
3078
|
+
},
|
|
3079
|
+
"static": true,
|
|
3080
|
+
"readonly": true,
|
|
3081
|
+
"default": "true",
|
|
3082
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"kind": "field",
|
|
3086
|
+
"name": "[_defaultValue]",
|
|
3087
|
+
"type": {
|
|
3088
|
+
"text": "unknown"
|
|
3089
|
+
},
|
|
3090
|
+
"privacy": "private"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"kind": "field",
|
|
3094
|
+
"name": "[_defaultIndeterminate]",
|
|
3095
|
+
"type": {
|
|
3096
|
+
"text": "boolean"
|
|
3097
|
+
},
|
|
3098
|
+
"privacy": "private",
|
|
3099
|
+
"default": "false"
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"kind": "field",
|
|
3103
|
+
"name": "[_formDisabled]",
|
|
3104
|
+
"type": {
|
|
3105
|
+
"text": "boolean"
|
|
3106
|
+
},
|
|
3107
|
+
"privacy": "private",
|
|
3108
|
+
"default": "false"
|
|
3109
|
+
},
|
|
3110
|
+
{
|
|
3111
|
+
"kind": "field",
|
|
3112
|
+
"name": "form",
|
|
3113
|
+
"type": {
|
|
3114
|
+
"text": "HTMLFormElement | null"
|
|
3115
|
+
},
|
|
3116
|
+
"description": "The `HTMLFormElement` associated with this element.",
|
|
3117
|
+
"readonly": true
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
"kind": "field",
|
|
3121
|
+
"name": "labels",
|
|
3122
|
+
"type": {
|
|
3123
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
3124
|
+
},
|
|
3125
|
+
"readonly": true
|
|
3126
|
+
},
|
|
3127
|
+
{
|
|
3128
|
+
"kind": "field",
|
|
3129
|
+
"name": "name",
|
|
3130
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
3131
|
+
"attribute": "name"
|
|
3132
|
+
},
|
|
3133
|
+
{
|
|
3134
|
+
"kind": "field",
|
|
3135
|
+
"name": "disabled",
|
|
3136
|
+
"type": {
|
|
3137
|
+
"text": "boolean"
|
|
3138
|
+
},
|
|
3139
|
+
"description": "Whether the element is disabled.",
|
|
3140
|
+
"default": "false",
|
|
3141
|
+
"attribute": "disabled"
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"kind": "method",
|
|
3145
|
+
"name": "formDisabledCallback",
|
|
3146
|
+
"return": {
|
|
3147
|
+
"type": {
|
|
3148
|
+
"text": "void"
|
|
3149
|
+
}
|
|
3150
|
+
},
|
|
3151
|
+
"parameters": [
|
|
3152
|
+
{
|
|
3153
|
+
"name": "disabled",
|
|
3154
|
+
"type": {
|
|
3155
|
+
"text": "boolean"
|
|
3156
|
+
}
|
|
3157
|
+
}
|
|
3158
|
+
],
|
|
3159
|
+
"description": "Called when the element is disabled or enabled via its form association."
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"kind": "method",
|
|
3163
|
+
"name": "formResetCallback",
|
|
3164
|
+
"return": {
|
|
3165
|
+
"type": {
|
|
3166
|
+
"text": "void"
|
|
3167
|
+
}
|
|
3168
|
+
},
|
|
3169
|
+
"description": "Called when the associated form is reset."
|
|
3170
|
+
}
|
|
3171
|
+
],
|
|
3172
|
+
"attributes": [
|
|
3173
|
+
{
|
|
3174
|
+
"name": "name",
|
|
3175
|
+
"description": "The name that identifies the element when submitting the associated form.",
|
|
3176
|
+
"fieldName": "name"
|
|
3177
|
+
},
|
|
3178
|
+
{
|
|
3179
|
+
"name": "disabled",
|
|
3180
|
+
"type": {
|
|
3181
|
+
"text": "boolean"
|
|
3182
|
+
},
|
|
3183
|
+
"description": "Whether the element is disabled.",
|
|
3184
|
+
"default": "false",
|
|
3185
|
+
"fieldName": "disabled"
|
|
3186
|
+
}
|
|
3187
|
+
],
|
|
3188
|
+
"parameters": [
|
|
3189
|
+
{
|
|
3190
|
+
"name": "base",
|
|
3191
|
+
"type": {
|
|
3192
|
+
"text": "T"
|
|
3193
|
+
},
|
|
3194
|
+
"description": "The base class."
|
|
3195
|
+
}
|
|
3196
|
+
]
|
|
3197
|
+
}
|
|
3198
|
+
],
|
|
3199
|
+
"exports": [
|
|
3200
|
+
{
|
|
3201
|
+
"kind": "js",
|
|
3202
|
+
"name": "formValue",
|
|
3203
|
+
"declaration": {
|
|
3204
|
+
"name": "formValue",
|
|
3205
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
3206
|
+
}
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
"kind": "js",
|
|
3210
|
+
"name": "defaultValue",
|
|
3211
|
+
"declaration": {
|
|
3212
|
+
"name": "defaultValue",
|
|
3213
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
3214
|
+
}
|
|
3215
|
+
},
|
|
3216
|
+
{
|
|
3217
|
+
"kind": "js",
|
|
3218
|
+
"name": "isFormAssociatedMixin",
|
|
3219
|
+
"declaration": {
|
|
3220
|
+
"name": "isFormAssociatedMixin",
|
|
3221
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
3222
|
+
}
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
"kind": "js",
|
|
3226
|
+
"name": "FormAssociated",
|
|
3227
|
+
"declaration": {
|
|
3228
|
+
"name": "FormAssociated",
|
|
3229
|
+
"module": "../core/src/shared/mixins/FormAssociated.ts"
|
|
3230
|
+
}
|
|
3231
|
+
}
|
|
3232
|
+
]
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
"kind": "javascript-module",
|
|
3236
|
+
"path": "../core/src/shared/mixins/FormSubmitter.ts",
|
|
3237
|
+
"declarations": [
|
|
3238
|
+
{
|
|
3239
|
+
"kind": "function",
|
|
3240
|
+
"name": "isFormSubmitterMixin",
|
|
3241
|
+
"return": {
|
|
3242
|
+
"type": {
|
|
3243
|
+
"text": "value is FormSubmitterMixin"
|
|
3244
|
+
}
|
|
3245
|
+
},
|
|
3246
|
+
"parameters": [
|
|
3247
|
+
{
|
|
3248
|
+
"name": "value",
|
|
3249
|
+
"type": {
|
|
3250
|
+
"text": "unknown"
|
|
3251
|
+
},
|
|
3252
|
+
"description": "The value to test."
|
|
3253
|
+
}
|
|
3254
|
+
],
|
|
3255
|
+
"description": "Determines whether a value is a `FormSubmitterMixin`."
|
|
3256
|
+
},
|
|
3257
|
+
{
|
|
3258
|
+
"kind": "mixin",
|
|
3259
|
+
"description": "Mixin to augment an element with behavior used to submit a form.",
|
|
3260
|
+
"name": "FormSubmitter",
|
|
3261
|
+
"members": [
|
|
3262
|
+
{
|
|
3263
|
+
"kind": "field",
|
|
3264
|
+
"name": "formAssociated",
|
|
3265
|
+
"type": {
|
|
3266
|
+
"text": "boolean"
|
|
3267
|
+
},
|
|
3268
|
+
"static": true,
|
|
3269
|
+
"readonly": true,
|
|
3270
|
+
"default": "true",
|
|
3271
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
3272
|
+
},
|
|
3273
|
+
{
|
|
3274
|
+
"kind": "field",
|
|
3275
|
+
"name": "name",
|
|
3276
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
3277
|
+
"attribute": "name"
|
|
3278
|
+
},
|
|
3279
|
+
{
|
|
3280
|
+
"kind": "field",
|
|
3281
|
+
"name": "value",
|
|
3282
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
3283
|
+
"attribute": "value"
|
|
3284
|
+
},
|
|
3285
|
+
{
|
|
3286
|
+
"kind": "field",
|
|
3287
|
+
"name": "type",
|
|
3288
|
+
"type": {
|
|
3289
|
+
"text": "FormSubmitterType"
|
|
3290
|
+
},
|
|
3291
|
+
"default": "\"button\"",
|
|
3292
|
+
"description": "The type of the element.",
|
|
3293
|
+
"attribute": "type"
|
|
3294
|
+
},
|
|
3295
|
+
{
|
|
3296
|
+
"kind": "field",
|
|
3297
|
+
"name": "[_clickHandler]",
|
|
3298
|
+
"privacy": "private"
|
|
3299
|
+
}
|
|
3300
|
+
],
|
|
3301
|
+
"attributes": [
|
|
3302
|
+
{
|
|
3303
|
+
"name": "name",
|
|
3304
|
+
"description": "The name of the element, submitted as a pair with the element's `value`\r\nas part of form data, when the element is used to submit a form.",
|
|
3305
|
+
"fieldName": "name"
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
"name": "value",
|
|
3309
|
+
"description": "The value associated with the element's name when it's submitted with form data.",
|
|
3310
|
+
"fieldName": "value"
|
|
3311
|
+
},
|
|
3312
|
+
{
|
|
3313
|
+
"name": "type",
|
|
3314
|
+
"type": {
|
|
3315
|
+
"text": "FormSubmitterType"
|
|
3316
|
+
},
|
|
3317
|
+
"default": "\"button\"",
|
|
3318
|
+
"description": "The type of the element.",
|
|
3319
|
+
"fieldName": "type"
|
|
3320
|
+
}
|
|
3321
|
+
],
|
|
3322
|
+
"parameters": [
|
|
3323
|
+
{
|
|
3324
|
+
"name": "base",
|
|
3325
|
+
"type": {
|
|
3326
|
+
"text": "T"
|
|
3327
|
+
},
|
|
3328
|
+
"description": "The base class."
|
|
3329
|
+
}
|
|
3330
|
+
]
|
|
3331
|
+
}
|
|
3332
|
+
],
|
|
3333
|
+
"exports": [
|
|
3334
|
+
{
|
|
3335
|
+
"kind": "js",
|
|
3336
|
+
"name": "isFormSubmitterMixin",
|
|
3337
|
+
"declaration": {
|
|
3338
|
+
"name": "isFormSubmitterMixin",
|
|
3339
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"kind": "js",
|
|
3344
|
+
"name": "FormSubmitter",
|
|
3345
|
+
"declaration": {
|
|
3346
|
+
"name": "FormSubmitter",
|
|
3347
|
+
"module": "../core/src/shared/mixins/FormSubmitter.ts"
|
|
3348
|
+
}
|
|
3349
|
+
}
|
|
3350
|
+
]
|
|
3351
|
+
},
|
|
3352
|
+
{
|
|
3353
|
+
"kind": "javascript-module",
|
|
3354
|
+
"path": "../core/src/shared/mixins/hasKeys.ts",
|
|
3355
|
+
"declarations": [
|
|
3356
|
+
{
|
|
3357
|
+
"kind": "function",
|
|
3358
|
+
"name": "hasKeys",
|
|
3359
|
+
"return": {
|
|
3360
|
+
"type": {
|
|
3361
|
+
"text": "boolean"
|
|
3362
|
+
}
|
|
3363
|
+
},
|
|
3364
|
+
"parameters": [
|
|
3365
|
+
{
|
|
3366
|
+
"name": "value",
|
|
3367
|
+
"type": {
|
|
3368
|
+
"text": "unknown"
|
|
3369
|
+
},
|
|
3370
|
+
"description": "The value to test."
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"name": "keys",
|
|
3374
|
+
"type": {
|
|
3375
|
+
"text": "Array<keyof T>"
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"description": ": Array<keyof T>} keys The keys of `T` to test.",
|
|
3380
|
+
"name": "",
|
|
3381
|
+
"type": {
|
|
3382
|
+
"text": "...keys"
|
|
3383
|
+
}
|
|
3384
|
+
}
|
|
3385
|
+
],
|
|
3386
|
+
"description": "Determines whether an object has keys for a given type."
|
|
3387
|
+
}
|
|
3388
|
+
],
|
|
3389
|
+
"exports": [
|
|
3390
|
+
{
|
|
3391
|
+
"kind": "js",
|
|
3392
|
+
"name": "hasKeys",
|
|
3393
|
+
"declaration": {
|
|
3394
|
+
"name": "hasKeys",
|
|
3395
|
+
"module": "../core/src/shared/mixins/hasKeys.ts"
|
|
3396
|
+
}
|
|
3397
|
+
}
|
|
3398
|
+
]
|
|
3399
|
+
},
|
|
3400
|
+
{
|
|
3401
|
+
"kind": "javascript-module",
|
|
3402
|
+
"path": "../core/src/shared/mixins/HtmlFor.ts",
|
|
3403
|
+
"declarations": [
|
|
3404
|
+
{
|
|
3405
|
+
"kind": "function",
|
|
3406
|
+
"name": "isHtmlForMixin",
|
|
3407
|
+
"return": {
|
|
3408
|
+
"type": {
|
|
3409
|
+
"text": "value is HtmlForMixin"
|
|
3410
|
+
}
|
|
3411
|
+
},
|
|
3412
|
+
"parameters": [
|
|
3413
|
+
{
|
|
3414
|
+
"name": "value",
|
|
3415
|
+
"type": {
|
|
3416
|
+
"text": "unknown"
|
|
3417
|
+
},
|
|
3418
|
+
"description": "The value to test."
|
|
3419
|
+
}
|
|
3420
|
+
],
|
|
3421
|
+
"description": "Determines whether a value is a `HtmlForMixin`."
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"kind": "mixin",
|
|
3425
|
+
"description": "Mixin that creates an attached element associated with an interactive control.",
|
|
3426
|
+
"name": "HtmlFor",
|
|
3427
|
+
"members": [
|
|
3428
|
+
{
|
|
3429
|
+
"kind": "field",
|
|
3430
|
+
"name": "[_control]",
|
|
3431
|
+
"type": {
|
|
3432
|
+
"text": "HTMLElement | null"
|
|
3433
|
+
},
|
|
3434
|
+
"privacy": "private",
|
|
3435
|
+
"default": "null"
|
|
3436
|
+
},
|
|
3437
|
+
{
|
|
3438
|
+
"kind": "field",
|
|
3439
|
+
"name": "[_firstUpdated]",
|
|
3440
|
+
"type": {
|
|
3441
|
+
"text": "boolean"
|
|
3442
|
+
},
|
|
3443
|
+
"privacy": "private",
|
|
3444
|
+
"default": "false"
|
|
3445
|
+
},
|
|
3446
|
+
{
|
|
3447
|
+
"kind": "field",
|
|
3448
|
+
"name": "htmlFor",
|
|
3449
|
+
"type": {
|
|
3450
|
+
"text": "string | null"
|
|
3451
|
+
},
|
|
3452
|
+
"default": "null",
|
|
3453
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
3454
|
+
"attribute": "for"
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"kind": "field",
|
|
3458
|
+
"name": "control",
|
|
3459
|
+
"description": "The interactive element to which this element is attached.",
|
|
3460
|
+
"readonly": true
|
|
3461
|
+
},
|
|
3462
|
+
{
|
|
3463
|
+
"kind": "method",
|
|
3464
|
+
"name": "attach",
|
|
3465
|
+
"return": {
|
|
3466
|
+
"type": {
|
|
3467
|
+
"text": "void"
|
|
3468
|
+
}
|
|
3469
|
+
},
|
|
3470
|
+
"parameters": [
|
|
3471
|
+
{
|
|
3472
|
+
"name": "control",
|
|
3473
|
+
"type": {
|
|
3474
|
+
"text": "HTMLElement"
|
|
3475
|
+
},
|
|
3476
|
+
"description": "The element that controls the attachable element."
|
|
3477
|
+
}
|
|
3478
|
+
],
|
|
3479
|
+
"description": "Attaches the element to an interactive control."
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
"kind": "method",
|
|
3483
|
+
"name": "detach",
|
|
3484
|
+
"return": {
|
|
3485
|
+
"type": {
|
|
3486
|
+
"text": "void"
|
|
3487
|
+
}
|
|
3488
|
+
},
|
|
3489
|
+
"description": "Detaches the element from its current interactive control."
|
|
3490
|
+
}
|
|
3491
|
+
],
|
|
3492
|
+
"attributes": [
|
|
3493
|
+
{
|
|
3494
|
+
"name": "for",
|
|
3495
|
+
"type": {
|
|
3496
|
+
"text": "string | null"
|
|
3497
|
+
},
|
|
3498
|
+
"default": "null",
|
|
3499
|
+
"description": "The identifier of the interactive control to which this element is attached.",
|
|
3500
|
+
"fieldName": "htmlFor"
|
|
3501
|
+
}
|
|
3502
|
+
],
|
|
3503
|
+
"parameters": [
|
|
3504
|
+
{
|
|
3505
|
+
"name": "base",
|
|
3506
|
+
"type": {
|
|
3507
|
+
"text": "T"
|
|
3508
|
+
},
|
|
3509
|
+
"description": "The base class."
|
|
3510
|
+
}
|
|
3511
|
+
]
|
|
3512
|
+
}
|
|
3513
|
+
],
|
|
3514
|
+
"exports": [
|
|
3515
|
+
{
|
|
3516
|
+
"kind": "js",
|
|
3517
|
+
"name": "isHtmlForMixin",
|
|
3518
|
+
"declaration": {
|
|
3519
|
+
"name": "isHtmlForMixin",
|
|
3520
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
3521
|
+
}
|
|
3522
|
+
},
|
|
3523
|
+
{
|
|
3524
|
+
"kind": "js",
|
|
3525
|
+
"name": "HtmlFor",
|
|
3526
|
+
"declaration": {
|
|
3527
|
+
"name": "HtmlFor",
|
|
3528
|
+
"module": "../core/src/shared/mixins/HtmlFor.ts"
|
|
3529
|
+
}
|
|
3530
|
+
}
|
|
3531
|
+
]
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"kind": "javascript-module",
|
|
3535
|
+
"path": "../core/src/shared/mixins/index.ts",
|
|
3536
|
+
"declarations": [],
|
|
3537
|
+
"exports": [
|
|
3538
|
+
{
|
|
3539
|
+
"kind": "js",
|
|
3540
|
+
"name": "*",
|
|
3541
|
+
"declaration": {
|
|
3542
|
+
"name": "*",
|
|
3543
|
+
"package": "\"./AttachInternals\""
|
|
3544
|
+
}
|
|
3545
|
+
},
|
|
3546
|
+
{
|
|
3547
|
+
"kind": "js",
|
|
3548
|
+
"name": "*",
|
|
3549
|
+
"declaration": {
|
|
3550
|
+
"name": "*",
|
|
3551
|
+
"package": "\"./Checked\""
|
|
3552
|
+
}
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"kind": "js",
|
|
3556
|
+
"name": "*",
|
|
3557
|
+
"declaration": {
|
|
3558
|
+
"name": "*",
|
|
3559
|
+
"package": "\"./CheckedIndeterminate\""
|
|
3560
|
+
}
|
|
3561
|
+
},
|
|
3562
|
+
{
|
|
3563
|
+
"kind": "js",
|
|
3564
|
+
"name": "*",
|
|
3565
|
+
"declaration": {
|
|
3566
|
+
"name": "*",
|
|
3567
|
+
"package": "\"./CheckedOrSelected\""
|
|
3568
|
+
}
|
|
3569
|
+
},
|
|
3570
|
+
{
|
|
3571
|
+
"kind": "js",
|
|
3572
|
+
"name": "*",
|
|
3573
|
+
"declaration": {
|
|
3574
|
+
"name": "*",
|
|
3575
|
+
"package": "\"./ConstraintValidation\""
|
|
3576
|
+
}
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"kind": "js",
|
|
3580
|
+
"name": "*",
|
|
3581
|
+
"declaration": {
|
|
3582
|
+
"name": "*",
|
|
3583
|
+
"package": "\"./Dirty\""
|
|
3584
|
+
}
|
|
3585
|
+
},
|
|
3586
|
+
{
|
|
3587
|
+
"kind": "js",
|
|
3588
|
+
"name": "*",
|
|
3589
|
+
"declaration": {
|
|
3590
|
+
"name": "*",
|
|
3591
|
+
"package": "\"./Disabled\""
|
|
3592
|
+
}
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
"kind": "js",
|
|
3596
|
+
"name": "*",
|
|
3597
|
+
"declaration": {
|
|
3598
|
+
"name": "*",
|
|
3599
|
+
"package": "\"./DisabledInteractive\""
|
|
3600
|
+
}
|
|
3601
|
+
},
|
|
3602
|
+
{
|
|
3603
|
+
"kind": "js",
|
|
3604
|
+
"name": "*",
|
|
3605
|
+
"declaration": {
|
|
3606
|
+
"name": "*",
|
|
3607
|
+
"package": "\"./EventAttribute\""
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
{
|
|
3611
|
+
"kind": "js",
|
|
3612
|
+
"name": "*",
|
|
3613
|
+
"declaration": {
|
|
3614
|
+
"name": "*",
|
|
3615
|
+
"package": "\"./Focusable\""
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
{
|
|
3619
|
+
"kind": "js",
|
|
3620
|
+
"name": "*",
|
|
3621
|
+
"declaration": {
|
|
3622
|
+
"name": "*",
|
|
3623
|
+
"package": "\"./FormAssociated\""
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"kind": "js",
|
|
3628
|
+
"name": "*",
|
|
3629
|
+
"declaration": {
|
|
3630
|
+
"name": "*",
|
|
3631
|
+
"package": "\"./FormSubmitter\""
|
|
3632
|
+
}
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
"kind": "js",
|
|
3636
|
+
"name": "*",
|
|
3637
|
+
"declaration": {
|
|
3638
|
+
"name": "*",
|
|
3639
|
+
"package": "\"./hasKeys\""
|
|
3640
|
+
}
|
|
3641
|
+
},
|
|
3642
|
+
{
|
|
3643
|
+
"kind": "js",
|
|
3644
|
+
"name": "*",
|
|
3645
|
+
"declaration": {
|
|
3646
|
+
"name": "*",
|
|
3647
|
+
"package": "\"./HtmlFor\""
|
|
3648
|
+
}
|
|
3649
|
+
},
|
|
3650
|
+
{
|
|
3651
|
+
"kind": "js",
|
|
3652
|
+
"name": "*",
|
|
3653
|
+
"declaration": {
|
|
3654
|
+
"name": "*",
|
|
3655
|
+
"package": "\"./KeyboardClick\""
|
|
3656
|
+
}
|
|
3657
|
+
},
|
|
3658
|
+
{
|
|
3659
|
+
"kind": "js",
|
|
3660
|
+
"name": "*",
|
|
3661
|
+
"declaration": {
|
|
3662
|
+
"name": "*",
|
|
3663
|
+
"package": "\"./Labelled\""
|
|
3664
|
+
}
|
|
3665
|
+
},
|
|
3666
|
+
{
|
|
3667
|
+
"kind": "js",
|
|
3668
|
+
"name": "*",
|
|
3669
|
+
"declaration": {
|
|
3670
|
+
"name": "*",
|
|
3671
|
+
"package": "\"./LinkButton\""
|
|
3672
|
+
}
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"kind": "js",
|
|
3676
|
+
"name": "*",
|
|
3677
|
+
"declaration": {
|
|
3678
|
+
"name": "*",
|
|
3679
|
+
"package": "\"./ReadOnly\""
|
|
3680
|
+
}
|
|
3681
|
+
},
|
|
3682
|
+
{
|
|
3683
|
+
"kind": "js",
|
|
3684
|
+
"name": "*",
|
|
3685
|
+
"declaration": {
|
|
3686
|
+
"name": "*",
|
|
3687
|
+
"package": "\"./Required\""
|
|
3688
|
+
}
|
|
3689
|
+
},
|
|
3690
|
+
{
|
|
3691
|
+
"kind": "js",
|
|
3692
|
+
"name": "*",
|
|
3693
|
+
"declaration": {
|
|
3694
|
+
"name": "*",
|
|
3695
|
+
"package": "\"./RequiredConstraintValidation\""
|
|
3696
|
+
}
|
|
3697
|
+
},
|
|
3698
|
+
{
|
|
3699
|
+
"kind": "js",
|
|
3700
|
+
"name": "*",
|
|
3701
|
+
"declaration": {
|
|
3702
|
+
"name": "*",
|
|
3703
|
+
"package": "\"./Role\""
|
|
3704
|
+
}
|
|
3705
|
+
},
|
|
3706
|
+
{
|
|
3707
|
+
"kind": "js",
|
|
3708
|
+
"name": "*",
|
|
3709
|
+
"declaration": {
|
|
3710
|
+
"name": "*",
|
|
3711
|
+
"package": "\"./Selected\""
|
|
3712
|
+
}
|
|
3713
|
+
},
|
|
3714
|
+
{
|
|
3715
|
+
"kind": "js",
|
|
3716
|
+
"name": "*",
|
|
3717
|
+
"declaration": {
|
|
3718
|
+
"name": "*",
|
|
3719
|
+
"package": "\"./Touched\""
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3722
|
+
{
|
|
3723
|
+
"kind": "js",
|
|
3724
|
+
"name": "*",
|
|
3725
|
+
"declaration": {
|
|
3726
|
+
"name": "*",
|
|
3727
|
+
"package": "\"./Vertical\""
|
|
3728
|
+
}
|
|
3729
|
+
}
|
|
3730
|
+
]
|
|
3731
|
+
},
|
|
3732
|
+
{
|
|
3733
|
+
"kind": "javascript-module",
|
|
3734
|
+
"path": "../core/src/shared/mixins/KeyboardClick.ts",
|
|
3735
|
+
"declarations": [
|
|
3736
|
+
{
|
|
3737
|
+
"kind": "mixin",
|
|
3738
|
+
"description": "Mixin to augment an element with behavior emits a click event on keyboard events.",
|
|
3739
|
+
"name": "KeyboardClick",
|
|
3740
|
+
"members": [
|
|
3741
|
+
{
|
|
3742
|
+
"kind": "field",
|
|
3743
|
+
"name": "#keyUpHandler",
|
|
3744
|
+
"privacy": "private",
|
|
3745
|
+
"readonly": true
|
|
3746
|
+
},
|
|
3747
|
+
{
|
|
3748
|
+
"kind": "method",
|
|
3749
|
+
"name": "#handleKeyUp",
|
|
3750
|
+
"privacy": "private",
|
|
3751
|
+
"return": {
|
|
3752
|
+
"type": {
|
|
3753
|
+
"text": "void"
|
|
3754
|
+
}
|
|
3755
|
+
},
|
|
3756
|
+
"parameters": [
|
|
3757
|
+
{
|
|
3758
|
+
"name": "e",
|
|
3759
|
+
"type": {
|
|
3760
|
+
"text": "KeyboardEvent"
|
|
3761
|
+
}
|
|
3762
|
+
}
|
|
3763
|
+
]
|
|
3764
|
+
}
|
|
3765
|
+
],
|
|
3766
|
+
"events": [
|
|
3767
|
+
{
|
|
3768
|
+
"name": "click",
|
|
3769
|
+
"type": {
|
|
3770
|
+
"text": "MouseEvent"
|
|
3771
|
+
}
|
|
3772
|
+
}
|
|
3773
|
+
],
|
|
3774
|
+
"parameters": [
|
|
3775
|
+
{
|
|
3776
|
+
"name": "base",
|
|
3777
|
+
"type": {
|
|
3778
|
+
"text": "T"
|
|
3779
|
+
},
|
|
3780
|
+
"description": "The base class."
|
|
3781
|
+
},
|
|
3782
|
+
{
|
|
3783
|
+
"name": "allowEnter",
|
|
3784
|
+
"default": "true",
|
|
3785
|
+
"type": {
|
|
3786
|
+
"text": "boolean"
|
|
3787
|
+
},
|
|
3788
|
+
"description": "Whether the `ENTER` key emits a click event.",
|
|
3789
|
+
"optional": true
|
|
3790
|
+
}
|
|
3791
|
+
]
|
|
3792
|
+
}
|
|
3793
|
+
],
|
|
3794
|
+
"exports": [
|
|
3795
|
+
{
|
|
3796
|
+
"kind": "js",
|
|
3797
|
+
"name": "KeyboardClick",
|
|
3798
|
+
"declaration": {
|
|
3799
|
+
"name": "KeyboardClick",
|
|
3800
|
+
"module": "../core/src/shared/mixins/KeyboardClick.ts"
|
|
3801
|
+
}
|
|
3802
|
+
}
|
|
3803
|
+
]
|
|
3804
|
+
},
|
|
3805
|
+
{
|
|
3806
|
+
"kind": "javascript-module",
|
|
3807
|
+
"path": "../core/src/shared/mixins/Labelled.ts",
|
|
3808
|
+
"declarations": [
|
|
3809
|
+
{
|
|
3810
|
+
"kind": "function",
|
|
3811
|
+
"name": "isLabelledMixin",
|
|
3812
|
+
"return": {
|
|
3813
|
+
"type": {
|
|
3814
|
+
"text": ""
|
|
3815
|
+
}
|
|
3816
|
+
},
|
|
3817
|
+
"parameters": [
|
|
3818
|
+
{
|
|
3819
|
+
"name": "value",
|
|
3820
|
+
"type": {
|
|
3821
|
+
"text": "unknown"
|
|
3822
|
+
},
|
|
3823
|
+
"description": "The value to test."
|
|
3824
|
+
}
|
|
3825
|
+
],
|
|
3826
|
+
"description": "Determines whether a value is a `LabelledMixin`."
|
|
3827
|
+
},
|
|
3828
|
+
{
|
|
3829
|
+
"kind": "mixin",
|
|
3830
|
+
"description": "Mixin to augment an element with support for labelling.",
|
|
3831
|
+
"name": "Labelled",
|
|
3832
|
+
"members": [
|
|
3833
|
+
{
|
|
3834
|
+
"kind": "field",
|
|
3835
|
+
"name": "formAssociated",
|
|
3836
|
+
"type": {
|
|
3837
|
+
"text": "boolean"
|
|
3838
|
+
},
|
|
3839
|
+
"static": true,
|
|
3840
|
+
"readonly": true,
|
|
3841
|
+
"default": "true",
|
|
3842
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
3843
|
+
},
|
|
3844
|
+
{
|
|
3845
|
+
"kind": "field",
|
|
3846
|
+
"name": "[_eventHandler]",
|
|
3847
|
+
"privacy": "private",
|
|
3848
|
+
"readonly": true
|
|
3849
|
+
},
|
|
3850
|
+
{
|
|
3851
|
+
"kind": "field",
|
|
3852
|
+
"name": "labels",
|
|
3853
|
+
"type": {
|
|
3854
|
+
"text": "NodeListOf<HTMLLabelElement>"
|
|
3855
|
+
},
|
|
3856
|
+
"description": "The label elements that the element is associated with.",
|
|
3857
|
+
"readonly": true
|
|
3858
|
+
},
|
|
3859
|
+
{
|
|
3860
|
+
"kind": "method",
|
|
3861
|
+
"name": "[_updateLabels]",
|
|
3862
|
+
"privacy": "private",
|
|
3863
|
+
"return": {
|
|
3864
|
+
"type": {
|
|
3865
|
+
"text": "void"
|
|
3866
|
+
}
|
|
3867
|
+
}
|
|
3868
|
+
}
|
|
3869
|
+
],
|
|
3870
|
+
"parameters": [
|
|
3871
|
+
{
|
|
3872
|
+
"name": "base",
|
|
3873
|
+
"type": {
|
|
3874
|
+
"text": "T"
|
|
3875
|
+
},
|
|
3876
|
+
"description": "The base class."
|
|
3877
|
+
}
|
|
3878
|
+
]
|
|
3879
|
+
}
|
|
3880
|
+
],
|
|
3881
|
+
"exports": [
|
|
3882
|
+
{
|
|
3883
|
+
"kind": "js",
|
|
3884
|
+
"name": "isLabelledMixin",
|
|
3885
|
+
"declaration": {
|
|
3886
|
+
"name": "isLabelledMixin",
|
|
3887
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
3888
|
+
}
|
|
3889
|
+
},
|
|
3890
|
+
{
|
|
3891
|
+
"kind": "js",
|
|
3892
|
+
"name": "Labelled",
|
|
3893
|
+
"declaration": {
|
|
3894
|
+
"name": "Labelled",
|
|
3895
|
+
"module": "../core/src/shared/mixins/Labelled.ts"
|
|
3896
|
+
}
|
|
3897
|
+
}
|
|
3898
|
+
]
|
|
3899
|
+
},
|
|
3900
|
+
{
|
|
3901
|
+
"kind": "javascript-module",
|
|
3902
|
+
"path": "../core/src/shared/mixins/LinkButton.ts",
|
|
3903
|
+
"declarations": [
|
|
3904
|
+
{
|
|
3905
|
+
"kind": "variable",
|
|
3906
|
+
"name": "renderPseudoLink",
|
|
3907
|
+
"description": "A symbol through which to access a function used to render a pseudo link."
|
|
3908
|
+
},
|
|
3909
|
+
{
|
|
3910
|
+
"kind": "function",
|
|
3911
|
+
"name": "isLinkButtonMixin",
|
|
3912
|
+
"return": {
|
|
3913
|
+
"type": {
|
|
3914
|
+
"text": "value is LinkButtonMixin"
|
|
3915
|
+
}
|
|
3916
|
+
},
|
|
3917
|
+
"parameters": [
|
|
3918
|
+
{
|
|
3919
|
+
"name": "value",
|
|
3920
|
+
"type": {
|
|
3921
|
+
"text": "unknown"
|
|
3922
|
+
},
|
|
3923
|
+
"description": "The value to test."
|
|
3924
|
+
}
|
|
3925
|
+
],
|
|
3926
|
+
"description": "Determines whether a value is a `LinkButtonMixin`."
|
|
3927
|
+
},
|
|
3928
|
+
{
|
|
3929
|
+
"kind": "mixin",
|
|
3930
|
+
"description": "Mixin to augment an element with behavior that supports functioning as a link.",
|
|
3931
|
+
"name": "LinkButton",
|
|
3932
|
+
"members": [
|
|
3933
|
+
{
|
|
3934
|
+
"kind": "field",
|
|
3935
|
+
"name": "[_clickHandler]",
|
|
3936
|
+
"privacy": "private"
|
|
3937
|
+
},
|
|
3938
|
+
{
|
|
3939
|
+
"kind": "field",
|
|
3940
|
+
"name": "href",
|
|
3941
|
+
"type": {
|
|
3942
|
+
"text": "string"
|
|
3943
|
+
},
|
|
3944
|
+
"default": "\"\"",
|
|
3945
|
+
"description": "The URL to which the link button points.",
|
|
3946
|
+
"attribute": "href"
|
|
3947
|
+
},
|
|
3948
|
+
{
|
|
3949
|
+
"kind": "field",
|
|
3950
|
+
"name": "target",
|
|
3951
|
+
"type": {
|
|
3952
|
+
"text": "LinkTarget"
|
|
3953
|
+
},
|
|
3954
|
+
"default": "\"\"",
|
|
3955
|
+
"description": "The target of the link button.",
|
|
3956
|
+
"attribute": "target"
|
|
3957
|
+
},
|
|
3958
|
+
{
|
|
3959
|
+
"kind": "field",
|
|
3960
|
+
"name": "rel",
|
|
3961
|
+
"type": {
|
|
3962
|
+
"text": "string"
|
|
3963
|
+
},
|
|
3964
|
+
"default": "\"\"",
|
|
3965
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
3966
|
+
"attribute": "rel"
|
|
3967
|
+
},
|
|
3968
|
+
{
|
|
3969
|
+
"kind": "field",
|
|
3970
|
+
"name": "download",
|
|
3971
|
+
"type": {
|
|
3972
|
+
"text": "string | null"
|
|
3973
|
+
},
|
|
3974
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
3975
|
+
"default": "null",
|
|
3976
|
+
"attribute": "download"
|
|
3977
|
+
},
|
|
3978
|
+
{
|
|
3979
|
+
"kind": "method",
|
|
3980
|
+
"name": "#handleLinkPointerDown",
|
|
3981
|
+
"privacy": "private",
|
|
3982
|
+
"return": {
|
|
3983
|
+
"type": {
|
|
3984
|
+
"text": "void"
|
|
3985
|
+
}
|
|
3986
|
+
},
|
|
3987
|
+
"parameters": [
|
|
3988
|
+
{
|
|
3989
|
+
"name": "e",
|
|
3990
|
+
"type": {
|
|
3991
|
+
"text": "PointerEvent"
|
|
3992
|
+
}
|
|
3993
|
+
}
|
|
3994
|
+
]
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"kind": "method",
|
|
3998
|
+
"name": "#handleLinkFocus",
|
|
3999
|
+
"privacy": "private",
|
|
4000
|
+
"return": {
|
|
4001
|
+
"type": {
|
|
4002
|
+
"text": "void"
|
|
4003
|
+
}
|
|
4004
|
+
},
|
|
4005
|
+
"parameters": [
|
|
4006
|
+
{
|
|
4007
|
+
"name": "e",
|
|
4008
|
+
"type": {
|
|
4009
|
+
"text": "Event"
|
|
4010
|
+
}
|
|
4011
|
+
}
|
|
4012
|
+
]
|
|
4013
|
+
},
|
|
4014
|
+
{
|
|
4015
|
+
"kind": "method",
|
|
4016
|
+
"name": "#handleLinkBlur",
|
|
4017
|
+
"privacy": "private",
|
|
4018
|
+
"return": {
|
|
4019
|
+
"type": {
|
|
4020
|
+
"text": "void"
|
|
4021
|
+
}
|
|
4022
|
+
},
|
|
4023
|
+
"parameters": [
|
|
4024
|
+
{
|
|
4025
|
+
"name": "e",
|
|
4026
|
+
"type": {
|
|
4027
|
+
"text": "Event"
|
|
4028
|
+
}
|
|
4029
|
+
}
|
|
4030
|
+
]
|
|
4031
|
+
}
|
|
4032
|
+
],
|
|
4033
|
+
"events": [
|
|
4034
|
+
{
|
|
4035
|
+
"name": "click",
|
|
4036
|
+
"type": {
|
|
4037
|
+
"text": "MouseEvent"
|
|
4038
|
+
}
|
|
4039
|
+
}
|
|
4040
|
+
],
|
|
4041
|
+
"attributes": [
|
|
4042
|
+
{
|
|
4043
|
+
"name": "href",
|
|
4044
|
+
"type": {
|
|
4045
|
+
"text": "string"
|
|
4046
|
+
},
|
|
4047
|
+
"default": "\"\"",
|
|
4048
|
+
"description": "The URL to which the link button points.",
|
|
4049
|
+
"fieldName": "href"
|
|
4050
|
+
},
|
|
4051
|
+
{
|
|
4052
|
+
"name": "target",
|
|
4053
|
+
"type": {
|
|
4054
|
+
"text": "LinkTarget"
|
|
4055
|
+
},
|
|
4056
|
+
"default": "\"\"",
|
|
4057
|
+
"description": "The target of the link button.",
|
|
4058
|
+
"fieldName": "target"
|
|
4059
|
+
},
|
|
4060
|
+
{
|
|
4061
|
+
"name": "rel",
|
|
4062
|
+
"type": {
|
|
4063
|
+
"text": "string"
|
|
4064
|
+
},
|
|
4065
|
+
"default": "\"\"",
|
|
4066
|
+
"description": "The relationship between the `target` of the link button and the document.",
|
|
4067
|
+
"fieldName": "rel"
|
|
4068
|
+
},
|
|
4069
|
+
{
|
|
4070
|
+
"name": "download",
|
|
4071
|
+
"type": {
|
|
4072
|
+
"text": "string | null"
|
|
4073
|
+
},
|
|
4074
|
+
"description": "A value indicating whether the `target` of the link button will be downloaded,\r\noptionally specifying the new name of the file.",
|
|
4075
|
+
"default": "null",
|
|
4076
|
+
"fieldName": "download"
|
|
4077
|
+
}
|
|
4078
|
+
],
|
|
4079
|
+
"parameters": [
|
|
4080
|
+
{
|
|
4081
|
+
"name": "base",
|
|
4082
|
+
"type": {
|
|
4083
|
+
"text": "T"
|
|
4084
|
+
},
|
|
4085
|
+
"description": "The base class."
|
|
4086
|
+
}
|
|
4087
|
+
]
|
|
4088
|
+
}
|
|
4089
|
+
],
|
|
4090
|
+
"exports": [
|
|
4091
|
+
{
|
|
4092
|
+
"kind": "js",
|
|
4093
|
+
"name": "renderPseudoLink",
|
|
4094
|
+
"declaration": {
|
|
4095
|
+
"name": "renderPseudoLink",
|
|
4096
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
4097
|
+
}
|
|
4098
|
+
},
|
|
4099
|
+
{
|
|
4100
|
+
"kind": "js",
|
|
4101
|
+
"name": "isLinkButtonMixin",
|
|
4102
|
+
"declaration": {
|
|
4103
|
+
"name": "isLinkButtonMixin",
|
|
4104
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
4105
|
+
}
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"kind": "js",
|
|
4109
|
+
"name": "LinkButton",
|
|
4110
|
+
"declaration": {
|
|
4111
|
+
"name": "LinkButton",
|
|
4112
|
+
"module": "../core/src/shared/mixins/LinkButton.ts"
|
|
4113
|
+
}
|
|
4114
|
+
}
|
|
4115
|
+
]
|
|
4116
|
+
},
|
|
4117
|
+
{
|
|
4118
|
+
"kind": "javascript-module",
|
|
4119
|
+
"path": "../core/src/shared/mixins/ReadOnly.ts",
|
|
4120
|
+
"declarations": [
|
|
4121
|
+
{
|
|
4122
|
+
"kind": "function",
|
|
4123
|
+
"name": "isReadOnlyMixin",
|
|
4124
|
+
"return": {
|
|
4125
|
+
"type": {
|
|
4126
|
+
"text": ""
|
|
4127
|
+
}
|
|
4128
|
+
},
|
|
4129
|
+
"parameters": [
|
|
4130
|
+
{
|
|
4131
|
+
"name": "value",
|
|
4132
|
+
"type": {
|
|
4133
|
+
"text": "unknown"
|
|
4134
|
+
},
|
|
4135
|
+
"description": "The value to test."
|
|
4136
|
+
}
|
|
4137
|
+
],
|
|
4138
|
+
"description": "Determines whether a value is a `ReadOnlyMixin`."
|
|
4139
|
+
},
|
|
4140
|
+
{
|
|
4141
|
+
"kind": "mixin",
|
|
4142
|
+
"description": "Mixin to augment an element with behavior that supports a read-only state.",
|
|
4143
|
+
"name": "ReadOnly",
|
|
4144
|
+
"members": [
|
|
4145
|
+
{
|
|
4146
|
+
"kind": "field",
|
|
4147
|
+
"name": "readOnly",
|
|
4148
|
+
"type": {
|
|
4149
|
+
"text": "boolean"
|
|
4150
|
+
},
|
|
4151
|
+
"default": "false",
|
|
4152
|
+
"description": "A value indicating whether the element is read-only.",
|
|
4153
|
+
"attribute": "readonly"
|
|
4154
|
+
}
|
|
4155
|
+
],
|
|
4156
|
+
"attributes": [
|
|
4157
|
+
{
|
|
4158
|
+
"name": "readonly",
|
|
4159
|
+
"type": {
|
|
4160
|
+
"text": "boolean"
|
|
4161
|
+
},
|
|
4162
|
+
"default": "false",
|
|
4163
|
+
"description": "A value indicating whether the element is read-only.",
|
|
4164
|
+
"fieldName": "readOnly"
|
|
4165
|
+
}
|
|
4166
|
+
],
|
|
4167
|
+
"parameters": [
|
|
4168
|
+
{
|
|
4169
|
+
"name": "base",
|
|
4170
|
+
"type": {
|
|
4171
|
+
"text": "T"
|
|
4172
|
+
},
|
|
4173
|
+
"description": "The base class."
|
|
4174
|
+
},
|
|
4175
|
+
{
|
|
4176
|
+
"name": "reflect",
|
|
4177
|
+
"default": "true",
|
|
4178
|
+
"type": {
|
|
4179
|
+
"text": "boolean"
|
|
4180
|
+
},
|
|
4181
|
+
"description": "A value indicating whether the read-only state is reflected as an attribute. The default value is `true`."
|
|
4182
|
+
}
|
|
4183
|
+
]
|
|
4184
|
+
}
|
|
4185
|
+
],
|
|
4186
|
+
"exports": [
|
|
4187
|
+
{
|
|
4188
|
+
"kind": "js",
|
|
4189
|
+
"name": "isReadOnlyMixin",
|
|
4190
|
+
"declaration": {
|
|
4191
|
+
"name": "isReadOnlyMixin",
|
|
4192
|
+
"module": "../core/src/shared/mixins/ReadOnly.ts"
|
|
4193
|
+
}
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
"kind": "js",
|
|
4197
|
+
"name": "ReadOnly",
|
|
4198
|
+
"declaration": {
|
|
4199
|
+
"name": "ReadOnly",
|
|
4200
|
+
"module": "../core/src/shared/mixins/ReadOnly.ts"
|
|
4201
|
+
}
|
|
4202
|
+
}
|
|
4203
|
+
]
|
|
4204
|
+
},
|
|
4205
|
+
{
|
|
4206
|
+
"kind": "javascript-module",
|
|
4207
|
+
"path": "../core/src/shared/mixins/Required.ts",
|
|
4208
|
+
"declarations": [
|
|
4209
|
+
{
|
|
4210
|
+
"kind": "function",
|
|
4211
|
+
"name": "isRequiredMixin",
|
|
4212
|
+
"return": {
|
|
4213
|
+
"type": {
|
|
4214
|
+
"text": ""
|
|
4215
|
+
}
|
|
4216
|
+
},
|
|
4217
|
+
"parameters": [
|
|
4218
|
+
{
|
|
4219
|
+
"name": "value",
|
|
4220
|
+
"type": {
|
|
4221
|
+
"text": "unknown"
|
|
4222
|
+
},
|
|
4223
|
+
"description": "The value to test."
|
|
4224
|
+
}
|
|
4225
|
+
],
|
|
4226
|
+
"description": "Determines whether a value is a `RequiredMixin`."
|
|
4227
|
+
},
|
|
4228
|
+
{
|
|
4229
|
+
"kind": "mixin",
|
|
4230
|
+
"description": "Mixin to augment an element with behavior that supports a required state.",
|
|
4231
|
+
"name": "Required",
|
|
4232
|
+
"members": [
|
|
4233
|
+
{
|
|
4234
|
+
"kind": "field",
|
|
4235
|
+
"name": "required",
|
|
4236
|
+
"type": {
|
|
4237
|
+
"text": "boolean"
|
|
4238
|
+
},
|
|
4239
|
+
"default": "false",
|
|
4240
|
+
"description": "Whether a value is required for the element.",
|
|
4241
|
+
"attribute": "required",
|
|
4242
|
+
"reflects": true
|
|
4243
|
+
},
|
|
4244
|
+
{
|
|
4245
|
+
"kind": "field",
|
|
4246
|
+
"name": "optional",
|
|
4247
|
+
"description": "Whether a value is not required for the element.",
|
|
4248
|
+
"readonly": true
|
|
4249
|
+
}
|
|
4250
|
+
],
|
|
4251
|
+
"attributes": [
|
|
4252
|
+
{
|
|
4253
|
+
"name": "required",
|
|
4254
|
+
"type": {
|
|
4255
|
+
"text": "boolean"
|
|
4256
|
+
},
|
|
4257
|
+
"default": "false",
|
|
4258
|
+
"description": "Whether a value is required for the element.",
|
|
4259
|
+
"fieldName": "required"
|
|
4260
|
+
}
|
|
4261
|
+
],
|
|
4262
|
+
"parameters": [
|
|
4263
|
+
{
|
|
4264
|
+
"name": "base",
|
|
4265
|
+
"type": {
|
|
4266
|
+
"text": "T"
|
|
4267
|
+
},
|
|
4268
|
+
"description": "The base class."
|
|
4269
|
+
}
|
|
4270
|
+
]
|
|
4271
|
+
}
|
|
4272
|
+
],
|
|
4273
|
+
"exports": [
|
|
4274
|
+
{
|
|
4275
|
+
"kind": "js",
|
|
4276
|
+
"name": "isRequiredMixin",
|
|
4277
|
+
"declaration": {
|
|
4278
|
+
"name": "isRequiredMixin",
|
|
4279
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
4280
|
+
}
|
|
4281
|
+
},
|
|
4282
|
+
{
|
|
4283
|
+
"kind": "js",
|
|
4284
|
+
"name": "Required",
|
|
4285
|
+
"declaration": {
|
|
4286
|
+
"name": "Required",
|
|
4287
|
+
"module": "../core/src/shared/mixins/Required.ts"
|
|
4288
|
+
}
|
|
4289
|
+
}
|
|
4290
|
+
]
|
|
4291
|
+
},
|
|
4292
|
+
{
|
|
4293
|
+
"kind": "javascript-module",
|
|
4294
|
+
"path": "../core/src/shared/mixins/RequiredConstraintValidation.ts",
|
|
4295
|
+
"declarations": [
|
|
4296
|
+
{
|
|
4297
|
+
"kind": "function",
|
|
4298
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
4299
|
+
"return": {
|
|
4300
|
+
"type": {
|
|
4301
|
+
"text": ""
|
|
4302
|
+
}
|
|
4303
|
+
},
|
|
4304
|
+
"parameters": [
|
|
4305
|
+
{
|
|
4306
|
+
"name": "value",
|
|
4307
|
+
"type": {
|
|
4308
|
+
"text": "unknown"
|
|
4309
|
+
},
|
|
4310
|
+
"description": "The value to test."
|
|
4311
|
+
}
|
|
4312
|
+
],
|
|
4313
|
+
"description": "Determines whether a value is a `RequiredConstraintValidationMixin`."
|
|
4314
|
+
},
|
|
4315
|
+
{
|
|
4316
|
+
"kind": "mixin",
|
|
4317
|
+
"description": "Mixin to augment an element with behavior that supports a required state.",
|
|
4318
|
+
"name": "RequiredConstraintValidation",
|
|
4319
|
+
"parameters": [
|
|
4320
|
+
{
|
|
4321
|
+
"name": "base",
|
|
4322
|
+
"type": {
|
|
4323
|
+
"text": "T"
|
|
4324
|
+
},
|
|
4325
|
+
"description": "The base class."
|
|
4326
|
+
}
|
|
4327
|
+
]
|
|
4328
|
+
}
|
|
4329
|
+
],
|
|
4330
|
+
"exports": [
|
|
4331
|
+
{
|
|
4332
|
+
"kind": "js",
|
|
4333
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
4334
|
+
"declaration": {
|
|
4335
|
+
"name": "isRequiredConstraintValidationMixin",
|
|
4336
|
+
"module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
|
|
4337
|
+
}
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"kind": "js",
|
|
4341
|
+
"name": "RequiredConstraintValidation",
|
|
4342
|
+
"declaration": {
|
|
4343
|
+
"name": "RequiredConstraintValidation",
|
|
4344
|
+
"module": "../core/src/shared/mixins/RequiredConstraintValidation.ts"
|
|
4345
|
+
}
|
|
4346
|
+
}
|
|
4347
|
+
]
|
|
4348
|
+
},
|
|
4349
|
+
{
|
|
4350
|
+
"kind": "javascript-module",
|
|
4351
|
+
"path": "../core/src/shared/mixins/Role.ts",
|
|
4352
|
+
"declarations": [
|
|
4353
|
+
{
|
|
4354
|
+
"kind": "mixin",
|
|
4355
|
+
"description": "Mixin to augment an element with an ARIA role.",
|
|
4356
|
+
"name": "Role",
|
|
4357
|
+
"parameters": [
|
|
4358
|
+
{
|
|
4359
|
+
"name": "base",
|
|
4360
|
+
"type": {
|
|
4361
|
+
"text": "T"
|
|
4362
|
+
},
|
|
4363
|
+
"description": "The base class."
|
|
4364
|
+
},
|
|
4365
|
+
{
|
|
4366
|
+
"name": "role",
|
|
4367
|
+
"type": {
|
|
4368
|
+
"text": "ARIARole"
|
|
4369
|
+
},
|
|
4370
|
+
"description": "The ARIA role."
|
|
4371
|
+
}
|
|
4372
|
+
]
|
|
4373
|
+
}
|
|
4374
|
+
],
|
|
4375
|
+
"exports": [
|
|
4376
|
+
{
|
|
4377
|
+
"kind": "js",
|
|
4378
|
+
"name": "Role",
|
|
4379
|
+
"declaration": {
|
|
4380
|
+
"name": "Role",
|
|
4381
|
+
"module": "../core/src/shared/mixins/Role.ts"
|
|
4382
|
+
}
|
|
4383
|
+
}
|
|
4384
|
+
]
|
|
4385
|
+
},
|
|
4386
|
+
{
|
|
4387
|
+
"kind": "javascript-module",
|
|
4388
|
+
"path": "../core/src/shared/mixins/Selected.ts",
|
|
4389
|
+
"declarations": [
|
|
4390
|
+
{
|
|
4391
|
+
"kind": "function",
|
|
4392
|
+
"name": "isSelectedMixin",
|
|
4393
|
+
"return": {
|
|
4394
|
+
"type": {
|
|
4395
|
+
"text": ""
|
|
4396
|
+
}
|
|
4397
|
+
},
|
|
4398
|
+
"parameters": [
|
|
4399
|
+
{
|
|
4400
|
+
"name": "value",
|
|
4401
|
+
"type": {
|
|
4402
|
+
"text": "unknown"
|
|
4403
|
+
},
|
|
4404
|
+
"description": "The value to test."
|
|
4405
|
+
}
|
|
4406
|
+
],
|
|
4407
|
+
"description": "Determines whether a value is a `SelectedMixin`."
|
|
4408
|
+
},
|
|
4409
|
+
{
|
|
4410
|
+
"kind": "mixin",
|
|
4411
|
+
"description": "Mixin to augment an element with behavior that supports a selected state.",
|
|
4412
|
+
"name": "Selected",
|
|
4413
|
+
"members": [
|
|
4414
|
+
{
|
|
4415
|
+
"kind": "field",
|
|
4416
|
+
"name": "selected",
|
|
4417
|
+
"type": {
|
|
4418
|
+
"text": "boolean"
|
|
4419
|
+
},
|
|
4420
|
+
"default": "false",
|
|
4421
|
+
"description": "Whether the element is selected.",
|
|
4422
|
+
"attribute": "selected",
|
|
4423
|
+
"reflects": true
|
|
4424
|
+
}
|
|
4425
|
+
],
|
|
4426
|
+
"attributes": [
|
|
4427
|
+
{
|
|
4428
|
+
"name": "selected",
|
|
4429
|
+
"type": {
|
|
4430
|
+
"text": "boolean"
|
|
4431
|
+
},
|
|
4432
|
+
"default": "false",
|
|
4433
|
+
"description": "Whether the element is selected.",
|
|
4434
|
+
"fieldName": "selected"
|
|
4435
|
+
}
|
|
4436
|
+
],
|
|
4437
|
+
"parameters": [
|
|
4438
|
+
{
|
|
4439
|
+
"name": "base",
|
|
4440
|
+
"type": {
|
|
4441
|
+
"text": "T"
|
|
4442
|
+
},
|
|
4443
|
+
"description": "The base class."
|
|
4444
|
+
}
|
|
4445
|
+
]
|
|
4446
|
+
}
|
|
4447
|
+
],
|
|
4448
|
+
"exports": [
|
|
4449
|
+
{
|
|
4450
|
+
"kind": "js",
|
|
4451
|
+
"name": "isSelectedMixin",
|
|
4452
|
+
"declaration": {
|
|
4453
|
+
"name": "isSelectedMixin",
|
|
4454
|
+
"module": "../core/src/shared/mixins/Selected.ts"
|
|
4455
|
+
}
|
|
4456
|
+
},
|
|
4457
|
+
{
|
|
4458
|
+
"kind": "js",
|
|
4459
|
+
"name": "Selected",
|
|
4460
|
+
"declaration": {
|
|
4461
|
+
"name": "Selected",
|
|
4462
|
+
"module": "../core/src/shared/mixins/Selected.ts"
|
|
4463
|
+
}
|
|
4464
|
+
}
|
|
4465
|
+
]
|
|
4466
|
+
},
|
|
4467
|
+
{
|
|
4468
|
+
"kind": "javascript-module",
|
|
4469
|
+
"path": "../core/src/shared/mixins/Touched.ts",
|
|
4470
|
+
"declarations": [
|
|
4471
|
+
{
|
|
4472
|
+
"kind": "function",
|
|
4473
|
+
"name": "isTouchedMixin",
|
|
4474
|
+
"return": {
|
|
4475
|
+
"type": {
|
|
4476
|
+
"text": ""
|
|
4477
|
+
}
|
|
4478
|
+
},
|
|
4479
|
+
"parameters": [
|
|
4480
|
+
{
|
|
4481
|
+
"name": "value",
|
|
4482
|
+
"type": {
|
|
4483
|
+
"text": "unknown"
|
|
4484
|
+
},
|
|
4485
|
+
"description": "The value to test."
|
|
4486
|
+
}
|
|
4487
|
+
],
|
|
4488
|
+
"description": "Determines whether a value is a `TouchedMixin`."
|
|
4489
|
+
},
|
|
4490
|
+
{
|
|
4491
|
+
"kind": "mixin",
|
|
4492
|
+
"description": "Mixin to augment an element with functionality used to mark it as touched.",
|
|
4493
|
+
"name": "Touched",
|
|
4494
|
+
"members": [
|
|
4495
|
+
{
|
|
4496
|
+
"kind": "field",
|
|
4497
|
+
"name": "[_eventHandler]",
|
|
4498
|
+
"privacy": "private"
|
|
4499
|
+
},
|
|
4500
|
+
{
|
|
4501
|
+
"kind": "field",
|
|
4502
|
+
"name": "touched",
|
|
4503
|
+
"type": {
|
|
4504
|
+
"text": "boolean"
|
|
4505
|
+
},
|
|
4506
|
+
"description": "Whether the user has interacted when the element.",
|
|
4507
|
+
"readonly": true
|
|
4508
|
+
},
|
|
4509
|
+
{
|
|
4510
|
+
"kind": "field",
|
|
4511
|
+
"name": "untouched",
|
|
4512
|
+
"type": {
|
|
4513
|
+
"text": "boolean"
|
|
4514
|
+
},
|
|
4515
|
+
"description": "Whether the user has not interacted when the element.",
|
|
4516
|
+
"readonly": true
|
|
4517
|
+
},
|
|
4518
|
+
{
|
|
4519
|
+
"kind": "method",
|
|
4520
|
+
"name": "markAsTouched",
|
|
4521
|
+
"return": {
|
|
4522
|
+
"type": {
|
|
4523
|
+
"text": "void"
|
|
4524
|
+
}
|
|
4525
|
+
},
|
|
4526
|
+
"description": "Marks the element as touched."
|
|
4527
|
+
},
|
|
4528
|
+
{
|
|
4529
|
+
"kind": "method",
|
|
4530
|
+
"name": "markAsUntouched",
|
|
4531
|
+
"return": {
|
|
4532
|
+
"type": {
|
|
4533
|
+
"text": "void"
|
|
4534
|
+
}
|
|
4535
|
+
},
|
|
4536
|
+
"description": "Marks the element as untouched."
|
|
4537
|
+
}
|
|
4538
|
+
],
|
|
4539
|
+
"parameters": [
|
|
4540
|
+
{
|
|
4541
|
+
"name": "base",
|
|
4542
|
+
"type": {
|
|
4543
|
+
"text": "T"
|
|
4544
|
+
},
|
|
4545
|
+
"description": "The base class."
|
|
4546
|
+
}
|
|
4547
|
+
]
|
|
4548
|
+
}
|
|
4549
|
+
],
|
|
4550
|
+
"exports": [
|
|
4551
|
+
{
|
|
4552
|
+
"kind": "js",
|
|
4553
|
+
"name": "isTouchedMixin",
|
|
4554
|
+
"declaration": {
|
|
4555
|
+
"name": "isTouchedMixin",
|
|
4556
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
4557
|
+
}
|
|
4558
|
+
},
|
|
4559
|
+
{
|
|
4560
|
+
"kind": "js",
|
|
4561
|
+
"name": "Touched",
|
|
4562
|
+
"declaration": {
|
|
4563
|
+
"name": "Touched",
|
|
4564
|
+
"module": "../core/src/shared/mixins/Touched.ts"
|
|
4565
|
+
}
|
|
4566
|
+
}
|
|
4567
|
+
]
|
|
4568
|
+
},
|
|
4569
|
+
{
|
|
4570
|
+
"kind": "javascript-module",
|
|
4571
|
+
"path": "../core/src/shared/mixins/Vertical.ts",
|
|
4572
|
+
"declarations": [
|
|
4573
|
+
{
|
|
4574
|
+
"kind": "function",
|
|
4575
|
+
"name": "isVerticalMixin",
|
|
4576
|
+
"return": {
|
|
4577
|
+
"type": {
|
|
4578
|
+
"text": ""
|
|
4579
|
+
}
|
|
4580
|
+
},
|
|
4581
|
+
"parameters": [
|
|
4582
|
+
{
|
|
4583
|
+
"name": "value",
|
|
4584
|
+
"type": {
|
|
4585
|
+
"text": "unknown"
|
|
4586
|
+
},
|
|
4587
|
+
"description": "The value to test."
|
|
4588
|
+
}
|
|
4589
|
+
],
|
|
4590
|
+
"description": "Determines whether a value is a `VerticalMixin`."
|
|
4591
|
+
},
|
|
4592
|
+
{
|
|
4593
|
+
"kind": "mixin",
|
|
4594
|
+
"description": "Mixin to augment an element with behavior that supports a vertical orientation.",
|
|
4595
|
+
"name": "Vertical",
|
|
4596
|
+
"members": [
|
|
4597
|
+
{
|
|
4598
|
+
"kind": "field",
|
|
4599
|
+
"name": "vertical",
|
|
4600
|
+
"type": {
|
|
4601
|
+
"text": "boolean"
|
|
4602
|
+
},
|
|
4603
|
+
"default": "false",
|
|
4604
|
+
"description": "Whether the element is oriented vertically.",
|
|
4605
|
+
"attribute": "vertical",
|
|
4606
|
+
"reflects": true
|
|
4607
|
+
}
|
|
4608
|
+
],
|
|
4609
|
+
"attributes": [
|
|
4610
|
+
{
|
|
4611
|
+
"name": "vertical",
|
|
4612
|
+
"type": {
|
|
4613
|
+
"text": "boolean"
|
|
4614
|
+
},
|
|
4615
|
+
"default": "false",
|
|
4616
|
+
"description": "Whether the element is oriented vertically.",
|
|
4617
|
+
"fieldName": "vertical"
|
|
4618
|
+
}
|
|
4619
|
+
],
|
|
4620
|
+
"parameters": [
|
|
4621
|
+
{
|
|
4622
|
+
"name": "base",
|
|
4623
|
+
"type": {
|
|
4624
|
+
"text": "T"
|
|
4625
|
+
},
|
|
4626
|
+
"description": "The base class."
|
|
4627
|
+
}
|
|
4628
|
+
]
|
|
4629
|
+
}
|
|
4630
|
+
],
|
|
4631
|
+
"exports": [
|
|
4632
|
+
{
|
|
4633
|
+
"kind": "js",
|
|
4634
|
+
"name": "isVerticalMixin",
|
|
4635
|
+
"declaration": {
|
|
4636
|
+
"name": "isVerticalMixin",
|
|
4637
|
+
"module": "../core/src/shared/mixins/Vertical.ts"
|
|
4638
|
+
}
|
|
4639
|
+
},
|
|
4640
|
+
{
|
|
4641
|
+
"kind": "js",
|
|
4642
|
+
"name": "Vertical",
|
|
4643
|
+
"declaration": {
|
|
4644
|
+
"name": "Vertical",
|
|
4645
|
+
"module": "../core/src/shared/mixins/Vertical.ts"
|
|
4646
|
+
}
|
|
4647
|
+
}
|
|
4648
|
+
]
|
|
1751
4649
|
}
|
|
1752
4650
|
]
|
|
1753
4651
|
}
|