aloha-vue 2.45.0 → 2.45.2
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.css +13130 -13128
- package/dist/aloha-vue.css.map +1 -1
- package/dist/aloha-vue.es.js +59947 -59932
- package/dist/aloha-vue.umd.js +209 -209
- package/package.json +1 -1
- package/scss/components/APagination.scss +2 -0
- package/src/APagination/APagination.js +23 -26
- package/src/APagination/APaginationCountPerPage/APaginationCountPerPage.js +39 -8
- package/src/APagination/APaginationCountPerPage/compositionAPI/TextsAPI.js +54 -0
- package/src/APagination/compositionAPI/ComponentsAPI.js +13 -41
- package/src/ATable/ATable.js +1163 -1151
- package/src/ATable/compositionAPI/PaginationModesAPI.js +44 -0
- package/scss/components/APaginationPages.scss +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.45.2
|
|
11
|
+
|
|
12
|
+
- Fix: Ensure consistent height for `APagination` links by adding `height: 100%` to styles.
|
|
13
|
+
|
|
14
|
+
## 2.45.1
|
|
15
|
+
|
|
16
|
+
- Feature: Add `TextsAPI` for dynamic text handling in `APaginationCountPerPage`, enabling customizable text properties and translation support.
|
|
17
|
+
- Feature: Add `texts` prop to `APagination` and update `ComponentsAPI` to consume dynamic text settings.
|
|
18
|
+
- Refactor: Move mobile mode handling out of `APagination` into `PaginationModesAPI`, and integrate it into `ATable`.
|
|
19
|
+
- Docs: Update `APagination` props and i18n to include `texts` and clarify the `modes` description.
|
|
20
|
+
|
|
10
21
|
## 2.45.0
|
|
11
22
|
|
|
12
23
|
- Feature: Add `APaginationPages` component and export it, with new documentation pages, examples, and localized translations.
|