@vscode-elements/elements 1.5.0 → 1.6.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 (35) hide show
  1. package/custom-elements.json +1507 -1263
  2. package/dist/bundled.js +1 -1
  3. package/dist/includes/VscElement.js +1 -1
  4. package/dist/includes/VscElement.js.map +1 -1
  5. package/dist/main.d.ts +2 -0
  6. package/dist/main.d.ts.map +1 -1
  7. package/dist/main.js +2 -0
  8. package/dist/main.js.map +1 -1
  9. package/dist/vscode-divider/index.d.ts +2 -0
  10. package/dist/vscode-divider/index.d.ts.map +1 -0
  11. package/dist/vscode-divider/index.js +2 -0
  12. package/dist/vscode-divider/index.js.map +1 -0
  13. package/dist/vscode-divider/vscode-divider.d.ts +13 -0
  14. package/dist/vscode-divider/vscode-divider.d.ts.map +1 -0
  15. package/dist/vscode-divider/vscode-divider.js +28 -0
  16. package/dist/vscode-divider/vscode-divider.js.map +1 -0
  17. package/dist/vscode-divider/vscode-divider.styles.d.ts +4 -0
  18. package/dist/vscode-divider/vscode-divider.styles.d.ts.map +1 -0
  19. package/dist/vscode-divider/vscode-divider.styles.js +16 -0
  20. package/dist/vscode-divider/vscode-divider.styles.js.map +1 -0
  21. package/dist/vscode-progress-ring/index.d.ts +2 -0
  22. package/dist/vscode-progress-ring/index.d.ts.map +1 -0
  23. package/dist/vscode-progress-ring/index.js +2 -0
  24. package/dist/vscode-progress-ring/index.js.map +1 -0
  25. package/dist/vscode-progress-ring/vscode-progress-ring.d.ts +15 -0
  26. package/dist/vscode-progress-ring/vscode-progress-ring.d.ts.map +1 -0
  27. package/dist/vscode-progress-ring/vscode-progress-ring.js +51 -0
  28. package/dist/vscode-progress-ring/vscode-progress-ring.js.map +1 -0
  29. package/dist/vscode-progress-ring/vscode-progress-ring.styles.d.ts +4 -0
  30. package/dist/vscode-progress-ring/vscode-progress-ring.styles.d.ts.map +1 -0
  31. package/dist/vscode-progress-ring/vscode-progress-ring.styles.js +54 -0
  32. package/dist/vscode-progress-ring/vscode-progress-ring.styles.js.map +1 -0
  33. package/package.json +1 -1
  34. package/vscode.css-custom-data.json +14 -14
  35. package/vscode.html-custom-data.json +43 -22
@@ -2,7 +2,7 @@ import { LitElement } from 'lit';
2
2
  export class VscElement extends LitElement {
3
3
  constructor() {
4
4
  super(...arguments);
5
- this._version = '1.5.0';
5
+ this._version = '1.6.0';
6
6
  }
7
7
  /** VSC Element version */
8
8
  get version() {
@@ -1 +1 @@
1
- {"version":3,"file":"VscElement.js","sourceRoot":"","sources":["../../src/includes/VscElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,KAAK,CAAC;AAE/B,MAAM,OAAO,UAAW,SAAQ,UAAU;IAA1C;;QACU,aAAQ,GAAG,OAAO,CAAC;IAM7B,CAAC;IAJC,0BAA0B;IAC1B,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;CACF","sourcesContent":["import {LitElement} from 'lit';\n\nexport class VscElement extends LitElement {\n private _version = '1.5.0';\n\n /** VSC Element version */\n get version() {\n return this._version;\n }\n}\n"]}
1
+ {"version":3,"file":"VscElement.js","sourceRoot":"","sources":["../../src/includes/VscElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,KAAK,CAAC;AAE/B,MAAM,OAAO,UAAW,SAAQ,UAAU;IAA1C;;QACU,aAAQ,GAAG,OAAO,CAAC;IAM7B,CAAC;IAJC,0BAA0B;IAC1B,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;CACF","sourcesContent":["import {LitElement} from 'lit';\n\nexport class VscElement extends LitElement {\n private _version = '1.6.0';\n\n /** VSC Element version */\n get version() {\n return this._version;\n }\n}\n"]}
package/dist/main.d.ts CHANGED
@@ -5,6 +5,7 @@ export { VscodeCheckboxGroup } from './vscode-checkbox-group/index.js';
5
5
  export { VscodeCollapsible } from './vscode-collapsible/index.js';
6
6
  export { VscodeContextMenuItem } from './vscode-context-menu-item/index.js';
7
7
  export { VscodeContextMenu } from './vscode-context-menu/index.js';
8
+ export { VscodeDivider } from './vscode-divider/index.js';
8
9
  export { VscodeFormContainer } from './vscode-form-container/index.js';
9
10
  export { VscodeFormGroup } from './vscode-form-group/index.js';
10
11
  export { VscodeFormHelper } from './vscode-form-helper/index.js';
@@ -12,6 +13,7 @@ export { VscodeIcon } from './vscode-icon/index.js';
12
13
  export { VscodeLabel } from './vscode-label/index.js';
13
14
  export { VscodeMultiSelect } from './vscode-multi-select/index.js';
14
15
  export { VscodeOption } from './vscode-option/index.js';
16
+ export { VscodeProgressRing } from './vscode-progress-ring/index.js';
15
17
  export { VscodeRadio } from './vscode-radio/index.js';
16
18
  export { VscodeRadioGroup } from './vscode-radio-group/index.js';
17
19
  export { VscodeSingleSelect } from './vscode-single-select/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,iBAAiB,EAAC,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,kBAAkB,EAAC,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,iBAAiB,EAAC,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,kBAAkB,EAAC,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,kBAAkB,EAAC,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC"}
package/dist/main.js CHANGED
@@ -5,6 +5,7 @@ export { VscodeCheckboxGroup } from './vscode-checkbox-group/index.js';
5
5
  export { VscodeCollapsible } from './vscode-collapsible/index.js';
6
6
  export { VscodeContextMenuItem } from './vscode-context-menu-item/index.js';
7
7
  export { VscodeContextMenu } from './vscode-context-menu/index.js';
8
+ export { VscodeDivider } from './vscode-divider/index.js';
8
9
  export { VscodeFormContainer } from './vscode-form-container/index.js';
9
10
  export { VscodeFormGroup } from './vscode-form-group/index.js';
10
11
  export { VscodeFormHelper } from './vscode-form-helper/index.js';
@@ -12,6 +13,7 @@ export { VscodeIcon } from './vscode-icon/index.js';
12
13
  export { VscodeLabel } from './vscode-label/index.js';
13
14
  export { VscodeMultiSelect } from './vscode-multi-select/index.js';
14
15
  export { VscodeOption } from './vscode-option/index.js';
16
+ export { VscodeProgressRing } from './vscode-progress-ring/index.js';
15
17
  export { VscodeRadio } from './vscode-radio/index.js';
16
18
  export { VscodeRadioGroup } from './vscode-radio-group/index.js';
17
19
  export { VscodeSingleSelect } from './vscode-single-select/index.js';
package/dist/main.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,iBAAiB,EAAC,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,kBAAkB,EAAC,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC","sourcesContent":["export {VscodeBadge} from './vscode-badge/index.js';\nexport {VscodeButton} from './vscode-button/index.js';\nexport {VscodeCheckbox} from './vscode-checkbox/index.js';\nexport {VscodeCheckboxGroup} from './vscode-checkbox-group/index.js';\nexport {VscodeCollapsible} from './vscode-collapsible/index.js';\nexport {VscodeContextMenuItem} from './vscode-context-menu-item/index.js';\nexport {VscodeContextMenu} from './vscode-context-menu/index.js';\nexport {VscodeFormContainer} from './vscode-form-container/index.js';\nexport {VscodeFormGroup} from './vscode-form-group/index.js';\nexport {VscodeFormHelper} from './vscode-form-helper/index.js';\nexport {VscodeIcon} from './vscode-icon/index.js';\nexport {VscodeLabel} from './vscode-label/index.js';\nexport {VscodeMultiSelect} from './vscode-multi-select/index.js';\nexport {VscodeOption} from './vscode-option/index.js';\nexport {VscodeRadio} from './vscode-radio/index.js';\nexport {VscodeRadioGroup} from './vscode-radio-group/index.js';\nexport {VscodeSingleSelect} from './vscode-single-select/index.js';\nexport {VscodeScrollable} from './vscode-scrollable/index.js';\nexport {VscodeSplitLayout} from './vscode-split-layout/index.js';\nexport {VscodeTabHeader} from './vscode-tab-header/index.js';\nexport {VscodeTabPanel} from './vscode-tab-panel/index.js';\nexport {VscodeTableBody} from './vscode-table-body/index.js';\nexport {VscodeTableCell} from './vscode-table-cell/index.js';\nexport {VscodeTableHeader} from './vscode-table-header/index.js';\nexport {VscodeTableHeaderCell} from './vscode-table-header-cell/index.js';\nexport {VscodeTableRow} from './vscode-table-row/index.js';\nexport {VscodeTable} from './vscode-table/index.js';\nexport {VscodeTabs} from './vscode-tabs/index.js';\nexport {VscodeTextarea} from './vscode-textarea/index.js';\nexport {VscodeTextfield} from './vscode-textfield/index.js';\nexport {VscodeTree} from './vscode-tree/index.js';\n"]}
1
+ {"version":3,"file":"main.js","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,iBAAiB,EAAC,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AACrE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAC,kBAAkB,EAAC,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAC,kBAAkB,EAAC,MAAM,iCAAiC,CAAC;AACnE,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,qBAAqB,EAAC,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAC,eAAe,EAAC,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC","sourcesContent":["export {VscodeBadge} from './vscode-badge/index.js';\nexport {VscodeButton} from './vscode-button/index.js';\nexport {VscodeCheckbox} from './vscode-checkbox/index.js';\nexport {VscodeCheckboxGroup} from './vscode-checkbox-group/index.js';\nexport {VscodeCollapsible} from './vscode-collapsible/index.js';\nexport {VscodeContextMenuItem} from './vscode-context-menu-item/index.js';\nexport {VscodeContextMenu} from './vscode-context-menu/index.js';\nexport {VscodeDivider} from './vscode-divider/index.js';\nexport {VscodeFormContainer} from './vscode-form-container/index.js';\nexport {VscodeFormGroup} from './vscode-form-group/index.js';\nexport {VscodeFormHelper} from './vscode-form-helper/index.js';\nexport {VscodeIcon} from './vscode-icon/index.js';\nexport {VscodeLabel} from './vscode-label/index.js';\nexport {VscodeMultiSelect} from './vscode-multi-select/index.js';\nexport {VscodeOption} from './vscode-option/index.js';\nexport {VscodeProgressRing} from './vscode-progress-ring/index.js';\nexport {VscodeRadio} from './vscode-radio/index.js';\nexport {VscodeRadioGroup} from './vscode-radio-group/index.js';\nexport {VscodeSingleSelect} from './vscode-single-select/index.js';\nexport {VscodeScrollable} from './vscode-scrollable/index.js';\nexport {VscodeSplitLayout} from './vscode-split-layout/index.js';\nexport {VscodeTabHeader} from './vscode-tab-header/index.js';\nexport {VscodeTabPanel} from './vscode-tab-panel/index.js';\nexport {VscodeTableBody} from './vscode-table-body/index.js';\nexport {VscodeTableCell} from './vscode-table-cell/index.js';\nexport {VscodeTableHeader} from './vscode-table-header/index.js';\nexport {VscodeTableHeaderCell} from './vscode-table-header-cell/index.js';\nexport {VscodeTableRow} from './vscode-table-row/index.js';\nexport {VscodeTable} from './vscode-table/index.js';\nexport {VscodeTabs} from './vscode-tabs/index.js';\nexport {VscodeTextarea} from './vscode-textarea/index.js';\nexport {VscodeTextfield} from './vscode-textfield/index.js';\nexport {VscodeTree} from './vscode-tree/index.js';\n"]}
@@ -0,0 +1,2 @@
1
+ export { VscodeDivider } from './vscode-divider.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vscode-divider/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,qBAAqB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { VscodeDivider } from './vscode-divider.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/vscode-divider/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,qBAAqB,CAAC","sourcesContent":["export {VscodeDivider} from './vscode-divider.js';\n"]}
@@ -0,0 +1,13 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { VscElement } from '../includes/VscElement';
3
+ export declare class VscodeDivider extends VscElement {
4
+ static styles: import("lit").CSSResultGroup;
5
+ role: 'separator' | 'presentation';
6
+ render(): TemplateResult;
7
+ }
8
+ declare global {
9
+ interface HTMLElementTagNameMap {
10
+ 'vscode-divider': VscodeDivider;
11
+ }
12
+ }
13
+ //# sourceMappingURL=vscode-divider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-divider.d.ts","sourceRoot":"","sources":["../../src/vscode-divider/vscode-divider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAO,MAAM,KAAK,CAAC;AAEzC,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAGlD,qBACa,aAAc,SAAQ,UAAU;IAC3C,MAAM,CAAC,MAAM,+BAAU;IAGvB,IAAI,EAAE,WAAW,GAAG,cAAc,CAAe;IAEjD,MAAM,IAAI,cAAc;CAGzB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,aAAa,CAAC;KACjC;CACF"}
@@ -0,0 +1,28 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ import { html } from 'lit';
8
+ import { customElement, property } from 'lit/decorators.js';
9
+ import { VscElement } from '../includes/VscElement';
10
+ import styles from './vscode-divider.styles';
11
+ let VscodeDivider = class VscodeDivider extends VscElement {
12
+ constructor() {
13
+ super(...arguments);
14
+ this.role = 'separator';
15
+ }
16
+ render() {
17
+ return html ``;
18
+ }
19
+ };
20
+ VscodeDivider.styles = styles;
21
+ __decorate([
22
+ property({ reflect: true })
23
+ ], VscodeDivider.prototype, "role", void 0);
24
+ VscodeDivider = __decorate([
25
+ customElement('vscode-divider')
26
+ ], VscodeDivider);
27
+ export { VscodeDivider };
28
+ //# sourceMappingURL=vscode-divider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-divider.js","sourceRoot":"","sources":["../../src/vscode-divider/vscode-divider.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAiB,IAAI,EAAC,MAAM,KAAK,CAAC;AACzC,OAAO,EAAC,aAAa,EAAE,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,MAAM,MAAM,yBAAyB,CAAC;AAGtC,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,UAAU;IAAtC;;QAIL,SAAI,GAAiC,WAAW,CAAC;IAKnD,CAAC;IAHC,MAAM;QACJ,OAAO,IAAI,CAAA,EAAE,CAAC;IAChB,CAAC;;AAPM,oBAAM,GAAG,MAAM,AAAT,CAAU;AAGvB;IADC,QAAQ,CAAC,EAAC,OAAO,EAAE,IAAI,EAAC,CAAC;2CACuB;AAJtC,aAAa;IADzB,aAAa,CAAC,gBAAgB,CAAC;GACnB,aAAa,CASzB","sourcesContent":["import {TemplateResult, html} from 'lit';\nimport {customElement, property} from 'lit/decorators.js';\nimport {VscElement} from '../includes/VscElement';\nimport styles from './vscode-divider.styles';\n\n@customElement('vscode-divider')\nexport class VscodeDivider extends VscElement {\n static styles = styles;\n\n @property({reflect: true})\n role: 'separator' | 'presentation' = 'separator';\n\n render(): TemplateResult {\n return html``;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'vscode-divider': VscodeDivider;\n }\n}\n"]}
@@ -0,0 +1,4 @@
1
+ import { CSSResultGroup } from 'lit';
2
+ declare const styles: CSSResultGroup;
3
+ export default styles;
4
+ //# sourceMappingURL=vscode-divider.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-divider.styles.d.ts","sourceRoot":"","sources":["../../src/vscode-divider/vscode-divider.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAM,cAAc,EAAC,MAAM,KAAK,CAAC;AAGxC,QAAA,MAAM,MAAM,EAAE,cAWb,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { css } from 'lit';
2
+ import defaultStyles from '../includes/default.styles.js';
3
+ const styles = [
4
+ defaultStyles,
5
+ css `
6
+ :host {
7
+ background-color: var(--vscode-widget-border);
8
+ display: block;
9
+ height: 1px;
10
+ margin-bottom: 10px;
11
+ margin-top: 10px;
12
+ }
13
+ `,
14
+ ];
15
+ export default styles;
16
+ //# sourceMappingURL=vscode-divider.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-divider.styles.js","sourceRoot":"","sources":["../../src/vscode-divider/vscode-divider.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAiB,MAAM,KAAK,CAAC;AACxC,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAE1D,MAAM,MAAM,GAAmB;IAC7B,aAAa;IACb,GAAG,CAAA;;;;;;;;GAQF;CACF,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import {css, CSSResultGroup} from 'lit';\nimport defaultStyles from '../includes/default.styles.js';\n\nconst styles: CSSResultGroup = [\n defaultStyles,\n css`\n :host {\n background-color: var(--vscode-widget-border);\n display: block;\n height: 1px;\n margin-bottom: 10px;\n margin-top: 10px;\n }\n `,\n];\n\nexport default styles;\n"]}
@@ -0,0 +1,2 @@
1
+ export { VscodeProgressRing } from './vscode-progress-ring.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/vscode-progress-ring/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,kBAAkB,EAAC,MAAM,2BAA2B,CAAC"}
@@ -0,0 +1,2 @@
1
+ export { VscodeProgressRing } from './vscode-progress-ring.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/vscode-progress-ring/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,kBAAkB,EAAC,MAAM,2BAA2B,CAAC","sourcesContent":["export {VscodeProgressRing} from './vscode-progress-ring.js';\n"]}
@@ -0,0 +1,15 @@
1
+ import { TemplateResult } from 'lit';
2
+ import { VscElement } from '../includes/VscElement';
3
+ export declare class VscodeProgressRing extends VscElement {
4
+ static styles: import("lit").CSSResultGroup;
5
+ ariaLabel: string;
6
+ ariaLive: string;
7
+ role: string;
8
+ render(): TemplateResult;
9
+ }
10
+ declare global {
11
+ interface HTMLElementTagNameMap {
12
+ 'vscode-progress-ring': VscodeProgressRing;
13
+ }
14
+ }
15
+ //# sourceMappingURL=vscode-progress-ring.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-progress-ring.d.ts","sourceRoot":"","sources":["../../src/vscode-progress-ring/vscode-progress-ring.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAO,MAAM,KAAK,CAAC;AAEzC,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAGlD,qBACa,kBAAmB,SAAQ,UAAU;IAChD,MAAM,CAAC,MAAM,+BAAU;IAGvB,SAAS,SAAa;IAGtB,QAAQ,SAAe;IAGvB,IAAI,SAAW;IAEf,MAAM,IAAI,cAAc;CAkBzB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,sBAAsB,EAAE,kBAAkB,CAAC;KAC5C;CACF"}
@@ -0,0 +1,51 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ import { html } from 'lit';
8
+ import { customElement, property } from 'lit/decorators.js';
9
+ import { VscElement } from '../includes/VscElement';
10
+ import styles from './vscode-progress-ring.styles';
11
+ let VscodeProgressRing = class VscodeProgressRing extends VscElement {
12
+ constructor() {
13
+ super(...arguments);
14
+ this.ariaLabel = 'Loading';
15
+ this.ariaLive = 'assertive';
16
+ this.role = 'alert';
17
+ }
18
+ render() {
19
+ return html `<svg class="progress" part="progress" viewBox="0 0 16 16">
20
+ <circle
21
+ class="background"
22
+ part="background"
23
+ cx="8px"
24
+ cy="8px"
25
+ r="7px"
26
+ ></circle>
27
+ <circle
28
+ class="indeterminate-indicator-1"
29
+ part="indeterminate-indicator-1"
30
+ cx="8px"
31
+ cy="8px"
32
+ r="7px"
33
+ ></circle>
34
+ </svg>`;
35
+ }
36
+ };
37
+ VscodeProgressRing.styles = styles;
38
+ __decorate([
39
+ property({ reflect: true, attribute: 'aria-label' })
40
+ ], VscodeProgressRing.prototype, "ariaLabel", void 0);
41
+ __decorate([
42
+ property({ reflect: true, attribute: 'aria-live' })
43
+ ], VscodeProgressRing.prototype, "ariaLive", void 0);
44
+ __decorate([
45
+ property({ reflect: true })
46
+ ], VscodeProgressRing.prototype, "role", void 0);
47
+ VscodeProgressRing = __decorate([
48
+ customElement('vscode-progress-ring')
49
+ ], VscodeProgressRing);
50
+ export { VscodeProgressRing };
51
+ //# sourceMappingURL=vscode-progress-ring.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-progress-ring.js","sourceRoot":"","sources":["../../src/vscode-progress-ring/vscode-progress-ring.ts"],"names":[],"mappings":";;;;;;AAAA,OAAO,EAAiB,IAAI,EAAC,MAAM,KAAK,CAAC;AACzC,OAAO,EAAC,aAAa,EAAE,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAC,MAAM,wBAAwB,CAAC;AAClD,OAAO,MAAM,MAAM,+BAA+B,CAAC;AAG5C,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,UAAU;IAA3C;;QAIL,cAAS,GAAG,SAAS,CAAC;QAGtB,aAAQ,GAAG,WAAW,CAAC;QAGvB,SAAI,GAAG,OAAO,CAAC;IAoBjB,CAAC;IAlBC,MAAM;QACJ,OAAO,IAAI,CAAA;;;;;;;;;;;;;;;WAeJ,CAAC;IACV,CAAC;;AA5BM,yBAAM,GAAG,MAAM,AAAT,CAAU;AAGvB;IADC,QAAQ,CAAC,EAAC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,YAAY,EAAC,CAAC;qDAC7B;AAGtB;IADC,QAAQ,CAAC,EAAC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAC,CAAC;oDAC3B;AAGvB;IADC,QAAQ,CAAC,EAAC,OAAO,EAAE,IAAI,EAAC,CAAC;gDACX;AAVJ,kBAAkB;IAD9B,aAAa,CAAC,sBAAsB,CAAC;GACzB,kBAAkB,CA8B9B","sourcesContent":["import {TemplateResult, html} from 'lit';\nimport {customElement, property} from 'lit/decorators.js';\nimport {VscElement} from '../includes/VscElement';\nimport styles from './vscode-progress-ring.styles';\n\n@customElement('vscode-progress-ring')\nexport class VscodeProgressRing extends VscElement {\n static styles = styles;\n\n @property({reflect: true, attribute: 'aria-label'})\n ariaLabel = 'Loading';\n\n @property({reflect: true, attribute: 'aria-live'})\n ariaLive = 'assertive';\n\n @property({reflect: true})\n role = 'alert';\n\n render(): TemplateResult {\n return html`<svg class=\"progress\" part=\"progress\" viewBox=\"0 0 16 16\">\n <circle\n class=\"background\"\n part=\"background\"\n cx=\"8px\"\n cy=\"8px\"\n r=\"7px\"\n ></circle>\n <circle\n class=\"indeterminate-indicator-1\"\n part=\"indeterminate-indicator-1\"\n cx=\"8px\"\n cy=\"8px\"\n r=\"7px\"\n ></circle>\n </svg>`;\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'vscode-progress-ring': VscodeProgressRing;\n }\n}\n"]}
@@ -0,0 +1,4 @@
1
+ import { CSSResultGroup } from 'lit';
2
+ declare const styles: CSSResultGroup;
3
+ export default styles;
4
+ //# sourceMappingURL=vscode-progress-ring.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-progress-ring.styles.d.ts","sourceRoot":"","sources":["../../src/vscode-progress-ring/vscode-progress-ring.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAM,cAAc,EAAC,MAAM,KAAK,CAAC;AAGxC,QAAA,MAAM,MAAM,EAAE,cAiDb,CAAC;AAEF,eAAe,MAAM,CAAC"}
@@ -0,0 +1,54 @@
1
+ import { css } from 'lit';
2
+ import defaultStyles from '../includes/default.styles.js';
3
+ const styles = [
4
+ defaultStyles,
5
+ css `
6
+ :host {
7
+ align-items: center;
8
+ display: block;
9
+ height: 28px;
10
+ margin: 0;
11
+ outline: none;
12
+ width: 28px;
13
+ }
14
+
15
+ .progress {
16
+ height: 100%;
17
+ width: 100%;
18
+ }
19
+
20
+ .background {
21
+ fill: none;
22
+ stroke: transparent;
23
+ stroke-width: 2px;
24
+ }
25
+
26
+ .indeterminate-indicator-1 {
27
+ fill: none;
28
+ stroke: var(--vscode-progressBar-background);
29
+ stroke-width: 2px;
30
+ stroke-linecap: square;
31
+ transform-origin: 50% 50%;
32
+ transform: rotate(-90deg);
33
+ transition: all 0.2s ease-in-out;
34
+ animation: spin-infinite 2s linear infinite;
35
+ }
36
+
37
+ @keyframes spin-infinite {
38
+ 0% {
39
+ stroke-dasharray: 0.01px 43.97px;
40
+ transform: rotate(0deg);
41
+ }
42
+ 50% {
43
+ stroke-dasharray: 21.99px 21.99px;
44
+ transform: rotate(450deg);
45
+ }
46
+ 100% {
47
+ stroke-dasharray: 0.01px 43.97px;
48
+ transform: rotate(1080deg);
49
+ }
50
+ }
51
+ `,
52
+ ];
53
+ export default styles;
54
+ //# sourceMappingURL=vscode-progress-ring.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode-progress-ring.styles.js","sourceRoot":"","sources":["../../src/vscode-progress-ring/vscode-progress-ring.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAiB,MAAM,KAAK,CAAC;AACxC,OAAO,aAAa,MAAM,+BAA+B,CAAC;AAE1D,MAAM,MAAM,GAAmB;IAC7B,aAAa;IACb,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CF;CACF,CAAC;AAEF,eAAe,MAAM,CAAC","sourcesContent":["import {css, CSSResultGroup} from 'lit';\nimport defaultStyles from '../includes/default.styles.js';\n\nconst styles: CSSResultGroup = [\n defaultStyles,\n css`\n :host {\n align-items: center;\n display: block;\n height: 28px;\n margin: 0;\n outline: none;\n width: 28px;\n }\n\n .progress {\n height: 100%;\n width: 100%;\n }\n\n .background {\n fill: none;\n stroke: transparent;\n stroke-width: 2px;\n }\n\n .indeterminate-indicator-1 {\n fill: none;\n stroke: var(--vscode-progressBar-background);\n stroke-width: 2px;\n stroke-linecap: square;\n transform-origin: 50% 50%;\n transform: rotate(-90deg);\n transition: all 0.2s ease-in-out;\n animation: spin-infinite 2s linear infinite;\n }\n\n @keyframes spin-infinite {\n 0% {\n stroke-dasharray: 0.01px 43.97px;\n transform: rotate(0deg);\n }\n 50% {\n stroke-dasharray: 21.99px 21.99px;\n transform: rotate(450deg);\n }\n 100% {\n stroke-dasharray: 0.01px 43.97px;\n transform: rotate(1080deg);\n }\n }\n `,\n];\n\nexport default styles;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode-elements/elements",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Webcomponents for creating Visual Studio Code extensions",
5
5
  "main": "dist/main.js",
6
6
  "module": "dist/main.js",
@@ -216,11 +216,6 @@
216
216
  { "name": "--vscode-font-family", "values": [] },
217
217
  { "name": "--vscode-font-size", "values": [] },
218
218
  { "name": "--vscode-editorGroup-border", "values": [] },
219
- { "name": "--vscode-font-family", "values": [] },
220
- { "name": "--vscode-font-size", "values": [] },
221
- { "name": "--vscode-font-weight", "values": [] },
222
- { "name": "--vscode-settings-headerBorder", "values": [] },
223
- { "name": "--vscode-panel-background", "values": [] },
224
219
  { "name": "--vscode-scrollbar-shadow", "values": [] },
225
220
  { "name": "--vscode-settings-textInputBackground", "values": [] },
226
221
  { "name": "--vscode-settings-textInputBorder", "values": [] },
@@ -239,17 +234,11 @@
239
234
  { "name": "--vscode-scrollbarSlider-background", "values": [] },
240
235
  { "name": "--vscode-scrollbarSlider-hoverBackground", "values": [] },
241
236
  { "name": "--vscode-scrollbarSlider-activeBackground", "values": [] },
242
- { "name": "--vscode-settings-textInputBackground", "values": [] },
243
- { "name": "--vscode-settings-textInputBorder", "values": [] },
244
- { "name": "--vscode-settings-textInputForeground", "values": [] },
245
- { "name": "--vscode-focusBorder", "values": [] },
246
237
  { "name": "--vscode-font-family", "values": [] },
247
238
  { "name": "--vscode-font-size", "values": [] },
248
239
  { "name": "--vscode-font-weight", "values": [] },
249
- { "name": "--vscode-input-placeholderForeground", "values": [] },
250
- { "name": "--vscode-button-background", "values": [] },
251
- { "name": "--vscode-button-foreground", "values": [] },
252
- { "name": "--vscode-button-hoverBackground", "values": [] },
240
+ { "name": "--vscode-settings-headerBorder", "values": [] },
241
+ { "name": "--vscode-panel-background", "values": [] },
253
242
  { "name": "--vscode-focusBorder", "values": [] },
254
243
  { "name": "--vscode-font-family", "values": [] },
255
244
  { "name": "--vscode-font-size", "values": [] },
@@ -265,7 +254,18 @@
265
254
  { "name": "--vscode-list-inactiveFocusOutline", "values": [] },
266
255
  { "name": "--vscode-list-focusOutline", "values": [] },
267
256
  { "name": "--vscode-tree-inactiveIndentGuidesStroke", "values": [] },
268
- { "name": "--vscode-tree-indentGuidesStroke", "values": [] }
257
+ { "name": "--vscode-tree-indentGuidesStroke", "values": [] },
258
+ { "name": "--vscode-settings-textInputBackground", "values": [] },
259
+ { "name": "--vscode-settings-textInputBorder", "values": [] },
260
+ { "name": "--vscode-settings-textInputForeground", "values": [] },
261
+ { "name": "--vscode-focusBorder", "values": [] },
262
+ { "name": "--vscode-font-family", "values": [] },
263
+ { "name": "--vscode-font-size", "values": [] },
264
+ { "name": "--vscode-font-weight", "values": [] },
265
+ { "name": "--vscode-input-placeholderForeground", "values": [] },
266
+ { "name": "--vscode-button-background", "values": [] },
267
+ { "name": "--vscode-button-foreground", "values": [] },
268
+ { "name": "--vscode-button-hoverBackground", "values": [] }
269
269
  ],
270
270
  "pseudoElements": [
271
271
  { "name": "::part(text-content)" },
@@ -129,6 +129,17 @@
129
129
  ],
130
130
  "references": []
131
131
  },
132
+ {
133
+ "name": "vscode-divider",
134
+ "description": "\n---\n",
135
+ "attributes": [
136
+ {
137
+ "name": "role",
138
+ "values": [{ "name": "separator" }, { "name": "presentation" }]
139
+ }
140
+ ],
141
+ "references": []
142
+ },
132
143
  {
133
144
  "name": "vscode-form-container",
134
145
  "description": "\n---\n",
@@ -247,6 +258,16 @@
247
258
  ],
248
259
  "references": []
249
260
  },
261
+ {
262
+ "name": "vscode-progress-ring",
263
+ "description": "\n---\n",
264
+ "attributes": [
265
+ { "name": "aria-label", "values": [] },
266
+ { "name": "aria-live", "values": [] },
267
+ { "name": "role", "values": [] }
268
+ ],
269
+ "references": []
270
+ },
250
271
  {
251
272
  "name": "vscode-radio",
252
273
  "description": "When participating in a form, it supports the `:invalid` pseudo class. Otherwise the error styles\ncan be applied through the `invalid` property.\n---\n\n\n### **Events:**\n - **vsc-change** - undefined\n- **change** - Dispatched when checked state is changed.\n\n### **CSS Properties:**\n - **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vsc-foreground-translucent** - Label font color. 90% transparency version of `--vscode-foreground` by default. _(default: undefined)_\n- **--vscode-settings-checkboxBackground** - undefined _(default: undefined)_\n- **--vscode-settings-checkboxBorder** - undefined _(default: undefined)_\n- **--vscode-settings-checkboxForeground** - undefined _(default: undefined)_\n- **--vscode-focusBorder** - undefined _(default: undefined)_",
@@ -457,15 +478,6 @@
457
478
  "attributes": [],
458
479
  "references": []
459
480
  },
460
- {
461
- "name": "vscode-tabs",
462
- "description": "\n---\n\n\n### **Events:**\n - **vsc-select** - undefined\n- **vsc-tabs-select** - Dispatched when the active tab is changed\n\n### **Slots:**\n - _default_ - Default slot. It is used for tab panels.\n- **header** - Slot for tab headers.\n- **addons** - Right aligned area in the header.\n\n### **CSS Properties:**\n - **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vscode-settings-headerBorder** - undefined _(default: undefined)_\n- **--vscode-panel-background** - undefined _(default: undefined)_",
463
- "attributes": [
464
- { "name": "panel", "description": "Panel-like look", "values": [] },
465
- { "name": "selected-index", "values": [] }
466
- ],
467
- "references": []
468
- },
469
481
  {
470
482
  "name": "vscode-textarea",
471
483
  "description": "Multi-line text input.\n\nWhen participating in a form, it supports the `:invalid` pseudo class. Otherwise the error styles\ncan be applied through the `invalid` property.\n---\n\n\n### **Events:**\n - **change** - undefined\n- **vsc-change** - undefined\n- **vsc-input** - undefined\n- **input** - undefined\n\n### **CSS Properties:**\n - **--vscode-scrollbar-shadow** - undefined _(default: undefined)_\n- **--vscode-settings-textInputBackground** - undefined _(default: undefined)_\n- **--vscode-settings-textInputBorder** - undefined _(default: undefined)_\n- **--vscode-settings-textInputForeground** - undefined _(default: undefined)_\n- **--vscode-input-placeholderForeground** - undefined _(default: undefined)_\n- **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vscode-editor-background** - undefined _(default: undefined)_\n- **--vscode-editor-foreground** - undefined _(default: undefined)_\n- **--vscode-editor-font-family** - undefined _(default: undefined)_\n- **--vscode-editor-font-size** - undefined _(default: undefined)_\n- **--vscode-editor-font-weight** - undefined _(default: undefined)_\n- **--vscode-editor-inlineValuesForeground** - undefined _(default: undefined)_\n- **--vscode-focusBorder** - undefined _(default: undefined)_\n- **--vscode-scrollbarSlider-background** - undefined _(default: undefined)_\n- **--vscode-scrollbarSlider-hoverBackground** - undefined _(default: undefined)_\n- **--vscode-scrollbarSlider-activeBackground** - undefined _(default: undefined)_",
@@ -505,6 +517,28 @@
505
517
  ],
506
518
  "references": []
507
519
  },
520
+ {
521
+ "name": "vscode-tabs",
522
+ "description": "\n---\n\n\n### **Events:**\n - **vsc-select** - undefined\n- **vsc-tabs-select** - Dispatched when the active tab is changed\n\n### **Slots:**\n - _default_ - Default slot. It is used for tab panels.\n- **header** - Slot for tab headers.\n- **addons** - Right aligned area in the header.\n\n### **CSS Properties:**\n - **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vscode-settings-headerBorder** - undefined _(default: undefined)_\n- **--vscode-panel-background** - undefined _(default: undefined)_",
523
+ "attributes": [
524
+ { "name": "panel", "description": "Panel-like look", "values": [] },
525
+ { "name": "selected-index", "values": [] }
526
+ ],
527
+ "references": []
528
+ },
529
+ {
530
+ "name": "vscode-tree",
531
+ "description": "\n---\n\n\n### **Events:**\n - **vsc-run-action** - Dispatched when an action icon is clicked.\n- **vsc-select** - Dispatched when an item is selected.\n- **vsc-tree-select** - Dispatched when an item is selected.\n- **vsc-tree-action** - Dispatched when an action icon is clicked.\n\n### **Methods:**\n - **closeAll(): _void_** - Closes all opened tree items recursively.\n- **deselectAll()** - Deselects all selected items.\n- **getItemByPath(path: _number[]_): __** - Returns a reference to a TreeItem object by path.\n\n### **CSS Properties:**\n - **--vscode-focusBorder** - undefined _(default: undefined)_\n- **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vscode-list-hoverForeground** - undefined _(default: undefined)_\n- **--vscode-list-hoverBackground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveSelectionBackground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveSelectionForeground** - undefined _(default: undefined)_\n- **--vscode-list-activeSelectionBackground** - undefined _(default: undefined)_\n- **--vscode-list-activeSelectionForeground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveSelectionIconForeground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveFocusBackground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveFocusOutline** - undefined _(default: undefined)_\n- **--vscode-list-focusOutline** - undefined _(default: undefined)_\n- **--vscode-tree-inactiveIndentGuidesStroke** - undefined _(default: undefined)_\n- **--vscode-tree-indentGuidesStroke** - undefined _(default: undefined)_\n\n### **CSS Parts:**\n - **text-content** - undefined\n- **description** - undefined\n- **counter-badge-decoration** - undefined\n- **filled-circle-decoration** - undefined\n- **caption-decoration** - undefined\n- **decorations** - Container of decorations",
532
+ "attributes": [
533
+ { "name": "data", "values": [{ "name": "TreeItem[]" }] },
534
+ { "name": "indent", "values": [] },
535
+ { "name": "arrows", "values": [] },
536
+ { "name": "multiline", "values": [] },
537
+ { "name": "tabindex", "values": [] },
538
+ { "name": "indent-guides", "values": [] }
539
+ ],
540
+ "references": []
541
+ },
508
542
  {
509
543
  "name": "vscode-textfield",
510
544
  "description": "A simple inline textfield\n\nWhen participating in a form, it supports the `:invalid` pseudo class. Otherwise the error styles\ncan be applied through the `invalid` property.\n---\n\n\n### **Events:**\n - **vsc-input** - undefined\n- **change** - undefined\n- **vsc-change** - undefined\n- **input** - undefined\n\n### **Slots:**\n - **content-before** - A slot before the editable area but inside of the component. It is used to place icons.\n- **content-after** - A slot after the editable area but inside of the component. It is used to place icons.\n\n### **CSS Properties:**\n - **--vscode-settings-textInputBackground** - undefined _(default: undefined)_\n- **--vscode-settings-textInputBorder** - undefined _(default: undefined)_\n- **--vscode-settings-textInputForeground** - undefined _(default: undefined)_\n- **--vscode-focusBorder** - undefined _(default: undefined)_\n- **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vscode-input-placeholderForeground** - undefined _(default: undefined)_\n- **--vscode-button-background** - undefined _(default: undefined)_\n- **--vscode-button-foreground** - undefined _(default: undefined)_\n- **--vscode-button-hoverBackground** - undefined _(default: undefined)_",
@@ -537,19 +571,6 @@
537
571
  { "name": "value", "values": [] }
538
572
  ],
539
573
  "references": []
540
- },
541
- {
542
- "name": "vscode-tree",
543
- "description": "\n---\n\n\n### **Events:**\n - **vsc-run-action** - Dispatched when an action icon is clicked.\n- **vsc-select** - Dispatched when an item is selected.\n- **vsc-tree-select** - Dispatched when an item is selected.\n- **vsc-tree-action** - Dispatched when an action icon is clicked.\n\n### **Methods:**\n - **closeAll(): _void_** - Closes all opened tree items recursively.\n- **deselectAll()** - Deselects all selected items.\n- **getItemByPath(path: _number[]_): __** - Returns a reference to a TreeItem object by path.\n\n### **CSS Properties:**\n - **--vscode-focusBorder** - undefined _(default: undefined)_\n- **--vscode-font-family** - undefined _(default: undefined)_\n- **--vscode-font-size** - undefined _(default: undefined)_\n- **--vscode-font-weight** - undefined _(default: undefined)_\n- **--vscode-list-hoverForeground** - undefined _(default: undefined)_\n- **--vscode-list-hoverBackground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveSelectionBackground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveSelectionForeground** - undefined _(default: undefined)_\n- **--vscode-list-activeSelectionBackground** - undefined _(default: undefined)_\n- **--vscode-list-activeSelectionForeground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveSelectionIconForeground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveFocusBackground** - undefined _(default: undefined)_\n- **--vscode-list-inactiveFocusOutline** - undefined _(default: undefined)_\n- **--vscode-list-focusOutline** - undefined _(default: undefined)_\n- **--vscode-tree-inactiveIndentGuidesStroke** - undefined _(default: undefined)_\n- **--vscode-tree-indentGuidesStroke** - undefined _(default: undefined)_\n\n### **CSS Parts:**\n - **text-content** - undefined\n- **description** - undefined\n- **counter-badge-decoration** - undefined\n- **filled-circle-decoration** - undefined\n- **caption-decoration** - undefined\n- **decorations** - Container of decorations",
544
- "attributes": [
545
- { "name": "data", "values": [{ "name": "TreeItem[]" }] },
546
- { "name": "indent", "values": [] },
547
- { "name": "arrows", "values": [] },
548
- { "name": "multiline", "values": [] },
549
- { "name": "tabindex", "values": [] },
550
- { "name": "indent-guides", "values": [] }
551
- ],
552
- "references": []
553
574
  }
554
575
  ]
555
576
  }