aloha-vue 2.47.2 → 2.48.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.
Files changed (72) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/aloha-vue.css +1 -1
  3. package/dist/aloha-vue.es.js +60879 -60151
  4. package/dist/aloha-vue.umd.js +209 -209
  5. package/package.json +1 -1
  6. package/scss/components/ui/ADatepicker.scss +1 -1
  7. package/src/index.js +8 -3
  8. package/src/plugins/ADataRetrievePlugin.js +63 -0
  9. package/src/plugins/ADatepickerPlugin.js +57 -0
  10. package/src/ui/ACheckbox/ACheckbox.js +195 -97
  11. package/src/ui/ACheckbox/ACheckboxItem/ACheckboxItem.js +2 -0
  12. package/src/ui/ACheckbox/i18n/ar.json +1 -0
  13. package/src/ui/ACheckbox/i18n/de.json +1 -0
  14. package/src/ui/ACheckbox/i18n/en.json +1 -0
  15. package/src/ui/ACheckbox/i18n/es.json +1 -0
  16. package/src/ui/ACheckbox/i18n/fr.json +1 -0
  17. package/src/ui/ACheckbox/i18n/hr.json +1 -0
  18. package/src/ui/ACheckbox/i18n/it.json +1 -0
  19. package/src/ui/ACheckbox/i18n/ru.json +1 -0
  20. package/src/ui/ADatepicker/ADatepicker.js +60 -31
  21. package/src/ui/ADatepicker/ADatepickerCalendarPanel/ADatepickerCalendarPanel.js +68 -34
  22. package/src/ui/ADatepicker/compositionAPI/AttributesAPI.js +0 -22
  23. package/src/ui/ADatepicker/compositionAPI/LanguagesAPI.js +13 -7
  24. package/src/ui/ADatepicker/compositionAPI/PlaceholderAPI.js +87 -0
  25. package/src/ui/ADatepicker/compositionAPI/TypeAPI.js +15 -4
  26. package/src/ui/ADatepicker/i18n/ar.json +11 -5
  27. package/src/ui/ADatepicker/i18n/de.json +10 -4
  28. package/src/ui/ADatepicker/i18n/en.json +10 -4
  29. package/src/ui/ADatepicker/i18n/es.json +11 -5
  30. package/src/ui/ADatepicker/i18n/fr.json +11 -5
  31. package/src/ui/ADatepicker/i18n/hr.json +11 -5
  32. package/src/ui/ADatepicker/i18n/it.json +11 -5
  33. package/src/ui/ADatepicker/i18n/ru.json +10 -4
  34. package/src/ui/ADatepicker/panel/APanelTime/APanelTime.js +6 -0
  35. package/src/ui/ADatepicker/panel/APanelTime/compositionAPI/TimesAPI.js +29 -2
  36. package/src/ui/AInputCurrency/AInputCurrency.js +3 -0
  37. package/src/ui/AInputCurrency/compositionAPI/InputEventsAPI.js +2 -2
  38. package/src/ui/AInputCurrency/compositionAPI/UtilsAPI.js +53 -52
  39. package/src/ui/AMultiselectOrdered/AMultiselectOrdered.js +179 -91
  40. package/src/ui/AMultiselectOrdered/AMultiselectOrderedItem/AMultiselectOrderedItem.js +6 -1
  41. package/src/ui/AMultiselectOrdered/i18n/ar.json +2 -1
  42. package/src/ui/AMultiselectOrdered/i18n/de.json +2 -1
  43. package/src/ui/AMultiselectOrdered/i18n/en.json +2 -1
  44. package/src/ui/AMultiselectOrdered/i18n/es.json +2 -1
  45. package/src/ui/AMultiselectOrdered/i18n/fr.json +2 -1
  46. package/src/ui/AMultiselectOrdered/i18n/hr.json +2 -1
  47. package/src/ui/AMultiselectOrdered/i18n/it.json +2 -1
  48. package/src/ui/AMultiselectOrdered/i18n/ru.json +1 -0
  49. package/src/ui/ARadio/ARadio.js +189 -91
  50. package/src/ui/ARadio/ARadioItem/ARadioItem.js +2 -0
  51. package/src/ui/ARadio/i18n/ar.json +1 -0
  52. package/src/ui/ARadio/i18n/de.json +1 -0
  53. package/src/ui/ARadio/i18n/en.json +1 -0
  54. package/src/ui/ARadio/i18n/es.json +1 -0
  55. package/src/ui/ARadio/i18n/fr.json +1 -0
  56. package/src/ui/ARadio/i18n/hr.json +1 -0
  57. package/src/ui/ARadio/i18n/it.json +1 -0
  58. package/src/ui/ARadio/i18n/ru.json +1 -0
  59. package/src/ui/ASelect/ASelect.js +177 -87
  60. package/src/ui/ASelect/ASelectElement/ASelectElement.js +1 -0
  61. package/src/ui/ASelect/ASelectLabelElement/ASelectLabelElement.js +3 -1
  62. package/src/ui/ASelect/ASelectValueCloseable/ASelectValueCloseable.js +6 -1
  63. package/src/ui/ASelect/i18n/ar.json +1 -0
  64. package/src/ui/ASelect/i18n/de.json +4 -3
  65. package/src/ui/ASelect/i18n/en.json +1 -0
  66. package/src/ui/ASelect/i18n/es.json +1 -0
  67. package/src/ui/ASelect/i18n/fr.json +1 -0
  68. package/src/ui/ASelect/i18n/hr.json +1 -0
  69. package/src/ui/ASelect/i18n/it.json +1 -0
  70. package/src/ui/ASelect/i18n/ru.json +1 -0
  71. package/src/ui/compositionApi/UiDataFromServerAPI.js +216 -13
  72. package/src/ui/compositionApi/UiDataWithKeyIdAndLabelAPI.js +78 -37
package/CHANGELOG.md CHANGED
@@ -7,6 +7,18 @@
7
7
  ---
8
8
  # Versions
9
9
 
10
+ ## 2.48.0
11
+
12
+ - Feature: Enhance `ADatepicker` placeholder logic with `isInputFocused` state and improved `PlaceholderAPI` integration. Adjust default `isLabelFloat` prop to `true`.
13
+ - Feature: Add `ADataRetrievePlugin` and examples demonstrating option retrieval with fallback for missing values. Include i18n support and UI updates for retrieve functionality.
14
+
15
+ ## 2.47.3
16
+
17
+ - Fix: Correct model handling when min and max are not set, thousandDivider validator adjusted `AInputCurrency`
18
+ - Fix: Correct display value, when decimal part is not set in `AInputCurrency`
19
+ - Fix: validator for thousandDivider now accepts empty string in `AInputCurrency`
20
+
21
+
10
22
  ## 2.47.2
11
23
 
12
24
  - Fix: Correct model handling when required and the model is empty in `AInputCurrency`
@@ -8911,7 +8911,7 @@ h6 {
8911
8911
  }
8912
8912
 
8913
8913
  .pux_datepicker {
8914
- --a_datepicker_width: 18.75rem;
8914
+ --a_datepicker_width: 100%;
8915
8915
  --a_datepicker_max_width: 100%;
8916
8916
  --a_datepicker_min_width: 7.5rem;
8917
8917
  position: relative;