@vscode-elements/elements 2.2.0 → 2.3.1-pre.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/README.md +1 -1
  2. package/custom-elements.json +490 -298
  3. package/dist/bundled.js +150 -59
  4. package/dist/includes/VscElement.js +1 -1
  5. package/dist/includes/VscElement.js.map +1 -1
  6. package/dist/main.d.ts +1 -0
  7. package/dist/main.d.ts.map +1 -1
  8. package/dist/main.js +1 -0
  9. package/dist/main.js.map +1 -1
  10. package/dist/vscode-progress-bar/index.d.ts +2 -0
  11. package/dist/vscode-progress-bar/index.d.ts.map +1 -0
  12. package/dist/vscode-progress-bar/index.js +2 -0
  13. package/dist/vscode-progress-bar/index.js.map +1 -0
  14. package/dist/vscode-progress-bar/vscode-progress-bar.d.ts +45 -0
  15. package/dist/vscode-progress-bar/vscode-progress-bar.d.ts.map +1 -0
  16. package/dist/vscode-progress-bar/vscode-progress-bar.js +135 -0
  17. package/dist/vscode-progress-bar/vscode-progress-bar.js.map +1 -0
  18. package/dist/vscode-progress-bar/vscode-progress-bar.styles.d.ts +4 -0
  19. package/dist/vscode-progress-bar/vscode-progress-bar.styles.d.ts.map +1 -0
  20. package/dist/vscode-progress-bar/vscode-progress-bar.styles.js +82 -0
  21. package/dist/vscode-progress-bar/vscode-progress-bar.styles.js.map +1 -0
  22. package/dist/vscode-radio/vscode-radio.d.ts +9 -12
  23. package/dist/vscode-radio/vscode-radio.d.ts.map +1 -1
  24. package/dist/vscode-radio/vscode-radio.js +44 -42
  25. package/dist/vscode-radio/vscode-radio.js.map +1 -1
  26. package/dist/vscode-radio-group/vscode-radio-group.d.ts +4 -6
  27. package/dist/vscode-radio-group/vscode-radio-group.d.ts.map +1 -1
  28. package/dist/vscode-radio-group/vscode-radio-group.js +37 -27
  29. package/dist/vscode-radio-group/vscode-radio-group.js.map +1 -1
  30. package/dist/vscode-table/vscode-table.js +1 -1
  31. package/dist/vscode-table/vscode-table.js.map +1 -1
  32. package/package.json +1 -1
  33. package/vscode.css-custom-data.json +21 -20
  34. package/vscode.html-custom-data.json +59 -32
@@ -604,6 +604,131 @@
604
604
  }
605
605
  ]
606
606
  },
607
+ {
608
+ "kind": "javascript-module",
609
+ "path": "src/vscode-badge/vscode-badge.styles.ts",
610
+ "declarations": [
611
+ {
612
+ "kind": "variable",
613
+ "name": "styles",
614
+ "type": {
615
+ "text": "CSSResultGroup"
616
+ },
617
+ "default": "[ defaultStyles, css` :host { display: inline-block; } .root { background-color: var(--vscode-badge-background, #616161); border: 1px solid var(--vscode-contrastBorder, transparent); border-radius: 2px; box-sizing: border-box; color: var(--vscode-badge-foreground, #f8f8f8); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: 11px; font-weight: 400; line-height: 14px; min-width: 18px; padding: 2px 3px; text-align: center; white-space: nowrap; } :host([variant='counter']) .root { border-radius: 11px; line-height: 11px; min-height: 18px; min-width: 18px; padding: 3px 6px; } :host([variant='activity-bar-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 20px; color: var(--vscode-activityBarBadge-foreground, #ffffff); font-size: 9px; font-weight: 600; line-height: 16px; padding: 0 4px; } :host([variant='tab-header-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 10px; color: var(--vscode-activityBarBadge-foreground, #ffffff); line-height: 10px; min-height: 16px; min-width: 16px; padding: 3px 5px; } `, ]"
618
+ }
619
+ ],
620
+ "exports": [
621
+ {
622
+ "kind": "js",
623
+ "name": "default",
624
+ "declaration": {
625
+ "name": "styles",
626
+ "module": "src/vscode-badge/vscode-badge.styles.ts"
627
+ }
628
+ }
629
+ ]
630
+ },
631
+ {
632
+ "kind": "javascript-module",
633
+ "path": "src/vscode-badge/vscode-badge.ts",
634
+ "declarations": [
635
+ {
636
+ "kind": "class",
637
+ "description": "Show counts or status information. Badges can also be used within [Textfield](https://vscode-elements.github.io/components/textfield) and [TabHeader](https://vscode-elements.github.io/components/tabs) components.",
638
+ "name": "VscodeBadge",
639
+ "cssProperties": [
640
+ {
641
+ "description": "A sans-serif font type depends on the host OS.",
642
+ "name": "--vscode-font-family",
643
+ "default": "sans-serif"
644
+ },
645
+ {
646
+ "name": "--vscode-contrastBorder",
647
+ "default": "transparent"
648
+ },
649
+ {
650
+ "description": "default and counter variant background color",
651
+ "name": "--vscode-badge-background",
652
+ "default": "#616161"
653
+ },
654
+ {
655
+ "description": "default and counter variant foreground color",
656
+ "name": "--vscode-badge-foreground",
657
+ "default": "#f8f8f8"
658
+ },
659
+ {
660
+ "description": "activity bar variant background color",
661
+ "name": "--vscode-activityBarBadge-background",
662
+ "default": "#0078d4"
663
+ },
664
+ {
665
+ "description": "activity bar variant foreground color",
666
+ "name": "--vscode-activityBarBadge-foreground",
667
+ "default": "#ffffff"
668
+ }
669
+ ],
670
+ "members": [
671
+ {
672
+ "kind": "field",
673
+ "name": "variant",
674
+ "type": {
675
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
676
+ },
677
+ "default": "'default'",
678
+ "attribute": "variant",
679
+ "reflects": true
680
+ },
681
+ {
682
+ "kind": "field",
683
+ "name": "version",
684
+ "type": {
685
+ "text": "string"
686
+ },
687
+ "description": "VSCode Elements version",
688
+ "readonly": true,
689
+ "inheritedFrom": {
690
+ "name": "VscElement",
691
+ "module": "src/includes/VscElement.ts"
692
+ }
693
+ }
694
+ ],
695
+ "attributes": [
696
+ {
697
+ "name": "variant",
698
+ "type": {
699
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
700
+ },
701
+ "default": "'default'",
702
+ "fieldName": "variant"
703
+ }
704
+ ],
705
+ "superclass": {
706
+ "name": "VscElement",
707
+ "module": "/src/includes/VscElement.js"
708
+ },
709
+ "tagName": "vscode-badge",
710
+ "customElement": true
711
+ }
712
+ ],
713
+ "exports": [
714
+ {
715
+ "kind": "js",
716
+ "name": "VscodeBadge",
717
+ "declaration": {
718
+ "name": "VscodeBadge",
719
+ "module": "src/vscode-badge/vscode-badge.ts"
720
+ }
721
+ },
722
+ {
723
+ "kind": "custom-element-definition",
724
+ "name": "vscode-badge",
725
+ "declaration": {
726
+ "name": "VscodeBadge",
727
+ "module": "src/vscode-badge/vscode-badge.ts"
728
+ }
729
+ }
730
+ ]
731
+ },
607
732
  {
608
733
  "kind": "javascript-module",
609
734
  "path": "src/vscode-button/vscode-button.styles.ts",
@@ -1101,7 +1226,7 @@
1101
1226
  },
1102
1227
  {
1103
1228
  "kind": "javascript-module",
1104
- "path": "src/vscode-badge/vscode-badge.styles.ts",
1229
+ "path": "src/vscode-button-group/vscode-button-group.styles.ts",
1105
1230
  "declarations": [
1106
1231
  {
1107
1232
  "kind": "variable",
@@ -1109,7 +1234,7 @@
1109
1234
  "type": {
1110
1235
  "text": "CSSResultGroup"
1111
1236
  },
1112
- "default": "[ defaultStyles, css` :host { display: inline-block; } .root { background-color: var(--vscode-badge-background, #616161); border: 1px solid var(--vscode-contrastBorder, transparent); border-radius: 2px; box-sizing: border-box; color: var(--vscode-badge-foreground, #f8f8f8); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: 11px; font-weight: 400; line-height: 14px; min-width: 18px; padding: 2px 3px; text-align: center; white-space: nowrap; } :host([variant='counter']) .root { border-radius: 11px; line-height: 11px; min-height: 18px; min-width: 18px; padding: 3px 6px; } :host([variant='activity-bar-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 20px; color: var(--vscode-activityBarBadge-foreground, #ffffff); font-size: 9px; font-weight: 600; line-height: 16px; padding: 0 4px; } :host([variant='tab-header-counter']) .root { background-color: var(--vscode-activityBarBadge-background, #0078d4); border-radius: 10px; color: var(--vscode-activityBarBadge-foreground, #ffffff); line-height: 10px; min-height: 16px; min-width: 16px; padding: 3px 5px; } `, ]"
1237
+ "default": "[ defaultStyles, css` :host { display: inline-block; } .root { align-items: stretch; display: flex; width: 100%; } ::slotted(vscode-button:not(:first-child)) { --vsc-border-left-width: 0; --vsc-border-left-radius: 0; --vsc-border-left-width: 0; } ::slotted(vscode-button:not(:last-child)) { --vsc-divider-display: block; --vsc-base-additional-right-padding: 1px; --vsc-base-after-content: ''; --vsc-border-right-width: 0; --vsc-border-right-radius: 0; --vsc-border-right-width: 0; } ::slotted(vscode-button:focus) { z-index: 1; } ::slotted(vscode-button:not(:empty)) { width: 100%; } `, ]"
1113
1238
  }
1114
1239
  ],
1115
1240
  "exports": [
@@ -1118,61 +1243,67 @@
1118
1243
  "name": "default",
1119
1244
  "declaration": {
1120
1245
  "name": "styles",
1121
- "module": "src/vscode-badge/vscode-badge.styles.ts"
1246
+ "module": "src/vscode-button-group/vscode-button-group.styles.ts"
1122
1247
  }
1123
1248
  }
1124
1249
  ]
1125
1250
  },
1126
1251
  {
1127
1252
  "kind": "javascript-module",
1128
- "path": "src/vscode-badge/vscode-badge.ts",
1253
+ "path": "src/vscode-button-group/vscode-button-group.ts",
1129
1254
  "declarations": [
1130
1255
  {
1131
1256
  "kind": "class",
1132
- "description": "Show counts or status information. Badges can also be used within [Textfield](https://vscode-elements.github.io/components/textfield) and [TabHeader](https://vscode-elements.github.io/components/tabs) components.",
1133
- "name": "VscodeBadge",
1257
+ "description": "Shows a split button, including several components in a single button. Commonly used to show a button with a dropdown to the right.",
1258
+ "name": "VscodeButtonGroup",
1134
1259
  "cssProperties": [
1260
+ {
1261
+ "name": "--vscode-button-background",
1262
+ "default": "#0078d4"
1263
+ },
1264
+ {
1265
+ "name": "--vscode-button-foreground",
1266
+ "default": "#ffffff"
1267
+ },
1268
+ {
1269
+ "name": "--vscode-button-border",
1270
+ "default": "var(--vscode-button-background, rgba(255, 255, 255, 0.07))"
1271
+ },
1272
+ {
1273
+ "name": "--vscode-button-hoverBackground",
1274
+ "default": "#026ec1"
1275
+ },
1135
1276
  {
1136
1277
  "description": "A sans-serif font type depends on the host OS.",
1137
1278
  "name": "--vscode-font-family",
1138
1279
  "default": "sans-serif"
1139
1280
  },
1140
1281
  {
1141
- "name": "--vscode-contrastBorder",
1142
- "default": "transparent"
1282
+ "name": "--vscode-font-size",
1283
+ "default": "13px"
1143
1284
  },
1144
1285
  {
1145
- "description": "default and counter variant background color",
1146
- "name": "--vscode-badge-background",
1147
- "default": "#616161"
1286
+ "name": "--vscode-font-weight",
1287
+ "default": "normal"
1148
1288
  },
1149
1289
  {
1150
- "description": "default and counter variant foreground color",
1151
- "name": "--vscode-badge-foreground",
1152
- "default": "#f8f8f8"
1290
+ "name": "--vscode-button-secondaryForeground",
1291
+ "default": "#cccccc"
1153
1292
  },
1154
1293
  {
1155
- "description": "activity bar variant background color",
1156
- "name": "--vscode-activityBarBadge-background",
1157
- "default": "#0078d4"
1294
+ "name": "--vscode-button-secondaryBackground",
1295
+ "default": "#313131"
1158
1296
  },
1159
1297
  {
1160
- "description": "activity bar variant foreground color",
1161
- "name": "--vscode-activityBarBadge-foreground",
1162
- "default": "#ffffff"
1298
+ "name": "--vscode-button-secondaryHoverBackground",
1299
+ "default": "#3c3c3c"
1300
+ },
1301
+ {
1302
+ "name": "--vscode-focusBorder",
1303
+ "default": "#0078d4"
1163
1304
  }
1164
1305
  ],
1165
1306
  "members": [
1166
- {
1167
- "kind": "field",
1168
- "name": "variant",
1169
- "type": {
1170
- "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1171
- },
1172
- "default": "'default'",
1173
- "attribute": "variant",
1174
- "reflects": true
1175
- },
1176
1307
  {
1177
1308
  "kind": "field",
1178
1309
  "name": "version",
@@ -1187,46 +1318,36 @@
1187
1318
  }
1188
1319
  }
1189
1320
  ],
1190
- "attributes": [
1191
- {
1192
- "name": "variant",
1193
- "type": {
1194
- "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1195
- },
1196
- "default": "'default'",
1197
- "fieldName": "variant"
1198
- }
1199
- ],
1200
1321
  "superclass": {
1201
1322
  "name": "VscElement",
1202
1323
  "module": "/src/includes/VscElement.js"
1203
1324
  },
1204
- "tagName": "vscode-badge",
1325
+ "tagName": "vscode-button-group",
1205
1326
  "customElement": true
1206
1327
  }
1207
1328
  ],
1208
1329
  "exports": [
1209
1330
  {
1210
1331
  "kind": "js",
1211
- "name": "VscodeBadge",
1332
+ "name": "VscodeButtonGroup",
1212
1333
  "declaration": {
1213
- "name": "VscodeBadge",
1214
- "module": "src/vscode-badge/vscode-badge.ts"
1334
+ "name": "VscodeButtonGroup",
1335
+ "module": "src/vscode-button-group/vscode-button-group.ts"
1215
1336
  }
1216
1337
  },
1217
1338
  {
1218
1339
  "kind": "custom-element-definition",
1219
- "name": "vscode-badge",
1340
+ "name": "vscode-button-group",
1220
1341
  "declaration": {
1221
- "name": "VscodeBadge",
1222
- "module": "src/vscode-badge/vscode-badge.ts"
1342
+ "name": "VscodeButtonGroup",
1343
+ "module": "src/vscode-button-group/vscode-button-group.ts"
1223
1344
  }
1224
1345
  }
1225
1346
  ]
1226
1347
  },
1227
1348
  {
1228
1349
  "kind": "javascript-module",
1229
- "path": "src/vscode-button-group/vscode-button-group.styles.ts",
1350
+ "path": "src/vscode-checkbox-group/vscode-checkbox-group.styles.ts",
1230
1351
  "declarations": [
1231
1352
  {
1232
1353
  "kind": "variable",
@@ -1234,7 +1355,7 @@
1234
1355
  "type": {
1235
1356
  "text": "CSSResultGroup"
1236
1357
  },
1237
- "default": "[ defaultStyles, css` :host { display: inline-block; } .root { align-items: stretch; display: flex; width: 100%; } ::slotted(vscode-button:not(:first-child)) { --vsc-border-left-width: 0; --vsc-border-left-radius: 0; --vsc-border-left-width: 0; } ::slotted(vscode-button:not(:last-child)) { --vsc-divider-display: block; --vsc-base-additional-right-padding: 1px; --vsc-base-after-content: ''; --vsc-border-right-width: 0; --vsc-border-right-radius: 0; --vsc-border-right-width: 0; } ::slotted(vscode-button:focus) { z-index: 1; } ::slotted(vscode-button:not(:empty)) { width: 100%; } `, ]"
1358
+ "default": "[ defaultStyles, css` :host { display: block; } .wrapper { display: flex; flex-wrap: wrap; } :host([variant='vertical']) .wrapper { display: block; } ::slotted(vscode-checkbox) { margin-right: 20px; } ::slotted(vscode-checkbox:last-child) { margin-right: 0; } :host([variant='vertical']) ::slotted(vscode-checkbox) { display: block; margin-bottom: 15px; } :host([variant='vertical']) ::slotted(vscode-checkbox:last-child) { margin-bottom: 0; } `, ]"
1238
1359
  }
1239
1360
  ],
1240
1361
  "exports": [
@@ -1243,67 +1364,30 @@
1243
1364
  "name": "default",
1244
1365
  "declaration": {
1245
1366
  "name": "styles",
1246
- "module": "src/vscode-button-group/vscode-button-group.styles.ts"
1367
+ "module": "src/vscode-checkbox-group/vscode-checkbox-group.styles.ts"
1247
1368
  }
1248
1369
  }
1249
1370
  ]
1250
1371
  },
1251
1372
  {
1252
1373
  "kind": "javascript-module",
1253
- "path": "src/vscode-button-group/vscode-button-group.ts",
1374
+ "path": "src/vscode-checkbox-group/vscode-checkbox-group.ts",
1254
1375
  "declarations": [
1255
1376
  {
1256
1377
  "kind": "class",
1257
- "description": "Shows a split button, including several components in a single button. Commonly used to show a button with a dropdown to the right.",
1258
- "name": "VscodeButtonGroup",
1259
- "cssProperties": [
1260
- {
1261
- "name": "--vscode-button-background",
1262
- "default": "#0078d4"
1263
- },
1264
- {
1265
- "name": "--vscode-button-foreground",
1266
- "default": "#ffffff"
1267
- },
1268
- {
1269
- "name": "--vscode-button-border",
1270
- "default": "var(--vscode-button-background, rgba(255, 255, 255, 0.07))"
1271
- },
1272
- {
1273
- "name": "--vscode-button-hoverBackground",
1274
- "default": "#026ec1"
1275
- },
1276
- {
1277
- "description": "A sans-serif font type depends on the host OS.",
1278
- "name": "--vscode-font-family",
1279
- "default": "sans-serif"
1280
- },
1281
- {
1282
- "name": "--vscode-font-size",
1283
- "default": "13px"
1284
- },
1285
- {
1286
- "name": "--vscode-font-weight",
1287
- "default": "normal"
1288
- },
1289
- {
1290
- "name": "--vscode-button-secondaryForeground",
1291
- "default": "#cccccc"
1292
- },
1293
- {
1294
- "name": "--vscode-button-secondaryBackground",
1295
- "default": "#313131"
1296
- },
1378
+ "description": "Arranges a group of checkboxes horizontally or vertically.",
1379
+ "name": "VscodeCheckboxGroup",
1380
+ "members": [
1297
1381
  {
1298
- "name": "--vscode-button-secondaryHoverBackground",
1299
- "default": "#3c3c3c"
1382
+ "kind": "field",
1383
+ "name": "variant",
1384
+ "type": {
1385
+ "text": "'horizontal' | 'vertical'"
1386
+ },
1387
+ "default": "'horizontal'",
1388
+ "attribute": "variant",
1389
+ "reflects": true
1300
1390
  },
1301
- {
1302
- "name": "--vscode-focusBorder",
1303
- "default": "#0078d4"
1304
- }
1305
- ],
1306
- "members": [
1307
1391
  {
1308
1392
  "kind": "field",
1309
1393
  "name": "version",
@@ -1318,29 +1402,39 @@
1318
1402
  }
1319
1403
  }
1320
1404
  ],
1405
+ "attributes": [
1406
+ {
1407
+ "name": "variant",
1408
+ "type": {
1409
+ "text": "'horizontal' | 'vertical'"
1410
+ },
1411
+ "default": "'horizontal'",
1412
+ "fieldName": "variant"
1413
+ }
1414
+ ],
1321
1415
  "superclass": {
1322
1416
  "name": "VscElement",
1323
1417
  "module": "/src/includes/VscElement.js"
1324
1418
  },
1325
- "tagName": "vscode-button-group",
1419
+ "tagName": "vscode-checkbox-group",
1326
1420
  "customElement": true
1327
1421
  }
1328
1422
  ],
1329
1423
  "exports": [
1330
1424
  {
1331
1425
  "kind": "js",
1332
- "name": "VscodeButtonGroup",
1426
+ "name": "VscodeCheckboxGroup",
1333
1427
  "declaration": {
1334
- "name": "VscodeButtonGroup",
1335
- "module": "src/vscode-button-group/vscode-button-group.ts"
1428
+ "name": "VscodeCheckboxGroup",
1429
+ "module": "src/vscode-checkbox-group/vscode-checkbox-group.ts"
1336
1430
  }
1337
1431
  },
1338
1432
  {
1339
1433
  "kind": "custom-element-definition",
1340
- "name": "vscode-button-group",
1434
+ "name": "vscode-checkbox-group",
1341
1435
  "declaration": {
1342
- "name": "VscodeButtonGroup",
1343
- "module": "src/vscode-button-group/vscode-button-group.ts"
1436
+ "name": "VscodeCheckboxGroup",
1437
+ "module": "src/vscode-checkbox-group/vscode-checkbox-group.ts"
1344
1438
  }
1345
1439
  }
1346
1440
  ]
@@ -1910,100 +2004,6 @@
1910
2004
  }
1911
2005
  ]
1912
2006
  },
1913
- {
1914
- "kind": "javascript-module",
1915
- "path": "src/vscode-checkbox-group/vscode-checkbox-group.styles.ts",
1916
- "declarations": [
1917
- {
1918
- "kind": "variable",
1919
- "name": "styles",
1920
- "type": {
1921
- "text": "CSSResultGroup"
1922
- },
1923
- "default": "[ defaultStyles, css` :host { display: block; } .wrapper { display: flex; flex-wrap: wrap; } :host([variant='vertical']) .wrapper { display: block; } ::slotted(vscode-checkbox) { margin-right: 20px; } ::slotted(vscode-checkbox:last-child) { margin-right: 0; } :host([variant='vertical']) ::slotted(vscode-checkbox) { display: block; margin-bottom: 15px; } :host([variant='vertical']) ::slotted(vscode-checkbox:last-child) { margin-bottom: 0; } `, ]"
1924
- }
1925
- ],
1926
- "exports": [
1927
- {
1928
- "kind": "js",
1929
- "name": "default",
1930
- "declaration": {
1931
- "name": "styles",
1932
- "module": "src/vscode-checkbox-group/vscode-checkbox-group.styles.ts"
1933
- }
1934
- }
1935
- ]
1936
- },
1937
- {
1938
- "kind": "javascript-module",
1939
- "path": "src/vscode-checkbox-group/vscode-checkbox-group.ts",
1940
- "declarations": [
1941
- {
1942
- "kind": "class",
1943
- "description": "Arranges a group of checkboxes horizontally or vertically.",
1944
- "name": "VscodeCheckboxGroup",
1945
- "members": [
1946
- {
1947
- "kind": "field",
1948
- "name": "variant",
1949
- "type": {
1950
- "text": "'horizontal' | 'vertical'"
1951
- },
1952
- "default": "'horizontal'",
1953
- "attribute": "variant",
1954
- "reflects": true
1955
- },
1956
- {
1957
- "kind": "field",
1958
- "name": "version",
1959
- "type": {
1960
- "text": "string"
1961
- },
1962
- "description": "VSCode Elements version",
1963
- "readonly": true,
1964
- "inheritedFrom": {
1965
- "name": "VscElement",
1966
- "module": "src/includes/VscElement.ts"
1967
- }
1968
- }
1969
- ],
1970
- "attributes": [
1971
- {
1972
- "name": "variant",
1973
- "type": {
1974
- "text": "'horizontal' | 'vertical'"
1975
- },
1976
- "default": "'horizontal'",
1977
- "fieldName": "variant"
1978
- }
1979
- ],
1980
- "superclass": {
1981
- "name": "VscElement",
1982
- "module": "/src/includes/VscElement.js"
1983
- },
1984
- "tagName": "vscode-checkbox-group",
1985
- "customElement": true
1986
- }
1987
- ],
1988
- "exports": [
1989
- {
1990
- "kind": "js",
1991
- "name": "VscodeCheckboxGroup",
1992
- "declaration": {
1993
- "name": "VscodeCheckboxGroup",
1994
- "module": "src/vscode-checkbox-group/vscode-checkbox-group.ts"
1995
- }
1996
- },
1997
- {
1998
- "kind": "custom-element-definition",
1999
- "name": "vscode-checkbox-group",
2000
- "declaration": {
2001
- "name": "VscodeCheckboxGroup",
2002
- "module": "src/vscode-checkbox-group/vscode-checkbox-group.ts"
2003
- }
2004
- }
2005
- ]
2006
- },
2007
2007
  {
2008
2008
  "kind": "javascript-module",
2009
2009
  "path": "src/vscode-collapsible/vscode-collapsible.styles.ts",
@@ -3065,7 +3065,7 @@
3065
3065
  },
3066
3066
  {
3067
3067
  "kind": "javascript-module",
3068
- "path": "src/vscode-form-group/vscode-form-group.styles.ts",
3068
+ "path": "src/vscode-form-helper/vscode-form-helper.styles.ts",
3069
3069
  "declarations": [
3070
3070
  {
3071
3071
  "kind": "variable",
@@ -3073,7 +3073,7 @@
3073
3073
  "type": {
3074
3074
  "text": "CSSResultGroup"
3075
3075
  },
3076
- "default": "[ defaultStyles, css` :host { --label-right-margin: 14px; --label-width: 150px; display: block; margin: 15px 0; } :host([variant='settings-group']) { margin: 0; padding: 12px 14px 18px; max-width: 727px; } .wrapper { display: flex; flex-wrap: wrap; } :host([variant='vertical']) .wrapper, :host([variant='settings-group']) .wrapper { display: block; } :host([variant='horizontal']) ::slotted(vscode-checkbox-group), :host([variant='horizontal']) ::slotted(vscode-radio-group) { width: calc(100% - calc(var(--label-width) + var(--label-right-margin))); } :host([variant='horizontal']) ::slotted(vscode-label) { margin-right: var(--label-right-margin); text-align: right; width: var(--label-width); } :host([variant='settings-group']) ::slotted(vscode-label) { height: 18px; line-height: 18px; margin-bottom: 4px; margin-right: 0; padding: 0; } ::slotted(vscode-form-helper) { margin-left: calc(var(--label-width) + var(--label-right-margin)); } :host([variant='vertical']) ::slotted(vscode-form-helper), :host([variant='settings-group']) ::slotted(vscode-form-helper) { display: block; margin-left: 0; } :host([variant='settings-group']) ::slotted(vscode-form-helper) { margin-bottom: 0; margin-top: 0; } :host([variant='vertical']) ::slotted(vscode-label), :host([variant='settings-group']) ::slotted(vscode-label) { display: block; margin-left: 0; text-align: left; } :host([variant='settings-group']) ::slotted(vscode-inputbox), :host([variant='settings-group']) ::slotted(vscode-textfield), :host([variant='settings-group']) ::slotted(vscode-textarea), :host([variant='settings-group']) ::slotted(vscode-single-select), :host([variant='settings-group']) ::slotted(vscode-multi-select) { margin-top: 9px; } ::slotted(vscode-button:first-child) { margin-left: calc(var(--label-width) + var(--label-right-margin)); } :host([variant='vertical']) ::slotted(vscode-button) { margin-left: 0; } ::slotted(vscode-button) { margin-right: 4px; } `, ]"
3076
+ "default": "[ defaultStyles, css` :host { display: block; line-height: 1.4em; margin-bottom: 4px; margin-top: 4px; max-width: 720px; opacity: 0.9; } :host([vertical]) { margin-left: 0; } `, ]"
3077
3077
  }
3078
3078
  ],
3079
3079
  "exports": [
@@ -3082,41 +3082,30 @@
3082
3082
  "name": "default",
3083
3083
  "declaration": {
3084
3084
  "name": "styles",
3085
- "module": "src/vscode-form-group/vscode-form-group.styles.ts"
3085
+ "module": "src/vscode-form-helper/vscode-form-helper.styles.ts"
3086
3086
  }
3087
3087
  }
3088
3088
  ]
3089
3089
  },
3090
3090
  {
3091
3091
  "kind": "javascript-module",
3092
- "path": "src/vscode-form-group/vscode-form-group.ts",
3092
+ "path": "src/vscode-form-helper/vscode-form-helper.ts",
3093
3093
  "declarations": [
3094
3094
  {
3095
3095
  "kind": "class",
3096
- "description": "",
3097
- "name": "VscodeFormGroup",
3096
+ "description": "Adds more detailed description to a [FromGroup](https://bendera.github.io/vscode-webview-elements/components/vscode-form-group/)",
3097
+ "name": "VscodeFormHelper",
3098
3098
  "cssProperties": [
3099
3099
  {
3100
- "description": "The width of the label in horizontal mode",
3101
- "name": "--label-width",
3102
- "default": "150px"
3103
- },
3104
- {
3105
- "description": "The right margin of the label in horizontal mode",
3106
- "name": "--label-right-margin",
3107
- "default": "14px"
3100
+ "description": "Default text color. 90% transparency version of `--vscode-foreground` by default.",
3101
+ "name": "--vsc-foreground-translucent"
3108
3102
  }
3109
3103
  ],
3110
3104
  "members": [
3111
3105
  {
3112
- "kind": "field",
3113
- "name": "variant",
3114
- "type": {
3115
- "text": "FormGroupVariant"
3116
- },
3117
- "default": "'horizontal'",
3118
- "attribute": "variant",
3119
- "reflects": true
3106
+ "kind": "method",
3107
+ "name": "_injectLightDOMStyles",
3108
+ "privacy": "private"
3120
3109
  },
3121
3110
  {
3122
3111
  "kind": "field",
@@ -3132,46 +3121,36 @@
3132
3121
  }
3133
3122
  }
3134
3123
  ],
3135
- "attributes": [
3136
- {
3137
- "name": "variant",
3138
- "type": {
3139
- "text": "FormGroupVariant"
3140
- },
3141
- "default": "'horizontal'",
3142
- "fieldName": "variant"
3143
- }
3144
- ],
3145
3124
  "superclass": {
3146
3125
  "name": "VscElement",
3147
3126
  "module": "/src/includes/VscElement.js"
3148
3127
  },
3149
- "tagName": "vscode-form-group",
3128
+ "tagName": "vscode-form-helper",
3150
3129
  "customElement": true
3151
3130
  }
3152
3131
  ],
3153
3132
  "exports": [
3154
3133
  {
3155
3134
  "kind": "js",
3156
- "name": "VscodeFormGroup",
3135
+ "name": "VscodeFormHelper",
3157
3136
  "declaration": {
3158
- "name": "VscodeFormGroup",
3159
- "module": "src/vscode-form-group/vscode-form-group.ts"
3137
+ "name": "VscodeFormHelper",
3138
+ "module": "src/vscode-form-helper/vscode-form-helper.ts"
3160
3139
  }
3161
3140
  },
3162
3141
  {
3163
3142
  "kind": "custom-element-definition",
3164
- "name": "vscode-form-group",
3143
+ "name": "vscode-form-helper",
3165
3144
  "declaration": {
3166
- "name": "VscodeFormGroup",
3167
- "module": "src/vscode-form-group/vscode-form-group.ts"
3145
+ "name": "VscodeFormHelper",
3146
+ "module": "src/vscode-form-helper/vscode-form-helper.ts"
3168
3147
  }
3169
3148
  }
3170
3149
  ]
3171
3150
  },
3172
3151
  {
3173
3152
  "kind": "javascript-module",
3174
- "path": "src/vscode-form-helper/vscode-form-helper.styles.ts",
3153
+ "path": "src/vscode-form-group/vscode-form-group.styles.ts",
3175
3154
  "declarations": [
3176
3155
  {
3177
3156
  "kind": "variable",
@@ -3179,7 +3158,7 @@
3179
3158
  "type": {
3180
3159
  "text": "CSSResultGroup"
3181
3160
  },
3182
- "default": "[ defaultStyles, css` :host { display: block; line-height: 1.4em; margin-bottom: 4px; margin-top: 4px; max-width: 720px; opacity: 0.9; } :host([vertical]) { margin-left: 0; } `, ]"
3161
+ "default": "[ defaultStyles, css` :host { --label-right-margin: 14px; --label-width: 150px; display: block; margin: 15px 0; } :host([variant='settings-group']) { margin: 0; padding: 12px 14px 18px; max-width: 727px; } .wrapper { display: flex; flex-wrap: wrap; } :host([variant='vertical']) .wrapper, :host([variant='settings-group']) .wrapper { display: block; } :host([variant='horizontal']) ::slotted(vscode-checkbox-group), :host([variant='horizontal']) ::slotted(vscode-radio-group) { width: calc(100% - calc(var(--label-width) + var(--label-right-margin))); } :host([variant='horizontal']) ::slotted(vscode-label) { margin-right: var(--label-right-margin); text-align: right; width: var(--label-width); } :host([variant='settings-group']) ::slotted(vscode-label) { height: 18px; line-height: 18px; margin-bottom: 4px; margin-right: 0; padding: 0; } ::slotted(vscode-form-helper) { margin-left: calc(var(--label-width) + var(--label-right-margin)); } :host([variant='vertical']) ::slotted(vscode-form-helper), :host([variant='settings-group']) ::slotted(vscode-form-helper) { display: block; margin-left: 0; } :host([variant='settings-group']) ::slotted(vscode-form-helper) { margin-bottom: 0; margin-top: 0; } :host([variant='vertical']) ::slotted(vscode-label), :host([variant='settings-group']) ::slotted(vscode-label) { display: block; margin-left: 0; text-align: left; } :host([variant='settings-group']) ::slotted(vscode-inputbox), :host([variant='settings-group']) ::slotted(vscode-textfield), :host([variant='settings-group']) ::slotted(vscode-textarea), :host([variant='settings-group']) ::slotted(vscode-single-select), :host([variant='settings-group']) ::slotted(vscode-multi-select) { margin-top: 9px; } ::slotted(vscode-button:first-child) { margin-left: calc(var(--label-width) + var(--label-right-margin)); } :host([variant='vertical']) ::slotted(vscode-button) { margin-left: 0; } ::slotted(vscode-button) { margin-right: 4px; } `, ]"
3183
3162
  }
3184
3163
  ],
3185
3164
  "exports": [
@@ -3188,30 +3167,41 @@
3188
3167
  "name": "default",
3189
3168
  "declaration": {
3190
3169
  "name": "styles",
3191
- "module": "src/vscode-form-helper/vscode-form-helper.styles.ts"
3170
+ "module": "src/vscode-form-group/vscode-form-group.styles.ts"
3192
3171
  }
3193
3172
  }
3194
3173
  ]
3195
3174
  },
3196
3175
  {
3197
3176
  "kind": "javascript-module",
3198
- "path": "src/vscode-form-helper/vscode-form-helper.ts",
3177
+ "path": "src/vscode-form-group/vscode-form-group.ts",
3199
3178
  "declarations": [
3200
3179
  {
3201
3180
  "kind": "class",
3202
- "description": "Adds more detailed description to a [FromGroup](https://bendera.github.io/vscode-webview-elements/components/vscode-form-group/)",
3203
- "name": "VscodeFormHelper",
3181
+ "description": "",
3182
+ "name": "VscodeFormGroup",
3204
3183
  "cssProperties": [
3205
3184
  {
3206
- "description": "Default text color. 90% transparency version of `--vscode-foreground` by default.",
3207
- "name": "--vsc-foreground-translucent"
3185
+ "description": "The width of the label in horizontal mode",
3186
+ "name": "--label-width",
3187
+ "default": "150px"
3188
+ },
3189
+ {
3190
+ "description": "The right margin of the label in horizontal mode",
3191
+ "name": "--label-right-margin",
3192
+ "default": "14px"
3208
3193
  }
3209
3194
  ],
3210
3195
  "members": [
3211
3196
  {
3212
- "kind": "method",
3213
- "name": "_injectLightDOMStyles",
3214
- "privacy": "private"
3197
+ "kind": "field",
3198
+ "name": "variant",
3199
+ "type": {
3200
+ "text": "FormGroupVariant"
3201
+ },
3202
+ "default": "'horizontal'",
3203
+ "attribute": "variant",
3204
+ "reflects": true
3215
3205
  },
3216
3206
  {
3217
3207
  "kind": "field",
@@ -3227,29 +3217,39 @@
3227
3217
  }
3228
3218
  }
3229
3219
  ],
3220
+ "attributes": [
3221
+ {
3222
+ "name": "variant",
3223
+ "type": {
3224
+ "text": "FormGroupVariant"
3225
+ },
3226
+ "default": "'horizontal'",
3227
+ "fieldName": "variant"
3228
+ }
3229
+ ],
3230
3230
  "superclass": {
3231
3231
  "name": "VscElement",
3232
3232
  "module": "/src/includes/VscElement.js"
3233
3233
  },
3234
- "tagName": "vscode-form-helper",
3234
+ "tagName": "vscode-form-group",
3235
3235
  "customElement": true
3236
3236
  }
3237
3237
  ],
3238
3238
  "exports": [
3239
3239
  {
3240
3240
  "kind": "js",
3241
- "name": "VscodeFormHelper",
3241
+ "name": "VscodeFormGroup",
3242
3242
  "declaration": {
3243
- "name": "VscodeFormHelper",
3244
- "module": "src/vscode-form-helper/vscode-form-helper.ts"
3243
+ "name": "VscodeFormGroup",
3244
+ "module": "src/vscode-form-group/vscode-form-group.ts"
3245
3245
  }
3246
3246
  },
3247
3247
  {
3248
3248
  "kind": "custom-element-definition",
3249
- "name": "vscode-form-helper",
3249
+ "name": "vscode-form-group",
3250
3250
  "declaration": {
3251
- "name": "VscodeFormHelper",
3252
- "module": "src/vscode-form-helper/vscode-form-helper.ts"
3251
+ "name": "VscodeFormGroup",
3252
+ "module": "src/vscode-form-group/vscode-form-group.ts"
3253
3253
  }
3254
3254
  }
3255
3255
  ]
@@ -5286,6 +5286,211 @@
5286
5286
  }
5287
5287
  ]
5288
5288
  },
5289
+ {
5290
+ "kind": "javascript-module",
5291
+ "path": "src/vscode-progress-bar/vscode-progress-bar.styles.ts",
5292
+ "declarations": [
5293
+ {
5294
+ "kind": "variable",
5295
+ "name": "styles",
5296
+ "type": {
5297
+ "text": "CSSResultGroup"
5298
+ },
5299
+ "default": "[ defaultStyles, css` :host { display: block; height: 2px; width: 100%; outline: none; } .container { position: relative; width: 100%; height: 100%; overflow: hidden; } .track { position: absolute; inset: 0; background: transparent; } .indicator { position: absolute; left: 0; top: 0; bottom: 0; height: 100%; background: var(--vscode-progressBar-background, #0078d4); will-change: transform, width, left; } /* Determinate mode: width is set inline via style attribute */ .discrete .indicator { transition: width 100ms linear; } /* Indeterminate mode: VS Code style progress bit */ .infinite .indicator { width: 2%; animation-name: progress; animation-duration: 4s; animation-iteration-count: infinite; animation-timing-function: linear; transform: translate3d(0px, 0px, 0px); } /* Long running: reduce GPU pressure using stepped animation */ .infinite.infinite-long-running .indicator { animation-timing-function: steps(100); } /* Keyframes adapted from VS Code */ @keyframes progress { from { transform: translateX(0%) scaleX(1); } 50% { transform: translateX(2500%) scaleX(3); } to { transform: translateX(4900%) scaleX(1); } } @media (prefers-reduced-motion: reduce) { .discrete .indicator { transition: none; } .infinite .indicator, .infinite-long-running .indicator { animation: none; width: 100%; } } `, ]"
5300
+ }
5301
+ ],
5302
+ "exports": [
5303
+ {
5304
+ "kind": "js",
5305
+ "name": "default",
5306
+ "declaration": {
5307
+ "name": "styles",
5308
+ "module": "src/vscode-progress-bar/vscode-progress-bar.styles.ts"
5309
+ }
5310
+ }
5311
+ ]
5312
+ },
5313
+ {
5314
+ "kind": "javascript-module",
5315
+ "path": "src/vscode-progress-bar/vscode-progress-bar.ts",
5316
+ "declarations": [
5317
+ {
5318
+ "kind": "class",
5319
+ "description": "",
5320
+ "name": "VscodeProgressBar",
5321
+ "cssProperties": [
5322
+ {
5323
+ "name": "--vscode-progressBar-background",
5324
+ "default": "#0078d4"
5325
+ }
5326
+ ],
5327
+ "members": [
5328
+ {
5329
+ "kind": "field",
5330
+ "name": "value",
5331
+ "type": {
5332
+ "text": "number | undefined"
5333
+ },
5334
+ "description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
5335
+ "attribute": "value",
5336
+ "reflects": true
5337
+ },
5338
+ {
5339
+ "kind": "field",
5340
+ "name": "max",
5341
+ "type": {
5342
+ "text": "number"
5343
+ },
5344
+ "default": "100",
5345
+ "description": "Maximum value for determinate mode.",
5346
+ "attribute": "max",
5347
+ "reflects": true
5348
+ },
5349
+ {
5350
+ "kind": "field",
5351
+ "name": "indeterminate",
5352
+ "type": {
5353
+ "text": "boolean"
5354
+ },
5355
+ "default": "false",
5356
+ "description": "Force indeterminate mode even if value is set.",
5357
+ "attribute": "indeterminate",
5358
+ "reflects": true
5359
+ },
5360
+ {
5361
+ "kind": "field",
5362
+ "name": "longRunningThreshold",
5363
+ "type": {
5364
+ "text": "number"
5365
+ },
5366
+ "default": "15000",
5367
+ "description": "Switch to a gentler animation after this many ms in indeterminate mode.",
5368
+ "attribute": "long-running-threshold"
5369
+ },
5370
+ {
5371
+ "kind": "field",
5372
+ "name": "_longRunning",
5373
+ "type": {
5374
+ "text": "boolean"
5375
+ },
5376
+ "privacy": "private",
5377
+ "default": "false"
5378
+ },
5379
+ {
5380
+ "kind": "field",
5381
+ "name": "_longRunningHandle",
5382
+ "type": {
5383
+ "text": "ReturnType<typeof setTimeout> | undefined"
5384
+ },
5385
+ "privacy": "private"
5386
+ },
5387
+ {
5388
+ "kind": "field",
5389
+ "name": "_isDeterminate",
5390
+ "type": {
5391
+ "text": "boolean"
5392
+ },
5393
+ "privacy": "private",
5394
+ "readonly": true
5395
+ },
5396
+ {
5397
+ "kind": "method",
5398
+ "name": "_maybeStartLongRunningTimer",
5399
+ "privacy": "private",
5400
+ "return": {
5401
+ "type": {
5402
+ "text": "void"
5403
+ }
5404
+ }
5405
+ },
5406
+ {
5407
+ "kind": "method",
5408
+ "name": "_clearLongRunningTimer",
5409
+ "privacy": "private",
5410
+ "return": {
5411
+ "type": {
5412
+ "text": "void"
5413
+ }
5414
+ }
5415
+ },
5416
+ {
5417
+ "kind": "field",
5418
+ "name": "version",
5419
+ "type": {
5420
+ "text": "string"
5421
+ },
5422
+ "description": "VSCode Elements version",
5423
+ "readonly": true,
5424
+ "inheritedFrom": {
5425
+ "name": "VscElement",
5426
+ "module": "src/includes/VscElement.ts"
5427
+ }
5428
+ }
5429
+ ],
5430
+ "attributes": [
5431
+ {
5432
+ "name": "value",
5433
+ "type": {
5434
+ "text": "number | undefined"
5435
+ },
5436
+ "description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
5437
+ "fieldName": "value"
5438
+ },
5439
+ {
5440
+ "name": "max",
5441
+ "type": {
5442
+ "text": "number"
5443
+ },
5444
+ "default": "100",
5445
+ "description": "Maximum value for determinate mode.",
5446
+ "fieldName": "max"
5447
+ },
5448
+ {
5449
+ "name": "indeterminate",
5450
+ "type": {
5451
+ "text": "boolean"
5452
+ },
5453
+ "default": "false",
5454
+ "description": "Force indeterminate mode even if value is set.",
5455
+ "fieldName": "indeterminate"
5456
+ },
5457
+ {
5458
+ "name": "long-running-threshold",
5459
+ "type": {
5460
+ "text": "number"
5461
+ },
5462
+ "default": "15000",
5463
+ "description": "Switch to a gentler animation after this many ms in indeterminate mode.",
5464
+ "fieldName": "longRunningThreshold"
5465
+ }
5466
+ ],
5467
+ "superclass": {
5468
+ "name": "VscElement",
5469
+ "module": "/src/includes/VscElement.js"
5470
+ },
5471
+ "tagName": "vscode-progress-bar",
5472
+ "customElement": true
5473
+ }
5474
+ ],
5475
+ "exports": [
5476
+ {
5477
+ "kind": "js",
5478
+ "name": "VscodeProgressBar",
5479
+ "declaration": {
5480
+ "name": "VscodeProgressBar",
5481
+ "module": "src/vscode-progress-bar/vscode-progress-bar.ts"
5482
+ }
5483
+ },
5484
+ {
5485
+ "kind": "custom-element-definition",
5486
+ "name": "vscode-progress-bar",
5487
+ "declaration": {
5488
+ "name": "VscodeProgressBar",
5489
+ "module": "src/vscode-progress-bar/vscode-progress-bar.ts"
5490
+ }
5491
+ }
5492
+ ]
5493
+ },
5289
5494
  {
5290
5495
  "kind": "javascript-module",
5291
5496
  "path": "src/vscode-progress-ring/vscode-progress-ring.styles.ts",
@@ -5575,64 +5780,64 @@
5575
5780
  },
5576
5781
  {
5577
5782
  "kind": "field",
5578
- "name": "_slottedText",
5783
+ "name": "form",
5579
5784
  "type": {
5580
- "text": "string"
5785
+ "text": "HTMLFormElement | null"
5581
5786
  },
5582
- "privacy": "private",
5583
- "default": "''",
5584
- "inheritedFrom": {
5585
- "name": "LabelledCheckboxOrRadioMixin",
5586
- "module": "src/includes/form-button-widget/LabelledCheckboxOrRadio.ts"
5587
- }
5787
+ "readonly": true
5588
5788
  },
5589
5789
  {
5590
5790
  "kind": "field",
5591
- "name": "_inputEl",
5791
+ "name": "validity",
5592
5792
  "type": {
5593
- "text": "HTMLInputElement"
5793
+ "text": "ValidityState"
5594
5794
  },
5595
- "privacy": "private"
5795
+ "readonly": true
5596
5796
  },
5597
5797
  {
5598
5798
  "kind": "field",
5599
- "name": "_internals",
5799
+ "name": "validationMessage",
5600
5800
  "type": {
5601
- "text": "ElementInternals"
5801
+ "text": "string"
5602
5802
  },
5603
- "privacy": "private"
5803
+ "readonly": true
5604
5804
  },
5605
5805
  {
5606
5806
  "kind": "field",
5607
- "name": "form",
5807
+ "name": "willValidate",
5608
5808
  "type": {
5609
- "text": "HTMLFormElement | null"
5809
+ "text": "boolean"
5610
5810
  },
5611
5811
  "readonly": true
5612
5812
  },
5613
5813
  {
5614
5814
  "kind": "field",
5615
- "name": "validity",
5815
+ "name": "_slottedText",
5616
5816
  "type": {
5617
- "text": "ValidityState"
5817
+ "text": "string"
5618
5818
  },
5619
- "readonly": true
5819
+ "privacy": "private",
5820
+ "default": "''",
5821
+ "inheritedFrom": {
5822
+ "name": "LabelledCheckboxOrRadioMixin",
5823
+ "module": "src/includes/form-button-widget/LabelledCheckboxOrRadio.ts"
5824
+ }
5620
5825
  },
5621
5826
  {
5622
5827
  "kind": "field",
5623
- "name": "validationMessage",
5828
+ "name": "_inputEl",
5624
5829
  "type": {
5625
- "text": "string"
5830
+ "text": "HTMLInputElement"
5626
5831
  },
5627
- "readonly": true
5832
+ "privacy": "private"
5628
5833
  },
5629
5834
  {
5630
5835
  "kind": "field",
5631
- "name": "willValidate",
5836
+ "name": "_internals",
5632
5837
  "type": {
5633
- "text": "boolean"
5838
+ "text": "ElementInternals"
5634
5839
  },
5635
- "readonly": true
5840
+ "privacy": "private"
5636
5841
  },
5637
5842
  {
5638
5843
  "kind": "method",
@@ -6084,27 +6289,14 @@
6084
6289
  "name": "_checkNext",
6085
6290
  "privacy": "private"
6086
6291
  },
6087
- {
6088
- "kind": "method",
6089
- "name": "_onKeyDown",
6090
- "privacy": "private",
6091
- "parameters": [
6092
- {
6093
- "name": "ev",
6094
- "type": {
6095
- "text": "KeyboardEvent"
6096
- }
6097
- }
6098
- ]
6099
- },
6100
6292
  {
6101
6293
  "kind": "field",
6102
- "name": "_onKeyDownBound",
6294
+ "name": "_handleKeyDown",
6103
6295
  "privacy": "private"
6104
6296
  },
6105
6297
  {
6106
6298
  "kind": "method",
6107
- "name": "_onChange",
6299
+ "name": "_handleChange",
6108
6300
  "privacy": "private",
6109
6301
  "parameters": [
6110
6302
  {
@@ -6117,7 +6309,7 @@
6117
6309
  },
6118
6310
  {
6119
6311
  "kind": "method",
6120
- "name": "_onSlotChange",
6312
+ "name": "_handleSlotChange",
6121
6313
  "privacy": "private"
6122
6314
  },
6123
6315
  {