aloha-vue 2.71.0 → 2.73.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 +9 -0
- package/dist/aloha-vue.es.js +7316 -7315
- package/dist/aloha-vue.umd.js +4 -4
- package/package.json +1 -1
- package/src/ATableForm/ATableFormCell/ATableFormCell.js +2 -1
- package/src/ATableForm/ATableFormCellList/ATableFormCellList.js +1 -0
- package/src/ATableForm/ATableFormRow/compositionAPI/EditAPI.js +2 -0
- package/src/ui/AFieldset/AFieldset.js +4 -8
- package/src/ui/AFieldset/__tests__/AFieldset.ClassColumn.test.js +114 -0
- package/src/ui/AForm/AForm.js +15 -15
- package/src/ui/AGroup/AGroup.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.73.0
|
|
11
|
+
|
|
12
|
+
- Feature: Add `classColumn` support in `AFieldset` to apply custom classes directly to child components without a wrapper element, improving layout customization options.
|
|
13
|
+
- Fix: Remove unnecessary `IS_CONTAINER` condition for `modelDependencies` in `AForm`, `AFieldset`, and `AGroup` components to simplify logic.
|
|
14
|
+
|
|
15
|
+
## 2.72.0
|
|
16
|
+
|
|
17
|
+
- Feature: Pass `id` to `updateRowData` and related callbacks in `ATableForm` for improved contextual data handling.
|
|
18
|
+
|
|
10
19
|
## 2.71.0
|
|
11
20
|
|
|
12
21
|
- Feature: Add support for `label`, `requiredPrepend`, and `requiredAppend` slots in `ATableForm` for enhanced content customization.
|