elements
elements copied to clipboard
Web component library for developing Visual Studio Code extensions
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...
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...
Bug: Only one selected item is shown in the input while using vscode-multi-select combobox property
 - 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...
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.
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...
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...