aloha-vue 2.1.13 → 2.3.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/CHANGELOG.md +45 -0
- package/dist/aloha-vue.es.js +10670 -10458
- package/dist/aloha-vue.umd.js +60 -60
- package/package.json +2 -1
- package/src/AAlert/AAlert.js +20 -2
- package/src/AAlert/compositionAPI/AttributesAPI.js +30 -0
- package/src/ADropdown/ADropdown.js +15 -2
- package/src/ADropdown/compositionAPI/ToggleAPI.js +9 -0
- package/src/AModal/compositionAPI/EscapeAPI.js +27 -21
- package/src/compositionAPI/AHttpAPI.js +5 -1
- package/src/compositionAPI/APopupAPI.js +19 -1
- package/src/ui/ASelect/ASelect.js +103 -13
- package/src/ui/ASelect/compositionAPI/DisabledAPI.js +38 -0
- package/src/ui/ASelect/compositionAPI/ExclusiveOptionsAPI.js +45 -0
- package/src/ui/ASelect/compositionAPI/ModelAPI.js +2 -1
- package/src/ui/ASelect/compositionAPI/ModelChangeAPI.js +17 -0
- package/src/ui/ASelect/compositionAPI/ToggleAPI.js +10 -0
- package/src/ui/ASelect/i18n/ar.json +2 -1
- package/src/ui/ASelect/i18n/de.json +2 -1
- package/src/ui/ASelect/i18n/en.json +2 -1
- package/src/ui/ASelect/i18n/es.json +2 -1
- package/src/ui/ASelect/i18n/fr.json +2 -1
- package/src/ui/ASelect/i18n/hr.json +2 -1
- package/src/ui/ASelect/i18n/it.json +2 -1
- package/src/ui/ASelect/i18n/ru.json +2 -1
- package/src/ui/compositionApi/UiSearchAPI.js +19 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.3.0
|
|
11
|
+
|
|
12
|
+
- `AModal`: don't close modal if popup opened
|
|
13
|
+
- `AAlert`: new props ariaAtomic and role
|
|
14
|
+
- `AHttpAPI`: ignoreErrorHandler as function
|
|
15
|
+
- `ASelect`: Fixed validator for isExclusiveOptionEnabled.
|
|
16
|
+
|
|
17
|
+
## 2.2.0
|
|
18
|
+
|
|
19
|
+
### Enhancements:
|
|
20
|
+
- Expanded `ASelect` component by adding three new props:
|
|
21
|
+
- `exclusive-option-label`
|
|
22
|
+
- `exclusive-option-value`
|
|
23
|
+
- `is-exclusive-option-enabled`
|
|
24
|
+
|
|
25
|
+
### Description:
|
|
26
|
+
An exclusive option can be defined as a special choice that, when selected, prevents the selection of any other options or deselects all previously chosen options.
|
|
27
|
+
|
|
10
28
|
## 2.1.13
|
|
11
29
|
|
|
12
30
|
- Fix 2 import from moment.js
|
|
@@ -134,6 +152,33 @@
|
|
|
134
152
|
|
|
135
153
|
***
|
|
136
154
|
|
|
155
|
+
## 1.8.0
|
|
156
|
+
|
|
157
|
+
- `AModal`: don't close modal if popup opened
|
|
158
|
+
|
|
159
|
+
## 1.7.0
|
|
160
|
+
|
|
161
|
+
- `AAlert`: new props ariaAtomic and role
|
|
162
|
+
|
|
163
|
+
## 1.6.0
|
|
164
|
+
|
|
165
|
+
- `AHttpAPI`: ignoreErrorHandler as function
|
|
166
|
+
|
|
167
|
+
## 1.5.1
|
|
168
|
+
|
|
169
|
+
- `ASelect`: Fixed validator for isExclusiveOptionEnabled.
|
|
170
|
+
|
|
171
|
+
## 1.5.0
|
|
172
|
+
|
|
173
|
+
### Enhancements:
|
|
174
|
+
- Expanded `ASelect` component by adding three new props:
|
|
175
|
+
- `exclusive-option-label`
|
|
176
|
+
- `exclusive-option-value`
|
|
177
|
+
- `is-exclusive-option-enabled`
|
|
178
|
+
|
|
179
|
+
### Description:
|
|
180
|
+
An exclusive option can be defined as a special choice that, when selected, prevents the selection of any other options or deselects all previously chosen options.
|
|
181
|
+
|
|
137
182
|
## 1.4.0
|
|
138
183
|
|
|
139
184
|
### New Arguments for `filterSearchHighlight`
|