aloha-vue 2.2.0 → 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 +23 -0
- package/dist/aloha-vue.es.js +8679 -8581
- package/dist/aloha-vue.umd.js +62 -62
- 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 +15 -2
- package/src/ui/ASelect/compositionAPI/ToggleAPI.js +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
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
|
+
|
|
10
17
|
## 2.2.0
|
|
11
18
|
|
|
12
19
|
### Enhancements:
|
|
@@ -145,6 +152,22 @@ An exclusive option can be defined as a special choice that, when selected, prev
|
|
|
145
152
|
|
|
146
153
|
***
|
|
147
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
|
+
|
|
148
171
|
## 1.5.0
|
|
149
172
|
|
|
150
173
|
### Enhancements:
|