elements icon indicating copy to clipboard operation
elements copied to clipboard

Web component library for developing Visual Studio Code extensions

Results 81 elements issues
Sort by recently updated
recently updated
newest added

When multiple webviews are open, clicking a `` opens its dropdown, but clicking into another webview (or anywhere outside the current one) doesn’t close it. Expected: The dropdown closes like...

bug

Enhancement: Allow styling of default VSCode-Tabs (not panel type) using theme variables. Current styles (non-specific to element state) https://github.com/vscode-elements/elements/blob/main/src/vscode-tab-header/vscode-tab-header.styles.ts#L43 ``` .wrapper { color: var(--vscode-foreground, #cccccc); } ``` https://github.com/vscode-elements/elements/blob/main/src/vscode-tab-header/vscode-tab-header.styles.ts#L26 ``` :host([active])...

Proposed enhancement: Allow vscode-tabs to support different layouts. This could be supported with an API? For example, the tabs could be stacked vertically in a column, and aligned to left...

The table scrolling is not always activated, even when tabel content is partially hidden. Proposed fix ``` // Line 201 - vscode-table.js _resizeTableBody() { let headerHeight = 0; let tbodyHeight...

![Image](https://github.com/user-attachments/assets/60f8beac-e197-4d4a-9745-d92b04bf2647) - Using combobox property in vscode-multi-select - 2 options are **pre-selected** (Afghanistan, Albania) - In the searchbox, only the one option is being displayed. - Even user de-selects all...

bug

Breadcrumb component based on @jnsquire's work. #155

See: https://github.com/vscode-elements/react-elements/issues/19 Fix the linked issue and add an ESLint rule to prevent it in the future.

bug

When I use [``](https://vscode-elements.github.io/components/single-select/), the dropdown closes whenever the surrounding content scrolls. In my app I have a terminal (xterm.js) under a toolbar. The select is in the toolbar and...

bug

handlePosition property is always undefined if you never set this property programmatically, after changing the handle position by draging the handle, the only way to get current position is _handlePosition...