@jack-henry/jh-elements 2.0.0-beta.13 → 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.
Files changed (37) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +2 -2
  3. package/components/badge/badge.js +4 -4
  4. package/components/button/button.js +106 -52
  5. package/components/card/card.js +4 -4
  6. package/components/checkbox/checkbox.js +19 -31
  7. package/components/checkbox-group/checkbox-group.js +12 -20
  8. package/components/divider/divider.js +5 -5
  9. package/components/element/element.js +94 -0
  10. package/components/icon/icon.js +14 -12
  11. package/components/input/input.js +72 -74
  12. package/components/input-email/input-email.js +1 -1
  13. package/components/input-password/input-password.js +10 -19
  14. package/components/input-search/input-search.js +2 -2
  15. package/components/input-telephone/input-telephone.js +1 -1
  16. package/components/input-textarea/input-textarea.js +4 -13
  17. package/components/input-url/input-url.js +1 -1
  18. package/components/list-group/list-group.js +6 -13
  19. package/components/list-item/list-item.js +131 -143
  20. package/components/menu/menu.js +5 -8
  21. package/components/notification/notification.js +19 -21
  22. package/components/progress/progress.js +62 -56
  23. package/components/radio/radio.js +8 -21
  24. package/components/radio-group/radio-group.js +16 -31
  25. package/components/select/select.js +51 -30
  26. package/components/switch/switch.js +9 -22
  27. package/components/table/table.js +21 -29
  28. package/components/table-data-cell/table-data-cell.js +7 -9
  29. package/components/table-header-cell/table-header-cell.js +15 -25
  30. package/components/table-row/table-row.js +5 -8
  31. package/components/tag/tag.js +12 -14
  32. package/components/tag-group/tag-group.js +5 -7
  33. package/components/toast/toast.js +5 -14
  34. package/components/tooltip/tooltip.js +8 -9
  35. package/custom-elements.json +350 -215
  36. package/jsconfig.json +1 -1
  37. package/package.json +11 -15
@@ -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": [
@@ -84,12 +88,6 @@
84
88
  "description": "Sets the link's destination.",
85
89
  "type": "?string"
86
90
  },
87
- {
88
- "name": "icon-position",
89
- "description": "Sets location of icon in relation to the label.",
90
- "type": "'before'|'after'",
91
- "default": "\"before\""
92
- },
93
91
  {
94
92
  "name": "pending",
95
93
  "description": "Displays a progress indicator.",
@@ -109,7 +107,7 @@
109
107
  {
110
108
  "name": "size",
111
109
  "description": "Sets the size of the button.",
112
- "type": "'small'|'medium'|'large'",
110
+ "type": "'x-small'|'small'|'medium'|'large'",
113
111
  "default": "\"medium\""
114
112
  },
115
113
  {
@@ -169,13 +167,6 @@
169
167
  "description": "Sets the link's destination.",
170
168
  "type": "?string"
171
169
  },
172
- {
173
- "name": "iconPosition",
174
- "attribute": "icon-position",
175
- "description": "Sets location of icon in relation to the label.",
176
- "type": "'before'|'after'",
177
- "default": "\"before\""
178
- },
179
170
  {
180
171
  "name": "pending",
181
172
  "attribute": "pending",
@@ -199,7 +190,7 @@
199
190
  "name": "size",
200
191
  "attribute": "size",
201
192
  "description": "Sets the size of the button.",
202
- "type": "'small'|'medium'|'large'",
193
+ "type": "'x-small'|'small'|'medium'|'large'",
203
194
  "default": "\"medium\""
204
195
  },
205
196
  {
@@ -220,12 +211,20 @@
220
211
  "attribute": "value",
221
212
  "description": "Sets the value of the button.",
222
213
  "type": "?string"
214
+ },
215
+ {
216
+ "name": "uniqueId",
217
+ "type": "number"
223
218
  }
224
219
  ],
225
220
  "slots": [
226
221
  {
227
- "name": "jh-button-icon",
228
- "description": "Use to insert an icon."
222
+ "name": "jh-button-icon-left",
223
+ "description": "Use to insert an icon on the left side of the button and for single icon buttons."
224
+ },
225
+ {
226
+ "name": "jh-button-icon-right",
227
+ "description": "Use to insert an icon on the right side of the button and for single icon buttons."
229
228
  }
230
229
  ],
231
230
  "cssProperties": [
@@ -611,7 +610,7 @@
611
610
  },
612
611
  {
613
612
  "name": "--jh-button-size",
614
- "description": "The button width when no label is set, and the button height. Button width and height defaults to `--jh-dimension-1000` when `size=\"small\"`, `--jh-dimension-1200` when `size=\"medium\"`, and `--jh-dimension-1400` when `size=\"large\"`."
613
+ "description": "The button width of single icon buttons, and the button height. Button width and height defaults to `--jh-dimension-600` when `size=\"x-small\"`,`--jh-dimension-800` when `size=\"small\"`, `--jh-dimension-1000` when `size=\"medium\"`, and `--jh-dimension-1200` when `size=\"large\"`."
615
614
  }
616
615
  ]
617
616
  },
@@ -716,6 +715,10 @@
716
715
  "attribute": "header-title",
717
716
  "description": "Provides context for the content of the card.",
718
717
  "type": "?string"
718
+ },
719
+ {
720
+ "name": "uniqueId",
721
+ "type": "number"
719
722
  }
720
723
  ],
721
724
  "slots": [
@@ -905,6 +908,10 @@
905
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.",
906
909
  "type": "?boolean",
907
910
  "default": "false"
911
+ },
912
+ {
913
+ "name": "uniqueId",
914
+ "type": "number"
908
915
  }
909
916
  ],
910
917
  "slots": [
@@ -1044,12 +1051,16 @@
1044
1051
  "attribute": "accessible-label",
1045
1052
  "description": "Sets an `aria-label` to assist screen reader users when no visible label is present.",
1046
1053
  "type": "?string"
1054
+ },
1055
+ {
1056
+ "name": "uniqueId",
1057
+ "type": "number"
1047
1058
  }
1048
1059
  ],
1049
1060
  "events": [
1050
1061
  {
1051
1062
  "name": "jh-change",
1052
- "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`."
1053
1064
  }
1054
1065
  ],
1055
1066
  "cssProperties": [
@@ -1251,6 +1262,10 @@
1251
1262
  "attribute": "inset",
1252
1263
  "description": "The alignment of the left edge of the divider.",
1253
1264
  "type": "0|8|16|24|32|40|48|56|64|72|80|88|96"
1265
+ },
1266
+ {
1267
+ "name": "uniqueId",
1268
+ "type": "number"
1254
1269
  }
1255
1270
  ],
1256
1271
  "cssProperties": [
@@ -1279,7 +1294,7 @@
1279
1294
  {
1280
1295
  "name": "size",
1281
1296
  "description": "Sets the size of the icon.",
1282
- "type": "'x-small'|'small'|'medium'|'large'|'x-large'",
1297
+ "type": "'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
1283
1298
  "default": "\"medium\""
1284
1299
  }
1285
1300
  ],
@@ -1288,8 +1303,12 @@
1288
1303
  "name": "size",
1289
1304
  "attribute": "size",
1290
1305
  "description": "Sets the size of the icon.",
1291
- "type": "'x-small'|'small'|'medium'|'large'|'x-large'",
1306
+ "type": "'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
1292
1307
  "default": "\"medium\""
1308
+ },
1309
+ {
1310
+ "name": "uniqueId",
1311
+ "type": "number"
1293
1312
  }
1294
1313
  ],
1295
1314
  "slots": [
@@ -1322,6 +1341,10 @@
1322
1341
  {
1323
1342
  "name": "--jh-icon-size-extra-large",
1324
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`."
1325
1348
  }
1326
1349
  ]
1327
1350
  },
@@ -1415,6 +1438,11 @@
1415
1438
  "description": "Sets a name for the input control.",
1416
1439
  "type": "?string"
1417
1440
  },
1441
+ {
1442
+ "name": "pattern",
1443
+ "description": "Sets the pattern attribute on the input field.",
1444
+ "type": "?string"
1445
+ },
1418
1446
  {
1419
1447
  "name": "readonly",
1420
1448
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -1559,6 +1587,12 @@
1559
1587
  "description": "Sets a name for the input control.",
1560
1588
  "type": "?string"
1561
1589
  },
1590
+ {
1591
+ "name": "pattern",
1592
+ "attribute": "pattern",
1593
+ "description": "Sets the pattern attribute on the input field.",
1594
+ "type": "?string"
1595
+ },
1562
1596
  {
1563
1597
  "name": "readonly",
1564
1598
  "attribute": "readonly",
@@ -1606,28 +1640,32 @@
1606
1640
  "attribute": "value",
1607
1641
  "description": "Sets the value of the input.",
1608
1642
  "type": "?string"
1643
+ },
1644
+ {
1645
+ "name": "uniqueId",
1646
+ "type": "number"
1609
1647
  }
1610
1648
  ],
1611
1649
  "events": [
1612
1650
  {
1613
1651
  "name": "jh-select",
1614
- "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`."
1615
1653
  },
1616
1654
  {
1617
1655
  "name": "jh-change",
1618
- "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`."
1619
1657
  },
1620
1658
  {
1621
1659
  "name": "jh-input",
1622
- "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`."
1623
1661
  },
1624
1662
  {
1625
1663
  "name": "jh-maxlength",
1626
- "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`."
1627
1665
  },
1628
1666
  {
1629
1667
  "name": "jh-input:clear-button-click",
1630
- "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`."
1631
1669
  }
1632
1670
  ],
1633
1671
  "slots": [
@@ -1837,7 +1875,7 @@
1837
1875
  "name": "hide-right-slot",
1838
1876
  "description": "Hides the right slot from input.",
1839
1877
  "type": "boolean",
1840
- "default": "true"
1878
+ "default": "false"
1841
1879
  },
1842
1880
  {
1843
1881
  "name": "input-mask",
@@ -1875,6 +1913,11 @@
1875
1913
  "description": "Sets a name for the input control.",
1876
1914
  "type": "?string"
1877
1915
  },
1916
+ {
1917
+ "name": "pattern",
1918
+ "description": "Sets the pattern attribute on the input field.",
1919
+ "type": "?string"
1920
+ },
1878
1921
  {
1879
1922
  "name": "readonly",
1880
1923
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -1992,7 +2035,7 @@
1992
2035
  "attribute": "hide-right-slot",
1993
2036
  "description": "Hides the right slot from input.",
1994
2037
  "type": "boolean",
1995
- "default": "true"
2038
+ "default": "false"
1996
2039
  },
1997
2040
  {
1998
2041
  "name": "inputMask",
@@ -2037,6 +2080,12 @@
2037
2080
  "description": "Sets a name for the input control.",
2038
2081
  "type": "?string"
2039
2082
  },
2083
+ {
2084
+ "name": "pattern",
2085
+ "attribute": "pattern",
2086
+ "description": "Sets the pattern attribute on the input field.",
2087
+ "type": "?string"
2088
+ },
2040
2089
  {
2041
2090
  "name": "readonly",
2042
2091
  "attribute": "readonly",
@@ -2084,28 +2133,32 @@
2084
2133
  "attribute": "value",
2085
2134
  "description": "Sets the value of the input.",
2086
2135
  "type": "?string"
2136
+ },
2137
+ {
2138
+ "name": "uniqueId",
2139
+ "type": "number"
2087
2140
  }
2088
2141
  ],
2089
2142
  "events": [
2090
2143
  {
2091
2144
  "name": "jh-select",
2092
- "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`."
2093
2146
  },
2094
2147
  {
2095
2148
  "name": "jh-change",
2096
- "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`."
2097
2150
  },
2098
2151
  {
2099
2152
  "name": "jh-input",
2100
- "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`."
2101
2154
  },
2102
2155
  {
2103
2156
  "name": "jh-maxlength",
2104
- "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`."
2105
2158
  },
2106
2159
  {
2107
2160
  "name": "jh-input:clear-button-click",
2108
- "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`."
2109
2162
  }
2110
2163
  ],
2111
2164
  "slots": [
@@ -2346,6 +2399,11 @@
2346
2399
  "description": "Sets a name for the input control.",
2347
2400
  "type": "?string"
2348
2401
  },
2402
+ {
2403
+ "name": "pattern",
2404
+ "description": "Sets the pattern attribute on the input field.",
2405
+ "type": "?string"
2406
+ },
2349
2407
  {
2350
2408
  "name": "readonly",
2351
2409
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -2489,6 +2547,12 @@
2489
2547
  "description": "Sets a name for the input control.",
2490
2548
  "type": "?string"
2491
2549
  },
2550
+ {
2551
+ "name": "pattern",
2552
+ "attribute": "pattern",
2553
+ "description": "Sets the pattern attribute on the input field.",
2554
+ "type": "?string"
2555
+ },
2492
2556
  {
2493
2557
  "name": "readonly",
2494
2558
  "attribute": "readonly",
@@ -2536,28 +2600,32 @@
2536
2600
  "attribute": "value",
2537
2601
  "description": "Sets the value of the input.",
2538
2602
  "type": "?string"
2603
+ },
2604
+ {
2605
+ "name": "uniqueId",
2606
+ "type": "number"
2539
2607
  }
2540
2608
  ],
2541
2609
  "events": [
2542
2610
  {
2543
2611
  "name": "jh-select",
2544
- "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`."
2545
2613
  },
2546
2614
  {
2547
2615
  "name": "jh-change",
2548
- "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`."
2549
2617
  },
2550
2618
  {
2551
2619
  "name": "jh-input",
2552
- "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`."
2553
2621
  },
2554
2622
  {
2555
2623
  "name": "jh-maxlength",
2556
- "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`."
2557
2625
  },
2558
2626
  {
2559
2627
  "name": "jh-input:clear-button-click",
2560
- "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`."
2561
2629
  }
2562
2630
  ],
2563
2631
  "slots": [
@@ -2790,6 +2858,11 @@
2790
2858
  "description": "Sets a name for the input control.",
2791
2859
  "type": "?string"
2792
2860
  },
2861
+ {
2862
+ "name": "pattern",
2863
+ "description": "Sets the pattern attribute on the input field.",
2864
+ "type": "?string"
2865
+ },
2793
2866
  {
2794
2867
  "name": "readonly",
2795
2868
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -2933,6 +3006,12 @@
2933
3006
  "description": "Sets a name for the input control.",
2934
3007
  "type": "?string"
2935
3008
  },
3009
+ {
3010
+ "name": "pattern",
3011
+ "attribute": "pattern",
3012
+ "description": "Sets the pattern attribute on the input field.",
3013
+ "type": "?string"
3014
+ },
2936
3015
  {
2937
3016
  "name": "readonly",
2938
3017
  "attribute": "readonly",
@@ -2980,28 +3059,32 @@
2980
3059
  "attribute": "value",
2981
3060
  "description": "Sets the value of the input.",
2982
3061
  "type": "?string"
3062
+ },
3063
+ {
3064
+ "name": "uniqueId",
3065
+ "type": "number"
2983
3066
  }
2984
3067
  ],
2985
3068
  "events": [
2986
3069
  {
2987
3070
  "name": "jh-select",
2988
- "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`."
2989
3072
  },
2990
3073
  {
2991
3074
  "name": "jh-change",
2992
- "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`."
2993
3076
  },
2994
3077
  {
2995
3078
  "name": "jh-input",
2996
- "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`."
2997
3080
  },
2998
3081
  {
2999
3082
  "name": "jh-maxlength",
3000
- "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`."
3001
3084
  },
3002
3085
  {
3003
3086
  "name": "jh-input:clear-button-click",
3004
- "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`."
3005
3088
  }
3006
3089
  ],
3007
3090
  "slots": [
@@ -3260,6 +3343,11 @@
3260
3343
  "description": "Sets a name for the input control.",
3261
3344
  "type": "?string"
3262
3345
  },
3346
+ {
3347
+ "name": "pattern",
3348
+ "description": "Sets the pattern attribute on the input field.",
3349
+ "type": "?string"
3350
+ },
3263
3351
  {
3264
3352
  "name": "readonly",
3265
3353
  "description": "Prevents users from changing the input value.",
@@ -3435,6 +3523,12 @@
3435
3523
  "description": "Sets a name for the input control.",
3436
3524
  "type": "?string"
3437
3525
  },
3526
+ {
3527
+ "name": "pattern",
3528
+ "attribute": "pattern",
3529
+ "description": "Sets the pattern attribute on the input field.",
3530
+ "type": "?string"
3531
+ },
3438
3532
  {
3439
3533
  "name": "readonly",
3440
3534
  "attribute": "readonly",
@@ -3482,28 +3576,32 @@
3482
3576
  "attribute": "value",
3483
3577
  "description": "Sets the value of the input.",
3484
3578
  "type": "?string"
3579
+ },
3580
+ {
3581
+ "name": "uniqueId",
3582
+ "type": "number"
3485
3583
  }
3486
3584
  ],
3487
3585
  "events": [
3488
3586
  {
3489
3587
  "name": "jh-change",
3490
- "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`."
3491
3589
  },
3492
3590
  {
3493
3591
  "name": "jh-input",
3494
- "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`."
3495
3593
  },
3496
3594
  {
3497
3595
  "name": "jh-select",
3498
- "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`."
3499
3597
  },
3500
3598
  {
3501
3599
  "name": "jh-maxlength",
3502
- "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`."
3503
3601
  },
3504
3602
  {
3505
3603
  "name": "jh-input:clear-button-click",
3506
- "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`."
3507
3605
  }
3508
3606
  ],
3509
3607
  "slots": [
@@ -3740,6 +3838,11 @@
3740
3838
  "description": "Sets a name for the input control.",
3741
3839
  "type": "?string"
3742
3840
  },
3841
+ {
3842
+ "name": "pattern",
3843
+ "description": "Sets the pattern attribute on the input field.",
3844
+ "type": "?string"
3845
+ },
3743
3846
  {
3744
3847
  "name": "readonly",
3745
3848
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -3883,6 +3986,12 @@
3883
3986
  "description": "Sets a name for the input control.",
3884
3987
  "type": "?string"
3885
3988
  },
3989
+ {
3990
+ "name": "pattern",
3991
+ "attribute": "pattern",
3992
+ "description": "Sets the pattern attribute on the input field.",
3993
+ "type": "?string"
3994
+ },
3886
3995
  {
3887
3996
  "name": "readonly",
3888
3997
  "attribute": "readonly",
@@ -3930,28 +4039,32 @@
3930
4039
  "attribute": "value",
3931
4040
  "description": "Sets the value of the input.",
3932
4041
  "type": "?string"
4042
+ },
4043
+ {
4044
+ "name": "uniqueId",
4045
+ "type": "number"
3933
4046
  }
3934
4047
  ],
3935
4048
  "events": [
3936
4049
  {
3937
4050
  "name": "jh-select",
3938
- "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`."
3939
4052
  },
3940
4053
  {
3941
4054
  "name": "jh-change",
3942
- "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`."
3943
4056
  },
3944
4057
  {
3945
4058
  "name": "jh-input",
3946
- "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`."
3947
4060
  },
3948
4061
  {
3949
4062
  "name": "jh-maxlength",
3950
- "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`."
3951
4064
  },
3952
4065
  {
3953
4066
  "name": "jh-input:clear-button-click",
3954
- "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`."
3955
4068
  }
3956
4069
  ],
3957
4070
  "slots": [
@@ -4183,6 +4296,11 @@
4183
4296
  "description": "Sets a name for the input control.",
4184
4297
  "type": "?string"
4185
4298
  },
4299
+ {
4300
+ "name": "pattern",
4301
+ "description": "Sets the pattern attribute on the input field.",
4302
+ "type": "?string"
4303
+ },
4186
4304
  {
4187
4305
  "name": "readonly",
4188
4306
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -4326,6 +4444,12 @@
4326
4444
  "description": "Sets a name for the input control.",
4327
4445
  "type": "?string"
4328
4446
  },
4447
+ {
4448
+ "name": "pattern",
4449
+ "attribute": "pattern",
4450
+ "description": "Sets the pattern attribute on the input field.",
4451
+ "type": "?string"
4452
+ },
4329
4453
  {
4330
4454
  "name": "readonly",
4331
4455
  "attribute": "readonly",
@@ -4373,28 +4497,32 @@
4373
4497
  "attribute": "value",
4374
4498
  "description": "Sets the value of the input.",
4375
4499
  "type": "?string"
4500
+ },
4501
+ {
4502
+ "name": "uniqueId",
4503
+ "type": "number"
4376
4504
  }
4377
4505
  ],
4378
4506
  "events": [
4379
4507
  {
4380
4508
  "name": "jh-select",
4381
- "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`."
4382
4510
  },
4383
4511
  {
4384
4512
  "name": "jh-change",
4385
- "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`."
4386
4514
  },
4387
4515
  {
4388
4516
  "name": "jh-input",
4389
- "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`."
4390
4518
  },
4391
4519
  {
4392
4520
  "name": "jh-maxlength",
4393
- "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`."
4394
4522
  },
4395
4523
  {
4396
4524
  "name": "jh-input:clear-button-click",
4397
- "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`."
4398
4526
  }
4399
4527
  ],
4400
4528
  "slots": [
@@ -4565,6 +4693,10 @@
4565
4693
  "attribute": "accessible-label",
4566
4694
  "description": "Sets an `aria-label` to assist screen reader users when no visible label is present.",
4567
4695
  "type": "?string"
4696
+ },
4697
+ {
4698
+ "name": "uniqueId",
4699
+ "type": "number"
4568
4700
  }
4569
4701
  ],
4570
4702
  "slots": [
@@ -4607,21 +4739,11 @@
4607
4739
  "description": "The inset of the optional divider. Omit to use the divider-inset token instead.",
4608
4740
  "type": "null|0|8|16|24|32|40|48|56|64|72|80|88|96"
4609
4741
  },
4610
- {
4611
- "name": "primary-metadata",
4612
- "description": "The text to show as primary metadata.",
4613
- "type": "?string"
4614
- },
4615
4742
  {
4616
4743
  "name": "primary-text",
4617
4744
  "description": "The text to show as primary text.",
4618
4745
  "type": "?string"
4619
4746
  },
4620
- {
4621
- "name": "secondary-metadata",
4622
- "description": "The text to show as secondary metadata.",
4623
- "type": "?string"
4624
- },
4625
4747
  {
4626
4748
  "name": "secondary-text",
4627
4749
  "description": "The text to show as secondary text.",
@@ -4654,24 +4776,12 @@
4654
4776
  "description": "The inset of the optional divider. Omit to use the divider-inset token instead.",
4655
4777
  "type": "null|0|8|16|24|32|40|48|56|64|72|80|88|96"
4656
4778
  },
4657
- {
4658
- "name": "primaryMetadata",
4659
- "attribute": "primary-metadata",
4660
- "description": "The text to show as primary metadata.",
4661
- "type": "?string"
4662
- },
4663
4779
  {
4664
4780
  "name": "primaryText",
4665
4781
  "attribute": "primary-text",
4666
4782
  "description": "The text to show as primary text.",
4667
4783
  "type": "?string"
4668
4784
  },
4669
- {
4670
- "name": "secondaryMetadata",
4671
- "attribute": "secondary-metadata",
4672
- "description": "The text to show as secondary metadata.",
4673
- "type": "?string"
4674
- },
4675
4785
  {
4676
4786
  "name": "secondaryText",
4677
4787
  "attribute": "secondary-text",
@@ -4691,12 +4801,16 @@
4691
4801
  "description": "Determines whether the divider is displayed below the list-item.",
4692
4802
  "type": "?boolean",
4693
4803
  "default": "false"
4804
+ },
4805
+ {
4806
+ "name": "uniqueId",
4807
+ "type": "number"
4694
4808
  }
4695
4809
  ],
4696
4810
  "slots": [
4697
4811
  {
4698
4812
  "name": "default",
4699
- "description": "Use to insert fully customized content into the list-item. Cannot be used with the other slots."
4813
+ "description": "Use to insert custom content into the list-item."
4700
4814
  },
4701
4815
  {
4702
4816
  "name": "jh-list-item-left",
@@ -4705,52 +4819,80 @@
4705
4819
  {
4706
4820
  "name": "jh-list-item-right",
4707
4821
  "description": "Use to insert custom content on the right the list-item."
4708
- },
4709
- {
4710
- "name": "jh-list-item-content",
4711
- "description": "Use to insert custom content into the list-item."
4712
- },
4713
- {
4714
- "name": "jh-list-item-metadata",
4715
- "description": "Use to insert custom metadata into the list-item."
4716
4822
  }
4717
4823
  ],
4718
4824
  "cssProperties": [
4719
4825
  {
4720
- "name": "--jh-list-item-color-background",
4826
+ "name": "--jh-list-item-color-background-enabled",
4721
4827
  "description": "The list-item container's background-color.\nDefaults to `transparent`."
4722
4828
  },
4723
4829
  {
4724
- "name": "--jh-list-item-color-text",
4725
- "description": "The default, left, text, metadata, right, primary, and secondary slot text color. Defaults to `--jh-color-content-primary-enabled`."
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`."
4726
4832
  },
4727
4833
  {
4728
- "name": "--jh-list-item-space-padding-right",
4729
- "description": "The right padding on the list-item container. Defaults to `--jh-dimension-600`."
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`."
4730
4836
  },
4731
4837
  {
4732
- "name": "--jh-list-item-space-padding-left",
4733
- "description": "The left padding on the list-item container. Defaults to `--jh-dimension-600`."
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`."
4734
4840
  },
4735
4841
  {
4736
- "name": "--jh-list-item-size-height",
4737
- "description": "The list-item's height. Defaults to `auto`."
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`."
4738
4844
  },
4739
4845
  {
4740
- "name": "--jh-list-item-color-text-primary",
4741
- "description": "The primary text color.\nDefaults to `--jh-color-content-primary-enabled`."
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`."
4742
4848
  },
4743
4849
  {
4744
- "name": "--jh-list-item-color-text-secondary",
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`."
4852
+ },
4853
+ {
4854
+ "name": "--jh-list-item-color-text-secondary-enabled",
4745
4855
  "description": "The secondary text color.\nDefaults to `--jh-color-content-secondary-enabled`."
4746
4856
  },
4747
4857
  {
4748
- "name": "--jh-list-item-metadata-color-text-primary",
4749
- "description": "The primary metadata text color.\nDefaults to `--jh-color-content-primary-enabled`."
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`."
4860
+ },
4861
+ {
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`."
4750
4884
  },
4751
4885
  {
4752
- "name": "--jh-list-item-metadata-color-text-secondary",
4753
- "description": "The secondary metadata text color.\nDefaults to `--jh-color-content-secondary-enabled`."
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`."
4754
4896
  },
4755
4897
  {
4756
4898
  "name": "--jh-list-item-color-background-focus",
@@ -4768,6 +4910,14 @@
4768
4910
  "name": "--jh-list-item-color-background-active",
4769
4911
  "description": "The list-item background-color when interactive and active.\nDefaults to `--jh-color-container-primary-active`."
4770
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
+ },
4771
4921
  {
4772
4922
  "name": "--jh-list-item-color-background-selected",
4773
4923
  "description": "The list-item background-color when interactive and selected. Defaults to `--jh-color-container-primary-selected`."
@@ -4781,6 +4931,12 @@
4781
4931
  {
4782
4932
  "name": "jh-menu",
4783
4933
  "path": "./components/menu/menu.js",
4934
+ "properties": [
4935
+ {
4936
+ "name": "uniqueId",
4937
+ "type": "number"
4938
+ }
4939
+ ],
4784
4940
  "slots": [
4785
4941
  {
4786
4942
  "name": "default",
@@ -4882,6 +5038,10 @@
4882
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.",
4883
5039
  "type": "'alert'|'banner'",
4884
5040
  "default": "\"alert\""
5041
+ },
5042
+ {
5043
+ "name": "uniqueId",
5044
+ "type": "number"
4885
5045
  }
4886
5046
  ],
4887
5047
  "events": [
@@ -5105,7 +5265,7 @@
5105
5265
  {
5106
5266
  "name": "size",
5107
5267
  "description": "Sets the size of the progress component.",
5108
- "type": "'small'|'medium'|'large'",
5268
+ "type": " 'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
5109
5269
  "default": "\"medium\""
5110
5270
  },
5111
5271
  {
@@ -5167,7 +5327,7 @@
5167
5327
  "name": "size",
5168
5328
  "attribute": "size",
5169
5329
  "description": "Sets the size of the progress component.",
5170
- "type": "'small'|'medium'|'large'",
5330
+ "type": " 'x-small'|'small'|'medium'|'large'|'x-large'|'xx-large'",
5171
5331
  "default": "\"medium\""
5172
5332
  },
5173
5333
  {
@@ -5216,6 +5376,10 @@
5216
5376
  "attribute": "accessible-valuetext",
5217
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.",
5218
5378
  "type": "?string"
5379
+ },
5380
+ {
5381
+ "name": "uniqueId",
5382
+ "type": "number"
5219
5383
  }
5220
5384
  ],
5221
5385
  "cssProperties": [
@@ -5238,6 +5402,14 @@
5238
5402
  {
5239
5403
  "name": "--jh-progress-indicator-color",
5240
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."
5241
5413
  }
5242
5414
  ]
5243
5415
  },
@@ -5382,12 +5554,16 @@
5382
5554
  "attribute": "value",
5383
5555
  "description": "Sets the value of the radio group.",
5384
5556
  "type": "?string"
5557
+ },
5558
+ {
5559
+ "name": "uniqueId",
5560
+ "type": "number"
5385
5561
  }
5386
5562
  ],
5387
5563
  "events": [
5388
5564
  {
5389
5565
  "name": "jh-change",
5390
- "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`."
5391
5567
  }
5392
5568
  ],
5393
5569
  "slots": [
@@ -5498,6 +5674,10 @@
5498
5674
  "attribute": "value",
5499
5675
  "description": "Sets the value of the radio.",
5500
5676
  "type": "?string"
5677
+ },
5678
+ {
5679
+ "name": "uniqueId",
5680
+ "type": "number"
5501
5681
  }
5502
5682
  ],
5503
5683
  "events": [
@@ -5730,6 +5910,11 @@
5730
5910
  "description": "Sets a name for the input control.",
5731
5911
  "type": "?string"
5732
5912
  },
5913
+ {
5914
+ "name": "pattern",
5915
+ "description": "Sets the pattern attribute on the input field.",
5916
+ "type": "?string"
5917
+ },
5733
5918
  {
5734
5919
  "name": "readonly",
5735
5920
  "description": "Prevents users from changing the input value. Removes all slotted content.",
@@ -5893,6 +6078,12 @@
5893
6078
  "description": "Sets a name for the input control.",
5894
6079
  "type": "?string"
5895
6080
  },
6081
+ {
6082
+ "name": "pattern",
6083
+ "attribute": "pattern",
6084
+ "description": "Sets the pattern attribute on the input field.",
6085
+ "type": "?string"
6086
+ },
5896
6087
  {
5897
6088
  "name": "readonly",
5898
6089
  "attribute": "readonly",
@@ -5940,28 +6131,32 @@
5940
6131
  "attribute": "value",
5941
6132
  "description": "Sets the value of the input.",
5942
6133
  "type": "?string"
6134
+ },
6135
+ {
6136
+ "name": "uniqueId",
6137
+ "type": "number"
5943
6138
  }
5944
6139
  ],
5945
6140
  "events": [
5946
6141
  {
5947
6142
  "name": "jh-change",
5948
- "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`."
5949
6144
  },
5950
6145
  {
5951
6146
  "name": "jh-select",
5952
- "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`."
5953
6148
  },
5954
6149
  {
5955
6150
  "name": "jh-input",
5956
- "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`."
5957
6152
  },
5958
6153
  {
5959
6154
  "name": "jh-maxlength",
5960
- "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`."
5961
6156
  },
5962
6157
  {
5963
6158
  "name": "jh-input:clear-button-click",
5964
- "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`."
5965
6160
  }
5966
6161
  ],
5967
6162
  "slots": [
@@ -6145,7 +6340,7 @@
6145
6340
  },
6146
6341
  {
6147
6342
  "name": "--jh-input-field-color-background",
6148
- "description": "The input field background-color. Defaults to `--jh-color-container-primary-enabled`."
6343
+ "description": "The input field background-color when in an editable state. This property does not apply when the component is set to `readonly`. Defaults to `--jh-color-container-primary-enabled`."
6149
6344
  },
6150
6345
  {
6151
6346
  "name": "--jh-input-field-color-border-enabled",
@@ -6340,6 +6535,10 @@
6340
6535
  "attribute": "label",
6341
6536
  "description": "Describes the intent of the switch.",
6342
6537
  "type": "?string"
6538
+ },
6539
+ {
6540
+ "name": "uniqueId",
6541
+ "type": "number"
6343
6542
  }
6344
6543
  ],
6345
6544
  "events": [
@@ -6430,108 +6629,10 @@
6430
6629
  "description": "Sets the horizontal alignment of the content.",
6431
6630
  "type": "'left' | 'center' | 'right'",
6432
6631
  "default": "\"left\""
6433
- }
6434
- ],
6435
- "slots": [
6436
- {
6437
- "name": "default",
6438
- "description": "Use to insert content."
6439
- }
6440
- ],
6441
- "cssProperties": [
6442
- {
6443
- "name": "--jh-table-data-cell-color-text",
6444
- "description": "The cell text color. Defaults to `--jh-color-content-primary-enabled`."
6445
- },
6446
- {
6447
- "name": "--jh-table-data-cell-color-background",
6448
- "description": "The cell background color. Defaults to `--jh-color-container-primary-enabled`."
6449
- },
6450
- {
6451
- "name": "--jh-table-data-cell-color-border-top",
6452
- "description": "The cell border top color. Defaults to `transparent`."
6453
- },
6454
- {
6455
- "name": "--jh-table-data-cell-color-border-right",
6456
- "description": "The cell border right color. Defaults to `transparent`."
6457
- },
6458
- {
6459
- "name": "--jh-table-data-cell-color-border-left",
6460
- "description": "The cell border left color. Defaults to `transparent`."
6461
6632
  },
6462
6633
  {
6463
- "name": "--jh-table-data-cell-color-border-bottom",
6464
- "description": "The cell border bottom color. Defaults to `--jh-border-decorative-color`."
6465
- },
6466
- {
6467
- "name": "--jh-table-data-cell-border-top-width",
6468
- "description": "The cell border top width. Defaults to `--jh-border-decorative-width`."
6469
- },
6470
- {
6471
- "name": "--jh-table-data-cell-border-right-width",
6472
- "description": "The cell border right width. Defaults to `--jh-border-decorative-width`."
6473
- },
6474
- {
6475
- "name": "--jh-table-data-cell-border-left-width",
6476
- "description": "The cell border left width. Defaults to `--jh-border-decorative-width`."
6477
- },
6478
- {
6479
- "name": "--jh-table-data-cell-border-bottom-width",
6480
- "description": "The cell border bottom width. Defaults to `--jh-border-decorative-width`."
6481
- },
6482
- {
6483
- "name": "--jh-table-data-cell-border-top-style",
6484
- "description": "The cell border top style. Defaults to `--jh-border-decorative-style`."
6485
- },
6486
- {
6487
- "name": "--jh-table-data-cell-border-right-style",
6488
- "description": "The cell border right style. Defaults to `--jh-border-decorative-style`."
6489
- },
6490
- {
6491
- "name": "--jh-table-data-cell-border-left-style",
6492
- "description": "The cell border left style. Defaults to `--jh-border-decorative-style`."
6493
- },
6494
- {
6495
- "name": "--jh-table-data-cell-border-bottom-style",
6496
- "description": "The cell border bottom style. Defaults to `--jh-border-decorative-style`."
6497
- },
6498
- {
6499
- "name": "--jh-table-data-cell-space-padding-top",
6500
- "description": "The cell padding top. Defaults to `--jh-dimension-400`."
6501
- },
6502
- {
6503
- "name": "--jh-table-data-cell-space-padding-right",
6504
- "description": "The cell padding right. Defaults to `--jh-dimension-400`."
6505
- },
6506
- {
6507
- "name": "--jh-table-data-cell-space-padding-bottom",
6508
- "description": "The cell padding bottom. Defaults to `--jh-dimension-400`."
6509
- },
6510
- {
6511
- "name": "--jh-table-data-cell-space-padding-left",
6512
- "description": "The cell padding left. Defaults to `--jh-dimension-400`."
6513
- }
6514
- ]
6515
- },
6516
- {
6517
- "name": "jh-table-data-cell",
6518
- "path": "./components/table-data-cell/table-data-cell.js",
6519
- "description": "Table Cell",
6520
- "attributes": [
6521
- {
6522
- "name": "horizontal-align",
6523
- "description": "Sets the horizontal alignment of the content.",
6524
- "type": "'left' | 'center' | 'right'",
6525
- "default": "\"left\""
6526
- }
6527
- ],
6528
- "properties": [
6529
- {
6530
- "name": "horizontalAlign",
6531
- "attribute": "horizontal-align",
6532
- "description": "Sets the horizontal alignment of the content.",
6533
- "type": "'left' | 'center' | 'right'",
6534
- "default": "\"left\""
6634
+ "name": "uniqueId",
6635
+ "type": "number"
6535
6636
  }
6536
6637
  ],
6537
6638
  "slots": [
@@ -6660,12 +6761,16 @@
6660
6761
  "description": "Sets the order in which the items in the column are sorted.",
6661
6762
  "type": "'none' | 'ascending' | 'descending'",
6662
6763
  "default": "\"none\""
6764
+ },
6765
+ {
6766
+ "name": "uniqueId",
6767
+ "type": "number"
6663
6768
  }
6664
6769
  ],
6665
6770
  "events": [
6666
6771
  {
6667
6772
  "name": "jh-sort",
6668
- "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 ` e.detail.id`."
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`."
6669
6774
  }
6670
6775
  ],
6671
6776
  "slots": [
@@ -6885,6 +6990,12 @@
6885
6990
  "name": "jh-table-row",
6886
6991
  "path": "./components/table-row/table-row.js",
6887
6992
  "description": "Table Row",
6993
+ "properties": [
6994
+ {
6995
+ "name": "uniqueId",
6996
+ "type": "number"
6997
+ }
6998
+ ],
6888
6999
  "slots": [
6889
7000
  {
6890
7001
  "name": "default",
@@ -7013,6 +7124,10 @@
7013
7124
  "description": "Makes the table horizontally scrollable on smaller screens.",
7014
7125
  "type": "Boolean",
7015
7126
  "default": "false"
7127
+ },
7128
+ {
7129
+ "name": "uniqueId",
7130
+ "type": "number"
7016
7131
  }
7017
7132
  ],
7018
7133
  "slots": [
@@ -7095,6 +7210,10 @@
7095
7210
  "description": "Sets the alignment of the tags.",
7096
7211
  "type": "'start'| 'end'",
7097
7212
  "default": "\"start\""
7213
+ },
7214
+ {
7215
+ "name": "uniqueId",
7216
+ "type": "number"
7098
7217
  }
7099
7218
  ],
7100
7219
  "slots": [
@@ -7204,6 +7323,10 @@
7204
7323
  "description": "Removes the tag after the dismiss button is activated.",
7205
7324
  "type": "?Boolean",
7206
7325
  "default": "false"
7326
+ },
7327
+ {
7328
+ "name": "uniqueId",
7329
+ "type": "number"
7207
7330
  }
7208
7331
  ],
7209
7332
  "events": [
@@ -7440,6 +7563,10 @@
7440
7563
  "description": "Places action button(s) on new line, below default slot.",
7441
7564
  "type": "boolean",
7442
7565
  "default": "false"
7566
+ },
7567
+ {
7568
+ "name": "uniqueId",
7569
+ "type": "number"
7443
7570
  }
7444
7571
  ],
7445
7572
  "events": [
@@ -7521,6 +7648,10 @@
7521
7648
  "description": "The position of the tooltip and its arrow.",
7522
7649
  "type": "?string",
7523
7650
  "default": "\"top-center\""
7651
+ },
7652
+ {
7653
+ "name": "uniqueId",
7654
+ "type": "number"
7524
7655
  }
7525
7656
  ],
7526
7657
  "slots": [
@@ -7541,6 +7672,10 @@
7541
7672
  {
7542
7673
  "name": "--jh-tooltip-color-text",
7543
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`."
7544
7679
  }
7545
7680
  ]
7546
7681
  }