aloha-vue 1.5.0 → 1.5.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/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@
7
7
  ---
8
8
  # Versions
9
9
 
10
+ ## 1.5.1
11
+
12
+ - `ASelect`: Fixed validator for isExclusiveOptionEnabled.
13
+
10
14
  ## 1.5.0
11
15
 
12
16
  ### Enhancements:
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.5.0",
17
+ "version": "1.5.1",
18
18
  "author": {
19
19
  "name": "Ilia Brykin",
20
20
  "email": "brykin.ilia@gmail.com"
@@ -212,6 +212,10 @@ export default {
212
212
  required: false,
213
213
  default: false,
214
214
  validator: (value, props) => {
215
+ if (!props) {
216
+ return true;
217
+ }
218
+
215
219
  const type = props?.type;
216
220
  if (type !== "multiselect") {
217
221
  return value === false;