@stackline/vue-multiselect-dropdown 3.1.0 → 3.1.1
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 +10 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,9 +9,13 @@
|
|
|
9
9
|
[](https://www.typescriptlang.org)
|
|
10
10
|
[](https://www.reddit.com/r/Stackline/)
|
|
11
11
|
|
|
12
|
-
**[Documentation & Live Demos](https://alexandro.net/docs/vue/multiselect/)** | **[Vue 2 Demo](https://alexandro.net/docs/vue/multiselect/vue-2/)** | **[Vue 3 Demo](https://alexandro.net/docs/vue/multiselect/vue-3/)** | **[
|
|
12
|
+
**[Documentation & Live Demos](https://alexandro.net/docs/vue/multiselect/)** | **[Vue 2 Demo](https://alexandro.net/docs/vue/multiselect/vue-2/)** | **[Vue 3 Demo](https://alexandro.net/docs/vue/multiselect/vue-3/)** | **[npm](https://www.npmjs.com/package/@stackline/vue-multiselect-dropdown)** | **[Issues](https://github.com/alexandroit/vue-multiselect-dropdown/issues)** | **[Repository](https://github.com/alexandroit/vue-multiselect-dropdown)** | **[Community Discussions](https://www.reddit.com/r/Stackline/)**
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
<p align="center">
|
|
15
|
+
<img src="https://alexandro.net/images/public/2026/06/dropdownlist.gif" alt="@stackline/vue-multiselect-dropdown live dropdown preview" width="420">
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
**Latest Vue 3 release:** `3.1.1` for Vue `3.x`
|
|
15
19
|
|
|
16
20
|
**Maintained Vue 2 release:** `2.0.0` for Vue `2.x`
|
|
17
21
|
|
|
@@ -27,7 +31,7 @@
|
|
|
27
31
|
|
|
28
32
|
The package follows the familiar Stackline settings contract while staying idiomatic for Vue: pass `:data`, bind selected values with `v-model`, customize behavior through `:settings`, and listen for Vue events such as `@select`, `@de-select`, `@select-all`, `@de-select-all`, `@open`, and `@close`.
|
|
29
33
|
|
|
30
|
-
The current stable Vue 3 release is `3.1.
|
|
34
|
+
The current stable Vue 3 release is `3.1.1`. It adds renderless composables, a state composable, scoped-slot customization, helper APIs, and a strengthened combobox contract while keeping the styled `<VueMultiselectDropdown />` component compatible with the existing visual contract.
|
|
31
35
|
|
|
32
36
|
## Features
|
|
33
37
|
|
|
@@ -91,7 +95,7 @@ Each package family installs on its matching Vue family. Keep the package family
|
|
|
91
95
|
For Vue 3 applications:
|
|
92
96
|
|
|
93
97
|
```bash
|
|
94
|
-
npm install @stackline/vue-multiselect-dropdown@3.1.
|
|
98
|
+
npm install @stackline/vue-multiselect-dropdown@3.1.1 --save-exact
|
|
95
99
|
```
|
|
96
100
|
|
|
97
101
|
For Vue 2 applications:
|
|
@@ -480,7 +484,7 @@ The styled component remains available for drop-in usage. The renderless composa
|
|
|
480
484
|
|
|
481
485
|
## Combobox Contract
|
|
482
486
|
|
|
483
|
-
Version `3.1.
|
|
487
|
+
Version `3.1.1` tightens the interaction details that usually matter most in production forms:
|
|
484
488
|
|
|
485
489
|
| Behavior | Contract |
|
|
486
490
|
| :--- | :--- |
|
|
@@ -516,7 +520,7 @@ Set any key to `false` to disable that behavior. `backspaceRemovesLastWhenSearch
|
|
|
516
520
|
|
|
517
521
|
## Official Vue 3 Test Matrix
|
|
518
522
|
|
|
519
|
-
The Vue 3 release was tested in a clean Vue `3.5.35` application with `@stackline/vue-multiselect-dropdown@3.1.
|
|
523
|
+
The Vue 3 release was tested in a clean Vue `3.5.35` application with `@stackline/vue-multiselect-dropdown@3.1.1`. The docs use the same examples from that test app, including keyboard navigation, focus, ARIA behavior, badge counters, responsive action buttons, scrollable lists, dialog-safe body overlays, the corrected left-aligned placeholder with vertical centering, scoped-slot customization, headless/custom HTML, and the combobox contract checks for Backspace, Escape, focused badge removal, focus, and option ARIA.
|
|
520
524
|
|
|
521
525
|
The same core scenarios are validated for the visual skins:
|
|
522
526
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackline/vue-multiselect-dropdown",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Maintained Vue multiselect dropdown with Vue 2 and Vue 3 release lines, accessibility-focused keyboard/ARIA tested behavior, Stackline skins, body overlays, object data, scoped slots, and renderless composables.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|