@jack-henry/jh-elements 2.0.0-beta.14 → 2.0.0-beta.15
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/NOTICE +1 -1
- package/README.md +2 -2
- package/components/badge/badge.js +4 -4
- package/components/button/button.js +8 -13
- package/components/card/card.js +4 -4
- package/components/checkbox/checkbox.js +19 -31
- package/components/checkbox-group/checkbox-group.js +12 -20
- package/components/divider/divider.js +5 -5
- package/components/element/element.js +94 -0
- package/components/icon/icon.js +14 -12
- package/components/input/input.js +63 -64
- package/components/input-email/input-email.js +1 -1
- package/components/input-password/input-password.js +3 -12
- package/components/input-search/input-search.js +1 -1
- package/components/input-telephone/input-telephone.js +1 -1
- package/components/input-textarea/input-textarea.js +4 -13
- package/components/input-url/input-url.js +1 -1
- package/components/list-group/list-group.js +6 -13
- package/components/list-item/list-item.js +131 -143
- package/components/menu/menu.js +5 -8
- package/components/notification/notification.js +5 -15
- package/components/progress/progress.js +62 -56
- package/components/radio/radio.js +8 -21
- package/components/radio-group/radio-group.js +16 -31
- package/components/select/select.js +51 -30
- package/components/switch/switch.js +9 -22
- package/components/table/table.js +7 -14
- package/components/table-data-cell/table-data-cell.js +5 -8
- package/components/table-header-cell/table-header-cell.js +14 -24
- package/components/table-row/table-row.js +5 -8
- package/components/tag/tag.js +5 -10
- package/components/tag-group/tag-group.js +5 -7
- package/components/toast/toast.js +5 -14
- package/components/tooltip/tooltip.js +8 -9
- package/custom-elements.json +338 -226
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -30,6 +30,10 @@
|
|
|
30
30
|
"description": "Sets the max count to show. Appends `+` to the `max-count` when value is exceeded.",
|
|
31
31
|
"type": "?number",
|
|
32
32
|
"default": "99"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "uniqueId",
|
|
36
|
+
"type": "number"
|
|
33
37
|
}
|
|
34
38
|
],
|
|
35
39
|
"cssProperties": [
|
|
@@ -207,6 +211,10 @@
|
|
|
207
211
|
"attribute": "value",
|
|
208
212
|
"description": "Sets the value of the button.",
|
|
209
213
|
"type": "?string"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "uniqueId",
|
|
217
|
+
"type": "number"
|
|
210
218
|
}
|
|
211
219
|
],
|
|
212
220
|
"slots": [
|
|
@@ -707,6 +715,10 @@
|
|
|
707
715
|
"attribute": "header-title",
|
|
708
716
|
"description": "Provides context for the content of the card.",
|
|
709
717
|
"type": "?string"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "uniqueId",
|
|
721
|
+
"type": "number"
|
|
710
722
|
}
|
|
711
723
|
],
|
|
712
724
|
"slots": [
|
|
@@ -896,6 +908,10 @@
|
|
|
896
908
|
"description": "Adds a visual indicator next to the label. Indicates that a value is optional (by default) or required if the `required` property is also set. For the indicator to be displayed, the `label` property must also be set.",
|
|
897
909
|
"type": "?boolean",
|
|
898
910
|
"default": "false"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"name": "uniqueId",
|
|
914
|
+
"type": "number"
|
|
899
915
|
}
|
|
900
916
|
],
|
|
901
917
|
"slots": [
|
|
@@ -1035,12 +1051,16 @@
|
|
|
1035
1051
|
"attribute": "accessible-label",
|
|
1036
1052
|
"description": "Sets an `aria-label` to assist screen reader users when no visible label is present.",
|
|
1037
1053
|
"type": "?string"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"name": "uniqueId",
|
|
1057
|
+
"type": "number"
|
|
1038
1058
|
}
|
|
1039
1059
|
],
|
|
1040
1060
|
"events": [
|
|
1041
1061
|
{
|
|
1042
1062
|
"name": "jh-change",
|
|
1043
|
-
"description": "Dispatched when the state of the checkbox has changed."
|
|
1063
|
+
"description": "Dispatched when the state of the checkbox has changed. Event payload includes the `checked` state of the checkbox and can be accessed via `e.detail.state.checked`."
|
|
1044
1064
|
}
|
|
1045
1065
|
],
|
|
1046
1066
|
"cssProperties": [
|
|
@@ -1242,6 +1262,10 @@
|
|
|
1242
1262
|
"attribute": "inset",
|
|
1243
1263
|
"description": "The alignment of the left edge of the divider.",
|
|
1244
1264
|
"type": "0|8|16|24|32|40|48|56|64|72|80|88|96"
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"name": "uniqueId",
|
|
1268
|
+
"type": "number"
|
|
1245
1269
|
}
|
|
1246
1270
|
],
|
|
1247
1271
|
"cssProperties": [
|
|
@@ -1270,7 +1294,7 @@
|
|
|
1270
1294
|
{
|
|
1271
1295
|
"name": "size",
|
|
1272
1296
|
"description": "Sets the size of the icon.",
|
|
1273
|
-
"type": "'x-small'|'small'|'medium'|'large'|'x-large'",
|
|
1297
|
+
"type": "'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
|
|
1274
1298
|
"default": "\"medium\""
|
|
1275
1299
|
}
|
|
1276
1300
|
],
|
|
@@ -1279,8 +1303,12 @@
|
|
|
1279
1303
|
"name": "size",
|
|
1280
1304
|
"attribute": "size",
|
|
1281
1305
|
"description": "Sets the size of the icon.",
|
|
1282
|
-
"type": "'x-small'|'small'|'medium'|'large'|'x-large'",
|
|
1306
|
+
"type": "'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
|
|
1283
1307
|
"default": "\"medium\""
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"name": "uniqueId",
|
|
1311
|
+
"type": "number"
|
|
1284
1312
|
}
|
|
1285
1313
|
],
|
|
1286
1314
|
"slots": [
|
|
@@ -1313,6 +1341,10 @@
|
|
|
1313
1341
|
{
|
|
1314
1342
|
"name": "--jh-icon-size-extra-large",
|
|
1315
1343
|
"description": "The icon size when `size=\"extra-large\"`. Defaults to `--jh-dimension-1400`."
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"name": "--jh-icon-size-extra-extra-large",
|
|
1347
|
+
"description": "The icon size when `size=\"extra-extra-large\"`. Defaults to `--jh-dimension-2100`."
|
|
1316
1348
|
}
|
|
1317
1349
|
]
|
|
1318
1350
|
},
|
|
@@ -1406,6 +1438,11 @@
|
|
|
1406
1438
|
"description": "Sets a name for the input control.",
|
|
1407
1439
|
"type": "?string"
|
|
1408
1440
|
},
|
|
1441
|
+
{
|
|
1442
|
+
"name": "pattern",
|
|
1443
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
1444
|
+
"type": "?string"
|
|
1445
|
+
},
|
|
1409
1446
|
{
|
|
1410
1447
|
"name": "readonly",
|
|
1411
1448
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -1449,10 +1486,6 @@
|
|
|
1449
1486
|
}
|
|
1450
1487
|
],
|
|
1451
1488
|
"properties": [
|
|
1452
|
-
{
|
|
1453
|
-
"name": "uniqueId",
|
|
1454
|
-
"type": "number | null"
|
|
1455
|
-
},
|
|
1456
1489
|
{
|
|
1457
1490
|
"name": "accessibleLabel",
|
|
1458
1491
|
"attribute": "accessible-label",
|
|
@@ -1554,6 +1587,12 @@
|
|
|
1554
1587
|
"description": "Sets a name for the input control.",
|
|
1555
1588
|
"type": "?string"
|
|
1556
1589
|
},
|
|
1590
|
+
{
|
|
1591
|
+
"name": "pattern",
|
|
1592
|
+
"attribute": "pattern",
|
|
1593
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
1594
|
+
"type": "?string"
|
|
1595
|
+
},
|
|
1557
1596
|
{
|
|
1558
1597
|
"name": "readonly",
|
|
1559
1598
|
"attribute": "readonly",
|
|
@@ -1601,28 +1640,32 @@
|
|
|
1601
1640
|
"attribute": "value",
|
|
1602
1641
|
"description": "Sets the value of the input.",
|
|
1603
1642
|
"type": "?string"
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
"name": "uniqueId",
|
|
1646
|
+
"type": "number"
|
|
1604
1647
|
}
|
|
1605
1648
|
],
|
|
1606
1649
|
"events": [
|
|
1607
1650
|
{
|
|
1608
1651
|
"name": "jh-select",
|
|
1609
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
1652
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
1610
1653
|
},
|
|
1611
1654
|
{
|
|
1612
1655
|
"name": "jh-change",
|
|
1613
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
1656
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
1614
1657
|
},
|
|
1615
1658
|
{
|
|
1616
1659
|
"name": "jh-input",
|
|
1617
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
1660
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
1618
1661
|
},
|
|
1619
1662
|
{
|
|
1620
1663
|
"name": "jh-maxlength",
|
|
1621
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
1664
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
1622
1665
|
},
|
|
1623
1666
|
{
|
|
1624
1667
|
"name": "jh-input:clear-button-click",
|
|
1625
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
1668
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
1626
1669
|
}
|
|
1627
1670
|
],
|
|
1628
1671
|
"slots": [
|
|
@@ -1870,6 +1913,11 @@
|
|
|
1870
1913
|
"description": "Sets a name for the input control.",
|
|
1871
1914
|
"type": "?string"
|
|
1872
1915
|
},
|
|
1916
|
+
{
|
|
1917
|
+
"name": "pattern",
|
|
1918
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
1919
|
+
"type": "?string"
|
|
1920
|
+
},
|
|
1873
1921
|
{
|
|
1874
1922
|
"name": "readonly",
|
|
1875
1923
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -1932,10 +1980,6 @@
|
|
|
1932
1980
|
"type": "boolean",
|
|
1933
1981
|
"default": "false"
|
|
1934
1982
|
},
|
|
1935
|
-
{
|
|
1936
|
-
"name": "uniqueId",
|
|
1937
|
-
"type": "number | null"
|
|
1938
|
-
},
|
|
1939
1983
|
{
|
|
1940
1984
|
"name": "accessibleLabel",
|
|
1941
1985
|
"attribute": "accessible-label",
|
|
@@ -2036,6 +2080,12 @@
|
|
|
2036
2080
|
"description": "Sets a name for the input control.",
|
|
2037
2081
|
"type": "?string"
|
|
2038
2082
|
},
|
|
2083
|
+
{
|
|
2084
|
+
"name": "pattern",
|
|
2085
|
+
"attribute": "pattern",
|
|
2086
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
2087
|
+
"type": "?string"
|
|
2088
|
+
},
|
|
2039
2089
|
{
|
|
2040
2090
|
"name": "readonly",
|
|
2041
2091
|
"attribute": "readonly",
|
|
@@ -2083,28 +2133,32 @@
|
|
|
2083
2133
|
"attribute": "value",
|
|
2084
2134
|
"description": "Sets the value of the input.",
|
|
2085
2135
|
"type": "?string"
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
"name": "uniqueId",
|
|
2139
|
+
"type": "number"
|
|
2086
2140
|
}
|
|
2087
2141
|
],
|
|
2088
2142
|
"events": [
|
|
2089
2143
|
{
|
|
2090
2144
|
"name": "jh-select",
|
|
2091
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
2145
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
2092
2146
|
},
|
|
2093
2147
|
{
|
|
2094
2148
|
"name": "jh-change",
|
|
2095
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
2149
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
2096
2150
|
},
|
|
2097
2151
|
{
|
|
2098
2152
|
"name": "jh-input",
|
|
2099
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
2153
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
2100
2154
|
},
|
|
2101
2155
|
{
|
|
2102
2156
|
"name": "jh-maxlength",
|
|
2103
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
2157
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
2104
2158
|
},
|
|
2105
2159
|
{
|
|
2106
2160
|
"name": "jh-input:clear-button-click",
|
|
2107
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
2161
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
2108
2162
|
}
|
|
2109
2163
|
],
|
|
2110
2164
|
"slots": [
|
|
@@ -2345,6 +2399,11 @@
|
|
|
2345
2399
|
"description": "Sets a name for the input control.",
|
|
2346
2400
|
"type": "?string"
|
|
2347
2401
|
},
|
|
2402
|
+
{
|
|
2403
|
+
"name": "pattern",
|
|
2404
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
2405
|
+
"type": "?string"
|
|
2406
|
+
},
|
|
2348
2407
|
{
|
|
2349
2408
|
"name": "readonly",
|
|
2350
2409
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -2388,10 +2447,6 @@
|
|
|
2388
2447
|
}
|
|
2389
2448
|
],
|
|
2390
2449
|
"properties": [
|
|
2391
|
-
{
|
|
2392
|
-
"name": "uniqueId",
|
|
2393
|
-
"type": "number | null"
|
|
2394
|
-
},
|
|
2395
2450
|
{
|
|
2396
2451
|
"name": "accessibleLabel",
|
|
2397
2452
|
"attribute": "accessible-label",
|
|
@@ -2492,6 +2547,12 @@
|
|
|
2492
2547
|
"description": "Sets a name for the input control.",
|
|
2493
2548
|
"type": "?string"
|
|
2494
2549
|
},
|
|
2550
|
+
{
|
|
2551
|
+
"name": "pattern",
|
|
2552
|
+
"attribute": "pattern",
|
|
2553
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
2554
|
+
"type": "?string"
|
|
2555
|
+
},
|
|
2495
2556
|
{
|
|
2496
2557
|
"name": "readonly",
|
|
2497
2558
|
"attribute": "readonly",
|
|
@@ -2539,28 +2600,32 @@
|
|
|
2539
2600
|
"attribute": "value",
|
|
2540
2601
|
"description": "Sets the value of the input.",
|
|
2541
2602
|
"type": "?string"
|
|
2603
|
+
},
|
|
2604
|
+
{
|
|
2605
|
+
"name": "uniqueId",
|
|
2606
|
+
"type": "number"
|
|
2542
2607
|
}
|
|
2543
2608
|
],
|
|
2544
2609
|
"events": [
|
|
2545
2610
|
{
|
|
2546
2611
|
"name": "jh-select",
|
|
2547
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
2612
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
2548
2613
|
},
|
|
2549
2614
|
{
|
|
2550
2615
|
"name": "jh-change",
|
|
2551
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
2616
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
2552
2617
|
},
|
|
2553
2618
|
{
|
|
2554
2619
|
"name": "jh-input",
|
|
2555
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
2620
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
2556
2621
|
},
|
|
2557
2622
|
{
|
|
2558
2623
|
"name": "jh-maxlength",
|
|
2559
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
2624
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
2560
2625
|
},
|
|
2561
2626
|
{
|
|
2562
2627
|
"name": "jh-input:clear-button-click",
|
|
2563
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
2628
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
2564
2629
|
}
|
|
2565
2630
|
],
|
|
2566
2631
|
"slots": [
|
|
@@ -2793,6 +2858,11 @@
|
|
|
2793
2858
|
"description": "Sets a name for the input control.",
|
|
2794
2859
|
"type": "?string"
|
|
2795
2860
|
},
|
|
2861
|
+
{
|
|
2862
|
+
"name": "pattern",
|
|
2863
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
2864
|
+
"type": "?string"
|
|
2865
|
+
},
|
|
2796
2866
|
{
|
|
2797
2867
|
"name": "readonly",
|
|
2798
2868
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -2836,10 +2906,6 @@
|
|
|
2836
2906
|
}
|
|
2837
2907
|
],
|
|
2838
2908
|
"properties": [
|
|
2839
|
-
{
|
|
2840
|
-
"name": "uniqueId",
|
|
2841
|
-
"type": "number | null"
|
|
2842
|
-
},
|
|
2843
2909
|
{
|
|
2844
2910
|
"name": "accessibleLabel",
|
|
2845
2911
|
"attribute": "accessible-label",
|
|
@@ -2940,6 +3006,12 @@
|
|
|
2940
3006
|
"description": "Sets a name for the input control.",
|
|
2941
3007
|
"type": "?string"
|
|
2942
3008
|
},
|
|
3009
|
+
{
|
|
3010
|
+
"name": "pattern",
|
|
3011
|
+
"attribute": "pattern",
|
|
3012
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
3013
|
+
"type": "?string"
|
|
3014
|
+
},
|
|
2943
3015
|
{
|
|
2944
3016
|
"name": "readonly",
|
|
2945
3017
|
"attribute": "readonly",
|
|
@@ -2987,28 +3059,32 @@
|
|
|
2987
3059
|
"attribute": "value",
|
|
2988
3060
|
"description": "Sets the value of the input.",
|
|
2989
3061
|
"type": "?string"
|
|
3062
|
+
},
|
|
3063
|
+
{
|
|
3064
|
+
"name": "uniqueId",
|
|
3065
|
+
"type": "number"
|
|
2990
3066
|
}
|
|
2991
3067
|
],
|
|
2992
3068
|
"events": [
|
|
2993
3069
|
{
|
|
2994
3070
|
"name": "jh-select",
|
|
2995
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
3071
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
2996
3072
|
},
|
|
2997
3073
|
{
|
|
2998
3074
|
"name": "jh-change",
|
|
2999
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
3075
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
3000
3076
|
},
|
|
3001
3077
|
{
|
|
3002
3078
|
"name": "jh-input",
|
|
3003
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
3079
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
3004
3080
|
},
|
|
3005
3081
|
{
|
|
3006
3082
|
"name": "jh-maxlength",
|
|
3007
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
3083
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
3008
3084
|
},
|
|
3009
3085
|
{
|
|
3010
3086
|
"name": "jh-input:clear-button-click",
|
|
3011
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
3087
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
3012
3088
|
}
|
|
3013
3089
|
],
|
|
3014
3090
|
"slots": [
|
|
@@ -3267,6 +3343,11 @@
|
|
|
3267
3343
|
"description": "Sets a name for the input control.",
|
|
3268
3344
|
"type": "?string"
|
|
3269
3345
|
},
|
|
3346
|
+
{
|
|
3347
|
+
"name": "pattern",
|
|
3348
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
3349
|
+
"type": "?string"
|
|
3350
|
+
},
|
|
3270
3351
|
{
|
|
3271
3352
|
"name": "readonly",
|
|
3272
3353
|
"description": "Prevents users from changing the input value.",
|
|
@@ -3342,10 +3423,6 @@
|
|
|
3342
3423
|
"description": "Specifies how text should be wrapped when submitted in a form. The `cols` property must be set for `wrap='hard'` to take effect.",
|
|
3343
3424
|
"type": "'hard'|'soft'"
|
|
3344
3425
|
},
|
|
3345
|
-
{
|
|
3346
|
-
"name": "uniqueId",
|
|
3347
|
-
"type": "number | null"
|
|
3348
|
-
},
|
|
3349
3426
|
{
|
|
3350
3427
|
"name": "accessibleLabel",
|
|
3351
3428
|
"attribute": "accessible-label",
|
|
@@ -3446,6 +3523,12 @@
|
|
|
3446
3523
|
"description": "Sets a name for the input control.",
|
|
3447
3524
|
"type": "?string"
|
|
3448
3525
|
},
|
|
3526
|
+
{
|
|
3527
|
+
"name": "pattern",
|
|
3528
|
+
"attribute": "pattern",
|
|
3529
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
3530
|
+
"type": "?string"
|
|
3531
|
+
},
|
|
3449
3532
|
{
|
|
3450
3533
|
"name": "readonly",
|
|
3451
3534
|
"attribute": "readonly",
|
|
@@ -3493,28 +3576,32 @@
|
|
|
3493
3576
|
"attribute": "value",
|
|
3494
3577
|
"description": "Sets the value of the input.",
|
|
3495
3578
|
"type": "?string"
|
|
3579
|
+
},
|
|
3580
|
+
{
|
|
3581
|
+
"name": "uniqueId",
|
|
3582
|
+
"type": "number"
|
|
3496
3583
|
}
|
|
3497
3584
|
],
|
|
3498
3585
|
"events": [
|
|
3499
3586
|
{
|
|
3500
3587
|
"name": "jh-change",
|
|
3501
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`."
|
|
3588
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`."
|
|
3502
3589
|
},
|
|
3503
3590
|
{
|
|
3504
3591
|
"name": "jh-input",
|
|
3505
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`."
|
|
3592
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`."
|
|
3506
3593
|
},
|
|
3507
3594
|
{
|
|
3508
3595
|
"name": "jh-select",
|
|
3509
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
3596
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
3510
3597
|
},
|
|
3511
3598
|
{
|
|
3512
3599
|
"name": "jh-maxlength",
|
|
3513
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
3600
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
3514
3601
|
},
|
|
3515
3602
|
{
|
|
3516
3603
|
"name": "jh-input:clear-button-click",
|
|
3517
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
3604
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
3518
3605
|
}
|
|
3519
3606
|
],
|
|
3520
3607
|
"slots": [
|
|
@@ -3751,6 +3838,11 @@
|
|
|
3751
3838
|
"description": "Sets a name for the input control.",
|
|
3752
3839
|
"type": "?string"
|
|
3753
3840
|
},
|
|
3841
|
+
{
|
|
3842
|
+
"name": "pattern",
|
|
3843
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
3844
|
+
"type": "?string"
|
|
3845
|
+
},
|
|
3754
3846
|
{
|
|
3755
3847
|
"name": "readonly",
|
|
3756
3848
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -3794,10 +3886,6 @@
|
|
|
3794
3886
|
}
|
|
3795
3887
|
],
|
|
3796
3888
|
"properties": [
|
|
3797
|
-
{
|
|
3798
|
-
"name": "uniqueId",
|
|
3799
|
-
"type": "number | null"
|
|
3800
|
-
},
|
|
3801
3889
|
{
|
|
3802
3890
|
"name": "accessibleLabel",
|
|
3803
3891
|
"attribute": "accessible-label",
|
|
@@ -3898,6 +3986,12 @@
|
|
|
3898
3986
|
"description": "Sets a name for the input control.",
|
|
3899
3987
|
"type": "?string"
|
|
3900
3988
|
},
|
|
3989
|
+
{
|
|
3990
|
+
"name": "pattern",
|
|
3991
|
+
"attribute": "pattern",
|
|
3992
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
3993
|
+
"type": "?string"
|
|
3994
|
+
},
|
|
3901
3995
|
{
|
|
3902
3996
|
"name": "readonly",
|
|
3903
3997
|
"attribute": "readonly",
|
|
@@ -3945,28 +4039,32 @@
|
|
|
3945
4039
|
"attribute": "value",
|
|
3946
4040
|
"description": "Sets the value of the input.",
|
|
3947
4041
|
"type": "?string"
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
"name": "uniqueId",
|
|
4045
|
+
"type": "number"
|
|
3948
4046
|
}
|
|
3949
4047
|
],
|
|
3950
4048
|
"events": [
|
|
3951
4049
|
{
|
|
3952
4050
|
"name": "jh-select",
|
|
3953
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
4051
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
3954
4052
|
},
|
|
3955
4053
|
{
|
|
3956
4054
|
"name": "jh-change",
|
|
3957
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
4055
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
3958
4056
|
},
|
|
3959
4057
|
{
|
|
3960
4058
|
"name": "jh-input",
|
|
3961
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
4059
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
3962
4060
|
},
|
|
3963
4061
|
{
|
|
3964
4062
|
"name": "jh-maxlength",
|
|
3965
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
4063
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
3966
4064
|
},
|
|
3967
4065
|
{
|
|
3968
4066
|
"name": "jh-input:clear-button-click",
|
|
3969
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
4067
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
3970
4068
|
}
|
|
3971
4069
|
],
|
|
3972
4070
|
"slots": [
|
|
@@ -4198,6 +4296,11 @@
|
|
|
4198
4296
|
"description": "Sets a name for the input control.",
|
|
4199
4297
|
"type": "?string"
|
|
4200
4298
|
},
|
|
4299
|
+
{
|
|
4300
|
+
"name": "pattern",
|
|
4301
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
4302
|
+
"type": "?string"
|
|
4303
|
+
},
|
|
4201
4304
|
{
|
|
4202
4305
|
"name": "readonly",
|
|
4203
4306
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -4241,10 +4344,6 @@
|
|
|
4241
4344
|
}
|
|
4242
4345
|
],
|
|
4243
4346
|
"properties": [
|
|
4244
|
-
{
|
|
4245
|
-
"name": "uniqueId",
|
|
4246
|
-
"type": "number | null"
|
|
4247
|
-
},
|
|
4248
4347
|
{
|
|
4249
4348
|
"name": "accessibleLabel",
|
|
4250
4349
|
"attribute": "accessible-label",
|
|
@@ -4345,6 +4444,12 @@
|
|
|
4345
4444
|
"description": "Sets a name for the input control.",
|
|
4346
4445
|
"type": "?string"
|
|
4347
4446
|
},
|
|
4447
|
+
{
|
|
4448
|
+
"name": "pattern",
|
|
4449
|
+
"attribute": "pattern",
|
|
4450
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
4451
|
+
"type": "?string"
|
|
4452
|
+
},
|
|
4348
4453
|
{
|
|
4349
4454
|
"name": "readonly",
|
|
4350
4455
|
"attribute": "readonly",
|
|
@@ -4392,28 +4497,32 @@
|
|
|
4392
4497
|
"attribute": "value",
|
|
4393
4498
|
"description": "Sets the value of the input.",
|
|
4394
4499
|
"type": "?string"
|
|
4500
|
+
},
|
|
4501
|
+
{
|
|
4502
|
+
"name": "uniqueId",
|
|
4503
|
+
"type": "number"
|
|
4395
4504
|
}
|
|
4396
4505
|
],
|
|
4397
4506
|
"events": [
|
|
4398
4507
|
{
|
|
4399
4508
|
"name": "jh-select",
|
|
4400
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
4509
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
4401
4510
|
},
|
|
4402
4511
|
{
|
|
4403
4512
|
"name": "jh-change",
|
|
4404
|
-
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
4513
|
+
"description": "Dispatched when the value of the input has changed and input loses focus. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
4405
4514
|
},
|
|
4406
4515
|
{
|
|
4407
4516
|
"name": "jh-input",
|
|
4408
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
4517
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
4409
4518
|
},
|
|
4410
4519
|
{
|
|
4411
4520
|
"name": "jh-maxlength",
|
|
4412
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
4521
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
4413
4522
|
},
|
|
4414
4523
|
{
|
|
4415
4524
|
"name": "jh-input:clear-button-click",
|
|
4416
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
4525
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
4417
4526
|
}
|
|
4418
4527
|
],
|
|
4419
4528
|
"slots": [
|
|
@@ -4584,6 +4693,10 @@
|
|
|
4584
4693
|
"attribute": "accessible-label",
|
|
4585
4694
|
"description": "Sets an `aria-label` to assist screen reader users when no visible label is present.",
|
|
4586
4695
|
"type": "?string"
|
|
4696
|
+
},
|
|
4697
|
+
{
|
|
4698
|
+
"name": "uniqueId",
|
|
4699
|
+
"type": "number"
|
|
4587
4700
|
}
|
|
4588
4701
|
],
|
|
4589
4702
|
"slots": [
|
|
@@ -4626,21 +4739,11 @@
|
|
|
4626
4739
|
"description": "The inset of the optional divider. Omit to use the divider-inset token instead.",
|
|
4627
4740
|
"type": "null|0|8|16|24|32|40|48|56|64|72|80|88|96"
|
|
4628
4741
|
},
|
|
4629
|
-
{
|
|
4630
|
-
"name": "primary-metadata",
|
|
4631
|
-
"description": "The text to show as primary metadata.",
|
|
4632
|
-
"type": "?string"
|
|
4633
|
-
},
|
|
4634
4742
|
{
|
|
4635
4743
|
"name": "primary-text",
|
|
4636
4744
|
"description": "The text to show as primary text.",
|
|
4637
4745
|
"type": "?string"
|
|
4638
4746
|
},
|
|
4639
|
-
{
|
|
4640
|
-
"name": "secondary-metadata",
|
|
4641
|
-
"description": "The text to show as secondary metadata.",
|
|
4642
|
-
"type": "?string"
|
|
4643
|
-
},
|
|
4644
4747
|
{
|
|
4645
4748
|
"name": "secondary-text",
|
|
4646
4749
|
"description": "The text to show as secondary text.",
|
|
@@ -4673,24 +4776,12 @@
|
|
|
4673
4776
|
"description": "The inset of the optional divider. Omit to use the divider-inset token instead.",
|
|
4674
4777
|
"type": "null|0|8|16|24|32|40|48|56|64|72|80|88|96"
|
|
4675
4778
|
},
|
|
4676
|
-
{
|
|
4677
|
-
"name": "primaryMetadata",
|
|
4678
|
-
"attribute": "primary-metadata",
|
|
4679
|
-
"description": "The text to show as primary metadata.",
|
|
4680
|
-
"type": "?string"
|
|
4681
|
-
},
|
|
4682
4779
|
{
|
|
4683
4780
|
"name": "primaryText",
|
|
4684
4781
|
"attribute": "primary-text",
|
|
4685
4782
|
"description": "The text to show as primary text.",
|
|
4686
4783
|
"type": "?string"
|
|
4687
4784
|
},
|
|
4688
|
-
{
|
|
4689
|
-
"name": "secondaryMetadata",
|
|
4690
|
-
"attribute": "secondary-metadata",
|
|
4691
|
-
"description": "The text to show as secondary metadata.",
|
|
4692
|
-
"type": "?string"
|
|
4693
|
-
},
|
|
4694
4785
|
{
|
|
4695
4786
|
"name": "secondaryText",
|
|
4696
4787
|
"attribute": "secondary-text",
|
|
@@ -4710,12 +4801,16 @@
|
|
|
4710
4801
|
"description": "Determines whether the divider is displayed below the list-item.",
|
|
4711
4802
|
"type": "?boolean",
|
|
4712
4803
|
"default": "false"
|
|
4804
|
+
},
|
|
4805
|
+
{
|
|
4806
|
+
"name": "uniqueId",
|
|
4807
|
+
"type": "number"
|
|
4713
4808
|
}
|
|
4714
4809
|
],
|
|
4715
4810
|
"slots": [
|
|
4716
4811
|
{
|
|
4717
4812
|
"name": "default",
|
|
4718
|
-
"description": "Use to insert
|
|
4813
|
+
"description": "Use to insert custom content into the list-item."
|
|
4719
4814
|
},
|
|
4720
4815
|
{
|
|
4721
4816
|
"name": "jh-list-item-left",
|
|
@@ -4724,52 +4819,80 @@
|
|
|
4724
4819
|
{
|
|
4725
4820
|
"name": "jh-list-item-right",
|
|
4726
4821
|
"description": "Use to insert custom content on the right the list-item."
|
|
4727
|
-
},
|
|
4728
|
-
{
|
|
4729
|
-
"name": "jh-list-item-content",
|
|
4730
|
-
"description": "Use to insert custom content into the list-item."
|
|
4731
|
-
},
|
|
4732
|
-
{
|
|
4733
|
-
"name": "jh-list-item-metadata",
|
|
4734
|
-
"description": "Use to insert custom metadata into the list-item."
|
|
4735
4822
|
}
|
|
4736
4823
|
],
|
|
4737
4824
|
"cssProperties": [
|
|
4738
4825
|
{
|
|
4739
|
-
"name": "--jh-list-item-color-background",
|
|
4826
|
+
"name": "--jh-list-item-color-background-enabled",
|
|
4740
4827
|
"description": "The list-item container's background-color.\nDefaults to `transparent`."
|
|
4741
4828
|
},
|
|
4742
4829
|
{
|
|
4743
|
-
"name": "--jh-list-item-color-text",
|
|
4744
|
-
"description": "The default, left,
|
|
4830
|
+
"name": "--jh-list-item-color-text-primary-enabled",
|
|
4831
|
+
"description": "The list-item text color for the default, left, right slots and primary text.\nDefaults to `--jh-color-content-primary-enabled`."
|
|
4745
4832
|
},
|
|
4746
4833
|
{
|
|
4747
|
-
"name": "--jh-list-item-
|
|
4748
|
-
"description": "The
|
|
4834
|
+
"name": "--jh-list-item-color-text-primary-focus",
|
|
4835
|
+
"description": "The list-item text color for the default, left, right slots and primary text when interactive and focused.\nDefaults to `--jh-color-content-primary-enabled`."
|
|
4749
4836
|
},
|
|
4750
4837
|
{
|
|
4751
|
-
"name": "--jh-list-item-
|
|
4752
|
-
"description": "The
|
|
4838
|
+
"name": "--jh-list-item-color-text-primary-hover",
|
|
4839
|
+
"description": "The list-item text color for the default, left, right slots and primary text when interactive and hovered.\nDefaults to `--jh-color-content-primary-enabled`."
|
|
4753
4840
|
},
|
|
4754
4841
|
{
|
|
4755
|
-
"name": "--jh-list-item-
|
|
4756
|
-
"description": "The list-item
|
|
4842
|
+
"name": "--jh-list-item-color-text-primary-active",
|
|
4843
|
+
"description": "The list-item text color for the default, left, right slots and primary text when interactive and active.\nDefaults to `--jh-color-content-primary-enabled`."
|
|
4844
|
+
},
|
|
4845
|
+
{
|
|
4846
|
+
"name": "--jh-list-item-color-text-primary-selected",
|
|
4847
|
+
"description": "The list-item text color for the default, left, right slots and primary text when interactive and selected.\nDefaults to `--jh-color-content-primary-enabled`."
|
|
4757
4848
|
},
|
|
4758
4849
|
{
|
|
4759
|
-
"name": "--jh-list-item-color-text-primary",
|
|
4760
|
-
"description": "The primary text
|
|
4850
|
+
"name": "--jh-list-item-color-text-primary-disabled",
|
|
4851
|
+
"description": "The list-item text color for the default, left, right slots and primary text when interactive and disabled.\nDefaults to `--jh-color-content-primary-enabled`."
|
|
4761
4852
|
},
|
|
4762
4853
|
{
|
|
4763
|
-
"name": "--jh-list-item-color-text-secondary",
|
|
4854
|
+
"name": "--jh-list-item-color-text-secondary-enabled",
|
|
4764
4855
|
"description": "The secondary text color.\nDefaults to `--jh-color-content-secondary-enabled`."
|
|
4765
4856
|
},
|
|
4766
4857
|
{
|
|
4767
|
-
"name": "--jh-list-item-
|
|
4768
|
-
"description": "The
|
|
4858
|
+
"name": "--jh-list-item-color-text-secondary-focus",
|
|
4859
|
+
"description": "The secondary text color when interactive and focused.\nDefaults to `--jh-color-content-secondary-enabled`."
|
|
4769
4860
|
},
|
|
4770
4861
|
{
|
|
4771
|
-
"name": "--jh-list-item-
|
|
4772
|
-
"description": "The secondary
|
|
4862
|
+
"name": "--jh-list-item-color-text-secondary-hover",
|
|
4863
|
+
"description": "The secondary text color when interactive and hovered.\nDefaults to `--jh-color-content-secondary-enabled`."
|
|
4864
|
+
},
|
|
4865
|
+
{
|
|
4866
|
+
"name": "--jh-list-item-color-text-secondary-active",
|
|
4867
|
+
"description": "The secondary text color when interactive and active.\nDefaults to `--jh-color-content-secondary-enabled`."
|
|
4868
|
+
},
|
|
4869
|
+
{
|
|
4870
|
+
"name": "--jh-list-item-color-text-secondary-selected",
|
|
4871
|
+
"description": "The secondary text color when interactive and selected.\nDefaults to `--jh-color-content-secondary-enabled`."
|
|
4872
|
+
},
|
|
4873
|
+
{
|
|
4874
|
+
"name": "--jh-list-item-color-text-secondary-disabled",
|
|
4875
|
+
"description": "The secondary text color when interactive and disabled.\nDefaults to `--jh-color-content-secondary-enabled`."
|
|
4876
|
+
},
|
|
4877
|
+
{
|
|
4878
|
+
"name": "--jh-list-item-space-padding-right",
|
|
4879
|
+
"description": "The right padding on the list-item container. Defaults to `--jh-dimension-600`."
|
|
4880
|
+
},
|
|
4881
|
+
{
|
|
4882
|
+
"name": "--jh-list-item-space-padding-left",
|
|
4883
|
+
"description": "The left padding on the list-item container. Defaults to `--jh-dimension-600`."
|
|
4884
|
+
},
|
|
4885
|
+
{
|
|
4886
|
+
"name": "--jh-list-item-space-padding-top",
|
|
4887
|
+
"description": "The top padding on the list-item container. Defaults to `--jh-dimension-400`."
|
|
4888
|
+
},
|
|
4889
|
+
{
|
|
4890
|
+
"name": "--jh-list-item-space-padding-bottom",
|
|
4891
|
+
"description": "The bottom padding on the list-item container. Defaults to `--jh-dimension-400`."
|
|
4892
|
+
},
|
|
4893
|
+
{
|
|
4894
|
+
"name": "--jh-list-item-size-height",
|
|
4895
|
+
"description": "The list-item's height. Defaults to `auto`."
|
|
4773
4896
|
},
|
|
4774
4897
|
{
|
|
4775
4898
|
"name": "--jh-list-item-color-background-focus",
|
|
@@ -4787,6 +4910,14 @@
|
|
|
4787
4910
|
"name": "--jh-list-item-color-background-active",
|
|
4788
4911
|
"description": "The list-item background-color when interactive and active.\nDefaults to `--jh-color-container-primary-active`."
|
|
4789
4912
|
},
|
|
4913
|
+
{
|
|
4914
|
+
"name": "--jh-list-item-color-background-disabled",
|
|
4915
|
+
"description": "The list-item background-color when interactive and disabled.\nDefaults to `transparent`."
|
|
4916
|
+
},
|
|
4917
|
+
{
|
|
4918
|
+
"name": "--jh-list-item-opacity-disabled",
|
|
4919
|
+
"description": "The list-item opacity when interactive and disabled.\nDefaults to `--jh-opacity-disabled`."
|
|
4920
|
+
},
|
|
4790
4921
|
{
|
|
4791
4922
|
"name": "--jh-list-item-color-background-selected",
|
|
4792
4923
|
"description": "The list-item background-color when interactive and selected. Defaults to `--jh-color-container-primary-selected`."
|
|
@@ -4800,6 +4931,12 @@
|
|
|
4800
4931
|
{
|
|
4801
4932
|
"name": "jh-menu",
|
|
4802
4933
|
"path": "./components/menu/menu.js",
|
|
4934
|
+
"properties": [
|
|
4935
|
+
{
|
|
4936
|
+
"name": "uniqueId",
|
|
4937
|
+
"type": "number"
|
|
4938
|
+
}
|
|
4939
|
+
],
|
|
4803
4940
|
"slots": [
|
|
4804
4941
|
{
|
|
4805
4942
|
"name": "default",
|
|
@@ -4901,6 +5038,10 @@
|
|
|
4901
5038
|
"description": "Determines where in viewport notification is displayed. Alerts will follow typical content flow, while banners will break out of standard flow and go edge-to-edge within a container.",
|
|
4902
5039
|
"type": "'alert'|'banner'",
|
|
4903
5040
|
"default": "\"alert\""
|
|
5041
|
+
},
|
|
5042
|
+
{
|
|
5043
|
+
"name": "uniqueId",
|
|
5044
|
+
"type": "number"
|
|
4904
5045
|
}
|
|
4905
5046
|
],
|
|
4906
5047
|
"events": [
|
|
@@ -5124,7 +5265,7 @@
|
|
|
5124
5265
|
{
|
|
5125
5266
|
"name": "size",
|
|
5126
5267
|
"description": "Sets the size of the progress component.",
|
|
5127
|
-
"type": "'small'|'medium'|'large'",
|
|
5268
|
+
"type": " 'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
|
|
5128
5269
|
"default": "\"medium\""
|
|
5129
5270
|
},
|
|
5130
5271
|
{
|
|
@@ -5186,7 +5327,7 @@
|
|
|
5186
5327
|
"name": "size",
|
|
5187
5328
|
"attribute": "size",
|
|
5188
5329
|
"description": "Sets the size of the progress component.",
|
|
5189
|
-
"type": "'small'|'medium'|'large'",
|
|
5330
|
+
"type": " 'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
|
|
5190
5331
|
"default": "\"medium\""
|
|
5191
5332
|
},
|
|
5192
5333
|
{
|
|
@@ -5235,6 +5376,10 @@
|
|
|
5235
5376
|
"attribute": "accessible-valuetext",
|
|
5236
5377
|
"description": "Sets `aria-valuetext` on progress indicator to provide text alternative of `aria-valuenow`. To be used when progress cannot be represented as a number.",
|
|
5237
5378
|
"type": "?string"
|
|
5379
|
+
},
|
|
5380
|
+
{
|
|
5381
|
+
"name": "uniqueId",
|
|
5382
|
+
"type": "number"
|
|
5238
5383
|
}
|
|
5239
5384
|
],
|
|
5240
5385
|
"cssProperties": [
|
|
@@ -5257,6 +5402,14 @@
|
|
|
5257
5402
|
{
|
|
5258
5403
|
"name": "--jh-progress-indicator-color",
|
|
5259
5404
|
"description": "The indicator color. Defaults to `--jh-color-content-brand-enabled`."
|
|
5405
|
+
},
|
|
5406
|
+
{
|
|
5407
|
+
"name": "--jh-progress-track-size-linear",
|
|
5408
|
+
"description": "The height of the linear progress bar track. Defaults to the size-based height."
|
|
5409
|
+
},
|
|
5410
|
+
{
|
|
5411
|
+
"name": "--jh-progress-track-size-circular",
|
|
5412
|
+
"description": "The width and height of the circular progress indicator. Defaults to the size-based dimensions."
|
|
5260
5413
|
}
|
|
5261
5414
|
]
|
|
5262
5415
|
},
|
|
@@ -5401,12 +5554,16 @@
|
|
|
5401
5554
|
"attribute": "value",
|
|
5402
5555
|
"description": "Sets the value of the radio group.",
|
|
5403
5556
|
"type": "?string"
|
|
5557
|
+
},
|
|
5558
|
+
{
|
|
5559
|
+
"name": "uniqueId",
|
|
5560
|
+
"type": "number"
|
|
5404
5561
|
}
|
|
5405
5562
|
],
|
|
5406
5563
|
"events": [
|
|
5407
5564
|
{
|
|
5408
5565
|
"name": "jh-change",
|
|
5409
|
-
"description": "Dispatched when the value of the radio group has changed."
|
|
5566
|
+
"description": "Dispatched when the value of the radio group has changed. Event payload includes the `value` and can be accessed via `e.detail.state.value`."
|
|
5410
5567
|
}
|
|
5411
5568
|
],
|
|
5412
5569
|
"slots": [
|
|
@@ -5517,6 +5674,10 @@
|
|
|
5517
5674
|
"attribute": "value",
|
|
5518
5675
|
"description": "Sets the value of the radio.",
|
|
5519
5676
|
"type": "?string"
|
|
5677
|
+
},
|
|
5678
|
+
{
|
|
5679
|
+
"name": "uniqueId",
|
|
5680
|
+
"type": "number"
|
|
5520
5681
|
}
|
|
5521
5682
|
],
|
|
5522
5683
|
"events": [
|
|
@@ -5749,6 +5910,11 @@
|
|
|
5749
5910
|
"description": "Sets a name for the input control.",
|
|
5750
5911
|
"type": "?string"
|
|
5751
5912
|
},
|
|
5913
|
+
{
|
|
5914
|
+
"name": "pattern",
|
|
5915
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
5916
|
+
"type": "?string"
|
|
5917
|
+
},
|
|
5752
5918
|
{
|
|
5753
5919
|
"name": "readonly",
|
|
5754
5920
|
"description": "Prevents users from changing the input value. Removes all slotted content.",
|
|
@@ -5812,10 +5978,6 @@
|
|
|
5812
5978
|
"type": "boolean",
|
|
5813
5979
|
"default": "false"
|
|
5814
5980
|
},
|
|
5815
|
-
{
|
|
5816
|
-
"name": "uniqueId",
|
|
5817
|
-
"type": "number | null"
|
|
5818
|
-
},
|
|
5819
5981
|
{
|
|
5820
5982
|
"name": "accessibleLabel",
|
|
5821
5983
|
"attribute": "accessible-label",
|
|
@@ -5916,6 +6078,12 @@
|
|
|
5916
6078
|
"description": "Sets a name for the input control.",
|
|
5917
6079
|
"type": "?string"
|
|
5918
6080
|
},
|
|
6081
|
+
{
|
|
6082
|
+
"name": "pattern",
|
|
6083
|
+
"attribute": "pattern",
|
|
6084
|
+
"description": "Sets the pattern attribute on the input field.",
|
|
6085
|
+
"type": "?string"
|
|
6086
|
+
},
|
|
5919
6087
|
{
|
|
5920
6088
|
"name": "readonly",
|
|
5921
6089
|
"attribute": "readonly",
|
|
@@ -5963,28 +6131,32 @@
|
|
|
5963
6131
|
"attribute": "value",
|
|
5964
6132
|
"description": "Sets the value of the input.",
|
|
5965
6133
|
"type": "?string"
|
|
6134
|
+
},
|
|
6135
|
+
{
|
|
6136
|
+
"name": "uniqueId",
|
|
6137
|
+
"type": "number"
|
|
5966
6138
|
}
|
|
5967
6139
|
],
|
|
5968
6140
|
"events": [
|
|
5969
6141
|
{
|
|
5970
6142
|
"name": "jh-change",
|
|
5971
|
-
"description": "Dispatched when the selected value changes."
|
|
6143
|
+
"description": "Dispatched when the selected value changes. Event payload includes the `value` and can be accessed via `e.detail.state.value`."
|
|
5972
6144
|
},
|
|
5973
6145
|
{
|
|
5974
6146
|
"name": "jh-select",
|
|
5975
|
-
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.selected`, `e.detail.selectionStart`, and `e.detail.selectionEnd`."
|
|
6147
|
+
"description": "Dispatched when text is selected. Event payload contains the selected text, the starting index of the selection, and the ending index of the selection. These values can be accessed via `e.detail.state.selected`, `e.detail.state.selectionStart`, and `e.detail.state.selectionEnd`."
|
|
5976
6148
|
},
|
|
5977
6149
|
{
|
|
5978
6150
|
"name": "jh-input",
|
|
5979
|
-
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.rawValue`."
|
|
6151
|
+
"description": "Dispatched when the value of the input has changed. Event payload includes the value of the input and can be accessed via `e.detail.state.value`. Payload also includes the raw/unformatted value when an input mask is applied and can be accessed via `e.detail.state.rawValue`. Payload also includes the `maxlength` and `minlength` values and can be accessed via `e.detail.reference.maxlength` and `e.detail.reference.minlength` as well as the `pattern` value and can be accessed via `e.detail.reference.pattern`."
|
|
5980
6152
|
},
|
|
5981
6153
|
{
|
|
5982
6154
|
"name": "jh-maxlength",
|
|
5983
|
-
"description": "Dispatched when the `maxlength` property is set and it's value is reached."
|
|
6155
|
+
"description": "Dispatched when the `maxlength` property is set and it's value is reached. Event payload includes the `maxlength` value and can be accessed via `e.detail.reference.maxlength`."
|
|
5984
6156
|
},
|
|
5985
6157
|
{
|
|
5986
6158
|
"name": "jh-input:clear-button-click",
|
|
5987
|
-
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.previousValue`."
|
|
6159
|
+
"description": "Dispatched when the clear button is activated. Event payload contains the previous value of the input field before it was cleared and can be accessed via `e.detail.state.previousValue`. Payload also contains the method used to activate the clear button (mouse or keyboard) and can be accessed via `e.detail.reference.clearMethod`."
|
|
5988
6160
|
}
|
|
5989
6161
|
],
|
|
5990
6162
|
"slots": [
|
|
@@ -6363,6 +6535,10 @@
|
|
|
6363
6535
|
"attribute": "label",
|
|
6364
6536
|
"description": "Describes the intent of the switch.",
|
|
6365
6537
|
"type": "?string"
|
|
6538
|
+
},
|
|
6539
|
+
{
|
|
6540
|
+
"name": "uniqueId",
|
|
6541
|
+
"type": "number"
|
|
6366
6542
|
}
|
|
6367
6543
|
],
|
|
6368
6544
|
"events": [
|
|
@@ -6453,108 +6629,10 @@
|
|
|
6453
6629
|
"description": "Sets the horizontal alignment of the content.",
|
|
6454
6630
|
"type": "'left' | 'center' | 'right'",
|
|
6455
6631
|
"default": "\"left\""
|
|
6456
|
-
}
|
|
6457
|
-
],
|
|
6458
|
-
"slots": [
|
|
6459
|
-
{
|
|
6460
|
-
"name": "default",
|
|
6461
|
-
"description": "Use to insert content."
|
|
6462
|
-
}
|
|
6463
|
-
],
|
|
6464
|
-
"cssProperties": [
|
|
6465
|
-
{
|
|
6466
|
-
"name": "--jh-table-data-cell-color-text",
|
|
6467
|
-
"description": "The cell text color. Defaults to `--jh-color-content-primary-enabled`."
|
|
6468
|
-
},
|
|
6469
|
-
{
|
|
6470
|
-
"name": "--jh-table-data-cell-color-background",
|
|
6471
|
-
"description": "The cell background color. Defaults to `--jh-color-container-primary-enabled`."
|
|
6472
|
-
},
|
|
6473
|
-
{
|
|
6474
|
-
"name": "--jh-table-data-cell-color-border-top",
|
|
6475
|
-
"description": "The cell border top color. Defaults to `transparent`."
|
|
6476
|
-
},
|
|
6477
|
-
{
|
|
6478
|
-
"name": "--jh-table-data-cell-color-border-right",
|
|
6479
|
-
"description": "The cell border right color. Defaults to `transparent`."
|
|
6480
|
-
},
|
|
6481
|
-
{
|
|
6482
|
-
"name": "--jh-table-data-cell-color-border-left",
|
|
6483
|
-
"description": "The cell border left color. Defaults to `transparent`."
|
|
6484
|
-
},
|
|
6485
|
-
{
|
|
6486
|
-
"name": "--jh-table-data-cell-color-border-bottom",
|
|
6487
|
-
"description": "The cell border bottom color. Defaults to `--jh-border-decorative-color`."
|
|
6488
|
-
},
|
|
6489
|
-
{
|
|
6490
|
-
"name": "--jh-table-data-cell-border-top-width",
|
|
6491
|
-
"description": "The cell border top width. Defaults to `--jh-border-decorative-width`."
|
|
6492
|
-
},
|
|
6493
|
-
{
|
|
6494
|
-
"name": "--jh-table-data-cell-border-right-width",
|
|
6495
|
-
"description": "The cell border right width. Defaults to `--jh-border-decorative-width`."
|
|
6496
|
-
},
|
|
6497
|
-
{
|
|
6498
|
-
"name": "--jh-table-data-cell-border-left-width",
|
|
6499
|
-
"description": "The cell border left width. Defaults to `--jh-border-decorative-width`."
|
|
6500
|
-
},
|
|
6501
|
-
{
|
|
6502
|
-
"name": "--jh-table-data-cell-border-bottom-width",
|
|
6503
|
-
"description": "The cell border bottom width. Defaults to `--jh-border-decorative-width`."
|
|
6504
|
-
},
|
|
6505
|
-
{
|
|
6506
|
-
"name": "--jh-table-data-cell-border-top-style",
|
|
6507
|
-
"description": "The cell border top style. Defaults to `--jh-border-decorative-style`."
|
|
6508
|
-
},
|
|
6509
|
-
{
|
|
6510
|
-
"name": "--jh-table-data-cell-border-right-style",
|
|
6511
|
-
"description": "The cell border right style. Defaults to `--jh-border-decorative-style`."
|
|
6512
|
-
},
|
|
6513
|
-
{
|
|
6514
|
-
"name": "--jh-table-data-cell-border-left-style",
|
|
6515
|
-
"description": "The cell border left style. Defaults to `--jh-border-decorative-style`."
|
|
6516
|
-
},
|
|
6517
|
-
{
|
|
6518
|
-
"name": "--jh-table-data-cell-border-bottom-style",
|
|
6519
|
-
"description": "The cell border bottom style. Defaults to `--jh-border-decorative-style`."
|
|
6520
6632
|
},
|
|
6521
6633
|
{
|
|
6522
|
-
"name": "
|
|
6523
|
-
"
|
|
6524
|
-
},
|
|
6525
|
-
{
|
|
6526
|
-
"name": "--jh-table-data-cell-space-padding-right",
|
|
6527
|
-
"description": "The cell padding right. Defaults to `--jh-dimension-400`."
|
|
6528
|
-
},
|
|
6529
|
-
{
|
|
6530
|
-
"name": "--jh-table-data-cell-space-padding-bottom",
|
|
6531
|
-
"description": "The cell padding bottom. Defaults to `--jh-dimension-400`."
|
|
6532
|
-
},
|
|
6533
|
-
{
|
|
6534
|
-
"name": "--jh-table-data-cell-space-padding-left",
|
|
6535
|
-
"description": "The cell padding left. Defaults to `--jh-dimension-400`."
|
|
6536
|
-
}
|
|
6537
|
-
]
|
|
6538
|
-
},
|
|
6539
|
-
{
|
|
6540
|
-
"name": "jh-table-data-cell",
|
|
6541
|
-
"path": "./components/table-data-cell/table-data-cell.js",
|
|
6542
|
-
"description": "Table Cell",
|
|
6543
|
-
"attributes": [
|
|
6544
|
-
{
|
|
6545
|
-
"name": "horizontal-align",
|
|
6546
|
-
"description": "Sets the horizontal alignment of the content.",
|
|
6547
|
-
"type": "'left' | 'center' | 'right'",
|
|
6548
|
-
"default": "\"left\""
|
|
6549
|
-
}
|
|
6550
|
-
],
|
|
6551
|
-
"properties": [
|
|
6552
|
-
{
|
|
6553
|
-
"name": "horizontalAlign",
|
|
6554
|
-
"attribute": "horizontal-align",
|
|
6555
|
-
"description": "Sets the horizontal alignment of the content.",
|
|
6556
|
-
"type": "'left' | 'center' | 'right'",
|
|
6557
|
-
"default": "\"left\""
|
|
6634
|
+
"name": "uniqueId",
|
|
6635
|
+
"type": "number"
|
|
6558
6636
|
}
|
|
6559
6637
|
],
|
|
6560
6638
|
"slots": [
|
|
@@ -6683,12 +6761,16 @@
|
|
|
6683
6761
|
"description": "Sets the order in which the items in the column are sorted.",
|
|
6684
6762
|
"type": "'none' | 'ascending' | 'descending'",
|
|
6685
6763
|
"default": "\"none\""
|
|
6764
|
+
},
|
|
6765
|
+
{
|
|
6766
|
+
"name": "uniqueId",
|
|
6767
|
+
"type": "number"
|
|
6686
6768
|
}
|
|
6687
6769
|
],
|
|
6688
6770
|
"events": [
|
|
6689
6771
|
{
|
|
6690
6772
|
"name": "jh-sort",
|
|
6691
|
-
"description": "Dispatched when a sortable header cell is activated. Event payload includes the column, sorted state, and id of the header cell and can be accessed via `e.detail.column`, `e.detail.sorted`, and `
|
|
6773
|
+
"description": "Dispatched when a sortable header cell is activated. Event payload includes the column, sorted state, and id of the header cell and can be accessed via `e.detail.reference.column`, `e.detail.reference.sorted`, and `e.detail.reference.id`."
|
|
6692
6774
|
}
|
|
6693
6775
|
],
|
|
6694
6776
|
"slots": [
|
|
@@ -6908,6 +6990,12 @@
|
|
|
6908
6990
|
"name": "jh-table-row",
|
|
6909
6991
|
"path": "./components/table-row/table-row.js",
|
|
6910
6992
|
"description": "Table Row",
|
|
6993
|
+
"properties": [
|
|
6994
|
+
{
|
|
6995
|
+
"name": "uniqueId",
|
|
6996
|
+
"type": "number"
|
|
6997
|
+
}
|
|
6998
|
+
],
|
|
6911
6999
|
"slots": [
|
|
6912
7000
|
{
|
|
6913
7001
|
"name": "default",
|
|
@@ -7036,6 +7124,10 @@
|
|
|
7036
7124
|
"description": "Makes the table horizontally scrollable on smaller screens.",
|
|
7037
7125
|
"type": "Boolean",
|
|
7038
7126
|
"default": "false"
|
|
7127
|
+
},
|
|
7128
|
+
{
|
|
7129
|
+
"name": "uniqueId",
|
|
7130
|
+
"type": "number"
|
|
7039
7131
|
}
|
|
7040
7132
|
],
|
|
7041
7133
|
"slots": [
|
|
@@ -7118,6 +7210,10 @@
|
|
|
7118
7210
|
"description": "Sets the alignment of the tags.",
|
|
7119
7211
|
"type": "'start'| 'end'",
|
|
7120
7212
|
"default": "\"start\""
|
|
7213
|
+
},
|
|
7214
|
+
{
|
|
7215
|
+
"name": "uniqueId",
|
|
7216
|
+
"type": "number"
|
|
7121
7217
|
}
|
|
7122
7218
|
],
|
|
7123
7219
|
"slots": [
|
|
@@ -7227,6 +7323,10 @@
|
|
|
7227
7323
|
"description": "Removes the tag after the dismiss button is activated.",
|
|
7228
7324
|
"type": "?Boolean",
|
|
7229
7325
|
"default": "false"
|
|
7326
|
+
},
|
|
7327
|
+
{
|
|
7328
|
+
"name": "uniqueId",
|
|
7329
|
+
"type": "number"
|
|
7230
7330
|
}
|
|
7231
7331
|
],
|
|
7232
7332
|
"events": [
|
|
@@ -7463,6 +7563,10 @@
|
|
|
7463
7563
|
"description": "Places action button(s) on new line, below default slot.",
|
|
7464
7564
|
"type": "boolean",
|
|
7465
7565
|
"default": "false"
|
|
7566
|
+
},
|
|
7567
|
+
{
|
|
7568
|
+
"name": "uniqueId",
|
|
7569
|
+
"type": "number"
|
|
7466
7570
|
}
|
|
7467
7571
|
],
|
|
7468
7572
|
"events": [
|
|
@@ -7544,6 +7648,10 @@
|
|
|
7544
7648
|
"description": "The position of the tooltip and its arrow.",
|
|
7545
7649
|
"type": "?string",
|
|
7546
7650
|
"default": "\"top-center\""
|
|
7651
|
+
},
|
|
7652
|
+
{
|
|
7653
|
+
"name": "uniqueId",
|
|
7654
|
+
"type": "number"
|
|
7547
7655
|
}
|
|
7548
7656
|
],
|
|
7549
7657
|
"slots": [
|
|
@@ -7564,6 +7672,10 @@
|
|
|
7564
7672
|
{
|
|
7565
7673
|
"name": "--jh-tooltip-color-text",
|
|
7566
7674
|
"description": "The tooltip text color. Defaults to `--jh-color-content-on-primary-enabled`."
|
|
7675
|
+
},
|
|
7676
|
+
{
|
|
7677
|
+
"name": "--jh-tooltip-size-max-width",
|
|
7678
|
+
"description": "The maximum width of the tooltip. Defaults to `160px`."
|
|
7567
7679
|
}
|
|
7568
7680
|
]
|
|
7569
7681
|
}
|