aloha-vue 2.2.0 → 2.3.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 +27 -0
- package/dist/aloha-vue.es.js +8684 -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 +21 -3
- package/src/index.js +7 -0
- package/src/ui/ASelect/ASelect.js +15 -2
- package/src/ui/ASelect/compositionAPI/ToggleAPI.js +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.3.1
|
|
11
|
+
|
|
12
|
+
- Fix: import `APopupAPI` and functions
|
|
13
|
+
|
|
14
|
+
## 2.3.0
|
|
15
|
+
|
|
16
|
+
- `AModal`: don't close modal if popup opened
|
|
17
|
+
- `AAlert`: new props ariaAtomic and role
|
|
18
|
+
- `AHttpAPI`: ignoreErrorHandler as function
|
|
19
|
+
- `ASelect`: Fixed validator for isExclusiveOptionEnabled.
|
|
20
|
+
|
|
10
21
|
## 2.2.0
|
|
11
22
|
|
|
12
23
|
### Enhancements:
|
|
@@ -145,6 +156,22 @@ An exclusive option can be defined as a special choice that, when selected, prev
|
|
|
145
156
|
|
|
146
157
|
***
|
|
147
158
|
|
|
159
|
+
## 1.8.0
|
|
160
|
+
|
|
161
|
+
- `AModal`: don't close modal if popup opened
|
|
162
|
+
|
|
163
|
+
## 1.7.0
|
|
164
|
+
|
|
165
|
+
- `AAlert`: new props ariaAtomic and role
|
|
166
|
+
|
|
167
|
+
## 1.6.0
|
|
168
|
+
|
|
169
|
+
- `AHttpAPI`: ignoreErrorHandler as function
|
|
170
|
+
|
|
171
|
+
## 1.5.1
|
|
172
|
+
|
|
173
|
+
- `ASelect`: Fixed validator for isExclusiveOptionEnabled.
|
|
174
|
+
|
|
148
175
|
## 1.5.0
|
|
149
176
|
|
|
150
177
|
### Enhancements:
|