aloha-vue 2.1.12 → 2.2.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 +26 -0
- package/dist/aloha-vue.es.js +7997 -7802
- package/dist/aloha-vue.umd.js +199 -0
- package/package.json +1 -1
- package/src/filters/__tests__/filterDate.test.js +1 -1
- package/src/filters/filterDate.js +1 -1
- package/src/ui/ADatepicker/compositionAPI/EventsAPI.js +1 -1
- package/src/ui/ADatepicker/panel/APanelDate/APanelDate.js +1 -1
- package/src/ui/ADatepicker/utils/index.js +1 -1
- package/src/ui/ADatepickerAlt/ADatepicker.js +1 -1
- package/src/ui/ADatepickerAlt/panel/APanelDate/APanelDate.js +1 -1
- package/src/ui/ADatepickerAlt/utils/index.js +1 -1
- package/src/ui/ASelect/ASelect.js +88 -11
- package/src/ui/ASelect/compositionAPI/DisabledAPI.js +38 -0
- package/src/ui/ASelect/compositionAPI/ExclusiveOptionsAPI.js +45 -0
- package/src/ui/ASelect/compositionAPI/ModelAPI.js +2 -1
- package/src/ui/ASelect/compositionAPI/ModelChangeAPI.js +17 -0
- package/src/ui/ASelect/i18n/ar.json +2 -1
- package/src/ui/ASelect/i18n/de.json +2 -1
- package/src/ui/ASelect/i18n/en.json +2 -1
- package/src/ui/ASelect/i18n/es.json +2 -1
- package/src/ui/ASelect/i18n/fr.json +2 -1
- package/src/ui/ASelect/i18n/hr.json +2 -1
- package/src/ui/ASelect/i18n/it.json +2 -1
- package/src/ui/ASelect/i18n/ru.json +2 -1
- package/src/ui/compositionApi/UiSearchAPI.js +19 -0
- package/src/plugins/AMomentPlugin.js +0 -21
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@
|
|
|
7
7
|
---
|
|
8
8
|
# Versions
|
|
9
9
|
|
|
10
|
+
## 2.2.0
|
|
11
|
+
|
|
12
|
+
### Enhancements:
|
|
13
|
+
- Expanded `ASelect` component by adding three new props:
|
|
14
|
+
- `exclusive-option-label`
|
|
15
|
+
- `exclusive-option-value`
|
|
16
|
+
- `is-exclusive-option-enabled`
|
|
17
|
+
|
|
18
|
+
### Description:
|
|
19
|
+
An exclusive option can be defined as a special choice that, when selected, prevents the selection of any other options or deselects all previously chosen options.
|
|
20
|
+
|
|
21
|
+
## 2.1.13
|
|
22
|
+
|
|
23
|
+
- Fix 2 import from moment.js
|
|
24
|
+
|
|
10
25
|
## 2.1.12
|
|
11
26
|
|
|
12
27
|
- Fix import from moment.js
|
|
@@ -130,6 +145,17 @@
|
|
|
130
145
|
|
|
131
146
|
***
|
|
132
147
|
|
|
148
|
+
## 1.5.0
|
|
149
|
+
|
|
150
|
+
### Enhancements:
|
|
151
|
+
- Expanded `ASelect` component by adding three new props:
|
|
152
|
+
- `exclusive-option-label`
|
|
153
|
+
- `exclusive-option-value`
|
|
154
|
+
- `is-exclusive-option-enabled`
|
|
155
|
+
|
|
156
|
+
### Description:
|
|
157
|
+
An exclusive option can be defined as a special choice that, when selected, prevents the selection of any other options or deselects all previously chosen options.
|
|
158
|
+
|
|
133
159
|
## 1.4.0
|
|
134
160
|
|
|
135
161
|
### New Arguments for `filterSearchHighlight`
|