@vscode-elements/elements 2.4.0 → 2.4.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 (43) hide show
  1. package/custom-elements.json +1370 -314
  2. package/dist/bundled.js +163 -164
  3. package/dist/includes/VscElement.d.ts +1 -0
  4. package/dist/includes/VscElement.d.ts.map +1 -1
  5. package/dist/includes/VscElement.js +16 -3
  6. package/dist/includes/VscElement.js.map +1 -1
  7. package/dist/includes/helpers.d.ts +1 -0
  8. package/dist/includes/helpers.d.ts.map +1 -1
  9. package/dist/includes/helpers.js +3 -0
  10. package/dist/includes/helpers.js.map +1 -1
  11. package/dist/includes/vscode-select/vscode-select-base.d.ts.map +1 -1
  12. package/dist/includes/vscode-select/vscode-select-base.js +1 -4
  13. package/dist/includes/vscode-select/vscode-select-base.js.map +1 -1
  14. package/dist/vscode-icon/vscode-icon.d.ts.map +1 -1
  15. package/dist/vscode-icon/vscode-icon.js +2 -3
  16. package/dist/vscode-icon/vscode-icon.js.map +1 -1
  17. package/dist/vscode-table/ColumnResizeController.d.ts +37 -0
  18. package/dist/vscode-table/ColumnResizeController.d.ts.map +1 -0
  19. package/dist/vscode-table/ColumnResizeController.js +141 -0
  20. package/dist/vscode-table/ColumnResizeController.js.map +1 -0
  21. package/dist/vscode-table/calculations.d.ts +13 -0
  22. package/dist/vscode-table/calculations.d.ts.map +1 -0
  23. package/dist/vscode-table/calculations.js +82 -0
  24. package/dist/vscode-table/calculations.js.map +1 -0
  25. package/dist/vscode-table/vscode-table.d.ts +9 -14
  26. package/dist/vscode-table/vscode-table.d.ts.map +1 -1
  27. package/dist/vscode-table/vscode-table.js +62 -98
  28. package/dist/vscode-table/vscode-table.js.map +1 -1
  29. package/dist/vscode-table/vscode-table.styles.d.ts +2 -0
  30. package/dist/vscode-table/vscode-table.styles.d.ts.map +1 -1
  31. package/dist/vscode-table/vscode-table.styles.js +6 -5
  32. package/dist/vscode-table/vscode-table.styles.js.map +1 -1
  33. package/dist/vscode-tree-item/vscode-tree-item.d.ts +13 -0
  34. package/dist/vscode-tree-item/vscode-tree-item.d.ts.map +1 -1
  35. package/dist/vscode-tree-item/vscode-tree-item.js +13 -0
  36. package/dist/vscode-tree-item/vscode-tree-item.js.map +1 -1
  37. package/package.json +3 -3
  38. package/vscode.css-custom-data.json +15 -15
  39. package/vscode.html-custom-data.json +19 -19
  40. package/dist/vscode-table/helpers.d.ts +0 -2
  41. package/dist/vscode-table/helpers.d.ts.map +0 -1
  42. package/dist/vscode-table/helpers.js +0 -20
  43. package/dist/vscode-table/helpers.js.map +0 -1
@@ -25,6 +25,18 @@
25
25
  },
26
26
  "description": "VSCode Elements version",
27
27
  "readonly": true
28
+ },
29
+ {
30
+ "kind": "method",
31
+ "name": "warn",
32
+ "parameters": [
33
+ {
34
+ "name": "message",
35
+ "type": {
36
+ "text": "string"
37
+ }
38
+ }
39
+ ]
28
40
  }
29
41
  ],
30
42
  "superclass": {
@@ -111,6 +123,18 @@
111
123
  {
112
124
  "kind": "function",
113
125
  "name": "getDefaultEditorFontStack"
126
+ },
127
+ {
128
+ "kind": "function",
129
+ "name": "logMessage",
130
+ "parameters": [
131
+ {
132
+ "name": "msg",
133
+ "type": {
134
+ "text": "string"
135
+ }
136
+ }
137
+ ]
114
138
  }
115
139
  ],
116
140
  "exports": [
@@ -145,6 +169,14 @@
145
169
  "name": "getDefaultEditorFontStack",
146
170
  "module": "src/includes/helpers.ts"
147
171
  }
172
+ },
173
+ {
174
+ "kind": "js",
175
+ "name": "logMessage",
176
+ "declaration": {
177
+ "name": "logMessage",
178
+ "module": "src/includes/helpers.ts"
179
+ }
148
180
  }
149
181
  ]
150
182
  },
@@ -604,131 +636,6 @@
604
636
  }
605
637
  ]
606
638
  },
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
- },
732
639
  {
733
640
  "kind": "javascript-module",
734
641
  "path": "src/vscode-button/vscode-button.styles.ts",
@@ -1087,6 +994,22 @@
1087
994
  "name": "VscElement",
1088
995
  "module": "src/includes/VscElement.ts"
1089
996
  }
997
+ },
998
+ {
999
+ "kind": "method",
1000
+ "name": "warn",
1001
+ "parameters": [
1002
+ {
1003
+ "name": "message",
1004
+ "type": {
1005
+ "text": "string"
1006
+ }
1007
+ }
1008
+ ],
1009
+ "inheritedFrom": {
1010
+ "name": "VscElement",
1011
+ "module": "src/includes/VscElement.ts"
1012
+ }
1090
1013
  }
1091
1014
  ],
1092
1015
  "attributes": [
@@ -1246,7 +1169,7 @@
1246
1169
  },
1247
1170
  {
1248
1171
  "kind": "javascript-module",
1249
- "path": "src/vscode-button-group/vscode-button-group.styles.ts",
1172
+ "path": "src/vscode-badge/vscode-badge.styles.ts",
1250
1173
  "declarations": [
1251
1174
  {
1252
1175
  "kind": "variable",
@@ -1254,7 +1177,7 @@
1254
1177
  "type": {
1255
1178
  "text": "CSSResultGroup"
1256
1179
  },
1257
- "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%; } `, ]"
1180
+ "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; } `, ]"
1258
1181
  }
1259
1182
  ],
1260
1183
  "exports": [
@@ -1263,67 +1186,61 @@
1263
1186
  "name": "default",
1264
1187
  "declaration": {
1265
1188
  "name": "styles",
1266
- "module": "src/vscode-button-group/vscode-button-group.styles.ts"
1189
+ "module": "src/vscode-badge/vscode-badge.styles.ts"
1267
1190
  }
1268
1191
  }
1269
1192
  ]
1270
1193
  },
1271
1194
  {
1272
1195
  "kind": "javascript-module",
1273
- "path": "src/vscode-button-group/vscode-button-group.ts",
1196
+ "path": "src/vscode-badge/vscode-badge.ts",
1274
1197
  "declarations": [
1275
1198
  {
1276
1199
  "kind": "class",
1277
- "description": "Shows a split button, including several components in a single button. Commonly used to show a button with a dropdown to the right.",
1278
- "name": "VscodeButtonGroup",
1200
+ "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.",
1201
+ "name": "VscodeBadge",
1279
1202
  "cssProperties": [
1280
- {
1281
- "name": "--vscode-button-background",
1282
- "default": "#0078d4"
1283
- },
1284
- {
1285
- "name": "--vscode-button-foreground",
1286
- "default": "#ffffff"
1287
- },
1288
- {
1289
- "name": "--vscode-button-border",
1290
- "default": "var(--vscode-button-background, rgba(255, 255, 255, 0.07))"
1291
- },
1292
- {
1293
- "name": "--vscode-button-hoverBackground",
1294
- "default": "#026ec1"
1295
- },
1296
1203
  {
1297
1204
  "description": "A sans-serif font type depends on the host OS.",
1298
1205
  "name": "--vscode-font-family",
1299
1206
  "default": "sans-serif"
1300
1207
  },
1301
1208
  {
1302
- "name": "--vscode-font-size",
1303
- "default": "13px"
1304
- },
1305
- {
1306
- "name": "--vscode-font-weight",
1307
- "default": "normal"
1209
+ "name": "--vscode-contrastBorder",
1210
+ "default": "transparent"
1308
1211
  },
1309
1212
  {
1310
- "name": "--vscode-button-secondaryForeground",
1311
- "default": "#cccccc"
1213
+ "description": "default and counter variant background color",
1214
+ "name": "--vscode-badge-background",
1215
+ "default": "#616161"
1312
1216
  },
1313
1217
  {
1314
- "name": "--vscode-button-secondaryBackground",
1315
- "default": "#313131"
1218
+ "description": "default and counter variant foreground color",
1219
+ "name": "--vscode-badge-foreground",
1220
+ "default": "#f8f8f8"
1316
1221
  },
1317
1222
  {
1318
- "name": "--vscode-button-secondaryHoverBackground",
1319
- "default": "#3c3c3c"
1223
+ "description": "activity bar variant background color",
1224
+ "name": "--vscode-activityBarBadge-background",
1225
+ "default": "#0078d4"
1320
1226
  },
1321
1227
  {
1322
- "name": "--vscode-focusBorder",
1323
- "default": "#0078d4"
1228
+ "description": "activity bar variant foreground color",
1229
+ "name": "--vscode-activityBarBadge-foreground",
1230
+ "default": "#ffffff"
1324
1231
  }
1325
1232
  ],
1326
1233
  "members": [
1234
+ {
1235
+ "kind": "field",
1236
+ "name": "variant",
1237
+ "type": {
1238
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1239
+ },
1240
+ "default": "'default'",
1241
+ "attribute": "variant",
1242
+ "reflects": true
1243
+ },
1327
1244
  {
1328
1245
  "kind": "field",
1329
1246
  "name": "version",
@@ -1336,13 +1253,176 @@
1336
1253
  "name": "VscElement",
1337
1254
  "module": "src/includes/VscElement.ts"
1338
1255
  }
1256
+ },
1257
+ {
1258
+ "kind": "method",
1259
+ "name": "warn",
1260
+ "parameters": [
1261
+ {
1262
+ "name": "message",
1263
+ "type": {
1264
+ "text": "string"
1265
+ }
1266
+ }
1267
+ ],
1268
+ "inheritedFrom": {
1269
+ "name": "VscElement",
1270
+ "module": "src/includes/VscElement.ts"
1271
+ }
1272
+ }
1273
+ ],
1274
+ "attributes": [
1275
+ {
1276
+ "name": "variant",
1277
+ "type": {
1278
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1279
+ },
1280
+ "default": "'default'",
1281
+ "fieldName": "variant"
1339
1282
  }
1340
1283
  ],
1341
1284
  "superclass": {
1342
1285
  "name": "VscElement",
1343
1286
  "module": "/src/includes/VscElement.js"
1344
1287
  },
1345
- "tagName": "vscode-button-group",
1288
+ "tagName": "vscode-badge",
1289
+ "customElement": true
1290
+ }
1291
+ ],
1292
+ "exports": [
1293
+ {
1294
+ "kind": "js",
1295
+ "name": "VscodeBadge",
1296
+ "declaration": {
1297
+ "name": "VscodeBadge",
1298
+ "module": "src/vscode-badge/vscode-badge.ts"
1299
+ }
1300
+ },
1301
+ {
1302
+ "kind": "custom-element-definition",
1303
+ "name": "vscode-badge",
1304
+ "declaration": {
1305
+ "name": "VscodeBadge",
1306
+ "module": "src/vscode-badge/vscode-badge.ts"
1307
+ }
1308
+ }
1309
+ ]
1310
+ },
1311
+ {
1312
+ "kind": "javascript-module",
1313
+ "path": "src/vscode-button-group/vscode-button-group.styles.ts",
1314
+ "declarations": [
1315
+ {
1316
+ "kind": "variable",
1317
+ "name": "styles",
1318
+ "type": {
1319
+ "text": "CSSResultGroup"
1320
+ },
1321
+ "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%; } `, ]"
1322
+ }
1323
+ ],
1324
+ "exports": [
1325
+ {
1326
+ "kind": "js",
1327
+ "name": "default",
1328
+ "declaration": {
1329
+ "name": "styles",
1330
+ "module": "src/vscode-button-group/vscode-button-group.styles.ts"
1331
+ }
1332
+ }
1333
+ ]
1334
+ },
1335
+ {
1336
+ "kind": "javascript-module",
1337
+ "path": "src/vscode-button-group/vscode-button-group.ts",
1338
+ "declarations": [
1339
+ {
1340
+ "kind": "class",
1341
+ "description": "Shows a split button, including several components in a single button. Commonly used to show a button with a dropdown to the right.",
1342
+ "name": "VscodeButtonGroup",
1343
+ "cssProperties": [
1344
+ {
1345
+ "name": "--vscode-button-background",
1346
+ "default": "#0078d4"
1347
+ },
1348
+ {
1349
+ "name": "--vscode-button-foreground",
1350
+ "default": "#ffffff"
1351
+ },
1352
+ {
1353
+ "name": "--vscode-button-border",
1354
+ "default": "var(--vscode-button-background, rgba(255, 255, 255, 0.07))"
1355
+ },
1356
+ {
1357
+ "name": "--vscode-button-hoverBackground",
1358
+ "default": "#026ec1"
1359
+ },
1360
+ {
1361
+ "description": "A sans-serif font type depends on the host OS.",
1362
+ "name": "--vscode-font-family",
1363
+ "default": "sans-serif"
1364
+ },
1365
+ {
1366
+ "name": "--vscode-font-size",
1367
+ "default": "13px"
1368
+ },
1369
+ {
1370
+ "name": "--vscode-font-weight",
1371
+ "default": "normal"
1372
+ },
1373
+ {
1374
+ "name": "--vscode-button-secondaryForeground",
1375
+ "default": "#cccccc"
1376
+ },
1377
+ {
1378
+ "name": "--vscode-button-secondaryBackground",
1379
+ "default": "#313131"
1380
+ },
1381
+ {
1382
+ "name": "--vscode-button-secondaryHoverBackground",
1383
+ "default": "#3c3c3c"
1384
+ },
1385
+ {
1386
+ "name": "--vscode-focusBorder",
1387
+ "default": "#0078d4"
1388
+ }
1389
+ ],
1390
+ "members": [
1391
+ {
1392
+ "kind": "field",
1393
+ "name": "version",
1394
+ "type": {
1395
+ "text": "string"
1396
+ },
1397
+ "description": "VSCode Elements version",
1398
+ "readonly": true,
1399
+ "inheritedFrom": {
1400
+ "name": "VscElement",
1401
+ "module": "src/includes/VscElement.ts"
1402
+ }
1403
+ },
1404
+ {
1405
+ "kind": "method",
1406
+ "name": "warn",
1407
+ "parameters": [
1408
+ {
1409
+ "name": "message",
1410
+ "type": {
1411
+ "text": "string"
1412
+ }
1413
+ }
1414
+ ],
1415
+ "inheritedFrom": {
1416
+ "name": "VscElement",
1417
+ "module": "src/includes/VscElement.ts"
1418
+ }
1419
+ }
1420
+ ],
1421
+ "superclass": {
1422
+ "name": "VscElement",
1423
+ "module": "/src/includes/VscElement.js"
1424
+ },
1425
+ "tagName": "vscode-button-group",
1346
1426
  "customElement": true
1347
1427
  }
1348
1428
  ],
@@ -1773,6 +1853,22 @@
1773
1853
  "name": "VscElement",
1774
1854
  "module": "src/includes/VscElement.ts"
1775
1855
  }
1856
+ },
1857
+ {
1858
+ "kind": "method",
1859
+ "name": "warn",
1860
+ "parameters": [
1861
+ {
1862
+ "name": "message",
1863
+ "type": {
1864
+ "text": "string"
1865
+ }
1866
+ }
1867
+ ],
1868
+ "inheritedFrom": {
1869
+ "name": "VscElement",
1870
+ "module": "src/includes/VscElement.ts"
1871
+ }
1776
1872
  }
1777
1873
  ],
1778
1874
  "events": [
@@ -1985,6 +2081,22 @@
1985
2081
  "name": "VscElement",
1986
2082
  "module": "src/includes/VscElement.ts"
1987
2083
  }
2084
+ },
2085
+ {
2086
+ "kind": "method",
2087
+ "name": "warn",
2088
+ "parameters": [
2089
+ {
2090
+ "name": "message",
2091
+ "type": {
2092
+ "text": "string"
2093
+ }
2094
+ }
2095
+ ],
2096
+ "inheritedFrom": {
2097
+ "name": "VscElement",
2098
+ "module": "src/includes/VscElement.ts"
2099
+ }
1988
2100
  }
1989
2101
  ],
1990
2102
  "attributes": [
@@ -2209,6 +2321,22 @@
2209
2321
  "name": "VscElement",
2210
2322
  "module": "src/includes/VscElement.ts"
2211
2323
  }
2324
+ },
2325
+ {
2326
+ "kind": "method",
2327
+ "name": "warn",
2328
+ "parameters": [
2329
+ {
2330
+ "name": "message",
2331
+ "type": {
2332
+ "text": "string"
2333
+ }
2334
+ }
2335
+ ],
2336
+ "inheritedFrom": {
2337
+ "name": "VscElement",
2338
+ "module": "src/includes/VscElement.ts"
2339
+ }
2212
2340
  }
2213
2341
  ],
2214
2342
  "events": [
@@ -2535,6 +2663,22 @@
2535
2663
  "name": "VscElement",
2536
2664
  "module": "src/includes/VscElement.ts"
2537
2665
  }
2666
+ },
2667
+ {
2668
+ "kind": "method",
2669
+ "name": "warn",
2670
+ "parameters": [
2671
+ {
2672
+ "name": "message",
2673
+ "type": {
2674
+ "text": "string"
2675
+ }
2676
+ }
2677
+ ],
2678
+ "inheritedFrom": {
2679
+ "name": "VscElement",
2680
+ "module": "src/includes/VscElement.ts"
2681
+ }
2538
2682
  }
2539
2683
  ],
2540
2684
  "events": [
@@ -2725,6 +2869,22 @@
2725
2869
  "name": "VscElement",
2726
2870
  "module": "src/includes/VscElement.ts"
2727
2871
  }
2872
+ },
2873
+ {
2874
+ "kind": "method",
2875
+ "name": "warn",
2876
+ "parameters": [
2877
+ {
2878
+ "name": "message",
2879
+ "type": {
2880
+ "text": "string"
2881
+ }
2882
+ }
2883
+ ],
2884
+ "inheritedFrom": {
2885
+ "name": "VscElement",
2886
+ "module": "src/includes/VscElement.ts"
2887
+ }
2728
2888
  }
2729
2889
  ],
2730
2890
  "attributes": [
@@ -2857,6 +3017,22 @@
2857
3017
  "name": "VscElement",
2858
3018
  "module": "src/includes/VscElement.ts"
2859
3019
  }
3020
+ },
3021
+ {
3022
+ "kind": "method",
3023
+ "name": "warn",
3024
+ "parameters": [
3025
+ {
3026
+ "name": "message",
3027
+ "type": {
3028
+ "text": "string"
3029
+ }
3030
+ }
3031
+ ],
3032
+ "inheritedFrom": {
3033
+ "name": "VscElement",
3034
+ "module": "src/includes/VscElement.ts"
3035
+ }
2860
3036
  }
2861
3037
  ],
2862
3038
  "attributes": [
@@ -3050,6 +3226,22 @@
3050
3226
  "name": "VscElement",
3051
3227
  "module": "src/includes/VscElement.ts"
3052
3228
  }
3229
+ },
3230
+ {
3231
+ "kind": "method",
3232
+ "name": "warn",
3233
+ "parameters": [
3234
+ {
3235
+ "name": "message",
3236
+ "type": {
3237
+ "text": "string"
3238
+ }
3239
+ }
3240
+ ],
3241
+ "inheritedFrom": {
3242
+ "name": "VscElement",
3243
+ "module": "src/includes/VscElement.ts"
3244
+ }
3053
3245
  }
3054
3246
  ],
3055
3247
  "attributes": [
@@ -3163,6 +3355,22 @@
3163
3355
  "name": "VscElement",
3164
3356
  "module": "src/includes/VscElement.ts"
3165
3357
  }
3358
+ },
3359
+ {
3360
+ "kind": "method",
3361
+ "name": "warn",
3362
+ "parameters": [
3363
+ {
3364
+ "name": "message",
3365
+ "type": {
3366
+ "text": "string"
3367
+ }
3368
+ }
3369
+ ],
3370
+ "inheritedFrom": {
3371
+ "name": "VscElement",
3372
+ "module": "src/includes/VscElement.ts"
3373
+ }
3166
3374
  }
3167
3375
  ],
3168
3376
  "attributes": [
@@ -3258,14 +3466,30 @@
3258
3466
  "name": "VscElement",
3259
3467
  "module": "src/includes/VscElement.ts"
3260
3468
  }
3261
- }
3262
- ],
3263
- "superclass": {
3264
- "name": "VscElement",
3265
- "module": "/src/includes/VscElement.js"
3266
- },
3267
- "tagName": "vscode-form-helper",
3268
- "customElement": true
3469
+ },
3470
+ {
3471
+ "kind": "method",
3472
+ "name": "warn",
3473
+ "parameters": [
3474
+ {
3475
+ "name": "message",
3476
+ "type": {
3477
+ "text": "string"
3478
+ }
3479
+ }
3480
+ ],
3481
+ "inheritedFrom": {
3482
+ "name": "VscElement",
3483
+ "module": "src/includes/VscElement.ts"
3484
+ }
3485
+ }
3486
+ ],
3487
+ "superclass": {
3488
+ "name": "VscElement",
3489
+ "module": "/src/includes/VscElement.js"
3490
+ },
3491
+ "tagName": "vscode-form-helper",
3492
+ "customElement": true
3269
3493
  }
3270
3494
  ],
3271
3495
  "exports": [
@@ -3450,6 +3674,22 @@
3450
3674
  "name": "VscElement",
3451
3675
  "module": "src/includes/VscElement.ts"
3452
3676
  }
3677
+ },
3678
+ {
3679
+ "kind": "method",
3680
+ "name": "warn",
3681
+ "parameters": [
3682
+ {
3683
+ "name": "message",
3684
+ "type": {
3685
+ "text": "string"
3686
+ }
3687
+ }
3688
+ ],
3689
+ "inheritedFrom": {
3690
+ "name": "VscElement",
3691
+ "module": "src/includes/VscElement.ts"
3692
+ }
3453
3693
  }
3454
3694
  ],
3455
3695
  "attributes": [
@@ -3663,6 +3903,22 @@
3663
3903
  "name": "VscElement",
3664
3904
  "module": "src/includes/VscElement.ts"
3665
3905
  }
3906
+ },
3907
+ {
3908
+ "kind": "method",
3909
+ "name": "warn",
3910
+ "parameters": [
3911
+ {
3912
+ "name": "message",
3913
+ "type": {
3914
+ "text": "string"
3915
+ }
3916
+ }
3917
+ ],
3918
+ "inheritedFrom": {
3919
+ "name": "VscElement",
3920
+ "module": "src/includes/VscElement.ts"
3921
+ }
3666
3922
  }
3667
3923
  ],
3668
3924
  "attributes": [
@@ -4993,6 +5249,22 @@
4993
5249
  "name": "VscElement",
4994
5250
  "module": "src/includes/VscElement.ts"
4995
5251
  }
5252
+ },
5253
+ {
5254
+ "kind": "method",
5255
+ "name": "warn",
5256
+ "parameters": [
5257
+ {
5258
+ "name": "message",
5259
+ "type": {
5260
+ "text": "string"
5261
+ }
5262
+ }
5263
+ ],
5264
+ "inheritedFrom": {
5265
+ "name": "VscElement",
5266
+ "module": "src/includes/VscElement.ts"
5267
+ }
4996
5268
  }
4997
5269
  ],
4998
5270
  "attributes": [
@@ -5288,6 +5560,22 @@
5288
5560
  "name": "VscElement",
5289
5561
  "module": "src/includes/VscElement.ts"
5290
5562
  }
5563
+ },
5564
+ {
5565
+ "kind": "method",
5566
+ "name": "warn",
5567
+ "parameters": [
5568
+ {
5569
+ "name": "message",
5570
+ "type": {
5571
+ "text": "string"
5572
+ }
5573
+ }
5574
+ ],
5575
+ "inheritedFrom": {
5576
+ "name": "VscElement",
5577
+ "module": "src/includes/VscElement.ts"
5578
+ }
5291
5579
  }
5292
5580
  ],
5293
5581
  "attributes": [
@@ -5489,6 +5777,22 @@
5489
5777
  "name": "VscElement",
5490
5778
  "module": "src/includes/VscElement.ts"
5491
5779
  }
5780
+ },
5781
+ {
5782
+ "kind": "method",
5783
+ "name": "warn",
5784
+ "parameters": [
5785
+ {
5786
+ "name": "message",
5787
+ "type": {
5788
+ "text": "string"
5789
+ }
5790
+ }
5791
+ ],
5792
+ "inheritedFrom": {
5793
+ "name": "VscElement",
5794
+ "module": "src/includes/VscElement.ts"
5795
+ }
5492
5796
  }
5493
5797
  ],
5494
5798
  "attributes": [
@@ -5636,6 +5940,22 @@
5636
5940
  "name": "VscElement",
5637
5941
  "module": "src/includes/VscElement.ts"
5638
5942
  }
5943
+ },
5944
+ {
5945
+ "kind": "method",
5946
+ "name": "warn",
5947
+ "parameters": [
5948
+ {
5949
+ "name": "message",
5950
+ "type": {
5951
+ "text": "string"
5952
+ }
5953
+ }
5954
+ ],
5955
+ "inheritedFrom": {
5956
+ "name": "VscElement",
5957
+ "module": "src/includes/VscElement.ts"
5958
+ }
5639
5959
  }
5640
5960
  ],
5641
5961
  "attributes": [
@@ -6099,6 +6419,22 @@
6099
6419
  "name": "VscElement",
6100
6420
  "module": "src/includes/VscElement.ts"
6101
6421
  }
6422
+ },
6423
+ {
6424
+ "kind": "method",
6425
+ "name": "warn",
6426
+ "parameters": [
6427
+ {
6428
+ "name": "message",
6429
+ "type": {
6430
+ "text": "string"
6431
+ }
6432
+ }
6433
+ ],
6434
+ "inheritedFrom": {
6435
+ "name": "VscElement",
6436
+ "module": "src/includes/VscElement.ts"
6437
+ }
6102
6438
  }
6103
6439
  ],
6104
6440
  "events": [
@@ -6388,6 +6724,22 @@
6388
6724
  "name": "VscElement",
6389
6725
  "module": "src/includes/VscElement.ts"
6390
6726
  }
6727
+ },
6728
+ {
6729
+ "kind": "method",
6730
+ "name": "warn",
6731
+ "parameters": [
6732
+ {
6733
+ "name": "message",
6734
+ "type": {
6735
+ "text": "string"
6736
+ }
6737
+ }
6738
+ ],
6739
+ "inheritedFrom": {
6740
+ "name": "VscElement",
6741
+ "module": "src/includes/VscElement.ts"
6742
+ }
6391
6743
  }
6392
6744
  ],
6393
6745
  "events": [
@@ -6870,6 +7222,22 @@
6870
7222
  "name": "VscElement",
6871
7223
  "module": "src/includes/VscElement.ts"
6872
7224
  }
7225
+ },
7226
+ {
7227
+ "kind": "method",
7228
+ "name": "warn",
7229
+ "parameters": [
7230
+ {
7231
+ "name": "message",
7232
+ "type": {
7233
+ "text": "string"
7234
+ }
7235
+ }
7236
+ ],
7237
+ "inheritedFrom": {
7238
+ "name": "VscElement",
7239
+ "module": "src/includes/VscElement.ts"
7240
+ }
6873
7241
  }
6874
7242
  ],
6875
7243
  "attributes": [
@@ -8183,6 +8551,22 @@
8183
8551
  "name": "VscElement",
8184
8552
  "module": "src/includes/VscElement.ts"
8185
8553
  }
8554
+ },
8555
+ {
8556
+ "kind": "method",
8557
+ "name": "warn",
8558
+ "parameters": [
8559
+ {
8560
+ "name": "message",
8561
+ "type": {
8562
+ "text": "string"
8563
+ }
8564
+ }
8565
+ ],
8566
+ "inheritedFrom": {
8567
+ "name": "VscElement",
8568
+ "module": "src/includes/VscElement.ts"
8569
+ }
8186
8570
  }
8187
8571
  ],
8188
8572
  "attributes": [
@@ -8905,6 +9289,22 @@
8905
9289
  "name": "VscElement",
8906
9290
  "module": "src/includes/VscElement.ts"
8907
9291
  }
9292
+ },
9293
+ {
9294
+ "kind": "method",
9295
+ "name": "warn",
9296
+ "parameters": [
9297
+ {
9298
+ "name": "message",
9299
+ "type": {
9300
+ "text": "string"
9301
+ }
9302
+ }
9303
+ ],
9304
+ "inheritedFrom": {
9305
+ "name": "VscElement",
9306
+ "module": "src/includes/VscElement.ts"
9307
+ }
8908
9308
  }
8909
9309
  ],
8910
9310
  "attributes": [
@@ -9115,6 +9515,22 @@
9115
9515
  "name": "VscElement",
9116
9516
  "module": "src/includes/VscElement.ts"
9117
9517
  }
9518
+ },
9519
+ {
9520
+ "kind": "method",
9521
+ "name": "warn",
9522
+ "parameters": [
9523
+ {
9524
+ "name": "message",
9525
+ "type": {
9526
+ "text": "string"
9527
+ }
9528
+ }
9529
+ ],
9530
+ "inheritedFrom": {
9531
+ "name": "VscElement",
9532
+ "module": "src/includes/VscElement.ts"
9533
+ }
9118
9534
  }
9119
9535
  ],
9120
9536
  "attributes": [
@@ -9239,6 +9655,22 @@
9239
9655
  "name": "VscElement",
9240
9656
  "module": "src/includes/VscElement.ts"
9241
9657
  }
9658
+ },
9659
+ {
9660
+ "kind": "method",
9661
+ "name": "warn",
9662
+ "parameters": [
9663
+ {
9664
+ "name": "message",
9665
+ "type": {
9666
+ "text": "string"
9667
+ }
9668
+ }
9669
+ ],
9670
+ "inheritedFrom": {
9671
+ "name": "VscElement",
9672
+ "module": "src/includes/VscElement.ts"
9673
+ }
9242
9674
  }
9243
9675
  ],
9244
9676
  "attributes": [
@@ -9289,57 +9721,478 @@
9289
9721
  },
9290
9722
  {
9291
9723
  "kind": "javascript-module",
9292
- "path": "src/vscode-table/helpers.ts",
9724
+ "path": "src/vscode-table/ColumnResizeController.ts",
9293
9725
  "declarations": [
9294
9726
  {
9295
- "kind": "function",
9296
- "name": "rawValueToPercentage",
9297
- "return": {
9298
- "type": {
9299
- "text": "number | null"
9300
- }
9301
- },
9302
- "parameters": [
9727
+ "kind": "class",
9728
+ "description": "",
9729
+ "name": "ColumnResizeController",
9730
+ "members": [
9303
9731
  {
9304
- "name": "raw",
9732
+ "kind": "field",
9733
+ "name": "_host",
9305
9734
  "type": {
9306
- "text": "string | number"
9307
- }
9735
+ "text": "VscodeTable"
9736
+ },
9737
+ "privacy": "private"
9308
9738
  },
9309
9739
  {
9310
- "name": "base",
9740
+ "kind": "field",
9741
+ "name": "_hostWidth",
9742
+ "privacy": "private"
9743
+ },
9744
+ {
9745
+ "kind": "field",
9746
+ "name": "_hostX",
9747
+ "privacy": "private"
9748
+ },
9749
+ {
9750
+ "kind": "field",
9751
+ "name": "_activeSplitter",
9311
9752
  "type": {
9312
- "text": "number"
9313
- }
9314
- }
9315
- ]
9316
- }
9317
- ],
9318
- "exports": [
9319
- {
9320
- "kind": "js",
9321
- "name": "rawValueToPercentage",
9322
- "declaration": {
9323
- "name": "rawValueToPercentage",
9324
- "module": "src/vscode-table/helpers.ts"
9325
- }
9326
- }
9327
- ]
9328
- },
9329
- {
9330
- "kind": "javascript-module",
9331
- "path": "src/vscode-table/vscode-table.styles.ts",
9332
- "declarations": [
9333
- {
9334
- "kind": "variable",
9335
- "name": "styles",
9336
- "type": {
9337
- "text": "CSSResultGroup"
9338
- },
9339
- "default": "[ baseStyles, css` :host { display: block; --vsc-row-even-background: transparent; --vsc-row-odd-background: transparent; --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 0; --vsc-row-display: table-row; } :host([bordered]), :host([bordered-rows]) { --vsc-row-border-bottom-width: 1px; } :host([compact]) { --vsc-row-display: block; } :host([bordered][compact]), :host([bordered-rows][compact]) { --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 1px; } :host([zebra]) { --vsc-row-even-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } :host([zebra-odd]) { --vsc-row-odd-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } ::slotted(vscode-table-row) { width: 100%; } .wrapper { height: 100%; max-width: 100%; overflow: hidden; position: relative; width: 100%; } .wrapper.select-disabled { user-select: none; } .wrapper.resize-cursor { cursor: ew-resize; } .wrapper.compact-view .header-slot-wrapper { height: 0; overflow: hidden; } .scrollable { height: 100%; } .scrollable:before { background-color: transparent; content: ''; display: block; height: 1px; position: absolute; width: 100%; } .wrapper:not(.compact-view) .scrollable:not([scrolled]):before { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); } .sash { visibility: hidden; } :host([bordered-columns]) .sash, :host([bordered]) .sash { visibility: visible; } :host([resizable]) .wrapper:hover .sash { visibility: visible; } .sash { height: 100%; position: absolute; top: 0; width: 1px; } .wrapper.compact-view .sash { display: none; } .sash.resizable { cursor: ew-resize; } .sash-visible { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); height: 100%; position: absolute; top: 30px; width: 1px; } .sash.hover .sash-visible { background-color: var(--vscode-sash-hoverBorder, #0078d4); transition: background-color 50ms linear 300ms; } .sash .sash-clickable { background-color: transparent; height: 100%; left: -2px; position: absolute; width: 5px; } `, ]"
9340
- }
9753
+ "text": "SplitterElement | null"
9754
+ },
9755
+ "privacy": "private",
9756
+ "default": "null"
9757
+ },
9758
+ {
9759
+ "kind": "field",
9760
+ "name": "_minColumnWidth",
9761
+ "privacy": "private"
9762
+ },
9763
+ {
9764
+ "kind": "field",
9765
+ "name": "_columnWidths",
9766
+ "type": {
9767
+ "text": "Percent[]"
9768
+ },
9769
+ "privacy": "private",
9770
+ "default": "[]"
9771
+ },
9772
+ {
9773
+ "kind": "field",
9774
+ "name": "_dragState",
9775
+ "type": {
9776
+ "text": "{\n splitterIndex: number;\n pointerId: number;\n prevX: Px;\n dragOffset: Px;\n } | null"
9777
+ },
9778
+ "privacy": "private",
9779
+ "default": "null"
9780
+ },
9781
+ {
9782
+ "kind": "field",
9783
+ "name": "_cachedSplitterPositions",
9784
+ "type": {
9785
+ "text": "Percent[] | null"
9786
+ },
9787
+ "privacy": "private",
9788
+ "default": "null"
9789
+ },
9790
+ {
9791
+ "kind": "method",
9792
+ "name": "hostConnected",
9793
+ "return": {
9794
+ "type": {
9795
+ "text": "void"
9796
+ }
9797
+ }
9798
+ },
9799
+ {
9800
+ "kind": "field",
9801
+ "name": "isDragging",
9802
+ "type": {
9803
+ "text": "boolean"
9804
+ },
9805
+ "readonly": true
9806
+ },
9807
+ {
9808
+ "kind": "field",
9809
+ "name": "splitterPositions",
9810
+ "type": {
9811
+ "text": "Percent[]"
9812
+ },
9813
+ "readonly": true
9814
+ },
9815
+ {
9816
+ "kind": "method",
9817
+ "name": "getActiveSplitterCalculatedPosition"
9818
+ },
9819
+ {
9820
+ "kind": "field",
9821
+ "name": "columnWidths",
9822
+ "readonly": true
9823
+ },
9824
+ {
9825
+ "kind": "method",
9826
+ "name": "saveHostDimensions"
9827
+ },
9828
+ {
9829
+ "kind": "method",
9830
+ "name": "setActiveSplitter",
9831
+ "parameters": [
9832
+ {
9833
+ "name": "splitter",
9834
+ "type": {
9835
+ "text": "HTMLElement"
9836
+ }
9837
+ }
9838
+ ]
9839
+ },
9840
+ {
9841
+ "kind": "method",
9842
+ "name": "getActiveSplitter"
9843
+ },
9844
+ {
9845
+ "kind": "method",
9846
+ "name": "setMinColumnWidth",
9847
+ "parameters": [
9848
+ {
9849
+ "name": "width",
9850
+ "type": {
9851
+ "text": "Percent"
9852
+ }
9853
+ }
9854
+ ]
9855
+ },
9856
+ {
9857
+ "kind": "method",
9858
+ "name": "setColumWidths",
9859
+ "parameters": [
9860
+ {
9861
+ "name": "widths",
9862
+ "type": {
9863
+ "text": "Percent[]"
9864
+ }
9865
+ }
9866
+ ]
9867
+ },
9868
+ {
9869
+ "kind": "method",
9870
+ "name": "shouldDrag",
9871
+ "parameters": [
9872
+ {
9873
+ "name": "event",
9874
+ "type": {
9875
+ "text": "PointerEvent"
9876
+ }
9877
+ }
9878
+ ]
9879
+ },
9880
+ {
9881
+ "kind": "method",
9882
+ "name": "startDrag",
9883
+ "parameters": [
9884
+ {
9885
+ "name": "event",
9886
+ "type": {
9887
+ "text": "PointerEvent"
9888
+ }
9889
+ }
9890
+ ]
9891
+ },
9892
+ {
9893
+ "kind": "method",
9894
+ "name": "drag",
9895
+ "parameters": [
9896
+ {
9897
+ "name": "event",
9898
+ "type": {
9899
+ "text": "PointerEvent"
9900
+ }
9901
+ }
9902
+ ]
9903
+ },
9904
+ {
9905
+ "kind": "method",
9906
+ "name": "stopDrag",
9907
+ "parameters": [
9908
+ {
9909
+ "name": "event",
9910
+ "type": {
9911
+ "text": "PointerEvent"
9912
+ }
9913
+ }
9914
+ ]
9915
+ },
9916
+ {
9917
+ "kind": "method",
9918
+ "name": "_toPercent",
9919
+ "privacy": "private",
9920
+ "parameters": [
9921
+ {
9922
+ "name": "px",
9923
+ "type": {
9924
+ "text": "Px"
9925
+ }
9926
+ }
9927
+ ]
9928
+ },
9929
+ {
9930
+ "kind": "method",
9931
+ "name": "_toPx",
9932
+ "privacy": "private",
9933
+ "parameters": [
9934
+ {
9935
+ "name": "percent",
9936
+ "type": {
9937
+ "text": "Percent"
9938
+ }
9939
+ }
9940
+ ]
9941
+ }
9942
+ ]
9943
+ }
9944
+ ],
9945
+ "exports": [
9946
+ {
9947
+ "kind": "js",
9948
+ "name": "ColumnResizeController",
9949
+ "declaration": {
9950
+ "name": "ColumnResizeController",
9951
+ "module": "src/vscode-table/ColumnResizeController.ts"
9952
+ }
9953
+ }
9954
+ ]
9955
+ },
9956
+ {
9957
+ "kind": "javascript-module",
9958
+ "path": "src/vscode-table/calculations.ts",
9959
+ "declarations": [
9960
+ {
9961
+ "kind": "function",
9962
+ "name": "px",
9963
+ "return": {
9964
+ "type": {
9965
+ "text": "Px"
9966
+ }
9967
+ },
9968
+ "parameters": [
9969
+ {
9970
+ "name": "value",
9971
+ "type": {
9972
+ "text": "number"
9973
+ }
9974
+ }
9975
+ ]
9976
+ },
9977
+ {
9978
+ "kind": "function",
9979
+ "name": "percent",
9980
+ "return": {
9981
+ "type": {
9982
+ "text": "Percent"
9983
+ }
9984
+ },
9985
+ "parameters": [
9986
+ {
9987
+ "name": "value",
9988
+ "type": {
9989
+ "text": "number"
9990
+ }
9991
+ }
9992
+ ]
9993
+ },
9994
+ {
9995
+ "kind": "function",
9996
+ "name": "toPercent",
9997
+ "return": {
9998
+ "type": {
9999
+ "text": "Percent"
10000
+ }
10001
+ },
10002
+ "parameters": [
10003
+ {
10004
+ "name": "px",
10005
+ "type": {
10006
+ "text": "Px"
10007
+ }
10008
+ },
10009
+ {
10010
+ "name": "container",
10011
+ "type": {
10012
+ "text": "Px"
10013
+ }
10014
+ }
10015
+ ]
10016
+ },
10017
+ {
10018
+ "kind": "function",
10019
+ "name": "toPx",
10020
+ "return": {
10021
+ "type": {
10022
+ "text": "Px"
10023
+ }
10024
+ },
10025
+ "parameters": [
10026
+ {
10027
+ "name": "p",
10028
+ "type": {
10029
+ "text": "Percent"
10030
+ }
10031
+ },
10032
+ {
10033
+ "name": "container",
10034
+ "type": {
10035
+ "text": "Px"
10036
+ }
10037
+ }
10038
+ ]
10039
+ },
10040
+ {
10041
+ "kind": "function",
10042
+ "name": "calculateColumnWidths",
10043
+ "return": {
10044
+ "type": {
10045
+ "text": "Percent[]"
10046
+ }
10047
+ },
10048
+ "parameters": [
10049
+ {
10050
+ "name": "widths",
10051
+ "type": {
10052
+ "text": "Percent[]"
10053
+ }
10054
+ },
10055
+ {
10056
+ "name": "splitterIndex",
10057
+ "type": {
10058
+ "text": "number"
10059
+ }
10060
+ },
10061
+ {
10062
+ "name": "delta",
10063
+ "type": {
10064
+ "text": "Percent"
10065
+ }
10066
+ },
10067
+ {
10068
+ "name": "minWidth",
10069
+ "type": {
10070
+ "text": "Percent"
10071
+ }
10072
+ }
10073
+ ]
10074
+ },
10075
+ {
10076
+ "kind": "function",
10077
+ "name": "parseSizeAttributeToPercent",
10078
+ "return": {
10079
+ "type": {
10080
+ "text": "number | null"
10081
+ }
10082
+ },
10083
+ "parameters": [
10084
+ {
10085
+ "name": "raw",
10086
+ "type": {
10087
+ "text": "string | number"
10088
+ }
10089
+ },
10090
+ {
10091
+ "name": "base",
10092
+ "type": {
10093
+ "text": "number"
10094
+ }
10095
+ }
10096
+ ]
10097
+ }
10098
+ ],
10099
+ "exports": [
10100
+ {
10101
+ "kind": "js",
10102
+ "name": "px",
10103
+ "declaration": {
10104
+ "name": "px",
10105
+ "module": "src/vscode-table/calculations.ts"
10106
+ }
10107
+ },
10108
+ {
10109
+ "kind": "js",
10110
+ "name": "percent",
10111
+ "declaration": {
10112
+ "name": "percent",
10113
+ "module": "src/vscode-table/calculations.ts"
10114
+ }
10115
+ },
10116
+ {
10117
+ "kind": "js",
10118
+ "name": "toPercent",
10119
+ "declaration": {
10120
+ "name": "toPercent",
10121
+ "module": "src/vscode-table/calculations.ts"
10122
+ }
10123
+ },
10124
+ {
10125
+ "kind": "js",
10126
+ "name": "toPx",
10127
+ "declaration": {
10128
+ "name": "toPx",
10129
+ "module": "src/vscode-table/calculations.ts"
10130
+ }
10131
+ },
10132
+ {
10133
+ "kind": "js",
10134
+ "name": "calculateColumnWidths",
10135
+ "declaration": {
10136
+ "name": "calculateColumnWidths",
10137
+ "module": "src/vscode-table/calculations.ts"
10138
+ }
10139
+ },
10140
+ {
10141
+ "kind": "js",
10142
+ "name": "parseSizeAttributeToPercent",
10143
+ "declaration": {
10144
+ "name": "parseSizeAttributeToPercent",
10145
+ "module": "src/vscode-table/calculations.ts"
10146
+ }
10147
+ }
10148
+ ]
10149
+ },
10150
+ {
10151
+ "kind": "javascript-module",
10152
+ "path": "src/vscode-table/vscode-table.styles.ts",
10153
+ "declarations": [
10154
+ {
10155
+ "kind": "variable",
10156
+ "name": "SPLITTER_HIT_WIDTH",
10157
+ "type": {
10158
+ "text": "number"
10159
+ },
10160
+ "default": "5"
10161
+ },
10162
+ {
10163
+ "kind": "variable",
10164
+ "name": "SPLITTER_VISIBLE_WIDTH",
10165
+ "type": {
10166
+ "text": "number"
10167
+ },
10168
+ "default": "1"
10169
+ },
10170
+ {
10171
+ "kind": "variable",
10172
+ "name": "styles",
10173
+ "type": {
10174
+ "text": "CSSResultGroup"
10175
+ },
10176
+ "default": "[ baseStyles, css` :host { display: block; --vsc-row-even-background: transparent; --vsc-row-odd-background: transparent; --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 0; --vsc-row-display: table-row; } :host([bordered]), :host([bordered-rows]) { --vsc-row-border-bottom-width: 1px; } :host([compact]) { --vsc-row-display: block; } :host([bordered][compact]), :host([bordered-rows][compact]) { --vsc-row-border-bottom-width: 0; --vsc-row-border-top-width: 1px; } :host([zebra]) { --vsc-row-even-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } :host([zebra-odd]) { --vsc-row-odd-background: var( --vscode-keybindingTable-rowsBackground, rgba(204, 204, 204, 0.04) ); } ::slotted(vscode-table-row) { width: 100%; } .wrapper { height: 100%; max-width: 100%; overflow: hidden; position: relative; width: 100%; } .wrapper.select-disabled { user-select: none; } .wrapper.resize-cursor { cursor: ew-resize; } .wrapper.compact-view .header-slot-wrapper { height: 0; overflow: hidden; } .scrollable { height: 100%; } .scrollable:before { background-color: transparent; content: ''; display: block; height: 1px; position: absolute; width: 100%; } .wrapper:not(.compact-view) .scrollable:not([scrolled]):before { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); } .sash { visibility: hidden; } :host([bordered-columns]) .sash, :host([bordered]) .sash { visibility: visible; } :host([resizable]) .wrapper:hover .sash { visibility: visible; } .sash { height: 100%; position: absolute; top: 0; width: 1px; } .wrapper.compact-view .sash { display: none; } .sash.resizable { cursor: ew-resize; } .sash-visible { background-color: var( --vscode-editorGroup-border, rgba(255, 255, 255, 0.09) ); height: calc(100% - 30px); position: absolute; top: 30px; width: ${SPLITTER_VISIBLE_WIDTH}px; } .sash.hover .sash-visible { background-color: var(--vscode-sash-hoverBorder, #0078d4); transition: background-color 50ms linear 300ms; } .sash .sash-clickable { height: 100%; left: ${0 - (SPLITTER_HIT_WIDTH - SPLITTER_VISIBLE_WIDTH) / 2}px; position: absolute; width: ${SPLITTER_HIT_WIDTH}px; } `, ]"
10177
+ }
9341
10178
  ],
9342
10179
  "exports": [
10180
+ {
10181
+ "kind": "js",
10182
+ "name": "SPLITTER_HIT_WIDTH",
10183
+ "declaration": {
10184
+ "name": "SPLITTER_HIT_WIDTH",
10185
+ "module": "src/vscode-table/vscode-table.styles.ts"
10186
+ }
10187
+ },
10188
+ {
10189
+ "kind": "js",
10190
+ "name": "SPLITTER_VISIBLE_WIDTH",
10191
+ "declaration": {
10192
+ "name": "SPLITTER_VISIBLE_WIDTH",
10193
+ "module": "src/vscode-table/vscode-table.styles.ts"
10194
+ }
10195
+ },
9343
10196
  {
9344
10197
  "kind": "js",
9345
10198
  "name": "default",
@@ -9486,14 +10339,6 @@
9486
10339
  "attribute": "zebra-odd",
9487
10340
  "reflects": true
9488
10341
  },
9489
- {
9490
- "kind": "field",
9491
- "name": "_bodySlot",
9492
- "type": {
9493
- "text": "HTMLSlotElement"
9494
- },
9495
- "privacy": "private"
9496
- },
9497
10342
  {
9498
10343
  "kind": "field",
9499
10344
  "name": "_headerElement",
@@ -9613,24 +10458,6 @@
9613
10458
  "privacy": "private",
9614
10459
  "default": "-1"
9615
10460
  },
9616
- {
9617
- "kind": "field",
9618
- "name": "_activeSashCursorOffset",
9619
- "type": {
9620
- "text": "number"
9621
- },
9622
- "privacy": "private",
9623
- "default": "0"
9624
- },
9625
- {
9626
- "kind": "field",
9627
- "name": "_componentX",
9628
- "type": {
9629
- "text": "number"
9630
- },
9631
- "privacy": "private",
9632
- "default": "0"
9633
- },
9634
10461
  {
9635
10462
  "kind": "field",
9636
10463
  "name": "_componentH",
@@ -9669,22 +10496,6 @@
9669
10496
  "default": "[]",
9670
10497
  "description": "Cached querySelectorAll result. Updated when the body slot changes.\nIt shouldn't be used directly, check the \"_getCellsOfFirstRow\" function."
9671
10498
  },
9672
- {
9673
- "kind": "field",
9674
- "name": "_cellsToResize",
9675
- "type": {
9676
- "text": "VscodeTableCell[]"
9677
- },
9678
- "privacy": "private"
9679
- },
9680
- {
9681
- "kind": "field",
9682
- "name": "_headerCellsToResize",
9683
- "type": {
9684
- "text": "VscodeTableHeaderCell[]"
9685
- },
9686
- "privacy": "private"
9687
- },
9688
10499
  {
9689
10500
  "kind": "field",
9690
10501
  "name": "_prevHeaderHeight",
@@ -9704,30 +10515,10 @@
9704
10515
  "default": "0"
9705
10516
  },
9706
10517
  {
9707
- "kind": "method",
9708
- "name": "_px2Percent",
9709
- "privacy": "private",
9710
- "parameters": [
9711
- {
9712
- "name": "px",
9713
- "type": {
9714
- "text": "number"
9715
- }
9716
- }
9717
- ]
9718
- },
9719
- {
9720
- "kind": "method",
9721
- "name": "_percent2Px",
10518
+ "kind": "field",
10519
+ "name": "_columnResizeController",
9722
10520
  "privacy": "private",
9723
- "parameters": [
9724
- {
9725
- "name": "percent",
9726
- "type": {
9727
- "text": "number"
9728
- }
9729
- }
9730
- ]
10521
+ "default": "new ColumnResizeController(this)"
9731
10522
  },
9732
10523
  {
9733
10524
  "kind": "method",
@@ -9783,7 +10574,7 @@
9783
10574
  },
9784
10575
  {
9785
10576
  "kind": "method",
9786
- "name": "_calcColWidthPercentages",
10577
+ "name": "_calculateInitialColumnWidths",
9787
10578
  "privacy": "private",
9788
10579
  "return": {
9789
10580
  "type": {
@@ -9855,6 +10646,19 @@
9855
10646
  "name": "_toggleCompactView",
9856
10647
  "privacy": "private"
9857
10648
  },
10649
+ {
10650
+ "kind": "method",
10651
+ "name": "_stopDrag",
10652
+ "privacy": "private",
10653
+ "parameters": [
10654
+ {
10655
+ "name": "event",
10656
+ "type": {
10657
+ "text": "PointerEvent"
10658
+ }
10659
+ }
10660
+ ]
10661
+ },
9858
10662
  {
9859
10663
  "kind": "method",
9860
10664
  "name": "_onDefaultSlotChange",
@@ -9885,20 +10689,7 @@
9885
10689
  },
9886
10690
  {
9887
10691
  "kind": "method",
9888
- "name": "_onSashMouseOut",
9889
- "privacy": "private",
9890
- "parameters": [
9891
- {
9892
- "name": "event",
9893
- "type": {
9894
- "text": "MouseEvent"
9895
- }
9896
- }
9897
- ]
9898
- },
9899
- {
9900
- "kind": "method",
9901
- "name": "_onSashMouseDown",
10692
+ "name": "_onSashMouseOut",
9902
10693
  "privacy": "private",
9903
10694
  "parameters": [
9904
10695
  {
@@ -9911,46 +10702,41 @@
9911
10702
  },
9912
10703
  {
9913
10704
  "kind": "method",
9914
- "name": "_updateActiveSashPosition",
10705
+ "name": "_resizeColumns",
9915
10706
  "privacy": "private",
9916
10707
  "parameters": [
9917
10708
  {
9918
- "name": "mouseX",
9919
- "type": {
9920
- "text": "number"
9921
- }
10709
+ "name": "resizeBodyCells",
10710
+ "default": "true"
9922
10711
  }
9923
10712
  ]
9924
10713
  },
9925
10714
  {
9926
10715
  "kind": "method",
9927
- "name": "_getSashPositions",
9928
- "privacy": "private",
9929
- "return": {
9930
- "type": {
9931
- "text": "{\n sashPos: number;\n prevSashPos: number;\n nextSashPos: number;\n }"
9932
- }
9933
- }
9934
- },
9935
- {
9936
- "kind": "method",
9937
- "name": "_resizeColumns",
10716
+ "name": "_handleSplitterPointerDown",
9938
10717
  "privacy": "private",
9939
10718
  "parameters": [
9940
10719
  {
9941
- "name": "resizeBodyCells",
9942
- "default": "true"
10720
+ "name": "event",
10721
+ "type": {
10722
+ "text": "PointerEvent"
10723
+ }
9943
10724
  }
9944
10725
  ]
9945
10726
  },
9946
10727
  {
9947
10728
  "kind": "field",
9948
- "name": "_onResizingMouseMove",
10729
+ "name": "_handleSplitterPointerMove",
10730
+ "privacy": "private"
10731
+ },
10732
+ {
10733
+ "kind": "field",
10734
+ "name": "_handleSplitterPointerUp",
9949
10735
  "privacy": "private"
9950
10736
  },
9951
10737
  {
9952
10738
  "kind": "field",
9953
- "name": "_onResizingMouseUp",
10739
+ "name": "_handleSplitterPointerCancel",
9954
10740
  "privacy": "private"
9955
10741
  },
9956
10742
  {
@@ -9965,6 +10751,22 @@
9965
10751
  "name": "VscElement",
9966
10752
  "module": "src/includes/VscElement.ts"
9967
10753
  }
10754
+ },
10755
+ {
10756
+ "kind": "method",
10757
+ "name": "warn",
10758
+ "parameters": [
10759
+ {
10760
+ "name": "message",
10761
+ "type": {
10762
+ "text": "string"
10763
+ }
10764
+ }
10765
+ ],
10766
+ "inheritedFrom": {
10767
+ "name": "VscElement",
10768
+ "module": "src/includes/VscElement.ts"
10769
+ }
9968
10770
  }
9969
10771
  ],
9970
10772
  "attributes": [
@@ -10135,6 +10937,22 @@
10135
10937
  "name": "VscElement",
10136
10938
  "module": "src/includes/VscElement.ts"
10137
10939
  }
10940
+ },
10941
+ {
10942
+ "kind": "method",
10943
+ "name": "warn",
10944
+ "parameters": [
10945
+ {
10946
+ "name": "message",
10947
+ "type": {
10948
+ "text": "string"
10949
+ }
10950
+ }
10951
+ ],
10952
+ "inheritedFrom": {
10953
+ "name": "VscElement",
10954
+ "module": "src/includes/VscElement.ts"
10955
+ }
10138
10956
  }
10139
10957
  ],
10140
10958
  "superclass": {
@@ -10248,6 +11066,22 @@
10248
11066
  "name": "VscElement",
10249
11067
  "module": "src/includes/VscElement.ts"
10250
11068
  }
11069
+ },
11070
+ {
11071
+ "kind": "method",
11072
+ "name": "warn",
11073
+ "parameters": [
11074
+ {
11075
+ "name": "message",
11076
+ "type": {
11077
+ "text": "string"
11078
+ }
11079
+ }
11080
+ ],
11081
+ "inheritedFrom": {
11082
+ "name": "VscElement",
11083
+ "module": "src/includes/VscElement.ts"
11084
+ }
10251
11085
  }
10252
11086
  ],
10253
11087
  "attributes": [
@@ -10349,6 +11183,22 @@
10349
11183
  "name": "VscElement",
10350
11184
  "module": "src/includes/VscElement.ts"
10351
11185
  }
11186
+ },
11187
+ {
11188
+ "kind": "method",
11189
+ "name": "warn",
11190
+ "parameters": [
11191
+ {
11192
+ "name": "message",
11193
+ "type": {
11194
+ "text": "string"
11195
+ }
11196
+ }
11197
+ ],
11198
+ "inheritedFrom": {
11199
+ "name": "VscElement",
11200
+ "module": "src/includes/VscElement.ts"
11201
+ }
10352
11202
  }
10353
11203
  ],
10354
11204
  "superclass": {
@@ -10437,6 +11287,22 @@
10437
11287
  "name": "VscElement",
10438
11288
  "module": "src/includes/VscElement.ts"
10439
11289
  }
11290
+ },
11291
+ {
11292
+ "kind": "method",
11293
+ "name": "warn",
11294
+ "parameters": [
11295
+ {
11296
+ "name": "message",
11297
+ "type": {
11298
+ "text": "string"
11299
+ }
11300
+ }
11301
+ ],
11302
+ "inheritedFrom": {
11303
+ "name": "VscElement",
11304
+ "module": "src/includes/VscElement.ts"
11305
+ }
10440
11306
  }
10441
11307
  ],
10442
11308
  "superclass": {
@@ -10517,6 +11383,22 @@
10517
11383
  "name": "VscElement",
10518
11384
  "module": "src/includes/VscElement.ts"
10519
11385
  }
11386
+ },
11387
+ {
11388
+ "kind": "method",
11389
+ "name": "warn",
11390
+ "parameters": [
11391
+ {
11392
+ "name": "message",
11393
+ "type": {
11394
+ "text": "string"
11395
+ }
11396
+ }
11397
+ ],
11398
+ "inheritedFrom": {
11399
+ "name": "VscElement",
11400
+ "module": "src/includes/VscElement.ts"
11401
+ }
10520
11402
  }
10521
11403
  ],
10522
11404
  "superclass": {
@@ -10761,6 +11643,22 @@
10761
11643
  "name": "VscElement",
10762
11644
  "module": "src/includes/VscElement.ts"
10763
11645
  }
11646
+ },
11647
+ {
11648
+ "kind": "method",
11649
+ "name": "warn",
11650
+ "parameters": [
11651
+ {
11652
+ "name": "message",
11653
+ "type": {
11654
+ "text": "string"
11655
+ }
11656
+ }
11657
+ ],
11658
+ "inheritedFrom": {
11659
+ "name": "VscElement",
11660
+ "module": "src/includes/VscElement.ts"
11661
+ }
10764
11662
  }
10765
11663
  ],
10766
11664
  "events": [
@@ -11254,6 +12152,22 @@
11254
12152
  "name": "VscElement",
11255
12153
  "module": "src/includes/VscElement.ts"
11256
12154
  }
12155
+ },
12156
+ {
12157
+ "kind": "method",
12158
+ "name": "warn",
12159
+ "parameters": [
12160
+ {
12161
+ "name": "message",
12162
+ "type": {
12163
+ "text": "string"
12164
+ }
12165
+ }
12166
+ ],
12167
+ "inheritedFrom": {
12168
+ "name": "VscElement",
12169
+ "module": "src/includes/VscElement.ts"
12170
+ }
11257
12171
  }
11258
12172
  ],
11259
12173
  "events": [
@@ -11871,6 +12785,22 @@
11871
12785
  "name": "VscElement",
11872
12786
  "module": "src/includes/VscElement.ts"
11873
12787
  }
12788
+ },
12789
+ {
12790
+ "kind": "method",
12791
+ "name": "warn",
12792
+ "parameters": [
12793
+ {
12794
+ "name": "message",
12795
+ "type": {
12796
+ "text": "string"
12797
+ }
12798
+ }
12799
+ ],
12800
+ "inheritedFrom": {
12801
+ "name": "VscElement",
12802
+ "module": "src/includes/VscElement.ts"
12803
+ }
11874
12804
  }
11875
12805
  ],
11876
12806
  "events": [
@@ -12180,6 +13110,22 @@
12180
13110
  "name": "VscElement",
12181
13111
  "module": "src/includes/VscElement.ts"
12182
13112
  }
13113
+ },
13114
+ {
13115
+ "kind": "method",
13116
+ "name": "warn",
13117
+ "parameters": [
13118
+ {
13119
+ "name": "message",
13120
+ "type": {
13121
+ "text": "string"
13122
+ }
13123
+ }
13124
+ ],
13125
+ "inheritedFrom": {
13126
+ "name": "VscElement",
13127
+ "module": "src/includes/VscElement.ts"
13128
+ }
12183
13129
  }
12184
13130
  ],
12185
13131
  "events": [
@@ -12296,6 +13242,22 @@
12296
13242
  "name": "VscElement",
12297
13243
  "module": "src/includes/VscElement.ts"
12298
13244
  }
13245
+ },
13246
+ {
13247
+ "kind": "method",
13248
+ "name": "warn",
13249
+ "parameters": [
13250
+ {
13251
+ "name": "message",
13252
+ "type": {
13253
+ "text": "string"
13254
+ }
13255
+ }
13256
+ ],
13257
+ "inheritedFrom": {
13258
+ "name": "VscElement",
13259
+ "module": "src/includes/VscElement.ts"
13260
+ }
12299
13261
  }
12300
13262
  ],
12301
13263
  "superclass": {
@@ -12825,6 +13787,22 @@
12825
13787
  "name": "VscElement",
12826
13788
  "module": "src/includes/VscElement.ts"
12827
13789
  }
13790
+ },
13791
+ {
13792
+ "kind": "method",
13793
+ "name": "warn",
13794
+ "parameters": [
13795
+ {
13796
+ "name": "message",
13797
+ "type": {
13798
+ "text": "string"
13799
+ }
13800
+ }
13801
+ ],
13802
+ "inheritedFrom": {
13803
+ "name": "VscElement",
13804
+ "module": "src/includes/VscElement.ts"
13805
+ }
12828
13806
  }
12829
13807
  ],
12830
13808
  "attributes": [
@@ -12947,8 +13925,38 @@
12947
13925
  "declarations": [
12948
13926
  {
12949
13927
  "kind": "class",
12950
- "description": "",
13928
+ "description": "Represents an item in a Tree component.",
12951
13929
  "name": "VscodeTreeItem",
13930
+ "slots": [
13931
+ {
13932
+ "description": "Main content",
13933
+ "name": ""
13934
+ },
13935
+ {
13936
+ "description": "Custom icon for a closed branch item.",
13937
+ "name": "icon-branch"
13938
+ },
13939
+ {
13940
+ "description": "Custom icon for an opened branch item.",
13941
+ "name": "icon-branch-opened"
13942
+ },
13943
+ {
13944
+ "description": "Custom icon for a leaf item.",
13945
+ "name": "icon-leaf"
13946
+ },
13947
+ {
13948
+ "description": "Description of the item. Displayed with a smaller font size and a less prominent color.",
13949
+ "name": "description"
13950
+ },
13951
+ {
13952
+ "description": "Container for action buttons.",
13953
+ "name": "actions"
13954
+ },
13955
+ {
13956
+ "description": "Container for small decorative elements aligned to the right edge of the item.",
13957
+ "name": "decoration"
13958
+ }
13959
+ ],
12952
13960
  "members": [
12953
13961
  {
12954
13962
  "kind": "field",
@@ -13437,6 +14445,22 @@
13437
14445
  "name": "VscElement",
13438
14446
  "module": "src/includes/VscElement.ts"
13439
14447
  }
14448
+ },
14449
+ {
14450
+ "kind": "method",
14451
+ "name": "warn",
14452
+ "parameters": [
14453
+ {
14454
+ "name": "message",
14455
+ "type": {
14456
+ "text": "string"
14457
+ }
14458
+ }
14459
+ ],
14460
+ "inheritedFrom": {
14461
+ "name": "VscElement",
14462
+ "module": "src/includes/VscElement.ts"
14463
+ }
13440
14464
  }
13441
14465
  ],
13442
14466
  "attributes": [
@@ -13500,7 +14524,7 @@
13500
14524
  "name": "VscElement",
13501
14525
  "module": "/src/includes/VscElement.js"
13502
14526
  },
13503
- "tagName": "vscode-tree-item",
14527
+ "tagName": "vscode-tree",
13504
14528
  "customElement": true
13505
14529
  }
13506
14530
  ],
@@ -13573,6 +14597,22 @@
13573
14597
  "name": "VscElement",
13574
14598
  "module": "src/includes/VscElement.ts"
13575
14599
  }
14600
+ },
14601
+ {
14602
+ "kind": "method",
14603
+ "name": "warn",
14604
+ "parameters": [
14605
+ {
14606
+ "name": "message",
14607
+ "type": {
14608
+ "text": "string"
14609
+ }
14610
+ }
14611
+ ],
14612
+ "inheritedFrom": {
14613
+ "name": "VscElement",
14614
+ "module": "src/includes/VscElement.ts"
14615
+ }
13576
14616
  }
13577
14617
  ],
13578
14618
  "attributes": [
@@ -15179,6 +16219,22 @@
15179
16219
  "name": "VscElement",
15180
16220
  "module": "src/includes/VscElement.ts"
15181
16221
  }
16222
+ },
16223
+ {
16224
+ "kind": "method",
16225
+ "name": "warn",
16226
+ "parameters": [
16227
+ {
16228
+ "name": "message",
16229
+ "type": {
16230
+ "text": "string"
16231
+ }
16232
+ }
16233
+ ],
16234
+ "inheritedFrom": {
16235
+ "name": "VscElement",
16236
+ "module": "src/includes/VscElement.ts"
16237
+ }
15182
16238
  }
15183
16239
  ],
15184
16240
  "events": [