diff --git a/projects/cli/README.md b/projects/cli/README.md index c7e676f02..f590e89db 100644 --- a/projects/cli/README.md +++ b/projects/cli/README.md @@ -115,6 +115,17 @@ Install to Cursor with the MCP configuration below. } ``` +### Codex + +Install to Codex with the MCP configuration below. + +```toml +[mcp_servers.elements] +description = "NVIDIA Elements UI Design System (nve-*), custom element schemas, APIs and examples" +command = "nve" +args = ["mcp"] +``` + ### Prompts | Prompt | Description | Example Prompt | diff --git a/projects/core/src/combobox/combobox.test.ts b/projects/core/src/combobox/combobox.test.ts index 9ada6a1a8..6cb291374 100644 --- a/projects/core/src/combobox/combobox.test.ts +++ b/projects/core/src/combobox/combobox.test.ts @@ -132,11 +132,10 @@ describe(Combobox.metadata.tag, () => { expect(dropdown.matches(':popover-open')).toBe(true); }); - it('should assign trigger and anchor to inner input container', async () => { + it('should assign anchor to inner input container', async () => { const dropdown = element.shadowRoot.querySelector(Dropdown.metadata.tag); const inputContainer = element.shadowRoot.querySelector('[input]'); expect(dropdown.anchor).toBe(inputContainer); - expect(dropdown.trigger).toBe(inputContainer); }); it('should hide options on escape keypress', async () => { diff --git a/projects/core/src/combobox/combobox.ts b/projects/core/src/combobox/combobox.ts index 45ef52cf9..d034cdd81 100644 --- a/projects/core/src/combobox/combobox.ts +++ b/projects/core/src/combobox/combobox.ts @@ -201,7 +201,7 @@ export class Combobox extends Control implements ContainerElement { const hasNoResults = visibleOptions.filter(o => !o.disabled).length === 0; const showCreateItem = this.#showCreateItem; return html` -