wjec-one 4.0.22 → 4.2.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +257 -946
- package/auth/index.d.ts +183 -183
- package/auth/index.js +1 -3
- package/config/babel.config.js +6 -14
- package/config/{eslint-config.js → eslint.config.mjs} +106 -95
- package/config/jest.config.js +3 -2
- package/config/tsconfig.json +2 -1
- package/config/utils.js +9 -2
- package/config/webpack.common.config.js +1 -2
- package/config/webpack.config.js +16 -1
- package/index.d.ts +1625 -1686
- package/index.js +44 -1
- package/layout/index.d.ts +56 -55
- package/layout/index.js +1 -1
- package/localization/index.d.ts +35 -37
- package/localization/index.js +1 -1
- package/package.json +39 -40
- package/portal/index.d.ts +127 -288
- package/portal/index.js +9 -3
- package/scripts/check-tests.js +3 -1
- package/scripts/test.js +0 -1
- package/services/index.d.ts +95 -105
- package/services/index.js +1 -3
- package/store/index.d.ts +61 -61
- package/store/index.js +1 -1
- package/store/utils/index.d.ts +1 -1
- package/store/utils/index.js +1 -1
- package/test/index.ts +4 -18
- package/test/setupTests.ts +1 -10
- package/test/setupTestsAfterEnv.ts +55 -19
- package/theme/index.d.ts +427 -79
- package/theme/index.js +1 -1
- package/umd/auth/index.js +1 -3
- package/umd/index.js +44 -1
- package/umd/layout/index.js +1 -1
- package/umd/localization/index.js +1 -1
- package/umd/portal/index.js +9 -3
- package/umd/services/index.js +1 -3
- package/umd/store/index.js +1 -1
- package/umd/store/utils/index.js +1 -1
- package/umd/theme/index.js +1 -1
- package/umd/utils/index.js +1 -3
- package/utils/index.d.ts +155 -141
- package/utils/index.js +1 -3
- package/wjec-one-project.d.ts +1 -1
package/README.md
CHANGED
|
@@ -1050,11 +1050,24 @@ Here is a list of our components along with some documentation for them.
|
|
|
1050
1050
|
<th>Description</th>
|
|
1051
1051
|
</tr>
|
|
1052
1052
|
</thead><tbody>
|
|
1053
|
+
<tr>
|
|
1054
|
+
<td>ariaControlLabels</td>
|
|
1055
|
+
<td><code>{ dot: string; next: string; previous: string; }</code></td>
|
|
1056
|
+
<td>false</td>
|
|
1057
|
+
<td><code>{
|
|
1058
|
+
dot: 'Go to slide {index}',
|
|
1059
|
+
next: 'Go to next slide',
|
|
1060
|
+
previous: 'Go to previous slide'
|
|
1061
|
+
}</code></td>
|
|
1062
|
+
<td>Accessibility labels for slide controls</td>
|
|
1063
|
+
</tr>
|
|
1064
|
+
</tbody>
|
|
1065
|
+
<tbody>
|
|
1053
1066
|
<tr>
|
|
1054
1067
|
<td>buffer</td>
|
|
1055
1068
|
<td><code>number</code></td>
|
|
1056
1069
|
<td>false</td>
|
|
1057
|
-
<td><code>
|
|
1070
|
+
<td><code>1</code></td>
|
|
1058
1071
|
<td>The number of extra slides to render at either end of the Carousel when using infinite rotation</td>
|
|
1059
1072
|
</tr>
|
|
1060
1073
|
</tbody>
|
|
@@ -1121,6 +1134,15 @@ Here is a list of our components along with some documentation for them.
|
|
|
1121
1134
|
<td>The duration (in milliseconds) of the transition between slides</td>
|
|
1122
1135
|
</tr>
|
|
1123
1136
|
</tbody>
|
|
1137
|
+
<tbody>
|
|
1138
|
+
<tr>
|
|
1139
|
+
<td>slideWidth</td>
|
|
1140
|
+
<td><code>Width<string , number></code></td>
|
|
1141
|
+
<td>false</td>
|
|
1142
|
+
<td><code>100%</code></td>
|
|
1143
|
+
<td>The width of each slide relative to the container</td>
|
|
1144
|
+
</tr>
|
|
1145
|
+
</tbody>
|
|
1124
1146
|
<tbody>
|
|
1125
1147
|
<tr>
|
|
1126
1148
|
<td>id</td>
|
|
@@ -1422,7 +1444,7 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1422
1444
|
</tr>
|
|
1423
1445
|
</tbody>
|
|
1424
1446
|
</table></details>
|
|
1425
|
-
<details><summary id="
|
|
1447
|
+
<details><summary id="emphasis">Emphasis</summary>No description provided<h3>Props</h3><table><thead>
|
|
1426
1448
|
<tr>
|
|
1427
1449
|
<th>Name</th>
|
|
1428
1450
|
<th>Type</th>
|
|
@@ -1432,86 +1454,79 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1432
1454
|
</tr>
|
|
1433
1455
|
</thead><tbody>
|
|
1434
1456
|
<tr>
|
|
1435
|
-
<td>
|
|
1436
|
-
<td><code>
|
|
1457
|
+
<td>color</td>
|
|
1458
|
+
<td><code>Color</code></td>
|
|
1437
1459
|
<td>false</td>
|
|
1438
|
-
<td><code
|
|
1460
|
+
<td><code>-</code></td>
|
|
1439
1461
|
<td>-</td>
|
|
1440
1462
|
</tr>
|
|
1441
1463
|
</tbody>
|
|
1442
1464
|
<tbody>
|
|
1443
1465
|
<tr>
|
|
1444
|
-
<td>
|
|
1445
|
-
<td><code>
|
|
1446
|
-
<td>
|
|
1466
|
+
<td>id</td>
|
|
1467
|
+
<td><code>string</code></td>
|
|
1468
|
+
<td>false</td>
|
|
1447
1469
|
<td><code>-</code></td>
|
|
1448
|
-
<td
|
|
1470
|
+
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
1449
1471
|
</tr>
|
|
1450
1472
|
</tbody>
|
|
1451
|
-
|
|
1473
|
+
</table></details>
|
|
1474
|
+
<details><summary id="filterlist">FilterList</summary>No description provided<h3>Props</h3><table><thead>
|
|
1475
|
+
<tr>
|
|
1476
|
+
<th>Name</th>
|
|
1477
|
+
<th>Type</th>
|
|
1478
|
+
<th>Required</th>
|
|
1479
|
+
<th>Default</th>
|
|
1480
|
+
<th>Description</th>
|
|
1481
|
+
</tr>
|
|
1482
|
+
</thead><tbody>
|
|
1452
1483
|
<tr>
|
|
1453
|
-
<td>
|
|
1454
|
-
<td><code>(
|
|
1484
|
+
<td>icon</td>
|
|
1485
|
+
<td><code>(props: SVGProps<SVGSVGElement>) => SVGComponent</code></td>
|
|
1455
1486
|
<td>false</td>
|
|
1456
1487
|
<td><code>-</code></td>
|
|
1457
|
-
<td
|
|
1488
|
+
<td>An SVG component that will be rendered to the left of the Input's content. Usually used to denote the purpose of the input field (for example, an envelope icon for "email address")</td>
|
|
1458
1489
|
</tr>
|
|
1459
1490
|
</tbody>
|
|
1460
1491
|
<tbody>
|
|
1461
1492
|
<tr>
|
|
1462
|
-
<td>
|
|
1463
|
-
<td><code>
|
|
1493
|
+
<td>label</td>
|
|
1494
|
+
<td><code>FormattedString</code></td>
|
|
1464
1495
|
<td>false</td>
|
|
1465
|
-
<td><code
|
|
1466
|
-
<td
|
|
1496
|
+
<td><code>-</code></td>
|
|
1497
|
+
<td>The text that will be displayed as the Input's label</td>
|
|
1467
1498
|
</tr>
|
|
1468
1499
|
</tbody>
|
|
1469
1500
|
<tbody>
|
|
1470
1501
|
<tr>
|
|
1471
|
-
<td>
|
|
1472
|
-
<td><code>string</code></td>
|
|
1502
|
+
<td>onChange</td>
|
|
1503
|
+
<td><code>(value: string) => void</code></td>
|
|
1473
1504
|
<td>false</td>
|
|
1474
1505
|
<td><code>-</code></td>
|
|
1475
|
-
<td>
|
|
1506
|
+
<td>A handler that will be invoked each time the content of the Input is changed. Provides the latest value as the only argument
|
|
1507
|
+
@param value The updated value of the Input
|
|
1508
|
+
@returns void</td>
|
|
1476
1509
|
</tr>
|
|
1477
1510
|
</tbody>
|
|
1478
|
-
|
|
1479
|
-
<details><summary id="emphasis">Emphasis</summary>No description provided<h3>Props</h3><table><thead>
|
|
1480
|
-
<tr>
|
|
1481
|
-
<th>Name</th>
|
|
1482
|
-
<th>Type</th>
|
|
1483
|
-
<th>Required</th>
|
|
1484
|
-
<th>Default</th>
|
|
1485
|
-
<th>Description</th>
|
|
1486
|
-
</tr>
|
|
1487
|
-
</thead><tbody>
|
|
1511
|
+
<tbody>
|
|
1488
1512
|
<tr>
|
|
1489
|
-
<td>
|
|
1513
|
+
<td>placeholder</td>
|
|
1490
1514
|
<td><code>string</code></td>
|
|
1491
1515
|
<td>false</td>
|
|
1492
1516
|
<td><code>-</code></td>
|
|
1493
|
-
<td
|
|
1517
|
+
<td>The text that will be displayed as the Input's placeholder when no value is present</td>
|
|
1494
1518
|
</tr>
|
|
1495
1519
|
</tbody>
|
|
1496
1520
|
<tbody>
|
|
1497
1521
|
<tr>
|
|
1498
|
-
<td>
|
|
1522
|
+
<td>value</td>
|
|
1499
1523
|
<td><code>string</code></td>
|
|
1500
1524
|
<td>false</td>
|
|
1501
1525
|
<td><code>-</code></td>
|
|
1502
|
-
<td>
|
|
1526
|
+
<td>A string that will be used as the value of the Input</td>
|
|
1503
1527
|
</tr>
|
|
1504
1528
|
</tbody>
|
|
1505
|
-
|
|
1506
|
-
<details><summary id="filterlist">FilterList</summary>No description provided<h3>Props</h3><table><thead>
|
|
1507
|
-
<tr>
|
|
1508
|
-
<th>Name</th>
|
|
1509
|
-
<th>Type</th>
|
|
1510
|
-
<th>Required</th>
|
|
1511
|
-
<th>Default</th>
|
|
1512
|
-
<th>Description</th>
|
|
1513
|
-
</tr>
|
|
1514
|
-
</thead><tbody>
|
|
1529
|
+
<tbody>
|
|
1515
1530
|
<tr>
|
|
1516
1531
|
<td>clearButtonBehaviour</td>
|
|
1517
1532
|
<td><code>"clear" , "clearAndClose" , "close"</code></td>
|
|
@@ -1558,24 +1573,6 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1558
1573
|
<td>-</td>
|
|
1559
1574
|
</tr>
|
|
1560
1575
|
</tbody>
|
|
1561
|
-
<tbody>
|
|
1562
|
-
<tr>
|
|
1563
|
-
<td>icon</td>
|
|
1564
|
-
<td><code>(props: SVGProps<SVGSVGElement>) => SVGComponent</code></td>
|
|
1565
|
-
<td>false</td>
|
|
1566
|
-
<td><code>-</code></td>
|
|
1567
|
-
<td>-</td>
|
|
1568
|
-
</tr>
|
|
1569
|
-
</tbody>
|
|
1570
|
-
<tbody>
|
|
1571
|
-
<tr>
|
|
1572
|
-
<td>label</td>
|
|
1573
|
-
<td><code>FormattedString</code></td>
|
|
1574
|
-
<td>false</td>
|
|
1575
|
-
<td><code>-</code></td>
|
|
1576
|
-
<td>-</td>
|
|
1577
|
-
</tr>
|
|
1578
|
-
</tbody>
|
|
1579
1576
|
<tbody>
|
|
1580
1577
|
<tr>
|
|
1581
1578
|
<td>loading</td>
|
|
@@ -1603,15 +1600,6 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1603
1600
|
<td>-</td>
|
|
1604
1601
|
</tr>
|
|
1605
1602
|
</tbody>
|
|
1606
|
-
<tbody>
|
|
1607
|
-
<tr>
|
|
1608
|
-
<td>onChange</td>
|
|
1609
|
-
<td><code>(value: string) => void</code></td>
|
|
1610
|
-
<td>false</td>
|
|
1611
|
-
<td><code>-</code></td>
|
|
1612
|
-
<td>-</td>
|
|
1613
|
-
</tr>
|
|
1614
|
-
</tbody>
|
|
1615
1603
|
<tbody>
|
|
1616
1604
|
<tr>
|
|
1617
1605
|
<td>onFilter</td>
|
|
@@ -1635,7 +1623,7 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1635
1623
|
<td>optionTemplate</td>
|
|
1636
1624
|
<td><code>FC<{ option: T; index: number; filteredOptions: T[]; }></code></td>
|
|
1637
1625
|
<td>false</td>
|
|
1638
|
-
<td><code>({ option }) => <React.Fragment>{option
|
|
1626
|
+
<td><code>({ option }) => <React.Fragment>{option.toString()}</React.Fragment></code></td>
|
|
1639
1627
|
<td>-</td>
|
|
1640
1628
|
</tr>
|
|
1641
1629
|
</tbody>
|
|
@@ -1650,19 +1638,10 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1650
1638
|
</tbody>
|
|
1651
1639
|
<tbody>
|
|
1652
1640
|
<tr>
|
|
1653
|
-
<td>
|
|
1654
|
-
<td><code>string</code></td>
|
|
1655
|
-
<td>false</td>
|
|
1656
|
-
<td><code>-</code></td>
|
|
1657
|
-
<td>-</td>
|
|
1658
|
-
</tr>
|
|
1659
|
-
</tbody>
|
|
1660
|
-
<tbody>
|
|
1661
|
-
<tr>
|
|
1662
|
-
<td>value</td>
|
|
1641
|
+
<td>ariaLabel</td>
|
|
1663
1642
|
<td><code>string</code></td>
|
|
1664
1643
|
<td>false</td>
|
|
1665
|
-
<td><code
|
|
1644
|
+
<td><code>formattedStringToPlainText(label)</code></td>
|
|
1666
1645
|
<td>-</td>
|
|
1667
1646
|
</tr>
|
|
1668
1647
|
</tbody>
|
|
@@ -1671,25 +1650,11 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1671
1650
|
<td>ariaCloseLabel</td>
|
|
1672
1651
|
<td><code>string</code></td>
|
|
1673
1652
|
<td>false</td>
|
|
1674
|
-
<td><code
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
<tr>
|
|
1680
|
-
<td>ariaExpanded</td>
|
|
1681
|
-
<td><code>boolean</code></td>
|
|
1682
|
-
<td>false</td>
|
|
1683
|
-
<td><code>-</code></td>
|
|
1684
|
-
<td>-</td>
|
|
1685
|
-
</tr>
|
|
1686
|
-
</tbody>
|
|
1687
|
-
<tbody>
|
|
1688
|
-
<tr>
|
|
1689
|
-
<td>ariaLabel</td>
|
|
1690
|
-
<td><code>string</code></td>
|
|
1691
|
-
<td>false</td>
|
|
1692
|
-
<td><code>-</code></td>
|
|
1653
|
+
<td><code>clearButtonBehaviour === 'clear'
|
|
1654
|
+
? 'Clear filter'
|
|
1655
|
+
: clearButtonBehaviour === 'clearAndClose'
|
|
1656
|
+
? 'Clear filter and close list'
|
|
1657
|
+
: 'Close list'</code></td>
|
|
1693
1658
|
<td>-</td>
|
|
1694
1659
|
</tr>
|
|
1695
1660
|
</tbody>
|
|
@@ -1702,24 +1667,6 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1702
1667
|
<td>-</td>
|
|
1703
1668
|
</tr>
|
|
1704
1669
|
</tbody>
|
|
1705
|
-
<tbody>
|
|
1706
|
-
<tr>
|
|
1707
|
-
<td>ariaPosInSet</td>
|
|
1708
|
-
<td><code>number</code></td>
|
|
1709
|
-
<td>false</td>
|
|
1710
|
-
<td><code>-</code></td>
|
|
1711
|
-
<td>-</td>
|
|
1712
|
-
</tr>
|
|
1713
|
-
</tbody>
|
|
1714
|
-
<tbody>
|
|
1715
|
-
<tr>
|
|
1716
|
-
<td>ariaSetSize</td>
|
|
1717
|
-
<td><code>number</code></td>
|
|
1718
|
-
<td>false</td>
|
|
1719
|
-
<td><code>-</code></td>
|
|
1720
|
-
<td>-</td>
|
|
1721
|
-
</tr>
|
|
1722
|
-
</tbody>
|
|
1723
1670
|
<tbody>
|
|
1724
1671
|
<tr>
|
|
1725
1672
|
<td>id</td>
|
|
@@ -1804,7 +1751,7 @@ Once the component unmounts, React will set `ref.current` to `null`
|
|
|
1804
1751
|
<tbody>
|
|
1805
1752
|
<tr>
|
|
1806
1753
|
<td>width</td>
|
|
1807
|
-
<td><code>
|
|
1754
|
+
<td><code>Width<string , number></code></td>
|
|
1808
1755
|
<td>false</td>
|
|
1809
1756
|
<td><code>-</code></td>
|
|
1810
1757
|
<td>-</td>
|
|
@@ -1975,16 +1922,16 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
1975
1922
|
</tr>
|
|
1976
1923
|
</thead><tbody>
|
|
1977
1924
|
<tr>
|
|
1978
|
-
<td>
|
|
1979
|
-
<td><code>
|
|
1925
|
+
<td>date</td>
|
|
1926
|
+
<td><code>Date</code></td>
|
|
1980
1927
|
<td>false</td>
|
|
1981
|
-
<td><code
|
|
1928
|
+
<td><code>-</code></td>
|
|
1982
1929
|
<td>-</td>
|
|
1983
1930
|
</tr>
|
|
1984
1931
|
</tbody>
|
|
1985
1932
|
<tbody>
|
|
1986
1933
|
<tr>
|
|
1987
|
-
<td>
|
|
1934
|
+
<td>maxDate</td>
|
|
1988
1935
|
<td><code>Date</code></td>
|
|
1989
1936
|
<td>false</td>
|
|
1990
1937
|
<td><code>-</code></td>
|
|
@@ -1993,8 +1940,8 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
1993
1940
|
</tbody>
|
|
1994
1941
|
<tbody>
|
|
1995
1942
|
<tr>
|
|
1996
|
-
<td>
|
|
1997
|
-
<td><code>
|
|
1943
|
+
<td>minDate</td>
|
|
1944
|
+
<td><code>Date</code></td>
|
|
1998
1945
|
<td>false</td>
|
|
1999
1946
|
<td><code>-</code></td>
|
|
2000
1947
|
<td>-</td>
|
|
@@ -2002,8 +1949,8 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2002
1949
|
</tbody>
|
|
2003
1950
|
<tbody>
|
|
2004
1951
|
<tr>
|
|
2005
|
-
<td>
|
|
2006
|
-
<td><code>
|
|
1952
|
+
<td>onChangeDate</td>
|
|
1953
|
+
<td><code>(date: Date) => void</code></td>
|
|
2007
1954
|
<td>false</td>
|
|
2008
1955
|
<td><code>-</code></td>
|
|
2009
1956
|
<td>-</td>
|
|
@@ -2011,8 +1958,17 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2011
1958
|
</tbody>
|
|
2012
1959
|
<tbody>
|
|
2013
1960
|
<tr>
|
|
2014
|
-
<td>
|
|
2015
|
-
<td><code>
|
|
1961
|
+
<td>type</td>
|
|
1962
|
+
<td><code>"date" , "time" , "dateTime"</code></td>
|
|
1963
|
+
<td>false</td>
|
|
1964
|
+
<td><code>dateTime</code></td>
|
|
1965
|
+
<td>-</td>
|
|
1966
|
+
</tr>
|
|
1967
|
+
</tbody>
|
|
1968
|
+
<tbody>
|
|
1969
|
+
<tr>
|
|
1970
|
+
<td>description</td>
|
|
1971
|
+
<td><code>string</code></td>
|
|
2016
1972
|
<td>false</td>
|
|
2017
1973
|
<td><code>-</code></td>
|
|
2018
1974
|
<td>-</td>
|
|
@@ -2020,8 +1976,8 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2020
1976
|
</tbody>
|
|
2021
1977
|
<tbody>
|
|
2022
1978
|
<tr>
|
|
2023
|
-
<td>
|
|
2024
|
-
<td><code>
|
|
1979
|
+
<td>disabled</td>
|
|
1980
|
+
<td><code>boolean</code></td>
|
|
2025
1981
|
<td>false</td>
|
|
2026
1982
|
<td><code>-</code></td>
|
|
2027
1983
|
<td>-</td>
|
|
@@ -2029,8 +1985,8 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2029
1985
|
</tbody>
|
|
2030
1986
|
<tbody>
|
|
2031
1987
|
<tr>
|
|
2032
|
-
<td>
|
|
2033
|
-
<td><code>
|
|
1988
|
+
<td>label</td>
|
|
1989
|
+
<td><code>any</code></td>
|
|
2034
1990
|
<td>false</td>
|
|
2035
1991
|
<td><code>-</code></td>
|
|
2036
1992
|
<td>-</td>
|
|
@@ -2056,8 +2012,8 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2056
2012
|
</tbody>
|
|
2057
2013
|
<tbody>
|
|
2058
2014
|
<tr>
|
|
2059
|
-
<td>
|
|
2060
|
-
<td><code>
|
|
2015
|
+
<td>status</td>
|
|
2016
|
+
<td><code>"error" , "success" , "warning"</code></td>
|
|
2061
2017
|
<td>false</td>
|
|
2062
2018
|
<td><code>-</code></td>
|
|
2063
2019
|
<td>-</td>
|
|
@@ -2065,8 +2021,8 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2065
2021
|
</tbody>
|
|
2066
2022
|
<tbody>
|
|
2067
2023
|
<tr>
|
|
2068
|
-
<td>
|
|
2069
|
-
<td><code>
|
|
2024
|
+
<td>statusMessage</td>
|
|
2025
|
+
<td><code>any</code></td>
|
|
2070
2026
|
<td>false</td>
|
|
2071
2027
|
<td><code>-</code></td>
|
|
2072
2028
|
<td>-</td>
|
|
@@ -2393,26 +2349,6 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2393
2349
|
<td>Determines the size at which the component is rendered: "small" (inline with other form components) or "medium" (larger block with bigger clickable area)</td>
|
|
2394
2350
|
</tr>
|
|
2395
2351
|
</tbody>
|
|
2396
|
-
<tbody>
|
|
2397
|
-
<tr>
|
|
2398
|
-
<td>files</td>
|
|
2399
|
-
<td><code>File[]</code></td>
|
|
2400
|
-
<td>false</td>
|
|
2401
|
-
<td><code>-</code></td>
|
|
2402
|
-
<td>The list of selected files
|
|
2403
|
-
@deprecated This prop has been deprecated because the FileInput component no longer persists/displays a list of selected files</td>
|
|
2404
|
-
</tr>
|
|
2405
|
-
</tbody>
|
|
2406
|
-
<tbody>
|
|
2407
|
-
<tr>
|
|
2408
|
-
<td>height</td>
|
|
2409
|
-
<td><code>Height<string , number></code></td>
|
|
2410
|
-
<td>false</td>
|
|
2411
|
-
<td><code>-</code></td>
|
|
2412
|
-
<td>The height at which the component will be rendered
|
|
2413
|
-
@deprecated Deprecated because the component now has preset sizes as determined by the "displaySize" prop</td>
|
|
2414
|
-
</tr>
|
|
2415
|
-
</tbody>
|
|
2416
2352
|
<tbody>
|
|
2417
2353
|
<tr>
|
|
2418
2354
|
<td>label</td>
|
|
@@ -2478,16 +2414,6 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2478
2414
|
<td>The placeholder text that will be displayed inside the component</td>
|
|
2479
2415
|
</tr>
|
|
2480
2416
|
</tbody>
|
|
2481
|
-
<tbody>
|
|
2482
|
-
<tr>
|
|
2483
|
-
<td>placeholderTitle</td>
|
|
2484
|
-
<td><code>string</code></td>
|
|
2485
|
-
<td>false</td>
|
|
2486
|
-
<td><code>-</code></td>
|
|
2487
|
-
<td>The placeholder title that will be displayed inside the component
|
|
2488
|
-
@deprecated Deprecated in favor of the new label prop</td>
|
|
2489
|
-
</tr>
|
|
2490
|
-
</tbody>
|
|
2491
2417
|
<tbody>
|
|
2492
2418
|
<tr>
|
|
2493
2419
|
<td>status</td>
|
|
@@ -2524,16 +2450,6 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2524
2450
|
<td>A list of mime types that determines the files that can be selected; an error will be reported via onError() if an invalid file is selected</td>
|
|
2525
2451
|
</tr>
|
|
2526
2452
|
</tbody>
|
|
2527
|
-
<tbody>
|
|
2528
|
-
<tr>
|
|
2529
|
-
<td>width</td>
|
|
2530
|
-
<td><code>Width<string , number></code></td>
|
|
2531
|
-
<td>false</td>
|
|
2532
|
-
<td><code>-</code></td>
|
|
2533
|
-
<td>The width at which the component will be rendered
|
|
2534
|
-
@deprecated Deprecated because the component now has preset sizes as determined by the "displaySize" prop</td>
|
|
2535
|
-
</tr>
|
|
2536
|
-
</tbody>
|
|
2537
2453
|
<tbody>
|
|
2538
2454
|
<tr>
|
|
2539
2455
|
<td>ariaLabel</td>
|
|
@@ -2909,7 +2825,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
2909
2825
|
<td>revealPassword</td>
|
|
2910
2826
|
<td><code>boolean</code></td>
|
|
2911
2827
|
<td>false</td>
|
|
2912
|
-
<td><code>
|
|
2828
|
+
<td><code>false</code></td>
|
|
2913
2829
|
<td>Determines whether the value of the Password field should be visible</td>
|
|
2914
2830
|
</tr>
|
|
2915
2831
|
</tbody>
|
|
@@ -3192,7 +3108,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
3192
3108
|
<tbody>
|
|
3193
3109
|
<tr>
|
|
3194
3110
|
<td>highlightColor</td>
|
|
3195
|
-
<td><code>
|
|
3111
|
+
<td><code>Color</code></td>
|
|
3196
3112
|
<td>false</td>
|
|
3197
3113
|
<td><code>ColorPalette.highlight</code></td>
|
|
3198
3114
|
<td>Determines the color used to highlight the Select component if `highlighted="true"`
|
|
@@ -3367,20 +3283,10 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
3367
3283
|
<td>-</td>
|
|
3368
3284
|
</tr>
|
|
3369
3285
|
</tbody>
|
|
3370
|
-
<tbody>
|
|
3371
|
-
<tr>
|
|
3372
|
-
<td>gridArea</td>
|
|
3373
|
-
<td><code>string</code></td>
|
|
3374
|
-
<td>false</td>
|
|
3375
|
-
<td><code>-</code></td>
|
|
3376
|
-
<td>Determines which area of the relevant CSS grid template the TextArea is assigned to
|
|
3377
|
-
@deprecated gridArea has been deprecated because WJEC One components are intended to be layout agnostic</td>
|
|
3378
|
-
</tr>
|
|
3379
|
-
</tbody>
|
|
3380
3286
|
<tbody>
|
|
3381
3287
|
<tr>
|
|
3382
3288
|
<td>height</td>
|
|
3383
|
-
<td><code>
|
|
3289
|
+
<td><code>Height<string , number></code></td>
|
|
3384
3290
|
<td>false</td>
|
|
3385
3291
|
<td><code>auto</code></td>
|
|
3386
3292
|
<td>-</td>
|
|
@@ -3407,7 +3313,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
3407
3313
|
<tbody>
|
|
3408
3314
|
<tr>
|
|
3409
3315
|
<td>maxHeight</td>
|
|
3410
|
-
<td><code>
|
|
3316
|
+
<td><code>Height<string , number></code></td>
|
|
3411
3317
|
<td>false</td>
|
|
3412
3318
|
<td><code>100%</code></td>
|
|
3413
3319
|
<td>-</td>
|
|
@@ -3416,7 +3322,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
3416
3322
|
<tbody>
|
|
3417
3323
|
<tr>
|
|
3418
3324
|
<td>maxWidth</td>
|
|
3419
|
-
<td><code>
|
|
3325
|
+
<td><code>Width<string , number></code></td>
|
|
3420
3326
|
<td>false</td>
|
|
3421
3327
|
<td><code>100%</code></td>
|
|
3422
3328
|
<td>-</td>
|
|
@@ -3479,7 +3385,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
3479
3385
|
<tbody>
|
|
3480
3386
|
<tr>
|
|
3481
3387
|
<td>width</td>
|
|
3482
|
-
<td><code>
|
|
3388
|
+
<td><code>Width<string , number></code></td>
|
|
3483
3389
|
<td>false</td>
|
|
3484
3390
|
<td><code>100%</code></td>
|
|
3485
3391
|
<td>-</td>
|
|
@@ -4242,7 +4148,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4242
4148
|
</thead><tbody>
|
|
4243
4149
|
<tr>
|
|
4244
4150
|
<td>backgroundColor</td>
|
|
4245
|
-
<td><code>
|
|
4151
|
+
<td><code>BackgroundColor</code></td>
|
|
4246
4152
|
<td>false</td>
|
|
4247
4153
|
<td><code>ColorPalette.Neutral</code></td>
|
|
4248
4154
|
<td>The background color of the progress bar</td>
|
|
@@ -4251,7 +4157,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4251
4157
|
<tbody>
|
|
4252
4158
|
<tr>
|
|
4253
4159
|
<td>color</td>
|
|
4254
|
-
<td><code>
|
|
4160
|
+
<td><code>Color</code></td>
|
|
4255
4161
|
<td>false</td>
|
|
4256
4162
|
<td><code>ColorPalette.Primary</code></td>
|
|
4257
4163
|
<td>The color of the current progress</td>
|
|
@@ -4348,96 +4254,6 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4348
4254
|
</tr>
|
|
4349
4255
|
</tbody>
|
|
4350
4256
|
</table></details>
|
|
4351
|
-
<details><summary id="localizationmenu">LocalizationMenu</summary>No description provided<h3>Props</h3><table><thead>
|
|
4352
|
-
<tr>
|
|
4353
|
-
<th>Name</th>
|
|
4354
|
-
<th>Type</th>
|
|
4355
|
-
<th>Required</th>
|
|
4356
|
-
<th>Default</th>
|
|
4357
|
-
<th>Description</th>
|
|
4358
|
-
</tr>
|
|
4359
|
-
</thead><tbody>
|
|
4360
|
-
<tr>
|
|
4361
|
-
<td>context</td>
|
|
4362
|
-
<td><code>Context<[DestructurableRecord<LocalizationState<L>>, Dispatch<Action>]></code></td>
|
|
4363
|
-
<td>true</td>
|
|
4364
|
-
<td><code>-</code></td>
|
|
4365
|
-
<td>-</td>
|
|
4366
|
-
</tr>
|
|
4367
|
-
</tbody>
|
|
4368
|
-
<tbody>
|
|
4369
|
-
<tr>
|
|
4370
|
-
<td>icons</td>
|
|
4371
|
-
<td><code>IconsMap<L></code></td>
|
|
4372
|
-
<td>false</td>
|
|
4373
|
-
<td><code>-</code></td>
|
|
4374
|
-
<td>-</td>
|
|
4375
|
-
</tr>
|
|
4376
|
-
</tbody>
|
|
4377
|
-
<tbody>
|
|
4378
|
-
<tr>
|
|
4379
|
-
<td>keySuffix</td>
|
|
4380
|
-
<td><code>string</code></td>
|
|
4381
|
-
<td>false</td>
|
|
4382
|
-
<td><code>-</code></td>
|
|
4383
|
-
<td>-</td>
|
|
4384
|
-
</tr>
|
|
4385
|
-
</tbody>
|
|
4386
|
-
<tbody>
|
|
4387
|
-
<tr>
|
|
4388
|
-
<td>open</td>
|
|
4389
|
-
<td><code>boolean</code></td>
|
|
4390
|
-
<td>false</td>
|
|
4391
|
-
<td><code>false</code></td>
|
|
4392
|
-
<td>-</td>
|
|
4393
|
-
</tr>
|
|
4394
|
-
</tbody>
|
|
4395
|
-
<tbody>
|
|
4396
|
-
<tr>
|
|
4397
|
-
<td>selectLocaleAction</td>
|
|
4398
|
-
<td><code>(locale: L) => AsyncAction</code></td>
|
|
4399
|
-
<td>true</td>
|
|
4400
|
-
<td><code>-</code></td>
|
|
4401
|
-
<td>-</td>
|
|
4402
|
-
</tr>
|
|
4403
|
-
</tbody>
|
|
4404
|
-
<tbody>
|
|
4405
|
-
<tr>
|
|
4406
|
-
<td>showLocaleNameInList</td>
|
|
4407
|
-
<td><code>boolean</code></td>
|
|
4408
|
-
<td>false</td>
|
|
4409
|
-
<td><code>true</code></td>
|
|
4410
|
-
<td>-</td>
|
|
4411
|
-
</tr>
|
|
4412
|
-
</tbody>
|
|
4413
|
-
<tbody>
|
|
4414
|
-
<tr>
|
|
4415
|
-
<td>showSelectedLocaleName</td>
|
|
4416
|
-
<td><code>boolean</code></td>
|
|
4417
|
-
<td>false</td>
|
|
4418
|
-
<td><code>-</code></td>
|
|
4419
|
-
<td>-</td>
|
|
4420
|
-
</tr>
|
|
4421
|
-
</tbody>
|
|
4422
|
-
<tbody>
|
|
4423
|
-
<tr>
|
|
4424
|
-
<td>ariaLabel</td>
|
|
4425
|
-
<td><code>string</code></td>
|
|
4426
|
-
<td>false</td>
|
|
4427
|
-
<td><code>-</code></td>
|
|
4428
|
-
<td>-</td>
|
|
4429
|
-
</tr>
|
|
4430
|
-
</tbody>
|
|
4431
|
-
<tbody>
|
|
4432
|
-
<tr>
|
|
4433
|
-
<td>id</td>
|
|
4434
|
-
<td><code>string</code></td>
|
|
4435
|
-
<td>false</td>
|
|
4436
|
-
<td><code>-</code></td>
|
|
4437
|
-
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
4438
|
-
</tr>
|
|
4439
|
-
</tbody>
|
|
4440
|
-
</table></details>
|
|
4441
4257
|
<details><summary id="modal">Modal</summary>No description provided<h3>Props</h3><table><thead>
|
|
4442
4258
|
<tr>
|
|
4443
4259
|
<th>Name</th>
|
|
@@ -4460,7 +4276,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4460
4276
|
<td>actionButtonIcon</td>
|
|
4461
4277
|
<td><code>(props: SVGProps<SVGSVGElement>) => SVGComponent</code></td>
|
|
4462
4278
|
<td>false</td>
|
|
4463
|
-
<td><code
|
|
4279
|
+
<td><code>actionType === 'negative' ? MinusIcon : ChevronRightIcon</code></td>
|
|
4464
4280
|
<td>An icon that will be display for the action button</td>
|
|
4465
4281
|
</tr>
|
|
4466
4282
|
</tbody>
|
|
@@ -4620,7 +4436,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4620
4436
|
<tbody>
|
|
4621
4437
|
<tr>
|
|
4622
4438
|
<td>notification</td>
|
|
4623
|
-
<td><code>NotificationProps</code></td>
|
|
4439
|
+
<td><code>NotificationProps , Element</code></td>
|
|
4624
4440
|
<td>false</td>
|
|
4625
4441
|
<td><code>-</code></td>
|
|
4626
4442
|
<td>A notification that will be displayed inside the modal</td>
|
|
@@ -4899,6 +4715,15 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4899
4715
|
<td>Determines the color of the Notifications title</td>
|
|
4900
4716
|
</tr>
|
|
4901
4717
|
</tbody>
|
|
4718
|
+
<tbody>
|
|
4719
|
+
<tr>
|
|
4720
|
+
<td>variant</td>
|
|
4721
|
+
<td><code>"error" , "success" , "info"</code></td>
|
|
4722
|
+
<td>false</td>
|
|
4723
|
+
<td><code>-</code></td>
|
|
4724
|
+
<td>The semantic variant of the notification (e.g., `error`).</td>
|
|
4725
|
+
</tr>
|
|
4726
|
+
</tbody>
|
|
4902
4727
|
<tbody>
|
|
4903
4728
|
<tr>
|
|
4904
4729
|
<td>ariaDescription</td>
|
|
@@ -4913,7 +4738,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
4913
4738
|
<td>ariaCloseLabel</td>
|
|
4914
4739
|
<td><code>string</code></td>
|
|
4915
4740
|
<td>false</td>
|
|
4916
|
-
<td><code
|
|
4741
|
+
<td><code>close</code></td>
|
|
4917
4742
|
<td>-</td>
|
|
4918
4743
|
</tr>
|
|
4919
4744
|
</tbody>
|
|
@@ -5064,6 +4889,15 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5064
4889
|
<td>The title to be displayed at the top of the Notification</td>
|
|
5065
4890
|
</tr>
|
|
5066
4891
|
</tbody>
|
|
4892
|
+
<tbody>
|
|
4893
|
+
<tr>
|
|
4894
|
+
<td>variant</td>
|
|
4895
|
+
<td><code>"error" , "success" , "info"</code></td>
|
|
4896
|
+
<td>false</td>
|
|
4897
|
+
<td><code>-</code></td>
|
|
4898
|
+
<td>The semantic variant of the notification (e.g., `error`).</td>
|
|
4899
|
+
</tr>
|
|
4900
|
+
</tbody>
|
|
5067
4901
|
<tbody>
|
|
5068
4902
|
<tr>
|
|
5069
4903
|
<td>id</td>
|
|
@@ -5202,6 +5036,15 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5202
5036
|
<td>The title to be displayed at the top of the Notification</td>
|
|
5203
5037
|
</tr>
|
|
5204
5038
|
</tbody>
|
|
5039
|
+
<tbody>
|
|
5040
|
+
<tr>
|
|
5041
|
+
<td>variant</td>
|
|
5042
|
+
<td><code>"error" , "success" , "info"</code></td>
|
|
5043
|
+
<td>false</td>
|
|
5044
|
+
<td><code>-</code></td>
|
|
5045
|
+
<td>The semantic variant of the notification (e.g., `error`).</td>
|
|
5046
|
+
</tr>
|
|
5047
|
+
</tbody>
|
|
5205
5048
|
<tbody>
|
|
5206
5049
|
<tr>
|
|
5207
5050
|
<td>id</td>
|
|
@@ -5340,6 +5183,15 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5340
5183
|
<td>The title to be displayed at the top of the Notification</td>
|
|
5341
5184
|
</tr>
|
|
5342
5185
|
</tbody>
|
|
5186
|
+
<tbody>
|
|
5187
|
+
<tr>
|
|
5188
|
+
<td>variant</td>
|
|
5189
|
+
<td><code>"error" , "success" , "info"</code></td>
|
|
5190
|
+
<td>false</td>
|
|
5191
|
+
<td><code>-</code></td>
|
|
5192
|
+
<td>The semantic variant of the notification (e.g., `error`).</td>
|
|
5193
|
+
</tr>
|
|
5194
|
+
</tbody>
|
|
5343
5195
|
<tbody>
|
|
5344
5196
|
<tr>
|
|
5345
5197
|
<td>id</td>
|
|
@@ -5361,7 +5213,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5361
5213
|
</thead><tbody>
|
|
5362
5214
|
<tr>
|
|
5363
5215
|
<td>color</td>
|
|
5364
|
-
<td><code>
|
|
5216
|
+
<td><code>Color</code></td>
|
|
5365
5217
|
<td>false</td>
|
|
5366
5218
|
<td><code>-</code></td>
|
|
5367
5219
|
<td>-</td>
|
|
@@ -5460,7 +5312,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5460
5312
|
</thead><tbody>
|
|
5461
5313
|
<tr>
|
|
5462
5314
|
<td>color</td>
|
|
5463
|
-
<td><code>
|
|
5315
|
+
<td><code>Color</code></td>
|
|
5464
5316
|
<td>false</td>
|
|
5465
5317
|
<td><code>-</code></td>
|
|
5466
5318
|
<td>-</td>
|
|
@@ -5487,7 +5339,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5487
5339
|
</thead><tbody>
|
|
5488
5340
|
<tr>
|
|
5489
5341
|
<td>backgroundColor</td>
|
|
5490
|
-
<td><code>
|
|
5342
|
+
<td><code>string , number , symbol , (string & {})</code></td>
|
|
5491
5343
|
<td>false</td>
|
|
5492
5344
|
<td><code>-</code></td>
|
|
5493
5345
|
<td>CSS property for the backgroundColor</td>
|
|
@@ -5496,7 +5348,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5496
5348
|
<tbody>
|
|
5497
5349
|
<tr>
|
|
5498
5350
|
<td>color</td>
|
|
5499
|
-
<td><code>
|
|
5351
|
+
<td><code>string , number , symbol , (string & {})</code></td>
|
|
5500
5352
|
<td>false</td>
|
|
5501
5353
|
<td><code>-</code></td>
|
|
5502
5354
|
<td>CSS property for the color</td>
|
|
@@ -5679,7 +5531,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5679
5531
|
<td>placement</td>
|
|
5680
5532
|
<td><code>Placement</code></td>
|
|
5681
5533
|
<td>false</td>
|
|
5682
|
-
<td><code
|
|
5534
|
+
<td><code>bottom</code></td>
|
|
5683
5535
|
<td>Determines the position of the Popup in relation to the toggle</td>
|
|
5684
5536
|
</tr>
|
|
5685
5537
|
</tbody>
|
|
@@ -5908,25 +5760,25 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
5908
5760
|
</thead><tbody>
|
|
5909
5761
|
<tr>
|
|
5910
5762
|
<td>footer</td>
|
|
5911
|
-
<td><code>FC
|
|
5763
|
+
<td><code>FC</code></td>
|
|
5912
5764
|
<td>false</td>
|
|
5913
|
-
<td><code
|
|
5765
|
+
<td><code>React.Fragment</code></td>
|
|
5914
5766
|
<td>-</td>
|
|
5915
5767
|
</tr>
|
|
5916
5768
|
</tbody>
|
|
5917
5769
|
<tbody>
|
|
5918
5770
|
<tr>
|
|
5919
5771
|
<td>header</td>
|
|
5920
|
-
<td><code>FC
|
|
5772
|
+
<td><code>FC</code></td>
|
|
5921
5773
|
<td>false</td>
|
|
5922
|
-
<td><code
|
|
5774
|
+
<td><code>React.Fragment</code></td>
|
|
5923
5775
|
<td>-</td>
|
|
5924
5776
|
</tr>
|
|
5925
5777
|
</tbody>
|
|
5926
5778
|
<tbody>
|
|
5927
5779
|
<tr>
|
|
5928
5780
|
<td>margin</td>
|
|
5929
|
-
<td><code>
|
|
5781
|
+
<td><code>Margin<string , number></code></td>
|
|
5930
5782
|
<td>false</td>
|
|
5931
5783
|
<td><code>auto</code></td>
|
|
5932
5784
|
<td>-</td>
|
|
@@ -6061,7 +5913,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6061
5913
|
<tbody>
|
|
6062
5914
|
<tr>
|
|
6063
5915
|
<td>footer</td>
|
|
6064
|
-
<td><code>FC
|
|
5916
|
+
<td><code>FC</code></td>
|
|
6065
5917
|
<td>false</td>
|
|
6066
5918
|
<td><code>-</code></td>
|
|
6067
5919
|
<td>-</td>
|
|
@@ -6070,7 +5922,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6070
5922
|
<tbody>
|
|
6071
5923
|
<tr>
|
|
6072
5924
|
<td>header</td>
|
|
6073
|
-
<td><code>FC
|
|
5925
|
+
<td><code>FC</code></td>
|
|
6074
5926
|
<td>false</td>
|
|
6075
5927
|
<td><code>-</code></td>
|
|
6076
5928
|
<td>-</td>
|
|
@@ -6079,7 +5931,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6079
5931
|
<tbody>
|
|
6080
5932
|
<tr>
|
|
6081
5933
|
<td>margin</td>
|
|
6082
|
-
<td><code>
|
|
5934
|
+
<td><code>Margin<string , number></code></td>
|
|
6083
5935
|
<td>false</td>
|
|
6084
5936
|
<td><code>-</code></td>
|
|
6085
5937
|
<td>-</td>
|
|
@@ -6169,7 +6021,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6169
6021
|
<tbody>
|
|
6170
6022
|
<tr>
|
|
6171
6023
|
<td>styles</td>
|
|
6172
|
-
<td><code>Interpolation
|
|
6024
|
+
<td><code>Interpolation , ArrayInterpolation<any></code></td>
|
|
6173
6025
|
<td>false</td>
|
|
6174
6026
|
<td><code>-</code></td>
|
|
6175
6027
|
<td>-</td>
|
|
@@ -6196,7 +6048,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6196
6048
|
</thead><tbody>
|
|
6197
6049
|
<tr>
|
|
6198
6050
|
<td>color</td>
|
|
6199
|
-
<td><code>
|
|
6051
|
+
<td><code>Color</code></td>
|
|
6200
6052
|
<td>false</td>
|
|
6201
6053
|
<td><code>-</code></td>
|
|
6202
6054
|
<td>-</td>
|
|
@@ -6223,7 +6075,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6223
6075
|
</thead><tbody>
|
|
6224
6076
|
<tr>
|
|
6225
6077
|
<td>color</td>
|
|
6226
|
-
<td><code>
|
|
6078
|
+
<td><code>Color</code></td>
|
|
6227
6079
|
<td>false</td>
|
|
6228
6080
|
<td><code>-</code></td>
|
|
6229
6081
|
<td>-</td>
|
|
@@ -6239,7 +6091,7 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6239
6091
|
</tr>
|
|
6240
6092
|
</tbody>
|
|
6241
6093
|
</table></details>
|
|
6242
|
-
<details><summary id="
|
|
6094
|
+
<details><summary id="subparagraph">SubParagraph</summary>No description provided<h3>Props</h3><table><thead>
|
|
6243
6095
|
<tr>
|
|
6244
6096
|
<th>Name</th>
|
|
6245
6097
|
<th>Type</th>
|
|
@@ -6249,721 +6101,190 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6249
6101
|
</tr>
|
|
6250
6102
|
</thead><tbody>
|
|
6251
6103
|
<tr>
|
|
6252
|
-
<td>
|
|
6253
|
-
<td><code>
|
|
6104
|
+
<td>color</td>
|
|
6105
|
+
<td><code>Color</code></td>
|
|
6254
6106
|
<td>false</td>
|
|
6255
|
-
<td><code
|
|
6107
|
+
<td><code>-</code></td>
|
|
6256
6108
|
<td>-</td>
|
|
6257
6109
|
</tr>
|
|
6258
6110
|
</tbody>
|
|
6259
6111
|
<tbody>
|
|
6260
6112
|
<tr>
|
|
6261
|
-
<td>
|
|
6262
|
-
<td><code>
|
|
6113
|
+
<td>id</td>
|
|
6114
|
+
<td><code>string</code></td>
|
|
6263
6115
|
<td>false</td>
|
|
6264
|
-
<td><code
|
|
6265
|
-
<td
|
|
6116
|
+
<td><code>-</code></td>
|
|
6117
|
+
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6266
6118
|
</tr>
|
|
6267
6119
|
</tbody>
|
|
6268
|
-
|
|
6120
|
+
</table></details>
|
|
6121
|
+
<details><summary id="subtitle">SubTitle</summary>No description provided<h3>Props</h3><table><thead>
|
|
6122
|
+
<tr>
|
|
6123
|
+
<th>Name</th>
|
|
6124
|
+
<th>Type</th>
|
|
6125
|
+
<th>Required</th>
|
|
6126
|
+
<th>Default</th>
|
|
6127
|
+
<th>Description</th>
|
|
6128
|
+
</tr>
|
|
6129
|
+
</thead><tbody>
|
|
6269
6130
|
<tr>
|
|
6270
|
-
<td>
|
|
6271
|
-
<td><code>
|
|
6131
|
+
<td>id</td>
|
|
6132
|
+
<td><code>string</code></td>
|
|
6272
6133
|
<td>false</td>
|
|
6273
|
-
<td><code
|
|
6274
|
-
<td
|
|
6134
|
+
<td><code>-</code></td>
|
|
6135
|
+
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6136
|
+
</tr>
|
|
6137
|
+
</tbody>
|
|
6138
|
+
</table></details>
|
|
6139
|
+
<details><summary id="table">Table</summary>No description provided<h3>Props</h3><table><thead>
|
|
6140
|
+
<tr>
|
|
6141
|
+
<th>Name</th>
|
|
6142
|
+
<th>Type</th>
|
|
6143
|
+
<th>Required</th>
|
|
6144
|
+
<th>Default</th>
|
|
6145
|
+
<th>Description</th>
|
|
6146
|
+
</tr>
|
|
6147
|
+
</thead><tbody>
|
|
6148
|
+
<tr>
|
|
6149
|
+
<td>columns</td>
|
|
6150
|
+
<td><code>TableColumn<T, N>[]</code></td>
|
|
6151
|
+
<td>true</td>
|
|
6152
|
+
<td><code>-</code></td>
|
|
6153
|
+
<td>A list of column configurations objects used to determine what is displayed by the Table</td>
|
|
6275
6154
|
</tr>
|
|
6276
6155
|
</tbody>
|
|
6277
6156
|
<tbody>
|
|
6278
6157
|
<tr>
|
|
6279
|
-
<td>
|
|
6280
|
-
<td><code>
|
|
6158
|
+
<td>columnOptions</td>
|
|
6159
|
+
<td><code>ColumnOptions</code></td>
|
|
6281
6160
|
<td>false</td>
|
|
6282
6161
|
<td><code>-</code></td>
|
|
6283
|
-
<td
|
|
6162
|
+
<td>Options that will be applied to all columns in the Table (some options may be overridden on a per-column basis)</td>
|
|
6284
6163
|
</tr>
|
|
6285
6164
|
</tbody>
|
|
6286
6165
|
<tbody>
|
|
6287
6166
|
<tr>
|
|
6288
|
-
<td>
|
|
6289
|
-
<td><code>
|
|
6290
|
-
<td>
|
|
6291
|
-
<td><code
|
|
6292
|
-
<td
|
|
6167
|
+
<td>data</td>
|
|
6168
|
+
<td><code>T[]</code></td>
|
|
6169
|
+
<td>true</td>
|
|
6170
|
+
<td><code>-</code></td>
|
|
6171
|
+
<td>The array of data that will be used to populate the table</td>
|
|
6293
6172
|
</tr>
|
|
6294
6173
|
</tbody>
|
|
6295
6174
|
<tbody>
|
|
6296
6175
|
<tr>
|
|
6297
|
-
<td>
|
|
6298
|
-
<td><code>(
|
|
6176
|
+
<td>keyExtractor</td>
|
|
6177
|
+
<td><code>(row: T) => Key</code></td>
|
|
6299
6178
|
<td>false</td>
|
|
6300
|
-
<td><code>(
|
|
6301
|
-
<td
|
|
6179
|
+
<td><code>(row) => data.indexOf(row)</code></td>
|
|
6180
|
+
<td>A function that will be used to return a unique key for each row; required if data contains non-primitive entries</td>
|
|
6302
6181
|
</tr>
|
|
6303
6182
|
</tbody>
|
|
6304
6183
|
<tbody>
|
|
6305
6184
|
<tr>
|
|
6306
|
-
<td>
|
|
6307
|
-
<td><code>
|
|
6185
|
+
<td>onPressRow</td>
|
|
6186
|
+
<td><code>(row: T) => void</code></td>
|
|
6308
6187
|
<td>false</td>
|
|
6309
6188
|
<td><code>-</code></td>
|
|
6310
|
-
<td
|
|
6189
|
+
<td>A handler that will be called when a row in the table is pressed</td>
|
|
6311
6190
|
</tr>
|
|
6312
6191
|
</tbody>
|
|
6313
6192
|
<tbody>
|
|
6314
6193
|
<tr>
|
|
6315
|
-
<td>
|
|
6316
|
-
<td><code>
|
|
6194
|
+
<td>onSort</td>
|
|
6195
|
+
<td><code>(columnName: string, columnIndex: number, direction: SortDirection) => void</code></td>
|
|
6317
6196
|
<td>false</td>
|
|
6318
6197
|
<td><code>-</code></td>
|
|
6319
|
-
<td
|
|
6198
|
+
<td>A handler that will be called whenever the sort order is changed as a result of the Table component's internal algorithm</td>
|
|
6320
6199
|
</tr>
|
|
6321
6200
|
</tbody>
|
|
6322
6201
|
<tbody>
|
|
6323
6202
|
<tr>
|
|
6324
|
-
<td>
|
|
6325
|
-
<td><code>
|
|
6203
|
+
<td>rowOptions</td>
|
|
6204
|
+
<td><code>RowOptions<T></code></td>
|
|
6326
6205
|
<td>false</td>
|
|
6327
|
-
<td><code
|
|
6328
|
-
<td
|
|
6206
|
+
<td><code>-</code></td>
|
|
6207
|
+
<td>Options that will be applied to all rows in the Table</td>
|
|
6329
6208
|
</tr>
|
|
6330
6209
|
</tbody>
|
|
6331
6210
|
<tbody>
|
|
6332
6211
|
<tr>
|
|
6333
|
-
<td>
|
|
6334
|
-
<td><code>
|
|
6212
|
+
<td>selectedRow</td>
|
|
6213
|
+
<td><code>unknown</code></td>
|
|
6335
6214
|
<td>false</td>
|
|
6336
6215
|
<td><code>-</code></td>
|
|
6337
|
-
<td
|
|
6216
|
+
<td>Specifies the active row. May be used to trigger visual highlight depending on rowOptions</td>
|
|
6338
6217
|
</tr>
|
|
6339
6218
|
</tbody>
|
|
6340
6219
|
<tbody>
|
|
6341
6220
|
<tr>
|
|
6342
|
-
<td>
|
|
6343
|
-
<td><code>
|
|
6221
|
+
<td>sortable</td>
|
|
6222
|
+
<td><code>boolean</code></td>
|
|
6344
6223
|
<td>false</td>
|
|
6345
6224
|
<td><code>-</code></td>
|
|
6346
|
-
<td
|
|
6225
|
+
<td>Determines whether the Table should present sortable controls (may be overridden on a per-column basis)</td>
|
|
6347
6226
|
</tr>
|
|
6348
6227
|
</tbody>
|
|
6349
6228
|
<tbody>
|
|
6350
6229
|
<tr>
|
|
6351
|
-
<td>
|
|
6352
|
-
<td><code>
|
|
6230
|
+
<td>sorted</td>
|
|
6231
|
+
<td><code>boolean</code></td>
|
|
6353
6232
|
<td>false</td>
|
|
6354
6233
|
<td><code>-</code></td>
|
|
6355
|
-
<td
|
|
6234
|
+
<td>Specifies whether the `data` is already sorted. If `true`, the component's sorting algorithm will NOT be used</td>
|
|
6356
6235
|
</tr>
|
|
6357
6236
|
</tbody>
|
|
6358
6237
|
<tbody>
|
|
6359
6238
|
<tr>
|
|
6360
|
-
<td>
|
|
6361
|
-
<td><code>
|
|
6239
|
+
<td>sortedColumn</td>
|
|
6240
|
+
<td><code>string , number</code></td>
|
|
6362
6241
|
<td>false</td>
|
|
6363
|
-
<td><code
|
|
6364
|
-
<td
|
|
6242
|
+
<td><code>(First sortable column)</code></td>
|
|
6243
|
+
<td>Specifies the sorted column, by index or column name (using column names is strongly recommended)</td>
|
|
6365
6244
|
</tr>
|
|
6366
6245
|
</tbody>
|
|
6367
6246
|
<tbody>
|
|
6368
6247
|
<tr>
|
|
6369
|
-
<td>
|
|
6370
|
-
<td><code>
|
|
6248
|
+
<td>sortedDirection</td>
|
|
6249
|
+
<td><code>SortDirection</code></td>
|
|
6371
6250
|
<td>false</td>
|
|
6372
|
-
<td><code
|
|
6373
|
-
<td
|
|
6251
|
+
<td><code>ascending</code></td>
|
|
6252
|
+
<td>Specifies the direction of the sort</td>
|
|
6374
6253
|
</tr>
|
|
6375
6254
|
</tbody>
|
|
6376
6255
|
<tbody>
|
|
6377
6256
|
<tr>
|
|
6378
|
-
<td>
|
|
6379
|
-
<td><code>
|
|
6257
|
+
<td>id</td>
|
|
6258
|
+
<td><code>string</code></td>
|
|
6380
6259
|
<td>false</td>
|
|
6381
6260
|
<td><code>-</code></td>
|
|
6382
|
-
<td
|
|
6261
|
+
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6383
6262
|
</tr>
|
|
6384
6263
|
</tbody>
|
|
6385
|
-
|
|
6264
|
+
</table></details>
|
|
6265
|
+
<details><summary id="tabs">Tabs</summary>No description provided<h3>Props</h3><table><thead>
|
|
6266
|
+
<tr>
|
|
6267
|
+
<th>Name</th>
|
|
6268
|
+
<th>Type</th>
|
|
6269
|
+
<th>Required</th>
|
|
6270
|
+
<th>Default</th>
|
|
6271
|
+
<th>Description</th>
|
|
6272
|
+
</tr>
|
|
6273
|
+
</thead><tbody>
|
|
6386
6274
|
<tr>
|
|
6387
|
-
<td>
|
|
6388
|
-
<td><code>
|
|
6275
|
+
<td>backgroundStyle</td>
|
|
6276
|
+
<td><code>"filled" , "transparent"</code></td>
|
|
6389
6277
|
<td>false</td>
|
|
6390
|
-
<td><code
|
|
6278
|
+
<td><code>filled</code></td>
|
|
6391
6279
|
<td>-</td>
|
|
6392
6280
|
</tr>
|
|
6393
6281
|
</tbody>
|
|
6394
6282
|
<tbody>
|
|
6395
6283
|
<tr>
|
|
6396
|
-
<td>
|
|
6397
|
-
<td><code>
|
|
6284
|
+
<td>disabledTabs</td>
|
|
6285
|
+
<td><code>T[]</code></td>
|
|
6398
6286
|
<td>false</td>
|
|
6399
|
-
<td><code
|
|
6400
|
-
<td>-</td>
|
|
6401
|
-
</tr>
|
|
6402
|
-
</tbody>
|
|
6403
|
-
<tbody>
|
|
6404
|
-
<tr>
|
|
6405
|
-
<td>onSignout</td>
|
|
6406
|
-
<td><code>() => void</code></td>
|
|
6407
|
-
<td>false</td>
|
|
6408
|
-
<td><code>-</code></td>
|
|
6409
|
-
<td>-</td>
|
|
6410
|
-
</tr>
|
|
6411
|
-
</tbody>
|
|
6412
|
-
<tbody>
|
|
6413
|
-
<tr>
|
|
6414
|
-
<td>onSignup</td>
|
|
6415
|
-
<td><code>() => void</code></td>
|
|
6416
|
-
<td>false</td>
|
|
6417
|
-
<td><code>-</code></td>
|
|
6418
|
-
<td>-</td>
|
|
6419
|
-
</tr>
|
|
6420
|
-
</tbody>
|
|
6421
|
-
<tbody>
|
|
6422
|
-
<tr>
|
|
6423
|
-
<td>onSubmitMfa</td>
|
|
6424
|
-
<td><code>(code: string) => void</code></td>
|
|
6425
|
-
<td>false</td>
|
|
6426
|
-
<td><code>-</code></td>
|
|
6427
|
-
<td>-</td>
|
|
6428
|
-
</tr>
|
|
6429
|
-
</tbody>
|
|
6430
|
-
<tbody>
|
|
6431
|
-
<tr>
|
|
6432
|
-
<td>isSignedIn</td>
|
|
6433
|
-
<td><code>boolean</code></td>
|
|
6434
|
-
<td>false</td>
|
|
6435
|
-
<td><code>false</code></td>
|
|
6436
|
-
<td>-</td>
|
|
6437
|
-
</tr>
|
|
6438
|
-
</tbody>
|
|
6439
|
-
<tbody>
|
|
6440
|
-
<tr>
|
|
6441
|
-
<td>loading</td>
|
|
6442
|
-
<td><code>boolean</code></td>
|
|
6443
|
-
<td>false</td>
|
|
6444
|
-
<td><code>-</code></td>
|
|
6445
|
-
<td>-</td>
|
|
6446
|
-
</tr>
|
|
6447
|
-
</tbody>
|
|
6448
|
-
<tbody>
|
|
6449
|
-
<tr>
|
|
6450
|
-
<td>username</td>
|
|
6451
|
-
<td><code>string</code></td>
|
|
6452
|
-
<td>false</td>
|
|
6453
|
-
<td><code>-</code></td>
|
|
6454
|
-
<td>-</td>
|
|
6455
|
-
</tr>
|
|
6456
|
-
</tbody>
|
|
6457
|
-
<tbody>
|
|
6458
|
-
<tr>
|
|
6459
|
-
<td>i18n</td>
|
|
6460
|
-
<td><code>{ cancel?: FormattedString; code?: FormattedString; forgotPassword?: FormattedString; newPassword?: FormattedString; password?: FormattedString; repeatNewPassword?: FormattedString; username?: FormattedString; changePasswordPrompt?: FormattedString; changePasswordSubmit?: FormattedString; changePasswordTitle?: Forma...</code></td>
|
|
6461
|
-
<td>false</td>
|
|
6462
|
-
<td><code>-</code></td>
|
|
6463
|
-
<td>-</td>
|
|
6464
|
-
</tr>
|
|
6465
|
-
</tbody>
|
|
6466
|
-
<tbody>
|
|
6467
|
-
<tr>
|
|
6468
|
-
<td>ariaDescription</td>
|
|
6469
|
-
<td><code>string</code></td>
|
|
6470
|
-
<td>false</td>
|
|
6471
|
-
<td><code>-</code></td>
|
|
6472
|
-
<td>-</td>
|
|
6473
|
-
</tr>
|
|
6474
|
-
</tbody>
|
|
6475
|
-
<tbody>
|
|
6476
|
-
<tr>
|
|
6477
|
-
<td>ariaLabel</td>
|
|
6478
|
-
<td><code>string</code></td>
|
|
6479
|
-
<td>false</td>
|
|
6480
|
-
<td><code>-</code></td>
|
|
6481
|
-
<td>-</td>
|
|
6482
|
-
</tr>
|
|
6483
|
-
</tbody>
|
|
6484
|
-
<tbody>
|
|
6485
|
-
<tr>
|
|
6486
|
-
<td>id</td>
|
|
6487
|
-
<td><code>string</code></td>
|
|
6488
|
-
<td>false</td>
|
|
6489
|
-
<td><code>-</code></td>
|
|
6490
|
-
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6491
|
-
</tr>
|
|
6492
|
-
</tbody>
|
|
6493
|
-
</table></details>
|
|
6494
|
-
<details><summary id="signinmenu">SigninMenu</summary>No description provided<h3>Props</h3><table><thead>
|
|
6495
|
-
<tr>
|
|
6496
|
-
<th>Name</th>
|
|
6497
|
-
<th>Type</th>
|
|
6498
|
-
<th>Required</th>
|
|
6499
|
-
<th>Default</th>
|
|
6500
|
-
<th>Description</th>
|
|
6501
|
-
</tr>
|
|
6502
|
-
</thead><tbody>
|
|
6503
|
-
<tr>
|
|
6504
|
-
<td>allowForgotPassword</td>
|
|
6505
|
-
<td><code>boolean</code></td>
|
|
6506
|
-
<td>false</td>
|
|
6507
|
-
<td><code>-</code></td>
|
|
6508
|
-
<td>-</td>
|
|
6509
|
-
</tr>
|
|
6510
|
-
</tbody>
|
|
6511
|
-
<tbody>
|
|
6512
|
-
<tr>
|
|
6513
|
-
<td>allowSignup</td>
|
|
6514
|
-
<td><code>boolean</code></td>
|
|
6515
|
-
<td>false</td>
|
|
6516
|
-
<td><code>-</code></td>
|
|
6517
|
-
<td>-</td>
|
|
6518
|
-
</tr>
|
|
6519
|
-
</tbody>
|
|
6520
|
-
<tbody>
|
|
6521
|
-
<tr>
|
|
6522
|
-
<td>autocomplete</td>
|
|
6523
|
-
<td><code>boolean</code></td>
|
|
6524
|
-
<td>false</td>
|
|
6525
|
-
<td><code>-</code></td>
|
|
6526
|
-
<td>-</td>
|
|
6527
|
-
</tr>
|
|
6528
|
-
</tbody>
|
|
6529
|
-
<tbody>
|
|
6530
|
-
<tr>
|
|
6531
|
-
<td>enforceFormCompletion</td>
|
|
6532
|
-
<td><code>boolean</code></td>
|
|
6533
|
-
<td>false</td>
|
|
6534
|
-
<td><code>-</code></td>
|
|
6535
|
-
<td>-</td>
|
|
6536
|
-
</tr>
|
|
6537
|
-
</tbody>
|
|
6538
|
-
<tbody>
|
|
6539
|
-
<tr>
|
|
6540
|
-
<td>padding</td>
|
|
6541
|
-
<td><code>any</code></td>
|
|
6542
|
-
<td>false</td>
|
|
6543
|
-
<td><code>-</code></td>
|
|
6544
|
-
<td>-</td>
|
|
6545
|
-
</tr>
|
|
6546
|
-
</tbody>
|
|
6547
|
-
<tbody>
|
|
6548
|
-
<tr>
|
|
6549
|
-
<td>passwordValidator</td>
|
|
6550
|
-
<td><code>(passwordA: string, passwordB: string) => boolean</code></td>
|
|
6551
|
-
<td>false</td>
|
|
6552
|
-
<td><code>-</code></td>
|
|
6553
|
-
<td>-</td>
|
|
6554
|
-
</tr>
|
|
6555
|
-
</tbody>
|
|
6556
|
-
<tbody>
|
|
6557
|
-
<tr>
|
|
6558
|
-
<td>profileActions</td>
|
|
6559
|
-
<td><code>ProfileAction[]</code></td>
|
|
6560
|
-
<td>false</td>
|
|
6561
|
-
<td><code>-</code></td>
|
|
6562
|
-
<td>-</td>
|
|
6563
|
-
</tr>
|
|
6564
|
-
</tbody>
|
|
6565
|
-
<tbody>
|
|
6566
|
-
<tr>
|
|
6567
|
-
<td>repeatNewPassword</td>
|
|
6568
|
-
<td><code>boolean</code></td>
|
|
6569
|
-
<td>false</td>
|
|
6570
|
-
<td><code>-</code></td>
|
|
6571
|
-
<td>-</td>
|
|
6572
|
-
</tr>
|
|
6573
|
-
</tbody>
|
|
6574
|
-
<tbody>
|
|
6575
|
-
<tr>
|
|
6576
|
-
<td>type</td>
|
|
6577
|
-
<td><code>"changePassword" , "confirmResetPassword" , "external" , "forceChangePassword" , "internal" , "mfa" , "requestResetPassword"</code></td>
|
|
6578
|
-
<td>false</td>
|
|
6579
|
-
<td><code>-</code></td>
|
|
6580
|
-
<td>-</td>
|
|
6581
|
-
</tr>
|
|
6582
|
-
</tbody>
|
|
6583
|
-
<tbody>
|
|
6584
|
-
<tr>
|
|
6585
|
-
<td>onCancel</td>
|
|
6586
|
-
<td><code>() => void</code></td>
|
|
6587
|
-
<td>false</td>
|
|
6588
|
-
<td><code>-</code></td>
|
|
6589
|
-
<td>-</td>
|
|
6590
|
-
</tr>
|
|
6591
|
-
</tbody>
|
|
6592
|
-
<tbody>
|
|
6593
|
-
<tr>
|
|
6594
|
-
<td>onChangePassword</td>
|
|
6595
|
-
<td><code>(oldPassword: string, newPassword: string) => void</code></td>
|
|
6596
|
-
<td>false</td>
|
|
6597
|
-
<td><code>-</code></td>
|
|
6598
|
-
<td>-</td>
|
|
6599
|
-
</tr>
|
|
6600
|
-
</tbody>
|
|
6601
|
-
<tbody>
|
|
6602
|
-
<tr>
|
|
6603
|
-
<td>onConfirmResetPassword</td>
|
|
6604
|
-
<td><code>(username: string, newPassword: string, code: string) => void</code></td>
|
|
6605
|
-
<td>false</td>
|
|
6606
|
-
<td><code>-</code></td>
|
|
6607
|
-
<td>-</td>
|
|
6608
|
-
</tr>
|
|
6609
|
-
</tbody>
|
|
6610
|
-
<tbody>
|
|
6611
|
-
<tr>
|
|
6612
|
-
<td>onForceChangePassword</td>
|
|
6613
|
-
<td><code>(newPassword: string) => void</code></td>
|
|
6614
|
-
<td>false</td>
|
|
6615
|
-
<td><code>-</code></td>
|
|
6616
|
-
<td>-</td>
|
|
6617
|
-
</tr>
|
|
6618
|
-
</tbody>
|
|
6619
|
-
<tbody>
|
|
6620
|
-
<tr>
|
|
6621
|
-
<td>onForgotPassword</td>
|
|
6622
|
-
<td><code>() => void</code></td>
|
|
6623
|
-
<td>false</td>
|
|
6624
|
-
<td><code>-</code></td>
|
|
6625
|
-
<td>-</td>
|
|
6626
|
-
</tr>
|
|
6627
|
-
</tbody>
|
|
6628
|
-
<tbody>
|
|
6629
|
-
<tr>
|
|
6630
|
-
<td>onHaveResetCode</td>
|
|
6631
|
-
<td><code>() => void</code></td>
|
|
6632
|
-
<td>false</td>
|
|
6633
|
-
<td><code>-</code></td>
|
|
6634
|
-
<td>-</td>
|
|
6635
|
-
</tr>
|
|
6636
|
-
</tbody>
|
|
6637
|
-
<tbody>
|
|
6638
|
-
<tr>
|
|
6639
|
-
<td>onRequestResetPassword</td>
|
|
6640
|
-
<td><code>(username: string) => void</code></td>
|
|
6641
|
-
<td>false</td>
|
|
6642
|
-
<td><code>-</code></td>
|
|
6643
|
-
<td>-</td>
|
|
6644
|
-
</tr>
|
|
6645
|
-
</tbody>
|
|
6646
|
-
<tbody>
|
|
6647
|
-
<tr>
|
|
6648
|
-
<td>onSignin</td>
|
|
6649
|
-
<td><code>(username?: string, password?: string) => void</code></td>
|
|
6650
|
-
<td>false</td>
|
|
6651
|
-
<td><code>-</code></td>
|
|
6652
|
-
<td>-</td>
|
|
6653
|
-
</tr>
|
|
6654
|
-
</tbody>
|
|
6655
|
-
<tbody>
|
|
6656
|
-
<tr>
|
|
6657
|
-
<td>onSignout</td>
|
|
6658
|
-
<td><code>() => void</code></td>
|
|
6659
|
-
<td>false</td>
|
|
6660
|
-
<td><code>-</code></td>
|
|
6661
|
-
<td>-</td>
|
|
6662
|
-
</tr>
|
|
6663
|
-
</tbody>
|
|
6664
|
-
<tbody>
|
|
6665
|
-
<tr>
|
|
6666
|
-
<td>onSignup</td>
|
|
6667
|
-
<td><code>() => void</code></td>
|
|
6668
|
-
<td>false</td>
|
|
6669
|
-
<td><code>-</code></td>
|
|
6670
|
-
<td>-</td>
|
|
6671
|
-
</tr>
|
|
6672
|
-
</tbody>
|
|
6673
|
-
<tbody>
|
|
6674
|
-
<tr>
|
|
6675
|
-
<td>onSubmitMfa</td>
|
|
6676
|
-
<td><code>(code: string) => void</code></td>
|
|
6677
|
-
<td>false</td>
|
|
6678
|
-
<td><code>-</code></td>
|
|
6679
|
-
<td>-</td>
|
|
6680
|
-
</tr>
|
|
6681
|
-
</tbody>
|
|
6682
|
-
<tbody>
|
|
6683
|
-
<tr>
|
|
6684
|
-
<td>isSignedIn</td>
|
|
6685
|
-
<td><code>boolean</code></td>
|
|
6686
|
-
<td>false</td>
|
|
6687
|
-
<td><code>-</code></td>
|
|
6688
|
-
<td>-</td>
|
|
6689
|
-
</tr>
|
|
6690
|
-
</tbody>
|
|
6691
|
-
<tbody>
|
|
6692
|
-
<tr>
|
|
6693
|
-
<td>loading</td>
|
|
6694
|
-
<td><code>boolean</code></td>
|
|
6695
|
-
<td>false</td>
|
|
6696
|
-
<td><code>-</code></td>
|
|
6697
|
-
<td>-</td>
|
|
6698
|
-
</tr>
|
|
6699
|
-
</tbody>
|
|
6700
|
-
<tbody>
|
|
6701
|
-
<tr>
|
|
6702
|
-
<td>username</td>
|
|
6703
|
-
<td><code>string</code></td>
|
|
6704
|
-
<td>false</td>
|
|
6705
|
-
<td><code>-</code></td>
|
|
6706
|
-
<td>-</td>
|
|
6707
|
-
</tr>
|
|
6708
|
-
</tbody>
|
|
6709
|
-
<tbody>
|
|
6710
|
-
<tr>
|
|
6711
|
-
<td>i18n</td>
|
|
6712
|
-
<td><code>{ cancel?: FormattedString; code?: FormattedString; forgotPassword?: FormattedString; newPassword?: FormattedString; password?: FormattedString; repeatNewPassword?: FormattedString; username?: FormattedString; changePasswordPrompt?: FormattedString; changePasswordSubmit?: FormattedString; changePasswordTitle?: Forma...</code></td>
|
|
6713
|
-
<td>false</td>
|
|
6714
|
-
<td><code>-</code></td>
|
|
6715
|
-
<td>-</td>
|
|
6716
|
-
</tr>
|
|
6717
|
-
</tbody>
|
|
6718
|
-
<tbody>
|
|
6719
|
-
<tr>
|
|
6720
|
-
<td>ariaDescription</td>
|
|
6721
|
-
<td><code>string</code></td>
|
|
6722
|
-
<td>false</td>
|
|
6723
|
-
<td><code>-</code></td>
|
|
6724
|
-
<td>-</td>
|
|
6725
|
-
</tr>
|
|
6726
|
-
</tbody>
|
|
6727
|
-
<tbody>
|
|
6728
|
-
<tr>
|
|
6729
|
-
<td>ariaLabel</td>
|
|
6730
|
-
<td><code>string</code></td>
|
|
6731
|
-
<td>false</td>
|
|
6732
|
-
<td><code>-</code></td>
|
|
6733
|
-
<td>-</td>
|
|
6734
|
-
</tr>
|
|
6735
|
-
</tbody>
|
|
6736
|
-
<tbody>
|
|
6737
|
-
<tr>
|
|
6738
|
-
<td>id</td>
|
|
6739
|
-
<td><code>string</code></td>
|
|
6740
|
-
<td>false</td>
|
|
6741
|
-
<td><code>-</code></td>
|
|
6742
|
-
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6743
|
-
</tr>
|
|
6744
|
-
</tbody>
|
|
6745
|
-
<tbody>
|
|
6746
|
-
<tr>
|
|
6747
|
-
<td>onClose</td>
|
|
6748
|
-
<td><code>() => void</code></td>
|
|
6749
|
-
<td>false</td>
|
|
6750
|
-
<td><code>-</code></td>
|
|
6751
|
-
<td>-</td>
|
|
6752
|
-
</tr>
|
|
6753
|
-
</tbody>
|
|
6754
|
-
<tbody>
|
|
6755
|
-
<tr>
|
|
6756
|
-
<td>onOpen</td>
|
|
6757
|
-
<td><code>() => void</code></td>
|
|
6758
|
-
<td>false</td>
|
|
6759
|
-
<td><code>-</code></td>
|
|
6760
|
-
<td>-</td>
|
|
6761
|
-
</tr>
|
|
6762
|
-
</tbody>
|
|
6763
|
-
<tbody>
|
|
6764
|
-
<tr>
|
|
6765
|
-
<td>open</td>
|
|
6766
|
-
<td><code>boolean</code></td>
|
|
6767
|
-
<td>false</td>
|
|
6768
|
-
<td><code>false</code></td>
|
|
6769
|
-
<td>-</td>
|
|
6770
|
-
</tr>
|
|
6771
|
-
</tbody>
|
|
6772
|
-
</table></details>
|
|
6773
|
-
<details><summary id="subparagraph">SubParagraph</summary>No description provided<h3>Props</h3><table><thead>
|
|
6774
|
-
<tr>
|
|
6775
|
-
<th>Name</th>
|
|
6776
|
-
<th>Type</th>
|
|
6777
|
-
<th>Required</th>
|
|
6778
|
-
<th>Default</th>
|
|
6779
|
-
<th>Description</th>
|
|
6780
|
-
</tr>
|
|
6781
|
-
</thead><tbody>
|
|
6782
|
-
<tr>
|
|
6783
|
-
<td>color</td>
|
|
6784
|
-
<td><code>string</code></td>
|
|
6785
|
-
<td>false</td>
|
|
6786
|
-
<td><code>-</code></td>
|
|
6787
|
-
<td>-</td>
|
|
6788
|
-
</tr>
|
|
6789
|
-
</tbody>
|
|
6790
|
-
<tbody>
|
|
6791
|
-
<tr>
|
|
6792
|
-
<td>id</td>
|
|
6793
|
-
<td><code>string</code></td>
|
|
6794
|
-
<td>false</td>
|
|
6795
|
-
<td><code>-</code></td>
|
|
6796
|
-
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6797
|
-
</tr>
|
|
6798
|
-
</tbody>
|
|
6799
|
-
</table></details>
|
|
6800
|
-
<details><summary id="subtitle">SubTitle</summary>No description provided<h3>Props</h3><table><thead>
|
|
6801
|
-
<tr>
|
|
6802
|
-
<th>Name</th>
|
|
6803
|
-
<th>Type</th>
|
|
6804
|
-
<th>Required</th>
|
|
6805
|
-
<th>Default</th>
|
|
6806
|
-
<th>Description</th>
|
|
6807
|
-
</tr>
|
|
6808
|
-
</thead><tbody>
|
|
6809
|
-
<tr>
|
|
6810
|
-
<td>id</td>
|
|
6811
|
-
<td><code>string</code></td>
|
|
6812
|
-
<td>false</td>
|
|
6813
|
-
<td><code>-</code></td>
|
|
6814
|
-
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6815
|
-
</tr>
|
|
6816
|
-
</tbody>
|
|
6817
|
-
</table></details>
|
|
6818
|
-
<details><summary id="table">Table</summary>No description provided<h3>Props</h3><table><thead>
|
|
6819
|
-
<tr>
|
|
6820
|
-
<th>Name</th>
|
|
6821
|
-
<th>Type</th>
|
|
6822
|
-
<th>Required</th>
|
|
6823
|
-
<th>Default</th>
|
|
6824
|
-
<th>Description</th>
|
|
6825
|
-
</tr>
|
|
6826
|
-
</thead><tbody>
|
|
6827
|
-
<tr>
|
|
6828
|
-
<td>columns</td>
|
|
6829
|
-
<td><code>TableColumn<T, N>[]</code></td>
|
|
6830
|
-
<td>true</td>
|
|
6831
|
-
<td><code>-</code></td>
|
|
6832
|
-
<td>A list of column configurations objects used to determine what is displayed by the Table</td>
|
|
6833
|
-
</tr>
|
|
6834
|
-
</tbody>
|
|
6835
|
-
<tbody>
|
|
6836
|
-
<tr>
|
|
6837
|
-
<td>columnOptions</td>
|
|
6838
|
-
<td><code>ColumnOptions</code></td>
|
|
6839
|
-
<td>false</td>
|
|
6840
|
-
<td><code>-</code></td>
|
|
6841
|
-
<td>Options that will be applied to all columns in the Table (some options may be overridden on a per-column basis)</td>
|
|
6842
|
-
</tr>
|
|
6843
|
-
</tbody>
|
|
6844
|
-
<tbody>
|
|
6845
|
-
<tr>
|
|
6846
|
-
<td>data</td>
|
|
6847
|
-
<td><code>T[]</code></td>
|
|
6848
|
-
<td>true</td>
|
|
6849
|
-
<td><code>-</code></td>
|
|
6850
|
-
<td>The array of data that will be used to populate the table</td>
|
|
6851
|
-
</tr>
|
|
6852
|
-
</tbody>
|
|
6853
|
-
<tbody>
|
|
6854
|
-
<tr>
|
|
6855
|
-
<td>keyExtractor</td>
|
|
6856
|
-
<td><code>(row: T) => Key</code></td>
|
|
6857
|
-
<td>false</td>
|
|
6858
|
-
<td><code>(row) => data.indexOf(row)</code></td>
|
|
6859
|
-
<td>A function that will be used to return a unique key for each row; required if data contains non-primitive entries</td>
|
|
6860
|
-
</tr>
|
|
6861
|
-
</tbody>
|
|
6862
|
-
<tbody>
|
|
6863
|
-
<tr>
|
|
6864
|
-
<td>onPressRow</td>
|
|
6865
|
-
<td><code>(row: T) => void</code></td>
|
|
6866
|
-
<td>false</td>
|
|
6867
|
-
<td><code>-</code></td>
|
|
6868
|
-
<td>A handler that will be called when a row in the table is pressed</td>
|
|
6869
|
-
</tr>
|
|
6870
|
-
</tbody>
|
|
6871
|
-
<tbody>
|
|
6872
|
-
<tr>
|
|
6873
|
-
<td>onSort</td>
|
|
6874
|
-
<td><code>(columnName: string, columnIndex: number, direction: SortDirection) => void</code></td>
|
|
6875
|
-
<td>false</td>
|
|
6876
|
-
<td><code>-</code></td>
|
|
6877
|
-
<td>A handler that will be called whenever the sort order is changed as a result of the Table component's internal algorithm</td>
|
|
6878
|
-
</tr>
|
|
6879
|
-
</tbody>
|
|
6880
|
-
<tbody>
|
|
6881
|
-
<tr>
|
|
6882
|
-
<td>rowOptions</td>
|
|
6883
|
-
<td><code>RowOptions<T></code></td>
|
|
6884
|
-
<td>false</td>
|
|
6885
|
-
<td><code>-</code></td>
|
|
6886
|
-
<td>Options that will be applied to all rows in the Table</td>
|
|
6887
|
-
</tr>
|
|
6888
|
-
</tbody>
|
|
6889
|
-
<tbody>
|
|
6890
|
-
<tr>
|
|
6891
|
-
<td>selectedRow</td>
|
|
6892
|
-
<td><code>unknown</code></td>
|
|
6893
|
-
<td>false</td>
|
|
6894
|
-
<td><code>-</code></td>
|
|
6895
|
-
<td>Specifies the active row. May be used to trigger visual highlight depending on rowOptions</td>
|
|
6896
|
-
</tr>
|
|
6897
|
-
</tbody>
|
|
6898
|
-
<tbody>
|
|
6899
|
-
<tr>
|
|
6900
|
-
<td>sortable</td>
|
|
6901
|
-
<td><code>boolean</code></td>
|
|
6902
|
-
<td>false</td>
|
|
6903
|
-
<td><code>-</code></td>
|
|
6904
|
-
<td>Determines whether the Table should present sortable controls (may be overridden on a per-column basis)</td>
|
|
6905
|
-
</tr>
|
|
6906
|
-
</tbody>
|
|
6907
|
-
<tbody>
|
|
6908
|
-
<tr>
|
|
6909
|
-
<td>sorted</td>
|
|
6910
|
-
<td><code>boolean</code></td>
|
|
6911
|
-
<td>false</td>
|
|
6912
|
-
<td><code>-</code></td>
|
|
6913
|
-
<td>Specifies whether the `data` is already sorted. If `true`, the component's sorting algorithm will NOT be used</td>
|
|
6914
|
-
</tr>
|
|
6915
|
-
</tbody>
|
|
6916
|
-
<tbody>
|
|
6917
|
-
<tr>
|
|
6918
|
-
<td>sortedColumn</td>
|
|
6919
|
-
<td><code>string , number</code></td>
|
|
6920
|
-
<td>false</td>
|
|
6921
|
-
<td><code>(First sortable column)</code></td>
|
|
6922
|
-
<td>Specifies the sorted column, by index or column name (using column names is strongly recommended)</td>
|
|
6923
|
-
</tr>
|
|
6924
|
-
</tbody>
|
|
6925
|
-
<tbody>
|
|
6926
|
-
<tr>
|
|
6927
|
-
<td>sortedDirection</td>
|
|
6928
|
-
<td><code>SortDirection</code></td>
|
|
6929
|
-
<td>false</td>
|
|
6930
|
-
<td><code>"ascending"</code></td>
|
|
6931
|
-
<td>Specifies the direction of the sort</td>
|
|
6932
|
-
</tr>
|
|
6933
|
-
</tbody>
|
|
6934
|
-
<tbody>
|
|
6935
|
-
<tr>
|
|
6936
|
-
<td>id</td>
|
|
6937
|
-
<td><code>string</code></td>
|
|
6938
|
-
<td>false</td>
|
|
6939
|
-
<td><code>-</code></td>
|
|
6940
|
-
<td>The identifier that will be passed through to the underlying HTML element</td>
|
|
6941
|
-
</tr>
|
|
6942
|
-
</tbody>
|
|
6943
|
-
</table></details>
|
|
6944
|
-
<details><summary id="tabs">Tabs</summary>No description provided<h3>Props</h3><table><thead>
|
|
6945
|
-
<tr>
|
|
6946
|
-
<th>Name</th>
|
|
6947
|
-
<th>Type</th>
|
|
6948
|
-
<th>Required</th>
|
|
6949
|
-
<th>Default</th>
|
|
6950
|
-
<th>Description</th>
|
|
6951
|
-
</tr>
|
|
6952
|
-
</thead><tbody>
|
|
6953
|
-
<tr>
|
|
6954
|
-
<td>backgroundStyle</td>
|
|
6955
|
-
<td><code>"filled" , "transparent"</code></td>
|
|
6956
|
-
<td>false</td>
|
|
6957
|
-
<td><code>filled</code></td>
|
|
6958
|
-
<td>-</td>
|
|
6959
|
-
</tr>
|
|
6960
|
-
</tbody>
|
|
6961
|
-
<tbody>
|
|
6962
|
-
<tr>
|
|
6963
|
-
<td>disabledTabs</td>
|
|
6964
|
-
<td><code>T[]</code></td>
|
|
6965
|
-
<td>false</td>
|
|
6966
|
-
<td><code>[]</code></td>
|
|
6287
|
+
<td><code>[]</code></td>
|
|
6967
6288
|
<td>-</td>
|
|
6968
6289
|
</tr>
|
|
6969
6290
|
</tbody>
|
|
@@ -6994,16 +6315,6 @@ The identifier that will be passed through to the underlying HTML element</td>
|
|
|
6994
6315
|
<td>-</td>
|
|
6995
6316
|
</tr>
|
|
6996
6317
|
</tbody>
|
|
6997
|
-
<tbody>
|
|
6998
|
-
<tr>
|
|
6999
|
-
<td>scrollable</td>
|
|
7000
|
-
<td><code>boolean</code></td>
|
|
7001
|
-
<td>false</td>
|
|
7002
|
-
<td><code>-</code></td>
|
|
7003
|
-
<td>@deprecated The "scrollable" prop is now redundant, and the component
|
|
7004
|
-
will behave as though scrollable={true} in all cases</td>
|
|
7005
|
-
</tr>
|
|
7006
|
-
</tbody>
|
|
7007
6318
|
<tbody>
|
|
7008
6319
|
<tr>
|
|
7009
6320
|
<td>selectedTab</td>
|
|
@@ -7016,7 +6327,7 @@ will behave as though scrollable={true} in all cases</td>
|
|
|
7016
6327
|
<tbody>
|
|
7017
6328
|
<tr>
|
|
7018
6329
|
<td>selectedTabColor</td>
|
|
7019
|
-
<td><code>
|
|
6330
|
+
<td><code>Color</code></td>
|
|
7020
6331
|
<td>false</td>
|
|
7021
6332
|
<td><code>-</code></td>
|
|
7022
6333
|
<td>-</td>
|