aloha-vue 2.57.2 → 2.57.4
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 +11 -0
- package/dist/aloha-vue.es.js +12616 -12549
- package/dist/aloha-vue.umd.js +56 -56
- package/package.json +1 -1
- package/src/ATableForm/ATableForm.js +31 -27
- package/src/ATableForm/ATableFormCellAction/ATableFormCellAction.js +34 -7
- package/src/ATableForm/ATableFormCellAction/compositionAPI/DeleteAPI.js +1 -6
- package/src/ATableForm/ATableFormCellAction/compositionAPI/IdsAPI.js +31 -0
- package/src/ATableForm/ATableFormRow/ATableFormRow.js +26 -20
- package/src/ATableForm/ATableFormRow/compositionAPI/EditAPI.js +5 -4
- package/src/ATableForm/compositionAPI/ClassesAPI.js +23 -23
- package/src/ATableForm/compositionAPI/EditAPI.js +119 -107
- package/src/ui/AInputCurrency/AInputCurrency.js +4 -0
- package/src/ui/AInputCurrency/compositionAPI/InputEventsAPI.js +20 -4
- package/src/ui/AInputCurrency/compositionAPI/ModelAPI.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.57.4
|
|
11
|
+
|
|
12
|
+
- Prevent required currency init from resetting empty model
|
|
13
|
+
- Refactor: Rename `classesLocal` to `actionsClassesLocal` in `ClassesAPI` and update references for consistent naming
|
|
14
|
+
- Feature: Add `IdsAPI` for managing button IDs in `ATableFormCellAction` and update related logic for improved focus handling after edit actions
|
|
15
|
+
|
|
16
|
+
## 2.57.3
|
|
17
|
+
|
|
18
|
+
- Refactor: Reorder and add props (`extra`, `actions*`) in `ATableForm` and related components for improved clarity and consistency
|
|
19
|
+
- `UICurrency`: Fix input currency zero key handling
|
|
20
|
+
|
|
10
21
|
## 2.57.2
|
|
11
22
|
|
|
12
23
|
- Refactor: Simplify class names in `ClassesAPI` and update related components in `ATableForm` for consistency.
|