aloha-vue 2.28.3 → 2.29.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 (263) hide show
  1. package/CHANGELOG.md +691 -674
  2. package/dist/aloha-vue.es.js +15165 -14889
  3. package/dist/aloha-vue.umd.js +65 -65
  4. package/package.json +99 -99
  5. package/scss/_base.scss +62 -62
  6. package/scss/aloha-vue.scss +67 -67
  7. package/scss/components/AFilters.scss +304 -304
  8. package/scss/components/AFormElement/AValidatedJson.scss +3 -3
  9. package/scss/components/AMenu.scss +610 -610
  10. package/scss/components/AModal.scss +42 -42
  11. package/scss/components/APagination.scss +152 -152
  12. package/scss/components/ARate.scss +78 -78
  13. package/scss/components/AResizer.scss +63 -63
  14. package/scss/components/ATable.scss +817 -817
  15. package/scss/components/AVerticalScroll.scss +47 -47
  16. package/scss/components/AWizard.scss +669 -669
  17. package/scss/components/ui/ADatepicker.scss +329 -329
  18. package/scss/components/ui/ADatepickerRange.scss +45 -45
  19. package/scss/components/ui/AInputNumber.scss +62 -62
  20. package/scss/components/ui/AInputNumberRange.scss +30 -30
  21. package/scss/components/ui/ASelect.scss +196 -196
  22. package/scss/components/ui/ASwitch.scss +120 -120
  23. package/scss/components/ui/ui.scss +224 -224
  24. package/scss/text/text_alignment.scss +39 -39
  25. package/scss/text/text_transform.scss +51 -51
  26. package/scss/text/text_wrapping.scss +40 -40
  27. package/scss/utils/badge.scss +45 -45
  28. package/scss/utils/dropdown.scss +114 -114
  29. package/scss/utils/list.scss +75 -75
  30. package/scss/utils/modal.scss +166 -166
  31. package/scss/utils/sizing.scss +137 -137
  32. package/scss/utils/tooltip.scss +63 -63
  33. package/src/AAlert/AAlert.js +206 -206
  34. package/src/AAlert/i18n/AAlertI18n.js +19 -19
  35. package/src/AAlert/i18n/ar.json +2 -2
  36. package/src/AAlert/i18n/de.json +2 -2
  37. package/src/AAlert/i18n/en.json +2 -2
  38. package/src/AAlert/i18n/es.json +2 -2
  39. package/src/AAlert/i18n/fr.json +2 -2
  40. package/src/AAlert/i18n/hr.json +2 -2
  41. package/src/AAlert/i18n/it.json +2 -2
  42. package/src/AAlert/i18n/ru.json +2 -2
  43. package/src/ACarousel/ACarousel.js +361 -352
  44. package/src/ACarousel/ACarouselBtn/ACarouselBtn.js +75 -75
  45. package/src/ACarousel/ACarouselBtn/compositionAPI/ClassAPI.js +16 -16
  46. package/src/ACarousel/ACarouselBtn/compositionAPI/TextAPI.js +25 -25
  47. package/src/ACarousel/ACarouselControls/ACarouselControls.js +114 -114
  48. package/src/ACarousel/ACarouselControls/ACarouselControlsIndicator/ACarouselControlsIndicator.js +146 -146
  49. package/src/ACarousel/ACarouselControls/ACarouselControlsIndicator/compositionAPI/ActiveAPI.js +33 -33
  50. package/src/ACarousel/ACarouselControls/ACarouselControlsIndicator/compositionAPI/AttributesAPI.js +40 -40
  51. package/src/ACarousel/ACarouselControls/ACarouselControlsIndicator/compositionAPI/EventsAPI.js +25 -25
  52. package/src/ACarousel/ACarouselControls/ACarouselControlsIndicator/compositionAPI/IconAPI.js +20 -20
  53. package/src/ACarousel/ACarouselControls/compositionAPI/AriaLabelAPI.js +20 -20
  54. package/src/ACarousel/ACarouselItem/ACarouselItem.js +83 -83
  55. package/src/ACarousel/ACarouselItem/compositionAPI/AttributesAPI.js +39 -39
  56. package/src/ACarousel/ACarouselItem/compositionAPI/IsActiveAPI.js +21 -21
  57. package/src/ACarousel/compositionAPI/ActiveAPI.js +111 -92
  58. package/src/ACarousel/compositionAPI/AriaLabelAPI.js +25 -25
  59. package/src/ACarousel/compositionAPI/ArrowsAPI.js +17 -17
  60. package/src/ACarousel/compositionAPI/ClassAPI.js +44 -44
  61. package/src/ACarousel/compositionAPI/DataAPI.js +41 -41
  62. package/src/ACarousel/compositionAPI/IndicatorsAPI.js +148 -148
  63. package/src/ACarousel/compositionAPI/TextsAPI.js +25 -25
  64. package/src/ACarousel/i18n/ACarouselI18n.js +19 -19
  65. package/src/ACarousel/i18n/ar.json +8 -8
  66. package/src/ACarousel/i18n/de.json +8 -8
  67. package/src/ACarousel/i18n/en.json +8 -8
  68. package/src/ACarousel/i18n/es.json +8 -8
  69. package/src/ACarousel/i18n/fr.json +8 -8
  70. package/src/ACarousel/i18n/hr.json +8 -8
  71. package/src/ACarousel/i18n/it.json +8 -8
  72. package/src/ACarousel/i18n/ru.json +8 -8
  73. package/src/AFilters/i18n/ar.json +30 -30
  74. package/src/AFilters/i18n/en.json +30 -30
  75. package/src/AFilters/i18n/es.json +30 -30
  76. package/src/AFilters/i18n/fr.json +30 -30
  77. package/src/AFilters/i18n/hr.json +30 -30
  78. package/src/AFilters/i18n/it.json +30 -30
  79. package/src/AFilters/i18n/ru.json +30 -30
  80. package/src/AMenu/AMenu.js +560 -560
  81. package/src/AMenu/AMenuButtonToggle/AMenuButtonToggle.js +88 -88
  82. package/src/AMenu/AMenuButtonToggle/compositionAPI/ToggleAPI.js +95 -95
  83. package/src/AMenu/AMenuPanelLink/AMenuPanelLink.js +250 -250
  84. package/src/AModal/AModal.js +515 -515
  85. package/src/APagination/i18n/ar.json +12 -12
  86. package/src/APagination/i18n/es.json +12 -12
  87. package/src/APagination/i18n/fr.json +12 -12
  88. package/src/APagination/i18n/hr.json +12 -12
  89. package/src/APagination/i18n/it.json +12 -12
  90. package/src/APagination/i18n/ru.json +12 -12
  91. package/src/ATable/ATable.js +1137 -1137
  92. package/src/ATable/ATableSortingAdditional/__tests__/ATableSortingAdditional.ModelAPI.test.js +200 -200
  93. package/src/ATable/ATableSortingAdditional/compositionAPI/ModelAPI.js +150 -150
  94. package/src/ATranslation/compositionAPI/UtilsAPI.js +187 -187
  95. package/src/compositionAPI/AEventOutsideAPI.js +46 -46
  96. package/src/compositionAPI/ARemPxAPI.js +23 -23
  97. package/src/compositionAPI/FocusByDestroyAPI.js +67 -67
  98. package/src/const/AKeys.js +8 -8
  99. package/src/directives/AOnHooks.js +0 -0
  100. package/src/i18n/allLanguages.js +350 -350
  101. package/src/i18n/ar.json +4 -4
  102. package/src/i18n/de.json +4 -4
  103. package/src/i18n/en.json +4 -4
  104. package/src/i18n/es.json +4 -4
  105. package/src/i18n/fr.json +4 -4
  106. package/src/i18n/hr.json +4 -4
  107. package/src/i18n/it.json +4 -4
  108. package/src/i18n/ru.json +4 -4
  109. package/src/index.js +337 -336
  110. package/src/plugins/AAlertPlugin.js +51 -51
  111. package/src/plugins/ACarouselPlugin.js +34 -34
  112. package/src/plugins/AInputCurrencyPlugin.js +31 -31
  113. package/src/plugins/ASelectPlugin.js +54 -54
  114. package/src/plugins/ASelectStylesPlugin.js +2315 -2315
  115. package/src/temp/px_to_rem_mapping_1_to_800.md +802 -802
  116. package/src/ui/ACheckbox/ACheckbox.js +851 -837
  117. package/src/ui/ACheckbox/ACheckboxItem/ACheckboxItem.js +0 -0
  118. package/src/ui/ACheckboxRadioGroups/ACheckboxRadioGroups.js +0 -0
  119. package/src/ui/ADatepicker/ADatepicker.js +741 -731
  120. package/src/ui/ADatepickerRange/ADatepickerRange.js +531 -517
  121. package/src/ui/AErrors/AErrors.js +149 -149
  122. package/src/ui/AErrors/AErrorsElement/AErrorsElement.js +0 -0
  123. package/src/ui/AErrors/i18n/AErrorsI18n.js +19 -19
  124. package/src/ui/AErrors/i18n/ar.json +3 -3
  125. package/src/ui/AErrors/i18n/de.json +2 -2
  126. package/src/ui/AErrors/i18n/en.json +3 -3
  127. package/src/ui/AErrors/i18n/es.json +3 -3
  128. package/src/ui/AErrors/i18n/fr.json +3 -3
  129. package/src/ui/AErrors/i18n/hr.json +3 -3
  130. package/src/ui/AErrors/i18n/it.json +3 -3
  131. package/src/ui/AErrors/i18n/ru.json +3 -3
  132. package/src/ui/AErrorsText/AErrorsText.js +0 -0
  133. package/src/ui/AFieldset/AFieldset.js +504 -491
  134. package/src/ui/AFieldset/compositionAPI/ModelAPI.js +54 -55
  135. package/src/ui/AForm/AForm.js +0 -0
  136. package/src/ui/AFormElement/AFormElement.js +150 -145
  137. package/src/ui/AFormElementBtnClear/AFormElementBtnClear.js +86 -86
  138. package/src/ui/AFormElementBtnClear/i18n/AFormElementBtnClearI18n.js +19 -19
  139. package/src/ui/AFormElementBtnClear/i18n/ar.json +2 -2
  140. package/src/ui/AFormElementBtnClear/i18n/de.json +2 -2
  141. package/src/ui/AFormElementBtnClear/i18n/en.json +2 -2
  142. package/src/ui/AFormElementBtnClear/i18n/es.json +2 -2
  143. package/src/ui/AFormElementBtnClear/i18n/fr.json +2 -2
  144. package/src/ui/AFormElementBtnClear/i18n/hr.json +2 -2
  145. package/src/ui/AFormElementBtnClear/i18n/it.json +2 -2
  146. package/src/ui/AFormElementBtnClear/i18n/ru.json +2 -2
  147. package/src/ui/AFormHelpText/AFormHelpText.js +37 -37
  148. package/src/ui/AFormLabelDescription/AFormLabelDescription.js +43 -0
  149. package/src/ui/AFormReadonly/AFormReadonly.js +193 -188
  150. package/src/ui/AGroup/AGroup.js +0 -0
  151. package/src/ui/AInput/AInput.js +475 -460
  152. package/src/ui/AInputCurrency/AInputCurrency.js +592 -577
  153. package/src/ui/AInputCurrency/compositionAPI/InputEventsAPI.js +649 -649
  154. package/src/ui/AInputFile/AInputFile.js +246 -235
  155. package/src/ui/AInputNumber/AInputNumber.js +479 -469
  156. package/src/ui/AInputNumberRange/AInputNumberRange.js +511 -497
  157. package/src/ui/AJson/AJson.js +428 -414
  158. package/src/ui/ALabel/ALabel.js +0 -0
  159. package/src/ui/AMultiselectOrdered/AMultiselectOrdered.js +842 -827
  160. package/src/ui/AOneCheckbox/AOneCheckbox.js +0 -0
  161. package/src/ui/ARadio/ARadio.js +841 -827
  162. package/src/ui/ARadio/ARadioItem/ARadioItem.js +0 -0
  163. package/src/ui/ARequired/ARequired.js +0 -0
  164. package/src/ui/ARouterLinkConfig/ARouterLinkConfig.js +337 -331
  165. package/src/ui/ARouterLinkConfig/compositionAPI/ModelLocalAPI.js +69 -57
  166. package/src/ui/ASelect/ASelect.js +1188 -1173
  167. package/src/ui/ASelect/ASelectElement/ASelectElement.js +0 -0
  168. package/src/ui/ASelect/ASelectValueCloseable/ASelectValueCloseable.js +88 -88
  169. package/src/ui/ASelect/ASelectValueCloseable/compositionAPI/CloseAPI.js +28 -28
  170. package/src/ui/ASelect/ASelectValueCloseable/compositionAPI/LabelAPI.js +20 -20
  171. package/src/ui/ASelect/compositionAPI/ToggleAPI.js +255 -255
  172. package/src/ui/ASelect/i18n/ar.json +9 -9
  173. package/src/ui/ASelect/i18n/de.json +9 -9
  174. package/src/ui/ASelect/i18n/en.json +9 -9
  175. package/src/ui/ASelect/i18n/es.json +9 -9
  176. package/src/ui/ASelect/i18n/fr.json +9 -9
  177. package/src/ui/ASelect/i18n/hr.json +9 -9
  178. package/src/ui/ASelect/i18n/it.json +9 -9
  179. package/src/ui/ASelect/i18n/ru.json +9 -9
  180. package/src/ui/ASelectIcon/ASelectIcon.js +392 -403
  181. package/src/ui/ASelectStyle/ASelectStyle.js +397 -392
  182. package/src/ui/ASelectStyle/compositionAPI/DataAPI.js +68 -68
  183. package/src/ui/ASelectStyle/compositionAPI/EventsAPI.js +24 -24
  184. package/src/ui/ASelectStyle/compositionAPI/KeyLabelCallbackAPI.js +15 -15
  185. package/src/ui/ASelectStyle/compositionAPI/TypeAPI.js +24 -24
  186. package/src/ui/ASelectStyle/i18n/ASelectStyleI18n.js +19 -19
  187. package/src/ui/ASelectStyle/i18n/it.json +281 -281
  188. package/src/ui/ASelectStyle/i18n/ru.json +281 -281
  189. package/src/ui/ASwitch/ASwitch.js +410 -396
  190. package/src/ui/ATemplate/ATemplate.js +0 -0
  191. package/src/ui/ATextarea/ATextarea.js +414 -399
  192. package/src/ui/AUiComponents.js +57 -57
  193. package/src/ui/AUiContainerComponents.js +12 -12
  194. package/src/ui/AValidatedJson/AValidatedJson.js +585 -587
  195. package/src/ui/AValidatedJson/AValidatedJsonItem/AValidatedJsonItem.js +276 -276
  196. package/src/ui/AValidatedJson/AValidatedJsonItem/compositionAPI/DeleteAPI.js +63 -63
  197. package/src/ui/AValidatedJson/AValidatedJsonItem/compositionAPI/DetailsAPI.js +59 -59
  198. package/src/ui/AValidatedJson/AValidatedJsonItem/compositionAPI/LabelAPI.js +36 -36
  199. package/src/ui/AValidatedJson/AValidatedJsonItem/compositionAPI/MoveAPI.js +50 -50
  200. package/src/ui/AValidatedJson/AValidatedJsonItem/compositionAPI/UpdateAPI.js +48 -48
  201. package/src/ui/AValidatedJson/AValidatedJsonModalCreateOrUpdate/AValidatedJsonModalCreateOrUpdate.js +146 -146
  202. package/src/ui/AValidatedJson/AValidatedJsonModalCreateOrUpdate/composiitionAPI/DataFormAPI.js +69 -69
  203. package/src/ui/AValidatedJson/AValidatedJsonModalCreateOrUpdate/composiitionAPI/DisabledAPI.js +35 -31
  204. package/src/ui/AValidatedJson/AValidatedJsonModalCreateOrUpdate/composiitionAPI/ModelAPI.js +31 -31
  205. package/src/ui/AValidatedJson/AValidatedJsonModalCreateOrUpdate/composiitionAPI/SaveAPI.js +120 -120
  206. package/src/ui/AValidatedJson/AValidatedJsonModalCreateOrUpdate/composiitionAPI/TextAPI.js +25 -25
  207. package/src/ui/AValidatedJson/compositionAPI/AttributesAPI.js +15 -15
  208. package/src/ui/AValidatedJson/compositionAPI/ChildrenAPI.js +70 -70
  209. package/src/ui/AValidatedJson/compositionAPI/EventsAPI.js +24 -24
  210. package/src/ui/AValidatedJson/compositionAPI/JsonModeAPI.js +100 -100
  211. package/src/ui/AValidatedJson/compositionAPI/ListModeAPI.js +139 -118
  212. package/src/ui/AValidatedJson/compositionAPI/ModelAPI.js +36 -39
  213. package/src/ui/AValidatedJson/compositionAPI/SingleModeAPI.js +112 -82
  214. package/src/ui/AValidatedJson/compositionAPI/TranslateAPI.js +22 -22
  215. package/src/ui/AValidatedJson/i18n/AValidatedJsonI18n.js +19 -19
  216. package/src/ui/AValidatedJson/i18n/ar.json +3 -3
  217. package/src/ui/AValidatedJson/i18n/de.json +21 -21
  218. package/src/ui/AValidatedJson/i18n/en.json +3 -3
  219. package/src/ui/AValidatedJson/i18n/es.json +3 -3
  220. package/src/ui/AValidatedJson/i18n/fr.json +3 -3
  221. package/src/ui/AValidatedJson/i18n/hr.json +3 -3
  222. package/src/ui/AValidatedJson/i18n/it.json +3 -3
  223. package/src/ui/AValidatedJson/i18n/ru.json +6 -6
  224. package/src/ui/UiValidatedJson/ModalCreateOrUpdate/ModalCreateOrUpdate.js +264 -264
  225. package/src/ui/UiValidatedJson/ModalCreateOrUpdate/ModalCreateOrUpdate.pug +31 -31
  226. package/src/ui/UiValidatedJson/ModalCreateOrUpdate/ModalCreateOrUpdate.vue +2 -2
  227. package/src/ui/UiValidatedJson/ModeJson/ModeJson.js +69 -69
  228. package/src/ui/UiValidatedJson/ModeJson/ModeJson.pug +1 -1
  229. package/src/ui/UiValidatedJson/ModeJson/ModeJson.vue +2 -2
  230. package/src/ui/UiValidatedJson/ModeList/ModeList.js +58 -58
  231. package/src/ui/UiValidatedJson/ModeList/ModeList.pug +1 -1
  232. package/src/ui/UiValidatedJson/ModeList/ModeList.vue +2 -2
  233. package/src/ui/UiValidatedJson/ModeSingle/ModeSingle.js +14 -14
  234. package/src/ui/UiValidatedJson/ModeSingle/ModeSingle.pug +19 -19
  235. package/src/ui/UiValidatedJson/ModeSingle/ModeSingle.vue +2 -2
  236. package/src/ui/UiValidatedJson/UiValidatedJson.js +61 -61
  237. package/src/ui/UiValidatedJson/UiValidatedJson.pug +44 -44
  238. package/src/ui/UiValidatedJson/UiValidatedJson.vue +2 -2
  239. package/src/ui/UiValidatedJson/UiValidatedJsonMixin.js +82 -82
  240. package/src/ui/UiValidatedJson/UiValidatedJsonModeManyEditMixin.js +147 -147
  241. package/src/ui/UiValidatedJson/UiValidatedJsonModeManyEditMixin.pug +109 -109
  242. package/src/ui/UiValidatedJson/UiValidatedJsonModeManyMixin.js +270 -270
  243. package/src/ui/UiValidatedJson/UiValidatedJsonModeMixin.js +36 -36
  244. package/src/ui/UiValidatedJson/UiValidatedJsonModeSingleMixin.js +77 -77
  245. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeJsonReadOnly/ModeJsonReadOnly.js +30 -30
  246. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeJsonReadOnly/ModeJsonReadOnly.pug +1 -1
  247. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeJsonReadOnly/ModeJsonReadOnly.vue +2 -2
  248. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeListReadOnly/ModeListReadOnly.js +30 -30
  249. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeListReadOnly/ModeListReadOnly.pug +1 -1
  250. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeListReadOnly/ModeListReadOnly.vue +2 -2
  251. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeSingleReadOnly/ModeSingleReadOnly.js +19 -19
  252. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeSingleReadOnly/ModeSingleReadOnly.pug +15 -15
  253. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/ModeSingleReadOnly/ModeSingleReadOnly.vue +2 -2
  254. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/UiValidatedJsonReadOnly.js +38 -38
  255. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/UiValidatedJsonReadOnly.pug +25 -25
  256. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/UiValidatedJsonReadOnly.vue +2 -2
  257. package/src/ui/UiValidatedJson/UiValidatedJsonReadOnly/UiValidatedJsonReadonlyModeManyMixin.pug +43 -43
  258. package/src/ui/UiValidatedJson/compositionAPI/UiValidatedJsonErrorLabelsAPI.js +10 -10
  259. package/src/ui/compositionApi/UiAPI.js +152 -144
  260. package/src/ui/const/AUiTypes.js +69 -69
  261. package/src/ui/mixins/UiMixinProps.js +124 -119
  262. package/src/ui/utils/utils.js +79 -79
  263. package/src/utils/actions.js +65 -65
package/CHANGELOG.md CHANGED
@@ -1,674 +1,691 @@
1
- ![npm (scoped)](https://img.shields.io/npm/v/aloha-vue?label=NPM)
2
- ![NPM](https://img.shields.io/npm/l/aloha-vue?label=License)
3
- ![npm](https://img.shields.io/npm/dt/aloha-vue?label=Downloads)
4
-
5
- ![Aloha Framework logo](.images/aloha_logo.png)
6
-
7
- ---
8
- # Versions
9
-
10
- ## 2.28.3
11
-
12
- - Refactor: Update component mappings to include `AValidatedJson` only in `AUiComponents`
13
-
14
-
15
- ## 2.28.2
16
-
17
- - Add `AValidatedJson` to `AFieldset` and ´AUiContainerComponents´ for extended component support.
18
-
19
- ## 2.28.1
20
-
21
- - Refactor `ACarousel`: Introduce `ArrowsAPI` to manage arrow visibility logic and update related components for improved reusability and maintainability.
22
-
23
- ## 2.28.0
24
-
25
- - Add component `AValidatedJson`
26
-
27
- ## 2.27.1
28
-
29
- - Fix casing in `ARemPxAPI` export path for consistency with compositionAPI folder structure.
30
-
31
- ## 2.27.0
32
-
33
- - Refactor `SCSS`: Convert all pixel-based units to `rem`
34
- - Refactor `ACarousel`: Introduce rem-based unit mapping for consistent scaling, integrate global `ARemPxAPI`, and update `ACarousel` `SCSS`, composition APIs, and plugins accordingly.
35
-
36
- ## 2.26.0
37
-
38
- - Refactor `ACarousel` controls: introduce `ACarouselControlsIndicator` component, update related indicators handling logic, and add support for nested children and new margin property.
39
-
40
- ## 2.25.2
41
-
42
- - Add `AValidatedJson` list mode functionality with composition API
43
-
44
- ## 2.25.1
45
-
46
- - Added selector-close for AMenu, to set focus on a desired element after the menu close
47
- - Added integerPartMaxLength prop for AInputCurrency to set custom length for integer part of the value
48
- - Minor fixes to AInputCurrency
49
-
50
- ## 2.25.0
51
-
52
- - Add button style groups and translations to `ASelectStyle`, update plugin and documentation
53
-
54
- ## 2.24.0
55
-
56
- - Add new component `ASelectStyle` with docu
57
-
58
- ## 2.23.0
59
-
60
- - Documentation `CSS`: `Text`
61
- - Refactor `ACarousel` styles
62
- - Add `text_line_through` and `text_decoration_none` utilities for text decoration styling
63
- - Add `text_justify` utility for text alignment and responsive breakpoint support in text styles
64
- - Add `text_clamp` utility to support multiline text truncation with CSS clamp technique
65
-
66
- ## 2.22.0
67
-
68
- - Documentation `AElement`
69
- - Add-ons for `ACarousel`
70
- - `indicators-type`: `squares`
71
- - `indicatorsAutoLimit`
72
- - `indicatorsLimit`
73
- - `indicatorWidth`
74
-
75
- ## 2.21.5
76
-
77
- - Adjust padding-right in `ASelect` dropdown for improved spacing.
78
-
79
- ## 2.21.4
80
-
81
- - Fix toggle behavior in `ASelect` to prevent premature closing when interacting with HTML elements
82
-
83
- ## 2.21.3
84
-
85
- - Fix: ATable, Sorting for columns defect
86
-
87
- ## 2.21.2
88
-
89
- - Refactor badge `SCSS` variables for `.a_badge` to use consistent naming convention
90
-
91
- ## 2.21.1
92
-
93
- - Broken version
94
-
95
- ## 2.21.0
96
-
97
- - Add badge styles, documentation, and localization
98
-
99
- ## 2.20.0
100
-
101
- - Feature: Introduced `pagination.position` (`top`, `bottom`, `y`) for `ATable`
102
-
103
- ## 2.19.1
104
-
105
- - Fix translation in `AErrors`
106
-
107
- ## 2.19.0
108
-
109
- - Translations: `AErrors`, `AAlert`, `APagination`, `AFilters`, `AFormElementBtnClear`
110
-
111
- ## 2.18.0
112
-
113
- - Add Props: `useFlatModel` for `AForm`, `AModalForm`, `AFieldset`, `AGroup`
114
-
115
- ## 2.17.0
116
-
117
- - Add props: `useFlatErrors` for `AForm`, `AModalForm`, `AErrors`, `AFieldset`, `AGroup`
118
-
119
- ## 2.16.0
120
-
121
- - New component: `ACarousel`
122
-
123
- ## 2.15.0
124
-
125
- - Add a new function `getTranslatedAttributes`
126
- - `AModal`: Fix Styles
127
-
128
- ## 2.14.1
129
-
130
- - `ASelectValueCloseable`: Fix in close function
131
-
132
- ## 2.14.0
133
-
134
- - Change Styles for `Errors`, `Legend` and `Fieldset`
135
- - `ALabel`: Fix für `onClick`
136
- - `AErrors`: extension `goTo` function
137
-
138
- ## 2.13.1
139
-
140
- - Add `updateI18nForLanguage` function to `ATranslationAPI`
141
-
142
- ## 2.13.0
143
-
144
- - Add `updateI18n` function to support dynamic `i18n` updates
145
-
146
- ## 2.12.1
147
-
148
- - `ASelect` Fix
149
-
150
- ## 2.12.0
151
-
152
- - Add `ASelectIcon` component
153
-
154
- ## 2.11.3
155
-
156
- - Prioritize data from server for ASelect
157
-
158
- ## 2.11.2
159
-
160
- - Refactor focus handling in `UiAPI`
161
-
162
- ## 2.11.1
163
-
164
- - Add export for `AFilterCenter` component
165
-
166
- ## 2.11.0
167
-
168
- - Add `focusin` and `focusout` event handling to `ARadio` component
169
- - Add `focusin` and `focusout` event handling to `ACheckbox` component
170
- - Add support for `type` prop and `minuteStep` in `ADatepicker`
171
- - Refactor `ADatepicker` format handling with `TypeAPI` integration
172
- - Refactor focus handling in `ADatepicker` components.
173
- - Refactor `APanelYear` to composition API
174
- - Refactor `APanelTime` to composition API
175
-
176
- ## 2.10.1
177
-
178
- - Fix model update in `AFilters`
179
-
180
- ## 2.10.0
181
-
182
- - Add utility classes for vertical alignment
183
-
184
- ## 2.9.2
185
-
186
- - `ATableTopPanel`: fix `currentMultipleActions`
187
-
188
- ## 2.9.1
189
-
190
- - `AModal`: added "modal inside a modal" feature with proper `z-index` stacking support
191
-
192
- ## 2.9.0
193
-
194
- - Added `.column_offset_right_*` classes to grid utilities for right column offsets with dynamic margin-right
195
- calculations
196
-
197
- ## 2.8.4
198
-
199
- - `ADatePicker`: Added customizable class prop and fixed `SCSS` indentation
200
-
201
- ## 2.8.3
202
-
203
- - Fix model update in `AFilters`
204
-
205
- ## 2.8.2
206
-
207
- - Fix buttons ids in `ATableTdAction`
208
-
209
- ## 2.8.1
210
-
211
- - Fix `//` in `AHttpAPI`
212
-
213
- ## 2.8.0
214
-
215
- - New component `AMultiselectOrdered`
216
- - Props `attributesFieldset` for `ACheckbox`, `ARadio`, `AFieldset`, `AMultiselectOrdered`, `ARouterLinkConfig`
217
-
218
- ## 2.7.3
219
-
220
- - `AFilters`: fix `changeModel` functions
221
-
222
- ## 2.7.2
223
-
224
- - `ATemplate`: fix `type` for `modelValue`
225
-
226
- ## 2.7.1
227
-
228
- - `ATemplate`: fix `props`
229
-
230
- ## 2.7.0
231
-
232
- - New component `AFormElement`
233
- - Props `keyDisabledCallback` for `ASelect`, `ACheckbox`, `ARadio`
234
- - Fix in `keyDisabledCallback`
235
-
236
- ## 2.6.1
237
-
238
- - Fix model in AModalForm
239
-
240
- ## 2.6.0
241
-
242
- - Update logic model change in ui-components
243
-
244
- ## 2.5.0
245
-
246
- - readonly for ui-components
247
-
248
- ## 2.4.1
249
-
250
- - `ASelect`: fix `watch` for `url`, `apiSaveId`, `urlParams`
251
-
252
- ## 2.4.0
253
-
254
- - New component `ARouterLinkConfig`
255
- - `ARouterLinkConfig`: Improvements
256
- - Fix padding for `a_search_highlight`
257
- - `filterJson`: new arguments `isHtml`, `jsonClass`, `tag`
258
- - `filterJson`: fix for `jsonClass`
259
-
260
- ## 2.3.1
261
-
262
- - Fix: import `APopupAPI` and functions
263
-
264
- ## 2.3.0
265
-
266
- - `AModal`: don't close modal if popup opened
267
- - `AAlert`: new props ariaAtomic and role
268
- - `AHttpAPI`: ignoreErrorHandler as function
269
- - `ASelect`: Fixed validator for isExclusiveOptionEnabled.
270
-
271
- ## 2.2.0
272
-
273
- ### Enhancements:
274
- - Expanded `ASelect` component by adding three new props:
275
- - `exclusive-option-label`
276
- - `exclusive-option-value`
277
- - `is-exclusive-option-enabled`
278
-
279
- ### Description:
280
- 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.
281
-
282
- ## 2.1.13
283
-
284
- - Fix 2 import from moment.js
285
-
286
- ## 2.1.12
287
-
288
- - Fix import from moment.js
289
-
290
- ## 2.1.11
291
-
292
- - Test version
293
-
294
- ## 2.1.10
295
-
296
- - **Fix:** Corrected SCSS import order.
297
-
298
- ## 2.1.9
299
-
300
- - Fixed arguments for `filterSearchHighlight` in CompositionAPI.
301
- - Added documentation for the `ATranslation` component.
302
-
303
- ## 2.1.8
304
-
305
- - **New Exports Added**
306
- - `UiAPI`, `UIExcludeRenderAttributesAPI`, `UiStyleHideAPI`, `AErrorsText`
307
-
308
- ## 2.1.7
309
-
310
- - **New Exports Added**
311
- - **ATranslationAPI**
312
- - `translation`
313
- - **AMenuButtonToggle**
314
- - `AMenuButtonToggle_ToggleAPI`
315
-
316
- ## 2.1.6
317
-
318
- - **New Exports Added**
319
- - **Utils**
320
- - `dompurify`
321
- - `sanitize`
322
-
323
- ## 2.1.5
324
-
325
- - **New Export Added**
326
- - **AFiltersAPI**
327
- - `AFiltersAPI_additionFilters`
328
-
329
- ## 2.1.4
330
-
331
- - **New Exports Added**
332
- - **AHttpAPI**
333
- - `AHttpAPI_abortHttp`
334
- - `AHttpAPI_API_CONFIG`
335
- - `AHttpAPI_callHttpRequestAndCheckSavedApi`
336
- - `AHttpAPI_clearAllApiSaved`
337
- - `AHttpAPI_clearApiSaved`
338
- - `AHttpAPI_deleteHttp`
339
- - `AHttpAPI_getHttp`
340
- - `AHttpAPI_getListHttp`
341
- - `AHttpAPI_getOptionsHttp`
342
- - `AHttpAPI_getUrlParams`
343
- - `AHttpAPI_patchHttp`
344
- - `AHttpAPI_postHttp`
345
- - `AHttpAPI_putHttp`
346
- - `AHttpAPI_setBaseUrl`
347
- - `AHttpAPI_setErrorCallbacks`
348
- - `AHttpAPI_setHeaderParams`
349
- - `AHttpAPI_setUrlForArray`
350
- - `AHttpAPI_setUrlWithParams`
351
- - **AMobileAPI**
352
- - `AMobileAPI_isMobileWidth`
353
- - `AMobileAPI_setIsMobileWidth`
354
- - **ANotificationAPI**
355
- - `ANotificationAPI_addNotification`
356
- - `ANotificationAPI_setNotificationTimeout`
357
- - **APageTabTitleAPI**
358
- - `APageTabTitleAPI_setBaseTitle`
359
-
360
- ## 2.1.3
361
-
362
- - New Imports:
363
- - Added imports for the following components, functions, and constants:
364
- - Components: `AMenuButtonToggle`, `APlacements`.
365
- - Functions: `getTranslatedText`, `isPlaceholderTranslate`, `setI18n`, `setLanguage`, `toggleTranslate`, `updateTranslation`
366
- - Constants: `i18n`, `focusableList`, `focusableSelector`, `AKeyChildren`, `AKeyId`, `AKeyLabel`, `AKeyParent`, `AKeysCode`, `timeTranslationLastChanged`, `isTranslate`.
367
- - Renamed `i18n` to `i18nAll` for better clarity.
368
-
369
- ## 2.1.2
370
-
371
- - Linting Enhancements:
372
- - Implemented linting for Vue.js components and codebase using ESLint
373
- - Documentation Updates:
374
- - Updated configuration and import examples in the documentation.
375
-
376
- ## 2.1.1
377
-
378
- - `AOneCheckbox`: Fixed warnings related to the slot usage.
379
-
380
- ## 2.1.0
381
-
382
- - `AOneCheckbox`: Added new props:
383
- - `slotName` for customizing slots.
384
- - `labelAttributes` for configuring additional attributes on labels.
385
-
386
- ## 2.0.1
387
-
388
- - Bug Fix: Added missing `CSS` file to the library.
389
- - New Imports:
390
- - Functions:
391
- - `concatTwoStringsWithSpace`, `colorToHex`, `hexToRgb`, `mixBlack`, `mixColor`, `mixWhite`, `rgbToHex`, `sanitizeLocal`, `getUniqueSelector`, `scrollToElement`, `setFocusToElement`, `setFocusToPreviousFocusableElement`, `setFocusToNextFocusableElement`, `toPrecision`.
392
- - Constants:
393
- - `focusableList`, `focusableSelector`, `AKeyChildren`, `AKeyId`, `AKeyLabel`, `AKeyParent`, `AKeysCode`.
394
-
395
- ## 2.0.0
396
-
397
- - Major refactoring and expanded documentation.
398
- - Migration Guide:
399
- - `AMenu2` → `AMenu`: Component renamed, updated CSS classes, and variables.
400
- - `ATinymce` removed: License change to `GPL-2.0-or-later`.
401
- - Style updates:
402
- - Fixed `.a_columns_gab_` typo to `.a_columns_gap_`.
403
- - Integrated `aloha-css` styles into `aloha-vue`.
404
- - Improved import system: Direct import for all components, directives, and plugins.
405
- - Dependency updates for compatibility.
406
-
407
- ***
408
-
409
- ## 1.12.2
410
-
411
- - ASelect Fix
412
-
413
- ## 1.12.1
414
-
415
- - Prioritize data from server for ASelect
416
-
417
- ## 1.11.1
418
-
419
- - Fix in `keyDisabledCallback`
420
-
421
- ## 1.11.0
422
-
423
- - Props `keyDisabledCallback` for `ASelect`, `ACheckbox`, `ARadio`
424
-
425
- ## 1.10.1
426
-
427
- - `filterJson`: fix for `jsonClass`
428
-
429
- ## 1.10.0
430
-
431
- - `filterJson`: new arguments `isHtml`, `jsonClass`, `tag`
432
-
433
- ## 1.9.2
434
-
435
- - Fix padding for `a_search_highlight`
436
-
437
- ## 1.9.1
438
-
439
- - `ARouterLinkConfig`: Improvements
440
-
441
- ## 1.9.0
442
-
443
- - New component `ARouterLinkConfig`
444
-
445
- ## 1.8.0
446
-
447
- - `AModal`: don't close modal if popup opened
448
-
449
- ## 1.7.0
450
-
451
- - `AAlert`: new props ariaAtomic and role
452
-
453
- ## 1.6.0
454
-
455
- - `AHttpAPI`: ignoreErrorHandler as function
456
-
457
- ## 1.5.1
458
-
459
- - `ASelect`: Fixed validator for isExclusiveOptionEnabled.
460
-
461
- ## 1.5.0
462
-
463
- ### Enhancements:
464
- - Expanded `ASelect` component by adding three new props:
465
- - `exclusive-option-label`
466
- - `exclusive-option-value`
467
- - `is-exclusive-option-enabled`
468
-
469
- ### Description:
470
- 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.
471
-
472
- ## 1.4.0
473
-
474
- ### New Arguments for `filterSearchHighlight`
475
- - `tag`
476
- - `attributes`
477
- - `caseSensitive`
478
- - `isHtml`
479
-
480
- ## 1.3.1
481
-
482
- - `AOneCheckbox`: Fixed warnings related to the slot usage.
483
-
484
- ## 1.3.0
485
-
486
- - `AOneCheckbox`: Added new props:
487
- - `slotName` for customizing slots.
488
- - `labelAttributes` for configuring additional attributes on labels.
489
-
490
- ## 1.2.285
491
-
492
- - Minor fix to the `focus` logic in the `AMenu2` component for improved usability and accessibility.
493
-
494
- ## 1.2.284
495
-
496
- - Improved `focus` management for the `AMenu2` component, ensuring better accessibility when the menu is closed.
497
-
498
- ## 1.2.283
499
-
500
- - Fixed the `HTML` structure of the component to improve accessibility and ensure compliance with accessibility standards.
501
-
502
- ## 1.2.282
503
-
504
- - Fixed the `ATable` component to ensure the `aria-labelledby` attribute is not used when the table has no header, improving accessibility compliance.
505
-
506
- ## 1.2.281
507
-
508
- - Excluded `isConfirm` and `callbackLocal` attributes from the rendering of the `ADropdown` component to improve accessibility.
509
-
510
-
511
- ## 1.2.280
512
-
513
- - Excluded `isConfirm` and `callbackLocal` attributes from the rendering of the `AGroupButtonDropdown` component to improve accessibility.
514
-
515
- ## 1.2.279
516
-
517
- - Removed the `disabled` attribute from the `HTML` output of the `ASelect` component to improve accessibility.
518
-
519
- ## 1.2.278
520
-
521
- - Fixed the `disabled` state handling for elements with `type="link"` in the `AElement` component.
522
-
523
- ## 1.2.277
524
-
525
- - Removed the unnecessary `role="button"` attribute from buttons in`AInputCurrency` and `AInputNumber` components.
526
- - Added `title` and `textScreenReader` props for buttons in `AInputCurrency` and `AInputNumber` to enhance accessibility and screen reader support.
527
-
528
- ## 1.2.276
529
-
530
- - Fixed the `aria-describedby` attribute for UI components to ensure proper association with error messages, improving accessibility.
531
-
532
- ## 1.2.275
533
-
534
- - Improved the `AModal` component by managing `z-index` for multiple modal windows, ensuring proper stacking order.
535
-
536
- ## 1.2.274
537
-
538
- - Added translations for the `ARequired` component to support multiple languages.
539
-
540
- ## 1.2.273
541
-
542
- - Added `text-break` `CSS` styling to the `AModal` component to improve text handling and prevent overflow issues.
543
-
544
- ## 1.2.272
545
-
546
- - Fixed input behaviour in AInputCurrency for Mozilla Firefox (Firefox has slightly different event times than Webkit browsers).
547
-
548
- ## 1.2.271
549
-
550
- - Documentation Build: Replaced `Webpack` with `Vite` for building the documentation.
551
- - Corrected styles for the `ATabs` component when the `isVertical` prop is set to ´true´.
552
-
553
- ## 1.2.270
554
-
555
- - Fixed styling issues for the `ALoading` component when used in the footer of the `AModal` component.
556
-
557
- ## 1.2.269
558
-
559
- - Fixed an issue with the `"select all"` button in the `ASelect` component to ensure it functions correctly.
560
-
561
- ## 1.2.268
562
-
563
- - Enhanced the `AWizard` component to support icons in addition to numbers, providing more flexibility in step representation. Documentation has been updated to include details on this new feature.
564
-
565
- ## 1.2.267
566
-
567
- - Removed the password reveal button for `Edge`
568
-
569
- ## 1.2.266
570
-
571
- - Added support for the `disabled` prop in the `AFieldset` and `AGroup` components. When `disabled` is set to `true` for `AFieldset` or `AGroup`, all child form elements within these components are also `disabled`.
572
-
573
- ## 1.2.265
574
-
575
- - Introduced the `searchInGroup` prop for the `ASelect`, `ARadio`, and `ACheckbox` components. When `searchInGroup` is set to `true`, the internal search functionality includes group names in addition to individual elements, allowing for a broader search scope.
576
-
577
- ## 1.2.264
578
-
579
- - Fixed an issue with the `AMenu2` component where the menu did not close upon pressing the `'Esc'` key.
580
-
581
- ## 1.2.263
582
-
583
- - Enhanced accessibility for the `AMenu2` component by adding the `aria-labelledby` attribute to improve screen reader support for menu reading.
584
-
585
- ## 1.2.262
586
-
587
- - Improved `accessibility` for the `AMenu2` component on mobile devices, where the menu functions as a modal window. Relevant accessibility attributes have been added to support this functionality.
588
- - Enhanced the `AMenu2` component's `accessibility` on mobile by implementing focus trapping within the menu when it is open. The menu now also closes upon pressing the `'Esc'` key.
589
-
590
- ## 1.2.261
591
-
592
- - Added a new slot, `formPrependAfterRequired`, to the `AForm` component
593
-
594
- ## 1.2.260
595
-
596
- - Added the `autocomplete` prop to form elements, enabling `autocomplete` functionality. Also included support for `placeholders` where applicable.
597
-
598
- ## 1.2.259
599
-
600
- - Added a new field, `classHeaderParent`, for elements within the `columns` array prop in the `ATable` component, allowing for additional customization of header parent classes.
601
-
602
- ## 1.2.258
603
-
604
- - Fixed an issue with `computePosition` when using the `floating-ui` library
605
- - Resolved a bug in the `AInput` component for `type='color'`
606
-
607
- ## 1.2.257
608
-
609
- - Implemented a `debounce` function for `ResizeObserver` in components to address intermittent errors related to resize events.
610
-
611
- ## 1.2.256
612
-
613
- - Expanded accessibility attributes for the `AFieldset`, `ACheckbox` and `ARadio` components to improve screen reader support.
614
- - Added translations for the documentation of the `AModal` component.
615
-
616
- ## 1.2.255
617
-
618
- - Enhanced accessibility for the `APagination` component, improving its support for screen readers
619
-
620
- ## 1.2.254
621
-
622
- - Made structural adjustments to the templates of `AInputCurrency` and `AInputNumber` components and added new CSS classes for improved styling and layout consistency
623
-
624
- ## 1.2.253
625
-
626
- - Applied `font-weight: bolder` styling to labels in the `ALabel` component when `isLabelFloat` is set to `false`.
627
-
628
- ## 1.2.252
629
-
630
- - Introduced new props and made changes to enhance accessibility for the `AModal` component, improving its usability with screen readers and assistive technologies.
631
-
632
- ## 1.2.251
633
-
634
- - `ATooltip`: Added the `withoutAriaDescribedby` prop for more flexible ARIA descriptions.
635
- - `FilterList`: Introduced a new `lastSeparator` parameter in the `filterList` function, with documentation updates.
636
- - `AGroup`: Refactored the component and added the first part of its documentation.
637
- - Menu Sorting: Adjusted the order of links in the documentation menu.
638
- - `ATabs` Fixes: Applied CSS, HTML, and disabled state fixes to improve component styling and functionality.
639
- - `AFieldset`: Renamed the ´classColumn´ prop to ´classColumnDefault´ for a consistent structure among form elements.
640
- - Accessibility Extensions: Added ´inheritAttrs: false´ to form element components to enhance accessibility customization.
641
- - ´ATabs´ Documentation: Added parts 3 and 4 of the ´ATabs´ component documentation.
642
-
643
- ## 1.2.250
644
-
645
- - ´AHttpAPI´: Fixed the ´postHttp´ function by adding the ´urlBase´ argument.
646
- - ´ATabs´ Documentation: Added parts 1 and 2 of the ´ATabs´ component documentation.
647
- - ´ATabs´ Refactoring: Expanded the ´ATabs´ component with new props and additional functionality.
648
- - ´ALoading´ Documentation and Refactoring: Refactored the ´ALoading´ component and provided full documentation.
649
- - ´ASpinner´ Documentation: Documented the ´ASpinner´ component and added translations.
650
- - ´ACloak´ Documentation: Added documentation and translations for the ´ACloak´ component.
651
- - ´AFieldset´ Documentation and Refactoring: Documented the ´AFieldset´ component with structural improvements.
652
- - ´ATemplate´ Documentation: Added complete documentation for the ´ATemplate´ component.
653
- - ´label-screen-reader´ Fixes and Documentation: Introduced the ´label-screen-reader´ prop for form elements and added corresponding documentation.
654
-
655
- ## 1.2.249
656
-
657
- - Added the ´modalStyle´ prop to the ´AModal` component, allowing for additional style customization. Documentation has been updated to include details on this new prop.
658
-
659
- ## 1.2.248
660
-
661
- - Added support for custom HTML attributes to the `AModal` component
662
-
663
- ## 1.2.247
664
-
665
- - Added the ´minHeightBody´ prop to set a minimum height for the ´ATinymce´ editor body
666
- - Updated the context menu functionality within the ´ATinymce´ component for improved contextual behavior
667
-
668
- ## 1.2.246
669
-
670
- - Enhanced the ´rowClass´ prop in the ´ATable´ component by adding a level argument for cases where ´rowClass´ is a function, allowing for more granular row styling based on hierarchy or depth
671
-
672
- ## 1.2.245
673
-
674
- - Added the ´isTreeCollapsible´ and ´isTreeOpened´ props to the ´ATable´ component, enabling collapsible tree functionality and control over the initial open state of tree nodes.
1
+ ![npm (scoped)](https://img.shields.io/npm/v/aloha-vue?label=NPM)
2
+ ![NPM](https://img.shields.io/npm/l/aloha-vue?label=License)
3
+ ![npm](https://img.shields.io/npm/dt/aloha-vue?label=Downloads)
4
+
5
+ ![Aloha Framework logo](.images/aloha_logo.png)
6
+
7
+ ---
8
+ # Versions
9
+
10
+ ## 2.29.0
11
+
12
+ - Add `labelDescription` prop across components and examples
13
+ - Feature: Add support for `init` and `change` events in `ACarousel` with related documentation and examples
14
+
15
+ ## 2.28.6
16
+
17
+ - `AValidatedJson` code cleanup
18
+
19
+ ## 2.28.5
20
+
21
+ - fixed `AValidatedJson`
22
+
23
+ ## 2.28.4
24
+
25
+ - fixed `AValidatedJson`
26
+
27
+ ## 2.28.3
28
+
29
+ - Refactor: Update component mappings to include `AValidatedJson` only in `AUiComponents`
30
+
31
+
32
+ ## 2.28.2
33
+
34
+ - Add `AValidatedJson` to `AFieldset` and ´AUiContainerComponents´ for extended component support.
35
+
36
+ ## 2.28.1
37
+
38
+ - Refactor `ACarousel`: Introduce `ArrowsAPI` to manage arrow visibility logic and update related components for improved reusability and maintainability.
39
+
40
+ ## 2.28.0
41
+
42
+ - Add component `AValidatedJson`
43
+
44
+ ## 2.27.1
45
+
46
+ - Fix casing in `ARemPxAPI` export path for consistency with compositionAPI folder structure.
47
+
48
+ ## 2.27.0
49
+
50
+ - Refactor `SCSS`: Convert all pixel-based units to `rem`
51
+ - Refactor `ACarousel`: Introduce rem-based unit mapping for consistent scaling, integrate global `ARemPxAPI`, and update `ACarousel` `SCSS`, composition APIs, and plugins accordingly.
52
+
53
+ ## 2.26.0
54
+
55
+ - Refactor `ACarousel` controls: introduce `ACarouselControlsIndicator` component, update related indicators handling logic, and add support for nested children and new margin property.
56
+
57
+ ## 2.25.2
58
+
59
+ - Add `AValidatedJson` list mode functionality with composition API
60
+
61
+ ## 2.25.1
62
+
63
+ - Added selector-close for AMenu, to set focus on a desired element after the menu close
64
+ - Added integerPartMaxLength prop for AInputCurrency to set custom length for integer part of the value
65
+ - Minor fixes to AInputCurrency
66
+
67
+ ## 2.25.0
68
+
69
+ - Add button style groups and translations to `ASelectStyle`, update plugin and documentation
70
+
71
+ ## 2.24.0
72
+
73
+ - Add new component `ASelectStyle` with docu
74
+
75
+ ## 2.23.0
76
+
77
+ - Documentation `CSS`: `Text`
78
+ - Refactor `ACarousel` styles
79
+ - Add `text_line_through` and `text_decoration_none` utilities for text decoration styling
80
+ - Add `text_justify` utility for text alignment and responsive breakpoint support in text styles
81
+ - Add `text_clamp` utility to support multiline text truncation with CSS clamp technique
82
+
83
+ ## 2.22.0
84
+
85
+ - Documentation `AElement`
86
+ - Add-ons for `ACarousel`
87
+ - `indicators-type`: `squares`
88
+ - `indicatorsAutoLimit`
89
+ - `indicatorsLimit`
90
+ - `indicatorWidth`
91
+
92
+ ## 2.21.5
93
+
94
+ - Adjust padding-right in `ASelect` dropdown for improved spacing.
95
+
96
+ ## 2.21.4
97
+
98
+ - Fix toggle behavior in `ASelect` to prevent premature closing when interacting with HTML elements
99
+
100
+ ## 2.21.3
101
+
102
+ - Fix: ATable, Sorting for columns defect
103
+
104
+ ## 2.21.2
105
+
106
+ - Refactor badge `SCSS` variables for `.a_badge` to use consistent naming convention
107
+
108
+ ## 2.21.1
109
+
110
+ - Broken version
111
+
112
+ ## 2.21.0
113
+
114
+ - Add badge styles, documentation, and localization
115
+
116
+ ## 2.20.0
117
+
118
+ - Feature: Introduced `pagination.position` (`top`, `bottom`, `y`) for `ATable`
119
+
120
+ ## 2.19.1
121
+
122
+ - Fix translation in `AErrors`
123
+
124
+ ## 2.19.0
125
+
126
+ - Translations: `AErrors`, `AAlert`, `APagination`, `AFilters`, `AFormElementBtnClear`
127
+
128
+ ## 2.18.0
129
+
130
+ - Add Props: `useFlatModel` for `AForm`, `AModalForm`, `AFieldset`, `AGroup`
131
+
132
+ ## 2.17.0
133
+
134
+ - Add props: `useFlatErrors` for `AForm`, `AModalForm`, `AErrors`, `AFieldset`, `AGroup`
135
+
136
+ ## 2.16.0
137
+
138
+ - New component: `ACarousel`
139
+
140
+ ## 2.15.0
141
+
142
+ - Add a new function `getTranslatedAttributes`
143
+ - `AModal`: Fix Styles
144
+
145
+ ## 2.14.1
146
+
147
+ - `ASelectValueCloseable`: Fix in close function
148
+
149
+ ## 2.14.0
150
+
151
+ - Change Styles for `Errors`, `Legend` and `Fieldset`
152
+ - `ALabel`: Fix für `onClick`
153
+ - `AErrors`: extension `goTo` function
154
+
155
+ ## 2.13.1
156
+
157
+ - Add `updateI18nForLanguage` function to `ATranslationAPI`
158
+
159
+ ## 2.13.0
160
+
161
+ - Add `updateI18n` function to support dynamic `i18n` updates
162
+
163
+ ## 2.12.1
164
+
165
+ - `ASelect` Fix
166
+
167
+ ## 2.12.0
168
+
169
+ - Add `ASelectIcon` component
170
+
171
+ ## 2.11.3
172
+
173
+ - Prioritize data from server for ASelect
174
+
175
+ ## 2.11.2
176
+
177
+ - Refactor focus handling in `UiAPI`
178
+
179
+ ## 2.11.1
180
+
181
+ - Add export for `AFilterCenter` component
182
+
183
+ ## 2.11.0
184
+
185
+ - Add `focusin` and `focusout` event handling to `ARadio` component
186
+ - Add `focusin` and `focusout` event handling to `ACheckbox` component
187
+ - Add support for `type` prop and `minuteStep` in `ADatepicker`
188
+ - Refactor `ADatepicker` format handling with `TypeAPI` integration
189
+ - Refactor focus handling in `ADatepicker` components.
190
+ - Refactor `APanelYear` to composition API
191
+ - Refactor `APanelTime` to composition API
192
+
193
+ ## 2.10.1
194
+
195
+ - Fix model update in `AFilters`
196
+
197
+ ## 2.10.0
198
+
199
+ - Add utility classes for vertical alignment
200
+
201
+ ## 2.9.2
202
+
203
+ - `ATableTopPanel`: fix `currentMultipleActions`
204
+
205
+ ## 2.9.1
206
+
207
+ - `AModal`: added "modal inside a modal" feature with proper `z-index` stacking support
208
+
209
+ ## 2.9.0
210
+
211
+ - Added `.column_offset_right_*` classes to grid utilities for right column offsets with dynamic margin-right
212
+ calculations
213
+
214
+ ## 2.8.4
215
+
216
+ - `ADatePicker`: Added customizable class prop and fixed `SCSS` indentation
217
+
218
+ ## 2.8.3
219
+
220
+ - Fix model update in `AFilters`
221
+
222
+ ## 2.8.2
223
+
224
+ - Fix buttons ids in `ATableTdAction`
225
+
226
+ ## 2.8.1
227
+
228
+ - Fix `//` in `AHttpAPI`
229
+
230
+ ## 2.8.0
231
+
232
+ - New component `AMultiselectOrdered`
233
+ - Props `attributesFieldset` for `ACheckbox`, `ARadio`, `AFieldset`, `AMultiselectOrdered`, `ARouterLinkConfig`
234
+
235
+ ## 2.7.3
236
+
237
+ - `AFilters`: fix `changeModel` functions
238
+
239
+ ## 2.7.2
240
+
241
+ - `ATemplate`: fix `type` for `modelValue`
242
+
243
+ ## 2.7.1
244
+
245
+ - `ATemplate`: fix `props`
246
+
247
+ ## 2.7.0
248
+
249
+ - New component `AFormElement`
250
+ - Props `keyDisabledCallback` for `ASelect`, `ACheckbox`, `ARadio`
251
+ - Fix in `keyDisabledCallback`
252
+
253
+ ## 2.6.1
254
+
255
+ - Fix model in AModalForm
256
+
257
+ ## 2.6.0
258
+
259
+ - Update logic model change in ui-components
260
+
261
+ ## 2.5.0
262
+
263
+ - readonly for ui-components
264
+
265
+ ## 2.4.1
266
+
267
+ - `ASelect`: fix `watch` for `url`, `apiSaveId`, `urlParams`
268
+
269
+ ## 2.4.0
270
+
271
+ - New component `ARouterLinkConfig`
272
+ - `ARouterLinkConfig`: Improvements
273
+ - Fix padding for `a_search_highlight`
274
+ - `filterJson`: new arguments `isHtml`, `jsonClass`, `tag`
275
+ - `filterJson`: fix for `jsonClass`
276
+
277
+ ## 2.3.1
278
+
279
+ - Fix: import `APopupAPI` and functions
280
+
281
+ ## 2.3.0
282
+
283
+ - `AModal`: don't close modal if popup opened
284
+ - `AAlert`: new props ariaAtomic and role
285
+ - `AHttpAPI`: ignoreErrorHandler as function
286
+ - `ASelect`: Fixed validator for isExclusiveOptionEnabled.
287
+
288
+ ## 2.2.0
289
+
290
+ ### Enhancements:
291
+ - Expanded `ASelect` component by adding three new props:
292
+ - `exclusive-option-label`
293
+ - `exclusive-option-value`
294
+ - `is-exclusive-option-enabled`
295
+
296
+ ### Description:
297
+ 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.
298
+
299
+ ## 2.1.13
300
+
301
+ - Fix 2 import from moment.js
302
+
303
+ ## 2.1.12
304
+
305
+ - Fix import from moment.js
306
+
307
+ ## 2.1.11
308
+
309
+ - Test version
310
+
311
+ ## 2.1.10
312
+
313
+ - **Fix:** Corrected SCSS import order.
314
+
315
+ ## 2.1.9
316
+
317
+ - Fixed arguments for `filterSearchHighlight` in CompositionAPI.
318
+ - Added documentation for the `ATranslation` component.
319
+
320
+ ## 2.1.8
321
+
322
+ - **New Exports Added**
323
+ - `UiAPI`, `UIExcludeRenderAttributesAPI`, `UiStyleHideAPI`, `AErrorsText`
324
+
325
+ ## 2.1.7
326
+
327
+ - **New Exports Added**
328
+ - **ATranslationAPI**
329
+ - `translation`
330
+ - **AMenuButtonToggle**
331
+ - `AMenuButtonToggle_ToggleAPI`
332
+
333
+ ## 2.1.6
334
+
335
+ - **New Exports Added**
336
+ - **Utils**
337
+ - `dompurify`
338
+ - `sanitize`
339
+
340
+ ## 2.1.5
341
+
342
+ - **New Export Added**
343
+ - **AFiltersAPI**
344
+ - `AFiltersAPI_additionFilters`
345
+
346
+ ## 2.1.4
347
+
348
+ - **New Exports Added**
349
+ - **AHttpAPI**
350
+ - `AHttpAPI_abortHttp`
351
+ - `AHttpAPI_API_CONFIG`
352
+ - `AHttpAPI_callHttpRequestAndCheckSavedApi`
353
+ - `AHttpAPI_clearAllApiSaved`
354
+ - `AHttpAPI_clearApiSaved`
355
+ - `AHttpAPI_deleteHttp`
356
+ - `AHttpAPI_getHttp`
357
+ - `AHttpAPI_getListHttp`
358
+ - `AHttpAPI_getOptionsHttp`
359
+ - `AHttpAPI_getUrlParams`
360
+ - `AHttpAPI_patchHttp`
361
+ - `AHttpAPI_postHttp`
362
+ - `AHttpAPI_putHttp`
363
+ - `AHttpAPI_setBaseUrl`
364
+ - `AHttpAPI_setErrorCallbacks`
365
+ - `AHttpAPI_setHeaderParams`
366
+ - `AHttpAPI_setUrlForArray`
367
+ - `AHttpAPI_setUrlWithParams`
368
+ - **AMobileAPI**
369
+ - `AMobileAPI_isMobileWidth`
370
+ - `AMobileAPI_setIsMobileWidth`
371
+ - **ANotificationAPI**
372
+ - `ANotificationAPI_addNotification`
373
+ - `ANotificationAPI_setNotificationTimeout`
374
+ - **APageTabTitleAPI**
375
+ - `APageTabTitleAPI_setBaseTitle`
376
+
377
+ ## 2.1.3
378
+
379
+ - New Imports:
380
+ - Added imports for the following components, functions, and constants:
381
+ - Components: `AMenuButtonToggle`, `APlacements`.
382
+ - Functions: `getTranslatedText`, `isPlaceholderTranslate`, `setI18n`, `setLanguage`, `toggleTranslate`, `updateTranslation`
383
+ - Constants: `i18n`, `focusableList`, `focusableSelector`, `AKeyChildren`, `AKeyId`, `AKeyLabel`, `AKeyParent`, `AKeysCode`, `timeTranslationLastChanged`, `isTranslate`.
384
+ - Renamed `i18n` to `i18nAll` for better clarity.
385
+
386
+ ## 2.1.2
387
+
388
+ - Linting Enhancements:
389
+ - Implemented linting for Vue.js components and codebase using ESLint
390
+ - Documentation Updates:
391
+ - Updated configuration and import examples in the documentation.
392
+
393
+ ## 2.1.1
394
+
395
+ - `AOneCheckbox`: Fixed warnings related to the slot usage.
396
+
397
+ ## 2.1.0
398
+
399
+ - `AOneCheckbox`: Added new props:
400
+ - `slotName` for customizing slots.
401
+ - `labelAttributes` for configuring additional attributes on labels.
402
+
403
+ ## 2.0.1
404
+
405
+ - Bug Fix: Added missing `CSS` file to the library.
406
+ - New Imports:
407
+ - Functions:
408
+ - `concatTwoStringsWithSpace`, `colorToHex`, `hexToRgb`, `mixBlack`, `mixColor`, `mixWhite`, `rgbToHex`, `sanitizeLocal`, `getUniqueSelector`, `scrollToElement`, `setFocusToElement`, `setFocusToPreviousFocusableElement`, `setFocusToNextFocusableElement`, `toPrecision`.
409
+ - Constants:
410
+ - `focusableList`, `focusableSelector`, `AKeyChildren`, `AKeyId`, `AKeyLabel`, `AKeyParent`, `AKeysCode`.
411
+
412
+ ## 2.0.0
413
+
414
+ - Major refactoring and expanded documentation.
415
+ - Migration Guide:
416
+ - `AMenu2` → `AMenu`: Component renamed, updated CSS classes, and variables.
417
+ - `ATinymce` removed: License change to `GPL-2.0-or-later`.
418
+ - Style updates:
419
+ - Fixed `.a_columns_gab_` typo to `.a_columns_gap_`.
420
+ - Integrated `aloha-css` styles into `aloha-vue`.
421
+ - Improved import system: Direct import for all components, directives, and plugins.
422
+ - Dependency updates for compatibility.
423
+
424
+ ***
425
+
426
+ ## 1.12.2
427
+
428
+ - ASelect Fix
429
+
430
+ ## 1.12.1
431
+
432
+ - Prioritize data from server for ASelect
433
+
434
+ ## 1.11.1
435
+
436
+ - Fix in `keyDisabledCallback`
437
+
438
+ ## 1.11.0
439
+
440
+ - Props `keyDisabledCallback` for `ASelect`, `ACheckbox`, `ARadio`
441
+
442
+ ## 1.10.1
443
+
444
+ - `filterJson`: fix for `jsonClass`
445
+
446
+ ## 1.10.0
447
+
448
+ - `filterJson`: new arguments `isHtml`, `jsonClass`, `tag`
449
+
450
+ ## 1.9.2
451
+
452
+ - Fix padding for `a_search_highlight`
453
+
454
+ ## 1.9.1
455
+
456
+ - `ARouterLinkConfig`: Improvements
457
+
458
+ ## 1.9.0
459
+
460
+ - New component `ARouterLinkConfig`
461
+
462
+ ## 1.8.0
463
+
464
+ - `AModal`: don't close modal if popup opened
465
+
466
+ ## 1.7.0
467
+
468
+ - `AAlert`: new props ariaAtomic and role
469
+
470
+ ## 1.6.0
471
+
472
+ - `AHttpAPI`: ignoreErrorHandler as function
473
+
474
+ ## 1.5.1
475
+
476
+ - `ASelect`: Fixed validator for isExclusiveOptionEnabled.
477
+
478
+ ## 1.5.0
479
+
480
+ ### Enhancements:
481
+ - Expanded `ASelect` component by adding three new props:
482
+ - `exclusive-option-label`
483
+ - `exclusive-option-value`
484
+ - `is-exclusive-option-enabled`
485
+
486
+ ### Description:
487
+ 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.
488
+
489
+ ## 1.4.0
490
+
491
+ ### New Arguments for `filterSearchHighlight`
492
+ - `tag`
493
+ - `attributes`
494
+ - `caseSensitive`
495
+ - `isHtml`
496
+
497
+ ## 1.3.1
498
+
499
+ - `AOneCheckbox`: Fixed warnings related to the slot usage.
500
+
501
+ ## 1.3.0
502
+
503
+ - `AOneCheckbox`: Added new props:
504
+ - `slotName` for customizing slots.
505
+ - `labelAttributes` for configuring additional attributes on labels.
506
+
507
+ ## 1.2.285
508
+
509
+ - Minor fix to the `focus` logic in the `AMenu2` component for improved usability and accessibility.
510
+
511
+ ## 1.2.284
512
+
513
+ - Improved `focus` management for the `AMenu2` component, ensuring better accessibility when the menu is closed.
514
+
515
+ ## 1.2.283
516
+
517
+ - Fixed the `HTML` structure of the component to improve accessibility and ensure compliance with accessibility standards.
518
+
519
+ ## 1.2.282
520
+
521
+ - Fixed the `ATable` component to ensure the `aria-labelledby` attribute is not used when the table has no header, improving accessibility compliance.
522
+
523
+ ## 1.2.281
524
+
525
+ - Excluded `isConfirm` and `callbackLocal` attributes from the rendering of the `ADropdown` component to improve accessibility.
526
+
527
+
528
+ ## 1.2.280
529
+
530
+ - Excluded `isConfirm` and `callbackLocal` attributes from the rendering of the `AGroupButtonDropdown` component to improve accessibility.
531
+
532
+ ## 1.2.279
533
+
534
+ - Removed the `disabled` attribute from the `HTML` output of the `ASelect` component to improve accessibility.
535
+
536
+ ## 1.2.278
537
+
538
+ - Fixed the `disabled` state handling for elements with `type="link"` in the `AElement` component.
539
+
540
+ ## 1.2.277
541
+
542
+ - Removed the unnecessary `role="button"` attribute from buttons in`AInputCurrency` and `AInputNumber` components.
543
+ - Added `title` and `textScreenReader` props for buttons in `AInputCurrency` and `AInputNumber` to enhance accessibility and screen reader support.
544
+
545
+ ## 1.2.276
546
+
547
+ - Fixed the `aria-describedby` attribute for UI components to ensure proper association with error messages, improving accessibility.
548
+
549
+ ## 1.2.275
550
+
551
+ - Improved the `AModal` component by managing `z-index` for multiple modal windows, ensuring proper stacking order.
552
+
553
+ ## 1.2.274
554
+
555
+ - Added translations for the `ARequired` component to support multiple languages.
556
+
557
+ ## 1.2.273
558
+
559
+ - Added `text-break` `CSS` styling to the `AModal` component to improve text handling and prevent overflow issues.
560
+
561
+ ## 1.2.272
562
+
563
+ - Fixed input behaviour in AInputCurrency for Mozilla Firefox (Firefox has slightly different event times than Webkit browsers).
564
+
565
+ ## 1.2.271
566
+
567
+ - Documentation Build: Replaced `Webpack` with `Vite` for building the documentation.
568
+ - Corrected styles for the `ATabs` component when the `isVertical` prop is set to ´true´.
569
+
570
+ ## 1.2.270
571
+
572
+ - Fixed styling issues for the `ALoading` component when used in the footer of the `AModal` component.
573
+
574
+ ## 1.2.269
575
+
576
+ - Fixed an issue with the `"select all"` button in the `ASelect` component to ensure it functions correctly.
577
+
578
+ ## 1.2.268
579
+
580
+ - Enhanced the `AWizard` component to support icons in addition to numbers, providing more flexibility in step representation. Documentation has been updated to include details on this new feature.
581
+
582
+ ## 1.2.267
583
+
584
+ - Removed the password reveal button for `Edge`
585
+
586
+ ## 1.2.266
587
+
588
+ - Added support for the `disabled` prop in the `AFieldset` and `AGroup` components. When `disabled` is set to `true` for `AFieldset` or `AGroup`, all child form elements within these components are also `disabled`.
589
+
590
+ ## 1.2.265
591
+
592
+ - Introduced the `searchInGroup` prop for the `ASelect`, `ARadio`, and `ACheckbox` components. When `searchInGroup` is set to `true`, the internal search functionality includes group names in addition to individual elements, allowing for a broader search scope.
593
+
594
+ ## 1.2.264
595
+
596
+ - Fixed an issue with the `AMenu2` component where the menu did not close upon pressing the `'Esc'` key.
597
+
598
+ ## 1.2.263
599
+
600
+ - Enhanced accessibility for the `AMenu2` component by adding the `aria-labelledby` attribute to improve screen reader support for menu reading.
601
+
602
+ ## 1.2.262
603
+
604
+ - Improved `accessibility` for the `AMenu2` component on mobile devices, where the menu functions as a modal window. Relevant accessibility attributes have been added to support this functionality.
605
+ - Enhanced the `AMenu2` component's `accessibility` on mobile by implementing focus trapping within the menu when it is open. The menu now also closes upon pressing the `'Esc'` key.
606
+
607
+ ## 1.2.261
608
+
609
+ - Added a new slot, `formPrependAfterRequired`, to the `AForm` component
610
+
611
+ ## 1.2.260
612
+
613
+ - Added the `autocomplete` prop to form elements, enabling `autocomplete` functionality. Also included support for `placeholders` where applicable.
614
+
615
+ ## 1.2.259
616
+
617
+ - Added a new field, `classHeaderParent`, for elements within the `columns` array prop in the `ATable` component, allowing for additional customization of header parent classes.
618
+
619
+ ## 1.2.258
620
+
621
+ - Fixed an issue with `computePosition` when using the `floating-ui` library
622
+ - Resolved a bug in the `AInput` component for `type='color'`
623
+
624
+ ## 1.2.257
625
+
626
+ - Implemented a `debounce` function for `ResizeObserver` in components to address intermittent errors related to resize events.
627
+
628
+ ## 1.2.256
629
+
630
+ - Expanded accessibility attributes for the `AFieldset`, `ACheckbox` and `ARadio` components to improve screen reader support.
631
+ - Added translations for the documentation of the `AModal` component.
632
+
633
+ ## 1.2.255
634
+
635
+ - Enhanced accessibility for the `APagination` component, improving its support for screen readers
636
+
637
+ ## 1.2.254
638
+
639
+ - Made structural adjustments to the templates of `AInputCurrency` and `AInputNumber` components and added new CSS classes for improved styling and layout consistency
640
+
641
+ ## 1.2.253
642
+
643
+ - Applied `font-weight: bolder` styling to labels in the `ALabel` component when `isLabelFloat` is set to `false`.
644
+
645
+ ## 1.2.252
646
+
647
+ - Introduced new props and made changes to enhance accessibility for the `AModal` component, improving its usability with screen readers and assistive technologies.
648
+
649
+ ## 1.2.251
650
+
651
+ - `ATooltip`: Added the `withoutAriaDescribedby` prop for more flexible ARIA descriptions.
652
+ - `FilterList`: Introduced a new `lastSeparator` parameter in the `filterList` function, with documentation updates.
653
+ - `AGroup`: Refactored the component and added the first part of its documentation.
654
+ - Menu Sorting: Adjusted the order of links in the documentation menu.
655
+ - `ATabs` Fixes: Applied CSS, HTML, and disabled state fixes to improve component styling and functionality.
656
+ - `AFieldset`: Renamed the ´classColumn´ prop to ´classColumnDefault´ for a consistent structure among form elements.
657
+ - Accessibility Extensions: Added ´inheritAttrs: false´ to form element components to enhance accessibility customization.
658
+ - ´ATabs´ Documentation: Added parts 3 and 4 of the ´ATabs´ component documentation.
659
+
660
+ ## 1.2.250
661
+
662
+ - ´AHttpAPI´: Fixed the ´postHttp´ function by adding the ´urlBase´ argument.
663
+ - ´ATabs´ Documentation: Added parts 1 and 2 of the ´ATabs´ component documentation.
664
+ - ´ATabs´ Refactoring: Expanded the ´ATabs´ component with new props and additional functionality.
665
+ - ´ALoading´ Documentation and Refactoring: Refactored the ´ALoading´ component and provided full documentation.
666
+ - ´ASpinner´ Documentation: Documented the ´ASpinner´ component and added translations.
667
+ - ´ACloak´ Documentation: Added documentation and translations for the ´ACloak´ component.
668
+ - ´AFieldset´ Documentation and Refactoring: Documented the ´AFieldset´ component with structural improvements.
669
+ - ´ATemplate´ Documentation: Added complete documentation for the ´ATemplate´ component.
670
+ - ´label-screen-reader´ Fixes and Documentation: Introduced the ´label-screen-reader´ prop for form elements and added corresponding documentation.
671
+
672
+ ## 1.2.249
673
+
674
+ - Added the ´modalStyle´ prop to the ´AModal` component, allowing for additional style customization. Documentation has been updated to include details on this new prop.
675
+
676
+ ## 1.2.248
677
+
678
+ - Added support for custom HTML attributes to the `AModal` component
679
+
680
+ ## 1.2.247
681
+
682
+ - Added the ´minHeightBody´ prop to set a minimum height for the ´ATinymce´ editor body
683
+ - Updated the context menu functionality within the ´ATinymce´ component for improved contextual behavior
684
+
685
+ ## 1.2.246
686
+
687
+ - Enhanced the ´rowClass´ prop in the ´ATable´ component by adding a level argument for cases where ´rowClass´ is a function, allowing for more granular row styling based on hierarchy or depth
688
+
689
+ ## 1.2.245
690
+
691
+ - Added the ´isTreeCollapsible´ and ´isTreeOpened´ props to the ´ATable´ component, enabling collapsible tree functionality and control over the initial open state of tree nodes.