@vscode-elements/elements 2.4.1-pre.0 → 2.5.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 (53) hide show
  1. package/LICENSE +1 -1
  2. package/custom-elements.json +752 -708
  3. package/dist/bundled.js +40 -40
  4. package/dist/includes/VscElement.js +1 -1
  5. package/dist/includes/VscElement.js.map +1 -1
  6. package/dist/includes/sizes.d.ts +12 -0
  7. package/dist/includes/sizes.d.ts.map +1 -0
  8. package/dist/includes/sizes.js +30 -0
  9. package/dist/includes/sizes.js.map +1 -0
  10. package/dist/includes/vscode-select/styles.d.ts.map +1 -1
  11. package/dist/includes/vscode-select/styles.js +12 -14
  12. package/dist/includes/vscode-select/styles.js.map +1 -1
  13. package/dist/vscode-button/vscode-button.styles.js +4 -4
  14. package/dist/vscode-button/vscode-button.styles.js.map +1 -1
  15. package/dist/vscode-checkbox/vscode-checkbox.js +1 -1
  16. package/dist/vscode-checkbox/vscode-checkbox.js.map +1 -1
  17. package/dist/vscode-collapsible/vscode-collapsible.d.ts +1 -1
  18. package/dist/vscode-collapsible/vscode-collapsible.d.ts.map +1 -1
  19. package/dist/vscode-collapsible/vscode-collapsible.js +5 -3
  20. package/dist/vscode-collapsible/vscode-collapsible.js.map +1 -1
  21. package/dist/vscode-icon/vscode-icon.js +1 -1
  22. package/dist/vscode-icon/vscode-icon.js.map +1 -1
  23. package/dist/vscode-multi-select/vscode-multi-select.js +1 -1
  24. package/dist/vscode-multi-select/vscode-multi-select.js.map +1 -1
  25. package/dist/vscode-radio/vscode-radio.js +1 -1
  26. package/dist/vscode-radio/vscode-radio.js.map +1 -1
  27. package/dist/vscode-single-select/vscode-single-select.js +1 -1
  28. package/dist/vscode-single-select/vscode-single-select.js.map +1 -1
  29. package/dist/vscode-table/ColumnResizeController.d.ts +4 -3
  30. package/dist/vscode-table/ColumnResizeController.d.ts.map +1 -1
  31. package/dist/vscode-table/ColumnResizeController.js +10 -5
  32. package/dist/vscode-table/ColumnResizeController.js.map +1 -1
  33. package/dist/vscode-table/calculations.d.ts +2 -12
  34. package/dist/vscode-table/calculations.d.ts.map +1 -1
  35. package/dist/vscode-table/calculations.js +4 -32
  36. package/dist/vscode-table/calculations.js.map +1 -1
  37. package/dist/vscode-table/vscode-table.d.ts +2 -0
  38. package/dist/vscode-table/vscode-table.d.ts.map +1 -1
  39. package/dist/vscode-table/vscode-table.js +55 -28
  40. package/dist/vscode-table/vscode-table.js.map +1 -1
  41. package/dist/vscode-table-header-cell/vscode-table-header-cell.d.ts +12 -1
  42. package/dist/vscode-table-header-cell/vscode-table-header-cell.d.ts.map +1 -1
  43. package/dist/vscode-table-header-cell/vscode-table-header-cell.js +18 -0
  44. package/dist/vscode-table-header-cell/vscode-table-header-cell.js.map +1 -1
  45. package/dist/vscode-textarea/vscode-textarea.styles.js +1 -1
  46. package/dist/vscode-textarea/vscode-textarea.styles.js.map +1 -1
  47. package/dist/vscode-textfield/vscode-textfield.js +1 -1
  48. package/dist/vscode-textfield/vscode-textfield.js.map +1 -1
  49. package/dist/vscode-textfield/vscode-textfield.styles.js +1 -1
  50. package/dist/vscode-textfield/vscode-textfield.styles.js.map +1 -1
  51. package/package.json +1 -2
  52. package/vscode.css-custom-data.json +18 -18
  53. package/vscode.html-custom-data.json +34 -34
@@ -180,6 +180,157 @@
180
180
  }
181
181
  ]
182
182
  },
183
+ {
184
+ "kind": "javascript-module",
185
+ "path": "src/includes/sizes.ts",
186
+ "declarations": [
187
+ {
188
+ "kind": "function",
189
+ "name": "px",
190
+ "return": {
191
+ "type": {
192
+ "text": "Px"
193
+ }
194
+ },
195
+ "parameters": [
196
+ {
197
+ "name": "value",
198
+ "type": {
199
+ "text": "number"
200
+ }
201
+ }
202
+ ]
203
+ },
204
+ {
205
+ "kind": "function",
206
+ "name": "percent",
207
+ "return": {
208
+ "type": {
209
+ "text": "Percent"
210
+ }
211
+ },
212
+ "parameters": [
213
+ {
214
+ "name": "value",
215
+ "type": {
216
+ "text": "number"
217
+ }
218
+ }
219
+ ]
220
+ },
221
+ {
222
+ "kind": "function",
223
+ "name": "toPercent",
224
+ "return": {
225
+ "type": {
226
+ "text": "Percent"
227
+ }
228
+ },
229
+ "parameters": [
230
+ {
231
+ "name": "px",
232
+ "type": {
233
+ "text": "Px"
234
+ }
235
+ },
236
+ {
237
+ "name": "container",
238
+ "type": {
239
+ "text": "Px"
240
+ }
241
+ }
242
+ ]
243
+ },
244
+ {
245
+ "kind": "function",
246
+ "name": "toPx",
247
+ "return": {
248
+ "type": {
249
+ "text": "Px"
250
+ }
251
+ },
252
+ "parameters": [
253
+ {
254
+ "name": "p",
255
+ "type": {
256
+ "text": "Percent"
257
+ }
258
+ },
259
+ {
260
+ "name": "container",
261
+ "type": {
262
+ "text": "Px"
263
+ }
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "kind": "function",
269
+ "name": "parseSizeAttributeToPercent",
270
+ "return": {
271
+ "type": {
272
+ "text": "Percent | null"
273
+ }
274
+ },
275
+ "parameters": [
276
+ {
277
+ "name": "raw",
278
+ "type": {
279
+ "text": "string | number"
280
+ }
281
+ },
282
+ {
283
+ "name": "base",
284
+ "type": {
285
+ "text": "number"
286
+ }
287
+ }
288
+ ]
289
+ }
290
+ ],
291
+ "exports": [
292
+ {
293
+ "kind": "js",
294
+ "name": "px",
295
+ "declaration": {
296
+ "name": "px",
297
+ "module": "src/includes/sizes.ts"
298
+ }
299
+ },
300
+ {
301
+ "kind": "js",
302
+ "name": "percent",
303
+ "declaration": {
304
+ "name": "percent",
305
+ "module": "src/includes/sizes.ts"
306
+ }
307
+ },
308
+ {
309
+ "kind": "js",
310
+ "name": "toPercent",
311
+ "declaration": {
312
+ "name": "toPercent",
313
+ "module": "src/includes/sizes.ts"
314
+ }
315
+ },
316
+ {
317
+ "kind": "js",
318
+ "name": "toPx",
319
+ "declaration": {
320
+ "name": "toPx",
321
+ "module": "src/includes/sizes.ts"
322
+ }
323
+ },
324
+ {
325
+ "kind": "js",
326
+ "name": "parseSizeAttributeToPercent",
327
+ "declaration": {
328
+ "name": "parseSizeAttributeToPercent",
329
+ "module": "src/includes/sizes.ts"
330
+ }
331
+ }
332
+ ]
333
+ },
183
334
  {
184
335
  "kind": "javascript-module",
185
336
  "path": "src/includes/style-property-map.ts",
@@ -636,6 +787,147 @@
636
787
  }
637
788
  ]
638
789
  },
790
+ {
791
+ "kind": "javascript-module",
792
+ "path": "src/vscode-badge/vscode-badge.styles.ts",
793
+ "declarations": [
794
+ {
795
+ "kind": "variable",
796
+ "name": "styles",
797
+ "type": {
798
+ "text": "CSSResultGroup"
799
+ },
800
+ "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; } `, ]"
801
+ }
802
+ ],
803
+ "exports": [
804
+ {
805
+ "kind": "js",
806
+ "name": "default",
807
+ "declaration": {
808
+ "name": "styles",
809
+ "module": "src/vscode-badge/vscode-badge.styles.ts"
810
+ }
811
+ }
812
+ ]
813
+ },
814
+ {
815
+ "kind": "javascript-module",
816
+ "path": "src/vscode-badge/vscode-badge.ts",
817
+ "declarations": [
818
+ {
819
+ "kind": "class",
820
+ "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.",
821
+ "name": "VscodeBadge",
822
+ "cssProperties": [
823
+ {
824
+ "description": "A sans-serif font type depends on the host OS.",
825
+ "name": "--vscode-font-family",
826
+ "default": "sans-serif"
827
+ },
828
+ {
829
+ "name": "--vscode-contrastBorder",
830
+ "default": "transparent"
831
+ },
832
+ {
833
+ "description": "default and counter variant background color",
834
+ "name": "--vscode-badge-background",
835
+ "default": "#616161"
836
+ },
837
+ {
838
+ "description": "default and counter variant foreground color",
839
+ "name": "--vscode-badge-foreground",
840
+ "default": "#f8f8f8"
841
+ },
842
+ {
843
+ "description": "activity bar variant background color",
844
+ "name": "--vscode-activityBarBadge-background",
845
+ "default": "#0078d4"
846
+ },
847
+ {
848
+ "description": "activity bar variant foreground color",
849
+ "name": "--vscode-activityBarBadge-foreground",
850
+ "default": "#ffffff"
851
+ }
852
+ ],
853
+ "members": [
854
+ {
855
+ "kind": "field",
856
+ "name": "variant",
857
+ "type": {
858
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
859
+ },
860
+ "default": "'default'",
861
+ "attribute": "variant",
862
+ "reflects": true
863
+ },
864
+ {
865
+ "kind": "field",
866
+ "name": "version",
867
+ "type": {
868
+ "text": "string"
869
+ },
870
+ "description": "VSCode Elements version",
871
+ "readonly": true,
872
+ "inheritedFrom": {
873
+ "name": "VscElement",
874
+ "module": "src/includes/VscElement.ts"
875
+ }
876
+ },
877
+ {
878
+ "kind": "method",
879
+ "name": "warn",
880
+ "parameters": [
881
+ {
882
+ "name": "message",
883
+ "type": {
884
+ "text": "string"
885
+ }
886
+ }
887
+ ],
888
+ "inheritedFrom": {
889
+ "name": "VscElement",
890
+ "module": "src/includes/VscElement.ts"
891
+ }
892
+ }
893
+ ],
894
+ "attributes": [
895
+ {
896
+ "name": "variant",
897
+ "type": {
898
+ "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
899
+ },
900
+ "default": "'default'",
901
+ "fieldName": "variant"
902
+ }
903
+ ],
904
+ "superclass": {
905
+ "name": "VscElement",
906
+ "module": "/src/includes/VscElement.js"
907
+ },
908
+ "tagName": "vscode-badge",
909
+ "customElement": true
910
+ }
911
+ ],
912
+ "exports": [
913
+ {
914
+ "kind": "js",
915
+ "name": "VscodeBadge",
916
+ "declaration": {
917
+ "name": "VscodeBadge",
918
+ "module": "src/vscode-badge/vscode-badge.ts"
919
+ }
920
+ },
921
+ {
922
+ "kind": "custom-element-definition",
923
+ "name": "vscode-badge",
924
+ "declaration": {
925
+ "name": "VscodeBadge",
926
+ "module": "src/vscode-badge/vscode-badge.ts"
927
+ }
928
+ }
929
+ ]
930
+ },
639
931
  {
640
932
  "kind": "javascript-module",
641
933
  "path": "src/vscode-button/vscode-button.styles.ts",
@@ -646,7 +938,7 @@
646
938
  "type": {
647
939
  "text": "CSSResultGroup"
648
940
  },
649
- "default": "[ defaultStyles, css` :host { cursor: pointer; display: inline-block; width: auto; } :host([block]) { display: block; width: 100%; } .base { align-items: center; background-color: var(--vscode-button-background, #0078d4); border-bottom-left-radius: var(--vsc-border-left-radius, 2px); border-bottom-right-radius: var(--vsc-border-right-radius, 2px); border-bottom-width: 1px; border-color: var(--vscode-button-border, transparent); border-left-width: var(--vsc-border-left-width, 1px); border-right-width: var(--vsc-border-right-width, 1px); border-style: solid; border-top-left-radius: var(--vsc-border-left-radius, 2px); border-top-right-radius: var(--vsc-border-right-radius, 2px); border-top-width: 1px; box-sizing: border-box; color: var(--vscode-button-foreground, #ffffff); display: flex; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 100%; justify-content: center; line-height: 22px; overflow: hidden; padding: 1px calc(13px + var(--vsc-base-additional-right-padding, 0px)) 1px 13px; position: relative; user-select: none; white-space: nowrap; width: 100%; } :host([block]) .base { min-height: 28px; text-align: center; width: 100%; } .base:after { background-color: var( --vscode-button-separator, rgba(255, 255, 255, 0.4) ); content: var(--vsc-base-after-content); display: var(--vsc-divider-display, none); position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; } :host([secondary]) .base:after { background-color: var(--vscode-button-secondaryForeground, #cccccc); opacity: 0.4; } :host([secondary]) .base { color: var(--vscode-button-secondaryForeground, #cccccc); background-color: var(--vscode-button-secondaryBackground, #313131); border-color: var( --vscode-button-border, var(--vscode-button-secondaryBackground, rgba(255, 255, 255, 0.07)) ); } :host([disabled]) { cursor: default; opacity: 0.4; pointer-events: none; } :host(:hover) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); } :host([disabled]:hover) .base { background-color: var(--vscode-button-background, #0078d4); } :host([secondary]:hover) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:hover) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } :host(:focus), :host(:active) { outline: none; } :host(:focus) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); outline: 1px solid var(--vscode-focusBorder, #0078d4); outline-offset: 2px; } :host([disabled]:focus) .base { background-color: var(--vscode-button-background, #0078d4); outline: 0; } :host([secondary]:focus) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:focus) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } ::slotted(*) { display: inline-block; margin-left: 4px; margin-right: 4px; } ::slotted(*:first-child) { margin-left: 0; } ::slotted(*:last-child) { margin-right: 0; } ::slotted(vscode-icon) { color: inherit; } .content { display: flex; position: relative; width: 100%; height: 100%; padding: 1px 13px; } :host(:empty) .base, .base.icon-only { min-height: 24px; min-width: 26px; padding: 1px 4px; } slot { align-items: center; display: flex; height: 100%; } .has-content-before slot[name='content-before'] { margin-right: 4px; } .has-content-after slot[name='content-after'] { margin-left: 4px; } .icon, .icon-after { color: inherit; display: block; } :host(:not(:empty)) .icon { margin-right: 3px; } :host(:not(:empty)) .icon-after, :host([icon]) .icon-after { margin-left: 3px; } `, ]"
941
+ "default": "[ defaultStyles, css` :host { cursor: pointer; display: inline-block; width: auto; } :host([block]) { display: block; width: 100%; } .base { align-items: center; background-color: var(--vscode-button-background, #0078d4); border-bottom-left-radius: var(--vsc-border-left-radius, 4px); border-bottom-right-radius: var(--vsc-border-right-radius, 4px); border-bottom-width: 1px; border-color: var(--vscode-button-border, transparent); border-left-width: var(--vsc-border-left-width, 1px); border-right-width: var(--vsc-border-right-width, 1px); border-style: solid; border-top-left-radius: var(--vsc-border-left-radius, 4px); border-top-right-radius: var(--vsc-border-right-radius, 4px); border-top-width: 1px; box-sizing: border-box; color: var(--vscode-button-foreground, #ffffff); display: flex; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 100%; justify-content: center; line-height: 22px; overflow: hidden; padding: 1px calc(13px + var(--vsc-base-additional-right-padding, 0px)) 1px 13px; position: relative; user-select: none; white-space: nowrap; width: 100%; } :host([block]) .base { min-height: 28px; text-align: center; width: 100%; } .base:after { background-color: var( --vscode-button-separator, rgba(255, 255, 255, 0.4) ); content: var(--vsc-base-after-content); display: var(--vsc-divider-display, none); position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; } :host([secondary]) .base:after { background-color: var(--vscode-button-secondaryForeground, #cccccc); opacity: 0.4; } :host([secondary]) .base { color: var(--vscode-button-secondaryForeground, #cccccc); background-color: var(--vscode-button-secondaryBackground, #313131); border-color: var( --vscode-button-border, var(--vscode-button-secondaryBackground, rgba(255, 255, 255, 0.07)) ); } :host([disabled]) { cursor: default; opacity: 0.4; pointer-events: none; } :host(:hover) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); } :host([disabled]:hover) .base { background-color: var(--vscode-button-background, #0078d4); } :host([secondary]:hover) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:hover) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } :host(:focus), :host(:active) { outline: none; } :host(:focus) .base { background-color: var(--vscode-button-hoverBackground, #026ec1); outline: 1px solid var(--vscode-focusBorder, #0078d4); outline-offset: 2px; } :host([disabled]:focus) .base { background-color: var(--vscode-button-background, #0078d4); outline: 0; } :host([secondary]:focus) .base { background-color: var(--vscode-button-secondaryHoverBackground, #3c3c3c); } :host([secondary][disabled]:focus) .base { background-color: var(--vscode-button-secondaryBackground, #313131); } ::slotted(*) { display: inline-block; margin-left: 4px; margin-right: 4px; } ::slotted(*:first-child) { margin-left: 0; } ::slotted(*:last-child) { margin-right: 0; } ::slotted(vscode-icon) { color: inherit; } .content { display: flex; position: relative; width: 100%; height: 100%; padding: 1px 13px; } :host(:empty) .base, .base.icon-only { min-height: 24px; min-width: 26px; padding: 1px 4px; } slot { align-items: center; display: flex; height: 100%; } .has-content-before slot[name='content-before'] { margin-right: 4px; } .has-content-after slot[name='content-after'] { margin-left: 4px; } .icon, .icon-after { color: inherit; display: block; } :host(:not(:empty)) .icon { margin-right: 3px; } :host(:not(:empty)) .icon-after, :host([icon]) .icon-after { margin-left: 3px; } `, ]"
650
942
  }
651
943
  ],
652
944
  "exports": [
@@ -1121,189 +1413,48 @@
1121
1413
  "text": "boolean"
1122
1414
  },
1123
1415
  "default": "false",
1124
- "fieldName": "iconOnly"
1125
- },
1126
- {
1127
- "name": "type",
1128
- "type": {
1129
- "text": "'submit' | 'reset' | 'button'"
1130
- },
1131
- "default": "'button'",
1132
- "fieldName": "type"
1133
- },
1134
- {
1135
- "name": "value",
1136
- "type": {
1137
- "text": "string"
1138
- },
1139
- "default": "''",
1140
- "fieldName": "value"
1141
- }
1142
- ],
1143
- "superclass": {
1144
- "name": "VscElement",
1145
- "module": "/src/includes/VscElement.js"
1146
- },
1147
- "tagName": "vscode-button",
1148
- "customElement": true
1149
- }
1150
- ],
1151
- "exports": [
1152
- {
1153
- "kind": "js",
1154
- "name": "VscodeButton",
1155
- "declaration": {
1156
- "name": "VscodeButton",
1157
- "module": "src/vscode-button/vscode-button.ts"
1158
- }
1159
- },
1160
- {
1161
- "kind": "custom-element-definition",
1162
- "name": "vscode-button",
1163
- "declaration": {
1164
- "name": "VscodeButton",
1165
- "module": "src/vscode-button/vscode-button.ts"
1166
- }
1167
- }
1168
- ]
1169
- },
1170
- {
1171
- "kind": "javascript-module",
1172
- "path": "src/vscode-badge/vscode-badge.styles.ts",
1173
- "declarations": [
1174
- {
1175
- "kind": "variable",
1176
- "name": "styles",
1177
- "type": {
1178
- "text": "CSSResultGroup"
1179
- },
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; } `, ]"
1181
- }
1182
- ],
1183
- "exports": [
1184
- {
1185
- "kind": "js",
1186
- "name": "default",
1187
- "declaration": {
1188
- "name": "styles",
1189
- "module": "src/vscode-badge/vscode-badge.styles.ts"
1190
- }
1191
- }
1192
- ]
1193
- },
1194
- {
1195
- "kind": "javascript-module",
1196
- "path": "src/vscode-badge/vscode-badge.ts",
1197
- "declarations": [
1198
- {
1199
- "kind": "class",
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",
1202
- "cssProperties": [
1203
- {
1204
- "description": "A sans-serif font type depends on the host OS.",
1205
- "name": "--vscode-font-family",
1206
- "default": "sans-serif"
1207
- },
1208
- {
1209
- "name": "--vscode-contrastBorder",
1210
- "default": "transparent"
1211
- },
1212
- {
1213
- "description": "default and counter variant background color",
1214
- "name": "--vscode-badge-background",
1215
- "default": "#616161"
1216
- },
1217
- {
1218
- "description": "default and counter variant foreground color",
1219
- "name": "--vscode-badge-foreground",
1220
- "default": "#f8f8f8"
1221
- },
1222
- {
1223
- "description": "activity bar variant background color",
1224
- "name": "--vscode-activityBarBadge-background",
1225
- "default": "#0078d4"
1226
- },
1227
- {
1228
- "description": "activity bar variant foreground color",
1229
- "name": "--vscode-activityBarBadge-foreground",
1230
- "default": "#ffffff"
1231
- }
1232
- ],
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
1416
+ "fieldName": "iconOnly"
1243
1417
  },
1244
1418
  {
1245
- "kind": "field",
1246
- "name": "version",
1419
+ "name": "type",
1247
1420
  "type": {
1248
- "text": "string"
1421
+ "text": "'submit' | 'reset' | 'button'"
1249
1422
  },
1250
- "description": "VSCode Elements version",
1251
- "readonly": true,
1252
- "inheritedFrom": {
1253
- "name": "VscElement",
1254
- "module": "src/includes/VscElement.ts"
1255
- }
1423
+ "default": "'button'",
1424
+ "fieldName": "type"
1256
1425
  },
1257
1426
  {
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",
1427
+ "name": "value",
1277
1428
  "type": {
1278
- "text": "| 'default'\n | 'counter'\n | 'activity-bar-counter'\n | 'tab-header-counter'"
1429
+ "text": "string"
1279
1430
  },
1280
- "default": "'default'",
1281
- "fieldName": "variant"
1431
+ "default": "''",
1432
+ "fieldName": "value"
1282
1433
  }
1283
1434
  ],
1284
1435
  "superclass": {
1285
1436
  "name": "VscElement",
1286
1437
  "module": "/src/includes/VscElement.js"
1287
1438
  },
1288
- "tagName": "vscode-badge",
1439
+ "tagName": "vscode-button",
1289
1440
  "customElement": true
1290
1441
  }
1291
1442
  ],
1292
1443
  "exports": [
1293
1444
  {
1294
1445
  "kind": "js",
1295
- "name": "VscodeBadge",
1446
+ "name": "VscodeButton",
1296
1447
  "declaration": {
1297
- "name": "VscodeBadge",
1298
- "module": "src/vscode-badge/vscode-badge.ts"
1448
+ "name": "VscodeButton",
1449
+ "module": "src/vscode-button/vscode-button.ts"
1299
1450
  }
1300
1451
  },
1301
1452
  {
1302
1453
  "kind": "custom-element-definition",
1303
- "name": "vscode-badge",
1454
+ "name": "vscode-button",
1304
1455
  "declaration": {
1305
- "name": "VscodeBadge",
1306
- "module": "src/vscode-badge/vscode-badge.ts"
1456
+ "name": "VscodeButton",
1457
+ "module": "src/vscode-button/vscode-button.ts"
1307
1458
  }
1308
1459
  }
1309
1460
  ]
@@ -2298,7 +2449,7 @@
2298
2449
  },
2299
2450
  {
2300
2451
  "kind": "method",
2301
- "name": "_onActionClick",
2452
+ "name": "_onHeaderSlotClick",
2302
2453
  "privacy": "private",
2303
2454
  "parameters": [
2304
2455
  {
@@ -3721,253 +3872,56 @@
3721
3872
  "fieldName": "size"
3722
3873
  },
3723
3874
  {
3724
- "name": "spin",
3725
- "type": {
3726
- "text": "boolean"
3727
- },
3728
- "default": "false",
3729
- "description": "Enable rotation animation",
3730
- "fieldName": "spin"
3731
- },
3732
- {
3733
- "name": "spin-duration",
3734
- "type": {
3735
- "text": "number"
3736
- },
3737
- "default": "1.5",
3738
- "description": "Animation duration in seconds",
3739
- "fieldName": "spinDuration"
3740
- },
3741
- {
3742
- "name": "action-icon",
3743
- "type": {
3744
- "text": "boolean"
3745
- },
3746
- "default": "false",
3747
- "description": "Behaves like a button",
3748
- "fieldName": "actionIcon"
3749
- }
3750
- ],
3751
- "superclass": {
3752
- "name": "VscElement",
3753
- "module": "/src/includes/VscElement.js"
3754
- },
3755
- "tagName": "vscode-icon",
3756
- "customElement": true
3757
- }
3758
- ],
3759
- "exports": [
3760
- {
3761
- "kind": "js",
3762
- "name": "VscodeIcon",
3763
- "declaration": {
3764
- "name": "VscodeIcon",
3765
- "module": "src/vscode-icon/vscode-icon.ts"
3766
- }
3767
- },
3768
- {
3769
- "kind": "custom-element-definition",
3770
- "name": "vscode-icon",
3771
- "declaration": {
3772
- "name": "VscodeIcon",
3773
- "module": "src/vscode-icon/vscode-icon.ts"
3774
- }
3775
- }
3776
- ]
3777
- },
3778
- {
3779
- "kind": "javascript-module",
3780
- "path": "src/vscode-label/vscode-label.styles.ts",
3781
- "declarations": [
3782
- {
3783
- "kind": "variable",
3784
- "name": "styles",
3785
- "type": {
3786
- "text": "CSSResultGroup"
3787
- },
3788
- "default": "[ defaultStyles, css` :host { display: block; } .wrapper { color: var(--vscode-foreground, #cccccc); cursor: default; display: block; font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: 600; line-height: ${INPUT_LINE_HEIGHT_RATIO}; padding: 5px 0; } .wrapper.required:after { content: ' *'; } ::slotted(.normal) { font-weight: normal; } ::slotted(.lightened) { color: var(--vscode-foreground, #cccccc); opacity: 0.9; } `, ]"
3789
- }
3790
- ],
3791
- "exports": [
3792
- {
3793
- "kind": "js",
3794
- "name": "default",
3795
- "declaration": {
3796
- "name": "styles",
3797
- "module": "src/vscode-label/vscode-label.styles.ts"
3798
- }
3799
- }
3800
- ]
3801
- },
3802
- {
3803
- "kind": "javascript-module",
3804
- "path": "src/vscode-label/vscode-label.ts",
3805
- "declarations": [
3806
- {
3807
- "kind": "class",
3808
- "description": "",
3809
- "name": "VscodeLabel",
3810
- "cssProperties": [
3811
- {
3812
- "name": "--vscode-font-family",
3813
- "default": "sans-serif"
3814
- },
3815
- {
3816
- "name": "--vscode-font-size",
3817
- "default": "13px"
3818
- },
3819
- {
3820
- "name": "--vscode-foreground",
3821
- "default": "#cccccc"
3822
- }
3823
- ],
3824
- "members": [
3825
- {
3826
- "kind": "field",
3827
- "name": "htmlFor",
3828
- "type": {
3829
- "text": "string"
3830
- },
3831
- "attribute": "for",
3832
- "reflects": true
3833
- },
3834
- {
3835
- "kind": "field",
3836
- "name": "id",
3837
- "type": {
3838
- "text": "string"
3839
- },
3840
- "attribute": "id"
3841
- },
3842
- {
3843
- "kind": "field",
3844
- "name": "required",
3845
- "type": {
3846
- "text": "boolean"
3847
- },
3848
- "default": "false",
3849
- "attribute": "required",
3850
- "reflects": true
3851
- },
3852
- {
3853
- "kind": "field",
3854
- "name": "_id",
3855
- "type": {
3856
- "text": "string"
3857
- },
3858
- "privacy": "private",
3859
- "default": "''"
3860
- },
3861
- {
3862
- "kind": "field",
3863
- "name": "_htmlFor",
3864
- "type": {
3865
- "text": "string"
3866
- },
3867
- "privacy": "private",
3868
- "default": "''"
3869
- },
3870
- {
3871
- "kind": "field",
3872
- "name": "_connected",
3873
- "type": {
3874
- "text": "boolean"
3875
- },
3876
- "privacy": "private",
3877
- "default": "false"
3878
- },
3879
- {
3880
- "kind": "method",
3881
- "name": "_getTarget",
3882
- "privacy": "private"
3883
- },
3884
- {
3885
- "kind": "method",
3886
- "name": "_connectWithTarget",
3887
- "privacy": "private"
3888
- },
3889
- {
3890
- "kind": "method",
3891
- "name": "_handleClick",
3892
- "privacy": "private"
3893
- },
3894
- {
3895
- "kind": "field",
3896
- "name": "version",
3897
- "type": {
3898
- "text": "string"
3899
- },
3900
- "description": "VSCode Elements version",
3901
- "readonly": true,
3902
- "inheritedFrom": {
3903
- "name": "VscElement",
3904
- "module": "src/includes/VscElement.ts"
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
- }
3922
- }
3923
- ],
3924
- "attributes": [
3925
- {
3926
- "name": "for",
3875
+ "name": "spin",
3927
3876
  "type": {
3928
- "text": "string"
3877
+ "text": "boolean"
3929
3878
  },
3930
- "fieldName": "htmlFor"
3879
+ "default": "false",
3880
+ "description": "Enable rotation animation",
3881
+ "fieldName": "spin"
3931
3882
  },
3932
3883
  {
3933
- "name": "id",
3884
+ "name": "spin-duration",
3934
3885
  "type": {
3935
- "text": "string"
3886
+ "text": "number"
3936
3887
  },
3937
- "fieldName": "id"
3888
+ "default": "1.5",
3889
+ "description": "Animation duration in seconds",
3890
+ "fieldName": "spinDuration"
3938
3891
  },
3939
3892
  {
3940
- "name": "required",
3893
+ "name": "action-icon",
3941
3894
  "type": {
3942
3895
  "text": "boolean"
3943
3896
  },
3944
3897
  "default": "false",
3945
- "fieldName": "required"
3898
+ "description": "Behaves like a button",
3899
+ "fieldName": "actionIcon"
3946
3900
  }
3947
3901
  ],
3948
3902
  "superclass": {
3949
3903
  "name": "VscElement",
3950
3904
  "module": "/src/includes/VscElement.js"
3951
3905
  },
3952
- "tagName": "vscode-label",
3906
+ "tagName": "vscode-icon",
3953
3907
  "customElement": true
3954
3908
  }
3955
3909
  ],
3956
3910
  "exports": [
3957
3911
  {
3958
3912
  "kind": "js",
3959
- "name": "VscodeLabel",
3913
+ "name": "VscodeIcon",
3960
3914
  "declaration": {
3961
- "name": "VscodeLabel",
3962
- "module": "src/vscode-label/vscode-label.ts"
3915
+ "name": "VscodeIcon",
3916
+ "module": "src/vscode-icon/vscode-icon.ts"
3963
3917
  }
3964
3918
  },
3965
3919
  {
3966
3920
  "kind": "custom-element-definition",
3967
- "name": "vscode-label",
3921
+ "name": "vscode-icon",
3968
3922
  "declaration": {
3969
- "name": "VscodeLabel",
3970
- "module": "src/vscode-label/vscode-label.ts"
3923
+ "name": "VscodeIcon",
3924
+ "module": "src/vscode-icon/vscode-icon.ts"
3971
3925
  }
3972
3926
  }
3973
3927
  ]
@@ -5669,101 +5623,311 @@
5669
5623
  {
5670
5624
  "kind": "class",
5671
5625
  "description": "",
5672
- "name": "VscodeProgressBar",
5626
+ "name": "VscodeProgressBar",
5627
+ "cssProperties": [
5628
+ {
5629
+ "name": "--vscode-progressBar-background",
5630
+ "default": "#0078d4"
5631
+ }
5632
+ ],
5633
+ "members": [
5634
+ {
5635
+ "kind": "field",
5636
+ "name": "value",
5637
+ "type": {
5638
+ "text": "number | undefined"
5639
+ },
5640
+ "description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
5641
+ "attribute": "value",
5642
+ "reflects": true
5643
+ },
5644
+ {
5645
+ "kind": "field",
5646
+ "name": "max",
5647
+ "type": {
5648
+ "text": "number"
5649
+ },
5650
+ "default": "100",
5651
+ "description": "Maximum value for determinate mode.",
5652
+ "attribute": "max",
5653
+ "reflects": true
5654
+ },
5655
+ {
5656
+ "kind": "field",
5657
+ "name": "indeterminate",
5658
+ "type": {
5659
+ "text": "boolean"
5660
+ },
5661
+ "default": "false",
5662
+ "description": "Force indeterminate mode even if value is set.",
5663
+ "attribute": "indeterminate",
5664
+ "reflects": true
5665
+ },
5666
+ {
5667
+ "kind": "field",
5668
+ "name": "longRunningThreshold",
5669
+ "type": {
5670
+ "text": "number"
5671
+ },
5672
+ "default": "15000",
5673
+ "description": "Switch to a gentler animation after this many ms in indeterminate mode.",
5674
+ "attribute": "long-running-threshold"
5675
+ },
5676
+ {
5677
+ "kind": "field",
5678
+ "name": "_longRunning",
5679
+ "type": {
5680
+ "text": "boolean"
5681
+ },
5682
+ "privacy": "private",
5683
+ "default": "false"
5684
+ },
5685
+ {
5686
+ "kind": "field",
5687
+ "name": "_longRunningHandle",
5688
+ "type": {
5689
+ "text": "ReturnType<typeof setTimeout> | undefined"
5690
+ },
5691
+ "privacy": "private"
5692
+ },
5693
+ {
5694
+ "kind": "field",
5695
+ "name": "_isDeterminate",
5696
+ "type": {
5697
+ "text": "boolean"
5698
+ },
5699
+ "privacy": "private",
5700
+ "readonly": true
5701
+ },
5702
+ {
5703
+ "kind": "method",
5704
+ "name": "_maybeStartLongRunningTimer",
5705
+ "privacy": "private",
5706
+ "return": {
5707
+ "type": {
5708
+ "text": "void"
5709
+ }
5710
+ }
5711
+ },
5712
+ {
5713
+ "kind": "method",
5714
+ "name": "_clearLongRunningTimer",
5715
+ "privacy": "private",
5716
+ "return": {
5717
+ "type": {
5718
+ "text": "void"
5719
+ }
5720
+ }
5721
+ },
5722
+ {
5723
+ "kind": "field",
5724
+ "name": "version",
5725
+ "type": {
5726
+ "text": "string"
5727
+ },
5728
+ "description": "VSCode Elements version",
5729
+ "readonly": true,
5730
+ "inheritedFrom": {
5731
+ "name": "VscElement",
5732
+ "module": "src/includes/VscElement.ts"
5733
+ }
5734
+ },
5735
+ {
5736
+ "kind": "method",
5737
+ "name": "warn",
5738
+ "parameters": [
5739
+ {
5740
+ "name": "message",
5741
+ "type": {
5742
+ "text": "string"
5743
+ }
5744
+ }
5745
+ ],
5746
+ "inheritedFrom": {
5747
+ "name": "VscElement",
5748
+ "module": "src/includes/VscElement.ts"
5749
+ }
5750
+ }
5751
+ ],
5752
+ "attributes": [
5753
+ {
5754
+ "name": "value",
5755
+ "type": {
5756
+ "text": "number | undefined"
5757
+ },
5758
+ "description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
5759
+ "fieldName": "value"
5760
+ },
5761
+ {
5762
+ "name": "max",
5763
+ "type": {
5764
+ "text": "number"
5765
+ },
5766
+ "default": "100",
5767
+ "description": "Maximum value for determinate mode.",
5768
+ "fieldName": "max"
5769
+ },
5770
+ {
5771
+ "name": "indeterminate",
5772
+ "type": {
5773
+ "text": "boolean"
5774
+ },
5775
+ "default": "false",
5776
+ "description": "Force indeterminate mode even if value is set.",
5777
+ "fieldName": "indeterminate"
5778
+ },
5779
+ {
5780
+ "name": "long-running-threshold",
5781
+ "type": {
5782
+ "text": "number"
5783
+ },
5784
+ "default": "15000",
5785
+ "description": "Switch to a gentler animation after this many ms in indeterminate mode.",
5786
+ "fieldName": "longRunningThreshold"
5787
+ }
5788
+ ],
5789
+ "superclass": {
5790
+ "name": "VscElement",
5791
+ "module": "/src/includes/VscElement.js"
5792
+ },
5793
+ "tagName": "vscode-progress-bar",
5794
+ "customElement": true
5795
+ }
5796
+ ],
5797
+ "exports": [
5798
+ {
5799
+ "kind": "js",
5800
+ "name": "VscodeProgressBar",
5801
+ "declaration": {
5802
+ "name": "VscodeProgressBar",
5803
+ "module": "src/vscode-progress-bar/vscode-progress-bar.ts"
5804
+ }
5805
+ },
5806
+ {
5807
+ "kind": "custom-element-definition",
5808
+ "name": "vscode-progress-bar",
5809
+ "declaration": {
5810
+ "name": "VscodeProgressBar",
5811
+ "module": "src/vscode-progress-bar/vscode-progress-bar.ts"
5812
+ }
5813
+ }
5814
+ ]
5815
+ },
5816
+ {
5817
+ "kind": "javascript-module",
5818
+ "path": "src/vscode-label/vscode-label.styles.ts",
5819
+ "declarations": [
5820
+ {
5821
+ "kind": "variable",
5822
+ "name": "styles",
5823
+ "type": {
5824
+ "text": "CSSResultGroup"
5825
+ },
5826
+ "default": "[ defaultStyles, css` :host { display: block; } .wrapper { color: var(--vscode-foreground, #cccccc); cursor: default; display: block; font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: 600; line-height: ${INPUT_LINE_HEIGHT_RATIO}; padding: 5px 0; } .wrapper.required:after { content: ' *'; } ::slotted(.normal) { font-weight: normal; } ::slotted(.lightened) { color: var(--vscode-foreground, #cccccc); opacity: 0.9; } `, ]"
5827
+ }
5828
+ ],
5829
+ "exports": [
5830
+ {
5831
+ "kind": "js",
5832
+ "name": "default",
5833
+ "declaration": {
5834
+ "name": "styles",
5835
+ "module": "src/vscode-label/vscode-label.styles.ts"
5836
+ }
5837
+ }
5838
+ ]
5839
+ },
5840
+ {
5841
+ "kind": "javascript-module",
5842
+ "path": "src/vscode-label/vscode-label.ts",
5843
+ "declarations": [
5844
+ {
5845
+ "kind": "class",
5846
+ "description": "",
5847
+ "name": "VscodeLabel",
5673
5848
  "cssProperties": [
5674
5849
  {
5675
- "name": "--vscode-progressBar-background",
5676
- "default": "#0078d4"
5850
+ "name": "--vscode-font-family",
5851
+ "default": "sans-serif"
5852
+ },
5853
+ {
5854
+ "name": "--vscode-font-size",
5855
+ "default": "13px"
5856
+ },
5857
+ {
5858
+ "name": "--vscode-foreground",
5859
+ "default": "#cccccc"
5677
5860
  }
5678
5861
  ],
5679
5862
  "members": [
5680
5863
  {
5681
5864
  "kind": "field",
5682
- "name": "value",
5865
+ "name": "htmlFor",
5683
5866
  "type": {
5684
- "text": "number | undefined"
5867
+ "text": "string"
5685
5868
  },
5686
- "description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
5687
- "attribute": "value",
5869
+ "attribute": "for",
5688
5870
  "reflects": true
5689
5871
  },
5690
5872
  {
5691
5873
  "kind": "field",
5692
- "name": "max",
5874
+ "name": "id",
5693
5875
  "type": {
5694
- "text": "number"
5876
+ "text": "string"
5695
5877
  },
5696
- "default": "100",
5697
- "description": "Maximum value for determinate mode.",
5698
- "attribute": "max",
5699
- "reflects": true
5878
+ "attribute": "id"
5700
5879
  },
5701
5880
  {
5702
5881
  "kind": "field",
5703
- "name": "indeterminate",
5882
+ "name": "required",
5704
5883
  "type": {
5705
5884
  "text": "boolean"
5706
5885
  },
5707
5886
  "default": "false",
5708
- "description": "Force indeterminate mode even if value is set.",
5709
- "attribute": "indeterminate",
5887
+ "attribute": "required",
5710
5888
  "reflects": true
5711
5889
  },
5712
5890
  {
5713
5891
  "kind": "field",
5714
- "name": "longRunningThreshold",
5715
- "type": {
5716
- "text": "number"
5717
- },
5718
- "default": "15000",
5719
- "description": "Switch to a gentler animation after this many ms in indeterminate mode.",
5720
- "attribute": "long-running-threshold"
5721
- },
5722
- {
5723
- "kind": "field",
5724
- "name": "_longRunning",
5892
+ "name": "_id",
5725
5893
  "type": {
5726
- "text": "boolean"
5894
+ "text": "string"
5727
5895
  },
5728
5896
  "privacy": "private",
5729
- "default": "false"
5897
+ "default": "''"
5730
5898
  },
5731
5899
  {
5732
5900
  "kind": "field",
5733
- "name": "_longRunningHandle",
5901
+ "name": "_htmlFor",
5734
5902
  "type": {
5735
- "text": "ReturnType<typeof setTimeout> | undefined"
5903
+ "text": "string"
5736
5904
  },
5737
- "privacy": "private"
5905
+ "privacy": "private",
5906
+ "default": "''"
5738
5907
  },
5739
5908
  {
5740
5909
  "kind": "field",
5741
- "name": "_isDeterminate",
5910
+ "name": "_connected",
5742
5911
  "type": {
5743
5912
  "text": "boolean"
5744
5913
  },
5745
5914
  "privacy": "private",
5746
- "readonly": true
5915
+ "default": "false"
5747
5916
  },
5748
5917
  {
5749
5918
  "kind": "method",
5750
- "name": "_maybeStartLongRunningTimer",
5751
- "privacy": "private",
5752
- "return": {
5753
- "type": {
5754
- "text": "void"
5755
- }
5756
- }
5919
+ "name": "_getTarget",
5920
+ "privacy": "private"
5757
5921
  },
5758
5922
  {
5759
5923
  "kind": "method",
5760
- "name": "_clearLongRunningTimer",
5761
- "privacy": "private",
5762
- "return": {
5763
- "type": {
5764
- "text": "void"
5765
- }
5766
- }
5924
+ "name": "_connectWithTarget",
5925
+ "privacy": "private"
5926
+ },
5927
+ {
5928
+ "kind": "method",
5929
+ "name": "_handleClick",
5930
+ "privacy": "private"
5767
5931
  },
5768
5932
  {
5769
5933
  "kind": "field",
@@ -5797,64 +5961,51 @@
5797
5961
  ],
5798
5962
  "attributes": [
5799
5963
  {
5800
- "name": "value",
5964
+ "name": "for",
5801
5965
  "type": {
5802
- "text": "number | undefined"
5966
+ "text": "string"
5803
5967
  },
5804
- "description": "Current value for determinate mode. If undefined/NaN, the bar is indeterminate.",
5805
- "fieldName": "value"
5968
+ "fieldName": "htmlFor"
5806
5969
  },
5807
5970
  {
5808
- "name": "max",
5971
+ "name": "id",
5809
5972
  "type": {
5810
- "text": "number"
5973
+ "text": "string"
5811
5974
  },
5812
- "default": "100",
5813
- "description": "Maximum value for determinate mode.",
5814
- "fieldName": "max"
5975
+ "fieldName": "id"
5815
5976
  },
5816
5977
  {
5817
- "name": "indeterminate",
5978
+ "name": "required",
5818
5979
  "type": {
5819
5980
  "text": "boolean"
5820
5981
  },
5821
5982
  "default": "false",
5822
- "description": "Force indeterminate mode even if value is set.",
5823
- "fieldName": "indeterminate"
5824
- },
5825
- {
5826
- "name": "long-running-threshold",
5827
- "type": {
5828
- "text": "number"
5829
- },
5830
- "default": "15000",
5831
- "description": "Switch to a gentler animation after this many ms in indeterminate mode.",
5832
- "fieldName": "longRunningThreshold"
5983
+ "fieldName": "required"
5833
5984
  }
5834
5985
  ],
5835
5986
  "superclass": {
5836
5987
  "name": "VscElement",
5837
5988
  "module": "/src/includes/VscElement.js"
5838
5989
  },
5839
- "tagName": "vscode-progress-bar",
5990
+ "tagName": "vscode-label",
5840
5991
  "customElement": true
5841
5992
  }
5842
5993
  ],
5843
5994
  "exports": [
5844
5995
  {
5845
5996
  "kind": "js",
5846
- "name": "VscodeProgressBar",
5997
+ "name": "VscodeLabel",
5847
5998
  "declaration": {
5848
- "name": "VscodeProgressBar",
5849
- "module": "src/vscode-progress-bar/vscode-progress-bar.ts"
5999
+ "name": "VscodeLabel",
6000
+ "module": "src/vscode-label/vscode-label.ts"
5850
6001
  }
5851
6002
  },
5852
6003
  {
5853
6004
  "kind": "custom-element-definition",
5854
- "name": "vscode-progress-bar",
6005
+ "name": "vscode-label",
5855
6006
  "declaration": {
5856
- "name": "VscodeProgressBar",
5857
- "module": "src/vscode-progress-bar/vscode-progress-bar.ts"
6007
+ "name": "VscodeLabel",
6008
+ "module": "src/vscode-label/vscode-label.ts"
5858
6009
  }
5859
6010
  }
5860
6011
  ]
@@ -9757,8 +9908,9 @@
9757
9908
  },
9758
9909
  {
9759
9910
  "kind": "field",
9760
- "name": "_minColumnWidth",
9761
- "privacy": "private"
9911
+ "name": "_columnMinWidths",
9912
+ "privacy": "private",
9913
+ "default": "new Map<number, Percent>()"
9762
9914
  },
9763
9915
  {
9764
9916
  "kind": "field",
@@ -9821,6 +9973,11 @@
9821
9973
  "name": "columnWidths",
9822
9974
  "readonly": true
9823
9975
  },
9976
+ {
9977
+ "kind": "field",
9978
+ "name": "columnMinWidths",
9979
+ "readonly": true
9980
+ },
9824
9981
  {
9825
9982
  "kind": "method",
9826
9983
  "name": "saveHostDimensions"
@@ -9843,10 +10000,16 @@
9843
10000
  },
9844
10001
  {
9845
10002
  "kind": "method",
9846
- "name": "setMinColumnWidth",
10003
+ "name": "setColumnMinWidthAt",
9847
10004
  "parameters": [
9848
10005
  {
9849
- "name": "width",
10006
+ "name": "colIndex",
10007
+ "type": {
10008
+ "text": "number"
10009
+ }
10010
+ },
10011
+ {
10012
+ "name": "value",
9850
10013
  "type": {
9851
10014
  "text": "Percent"
9852
10015
  }
@@ -9959,176 +10122,41 @@
9959
10122
  "declarations": [
9960
10123
  {
9961
10124
  "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",
10125
+ "name": "calculateColumnWidths",
10078
10126
  "return": {
10079
10127
  "type": {
10080
- "text": "number | null"
10128
+ "text": "Percent[]"
10081
10129
  }
10082
10130
  },
10083
10131
  "parameters": [
10084
10132
  {
10085
- "name": "raw",
10133
+ "name": "widths",
10086
10134
  "type": {
10087
- "text": "string | number"
10135
+ "text": "Percent[]"
10088
10136
  }
10089
10137
  },
10090
10138
  {
10091
- "name": "base",
10139
+ "name": "splitterIndex",
10092
10140
  "type": {
10093
10141
  "text": "number"
10094
10142
  }
10143
+ },
10144
+ {
10145
+ "name": "delta",
10146
+ "type": {
10147
+ "text": "Percent"
10148
+ }
10149
+ },
10150
+ {
10151
+ "name": "minWidths",
10152
+ "type": {
10153
+ "text": "Map<number, Percent>"
10154
+ }
10095
10155
  }
10096
10156
  ]
10097
10157
  }
10098
10158
  ],
10099
10159
  "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
10160
  {
10133
10161
  "kind": "js",
10134
10162
  "name": "calculateColumnWidths",
@@ -10136,14 +10164,6 @@
10136
10164
  "name": "calculateColumnWidths",
10137
10165
  "module": "src/vscode-table/calculations.ts"
10138
10166
  }
10139
- },
10140
- {
10141
- "kind": "js",
10142
- "name": "parseSizeAttributeToPercent",
10143
- "declaration": {
10144
- "name": "parseSizeAttributeToPercent",
10145
- "module": "src/vscode-table/calculations.ts"
10146
- }
10147
10167
  }
10148
10168
  ]
10149
10169
  },
@@ -10739,6 +10759,11 @@
10739
10759
  "name": "_handleSplitterPointerCancel",
10740
10760
  "privacy": "private"
10741
10761
  },
10762
+ {
10763
+ "kind": "field",
10764
+ "name": "_handleMinColumnWidthChange",
10765
+ "privacy": "private"
10766
+ },
10742
10767
  {
10743
10768
  "kind": "field",
10744
10769
  "name": "version",
@@ -11275,6 +11300,15 @@
11275
11300
  }
11276
11301
  ],
11277
11302
  "members": [
11303
+ {
11304
+ "kind": "field",
11305
+ "name": "minWidth",
11306
+ "type": {
11307
+ "text": "string"
11308
+ },
11309
+ "default": "'0'",
11310
+ "attribute": "min-width"
11311
+ },
11278
11312
  {
11279
11313
  "kind": "field",
11280
11314
  "name": "version",
@@ -11305,6 +11339,16 @@
11305
11339
  }
11306
11340
  }
11307
11341
  ],
11342
+ "attributes": [
11343
+ {
11344
+ "name": "min-width",
11345
+ "type": {
11346
+ "text": "string"
11347
+ },
11348
+ "default": "'0'",
11349
+ "fieldName": "minWidth"
11350
+ }
11351
+ ],
11308
11352
  "superclass": {
11309
11353
  "name": "VscElement",
11310
11354
  "module": "/src/includes/VscElement.js"
@@ -11726,7 +11770,7 @@
11726
11770
  "type": {
11727
11771
  "text": "CSSResultGroup"
11728
11772
  },
11729
- "default": "[ defaultStyles, css` :host { display: inline-block; height: auto; position: relative; width: 320px; } :host([cols]) { width: auto; } :host([rows]) { height: auto; } .shadow { box-shadow: var(--vscode-scrollbar-shadow, #000000) 0 6px 6px -6px inset; display: none; inset: 0 0 auto 0; height: 6px; pointer-events: none; position: absolute; width: 100%; } .shadow.visible { display: block; } textarea { background-color: var(--vscode-settings-textInputBackground, #313131); border-color: var(--vscode-settings-textInputBorder, transparent); border-radius: 2px; border-style: solid; border-width: 1px; box-sizing: border-box; color: var(--vscode-settings-textInputForeground, #cccccc); display: block; font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 100%; width: 100%; } :host([cols]) textarea { width: auto; } :host([rows]) textarea { height: auto; } :host([invalid]) textarea, :host(:invalid) textarea { background-color: var(--vscode-inputValidation-errorBackground, #5a1d1d); border-color: var(--vscode-inputValidation-errorBorder, #be1100); } textarea.monospace { background-color: var(--vscode-editor-background, #1f1f1f); color: var(--vscode-editor-foreground, #cccccc); font-family: var(--vscode-editor-font-family, monospace); font-size: var(--vscode-editor-font-size, 14px); font-weight: var(--vscode-editor-font-weight, normal); } .textarea.monospace::placeholder { color: var( --vscode-editor-inlineValuesForeground, rgba(255, 255, 255, 0.5) ); } textarea.cursor-pointer { cursor: pointer; } textarea:focus { border-color: var(--vscode-focusBorder, #0078d4); outline: none; } textarea::placeholder { color: var(--vscode-input-placeholderForeground, #989898); opacity: 1; } textarea::-webkit-scrollbar-track { background-color: transparent; } textarea::-webkit-scrollbar { width: 14px; } textarea::-webkit-scrollbar-thumb { background-color: transparent; } textarea:hover::-webkit-scrollbar-thumb { background-color: var( --vscode-scrollbarSlider-background, rgba(121, 121, 121, 0.4) ); } textarea::-webkit-scrollbar-thumb:hover { background-color: var( --vscode-scrollbarSlider-hoverBackground, rgba(100, 100, 100, 0.7) ); } textarea::-webkit-scrollbar-thumb:active { background-color: var( --vscode-scrollbarSlider-activeBackground, rgba(191, 191, 191, 0.4) ); } textarea::-webkit-scrollbar-corner { background-color: transparent; } textarea::-webkit-resizer { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAACJJREFUeJxjYMAOZuIQZ5j5//9/rJJESczEKYGsG6cEXgAAsEEefMxkua4AAAAASUVORK5CYII='); background-repeat: no-repeat; background-position: right bottom; } `, ]"
11773
+ "default": "[ defaultStyles, css` :host { display: inline-block; height: auto; position: relative; width: 320px; } :host([cols]) { width: auto; } :host([rows]) { height: auto; } .shadow { box-shadow: var(--vscode-scrollbar-shadow, #000000) 0 6px 6px -6px inset; display: none; inset: 0 0 auto 0; height: 6px; pointer-events: none; position: absolute; width: 100%; } .shadow.visible { display: block; } textarea { background-color: var(--vscode-settings-textInputBackground, #313131); border-color: var(--vscode-settings-textInputBorder, transparent); border-radius: 4px; border-style: solid; border-width: 1px; box-sizing: border-box; color: var(--vscode-settings-textInputForeground, #cccccc); display: block; font-family: var(--vscode-font-family, sans-serif); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, normal); height: 100%; width: 100%; } :host([cols]) textarea { width: auto; } :host([rows]) textarea { height: auto; } :host([invalid]) textarea, :host(:invalid) textarea { background-color: var(--vscode-inputValidation-errorBackground, #5a1d1d); border-color: var(--vscode-inputValidation-errorBorder, #be1100); } textarea.monospace { background-color: var(--vscode-editor-background, #1f1f1f); color: var(--vscode-editor-foreground, #cccccc); font-family: var(--vscode-editor-font-family, monospace); font-size: var(--vscode-editor-font-size, 14px); font-weight: var(--vscode-editor-font-weight, normal); } .textarea.monospace::placeholder { color: var( --vscode-editor-inlineValuesForeground, rgba(255, 255, 255, 0.5) ); } textarea.cursor-pointer { cursor: pointer; } textarea:focus { border-color: var(--vscode-focusBorder, #0078d4); outline: none; } textarea::placeholder { color: var(--vscode-input-placeholderForeground, #989898); opacity: 1; } textarea::-webkit-scrollbar-track { background-color: transparent; } textarea::-webkit-scrollbar { width: 14px; } textarea::-webkit-scrollbar-thumb { background-color: transparent; } textarea:hover::-webkit-scrollbar-thumb { background-color: var( --vscode-scrollbarSlider-background, rgba(121, 121, 121, 0.4) ); } textarea::-webkit-scrollbar-thumb:hover { background-color: var( --vscode-scrollbarSlider-hoverBackground, rgba(100, 100, 100, 0.7) ); } textarea::-webkit-scrollbar-thumb:active { background-color: var( --vscode-scrollbarSlider-activeBackground, rgba(191, 191, 191, 0.4) ); } textarea::-webkit-scrollbar-corner { background-color: transparent; } textarea::-webkit-resizer { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAACJJREFUeJxjYMAOZuIQZ5j5//9/rJJESczEKYGsG6cEXgAAsEEefMxkua4AAAAASUVORK5CYII='); background-repeat: no-repeat; background-position: right bottom; } `, ]"
11730
11774
  }
11731
11775
  ],
11732
11776
  "exports": [
@@ -12359,7 +12403,7 @@
12359
12403
  "type": {
12360
12404
  "text": "CSSResultGroup"
12361
12405
  },
12362
- "default": "[ defaultStyles, css` :host { display: inline-block; width: 320px; } .root { align-items: center; background-color: var(--vscode-settings-textInputBackground, #313131); border-color: var( --vscode-settings-textInputBorder, var(--vscode-settings-textInputBackground, #3c3c3c) ); border-radius: 2px; border-style: solid; border-width: 1px; box-sizing: border-box; color: var(--vscode-settings-textInputForeground, #cccccc); display: flex; max-width: 100%; position: relative; width: 100%; } :host([focused]) .root { border-color: var(--vscode-focusBorder, #0078d4); } :host([invalid]), :host(:invalid) { border-color: var(--vscode-inputValidation-errorBorder, #be1100); } :host([invalid]) input, :host(:invalid) input { background-color: var(--vscode-inputValidation-errorBackground, #5a1d1d); } ::slotted([slot='content-before']) { display: block; margin-left: 2px; } ::slotted([slot='content-after']) { display: block; margin-right: 2px; } slot[name='content-before'], slot[name='content-after'] { align-items: center; display: flex; } input { background-color: var(--vscode-settings-textInputBackground, #313131); border: 0; box-sizing: border-box; color: var(--vscode-settings-textInputForeground, #cccccc); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, 'normal'); line-height: 18px; outline: none; padding-bottom: 3px; padding-left: 4px; padding-right: 4px; padding-top: 3px; width: 100%; } input:read-only:not([type='file']) { cursor: not-allowed; } input::placeholder { color: var(--vscode-input-placeholderForeground, #989898); opacity: 1; } input[type='file'] { line-height: 24px; padding-bottom: 0; padding-left: 2px; padding-top: 0; } input[type='file']::file-selector-button { background-color: var(--vscode-button-background, #0078d4); border: 0; border-radius: 2px; color: var(--vscode-button-foreground, #ffffff); cursor: pointer; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, 'normal'); line-height: 20px; padding: 0 14px; } input[type='file']::file-selector-button:hover { background-color: var(--vscode-button-hoverBackground, #026ec1); } `, ]"
12406
+ "default": "[ defaultStyles, css` :host { display: inline-block; width: 320px; } .root { align-items: center; background-color: var(--vscode-settings-textInputBackground, #313131); border-color: var( --vscode-settings-textInputBorder, var(--vscode-settings-textInputBackground, #3c3c3c) ); border-radius: 4px; border-style: solid; border-width: 1px; box-sizing: border-box; color: var(--vscode-settings-textInputForeground, #cccccc); display: flex; max-width: 100%; position: relative; width: 100%; } :host([focused]) .root { border-color: var(--vscode-focusBorder, #0078d4); } :host([invalid]), :host(:invalid) { border-color: var(--vscode-inputValidation-errorBorder, #be1100); } :host([invalid]) input, :host(:invalid) input { background-color: var(--vscode-inputValidation-errorBackground, #5a1d1d); } ::slotted([slot='content-before']) { display: block; margin-left: 2px; } ::slotted([slot='content-after']) { display: block; margin-right: 2px; } slot[name='content-before'], slot[name='content-after'] { align-items: center; display: flex; } input { background-color: var(--vscode-settings-textInputBackground, #313131); border: 0; box-sizing: border-box; color: var(--vscode-settings-textInputForeground, #cccccc); display: block; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, 'normal'); line-height: 18px; outline: none; padding-bottom: 3px; padding-left: 4px; padding-right: 4px; padding-top: 3px; width: 100%; } input:read-only:not([type='file']) { cursor: not-allowed; } input::placeholder { color: var(--vscode-input-placeholderForeground, #989898); opacity: 1; } input[type='file'] { line-height: 24px; padding-bottom: 0; padding-left: 2px; padding-top: 0; } input[type='file']::file-selector-button { background-color: var(--vscode-button-background, #0078d4); border: 0; border-radius: 2px; color: var(--vscode-button-foreground, #ffffff); cursor: pointer; font-family: var(--vscode-font-family, ${defaultFontStack}); font-size: var(--vscode-font-size, 13px); font-weight: var(--vscode-font-weight, 'normal'); line-height: 20px; padding: 0 14px; } input[type='file']::file-selector-button:hover { background-color: var(--vscode-button-hoverBackground, #026ec1); } `, ]"
12363
12407
  }
12364
12408
  ],
12365
12409
  "exports": [
@@ -13197,96 +13241,6 @@
13197
13241
  }
13198
13242
  ]
13199
13243
  },
13200
- {
13201
- "kind": "javascript-module",
13202
- "path": "src/vscode-toolbar-container/vscode-toolbar-container.styles.ts",
13203
- "declarations": [
13204
- {
13205
- "kind": "variable",
13206
- "name": "styles",
13207
- "type": {
13208
- "text": "CSSResultGroup"
13209
- },
13210
- "default": "[ defaultStyles, css` :host { display: block; } div { gap: 4px; display: flex; align-items: center; } `, ]"
13211
- }
13212
- ],
13213
- "exports": [
13214
- {
13215
- "kind": "js",
13216
- "name": "default",
13217
- "declaration": {
13218
- "name": "styles",
13219
- "module": "src/vscode-toolbar-container/vscode-toolbar-container.styles.ts"
13220
- }
13221
- }
13222
- ]
13223
- },
13224
- {
13225
- "kind": "javascript-module",
13226
- "path": "src/vscode-toolbar-container/vscode-toolbar-container.ts",
13227
- "declarations": [
13228
- {
13229
- "kind": "class",
13230
- "description": "Simple container to arrange the toolar buttons",
13231
- "name": "VscodeToolbarContainer",
13232
- "members": [
13233
- {
13234
- "kind": "field",
13235
- "name": "version",
13236
- "type": {
13237
- "text": "string"
13238
- },
13239
- "description": "VSCode Elements version",
13240
- "readonly": true,
13241
- "inheritedFrom": {
13242
- "name": "VscElement",
13243
- "module": "src/includes/VscElement.ts"
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
- }
13261
- }
13262
- ],
13263
- "superclass": {
13264
- "name": "VscElement",
13265
- "module": "/src/includes/VscElement.js"
13266
- },
13267
- "tagName": "vscode-toolbar-container",
13268
- "customElement": true
13269
- }
13270
- ],
13271
- "exports": [
13272
- {
13273
- "kind": "js",
13274
- "name": "VscodeToolbarContainer",
13275
- "declaration": {
13276
- "name": "VscodeToolbarContainer",
13277
- "module": "src/vscode-toolbar-container/vscode-toolbar-container.ts"
13278
- }
13279
- },
13280
- {
13281
- "kind": "custom-element-definition",
13282
- "name": "vscode-toolbar-container",
13283
- "declaration": {
13284
- "name": "VscodeToolbarContainer",
13285
- "module": "src/vscode-toolbar-container/vscode-toolbar-container.ts"
13286
- }
13287
- }
13288
- ]
13289
- },
13290
13244
  {
13291
13245
  "kind": "javascript-module",
13292
13246
  "path": "src/vscode-tree/helpers.ts",
@@ -14784,6 +14738,96 @@
14784
14738
  }
14785
14739
  ]
14786
14740
  },
14741
+ {
14742
+ "kind": "javascript-module",
14743
+ "path": "src/vscode-toolbar-container/vscode-toolbar-container.styles.ts",
14744
+ "declarations": [
14745
+ {
14746
+ "kind": "variable",
14747
+ "name": "styles",
14748
+ "type": {
14749
+ "text": "CSSResultGroup"
14750
+ },
14751
+ "default": "[ defaultStyles, css` :host { display: block; } div { gap: 4px; display: flex; align-items: center; } `, ]"
14752
+ }
14753
+ ],
14754
+ "exports": [
14755
+ {
14756
+ "kind": "js",
14757
+ "name": "default",
14758
+ "declaration": {
14759
+ "name": "styles",
14760
+ "module": "src/vscode-toolbar-container/vscode-toolbar-container.styles.ts"
14761
+ }
14762
+ }
14763
+ ]
14764
+ },
14765
+ {
14766
+ "kind": "javascript-module",
14767
+ "path": "src/vscode-toolbar-container/vscode-toolbar-container.ts",
14768
+ "declarations": [
14769
+ {
14770
+ "kind": "class",
14771
+ "description": "Simple container to arrange the toolar buttons",
14772
+ "name": "VscodeToolbarContainer",
14773
+ "members": [
14774
+ {
14775
+ "kind": "field",
14776
+ "name": "version",
14777
+ "type": {
14778
+ "text": "string"
14779
+ },
14780
+ "description": "VSCode Elements version",
14781
+ "readonly": true,
14782
+ "inheritedFrom": {
14783
+ "name": "VscElement",
14784
+ "module": "src/includes/VscElement.ts"
14785
+ }
14786
+ },
14787
+ {
14788
+ "kind": "method",
14789
+ "name": "warn",
14790
+ "parameters": [
14791
+ {
14792
+ "name": "message",
14793
+ "type": {
14794
+ "text": "string"
14795
+ }
14796
+ }
14797
+ ],
14798
+ "inheritedFrom": {
14799
+ "name": "VscElement",
14800
+ "module": "src/includes/VscElement.ts"
14801
+ }
14802
+ }
14803
+ ],
14804
+ "superclass": {
14805
+ "name": "VscElement",
14806
+ "module": "/src/includes/VscElement.js"
14807
+ },
14808
+ "tagName": "vscode-toolbar-container",
14809
+ "customElement": true
14810
+ }
14811
+ ],
14812
+ "exports": [
14813
+ {
14814
+ "kind": "js",
14815
+ "name": "VscodeToolbarContainer",
14816
+ "declaration": {
14817
+ "name": "VscodeToolbarContainer",
14818
+ "module": "src/vscode-toolbar-container/vscode-toolbar-container.ts"
14819
+ }
14820
+ },
14821
+ {
14822
+ "kind": "custom-element-definition",
14823
+ "name": "vscode-toolbar-container",
14824
+ "declaration": {
14825
+ "name": "VscodeToolbarContainer",
14826
+ "module": "src/vscode-toolbar-container/vscode-toolbar-container.ts"
14827
+ }
14828
+ }
14829
+ ]
14830
+ },
14787
14831
  {
14788
14832
  "kind": "javascript-module",
14789
14833
  "path": "src/includes/vscode-select/OptionListController.ts",