@keenmate/web-multiselect 1.8.5 → 1.9.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.
- package/README.md +5 -1
- package/dist/index.d.ts +723 -0
- package/dist/multiselect.js +1435 -1416
- package/dist/multiselect.umd.js +14 -24
- package/dist/style.css +1 -1
- package/package.json +4 -3
- package/src/css/_badges-display.css +8 -1
- package/src/css/_variables.css +594 -597
package/README.md
CHANGED
|
@@ -327,11 +327,15 @@ multiselect.addNewCallback = async (value) => {
|
|
|
327
327
|
|
|
328
328
|
- **↑ ↓** - Navigate up/down through options
|
|
329
329
|
- **Ctrl+↑ Ctrl+↓** - Jump between matched items (navigate mode only)
|
|
330
|
-
- **
|
|
330
|
+
- **Page Up / Page Down** - Move focus by 10 options at a time
|
|
331
|
+
- **Home / End** - Jump to first / last option
|
|
332
|
+
- **Enter** - Select focused option (or add new entry when `allow-add-new="true"` and the search has text)
|
|
331
333
|
- **Escape** - Close popover → Clear search → Close dropdown (priority order)
|
|
332
334
|
- **Tab** - Close dropdown and move to next field
|
|
333
335
|
- **Type** - Filter options by search term
|
|
334
336
|
|
|
337
|
+
> 💡 To surface these shortcuts to your users, set the `search-hint` attribute — the hint floats above the input when focused. Example: `<web-multiselect search-mode="navigate" search-hint="Ctrl/Cmd + ↓ / ↑ to jump between matches">`.
|
|
338
|
+
|
|
335
339
|
## Advanced Features
|
|
336
340
|
|
|
337
341
|
### Rich Content with Icons
|