aloha-vue 2.63.1 → 2.65.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 +12 -0
- package/dist/aloha-vue.es.js +17452 -17178
- package/dist/aloha-vue.umd.js +66 -66
- package/package.json +1 -1
- package/src/ATableForm/ATableFormCell/ATableFormCell.js +28 -7
- package/src/ATableForm/ATableFormCell/compositionAPI/DisabledAPI.js +5 -2
- package/src/ATableForm/ATableFormCell/compositionAPI/ReadonlyAPI.js +6 -3
- package/src/ATableForm/ATableFormCellList/ATableFormCellList.js +127 -122
- package/src/ATableForm/ATableFormCellList/compositionAPI/DataAPI.js +18 -2
- package/src/ATableForm/ATableFormRow/ATableFormRow.js +14 -12
- package/src/ATableForm/__tests__/ATableForm.ListView.test.js +350 -222
- package/src/ATableForm/utils/getFormElement.js +32 -0
- package/src/plugins/ASelectPlugin.js +4 -3
- package/src/ui/AInputCurrency/AInputCurrency.js +2 -0
- package/src/ui/AInputCurrency/compositionAPI/InputEventsAPI.js +3 -2
- package/src/ui/AInputCurrency/compositionAPI/UtilsAPI.js +16 -3
- package/src/ui/ASelect/ASelect.js +300 -131
- package/src/ui/ASelect/__tests__/SelectedFirstAPI.test.js +101 -0
- package/src/ui/ASelect/__tests__/SelectedVisibleAPI.test.js +98 -0
- package/src/ui/ASelect/compositionAPI/SelectedFirstAPI.js +78 -0
- package/src/ui/ASelect/compositionAPI/SelectedVisibleAPI.js +76 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.65.0
|
|
11
|
+
|
|
12
|
+
- Feature: Add `showSelectedFirst` prop to `ASelect` for prioritizing selected options, update documentation, examples, localization, and add comprehensive tests
|
|
13
|
+
|
|
14
|
+
## 2.64.0
|
|
15
|
+
|
|
16
|
+
- Feature: Add `formElementEditPropsCallback` support to `ATableForm` for row-specific form element properties in edit mode, update examples, localization, and related tests
|
|
17
|
+
|
|
18
|
+
## 2.63.2
|
|
19
|
+
|
|
20
|
+
- Fix: Correct `AInputCurrency` formatting for decimal strings received from external models
|
|
21
|
+
|
|
10
22
|
## 2.63.1
|
|
11
23
|
|
|
12
24
|
- Fix: Swap "Save" and "Cancel" button attributes in `ATableFormCellAction` for consistent behavior and alignment with action logic
|