aloha-vue 2.6.1 → 2.7.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 +19 -1
- package/dist/aloha-vue.es.js +32680 -32307
- package/dist/aloha-vue.umd.js +67 -67
- package/package.json +1 -1
- package/src/AModalForm/compositionAPI/UpdateModalAPI.js +14 -14
- package/src/index.js +2 -1
- package/src/ui/ACheckbox/ACheckbox.js +71 -21
- package/src/ui/ACheckbox/ACheckboxItem/ACheckboxItem.js +41 -2
- package/src/ui/ACheckbox/compositionAPI/ModelAPI.js +44 -0
- package/src/ui/ACheckboxRadioGroups/ACheckboxRadioGroups.js +8 -0
- package/src/ui/ADatepickerRange/ADatepickerRange.js +2 -0
- package/src/ui/AFieldset/AFieldset.js +2 -1
- package/src/ui/AForm/AForm.js +12 -0
- package/src/ui/AForm/compositionAPI/RequiredAPI.js +36 -31
- package/src/ui/AFormElement/AFormElement.js +145 -0
- package/src/{AFormElement → ui}/AFormElementBtnClear/AFormElementBtnClear.js +0 -0
- package/src/ui/AFormReadonly/AFormReadonly.js +39 -4
- package/src/ui/AFormReadonly/compositionAPI/AttributesAPI.js +72 -0
- package/src/ui/AInputNumberRange/AInputNumberRange.js +1 -0
- package/src/ui/ARadio/ARadio.js +5 -0
- package/src/ui/ARadio/ARadioItem/ARadioItem.js +5 -1
- package/src/ui/ASelect/ASelect.js +8 -0
- package/src/ui/ASelect/ASelectElement/ASelectElement.js +5 -0
- package/src/ui/ASwitch/ASwitch.js +5 -0
- package/src/ui/ASwitch/compositionAPI/LabelAPI.js +32 -27
- package/src/ui/ATemplate/ATemplate.js +75 -4
- package/src/ui/compositionApi/UiDisabledElementAPI.js +30 -26
- package/src/ui/ACheckbox/compositionAPI/ModelObjAPI.js +0 -25
- package/src/ui/AFormReadonly/compositionAPI/LabelAPI.js +0 -16
- /package/src/{AFormElement → ui}/AFormElementBtnClear/compositionAPI/ClearAPI.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.7.1
|
|
11
|
+
|
|
12
|
+
- `ATemplate`: fix `props`
|
|
13
|
+
|
|
14
|
+
## 2.7.0
|
|
15
|
+
|
|
16
|
+
- New component `AFormElement`
|
|
17
|
+
- Props `keyDisabledCallback` for `ASelect`, `ACheckbox`, `ARadio`
|
|
18
|
+
- Fix in `keyDisabledCallback`
|
|
19
|
+
|
|
10
20
|
## 2.6.1
|
|
11
21
|
|
|
12
22
|
- Fix model in AModalForm
|
|
@@ -180,6 +190,14 @@ An exclusive option can be defined as a special choice that, when selected, prev
|
|
|
180
190
|
|
|
181
191
|
***
|
|
182
192
|
|
|
193
|
+
## 1.11.1
|
|
194
|
+
|
|
195
|
+
- Fix in `keyDisabledCallback`
|
|
196
|
+
|
|
197
|
+
## 1.11.0
|
|
198
|
+
|
|
199
|
+
- Props `keyDisabledCallback` for `ASelect`, `ACheckbox`, `ARadio`
|
|
200
|
+
|
|
183
201
|
## 1.10.1
|
|
184
202
|
|
|
185
203
|
- `filterJson`: fix for `jsonClass`
|
|
@@ -190,7 +208,7 @@ An exclusive option can be defined as a special choice that, when selected, prev
|
|
|
190
208
|
|
|
191
209
|
## 1.9.2
|
|
192
210
|
|
|
193
|
-
-
|
|
211
|
+
- Fix padding for `a_search_highlight`
|
|
194
212
|
|
|
195
213
|
## 1.9.1
|
|
196
214
|
|