aloha-vue 2.65.0 → 2.66.1
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 +8 -0
- package/dist/aloha-vue.es.js +8980 -8917
- package/dist/aloha-vue.umd.js +50 -50
- package/package.json +1 -1
- package/src/compositionAPI/AFiltersAPI.js +178 -164
- package/src/filters/__tests__/filterValueByCondition.test.js +94 -0
- package/src/filters/filterValueByCondition.js +87 -0
- package/src/index.js +1 -0
- package/src/ui/ADatepicker/ADatepicker.js +5 -4
- package/src/ui/ADatepickerAlt/ADatepicker.js +1 -0
- package/src/ui/ADatepickerRange/ADatepickerRange.js +15 -12
- package/src/ui/AInputCurrency/AInputCurrency.js +4 -3
- package/src/ui/AInputFile/AInputFile.js +5 -4
- package/src/ui/AInputNumber/AInputNumber.js +10 -8
- package/src/ui/AInputNumberRange/AInputNumberRange.js +15 -12
- package/src/ui/ASelect/ASelect.js +5 -4
- package/src/ui/ASwitch/ASwitch.js +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.66.1
|
|
11
|
+
|
|
12
|
+
- Fix: Add `extra` prop support to `ALabel` across multiple components (`AInputFile`, `AInputNumber`, `ASelect`, `ADatepicker`, etc.), enabling enhanced label customization
|
|
13
|
+
|
|
14
|
+
## 2.66.0
|
|
15
|
+
|
|
16
|
+
- Add `filterValueByCondition` function: Implement utility function to resolve values based on conditional logic. Add multilingual documentation, examples, and unit tests for comprehensive coverage.
|
|
17
|
+
|
|
10
18
|
## 2.65.0
|
|
11
19
|
|
|
12
20
|
- Feature: Add `showSelectedFirst` prop to `ASelect` for prioritizing selected options, update documentation, examples, localization, and add comprehensive tests
|