aloha-vue 1.2.221 → 1.2.222

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.
@@ -57,6 +57,8 @@ aloha-page(
57
57
  key-label="label"
58
58
  label="Test label multiselect"
59
59
  type="multiselect"
60
+ :is-label-float="false"
61
+ placeholder="placeholder"
60
62
  :search="true"
61
63
  :is-select-all="true"
62
64
  :is-deselect-all="true"
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "Vue.js"
15
15
  ],
16
16
  "homepage": "https://github.com/ilia-brykin/aloha/#README.md",
17
- "version": "1.2.221",
17
+ "version": "1.2.222",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -694,7 +694,7 @@ export default {
694
694
  id: this.htmlIdLocal,
695
695
  class: [this.buttonClassDefault, this.buttonClass, {
696
696
  disabled: this.disabled,
697
- a_select_toggle_closeable: this.isMultiselect && this.isSelectionCloseable,
697
+ a_select_toggle_closeable: this.isMultiselect && this.isSelectionCloseable && this.isModelValue,
698
698
  a_form_control_invalid: this.isErrors,
699
699
  }],
700
700
  "aria-labelledby": this.ariaLabelledby,