@bytelyst/ui 0.2.0 -> 0.2.1 - Combobox: scroll the highlighted option into view during arrow-key nav so it never leaves the popover viewport (IMP-1) - TagInput: new commitOnBlur prop (default false) — committing the buffer on blur surprised users clicking away to discard. BEHAVIOR CHANGE: blur no longer commits unless commitOnBlur is set (IMP-3) - Add vitest + happy-dom + @testing-library/react devDeps, test script, and packages/ui/vitest.config.ts; 6 unit tests for Combobox + TagInput (GAP-4) - Drop the stale 'vitest pending' ROADMAP-EXEC-TODO comments 6/6 tests pass; tsc clean.
3 lines
130 B
TypeScript
3 lines
130 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
export default defineConfig({ test: { environment: 'happy-dom', pool: 'forks' } });
|