aloha-vue 2.57.4 → 2.57.5
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 +7 -0
- package/dist/aloha-vue.es.js +9722 -9673
- package/dist/aloha-vue.umd.js +51 -51
- package/package.json +1 -1
- package/src/AButton/AButton.js +275 -270
- package/src/AElement/AElement.js +23 -11
- package/src/AElement/{comositionAPI → compositionAPI}/AttributesAPI.js +51 -51
- package/src/AElement/{comositionAPI → compositionAPI}/ClickAPI.js +30 -30
- package/src/AElement/{comositionAPI → compositionAPI}/ComponentLocalAPI.js +23 -23
- package/src/AElement/{comositionAPI → compositionAPI}/DisabledAPI.js +22 -22
- package/src/AElement/{comositionAPI → compositionAPI}/HtmlTitleAPI.js +33 -33
- package/src/AElement/compositionAPI/KeydownAPI.js +35 -0
- package/src/AElement/{comositionAPI → compositionAPI}/LoadingAPI.js +22 -22
- package/src/AElement/{comositionAPI → compositionAPI}/RouterLinkAPI.js +20 -20
- package/src/AElement/{comositionAPI → compositionAPI}/SwitchAPI.js +33 -33
- package/src/AElement/{comositionAPI → compositionAPI}/TagAPI.js +34 -34
- package/src/AElement/{comositionAPI → compositionAPI}/TextAPI.js +78 -78
- package/src/AElement/{comositionAPI → compositionAPI}/TitleAPI.js +29 -29
- package/src/ALink/ALink.js +253 -248
- package/src/ATableForm/ATableForm.js +5 -0
- package/src/ATableForm/ATableFormCellAction/compositionAPI/DeleteAPI.js +5 -0
- package/src/ATableForm/ATableFormCellDnd/ATableFormCellDnd.js +2 -0
- package/src/ATableForm/ATableFormTh/ATableFormTh.js +0 -6
- package/src/ATableForm/compositionAPI/ColumnsGrowAPI.js +4 -1
- package/src/ATableForm/compositionAPI/DeleteAPI.js +2 -2
- package/src/ATableForm/compositionAPI/DragAndDropAPI.js +24 -14
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.57.5
|
|
11
|
+
|
|
12
|
+
- Feature: Pass `rowId` and `btnDeleteId` in `onDeleteRow` emit and update `DeleteAPI` for enhanced deletion context in `ATableForm`
|
|
13
|
+
- Feature: Add `focusAfterMove` prop in `ATableForm` and update `DragAndDropAPI` to support focus management after row movements
|
|
14
|
+
- Add preventKeyboardRepeat: Introduce `preventKeyboardRepeat` prop to AElement-related components and enhance keydown handling logic to prevent repeated activations.
|
|
15
|
+
- Adjust ColumnsGrowAPI: Introduce TABLE_WIDTH_SAFE_DELTA to prevent subpixel overflow and avoid unnecessary scrollbar rendering.
|
|
16
|
+
|
|
10
17
|
## 2.57.4
|
|
11
18
|
|
|
12
19
|
- Prevent required currency init from resetting empty model
|