aloha-vue 2.58.0 → 2.59.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 +4 -0
- package/dist/aloha-vue.es.js +4313 -4260
- package/dist/aloha-vue.umd.js +45 -45
- package/package.json +1 -1
- package/src/plugins/AMultiselectOrderedPlugin.js +1 -0
- package/src/plugins/ASelectPlugin.js +5 -4
- package/src/ui/ACheckbox/ACheckbox.js +10 -5
- package/src/ui/AMultiselectOrdered/AMultiselectOrdered.js +13 -7
- package/src/ui/ARadio/ARadio.js +10 -5
- package/src/ui/ASelect/ASelect.js +18 -11
- package/src/ui/ASelect/ASelectValueCloseable/ASelectValueCloseable.js +5 -0
- package/src/ui/ASelect/ASelectValueCloseable/compositionAPI/GroupAPI.js +17 -2
- package/src/ui/ASelect/compositionAPI/SelectedTitleAPI.js +17 -2
- package/src/ui/ASelectIcon/ASelectIcon.js +11 -6
- package/src/ui/ASelectStyle/ASelectStyle.js +11 -6
- package/src/ui/compositionApi/UIDataGroupAPI.js +52 -39
- package/src/ui/compositionApi/__tests__/UIDataGroupAPI.test.js +106 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.59.0
|
|
11
|
+
|
|
12
|
+
- Feature: Add `translateGroup` prop support across multiple components and update APIs to handle translation of group labels
|
|
13
|
+
|
|
10
14
|
## 2.58.0
|
|
11
15
|
|
|
12
16
|
- Feature: Add `key-group` support in `data-extra` for grouped item configurations across multiple components and update translations accordingly
|