@awes-io/ui 2.142.3 → 2.144.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 (264) hide show
  1. package/assets/css/components/_index.css +7 -1
  2. package/assets/css/components/action-card.css +1 -0
  3. package/assets/css/components/action-icon.css +2 -2
  4. package/assets/css/components/alert.css +28 -22
  5. package/assets/css/components/animation.css +52 -32
  6. package/assets/css/components/badge.css +1 -0
  7. package/assets/css/components/banner-text.css +15 -4
  8. package/assets/css/components/card.css +0 -1
  9. package/assets/css/components/content-placeholder.css +104 -0
  10. package/assets/css/components/dropdown.css +20 -7
  11. package/assets/css/components/empty-container.css +69 -1
  12. package/assets/css/components/filter-chosen.css +6 -0
  13. package/assets/css/components/filter-date-range.css +17 -1
  14. package/assets/css/components/filter-month.css +23 -17
  15. package/assets/css/components/filter-select.css +11 -0
  16. package/assets/css/components/icon-menu-item.css +12 -7
  17. package/assets/css/components/layout.css +1 -32
  18. package/assets/css/components/mobile-menu-nav.css +8 -4
  19. package/assets/css/components/modal.css +1 -1
  20. package/assets/css/components/number.css +12 -0
  21. package/assets/css/components/page-aside.css +54 -0
  22. package/assets/css/components/text-field.css +4 -0
  23. package/assets/js/css.js +1 -1
  24. package/assets/js/icons/mono.js +59 -91
  25. package/assets/js/icons/multicolor.js +1 -31
  26. package/components/1_atoms/AwActionIcon.vue +11 -2
  27. package/components/1_atoms/AwContentPlaceholder.vue +60 -0
  28. package/components/1_atoms/AwFlow.vue +37 -49
  29. package/components/1_atoms/AwGrid.vue +11 -3
  30. package/components/1_atoms/AwIcon/AwIcon.vue +5 -3
  31. package/components/1_atoms/AwIcon/AwIconSystemMono.vue +3 -2
  32. package/components/1_atoms/AwInput.vue +2 -2
  33. package/components/1_atoms/AwLabel.vue +1 -1
  34. package/components/1_atoms/AwList.vue +3 -1
  35. package/components/1_atoms/AwRadio.vue +1 -1
  36. package/components/1_atoms/AwSlider.vue +15 -1
  37. package/components/1_atoms/AwTag.vue +6 -1
  38. package/components/2_molecules/AwAlert.vue +63 -42
  39. package/components/2_molecules/AwBadge.vue +1 -1
  40. package/components/2_molecules/AwBannerText.vue +8 -2
  41. package/components/2_molecules/AwButton.vue +1 -1
  42. package/components/2_molecules/AwDescriptionInput.vue +19 -1
  43. package/components/2_molecules/AwEmptyContainer.vue +74 -72
  44. package/components/2_molecules/AwNumber.vue +180 -0
  45. package/components/2_molecules/AwSelect.vue +11 -4
  46. package/components/3_organisms/AwBottomBar.vue +22 -4
  47. package/components/3_organisms/AwFilterChosen.vue +73 -0
  48. package/components/3_organisms/AwFilterDateRange.vue +177 -0
  49. package/components/3_organisms/AwFilterMonth.vue +37 -40
  50. package/components/3_organisms/AwFilterSelect.vue +368 -0
  51. package/components/3_organisms/AwMultiBlockBuilder.vue +1 -1
  52. package/components/3_organisms/AwSubnav.vue +11 -1
  53. package/components/3_organisms/AwTable/AwTableBuilder.vue +20 -60
  54. package/components/3_organisms/AwTable/_AwTableCellDropdown.vue +6 -1
  55. package/components/3_organisms/AwTable/_AwTableRow.vue +2 -1
  56. package/components/4_pages/AwPage.vue +1 -0
  57. package/components/4_pages/AwPageAside.vue +108 -0
  58. package/components/5_layouts/AwLayoutCenter.vue +3 -8
  59. package/components/5_layouts/_AwMenuItemIcon.vue +9 -2
  60. package/components/5_layouts/_AwMobileMenuItem.vue +5 -3
  61. package/components/5_layouts/_AwUserMenu.vue +1 -1
  62. package/components/_config.js +26 -1
  63. package/docs/_template.md +80 -0
  64. package/docs/components/atoms/aw-accordion-fold.md +129 -0
  65. package/docs/components/atoms/aw-action-card-body.md +99 -0
  66. package/docs/components/atoms/aw-action-card.md +130 -0
  67. package/docs/components/atoms/aw-action-icon.md +126 -0
  68. package/docs/components/atoms/aw-avatar.md +106 -0
  69. package/docs/components/atoms/aw-card.md +137 -0
  70. package/docs/components/atoms/aw-checkbox.md +288 -0
  71. package/docs/components/atoms/aw-content-placeholder.md +147 -0
  72. package/docs/components/atoms/aw-description.md +83 -0
  73. package/docs/components/atoms/aw-dock.md +90 -0
  74. package/docs/components/atoms/aw-dropdown-button.md +94 -0
  75. package/docs/components/atoms/aw-dropdown.md +178 -0
  76. package/docs/components/atoms/aw-file.md +73 -0
  77. package/docs/components/atoms/aw-flow.md +140 -0
  78. package/docs/components/atoms/aw-grid.md +109 -0
  79. package/docs/components/atoms/aw-headline.md +71 -0
  80. package/docs/components/atoms/aw-icon-system-color.md +122 -0
  81. package/docs/components/atoms/aw-icon-system-mono.md +206 -0
  82. package/docs/components/atoms/aw-icon.md +235 -0
  83. package/docs/components/atoms/aw-info.md +123 -0
  84. package/docs/components/atoms/aw-input.md +212 -0
  85. package/docs/components/atoms/aw-label.md +136 -0
  86. package/docs/components/atoms/aw-link.md +151 -0
  87. package/docs/components/atoms/aw-list.md +152 -0
  88. package/docs/components/atoms/aw-progress.md +119 -0
  89. package/docs/components/atoms/aw-radio.md +182 -0
  90. package/docs/components/atoms/aw-refresh-wrapper.md +81 -0
  91. package/docs/components/atoms/aw-select-native.md +234 -0
  92. package/docs/components/atoms/aw-slider.md +189 -0
  93. package/docs/components/atoms/aw-sub-headline.md +73 -0
  94. package/docs/components/atoms/aw-switcher.md +192 -0
  95. package/docs/components/atoms/aw-tag.md +144 -0
  96. package/docs/components/atoms/aw-title.md +70 -0
  97. package/docs/components/atoms/aw-toggler.md +90 -0
  98. package/docs/components/layouts/aw-layout-center.md +168 -0
  99. package/docs/components/layouts/aw-layout-error.md +153 -0
  100. package/docs/components/layouts/aw-layout-provider.md +238 -0
  101. package/docs/components/layouts/aw-layout.md +88 -0
  102. package/docs/components/molecules/aw-action-button.md +138 -0
  103. package/docs/components/molecules/aw-alert.md +191 -0
  104. package/docs/components/molecules/aw-badge.md +129 -0
  105. package/docs/components/molecules/aw-banner-text.md +156 -0
  106. package/docs/components/molecules/aw-button-nav.md +111 -0
  107. package/docs/components/molecules/aw-button.md +193 -0
  108. package/docs/components/molecules/aw-description-input.md +124 -0
  109. package/docs/components/molecules/aw-empty-container.md +235 -0
  110. package/docs/components/molecules/aw-island.md +506 -0
  111. package/docs/components/molecules/aw-number.md +138 -0
  112. package/docs/components/molecules/aw-select-object.md +401 -0
  113. package/docs/components/molecules/aw-select.md +215 -0
  114. package/docs/components/molecules/aw-tab-nav.md +108 -0
  115. package/docs/components/molecules/aw-tel.md +129 -0
  116. package/docs/components/molecules/aw-textarea.md +83 -0
  117. package/docs/components/molecules/aw-userpic.md +115 -0
  118. package/docs/components/organisms/aw-address-block.md +64 -0
  119. package/docs/components/organisms/aw-address.md +132 -0
  120. package/docs/components/organisms/aw-birthday-picker.md +73 -0
  121. package/docs/components/organisms/aw-bottom-bar.md +66 -0
  122. package/docs/components/organisms/aw-calendar-days.md +115 -0
  123. package/docs/components/organisms/aw-calendar-nav.md +98 -0
  124. package/docs/components/organisms/aw-calendar-view.md +98 -0
  125. package/docs/components/organisms/aw-calendar.md +166 -0
  126. package/docs/components/organisms/aw-chart.md +154 -0
  127. package/docs/components/organisms/aw-chip-select.md +164 -0
  128. package/docs/components/organisms/aw-chip.md +126 -0
  129. package/docs/components/organisms/aw-code-snippet.md +94 -0
  130. package/docs/components/organisms/aw-code.md +132 -0
  131. package/docs/components/organisms/aw-context-menu.md +117 -0
  132. package/docs/components/organisms/aw-cropper.md +151 -0
  133. package/docs/components/organisms/aw-date.md +161 -0
  134. package/docs/components/organisms/aw-display-date.md +33 -0
  135. package/docs/components/organisms/aw-download-link.md +46 -0
  136. package/docs/components/organisms/aw-fetch-data.md +161 -0
  137. package/docs/components/organisms/aw-filter-chosen.md +226 -0
  138. package/docs/components/organisms/aw-filter-date-range.md +205 -0
  139. package/docs/components/organisms/aw-filter-month.md +43 -0
  140. package/docs/components/organisms/aw-filter-select.md +239 -0
  141. package/docs/components/organisms/aw-form.md +174 -0
  142. package/docs/components/organisms/aw-gmap-marker.md +86 -0
  143. package/docs/components/organisms/aw-gmap.md +90 -0
  144. package/docs/components/organisms/aw-image-upload.md +56 -0
  145. package/docs/components/organisms/aw-island-avatar.md +87 -0
  146. package/docs/components/organisms/aw-markdown-editor.md +104 -0
  147. package/docs/components/organisms/aw-modal-buttons.md +57 -0
  148. package/docs/components/organisms/aw-modal.md +246 -0
  149. package/docs/components/organisms/aw-model-edit.md +74 -0
  150. package/docs/components/organisms/aw-money.md +53 -0
  151. package/docs/components/organisms/aw-multi-block-builder.md +165 -0
  152. package/docs/components/organisms/aw-pagination.md +121 -0
  153. package/docs/components/organisms/aw-password.md +103 -0
  154. package/docs/components/organisms/aw-preview-card.md +45 -0
  155. package/docs/components/organisms/aw-search.md +116 -0
  156. package/docs/components/organisms/aw-subnav.md +122 -0
  157. package/docs/components/organisms/aw-table-builder.md +165 -0
  158. package/docs/components/organisms/aw-table-col.md +123 -0
  159. package/docs/components/organisms/aw-table-head.md +92 -0
  160. package/docs/components/organisms/aw-table-row.md +91 -0
  161. package/docs/components/organisms/aw-table.md +172 -0
  162. package/docs/components/organisms/aw-tags.md +54 -0
  163. package/docs/components/organisms/aw-toggle-show-aside.md +43 -0
  164. package/docs/components/organisms/aw-uploader-files.md +125 -0
  165. package/docs/components/organisms/aw-uploader.md +163 -0
  166. package/docs/components/organisms/aw-user-menu.md +87 -0
  167. package/docs/components/pages/aw-page-aside.md +296 -0
  168. package/docs/components/pages/aw-page-menu-buttons.md +172 -0
  169. package/docs/components/pages/aw-page-modal.md +198 -0
  170. package/docs/components/pages/aw-page-single.md +300 -0
  171. package/docs/components/pages/aw-page.md +194 -0
  172. package/docs/configuration.md +493 -0
  173. package/docs/cookbook/advanced-patterns.md +1388 -0
  174. package/docs/cookbook/common-patterns.md +965 -0
  175. package/docs/cookbook/index.md +786 -0
  176. package/docs/getting-started.md +596 -0
  177. package/docs/guides/best-practices.md +1106 -0
  178. package/docs/guides/data-fetching.md +852 -0
  179. package/docs/guides/error-handling.md +1172 -0
  180. package/docs/guides/forms-guide.md +1329 -0
  181. package/docs/guides/mobile-subnavigation.md +359 -0
  182. package/docs/guides/page-patterns/aside-pages.md +1418 -0
  183. package/docs/guides/page-patterns/dashboard-pages.md +990 -0
  184. package/docs/guides/page-patterns/detail-pages.md +1556 -0
  185. package/docs/guides/page-patterns/list-pages.md +1242 -0
  186. package/docs/index.md +263 -1
  187. package/docs/integrations.md +870 -0
  188. package/docs/reference/colors.md +232 -0
  189. package/docs/reference/icons.md +163 -0
  190. package/docs/reference/menu.md +462 -0
  191. package/docs/reference/plugins.md +970 -0
  192. package/docs/reference/troubleshooting.md +964 -0
  193. package/nuxt/awes.config.js +9 -8
  194. package/nuxt/index.js +2 -2
  195. package/nuxt/pages/more.vue +1 -1
  196. package/package.json +5 -3
  197. package/readme.md +171 -1
  198. package/store/awesIo.js +11 -0
  199. package/CHANGELOG.md +0 -4520
  200. package/docs/aw-accordion-fold.md +0 -46
  201. package/docs/aw-address.md +0 -44
  202. package/docs/aw-avatar.md +0 -51
  203. package/docs/aw-badge.md +0 -32
  204. package/docs/aw-button-nav.md +0 -44
  205. package/docs/aw-button.md +0 -50
  206. package/docs/aw-calendar-days.md +0 -46
  207. package/docs/aw-calendar-nav.md +0 -25
  208. package/docs/aw-calendar-view.md +0 -12
  209. package/docs/aw-calendar.md +0 -59
  210. package/docs/aw-card.md +0 -48
  211. package/docs/aw-chart.md +0 -51
  212. package/docs/aw-checkbox.md +0 -56
  213. package/docs/aw-chip-select.md +0 -46
  214. package/docs/aw-chip.md +0 -53
  215. package/docs/aw-code-snippet.md +0 -18
  216. package/docs/aw-code.md +0 -56
  217. package/docs/aw-content-wrapper.md +0 -40
  218. package/docs/aw-context-menu.md +0 -31
  219. package/docs/aw-cropper.md +0 -60
  220. package/docs/aw-dashboard-card.md +0 -37
  221. package/docs/aw-dashboard-donut.md +0 -30
  222. package/docs/aw-dashboard-line.md +0 -20
  223. package/docs/aw-dashboard-progress.md +0 -33
  224. package/docs/aw-dashboard-section.md +0 -32
  225. package/docs/aw-dashboard-speed.md +0 -30
  226. package/docs/aw-date.md +0 -52
  227. package/docs/aw-dropdown-button.md +0 -31
  228. package/docs/aw-dropdown.md +0 -69
  229. package/docs/aw-fetch-data.md +0 -45
  230. package/docs/aw-form.md +0 -52
  231. package/docs/aw-grid.md +0 -48
  232. package/docs/aw-icon.md +0 -50
  233. package/docs/aw-info.md +0 -53
  234. package/docs/aw-input.md +0 -55
  235. package/docs/aw-layout-default.md +0 -30
  236. package/docs/aw-layout-frame-center.md +0 -29
  237. package/docs/aw-layout-simple.md +0 -49
  238. package/docs/aw-link.md +0 -54
  239. package/docs/aw-markdown-editor.md +0 -51
  240. package/docs/aw-modal.md +0 -63
  241. package/docs/aw-multi-block-builder.md +0 -66
  242. package/docs/aw-page.md +0 -36
  243. package/docs/aw-pagination.md +0 -54
  244. package/docs/aw-password.md +0 -48
  245. package/docs/aw-radio.md +0 -54
  246. package/docs/aw-search.md +0 -49
  247. package/docs/aw-select.md +0 -93
  248. package/docs/aw-slider.md +0 -40
  249. package/docs/aw-svg-image.md +0 -19
  250. package/docs/aw-switcher.md +0 -51
  251. package/docs/aw-tab-nav.md +0 -55
  252. package/docs/aw-table-builder.md +0 -58
  253. package/docs/aw-table-col.md +0 -33
  254. package/docs/aw-table-head.md +0 -28
  255. package/docs/aw-table-row.md +0 -33
  256. package/docs/aw-table.md +0 -59
  257. package/docs/aw-tel.md +0 -47
  258. package/docs/aw-textarea.md +0 -47
  259. package/docs/aw-toggler.md +0 -41
  260. package/docs/aw-uploader-files.md +0 -20
  261. package/docs/aw-uploader.md +0 -60
  262. package/docs/aw-user-menu.md +0 -34
  263. package/docs/aw-userpic.md +0 -34
  264. /package/components/{3_organisms → 2_molecules}/AwTel.vue +0 -0
package/CHANGELOG.md DELETED
@@ -1,4520 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [2.142.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.142.2...@awes-io/ui@2.142.3) (2025-12-12)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * removed component restored ([a3e7498](https://github.com/awes-io/client/commit/a3e7498064fd0c82494b2ee986991bbca16fe98d))
12
-
13
-
14
-
15
-
16
-
17
- ## [2.142.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.142.1...@awes-io/ui@2.142.2) (2025-12-12)
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * unused component removed ([d0bb7a9](https://github.com/awes-io/client/commit/d0bb7a976a6fa4320b3f1d8210b43f5c82d0d6d0))
23
- * unused doc removed ([cd9f752](https://github.com/awes-io/client/commit/cd9f752b3313691661c2af1b7fbabb63fe66fcb4))
24
-
25
-
26
-
27
-
28
-
29
- ## [2.142.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.142.0...@awes-io/ui@2.142.1) (2025-12-12)
30
-
31
-
32
- ### Bug Fixes
33
-
34
- * **aw-image-upload:** safely scheck if crop modal opened ([5ec3822](https://github.com/awes-io/client/commit/5ec38226044734718d6d36f61c48eb16ab06aa38))
35
-
36
-
37
-
38
-
39
-
40
- # [2.142.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.141.0...@awes-io/ui@2.142.0) (2025-11-19)
41
-
42
-
43
- ### Features
44
-
45
- * change toast style ([c6c1de8](https://github.com/awes-io/client/commit/c6c1de872bef065e11b79679056adeb646400c13))
46
-
47
-
48
-
49
-
50
-
51
- # [2.141.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.140.0...@awes-io/ui@2.141.0) (2025-11-06)
52
-
53
-
54
- ### Bug Fixes
55
-
56
- * **aw-avatar:** placeholder image updated ([305c95c](https://github.com/awes-io/client/commit/305c95cd6ca0ed158d6ca6e071f0876221dd47d9))
57
-
58
-
59
- ### Features
60
-
61
- * change style for notification ([b9a92ea](https://github.com/awes-io/client/commit/b9a92eaf0bdc623fb4e4c3f3a99c7c054a73da94))
62
-
63
-
64
-
65
-
66
-
67
- # [2.140.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.139.0...@awes-io/ui@2.140.0) (2025-10-27)
68
-
69
-
70
- ### Bug Fixes
71
-
72
- * do nothing if select loading ([03a8a4b](https://github.com/awes-io/client/commit/03a8a4b931ff6f73d5398da9b80cbecadad63787))
73
-
74
-
75
- ### Features
76
-
77
- * create new design for notify component ([28523fc](https://github.com/awes-io/client/commit/28523fcf5950e384d659f2e69ad476803ae0c25e))
78
- * remove unused code ([f1a2390](https://github.com/awes-io/client/commit/f1a2390c383f0a9ab77f214eff2712c25e410796))
79
-
80
-
81
-
82
-
83
-
84
- # [2.139.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.138.0...@awes-io/ui@2.139.0) (2025-10-24)
85
-
86
-
87
- ### Features
88
-
89
- * change place error icons ([e0a692d](https://github.com/awes-io/client/commit/e0a692d81812488c7bbbdc66dc871bcbacf08673))
90
- * link regex extended ([6a37e65](https://github.com/awes-io/client/commit/6a37e65e2c1a9f735d966c6db7836cfd53b24e17))
91
-
92
-
93
-
94
-
95
-
96
- # [2.138.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.137.0...@awes-io/ui@2.138.0) (2025-10-17)
97
-
98
-
99
- ### Features
100
-
101
- * text contrast increased ([2f59c41](https://github.com/awes-io/client/commit/2f59c4192fe3f32b2cc288cf4ad865c2807aad6b))
102
-
103
-
104
-
105
-
106
-
107
- # [2.137.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.136.0...@awes-io/ui@2.137.0) (2025-10-17)
108
-
109
-
110
- ### Features
111
-
112
- * change color in new error layout icon ([4ebf14a](https://github.com/awes-io/client/commit/4ebf14a7927af3829f34b8dad28a35442b244f1c))
113
-
114
-
115
-
116
-
117
-
118
- # [2.136.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.135.0...@awes-io/ui@2.136.0) (2025-10-03)
119
-
120
-
121
- ### Bug Fixes
122
-
123
- * fix from review ([75ff49f](https://github.com/awes-io/client/commit/75ff49fa6a3574dd2b2a843118663759ef27ee0c))
124
- * google font removed by default ([fc49569](https://github.com/awes-io/client/commit/fc49569439b5771049043f8625df7cc9265b0694))
125
-
126
-
127
- ### Features
128
-
129
- * change cropper style ([b707f7b](https://github.com/awes-io/client/commit/b707f7b025ac159feedbe5a13de29543b7c4b0a2))
130
- * change logic for image upload ([ccc794c](https://github.com/awes-io/client/commit/ccc794c8826b9fe5d80ad0d5e42a853883813321))
131
- * create layout error and some fix style ([1a5eaf3](https://github.com/awes-io/client/commit/1a5eaf3859aa90bbaee1b036a3f4da65118e709e))
132
-
133
-
134
-
135
-
136
-
137
- # [2.135.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.134.0...@awes-io/ui@2.135.0) (2025-08-27)
138
-
139
-
140
- ### Features
141
-
142
- * add style for remove double scroll from fullscreen modal ([58795ae](https://github.com/awes-io/client/commit/58795ae254d186b34871b4be2b7123aa62a8e037))
143
-
144
-
145
-
146
-
147
-
148
- # [2.134.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.133.0...@awes-io/ui@2.134.0) (2025-08-15)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * fix modal disable scroll ([9f11732](https://github.com/awes-io/client/commit/9f11732545b531e6cbf4b3f929a0621d84d96324))
154
-
155
-
156
- ### Features
157
-
158
- * change logic for get element in scroll for modal ([b37acff](https://github.com/awes-io/client/commit/b37acff563b1a593ce411fa3c8153380b8cc0633))
159
-
160
-
161
-
162
-
163
-
164
- # [2.133.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.132.2...@awes-io/ui@2.133.0) (2025-08-12)
165
-
166
-
167
- ### Features
168
-
169
- * update component style ([2a43c73](https://github.com/awes-io/client/commit/2a43c73ece1cbb3b3becaa77e1d80dd61d5cd305))
170
-
171
-
172
-
173
-
174
-
175
- ## [2.132.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.132.1...@awes-io/ui@2.132.2) (2025-07-30)
176
-
177
-
178
- ### Bug Fixes
179
-
180
- * **aw-address:** filter unused address components ([8aaf228](https://github.com/awes-io/client/commit/8aaf22813877f4f241ebae55f98309c4c0ff2429))
181
-
182
-
183
-
184
-
185
-
186
- ## [2.132.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.132.0...@awes-io/ui@2.132.1) (2025-06-24)
187
-
188
-
189
- ### Bug Fixes
190
-
191
- * animate all buttons on action ([dc76915](https://github.com/awes-io/client/commit/dc76915a1701f68d263857efff3c0568bc427142))
192
-
193
-
194
-
195
-
196
-
197
- # [2.132.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.131.0...@awes-io/ui@2.132.0) (2025-06-24)
198
-
199
-
200
- ### Features
201
-
202
- * chart version support added ([17456f0](https://github.com/awes-io/client/commit/17456f041d22ee28a5c5fcc186b0226ddc5aaabc))
203
- * non-searchable selects expands dropdown on mobile ([9f8fdf9](https://github.com/awes-io/client/commit/9f8fdf9f7eabfe091771424faeafb36029214b6d))
204
-
205
-
206
-
207
-
208
-
209
- # [2.131.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.130.1...@awes-io/ui@2.131.0) (2025-06-20)
210
-
211
-
212
- ### Features
213
-
214
- * change title in cards ([c78f36f](https://github.com/awes-io/client/commit/c78f36f4dcc405dc8cfe14baadf8765b133077ea))
215
-
216
-
217
-
218
-
219
-
220
- ## [2.130.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.130.0...@awes-io/ui@2.130.1) (2025-06-02)
221
-
222
-
223
- ### Bug Fixes
224
-
225
- * fix show placeholder with label ([3b62947](https://github.com/awes-io/client/commit/3b62947839527cca4e765a62485e637247936db3))
226
-
227
-
228
-
229
-
230
-
231
- # [2.130.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.129.0...@awes-io/ui@2.130.0) (2025-05-14)
232
-
233
-
234
- ### Features
235
-
236
- * some change in single page ([aa17540](https://github.com/awes-io/client/commit/aa1754038747215016198660aa61f98f5f5a2cb2))
237
-
238
-
239
-
240
-
241
-
242
- # [2.129.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.128.0...@awes-io/ui@2.129.0) (2025-05-08)
243
-
244
-
245
- ### Bug Fixes
246
-
247
- * **aw-code:** disabled state added ([46f71fe](https://github.com/awes-io/client/commit/46f71fe14c4e2325641650ff6f83e799e206d206))
248
-
249
-
250
- ### Features
251
-
252
- * **aw-user-menu:** after profile slot added ([1f60871](https://github.com/awes-io/client/commit/1f608714335367d301610d812eca37a48f53fc58))
253
-
254
-
255
-
256
-
257
-
258
- # [2.128.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.127.3...@awes-io/ui@2.128.0) (2025-03-27)
259
-
260
-
261
- ### Features
262
-
263
- * change modal overlay opacity ([d43a164](https://github.com/awes-io/client/commit/d43a164528c7277a250a3dfa66fe073068c06a95))
264
-
265
-
266
-
267
-
268
-
269
- ## [2.127.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.127.2...@awes-io/ui@2.127.3) (2025-03-20)
270
-
271
-
272
- ### Bug Fixes
273
-
274
- * **auth:** refresh token expiration update on token update ([6240e08](https://github.com/awes-io/client/commit/6240e08b318a424764c6bb9ed2e82eded0bfcbf4))
275
- * console log removed ([cc4ed18](https://github.com/awes-io/client/commit/cc4ed18d70ed2674671e1f7e04e0180fc12c32cd))
276
-
277
-
278
-
279
-
280
-
281
- ## [2.127.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.127.1...@awes-io/ui@2.127.2) (2025-02-06)
282
-
283
-
284
- ### Bug Fixes
285
-
286
- * clear body scroll locks on route change ([51eef40](https://github.com/awes-io/client/commit/51eef403262cfa902a618eca9be18344f4c97294))
287
-
288
-
289
-
290
-
291
-
292
- ## [2.127.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.127.0...@awes-io/ui@2.127.1) (2025-01-30)
293
-
294
-
295
- ### Bug Fixes
296
-
297
- * **aw-dock:** leave scroll on content ([b6d239e](https://github.com/awes-io/client/commit/b6d239e10795e63331dc1eb720c84cd42cfe6083))
298
-
299
-
300
-
301
-
302
-
303
- # [2.127.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.126.1...@awes-io/ui@2.127.0) (2025-01-16)
304
-
305
-
306
- ### Features
307
-
308
- * add emit empty string for aw money ([2e24b8b](https://github.com/awes-io/client/commit/2e24b8bc34d72f3c815ff8e910bc799324be6245))
309
- * retry translations fetch on error ([1cee386](https://github.com/awes-io/client/commit/1cee386051a35e728c7d488ce207c0c4f685d393))
310
-
311
-
312
-
313
-
314
-
315
- ## [2.126.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.126.0...@awes-io/ui@2.126.1) (2025-01-14)
316
-
317
-
318
- ### Bug Fixes
319
-
320
- * fix page single header ([0868d6e](https://github.com/awes-io/client/commit/0868d6e15eb18e9d13fd26826651c784ce6092b8))
321
-
322
-
323
-
324
-
325
-
326
- # [2.126.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.125.0...@awes-io/ui@2.126.0) (2025-01-10)
327
-
328
-
329
- ### Bug Fixes
330
-
331
- * fix style in aw card component ([b69c5e7](https://github.com/awes-io/client/commit/b69c5e7bc1507b0b4c248f1e96de4f63c64f7b2f))
332
- * overlay improved ([9012a4f](https://github.com/awes-io/client/commit/9012a4f024c0067149121c05b9d503fdd0b84f64))
333
-
334
-
335
- ### Features
336
-
337
- * add new style for aw card ([37b7444](https://github.com/awes-io/client/commit/37b7444040e69b1b9e922dc429917ef8f736d30b))
338
-
339
-
340
-
341
-
342
-
343
- # [2.125.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.124.1...@awes-io/ui@2.125.0) (2024-12-24)
344
-
345
-
346
- ### Bug Fixes
347
-
348
- * fix file uploader ([9ff10ec](https://github.com/awes-io/client/commit/9ff10ec81012b2bd143f176d6251ce36abdb5076))
349
-
350
-
351
- ### Features
352
-
353
- * icon color changed ([1f3cc8c](https://github.com/awes-io/client/commit/1f3cc8cde1e74fc143f9053708f687d088667519))
354
-
355
-
356
-
357
-
358
-
359
- ## [2.124.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.124.0...@awes-io/ui@2.124.1) (2024-12-18)
360
-
361
-
362
- ### Bug Fixes
363
-
364
- * fix page header style ([7733119](https://github.com/awes-io/client/commit/77331192886622bd9477910c72ab54d6722f1496))
365
-
366
-
367
-
368
-
369
-
370
- # [2.124.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.123.0...@awes-io/ui@2.124.0) (2024-12-17)
371
-
372
-
373
- ### Features
374
-
375
- * change style for page and layout ([d89ce87](https://github.com/awes-io/client/commit/d89ce87602251d10c7979145ddf4495de23a523a))
376
-
377
-
378
-
379
-
380
-
381
- # [2.123.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.122.0...@awes-io/ui@2.123.0) (2024-12-16)
382
-
383
-
384
- ### Bug Fixes
385
-
386
- * fix file uploader ([cd87010](https://github.com/awes-io/client/commit/cd8701010d7955cf8363b6273ca0f919115380ca))
387
-
388
-
389
- ### Features
390
-
391
- * change style for header notification ([0e47a49](https://github.com/awes-io/client/commit/0e47a49b62e2a17de432a4aeb076d82596dbbef2))
392
-
393
-
394
-
395
-
396
-
397
- # [2.122.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.121.0...@awes-io/ui@2.122.0) (2024-12-13)
398
-
399
-
400
- ### Features
401
-
402
- * some change in avatar and header ([79b6dca](https://github.com/awes-io/client/commit/79b6dca7f61c8ff4877c7ccac10a0170d3cc38bf))
403
-
404
-
405
-
406
-
407
-
408
- # [2.121.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.120.0...@awes-io/ui@2.121.0) (2024-12-09)
409
-
410
-
411
- ### Bug Fixes
412
-
413
- * fix lint in page header style ([bf9c866](https://github.com/awes-io/client/commit/bf9c866a37e01398812f94c19deb9f6e6f20272a))
414
- * fix style in dropdown ([83e3bd7](https://github.com/awes-io/client/commit/83e3bd74b46c0dfcffe6b22d9bd7fd3532810985))
415
-
416
-
417
- ### Features
418
-
419
- * change style for dropdown ([44cda8d](https://github.com/awes-io/client/commit/44cda8dc492630af310f0fdf25a6c49965931222))
420
- * change style in header and mob menu ([3d4ae6f](https://github.com/awes-io/client/commit/3d4ae6f8ac3b988c28b6bb934910ad91f9b8ceea))
421
-
422
-
423
-
424
-
425
-
426
- # [2.120.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.119.0...@awes-io/ui@2.120.0) (2024-12-06)
427
-
428
-
429
- ### Features
430
-
431
- * change style for header and header notification ([d9ba150](https://github.com/awes-io/client/commit/d9ba150a719410cb26e2fcd8a70a47f4b8b65a3c))
432
- * change style place in header notification ([e56664e](https://github.com/awes-io/client/commit/e56664e735fcdeb0dc90e11341c1ad63e9c97c8b))
433
-
434
-
435
-
436
-
437
-
438
- # [2.119.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.118.1...@awes-io/ui@2.119.0) (2024-12-03)
439
-
440
-
441
- ### Bug Fixes
442
-
443
- * typo ([0950dc7](https://github.com/awes-io/client/commit/0950dc75e1e88f838831bc744e2964493cfd1475))
444
-
445
-
446
- ### Features
447
-
448
- * add ignore refrhes props for refresh wrapper ([ae5cc60](https://github.com/awes-io/client/commit/ae5cc60cf1fe6aeac2c1591d0cb348d1a177b08e))
449
- * change style for page header ([6751e08](https://github.com/awes-io/client/commit/6751e0835d54018b98e59dcf522a111bc68efdbd))
450
- * change style for search ([44318f0](https://github.com/awes-io/client/commit/44318f02455649715b7cc1f73087f74486b4bd12))
451
-
452
-
453
-
454
-
455
-
456
- ## [2.118.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.118.0...@awes-io/ui@2.118.1) (2024-11-29)
457
-
458
-
459
- ### Bug Fixes
460
-
461
- * fix aw uploader loading max files ([288e57b](https://github.com/awes-io/client/commit/288e57b64ea69187488f3b121c06388737607e47))
462
- * fix z-index in tooltip ([297f4d4](https://github.com/awes-io/client/commit/297f4d489e25c6768105db73745836d44af9a8ce))
463
-
464
-
465
-
466
-
467
-
468
- # [2.118.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.117.0...@awes-io/ui@2.118.0) (2024-11-29)
469
-
470
-
471
- ### Features
472
-
473
- * add switcher in mobile menu ([338e4de](https://github.com/awes-io/client/commit/338e4de3c4ba952e7234f781f7447cbfc0ac428a))
474
-
475
-
476
-
477
-
478
-
479
- # [2.117.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.116.0...@awes-io/ui@2.117.0) (2024-11-28)
480
-
481
-
482
- ### Features
483
-
484
- * **table-builder:** props to disable fetching ([c617fde](https://github.com/awes-io/client/commit/c617fde1833a50c775446cd5e3a95eb94a5593c2))
485
-
486
-
487
-
488
-
489
-
490
- # [2.116.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.115.0...@awes-io/ui@2.116.0) (2024-11-21)
491
-
492
-
493
- ### Bug Fixes
494
-
495
- * fix props name in uploader ([d219631](https://github.com/awes-io/client/commit/d21963105f821ce97f935851d2b4e1337020005d))
496
-
497
-
498
- ### Features
499
-
500
- * add file type in aw uploader ([b037bd9](https://github.com/awes-io/client/commit/b037bd977e2f76d21be4adf3041073e4ca6e5e58))
501
-
502
-
503
-
504
-
505
-
506
- # [2.115.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.114.2...@awes-io/ui@2.115.0) (2024-11-14)
507
-
508
-
509
- ### Features
510
-
511
- * add max files for upload in uploader ([53a2237](https://github.com/awes-io/client/commit/53a2237eaaaadf48ae976e6452d7115f593c3138))
512
-
513
-
514
-
515
-
516
-
517
- ## [2.114.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.114.1...@awes-io/ui@2.114.2) (2024-11-01)
518
-
519
-
520
- ### Bug Fixes
521
-
522
- * layout menu safe offsets added ([ffa0110](https://github.com/awes-io/client/commit/ffa011090dad734e465b869ea50dae413d66c443))
523
-
524
-
525
-
526
-
527
-
528
- ## [2.114.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.114.0...@awes-io/ui@2.114.1) (2024-10-30)
529
-
530
-
531
- ### Bug Fixes
532
-
533
- * dynamic max height in modal ([e510e0f](https://github.com/awes-io/client/commit/e510e0fc5b491347d6904d9aa2675d42ccea9584))
534
-
535
-
536
-
537
-
538
-
539
- # [2.114.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.113.0...@awes-io/ui@2.114.0) (2024-10-25)
540
-
541
-
542
- ### Features
543
-
544
- * add z-index for select mobile input ([582cbb1](https://github.com/awes-io/client/commit/582cbb1c2c3b771ff36602dbd7e8acaaa741b554))
545
-
546
-
547
-
548
-
549
-
550
- # [2.113.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.112.1...@awes-io/ui@2.113.0) (2024-10-15)
551
-
552
-
553
- ### Bug Fixes
554
-
555
- * **aw-page-header:** hide breadcrumb wrapper if empty ([c7d1781](https://github.com/awes-io/client/commit/c7d17817d0807fdffc441734dfc7c0b052b6a7e1))
556
-
557
-
558
- ### Features
559
-
560
- * change logic for show active mobile menu childer ([d1d1e08](https://github.com/awes-io/client/commit/d1d1e08d31802cbe50ac3a941f408b9f8167b343))
561
-
562
-
563
-
564
-
565
-
566
- ## [2.112.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.112.0...@awes-io/ui@2.112.1) (2024-10-04)
567
-
568
-
569
- ### Bug Fixes
570
-
571
- * aw-dock z-index increased ([d552d36](https://github.com/awes-io/client/commit/d552d36487ff48115c94e61e39e8fad629d95283))
572
- * z-indexes fix ([ee4a1ec](https://github.com/awes-io/client/commit/ee4a1ecdd99828391360159bafa7d10db834e6c1))
573
-
574
-
575
-
576
-
577
-
578
- # [2.112.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.111.0...@awes-io/ui@2.112.0) (2024-10-03)
579
-
580
-
581
- ### Features
582
-
583
- * ui styles updated ([a702ef3](https://github.com/awes-io/client/commit/a702ef35671a0fbd173ee826c84faed802037560))
584
-
585
-
586
-
587
-
588
-
589
- # [2.111.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.110.0...@awes-io/ui@2.111.0) (2024-09-30)
590
-
591
-
592
- ### Features
593
-
594
- * disabled buttons style updated ([e16b2c9](https://github.com/awes-io/client/commit/e16b2c901332fdf8ceca853b8883a1dc29bfc325))
595
-
596
-
597
-
598
-
599
-
600
- # [2.110.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.109.0...@awes-io/ui@2.110.0) (2024-09-20)
601
-
602
-
603
- ### Features
604
-
605
- * aw-dock events + bottom bar scroll top ([5bc3b32](https://github.com/awes-io/client/commit/5bc3b322a0460f9ea9fa0323eb4e006886b1fa39))
606
-
607
-
608
-
609
-
610
-
611
- # [2.109.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.108.2...@awes-io/ui@2.109.0) (2024-09-13)
612
-
613
-
614
- ### Features
615
-
616
- * add description for AwAlert ([874b900](https://github.com/awes-io/client/commit/874b900675b484fc1ba3d63c3925f9e1f01418f0))
617
-
618
-
619
-
620
-
621
-
622
- ## [2.108.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.108.1...@awes-io/ui@2.108.2) (2024-08-23)
623
-
624
-
625
- ### Bug Fixes
626
-
627
- * viewport check infinity loop removed ([5db5844](https://github.com/awes-io/client/commit/5db5844cb383dec764af89da7e6766972ecd26e0))
628
-
629
-
630
-
631
-
632
-
633
- ## [2.108.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.108.0...@awes-io/ui@2.108.1) (2024-08-07)
634
-
635
-
636
- ### Bug Fixes
637
-
638
- * **aw-code:** auto suggestion pastes all digits ([0032b66](https://github.com/awes-io/client/commit/0032b6643f4075839132e2c7c9847520ba8611fe))
639
-
640
-
641
-
642
-
643
-
644
- # [2.108.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.107.0...@awes-io/ui@2.108.0) (2024-07-30)
645
-
646
-
647
- ### Features
648
-
649
- * **aw-code:** component style updated ([dbd8ce2](https://github.com/awes-io/client/commit/dbd8ce2b3e8d6a8b6b3755cf2172b89433e810df))
650
- * update menu layout ([89ee43f](https://github.com/awes-io/client/commit/89ee43ffe8bd9f23118a1f57220665c2c898c823))
651
-
652
-
653
-
654
-
655
-
656
- # [2.107.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.106.2...@awes-io/ui@2.107.0) (2024-07-12)
657
-
658
-
659
- ### Bug Fixes
660
-
661
- * aw-switcher icon fix ([f7e2ecc](https://github.com/awes-io/client/commit/f7e2eccac106a57aede82414fb585924507f913e))
662
- * fix z-index in modal buttons ([337685a](https://github.com/awes-io/client/commit/337685ad88961d93ed1acc2f0610c9c18be90ea7))
663
-
664
-
665
- ### Features
666
-
667
- * aw-money input uses text and inputmode ([6bf5f9a](https://github.com/awes-io/client/commit/6bf5f9aede9bbc8f8b3fae065f2cbc0f6ea07406))
668
-
669
-
670
-
671
-
672
-
673
- ## [2.106.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.106.1...@awes-io/ui@2.106.2) (2024-07-04)
674
-
675
-
676
- ### Bug Fixes
677
-
678
- * **action-card:** header styles collision resolved ([0611bff](https://github.com/awes-io/client/commit/0611bff2f0ee3dac7be12f8b208718d4ceaf8bcd))
679
-
680
-
681
-
682
-
683
-
684
- ## [2.106.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.106.0...@awes-io/ui@2.106.1) (2024-06-25)
685
-
686
-
687
- ### Bug Fixes
688
-
689
- * release fix ([eca0996](https://github.com/awes-io/client/commit/eca0996771eef7d2485f49547a4702412960d149))
690
-
691
-
692
-
693
-
694
-
695
- # [2.106.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.105.0...@awes-io/ui@2.106.0) (2024-06-25)
696
-
697
-
698
- ### Features
699
-
700
- * release fix ([8e65368](https://github.com/awes-io/client/commit/8e65368607baadd1fb9b18f86050c9715ab059d1))
701
-
702
-
703
-
704
-
705
-
706
- # [2.105.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.104.0...@awes-io/ui@2.105.0) (2024-06-25)
707
-
708
-
709
- ### Features
710
-
711
- * release fix ([7b2983f](https://github.com/awes-io/client/commit/7b2983f7bb52f7a89c826c5be58cd2197531a10d))
712
-
713
-
714
-
715
-
716
-
717
- # [2.104.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.103.0...@awes-io/ui@2.104.0) (2024-06-25)
718
-
719
-
720
- ### Features
721
-
722
- * change style for switcher ([fc3d772](https://github.com/awes-io/client/commit/fc3d772943889dbd28a750ba59006fbe1b13a190))
723
- * refactoring style for aw alert ([7d16355](https://github.com/awes-io/client/commit/7d1635537803558800ab1741ce997d9a463d7146))
724
-
725
-
726
-
727
-
728
-
729
- # [2.103.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.102.2...@awes-io/ui@2.103.0) (2024-05-22)
730
-
731
-
732
- ### Bug Fixes
733
-
734
- * **aw-cropper:** refresh cropper after modal opened ([6621aab](https://github.com/awes-io/client/commit/6621aab2525a40c8b7e976aa06947033bedabdd8))
735
- * fix component logic and style ([34acd24](https://github.com/awes-io/client/commit/34acd2404529a5a6fe63e342438996c8877cf080))
736
- * fix padding bottom in page content ([c975edd](https://github.com/awes-io/client/commit/c975edd37d199ad546ab254714f115405d88e1af))
737
-
738
-
739
- ### Features
740
-
741
- * change padding for content modal with buttons ([b0220f6](https://github.com/awes-io/client/commit/b0220f6f4d6a86f17dfa846d5db761c9c890c9bc))
742
-
743
-
744
-
745
-
746
-
747
- ## [2.102.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.102.1...@awes-io/ui@2.102.2) (2024-04-26)
748
-
749
-
750
- ### Bug Fixes
751
-
752
- * visual fixes ([12624d4](https://github.com/awes-io/client/commit/12624d44058e6f4273b5647c3a333dafb7f0e36b))
753
-
754
-
755
-
756
-
757
-
758
- ## [2.102.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.102.0...@awes-io/ui@2.102.1) (2024-04-25)
759
-
760
-
761
- ### Bug Fixes
762
-
763
- * double tap ios fixed ([7c0ba39](https://github.com/awes-io/client/commit/7c0ba39140cf6751be691893261152fc986d8abb))
764
-
765
-
766
-
767
-
768
-
769
- # [2.102.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.101.0...@awes-io/ui@2.102.0) (2024-04-24)
770
-
771
-
772
- ### Features
773
-
774
- * **aw-select-object:** pass close function to slots ([ade33a0](https://github.com/awes-io/client/commit/ade33a0dfae9aaef4cd228557b21b5290c35909a))
775
-
776
-
777
-
778
-
779
-
780
- # [2.101.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.100.1...@awes-io/ui@2.101.0) (2024-04-19)
781
-
782
-
783
- ### Bug Fixes
784
-
785
- * tel updated ([808bb10](https://github.com/awes-io/client/commit/808bb104783bd7a98a417cf0aeff9fa0cd8e71c0))
786
-
787
-
788
- ### Features
789
-
790
- * add description for aw card ([2961740](https://github.com/awes-io/client/commit/2961740faae3ebb93c2cf7a5efe74bef93f03522))
791
-
792
-
793
-
794
-
795
-
796
- ## [2.100.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.100.0...@awes-io/ui@2.100.1) (2024-04-05)
797
-
798
-
799
- ### Bug Fixes
800
-
801
- * styles fixes ([baf58ba](https://github.com/awes-io/client/commit/baf58ba2e65709e5faed5203246c07c609c945f8))
802
-
803
-
804
-
805
-
806
-
807
- # [2.100.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.99.0...@awes-io/ui@2.100.0) (2024-04-04)
808
-
809
-
810
- ### Bug Fixes
811
-
812
- * **nuxt-auth:** remove auth interceptor fixed ([389b092](https://github.com/awes-io/client/commit/389b092e4d95771104c747b29e8324689624f6d5))
813
- * fix style in page single ([bb63361](https://github.com/awes-io/client/commit/bb633613ec304753bc9af4336590cfcdbb2d1cca))
814
- * select native caret properly named ([87cfef9](https://github.com/awes-io/client/commit/87cfef93f6b5c0cba9b84d20bab721705481d791))
815
- * toggle show aside z-index increeased ([6d6aeb9](https://github.com/awes-io/client/commit/6d6aeb961d7ab6a9185c2b8303d35163dc0c6bc2))
816
- * typography styles updated ([f998b63](https://github.com/awes-io/client/commit/f998b63107374516647ad31ba799bcddaf152094))
817
-
818
-
819
- ### Features
820
-
821
- * add new header for aw page ([a2d895a](https://github.com/awes-io/client/commit/a2d895a84182f849db86c0c8a5cee0df077bc428))
822
- * page headers unified ([00afeb8](https://github.com/awes-io/client/commit/00afeb8655c8c76e8cd96a80734ed77af229bdb0))
823
-
824
-
825
-
826
-
827
-
828
- # [2.99.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.98.2...@awes-io/ui@2.99.0) (2024-03-25)
829
-
830
-
831
- ### Bug Fixes
832
-
833
- * toggle show aside moved to organisms ([9783aa1](https://github.com/awes-io/client/commit/9783aa11c288235b1e40f9e08b44ddb4e77b8eb2))
834
-
835
-
836
- ### Features
837
-
838
- * aside controls from config ([eb4bd0a](https://github.com/awes-io/client/commit/eb4bd0af6369d4034b727c9ce41f3079e3fdbee9))
839
- * change prefix style in select ([0b5600a](https://github.com/awes-io/client/commit/0b5600a37599682d3bc82589d0cda4318f4d07ef))
840
- * create new component for toggle aside ([d5fcb35](https://github.com/awes-io/client/commit/d5fcb35b16f3a0d1e47d8bbf478faa4453db4ae5))
841
-
842
-
843
-
844
-
845
-
846
- ## [2.98.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.98.1...@awes-io/ui@2.98.2) (2024-02-27)
847
-
848
-
849
- ### Bug Fixes
850
-
851
- * mobile menu item styles updated ([e8d7c53](https://github.com/awes-io/client/commit/e8d7c5317c6d7be8bd2b9d6a095060f33f07abc3))
852
-
853
-
854
-
855
-
856
-
857
- ## [2.98.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.98.0...@awes-io/ui@2.98.1) (2024-02-21)
858
-
859
-
860
- ### Bug Fixes
861
-
862
- * default subnav style added ([ec689f0](https://github.com/awes-io/client/commit/ec689f0b8520226d4c26ffc25fc582a61c1674ca))
863
-
864
-
865
-
866
-
867
-
868
- # [2.98.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.97.2...@awes-io/ui@2.98.0) (2024-02-20)
869
-
870
-
871
- ### Features
872
-
873
- * layout upgrades ([560ac43](https://github.com/awes-io/client/commit/560ac43c1db36029d532ec5c5b33b0d7e5b74b5f))
874
-
875
-
876
-
877
-
878
-
879
- ## [2.97.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.97.1...@awes-io/ui@2.97.2) (2024-02-19)
880
-
881
-
882
- ### Bug Fixes
883
-
884
- * hotfix app language detection ([7267884](https://github.com/awes-io/client/commit/7267884cddd4ded7831e5fc6653f860158df0eb2))
885
-
886
-
887
-
888
-
889
-
890
- ## [2.97.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.97.0...@awes-io/ui@2.97.1) (2024-02-19)
891
-
892
-
893
- ### Bug Fixes
894
-
895
- * **aw-bottom-bar:** safe padding restored ([8b3fd2a](https://github.com/awes-io/client/commit/8b3fd2ac75f506178c9c07f6f1ec40fa2d6e34c1))
896
- * **aw-bottom-bar:** safe padding restored ([8db3d3f](https://github.com/awes-io/client/commit/8db3d3fbf14481dee734900dd7ff104b79554831))
897
-
898
-
899
-
900
-
901
-
902
- # [2.97.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.96.1...@awes-io/ui@2.97.0) (2024-02-19)
903
-
904
-
905
- ### Bug Fixes
906
-
907
- * fix border style in table ([e548132](https://github.com/awes-io/client/commit/e548132e8ab938d5600df672174eb5f0878d1774))
908
- * fix max-width in mobile menu items ([874d0e4](https://github.com/awes-io/client/commit/874d0e4ad84c8d501debd088262a2705dc4a4d54))
909
-
910
-
911
- ### Features
912
-
913
- * change mono and surface colors ([79b060b](https://github.com/awes-io/client/commit/79b060b52f4999ef53458955e8561c6c87cf3e2c))
914
-
915
-
916
-
917
-
918
-
919
- ## [2.96.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.96.0...@awes-io/ui@2.96.1) (2024-02-17)
920
-
921
-
922
- ### Bug Fixes
923
-
924
- * updated versions ([72b7aef](https://github.com/awes-io/client/commit/72b7aeffccb6789009703d4008569d4b079be9c8))
925
-
926
-
927
-
928
-
929
-
930
- # [2.96.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.95.0...@awes-io/ui@2.96.0) (2024-02-17)
931
-
932
-
933
- ### Features
934
-
935
- * some changes in style and logic in mobile menu ([0153aed](https://github.com/awes-io/client/commit/0153aed8c1d68593210f965c532d48581f03a0f2))
936
-
937
-
938
-
939
-
940
-
941
- # [2.95.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.94.1...@awes-io/ui@2.95.0) (2024-02-15)
942
-
943
-
944
- ### Features
945
-
946
- * add border radius for mobile modal ([23f00cc](https://github.com/awes-io/client/commit/23f00ccaf6970f601b60e57dbc3fd0a54d97cb01))
947
- * add border radius for more page and new design for bottom bar ([1d236fd](https://github.com/awes-io/client/commit/1d236fd98863837ad879317ec69f1a8bdf924352))
948
- * add new mono color for dark mobile ([2dcb05c](https://github.com/awes-io/client/commit/2dcb05c40263aabcf808207b08472d4c7103ba61))
949
- * add width for mobile menu icon ([58268e7](https://github.com/awes-io/client/commit/58268e74230e4e801703d205960460c071dcfe52))
950
-
951
-
952
-
953
-
954
-
955
- ## [2.94.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.94.0...@awes-io/ui@2.94.1) (2024-02-12)
956
-
957
-
958
- ### Bug Fixes
959
-
960
- * **aw-calendar-weekdays:** support long and short locales in translation ([d9e5b08](https://github.com/awes-io/client/commit/d9e5b088e2ae95858c1fedca1cd05613a4bdafea))
961
-
962
-
963
-
964
-
965
-
966
- # [2.94.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.93.1...@awes-io/ui@2.94.0) (2024-02-07)
967
-
968
-
969
- ### Bug Fixes
970
-
971
- * **aw-image-upload:** call to method fixed ([220647b](https://github.com/awes-io/client/commit/220647b9e5a8fe1ce91e5b0b8ab7d8996db9b865))
972
-
973
-
974
- ### Features
975
-
976
- * **action-icon:** xxs size added ([7057713](https://github.com/awes-io/client/commit/70577138238e906679094df73ca622b6155163a6))
977
- * change btn color and radius in mob select close btn ([add50f4](https://github.com/awes-io/client/commit/add50f47d76124af0c0ef7fde44307b2447aa090))
978
- * change style in mobile menu page ([6f5c7b7](https://github.com/awes-io/client/commit/6f5c7b7cd49a2d873ace9b1907f2854ca930e6bb))
979
-
980
-
981
-
982
-
983
-
984
- ## [2.93.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.93.0...@awes-io/ui@2.93.1) (2024-02-02)
985
-
986
-
987
- ### Bug Fixes
988
-
989
- * fix href in mobile menu item ([6c869e8](https://github.com/awes-io/client/commit/6c869e8d17f2650fb69cf25ee8019c9ab965636f))
990
- * mobile menu items count fixed ([ff4fd20](https://github.com/awes-io/client/commit/ff4fd20c8608b4af27eb288e8e320d9fef323e90))
991
-
992
-
993
-
994
-
995
-
996
- # [2.93.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.92.0...@awes-io/ui@2.93.0) (2024-02-01)
997
-
998
-
999
- ### Bug Fixes
1000
-
1001
- * release fixes ([fae62d8](https://github.com/awes-io/client/commit/fae62d8883f56900794dfe54d1c433b10700cb74))
1002
-
1003
-
1004
- ### Features
1005
-
1006
- * add header slot for modal ([65b06f9](https://github.com/awes-io/client/commit/65b06f95372628dac9e8a39523219297550f4eed))
1007
-
1008
-
1009
-
1010
-
1011
-
1012
- # [2.92.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.91.1...@awes-io/ui@2.92.0) (2024-01-29)
1013
-
1014
-
1015
- ### Bug Fixes
1016
-
1017
- * **aw-modal:** remove get param if non closable ([3a591b5](https://github.com/awes-io/client/commit/3a591b502a12fda867c22e60e5c12e1464716207))
1018
-
1019
-
1020
- ### Features
1021
-
1022
- * add btn for close mobile select ([b590540](https://github.com/awes-io/client/commit/b590540cc235075dfd9071ba0be42e57bd610a65))
1023
- * add props for not closing modal ([00bd65c](https://github.com/awes-io/client/commit/00bd65c7741ec12b1314c15158cbd3d57c40e7b9))
1024
- * create page for mobile menu ([9b9b80a](https://github.com/awes-io/client/commit/9b9b80a67f97b6126e6196ffbcb862d4629df0a3))
1025
-
1026
-
1027
-
1028
-
1029
-
1030
- ## [2.91.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.91.0...@awes-io/ui@2.91.1) (2024-01-25)
1031
-
1032
-
1033
- ### Bug Fixes
1034
-
1035
- * conditional chainig removed ([9c2cd3e](https://github.com/awes-io/client/commit/9c2cd3ea940c809a615435edc5d219495ee0e9a7))
1036
-
1037
-
1038
-
1039
-
1040
-
1041
- # [2.91.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.90.0...@awes-io/ui@2.91.0) (2024-01-19)
1042
-
1043
-
1044
- ### Features
1045
-
1046
- * **aw-dropdown:** button styles updated ([e9dcb81](https://github.com/awes-io/client/commit/e9dcb8166888e29285b326b36a2f5cf04609cc8f))
1047
-
1048
-
1049
-
1050
-
1051
-
1052
- # [2.90.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.89.1...@awes-io/ui@2.90.0) (2024-01-16)
1053
-
1054
-
1055
- ### Bug Fixes
1056
-
1057
- * release fixes ([30bc285](https://github.com/awes-io/client/commit/30bc2859d60c3b764a891ad08d91fa541faa5c74))
1058
-
1059
-
1060
- ### Features
1061
-
1062
- * change label in switcher padding top by size ([7f7191b](https://github.com/awes-io/client/commit/7f7191bf03c50a1a65c88677e45bb063d9b3fdac))
1063
-
1064
-
1065
-
1066
-
1067
-
1068
- ## [2.89.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.89.0...@awes-io/ui@2.89.1) (2024-01-12)
1069
-
1070
-
1071
- ### Bug Fixes
1072
-
1073
- * typo fixed ([db3bfd1](https://github.com/awes-io/client/commit/db3bfd13f8d0c731ba1cc4403ad3ccf1ea64177e))
1074
-
1075
-
1076
-
1077
-
1078
-
1079
- # [2.89.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.88.0...@awes-io/ui@2.89.0) (2023-12-27)
1080
-
1081
-
1082
- ### Bug Fixes
1083
-
1084
- * **aw-action-button:** empty first icon allowed ([4d17819](https://github.com/awes-io/client/commit/4d17819000fe2e90d2b848d5d97cd34d499b9627))
1085
- * label markup updated ([77e3250](https://github.com/awes-io/client/commit/77e32501fe429efb61880c8790bc67ca07d50cba))
1086
-
1087
-
1088
- ### Features
1089
-
1090
- * **aw-image-upload:** component added ([d801ab4](https://github.com/awes-io/client/commit/d801ab40fe6b8023aee66e3a1396686ae5ec26a2))
1091
- * change padding in label ([f37d82d](https://github.com/awes-io/client/commit/f37d82dba7da4c52e1347885ad9c7e43faea6f49))
1092
-
1093
-
1094
-
1095
-
1096
-
1097
- # [2.88.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.87.0...@awes-io/ui@2.88.0) (2023-12-26)
1098
-
1099
-
1100
- ### Features
1101
-
1102
- * buttons components refactored ([6a94a81](https://github.com/awes-io/client/commit/6a94a81e5fa78b56222f10cca3e02ffe5e734320))
1103
- * change style in menu items ([1bad6e8](https://github.com/awes-io/client/commit/1bad6e845bf637c18774e29c44093129a212190f))
1104
-
1105
-
1106
-
1107
-
1108
-
1109
- # [2.87.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.86.0...@awes-io/ui@2.87.0) (2023-12-13)
1110
-
1111
-
1112
- ### Features
1113
-
1114
- * change style for btn and create square btn ([60619d5](https://github.com/awes-io/client/commit/60619d563eec0b38279790b5b24277b512a4c735))
1115
- * **aw-button-nav:** togglers grows to full width on mobile ([47f0f3a](https://github.com/awes-io/client/commit/47f0f3af89fcea75e0fb7ee2685923866840cb99))
1116
- * change dark color ([00d26bf](https://github.com/awes-io/client/commit/00d26bfbb75145af849681700fde13ece788c9bf))
1117
- * change style for desktop user menu ([a59f5be](https://github.com/awes-io/client/commit/a59f5be0fe9fc5727a53a52cd88a6c1a34880a66))
1118
-
1119
-
1120
-
1121
-
1122
-
1123
- # [2.86.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.85.0...@awes-io/ui@2.86.0) (2023-12-05)
1124
-
1125
-
1126
- ### Features
1127
-
1128
- * update ([f03eef5](https://github.com/awes-io/client/commit/f03eef533592981c75d59551b466c790ecaed0ab))
1129
-
1130
-
1131
-
1132
-
1133
-
1134
- # [2.85.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.84.0...@awes-io/ui@2.85.0) (2023-12-05)
1135
-
1136
-
1137
- ### Features
1138
-
1139
- * add new action component ([34ac283](https://github.com/awes-io/client/commit/34ac283c6ef86e4453df13bcf1a0a84e54edfd43))
1140
- * **aw-action-card:** component added ([9c5b320](https://github.com/awes-io/client/commit/9c5b3200c9b9e4303ddaee7dc820e3e45b559942))
1141
- * add disable color for select object and fix style in aside modal ([f360510](https://github.com/awes-io/client/commit/f3605102099c8b354c0b6543f21f7a02c8abef8b))
1142
- * add min width for tab button without min width ([8bcd67d](https://github.com/awes-io/client/commit/8bcd67d78c305cb38e6c7220ceaf154480792b59))
1143
- * change basic style logic for aw label ([2f4bd5a](https://github.com/awes-io/client/commit/2f4bd5a08778e18156b7a87acfb7537c14b11ab7))
1144
- * change style for mobile menu ([d9c636e](https://github.com/awes-io/client/commit/d9c636ea479e90be2e3e1240e56fd08d8d053835))
1145
-
1146
-
1147
-
1148
-
1149
-
1150
- # [2.84.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.83.0...@awes-io/ui@2.84.0) (2023-11-23)
1151
-
1152
-
1153
- ### Features
1154
-
1155
- * **vue-mc:** injectable system added ([98a6cb6](https://github.com/awes-io/client/commit/98a6cb6542122e4404817d63fa198e160dcc99b1))
1156
-
1157
-
1158
-
1159
-
1160
-
1161
- # [2.83.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.82.0...@awes-io/ui@2.83.0) (2023-11-15)
1162
-
1163
-
1164
- ### Features
1165
-
1166
- * address block sends formatted address ([fd5c456](https://github.com/awes-io/client/commit/fd5c45646187c2ce5167303c35acb70a1d1f6f17))
1167
- * change hove and focus color for inputs ([087787a](https://github.com/awes-io/client/commit/087787a665c170f9b79abba22bc4b0d6a56c8bc4))
1168
- * change style for dropdown btn ([31916a6](https://github.com/awes-io/client/commit/31916a61f049a4c7d3d8354e97419d27ce03a992))
1169
-
1170
-
1171
-
1172
-
1173
-
1174
- # [2.82.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.81.0...@awes-io/ui@2.82.0) (2023-11-08)
1175
-
1176
-
1177
- ### Features
1178
-
1179
- * mobile nav special behaviour added ([0c37293](https://github.com/awes-io/client/commit/0c37293ebc3b3d73a5d39c4a5a4d376d612e7013))
1180
-
1181
-
1182
-
1183
-
1184
-
1185
- # [2.81.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.80.0...@awes-io/ui@2.81.0) (2023-11-08)
1186
-
1187
-
1188
- ### Features
1189
-
1190
- * change hover state in switch component and links ([0fb0378](https://github.com/awes-io/client/commit/0fb0378f3d905ce6f9ab7989f6d6b191a7b4f247))
1191
- * **aw-user-menu:** add hover state on profile link ([27cb4a8](https://github.com/awes-io/client/commit/27cb4a869d3f397106d395e17c5dc0f1096ef908))
1192
- * change color in icon in dropdown btn ([b1c3b91](https://github.com/awes-io/client/commit/b1c3b91758c2b3b3589fecde8bbdaa008553c6c8))
1193
-
1194
-
1195
-
1196
-
1197
-
1198
- # [2.80.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.79.0...@awes-io/ui@2.80.0) (2023-11-07)
1199
-
1200
-
1201
- ### Features
1202
-
1203
- * change dark colors ([778849d](https://github.com/awes-io/client/commit/778849d643154a47a587126c09647f9459dcc492))
1204
- * change style for tooltip and menu item ([7d37a3f](https://github.com/awes-io/client/commit/7d37a3f7b98c02b735a0bceb394bb586a5b4ae96))
1205
- * change style in layot, dd btn and button nav ([c00a414](https://github.com/awes-io/client/commit/c00a414cb403de539e2a69b3e01b3449467edec7))
1206
-
1207
-
1208
-
1209
-
1210
-
1211
- # [2.79.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.78.0...@awes-io/ui@2.79.0) (2023-11-03)
1212
-
1213
-
1214
- ### Features
1215
-
1216
- * add modifiers for button nav ([80c10dc](https://github.com/awes-io/client/commit/80c10dc39254387a82069b117cf71ce2c5134618))
1217
- * change logic for create page in pagination ([428c07c](https://github.com/awes-io/client/commit/428c07c3a79d741d7e28fe368361d60162195a41))
1218
-
1219
-
1220
-
1221
-
1222
-
1223
- # [2.78.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.77.0...@awes-io/ui@2.78.0) (2023-11-02)
1224
-
1225
-
1226
- ### Bug Fixes
1227
-
1228
- * **aw-page-single:** progress hidden on mobile ([4b749c5](https://github.com/awes-io/client/commit/4b749c523669194629d05962f722e87a2764fe61))
1229
-
1230
-
1231
- ### Features
1232
-
1233
- * change style for desktop menu ([3b41640](https://github.com/awes-io/client/commit/3b41640e555afa5a46b69ecc53437ad818ae4081))
1234
- * change style for menu ([cc041e7](https://github.com/awes-io/client/commit/cc041e7c8e3f0cbdfc7ec27ba9705b3f7d9afd0c))
1235
- * change style in menu ([de4f03d](https://github.com/awes-io/client/commit/de4f03d8818589f48844ba825ec3469910cedc8f))
1236
- * change style in menu ([616a726](https://github.com/awes-io/client/commit/616a726884356b878b070ccc15fc40f7247613ab))
1237
- * remove custom dark theme for desktop menu ([52f109e](https://github.com/awes-io/client/commit/52f109e187af884741fed932de8e638dae23ac7b))
1238
-
1239
-
1240
-
1241
-
1242
-
1243
- # [2.77.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.76.0...@awes-io/ui@2.77.0) (2023-11-02)
1244
-
1245
-
1246
- ### Bug Fixes
1247
-
1248
- * styles updated ([a8eaf37](https://github.com/awes-io/client/commit/a8eaf371af18a017ba3aac73a49684ca4ae15120))
1249
-
1250
-
1251
- ### Features
1252
-
1253
- * add square for cropper if is square island avatar ([38cf594](https://github.com/awes-io/client/commit/38cf594435db8bce9eb738426b54fd65fee0bf5d))
1254
- * change style for button nav ([5ec3806](https://github.com/awes-io/client/commit/5ec3806326b6edb777a6e9248cfc57c3fb7812dd))
1255
- * change style for button nav ([5c1a0a3](https://github.com/awes-io/client/commit/5c1a0a34d9bfe2023cdbf1c8e141ccf551c5a720))
1256
- * change style for pagination ([0ca8d07](https://github.com/awes-io/client/commit/0ca8d075e79935d0c1dd02eedf935320930b3383))
1257
- * change style for tab nav and pagination ([b5ecc29](https://github.com/awes-io/client/commit/b5ecc293477ca8aa4dca1778dcb74ee142cca2b7))
1258
-
1259
-
1260
-
1261
-
1262
-
1263
- # [2.76.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.75.0...@awes-io/ui@2.76.0) (2023-10-25)
1264
-
1265
-
1266
- ### Features
1267
-
1268
- * add square classes for cropper and avatar ([ed653b7](https://github.com/awes-io/client/commit/ed653b722f898234636cac914b26f6b40a10e240))
1269
- * aw-page-single component added ([10f90ee](https://github.com/awes-io/client/commit/10f90eecfe17e2942dd1562c32f3c90626cfb0c3))
1270
-
1271
-
1272
-
1273
-
1274
-
1275
- # [2.75.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.74.1...@awes-io/ui@2.75.0) (2023-10-12)
1276
-
1277
-
1278
- ### Features
1279
-
1280
- * change style for alert, button nav and change menu logic ([62f96d8](https://github.com/awes-io/client/commit/62f96d84af39dee2bd1e5569451cb57901d262fa))
1281
- * partial dark theme support ([b3d1a9b](https://github.com/awes-io/client/commit/b3d1a9bbb009bf6a447f6ee748d9165450f33dbe))
1282
-
1283
-
1284
-
1285
-
1286
-
1287
- ## [2.74.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.74.0...@awes-io/ui@2.74.1) (2023-10-11)
1288
-
1289
-
1290
- ### Bug Fixes
1291
-
1292
- * dark colors tuned ([cfbbe41](https://github.com/awes-io/client/commit/cfbbe41edcb1fdfd91a78cbdca645f451cceb38f))
1293
-
1294
-
1295
-
1296
-
1297
-
1298
- # [2.74.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.73.1...@awes-io/ui@2.74.0) (2023-10-10)
1299
-
1300
-
1301
- ### Bug Fixes
1302
-
1303
- * fix style in component ([3b2dbb4](https://github.com/awes-io/client/commit/3b2dbb485ccbeab0aa96941e2f7f53ccb4e7ddaa))
1304
- * some fix style in menu and form components ([e64a877](https://github.com/awes-io/client/commit/e64a877ce0e4d8803a7c8b1edb59dac53bcf5aed))
1305
-
1306
-
1307
- ### Features
1308
-
1309
- * add check external link in user profile ([95e1f52](https://github.com/awes-io/client/commit/95e1f5253097847b06fbdcab808ea0e53a9513c3))
1310
- * change border radius in button nav ([9bb4252](https://github.com/awes-io/client/commit/9bb4252bdf7d4f1dc8744f025aa74f3ed3f8f89d))
1311
- * change search icon ([70553be](https://github.com/awes-io/client/commit/70553be865e11e8ddd7a9461cbffef5f129aed5d))
1312
-
1313
-
1314
-
1315
-
1316
-
1317
- ## [2.73.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.73.0...@awes-io/ui@2.73.1) (2023-10-06)
1318
-
1319
-
1320
- ### Bug Fixes
1321
-
1322
- * colors from design system ([1ba4cc0](https://github.com/awes-io/client/commit/1ba4cc0204d34bd63a453b9942e81724b388e240))
1323
-
1324
-
1325
-
1326
-
1327
-
1328
- # [2.73.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.72.0...@awes-io/ui@2.73.0) (2023-09-29)
1329
-
1330
-
1331
- ### Features
1332
-
1333
- * change styles in components ([603d7a8](https://github.com/awes-io/client/commit/603d7a8ed86e548446afe5b656821ed0e34c528c))
1334
-
1335
-
1336
-
1337
-
1338
-
1339
- # [2.72.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.71.1...@awes-io/ui@2.72.0) (2023-09-19)
1340
-
1341
-
1342
- ### Bug Fixes
1343
-
1344
- * **aw-file:** bind all attrs to input ([7cb6690](https://github.com/awes-io/client/commit/7cb66900c5fe33305f89f9b86a27c4b7e23baaef))
1345
-
1346
-
1347
- ### Features
1348
-
1349
- * change styles and logic in components ([9888bed](https://github.com/awes-io/client/commit/9888bed0290beb06b656bfd12f9493a72c149428))
1350
-
1351
-
1352
-
1353
-
1354
-
1355
- ## [2.71.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.71.0...@awes-io/ui@2.71.1) (2023-09-11)
1356
-
1357
-
1358
- ### Bug Fixes
1359
-
1360
- * menu styles updated ([febfcaf](https://github.com/awes-io/client/commit/febfcaf2c93d0ecbf17501faed24b277013163b0))
1361
-
1362
-
1363
-
1364
-
1365
-
1366
- # [2.71.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.70.0...@awes-io/ui@2.71.0) (2023-09-08)
1367
-
1368
-
1369
- ### Features
1370
-
1371
- * replace style and components from easyweek ([72b829c](https://github.com/awes-io/client/commit/72b829c6fbc0b57e0ed275fd7858ab1e9817e448))
1372
-
1373
-
1374
-
1375
-
1376
-
1377
- # [2.70.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.69.0...@awes-io/ui@2.70.0) (2023-09-04)
1378
-
1379
-
1380
- ### Features
1381
-
1382
- * create new styles for layout ([0406558](https://github.com/awes-io/client/commit/04065588301b26f2941e01a2b72f3ff6890a9840))
1383
-
1384
-
1385
-
1386
-
1387
-
1388
- # [2.69.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.68.1...@awes-io/ui@2.69.0) (2023-09-04)
1389
-
1390
-
1391
- ### Bug Fixes
1392
-
1393
- * pkg ([3a0fb7b](https://github.com/awes-io/client/commit/3a0fb7bac1c9f2b41abbeebc866458ac9d6a06d9))
1394
-
1395
-
1396
- ### Features
1397
-
1398
- * update ([ba17580](https://github.com/awes-io/client/commit/ba1758017437b2cb18109807ab4465f6be4a0ba1))
1399
-
1400
-
1401
-
1402
-
1403
-
1404
- ## [2.68.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.68.0...@awes-io/ui@2.68.1) (2023-09-04)
1405
-
1406
-
1407
- ### Bug Fixes
1408
-
1409
- * change styles and code in some components ([1d998fb](https://github.com/awes-io/client/commit/1d998fb7d07587feead975fafc9dd9205e4372c4))
1410
-
1411
-
1412
-
1413
-
1414
-
1415
- # [2.68.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.67.0...@awes-io/ui@2.68.0) (2023-08-25)
1416
-
1417
-
1418
- ### Bug Fixes
1419
-
1420
- * checkbox value prop fixed ([783ff5a](https://github.com/awes-io/client/commit/783ff5ae3ccaa675910365eee1c134188465e556))
1421
-
1422
-
1423
- ### Features
1424
-
1425
- * change partical props in checkbox and add object to value ([62e62d8](https://github.com/awes-io/client/commit/62e62d860a1b1ce5f818ade4750bf5440c4c328f))
1426
-
1427
-
1428
-
1429
-
1430
-
1431
- # [2.67.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.66.0...@awes-io/ui@2.67.0) (2023-08-24)
1432
-
1433
-
1434
- ### Features
1435
-
1436
- * add new props and page for aw alert ([be268b2](https://github.com/awes-io/client/commit/be268b219ee68c726092cd63458048b1b958fa5e))
1437
- * add partical for checkbox and new type for value ([77b77ef](https://github.com/awes-io/client/commit/77b77effc25faf8e3663df475fe1f08af932db3e))
1438
-
1439
-
1440
-
1441
-
1442
-
1443
- # [2.66.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.65.1...@awes-io/ui@2.66.0) (2023-08-22)
1444
-
1445
-
1446
- ### Features
1447
-
1448
- * add group and disable for select object ([756348a](https://github.com/awes-io/client/commit/756348a0a3f49e4a60cec7e112046ebccea29682))
1449
- * add group and disable for select object ([e252ddb](https://github.com/awes-io/client/commit/e252ddb6b29f366eec82ffd0631e2ebd69453bee))
1450
- * add refresh wrapper in table builder ([2727c01](https://github.com/awes-io/client/commit/2727c017b6d3ce0d05bd469181fa6bbc256f44d6))
1451
- * add refresh wrapper in table builder ([5e2d058](https://github.com/awes-io/client/commit/5e2d058e6f1adb80c469bb75be70e1bf1ce1d49f))
1452
- * change din on template for select object items ([bb7ba13](https://github.com/awes-io/client/commit/bb7ba130aebc2c27d0aa9f61de3b9f9c9db16266))
1453
- * change logic for clear events in refresh wrapper ([67f6c4c](https://github.com/awes-io/client/commit/67f6c4c1f4f552e25a21d717ff3fb4b2e8ebb64d))
1454
- * change styles and add arrow for tooltip ([6e4f495](https://github.com/awes-io/client/commit/6e4f495ecf6331e894bb600182487daf64a71e7a))
1455
- * remove all place with postcss-color-function ([a53bd65](https://github.com/awes-io/client/commit/a53bd6572d6ac4f2fc8ebfb55522e642a78bf494))
1456
- * remove plugins for update nuxt ([b230f4b](https://github.com/awes-io/client/commit/b230f4becab4af6befbb9a92a7dd8dcdf5872961))
1457
- * replace method for remove refresh wrapper events ([e63d9df](https://github.com/awes-io/client/commit/e63d9dfd58108668ac324dce32cfb52e37fbdfbe))
1458
- * replace style for fake input disable in text field css ([29f3d5f](https://github.com/awes-io/client/commit/29f3d5f8c4cf66e56beee686dd6d94b332cfffdd))
1459
- * unused modules removed ([09334f1](https://github.com/awes-io/client/commit/09334f1677a837df5eac8c4063e4a55941fde40e))
1460
-
1461
-
1462
-
1463
-
1464
-
1465
- ## [2.65.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.65.0...@awes-io/ui@2.65.1) (2023-07-06)
1466
-
1467
-
1468
- ### Bug Fixes
1469
-
1470
- * **aw-tab-nav:** else key fixed ([fac9f72](https://github.com/awes-io/client/commit/fac9f7214606540f95fa8aa5e57782b7ad837a10))
1471
-
1472
-
1473
-
1474
-
1475
-
1476
- # [2.65.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.64.0...@awes-io/ui@2.65.0) (2023-07-06)
1477
-
1478
-
1479
- ### Bug Fixes
1480
-
1481
- * tooltip shown on pointer events ([a1827a1](https://github.com/awes-io/client/commit/a1827a142e5b823ba526bce0e90ccf7a5a36dc20))
1482
-
1483
-
1484
- ### Features
1485
-
1486
- * **aw-tab-nav:** icons added ([eb1c876](https://github.com/awes-io/client/commit/eb1c87634e47f7ca15593fd82fb5d685ffa4e9b6))
1487
-
1488
-
1489
-
1490
-
1491
-
1492
- # [2.64.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.6...@awes-io/ui@2.64.0) (2023-06-27)
1493
-
1494
-
1495
- ### Features
1496
-
1497
- * tertiary menu added ([3c0d425](https://github.com/awes-io/client/commit/3c0d42598a9b628eeb5b347d76a8538902623e0f))
1498
-
1499
-
1500
-
1501
-
1502
-
1503
- ## [2.63.6](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.5...@awes-io/ui@2.63.6) (2023-06-27)
1504
-
1505
-
1506
- ### Bug Fixes
1507
-
1508
- * **google-maps:** set protocol in url to work in capacitor ([d928ec7](https://github.com/awes-io/client/commit/d928ec7346186a6fe4d8fe980bc5f3ba02e2ab5b))
1509
-
1510
-
1511
-
1512
-
1513
-
1514
- ## [2.63.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.4...@awes-io/ui@2.63.5) (2023-06-23)
1515
-
1516
-
1517
- ### Bug Fixes
1518
-
1519
- * **aw-money:** convert to number when comparing values ([e41d833](https://github.com/awes-io/client/commit/e41d833c082b50a03d0e9795de4fe9291928e782))
1520
-
1521
-
1522
-
1523
-
1524
-
1525
- ## [2.63.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.3...@awes-io/ui@2.63.4) (2023-06-22)
1526
-
1527
-
1528
- ### Bug Fixes
1529
-
1530
- * **aw-money:** money formatting fixed ([b0555d2](https://github.com/awes-io/client/commit/b0555d2a69ea67641cd926616ba5b5eb3b8d403f))
1531
-
1532
-
1533
-
1534
-
1535
-
1536
- ## [2.63.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.2...@awes-io/ui@2.63.3) (2023-06-22)
1537
-
1538
-
1539
- ### Bug Fixes
1540
-
1541
- * **aw-money:** always get and set value in coins ([297435e](https://github.com/awes-io/client/commit/297435e8560a9892729270fbb8746ca0c56d963b))
1542
-
1543
-
1544
-
1545
-
1546
-
1547
- ## [2.63.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.1...@awes-io/ui@2.63.2) (2023-04-25)
1548
-
1549
-
1550
- ### Bug Fixes
1551
-
1552
- * **ui:** dayjs locales mapped to i18n locales ([2b9ddd2](https://github.com/awes-io/client/commit/2b9ddd2e86a30a2fe56f85e72eb6e17e8eb8ad36))
1553
-
1554
-
1555
-
1556
-
1557
-
1558
- ## [2.63.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.0...@awes-io/ui@2.63.1) (2023-04-25)
1559
-
1560
-
1561
- ### Bug Fixes
1562
-
1563
- * **ui:** dayjs locales autoload checks locale availability ([270a388](https://github.com/awes-io/client/commit/270a388ff2535d61bcbd91460432e46e4cd9b7f4))
1564
-
1565
-
1566
-
1567
-
1568
-
1569
- # [2.63.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.62.0...@awes-io/ui@2.63.0) (2023-04-07)
1570
-
1571
-
1572
- ### Features
1573
-
1574
- * **aw-table-builder:** css classes added ([a94c2a6](https://github.com/awes-io/client/commit/a94c2a6088541beabe88306980bf93644d718429))
1575
-
1576
-
1577
-
1578
-
1579
-
1580
- # [2.62.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.61.1...@awes-io/ui@2.62.0) (2023-01-11)
1581
-
1582
-
1583
- ### Bug Fixes
1584
-
1585
- * translations keys updated ([57e8dcc](https://github.com/awes-io/client/commit/57e8dcc44208fb567bc6196b2dac131095030e8e))
1586
-
1587
-
1588
- ### Features
1589
-
1590
- * translation keys replaced with values ([90e58da](https://github.com/awes-io/client/commit/90e58dabb389c9c47a33115965f8724845f3ad75))
1591
- * translation keys replaced with values ([f4bcf3a](https://github.com/awes-io/client/commit/f4bcf3aa43231b8a12b39a68cef94059205162d4))
1592
-
1593
-
1594
-
1595
-
1596
-
1597
- ## [2.61.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.61.0...@awes-io/ui@2.61.1) (2023-01-11)
1598
-
1599
-
1600
- ### Bug Fixes
1601
-
1602
- * **aw-bottom-bar:** action button listeners application fixed ([bfa4057](https://github.com/awes-io/client/commit/bfa4057da6f7c9a5c3393b0a2483ba2bd6c5f97b))
1603
-
1604
-
1605
-
1606
-
1607
-
1608
- # [2.61.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.60.0...@awes-io/ui@2.61.0) (2022-12-29)
1609
-
1610
-
1611
- ### Bug Fixes
1612
-
1613
- * useless component removed ([b69fe35](https://github.com/awes-io/client/commit/b69fe35d2df567d3d79cb2cc5d8e80fb64ee9ec6))
1614
-
1615
-
1616
- ### Features
1617
-
1618
- * aw-select tuning ([a2d55ea](https://github.com/awes-io/client/commit/a2d55ea1ccc409232c61b95ad642e2f90669e830))
1619
-
1620
-
1621
-
1622
-
1623
-
1624
- # [2.60.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.59.2...@awes-io/ui@2.60.0) (2022-12-19)
1625
-
1626
-
1627
- ### Features
1628
-
1629
- * **aw-calendar:** allow to select single day range ([c787bf7](https://github.com/awes-io/client/commit/c787bf79d81f5c1738a069e46cb650a9002a0de8))
1630
-
1631
-
1632
-
1633
-
1634
-
1635
- ## [2.59.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.59.1...@awes-io/ui@2.59.2) (2022-11-14)
1636
-
1637
-
1638
- ### Bug Fixes
1639
-
1640
- * **aw-select-object:** mobile overflow fixed ([2a76f28](https://github.com/awes-io/client/commit/2a76f2870368fd10675aadba30104e9fae84ecd7))
1641
-
1642
-
1643
-
1644
-
1645
-
1646
- ## [2.59.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.59.0...@awes-io/ui@2.59.1) (2022-10-20)
1647
-
1648
-
1649
- ### Bug Fixes
1650
-
1651
- * **aw-table-builder:** skip onfetch hook if table unmounted ([284fafd](https://github.com/awes-io/client/commit/284fafdad291c2a976871859f4964c520e23ed89))
1652
-
1653
-
1654
-
1655
-
1656
-
1657
- # [2.59.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.58.0...@awes-io/ui@2.59.0) (2022-09-08)
1658
-
1659
-
1660
- ### Features
1661
-
1662
- * uploader and test attrs improvements ([b3ef891](https://github.com/awes-io/client/commit/b3ef8914adcb9f2ea63999d1d82345ae7b98002b))
1663
-
1664
-
1665
-
1666
-
1667
-
1668
- # [2.58.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.57.0...@awes-io/ui@2.58.0) (2022-08-08)
1669
-
1670
-
1671
- ### Features
1672
-
1673
- * update ([e56f315](https://github.com/awes-io/client/commit/e56f31548de6895d0dc6dfc4175914860a0c8e53))
1674
-
1675
-
1676
-
1677
-
1678
-
1679
- # [2.57.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.7...@awes-io/ui@2.57.0) (2022-08-08)
1680
-
1681
-
1682
- ### Features
1683
-
1684
- * **aw-bottom-bar:** action button added ([0071a22](https://github.com/awes-io/client/commit/0071a22e28e3dc92976d05f5d36bd5b9f671fa46))
1685
-
1686
-
1687
-
1688
-
1689
-
1690
- ## [2.56.7](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.6...@awes-io/ui@2.56.7) (2022-07-20)
1691
-
1692
-
1693
- ### Bug Fixes
1694
-
1695
- * **aw-select-fake-input:** styles fixed ([7a1a984](https://github.com/awes-io/client/commit/7a1a9846873a37c725b48286cc3120a2b2b8dbb4))
1696
-
1697
-
1698
-
1699
-
1700
-
1701
- ## [2.56.6](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.5...@awes-io/ui@2.56.6) (2022-07-20)
1702
-
1703
-
1704
- ### Bug Fixes
1705
-
1706
- * updated yarn ([d51cfd8](https://github.com/awes-io/client/commit/d51cfd8835d872dbdcf950f108abcf57e86bef24))
1707
-
1708
-
1709
-
1710
-
1711
-
1712
- ## [2.56.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.4...@awes-io/ui@2.56.5) (2022-07-20)
1713
-
1714
-
1715
- ### Bug Fixes
1716
-
1717
- * **aw-select-object:** ios focus lags fixed ([f0cc05d](https://github.com/awes-io/client/commit/f0cc05db37f69cd9d39bb58443060f49854116c7))
1718
-
1719
-
1720
-
1721
-
1722
-
1723
- ## [2.56.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.3...@awes-io/ui@2.56.4) (2022-07-18)
1724
-
1725
-
1726
- ### Bug Fixes
1727
-
1728
- * added full logo into config ([b15b3a8](https://github.com/awes-io/client/commit/b15b3a8fd52e4f1ed401ea28bdfcd5e269ca3152))
1729
-
1730
-
1731
-
1732
-
1733
-
1734
- ## [2.56.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.2...@awes-io/ui@2.56.3) (2022-07-18)
1735
-
1736
-
1737
- ### Bug Fixes
1738
-
1739
- * added full logo into config ([7f38422](https://github.com/awes-io/client/commit/7f384223484d5bc989278fa2311cd3eff2143523))
1740
-
1741
-
1742
-
1743
-
1744
-
1745
- ## [2.56.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.1...@awes-io/ui@2.56.2) (2022-07-18)
1746
-
1747
-
1748
- ### Bug Fixes
1749
-
1750
- * added full logo into config ([74d1719](https://github.com/awes-io/client/commit/74d171941c0892f426a8ec35462f408c9fe1481c))
1751
-
1752
-
1753
-
1754
-
1755
-
1756
- ## [2.56.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.56.0...@awes-io/ui@2.56.1) (2022-07-18)
1757
-
1758
-
1759
- ### Bug Fixes
1760
-
1761
- * bump ([025f696](https://github.com/awes-io/client/commit/025f696bad25ea30ae7eba6997bdecc6aca58b39))
1762
-
1763
-
1764
-
1765
-
1766
-
1767
- # [2.56.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.55.1...@awes-io/ui@2.56.0) (2022-07-18)
1768
-
1769
-
1770
- ### Features
1771
-
1772
- * added slot for center layout ([65b31c2](https://github.com/awes-io/client/commit/65b31c26c5a405cad2bd28a162a5f6c800270399))
1773
-
1774
-
1775
-
1776
-
1777
-
1778
- ## [2.55.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.55.0...@awes-io/ui@2.55.1) (2022-07-13)
1779
-
1780
-
1781
- ### Bug Fixes
1782
-
1783
- * app cookies expiration added ([395ace4](https://github.com/awes-io/client/commit/395ace4780ef7a23cc0b6b38df58be188fcbac87))
1784
-
1785
-
1786
-
1787
-
1788
-
1789
- # [2.55.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.54.0...@awes-io/ui@2.55.0) (2022-07-11)
1790
-
1791
-
1792
- ### Features
1793
-
1794
- * **aw-calendar:** translations from dayjs ([c6f50fa](https://github.com/awes-io/client/commit/c6f50fa1134932894ffe691391c41290c490ad51))
1795
-
1796
-
1797
-
1798
-
1799
-
1800
- # [2.54.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.53.0...@awes-io/ui@2.54.0) (2022-07-05)
1801
-
1802
-
1803
- ### Features
1804
-
1805
- * optional menu items translation and tooltip ([8a24879](https://github.com/awes-io/client/commit/8a24879ee5d0b1ff60165567e2b70201b4cfe518))
1806
-
1807
-
1808
-
1809
-
1810
-
1811
- # [2.53.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.52.0...@awes-io/ui@2.53.0) (2022-06-29)
1812
-
1813
-
1814
- ### Features
1815
-
1816
- * new version ([c64a7a1](https://github.com/awes-io/client/commit/c64a7a10bb55e8f5e5196912f8d70bf8350fd831))
1817
-
1818
-
1819
-
1820
-
1821
-
1822
- # [2.52.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.51.0...@awes-io/ui@2.52.0) (2022-06-29)
1823
-
1824
-
1825
- ### Bug Fixes
1826
-
1827
- * **aw-table:** falsy clicks fixed ([ff1004b](https://github.com/awes-io/client/commit/ff1004b47ea527bb71a6d99e44df307be3df4223))
1828
-
1829
-
1830
- ### Features
1831
-
1832
- * set dropdown max height by viewport ([4ec3589](https://github.com/awes-io/client/commit/4ec3589eb6691fad198ff83a99333724e9ae3900))
1833
- * table press event added ([b8bf19a](https://github.com/awes-io/client/commit/b8bf19a4e1262d9e3a0e7044490081020009e3af))
1834
-
1835
-
1836
-
1837
-
1838
-
1839
- # [2.51.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.50.0...@awes-io/ui@2.51.0) (2022-06-14)
1840
-
1841
-
1842
- ### Features
1843
-
1844
- * **aw-bottom-bar:** fixed position to prevent jumps on ios ([c9b32bb](https://github.com/awes-io/client/commit/c9b32bbbb7c109a9f5c3abede7a2aeb7a7c543b9))
1845
-
1846
-
1847
-
1848
-
1849
-
1850
- # [2.50.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.49.1...@awes-io/ui@2.50.0) (2022-06-13)
1851
-
1852
-
1853
- ### Features
1854
-
1855
- * calendar day slots added ([b9b0897](https://github.com/awes-io/client/commit/b9b0897806fe2f86aa51bc1b472482fab017ce91))
1856
-
1857
-
1858
-
1859
-
1860
-
1861
- ## [2.49.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.49.0...@awes-io/ui@2.49.1) (2022-05-31)
1862
-
1863
-
1864
- ### Bug Fixes
1865
-
1866
- * multiline translations updated ([3b072f8](https://github.com/awes-io/client/commit/3b072f84be4bfb4327cfa80d23531b80c73e1eda))
1867
-
1868
-
1869
-
1870
-
1871
-
1872
- # [2.49.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.48.0...@awes-io/ui@2.49.0) (2022-05-26)
1873
-
1874
-
1875
- ### Features
1876
-
1877
- * translation system updated ([2827c0e](https://github.com/awes-io/client/commit/2827c0e6108523aa26e3f5af10478be23cace54f))
1878
-
1879
-
1880
-
1881
-
1882
-
1883
- # [2.48.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.47.3...@awes-io/ui@2.48.0) (2022-05-16)
1884
-
1885
-
1886
- ### Features
1887
-
1888
- * **aw-address-block:** region added ([018a113](https://github.com/awes-io/client/commit/018a113f7bd397df33042e87619e5e9b7f0f08df))
1889
-
1890
-
1891
-
1892
-
1893
-
1894
- ## [2.47.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.47.2...@awes-io/ui@2.47.3) (2022-04-26)
1895
-
1896
-
1897
- ### Bug Fixes
1898
-
1899
- * close dropdown on overlay click on mobile ([aef2d98](https://github.com/awes-io/client/commit/aef2d982e1f1824ea8a1ac43037ccc56d457767b))
1900
-
1901
-
1902
-
1903
-
1904
-
1905
- ## [2.47.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.47.1...@awes-io/ui@2.47.2) (2022-04-06)
1906
-
1907
-
1908
- ### Bug Fixes
1909
-
1910
- * **aw-tel:** missing flags added ([c11de3c](https://github.com/awes-io/client/commit/c11de3c9f2eff94bbb8aa8348c479999623bcc5d))
1911
-
1912
-
1913
-
1914
-
1915
-
1916
- ## [2.47.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.47.0...@awes-io/ui@2.47.1) (2022-04-01)
1917
-
1918
-
1919
- ### Bug Fixes
1920
-
1921
- * **aw-tel:** disallow input before plus sign ([c8649af](https://github.com/awes-io/client/commit/c8649af7d5310ac3e2384054e4d7cd1d53333351))
1922
-
1923
-
1924
-
1925
-
1926
-
1927
- # [2.47.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.46.0...@awes-io/ui@2.47.0) (2022-03-31)
1928
-
1929
-
1930
- ### Features
1931
-
1932
- * **aw-tel:** placeholder replaced with mask ([e54e324](https://github.com/awes-io/client/commit/e54e324cb9ec576f583070a74a06349c23270685))
1933
-
1934
-
1935
-
1936
-
1937
-
1938
- # [2.46.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.45.0...@awes-io/ui@2.46.0) (2022-03-17)
1939
-
1940
-
1941
- ### Features
1942
-
1943
- * **store:** user name preformatting added ([36de390](https://github.com/awes-io/client/commit/36de3908308dde463a93198974cca2e79f5945a2))
1944
-
1945
-
1946
-
1947
-
1948
-
1949
- # [2.45.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.44.0...@awes-io/ui@2.45.0) (2022-03-17)
1950
-
1951
-
1952
- ### Features
1953
-
1954
- * birthday-picker updated ([4b7bedc](https://github.com/awes-io/client/commit/4b7bedc64c5358673540120fb8a7b647d8444e90))
1955
-
1956
-
1957
-
1958
-
1959
-
1960
- # [2.44.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.43.0...@awes-io/ui@2.44.0) (2022-03-10)
1961
-
1962
-
1963
- ### Bug Fixes
1964
-
1965
- * remove mask import ([5fd53f3](https://github.com/awes-io/client/commit/5fd53f3e5204dd25fdbcbb727111c9d490c74788))
1966
-
1967
-
1968
- ### Features
1969
-
1970
- * replace vue-the-mask with pattern ([a9af187](https://github.com/awes-io/client/commit/a9af18764acee563ca6ec242b9b18dbba95f4542))
1971
- * ui updates ([a2d34b7](https://github.com/awes-io/client/commit/a2d34b77c8a0e0a680066a0a81382b3dc2d7d243))
1972
- * **aw-birthday-picker:** refactor ([79f3459](https://github.com/awes-io/client/commit/79f345921520f91488d5b3c1feafc10c3897ac54))
1973
-
1974
-
1975
-
1976
-
1977
-
1978
- # [2.43.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.42.1...@awes-io/ui@2.43.0) (2022-02-28)
1979
-
1980
-
1981
- ### Features
1982
-
1983
- * blocked twofactor auth ([dbef9a3](https://github.com/awes-io/client/commit/dbef9a3d9989d8a33ba276a73c3a32ec184b5e5e))
1984
-
1985
-
1986
-
1987
-
1988
-
1989
- ## [2.42.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.42.0...@awes-io/ui@2.42.1) (2022-02-10)
1990
-
1991
-
1992
- ### Bug Fixes
1993
-
1994
- * locked prop for fixed button ([9e2067a](https://github.com/awes-io/client/commit/9e2067ae0abbbfe766f6ea63d9c2cc26940c90b1))
1995
-
1996
-
1997
-
1998
-
1999
-
2000
- # [2.42.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.41.0...@awes-io/ui@2.42.0) (2022-02-01)
2001
-
2002
-
2003
- ### Features
2004
-
2005
- * modal appear fixed ([4838c87](https://github.com/awes-io/client/commit/4838c87fadc1b9303fa3c9a5e4ccee678c5bbcb6))
2006
-
2007
-
2008
-
2009
-
2010
-
2011
- # [2.41.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.40.1...@awes-io/ui@2.41.0) (2022-01-26)
2012
-
2013
-
2014
- ### Features
2015
-
2016
- * **aw-tel:** use max metadata for phone validation ([8f5020b](https://github.com/awes-io/client/commit/8f5020bae4204c9acc710c7d97364757fab2b7bd))
2017
-
2018
-
2019
-
2020
-
2021
-
2022
- ## [2.40.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.40.0...@awes-io/ui@2.40.1) (2022-01-21)
2023
-
2024
-
2025
- ### Bug Fixes
2026
-
2027
- * **aw-mobile-menu:** use correct heading for submenu ([62a3210](https://github.com/awes-io/client/commit/62a321084a295620802e7bc0fbb92e948400f19a))
2028
-
2029
-
2030
-
2031
-
2032
-
2033
- # [2.40.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.39.1...@awes-io/ui@2.40.0) (2022-01-21)
2034
-
2035
-
2036
- ### Features
2037
-
2038
- * user menu updated ([b4006e8](https://github.com/awes-io/client/commit/b4006e8fac3a84b646acab6693f1950234ceb950))
2039
-
2040
-
2041
-
2042
-
2043
-
2044
- ## [2.39.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.39.0...@awes-io/ui@2.39.1) (2022-01-17)
2045
-
2046
-
2047
- ### Bug Fixes
2048
-
2049
- * **aw-address:** inherit passed attrs in select ([0dbf456](https://github.com/awes-io/client/commit/0dbf4566bcc8aaf5e84113977299b8115afbf2f1))
2050
-
2051
-
2052
-
2053
-
2054
-
2055
- # [2.39.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.38.0...@awes-io/ui@2.39.0) (2022-01-17)
2056
-
2057
-
2058
- ### Features
2059
-
2060
- * aw-address uses select internally ([d8a71f0](https://github.com/awes-io/client/commit/d8a71f0b42f22853ca69d1b61cfdb3d9d91aed40))
2061
-
2062
-
2063
-
2064
-
2065
-
2066
- # [2.38.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.37.0...@awes-io/ui@2.38.0) (2021-12-30)
2067
-
2068
-
2069
- ### Features
2070
-
2071
- * default button color replaced to accent ([980a96d](https://github.com/awes-io/client/commit/980a96d5a23c5025a618a53ddf630934440eda91))
2072
-
2073
-
2074
-
2075
-
2076
-
2077
- # [2.37.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.36.0...@awes-io/ui@2.37.0) (2021-12-28)
2078
-
2079
-
2080
- ### Bug Fixes
2081
-
2082
- * **aw-birthday-picker:** global dayjs with leap year plugin used instead of custom ([047890f](https://github.com/awes-io/client/commit/047890ff1eb26923f455a64dfd12b5a6c5c972c8))
2083
-
2084
-
2085
- ### Features
2086
-
2087
- * scroll buttons collabsing added ([b773080](https://github.com/awes-io/client/commit/b77308027776ca4c2aba94753ec0826819d090c3))
2088
-
2089
-
2090
-
2091
-
2092
-
2093
- # [2.36.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.35.0...@awes-io/ui@2.36.0) (2021-12-10)
2094
-
2095
-
2096
- ### Features
2097
-
2098
- * logo switching added ([e5e7328](https://github.com/awes-io/client/commit/e5e732812e9acb5c3a6c810d9a7346affa422988))
2099
-
2100
-
2101
-
2102
-
2103
-
2104
- # [2.35.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.34.2...@awes-io/ui@2.35.0) (2021-12-04)
2105
-
2106
-
2107
- ### Bug Fixes
2108
-
2109
- * default date format ([3435466](https://github.com/awes-io/client/commit/3435466e8ff789d64682ba99e5125eaa5dabf723))
2110
-
2111
-
2112
- ### Features
2113
-
2114
- * **aw-birthday-picker:** leap year support ([43805c3](https://github.com/awes-io/client/commit/43805c3cecacec61340f512fe8e9dfcfae4ba1fb))
2115
- * **aw-date:** editable format validation added ([307ec9e](https://github.com/awes-io/client/commit/307ec9e662f32839178cab4d3c14e506b2abbc97))
2116
- * **aw-date:** editable input ([f6f7237](https://github.com/awes-io/client/commit/f6f723755f3cc9ca1c09d33860ea38c403c023ff))
2117
-
2118
-
2119
-
2120
-
2121
-
2122
- ## [2.34.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.34.1...@awes-io/ui@2.34.2) (2021-11-26)
2123
-
2124
-
2125
- ### Bug Fixes
2126
-
2127
- * **aw-tel:** type button added to dropdown button ([c1369cd](https://github.com/awes-io/client/commit/c1369cd16efb9b569f5a41a94da2eee746a8e40d))
2128
-
2129
-
2130
-
2131
-
2132
-
2133
- ## [2.34.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.34.0...@awes-io/ui@2.34.1) (2021-11-25)
2134
-
2135
-
2136
- ### Bug Fixes
2137
-
2138
- * **aw-tel:** check if given value is string before parsing ([4161fb6](https://github.com/awes-io/client/commit/4161fb67b57ccea772a390769dab200baee15a44))
2139
-
2140
-
2141
-
2142
-
2143
-
2144
- # [2.34.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.33.0...@awes-io/ui@2.34.0) (2021-11-25)
2145
-
2146
-
2147
- ### Features
2148
-
2149
- * aw-tel component rewrited ([a072dda](https://github.com/awes-io/client/commit/a072dda44254d783b6445416bede84459639ce8d))
2150
-
2151
-
2152
-
2153
-
2154
-
2155
- # [2.33.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.32.5...@awes-io/ui@2.33.0) (2021-11-15)
2156
-
2157
-
2158
- ### Bug Fixes
2159
-
2160
- * mask works only in allowed inputs ([3dcc47e](https://github.com/awes-io/client/commit/3dcc47e1c58e4dac1763aaeb7f50d879c34799db))
2161
-
2162
-
2163
- ### Features
2164
-
2165
- * dayjs upgraded ([b1aa822](https://github.com/awes-io/client/commit/b1aa8228f2b7541acc180cad5bcb477a2d2a37d6))
2166
-
2167
-
2168
-
2169
-
2170
-
2171
- ## [2.32.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.32.4...@awes-io/ui@2.32.5) (2021-11-13)
2172
-
2173
-
2174
- ### Bug Fixes
2175
-
2176
- * **text-fields:** restore caret position respecting masked signs ([3fe927d](https://github.com/awes-io/client/commit/3fe927d7d2918e860c2104977fee570348754c21))
2177
-
2178
-
2179
-
2180
-
2181
-
2182
- ## [2.32.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.32.3...@awes-io/ui@2.32.4) (2021-11-13)
2183
-
2184
-
2185
- ### Bug Fixes
2186
-
2187
- * input position fixed ([2ae72e6](https://github.com/awes-io/client/commit/2ae72e6e42178eaf33e9f4921b0b6c82a4cc9b62))
2188
-
2189
-
2190
-
2191
-
2192
-
2193
- ## [2.32.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.32.2...@awes-io/ui@2.32.3) (2021-10-28)
2194
-
2195
-
2196
- ### Bug Fixes
2197
-
2198
- * added missed listeners ([e95fd78](https://github.com/awes-io/client/commit/e95fd785de33f3a6bea2e14cdc92ee9271aeb215))
2199
-
2200
-
2201
-
2202
-
2203
-
2204
- ## [2.32.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.32.1...@awes-io/ui@2.32.2) (2021-10-27)
2205
-
2206
-
2207
- ### Bug Fixes
2208
-
2209
- * **select-object:** check if select option is disaabled ([0167952](https://github.com/awes-io/client/commit/0167952f0c1a0a52c7c734361bf605a979d94aa8))
2210
-
2211
-
2212
-
2213
-
2214
-
2215
- ## [2.32.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.32.0...@awes-io/ui@2.32.1) (2021-10-22)
2216
-
2217
-
2218
- ### Bug Fixes
2219
-
2220
- * styles fixed ([ad1cf62](https://github.com/awes-io/client/commit/ad1cf624093574f9f3058595fa3e52bdf2c08f8e))
2221
-
2222
-
2223
-
2224
-
2225
-
2226
- # [2.32.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.31.0...@awes-io/ui@2.32.0) (2021-10-21)
2227
-
2228
-
2229
- ### Features
2230
-
2231
- * **aw-select-object:** slot defore dropdown added ([2b02130](https://github.com/awes-io/client/commit/2b02130ece8db24887a1128bbc23092dd2f26447))
2232
-
2233
-
2234
-
2235
-
2236
-
2237
- # [2.31.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.30.0...@awes-io/ui@2.31.0) (2021-10-21)
2238
-
2239
-
2240
- ### Bug Fixes
2241
-
2242
- * bump version ([ed4612a](https://github.com/awes-io/client/commit/ed4612ad6f81c698a06590c91356c0a47be87f81))
2243
-
2244
-
2245
- ### Features
2246
-
2247
- * bump version ([dc0250d](https://github.com/awes-io/client/commit/dc0250d3b671a7df341ea5e6bb8d752577011c0f))
2248
-
2249
-
2250
-
2251
-
2252
-
2253
- # [2.30.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.29.3...@awes-io/ui@2.30.0) (2021-10-21)
2254
-
2255
-
2256
- ### Bug Fixes
2257
-
2258
- * **aw-modal:** overlay-aside animation fixed ([cd4e960](https://github.com/awes-io/client/commit/cd4e960f377af53df9f20492c857667baf636ba0))
2259
- * **aw-select-object:** do not encode search param ([4141879](https://github.com/awes-io/client/commit/41418793d0e3f3dd732155867b35ec9b98753333))
2260
- * sanitize v-html ([95ecf78](https://github.com/awes-io/client/commit/95ecf78cd95e9e8cab96d81e9fa0697a1e86e3bc))
2261
-
2262
-
2263
- ### Features
2264
-
2265
- * **aw-select:** disabling options added ([a83da1a](https://github.com/awes-io/client/commit/a83da1a0986d081f036ac4ce92ed7d9cc528105b))
2266
-
2267
-
2268
-
2269
-
2270
-
2271
- ## [2.29.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.29.2...@awes-io/ui@2.29.3) (2021-10-18)
2272
-
2273
-
2274
- ### Bug Fixes
2275
-
2276
- * updated aw-search ([ac88aca](https://github.com/awes-io/client/commit/ac88acaa0e003e36c67ae5ac94450795dda7bf00))
2277
-
2278
-
2279
-
2280
-
2281
-
2282
- ## [2.29.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.29.1...@awes-io/ui@2.29.2) (2021-10-18)
2283
-
2284
-
2285
- ### Bug Fixes
2286
-
2287
- * updated field for the search ([22d1a98](https://github.com/awes-io/client/commit/22d1a98d27ecee9070e709112242930eff3223c0))
2288
-
2289
-
2290
-
2291
-
2292
-
2293
- ## [2.29.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.29.0...@awes-io/ui@2.29.1) (2021-10-14)
2294
-
2295
-
2296
- ### Bug Fixes
2297
-
2298
- * **aw-description:** tag is span by default ([3441b5a](https://github.com/awes-io/client/commit/3441b5ac609224cb3ea5963915c9868f48c2317a))
2299
-
2300
-
2301
-
2302
-
2303
-
2304
- # [2.29.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.28.2...@awes-io/ui@2.29.0) (2021-10-04)
2305
-
2306
-
2307
- ### Features
2308
-
2309
- * get square image from cropper ([f236282](https://github.com/awes-io/client/commit/f236282d225b8f30927f14a0e817f0cd6e7c7374))
2310
-
2311
-
2312
-
2313
-
2314
-
2315
- ## [2.28.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.28.1...@awes-io/ui@2.28.2) (2021-09-28)
2316
-
2317
-
2318
- ### Bug Fixes
2319
-
2320
- * components starting with underscore removed from global ([32d5b0d](https://github.com/awes-io/client/commit/32d5b0d0f5d9b04c48c36dba15993da0dc8a6c9b))
2321
-
2322
-
2323
-
2324
-
2325
-
2326
- ## [2.28.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.28.0...@awes-io/ui@2.28.1) (2021-09-23)
2327
-
2328
-
2329
- ### Bug Fixes
2330
-
2331
- * de translations for map ([3a49b24](https://github.com/awes-io/client/commit/3a49b248b4c701ae9a1a733ba87dbdd836d94416))
2332
-
2333
-
2334
-
2335
-
2336
-
2337
- # [2.28.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.27.0...@awes-io/ui@2.28.0) (2021-09-21)
2338
-
2339
-
2340
- ### Features
2341
-
2342
- * **aw-select-object:** infinity scroll added ([a2cb125](https://github.com/awes-io/client/commit/a2cb125a1b09211b458d9311648699a82b56acfe))
2343
-
2344
-
2345
-
2346
-
2347
-
2348
- # [2.27.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.26.0...@awes-io/ui@2.27.0) (2021-09-18)
2349
-
2350
-
2351
- ### Features
2352
-
2353
- * test component aw-select-object ([bc1f381](https://github.com/awes-io/client/commit/bc1f381968aedd8280703bd238bc0042a446ee57))
2354
-
2355
-
2356
-
2357
-
2358
-
2359
- # [2.26.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.25.1...@awes-io/ui@2.26.0) (2021-09-08)
2360
-
2361
-
2362
- ### Features
2363
-
2364
- * **aw-address-block:** error handling added ([68f5ce1](https://github.com/awes-io/client/commit/68f5ce1ac60ae4ad39687217ce6e124a5134d893))
2365
-
2366
-
2367
-
2368
-
2369
-
2370
- ## [2.25.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.25.0...@awes-io/ui@2.25.1) (2021-09-06)
2371
-
2372
-
2373
- ### Bug Fixes
2374
-
2375
- * country migrated to meta field ([6d9de3a](https://github.com/awes-io/client/commit/6d9de3a969a5bcb8f8e67811ad80fb48babf63c1))
2376
-
2377
-
2378
-
2379
-
2380
-
2381
- # [2.25.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.24.0...@awes-io/ui@2.25.0) (2021-09-03)
2382
-
2383
-
2384
- ### Features
2385
-
2386
- * **dayjs:** custom parse format disabled ([08176d0](https://github.com/awes-io/client/commit/08176d0b4104c3c30782ab2fe2b0e2e8663b8626))
2387
-
2388
-
2389
-
2390
-
2391
-
2392
- # [2.24.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.23.1...@awes-io/ui@2.24.0) (2021-08-28)
2393
-
2394
-
2395
- ### Bug Fixes
2396
-
2397
- * translations for address ([267077e](https://github.com/awes-io/client/commit/267077e8570243261a7397f539410d33c8eebc75))
2398
-
2399
-
2400
- ### Features
2401
-
2402
- * **aw-address-map:** country added to address object ([ee1b83c](https://github.com/awes-io/client/commit/ee1b83ce660e49d6b44d94f9db32eda97116083c))
2403
-
2404
-
2405
-
2406
-
2407
-
2408
- ## [2.23.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.23.0...@awes-io/ui@2.23.1) (2021-08-27)
2409
-
2410
-
2411
- ### Bug Fixes
2412
-
2413
- * **aw-address:** pass timezone to model if props is present ([d26207e](https://github.com/awes-io/client/commit/d26207e18283f45b64b7a6876d28c8c6c2629323))
2414
-
2415
-
2416
-
2417
-
2418
-
2419
- # [2.23.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.22.1...@awes-io/ui@2.23.0) (2021-08-26)
2420
-
2421
-
2422
- ### Bug Fixes
2423
-
2424
- * remove icons file ([eee7f5f](https://github.com/awes-io/client/commit/eee7f5f594fa89db57ea223bf8d9b5138aa0616b))
2425
-
2426
-
2427
- ### Features
2428
-
2429
- * add AddressBlock translations ([cb7ba63](https://github.com/awes-io/client/commit/cb7ba63173c7fadd0b250793870cbea7c0d20fe1))
2430
- * add gmap, address block ([cd35d63](https://github.com/awes-io/client/commit/cd35d63ac5fed56776f1ab93882305aa929c373a))
2431
-
2432
-
2433
-
2434
-
2435
-
2436
- ## [2.22.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.22.0...@awes-io/ui@2.22.1) (2021-08-18)
2437
-
2438
-
2439
- ### Bug Fixes
2440
-
2441
- * **ui:** detect language logic fixed ([45d9c33](https://github.com/awes-io/client/commit/45d9c339a33a21afa19e6e8af7d75e8e58bcee91))
2442
-
2443
-
2444
-
2445
-
2446
-
2447
- # [2.22.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.21.0...@awes-io/ui@2.22.0) (2021-08-17)
2448
-
2449
-
2450
- ### Features
2451
-
2452
- * **aw-radio:** boolean is accepted as value ([dfc994b](https://github.com/awes-io/client/commit/dfc994bdabee6f7aafa29ca3649ea9e85969a660))
2453
- * configure week start in calendar ([8996363](https://github.com/awes-io/client/commit/899636356292c5554f121ac5c34885bb429bcca8))
2454
-
2455
-
2456
-
2457
-
2458
-
2459
- # [2.21.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.20.3...@awes-io/ui@2.21.0) (2021-08-11)
2460
-
2461
-
2462
- ### Bug Fixes
2463
-
2464
- * **aw-table:** do not emit click on non-data column ([b3a4087](https://github.com/awes-io/client/commit/b3a4087ce96c73b9701032229dddc9fa12d8b757))
2465
-
2466
-
2467
- ### Features
2468
-
2469
- * configure week start in calendar ([db9b889](https://github.com/awes-io/client/commit/db9b8899f01573552147a4f83e31604a69719191))
2470
-
2471
-
2472
-
2473
-
2474
-
2475
- ## [2.20.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.20.2...@awes-io/ui@2.20.3) (2021-07-18)
2476
-
2477
-
2478
- ### Bug Fixes
2479
-
2480
- * **lang:** requset without auth headers ([d100828](https://github.com/awes-io/client/commit/d100828ee1f9f68a80b3e88c45ac6a81da24c670))
2481
-
2482
-
2483
-
2484
-
2485
-
2486
- ## [2.20.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.20.1...@awes-io/ui@2.20.2) (2021-06-29)
2487
-
2488
-
2489
- ### Bug Fixes
2490
-
2491
- * set cookies with same site lax policy ([c1e0baa](https://github.com/awes-io/client/commit/c1e0baad42c21e1ccc7aed23072c9026ae4a9eeb))
2492
-
2493
-
2494
-
2495
-
2496
-
2497
- ## [2.20.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.20.0...@awes-io/ui@2.20.1) (2021-06-21)
2498
-
2499
-
2500
- ### Bug Fixes
2501
-
2502
- * vue-tel-input stable varsion fixed ([bf6709c](https://github.com/awes-io/client/commit/bf6709c9207042ad78e5661c4920dbb73dc23623))
2503
-
2504
-
2505
-
2506
-
2507
-
2508
- # [2.20.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.19.1...@awes-io/ui@2.20.0) (2021-06-21)
2509
-
2510
-
2511
- ### Features
2512
-
2513
- * **modal:** modal overlay styles ([9d12cfc](https://github.com/awes-io/client/commit/9d12cfce4958c4764738a546f89b5baafd5bb35d))
2514
-
2515
-
2516
-
2517
-
2518
-
2519
- ## [2.19.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.19.0...@awes-io/ui@2.19.1) (2021-05-25)
2520
-
2521
-
2522
- ### Bug Fixes
2523
-
2524
- * load atoms and molecules as global components ([7a1006d](https://github.com/awes-io/client/commit/7a1006d3478b9cdfc5a9c7cc90b23a8f6961ac0a))
2525
-
2526
-
2527
-
2528
-
2529
-
2530
- # [2.19.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.18.2...@awes-io/ui@2.19.0) (2021-05-21)
2531
-
2532
-
2533
- ### Bug Fixes
2534
-
2535
- * **aw-select:** do not remove space as special character from search and match regexes ([20414cc](https://github.com/awes-io/client/commit/20414cc64497a983a20aad8092945d89495e2edf))
2536
-
2537
-
2538
- ### Features
2539
-
2540
- * show asterisk on required field labels ([1d34535](https://github.com/awes-io/client/commit/1d34535728a0a37cbc1e0bbe5cedb6aafd0fc3f2))
2541
- * **aw-model-edit:** component added ([203af39](https://github.com/awes-io/client/commit/203af39538eff50b4787f6e4f82ff4caf51a0901))
2542
- * **aw-user-menu:** highlight active menu item ([c0c6748](https://github.com/awes-io/client/commit/c0c67488c372287072e3a16e752255bcea04ad39))
2543
- * **vue-mc:** vue-mc module added to recieve context from nuxt ([394bccb](https://github.com/awes-io/client/commit/394bccb8f105b2dba45fdb759ba7ab7187fa02ed))
2544
-
2545
-
2546
-
2547
-
2548
-
2549
- ## [2.18.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.18.1...@awes-io/ui@2.18.2) (2021-05-12)
2550
-
2551
-
2552
- ### Bug Fixes
2553
-
2554
- * auth ui fixes ([a002850](https://github.com/awes-io/client/commit/a0028501cef57ae40783a4800d7b605569896ef5))
2555
- * **aw-select:** add type to inner buttons ([47916d2](https://github.com/awes-io/client/commit/47916d22bb3871385526c61d777aa5e9854a5a68))
2556
-
2557
-
2558
-
2559
-
2560
-
2561
- ## [2.18.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.18.0...@awes-io/ui@2.18.1) (2021-05-07)
2562
-
2563
-
2564
- ### Bug Fixes
2565
-
2566
- * type=button by default to prevent form submit ([e079bd8](https://github.com/awes-io/client/commit/e079bd89866d99f329dc75989fa1d6f046786633))
2567
-
2568
-
2569
-
2570
-
2571
-
2572
- # [2.18.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.17.1...@awes-io/ui@2.18.0) (2021-04-22)
2573
-
2574
-
2575
- ### Bug Fixes
2576
-
2577
- * **aw-user-menu:** max size is set to prevent stretching ([233e6e7](https://github.com/awes-io/client/commit/233e6e7336dea2f659ef17e3612573eb9b11e781))
2578
-
2579
-
2580
- ### Features
2581
-
2582
- * **nuxt-admin:** package refactored to match new ui ([eec75ae](https://github.com/awes-io/client/commit/eec75aec2cb8142d9bd9f94f65e96fd567d77d39))
2583
-
2584
-
2585
-
2586
-
2587
-
2588
- ## [2.17.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.17.0...@awes-io/ui@2.17.1) (2021-04-13)
2589
-
2590
-
2591
- ### Bug Fixes
2592
-
2593
- * **aw-page:** breadcrumb offset fixed ([31f2197](https://github.com/awes-io/client/commit/31f2197d837b1bf584a7ef5e3c4717551bc0df20))
2594
-
2595
-
2596
-
2597
-
2598
-
2599
- # [2.17.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.16.1...@awes-io/ui@2.17.0) (2021-04-12)
2600
-
2601
-
2602
- ### Features
2603
-
2604
- * **aw-select:** test attributes added ([5bb6f22](https://github.com/awes-io/client/commit/5bb6f223d44c4ec5e385deaa0be3d7465910c8c4))
2605
-
2606
-
2607
-
2608
-
2609
-
2610
- ## [2.16.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.16.0...@awes-io/ui@2.16.1) (2021-04-08)
2611
-
2612
-
2613
- ### Bug Fixes
2614
-
2615
- * markup fixes ([b7cd03d](https://github.com/awes-io/client/commit/b7cd03d6c4a1a02a73b41f90735f32cbe8ce2843))
2616
-
2617
-
2618
-
2619
-
2620
-
2621
- # [2.16.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.15.5...@awes-io/ui@2.16.0) (2021-04-06)
2622
-
2623
-
2624
- ### Features
2625
-
2626
- * **aw-button:** locked state added ([85b32d6](https://github.com/awes-io/client/commit/85b32d6e67b910992e1afa6a0300343c50daa85c))
2627
-
2628
-
2629
-
2630
-
2631
-
2632
- ## [2.15.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.15.4...@awes-io/ui@2.15.5) (2021-04-05)
2633
-
2634
-
2635
- ### Bug Fixes
2636
-
2637
- * **aw-page-headline:** back button position fixed ([340a9dd](https://github.com/awes-io/client/commit/340a9dd41d34cee9ca6500166b348d03ca0c5cad))
2638
-
2639
-
2640
-
2641
-
2642
-
2643
- ## [2.15.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.15.3...@awes-io/ui@2.15.4) (2021-04-05)
2644
-
2645
-
2646
- ### Bug Fixes
2647
-
2648
- * markup fixes ([34ca3e8](https://github.com/awes-io/client/commit/34ca3e8fd66afdef0a2cf94728823fe2beac0a8f))
2649
-
2650
-
2651
-
2652
-
2653
-
2654
- ## [2.15.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.15.2...@awes-io/ui@2.15.3) (2021-04-05)
2655
-
2656
-
2657
- ### Bug Fixes
2658
-
2659
- * flex gap fixed with new component aw-flow ([51fb504](https://github.com/awes-io/client/commit/51fb5047539525e192c8e8d596fe910ad1907421))
2660
-
2661
-
2662
-
2663
-
2664
-
2665
- ## [2.15.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.15.1...@awes-io/ui@2.15.2) (2021-04-02)
2666
-
2667
- **Note:** Version bump only for package @awes-io/ui
2668
-
2669
-
2670
-
2671
-
2672
-
2673
- ## [2.15.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.15.0...@awes-io/ui@2.15.1) (2021-04-01)
2674
-
2675
- **Note:** Version bump only for package @awes-io/ui
2676
-
2677
-
2678
-
2679
-
2680
-
2681
- # [2.15.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.14.1...@awes-io/ui@2.15.0) (2021-03-31)
2682
-
2683
-
2684
- ### Bug Fixes
2685
-
2686
- * **aw-layout:** hotfix - menu overflow added ([c3abd67](https://github.com/awes-io/client/commit/c3abd6796041f0b027245a9724d1c511eae747e9))
2687
-
2688
-
2689
- ### Features
2690
-
2691
- * **aw-island:** component added ([b929516](https://github.com/awes-io/client/commit/b9295163d060fb16e6f9108a9b5f83dc6744c1fd))
2692
- * **aw-user-menu:** theme-switcher modified ([5197bc4](https://github.com/awes-io/client/commit/5197bc4a4182798ff382e35d8ee22e802af80d33))
2693
-
2694
-
2695
-
2696
-
2697
-
2698
- ## [2.14.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.14.0...@awes-io/ui@2.14.1) (2021-03-26)
2699
-
2700
-
2701
- ### Bug Fixes
2702
-
2703
- * back-left as a default true value ([273e96d](https://github.com/awes-io/client/commit/273e96d2eb1222446b02f4ced055ebb2957a0cdd))
2704
- * typo ([99a993e](https://github.com/awes-io/client/commit/99a993ec77cc6c75a7d404300744fbb07848642c))
2705
-
2706
-
2707
-
2708
-
2709
-
2710
- # [2.14.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.13.0...@awes-io/ui@2.14.0) (2021-03-25)
2711
-
2712
-
2713
- ### Features
2714
-
2715
- * **aw-select:** create button ([d466af4](https://github.com/awes-io/client/commit/d466af42411c8c2885a4f6c06ca3a74ce1d04841))
2716
-
2717
-
2718
-
2719
-
2720
-
2721
- # [2.13.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.12.0...@awes-io/ui@2.13.0) (2021-03-24)
2722
-
2723
-
2724
- ### Bug Fixes
2725
-
2726
- * back-button ([72e6a6f](https://github.com/awes-io/client/commit/72e6a6f9798af1e6cff7220cd7b33707f293c300))
2727
- * container classes ([9b26189](https://github.com/awes-io/client/commit/9b2618909a00f183ebb783bcf68220aaaa06f327))
2728
- * **aw-page-user:** back link mobile ([3ccae82](https://github.com/awes-io/client/commit/3ccae82682bf4b52eee4c43e52bc462d36f1aa93))
2729
- * new layout styles ([600c243](https://github.com/awes-io/client/commit/600c24357980ac95ec6bc4f331cd9030ed370141))
2730
-
2731
-
2732
- ### Features
2733
-
2734
- * **aw-page:** add new props ([0e5cd65](https://github.com/awes-io/client/commit/0e5cd652399c69d80f16d75f75f781a0965de35c))
2735
- * **aw-page-user:** new design ([b23641d](https://github.com/awes-io/client/commit/b23641d9d3991d3f1c4e2d47508304f916a6b92c))
2736
- * **aw-search:** delete other query params on search ([ee28076](https://github.com/awes-io/client/commit/ee280766c5f432d0f98e95a7fb9f6a165e98c613))
2737
- * **aw-switcher:** new design ([14f5b42](https://github.com/awes-io/client/commit/14f5b42607ebc3429339997dc92f4d4f44156156))
2738
- * add aw-label ([e943c7c](https://github.com/awes-io/client/commit/e943c7c8cb382723148853930c785ef8ecdc2d3a))
2739
-
2740
-
2741
-
2742
-
2743
-
2744
- # [2.12.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.11.4...@awes-io/ui@2.12.0) (2021-03-17)
2745
-
2746
-
2747
- ### Features
2748
-
2749
- * **aw-userpic:** truncate name and description ([e697d6d](https://github.com/awes-io/client/commit/e697d6dd4ab6cd6df856d905296c44b4ddbe3582))
2750
-
2751
-
2752
-
2753
-
2754
-
2755
- ## [2.11.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.11.3...@awes-io/ui@2.11.4) (2021-03-10)
2756
-
2757
- **Note:** Version bump only for package @awes-io/ui
2758
-
2759
-
2760
-
2761
-
2762
-
2763
- ## [2.11.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.11.2...@awes-io/ui@2.11.3) (2021-03-09)
2764
-
2765
-
2766
- ### Bug Fixes
2767
-
2768
- * **aw-dwonload-link:** show proper loader icon component ([51bec67](https://github.com/awes-io/client/commit/51bec67cbf24e8e44a40121d4fa26f98819b1582))
2769
- * **aw-select:** prevent form sending on enter key press to fire custom events ([b09fb01](https://github.com/awes-io/client/commit/b09fb0175f8fffb9d0bd68c4cd7196098491c830))
2770
-
2771
-
2772
-
2773
-
2774
-
2775
- ## [2.11.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.11.1...@awes-io/ui@2.11.2) (2021-03-05)
2776
-
2777
-
2778
- ### Bug Fixes
2779
-
2780
- * **aw-table:** omit custom scroll on touch action ([e4a6b3f](https://github.com/awes-io/client/commit/e4a6b3fc24740c9691fc82fc0007e673cfb5c37e))
2781
-
2782
-
2783
-
2784
-
2785
-
2786
- ## [2.11.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.11.0...@awes-io/ui@2.11.1) (2021-03-03)
2787
-
2788
-
2789
- ### Bug Fixes
2790
-
2791
- * typo fixes ([1493d98](https://github.com/awes-io/client/commit/1493d9828ec30c8a054e2ae93a1268518d357ac6))
2792
-
2793
-
2794
-
2795
-
2796
-
2797
- # [2.11.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.10.3...@awes-io/ui@2.11.0) (2021-03-03)
2798
-
2799
-
2800
- ### Bug Fixes
2801
-
2802
- * **aw-select:** do not reset empty indexes on enter click ([17e51d5](https://github.com/awes-io/client/commit/17e51d50e16cafe695df87cf73e88cfa542fc1f7))
2803
-
2804
-
2805
- ### Features
2806
-
2807
- * **aw-table:** scroll added ([160ffee](https://github.com/awes-io/client/commit/160ffeebb0e45a3d46ec8374c35211e53fab082c))
2808
-
2809
-
2810
-
2811
-
2812
-
2813
- ## [2.10.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.10.2...@awes-io/ui@2.10.3) (2021-03-03)
2814
-
2815
-
2816
- ### Bug Fixes
2817
-
2818
- * table-dropdown ([ad80521](https://github.com/awes-io/client/commit/ad805215b37381ac3b6f83761ee1109265e1c8f4))
2819
-
2820
-
2821
-
2822
-
2823
-
2824
- ## [2.10.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.10.1...@awes-io/ui@2.10.2) (2021-03-02)
2825
-
2826
-
2827
- ### Bug Fixes
2828
-
2829
- * social login fixed ([b8a4dc6](https://github.com/awes-io/client/commit/b8a4dc6c0ee54d2f2c18b61b81561348c06b48a7))
2830
-
2831
-
2832
-
2833
-
2834
-
2835
- ## [2.10.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.10.0...@awes-io/ui@2.10.1) (2021-03-01)
2836
-
2837
-
2838
- ### Bug Fixes
2839
-
2840
- * styling fixes ([21c8b33](https://github.com/awes-io/client/commit/21c8b334aac0739440a979b86edc04a4da14f484))
2841
-
2842
-
2843
-
2844
-
2845
-
2846
- # [2.10.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.9.5...@awes-io/ui@2.10.0) (2021-02-27)
2847
-
2848
-
2849
- ### Features
2850
-
2851
- * menu modification ([9d35456](https://github.com/awes-io/client/commit/9d354563ada800b68d9ebf8f807503155fb3a27e))
2852
-
2853
-
2854
-
2855
-
2856
-
2857
- ## [2.9.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.9.4...@awes-io/ui@2.9.5) (2021-02-26)
2858
-
2859
-
2860
- ### Bug Fixes
2861
-
2862
- * prerelease ([3e30cb2](https://github.com/awes-io/client/commit/3e30cb210536659bfdd98d1e0cadeb3b25863699))
2863
-
2864
-
2865
-
2866
-
2867
-
2868
- ## [2.9.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.9.3...@awes-io/ui@2.9.4) (2021-02-25)
2869
-
2870
-
2871
- ### Bug Fixes
2872
-
2873
- * hide-mobile + page buttons ([8484c3b](https://github.com/awes-io/client/commit/8484c3b5e3204f082f0fc6f7c17e247e298d7bd8))
2874
-
2875
-
2876
-
2877
-
2878
-
2879
- ## [2.9.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.9.2...@awes-io/ui@2.9.3) (2021-02-25)
2880
-
2881
-
2882
- ### Bug Fixes
2883
-
2884
- * final ([d51be75](https://github.com/awes-io/client/commit/d51be7567ac41f0c0deaa6c9d0274e936376e77f))
2885
-
2886
-
2887
-
2888
-
2889
-
2890
- ## [2.9.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.9.1...@awes-io/ui@2.9.2) (2021-02-17)
2891
-
2892
-
2893
- ### Bug Fixes
2894
-
2895
- * **aw-select:** mobile version fix ([52499da](https://github.com/awes-io/client/commit/52499da6241e309fa680cef33f2b42fa211a700f))
2896
-
2897
-
2898
-
2899
-
2900
-
2901
- ## [2.9.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.9.0...@awes-io/ui@2.9.1) (2021-02-16)
2902
-
2903
-
2904
- ### Bug Fixes
2905
-
2906
- * **aw-select:** dropdown and select issues fix ([02160b5](https://github.com/awes-io/client/commit/02160b5962cd20a9f59f9df6e35690380e55914c))
2907
-
2908
-
2909
-
2910
-
2911
-
2912
- # [2.9.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.8.0...@awes-io/ui@2.9.0) (2021-02-11)
2913
-
2914
-
2915
- ### Features
2916
-
2917
- * select dropdown update ([7c6c95d](https://github.com/awes-io/client/commit/7c6c95dcc97914a6aa6e7c94b649816784e5ed62))
2918
-
2919
-
2920
-
2921
-
2922
-
2923
- # [2.8.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.7.0...@awes-io/ui@2.8.0) (2021-02-10)
2924
-
2925
-
2926
- ### Bug Fixes
2927
-
2928
- * **toggler:** toggler crash after destroy fixed ([0fbad2c](https://github.com/awes-io/client/commit/0fbad2ccf33c397149158ef0159cfc941a747da2))
2929
-
2930
-
2931
- ### Features
2932
-
2933
- * new mobile dropdown ([a97d3fc](https://github.com/awes-io/client/commit/a97d3fcc32a4a4b91d16341f74aeb27bf8b824a8))
2934
- * **aw-select:** fix special characters search ([2ace638](https://github.com/awes-io/client/commit/2ace638b648c194b59c097a27791a2952c60e2f8))
2935
-
2936
-
2937
-
2938
-
2939
-
2940
- # [2.7.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.6.0...@awes-io/ui@2.7.0) (2021-02-05)
2941
-
2942
-
2943
- ### Bug Fixes
2944
-
2945
- * **aw-subnav:** make children raay unnecessary ([5d6c177](https://github.com/awes-io/client/commit/5d6c177d7ad5c751f60a769c7baf4b554206765b))
2946
-
2947
-
2948
- ### Features
2949
-
2950
- * **aw-page-menu-buttons:** component added ([418c3ba](https://github.com/awes-io/client/commit/418c3ba6c8770292623a27f91d461087e220b7a5))
2951
-
2952
-
2953
-
2954
-
2955
-
2956
- # [2.6.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.5.0...@awes-io/ui@2.6.0) (2021-02-04)
2957
-
2958
-
2959
- ### Bug Fixes
2960
-
2961
- * update de.js ([4603127](https://github.com/awes-io/client/commit/460312728fc6468f8baaec73d4674790d535bc95))
2962
- * update en.js ([37af6fb](https://github.com/awes-io/client/commit/37af6fbb51357773e4f6b7cc9eb80da9b27e439e))
2963
- * update ru.js ([b69dffd](https://github.com/awes-io/client/commit/b69dffde181a5cbf55be99abb5067b2a8750d8bb))
2964
- * update uk.js ([a807114](https://github.com/awes-io/client/commit/a807114ebc510c030a5fd0247083fd06ba62ead6))
2965
-
2966
-
2967
- ### Features
2968
-
2969
- * mobile menu updates ([37c6969](https://github.com/awes-io/client/commit/37c69690ad61f5e3a430ef891a128c525351a10b))
2970
- * **pages:** pages components updated ([6ccb5a2](https://github.com/awes-io/client/commit/6ccb5a2945154310fec0696db71e0a5afa04204e))
2971
-
2972
-
2973
-
2974
-
2975
-
2976
- # [2.5.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.6...@awes-io/ui@2.5.0) (2021-02-02)
2977
-
2978
-
2979
- ### Bug Fixes
2980
-
2981
- * **aw-page:** heading bottom paddings removed ([8cdbefd](https://github.com/awes-io/client/commit/8cdbefd64b09ed29ef55ea6fa8c3995dd8bf9bb5))
2982
-
2983
-
2984
- ### Features
2985
-
2986
- * **aw-headline:** component added ([9616ba8](https://github.com/awes-io/client/commit/9616ba8f8dede3c13500c96801362dd703165d7f))
2987
- * **aw-mobile-menu:** menu update ([3788445](https://github.com/awes-io/client/commit/378844530ac73a64f7547f5801862f14e8fe26c7))
2988
-
2989
-
2990
-
2991
-
2992
-
2993
- ## [2.4.6](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.5...@awes-io/ui@2.4.6) (2021-01-27)
2994
-
2995
-
2996
- ### Bug Fixes
2997
-
2998
- * bump version ([f507d04](https://github.com/awes-io/client/commit/f507d0441c1ac86e0614e5f44216c2952d12a6cf))
2999
-
3000
-
3001
-
3002
-
3003
-
3004
- ## [2.4.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.4...@awes-io/ui@2.4.5) (2021-01-27)
3005
-
3006
-
3007
- ### Bug Fixes
3008
-
3009
- * updated version of packages ([c02a49b](https://github.com/awes-io/client/commit/c02a49bd65c595843ef975f739a2a2e2393e87bc))
3010
-
3011
-
3012
-
3013
-
3014
-
3015
- ## [2.4.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.3...@awes-io/ui@2.4.4) (2021-01-27)
3016
-
3017
-
3018
- ### Bug Fixes
3019
-
3020
- * changed version ([fc1e622](https://github.com/awes-io/client/commit/fc1e62241976c75027e72bf17e7f3e49d58e6f3a))
3021
-
3022
-
3023
-
3024
-
3025
-
3026
- ## [2.4.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.2...@awes-io/ui@2.4.3) (2021-01-27)
3027
-
3028
- ### Bug Fixes
3029
-
3030
- - **aw-select:** catch errors while creating search regexp ([3f7c675](https://github.com/awes-io/client/commit/3f7c67581ac919973c7727bdb80689e2d90cd034))
3031
- - changed default accent color ([b3b3f46](https://github.com/awes-io/client/commit/b3b3f46fb124416310a77b6242b7bb61a87735a3))
3032
-
3033
- ## [2.4.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.1...@awes-io/ui@2.4.2) (2021-01-22)
3034
-
3035
- ### Bug Fixes
3036
-
3037
- - **aw-layout-provider:** menu reactivity fix ([b7adc7b](https://github.com/awes-io/client/commit/b7adc7b56026f51432af7c6a0879b234d75053eb))
3038
-
3039
- ## [2.4.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.4.0...@awes-io/ui@2.4.1) (2021-01-22)
3040
-
3041
- ### Bug Fixes
3042
-
3043
- - fixes and updates ([3dc760b](https://github.com/awes-io/client/commit/3dc760beb49afa8a553e96455915686c002d975a))
3044
-
3045
- # [2.4.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.3.1...@awes-io/ui@2.4.0) (2021-01-21)
3046
-
3047
- ### Features
3048
-
3049
- - active icon in menu ([04ce90e](https://github.com/awes-io/client/commit/04ce90ee12e4bbb1917c5a40ab48b12f4a75e443))
3050
-
3051
- ## [2.3.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.3.0...@awes-io/ui@2.3.1) (2021-01-20)
3052
-
3053
- ### Bug Fixes
3054
-
3055
- - layout fixes ([9b60b19](https://github.com/awes-io/client/commit/9b60b19fada45eb50fac4aa11549f1bf689a72ac))
3056
-
3057
- # [2.3.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.2.0...@awes-io/ui@2.3.0) (2021-01-14)
3058
-
3059
- ### Features
3060
-
3061
- - layout update ([d70d011](https://github.com/awes-io/client/commit/d70d011ff2f6d052bf2ee57ad1c4bae1aa58f605))
3062
-
3063
- # [2.2.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.1.0...@awes-io/ui@2.2.0) (2021-01-13)
3064
-
3065
- ### Bug Fixes
3066
-
3067
- - refactoring ([6ff9f08](https://github.com/awes-io/client/commit/6ff9f08bb7e45387b6736a9b253cdb6eabb95236))
3068
-
3069
- ### Features
3070
-
3071
- - refactoring: icons, basic-ui ([bff25e0](https://github.com/awes-io/client/commit/bff25e01e7dfc62985f3306fceeee9faf7246d04))
3072
-
3073
- # [2.1.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.0.6...@awes-io/ui@2.1.0) (2021-01-12)
3074
-
3075
- ### Features
3076
-
3077
- - menu updated ([1ceb099](https://github.com/awes-io/client/commit/1ceb0991477c417716262441054e16d741366d5d))
3078
-
3079
- ## [2.0.6](https://github.com/awes-io/client/compare/@awes-io/ui@2.0.5...@awes-io/ui@2.0.6) (2021-01-08)
3080
-
3081
- ### Bug Fixes
3082
-
3083
- - vertical align for buttons ([5daf459](https://github.com/awes-io/client/commit/5daf4599aafd78d231fc27be8f88caaced763224))
3084
-
3085
- ## [2.0.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.0.4...@awes-io/ui@2.0.5) (2021-01-08)
3086
-
3087
- ### Bug Fixes
3088
-
3089
- - **i18n:** async translation fetching fixed ([f6aeef2](https://github.com/awes-io/client/commit/f6aeef2da643a1daf1bfcbfe30cc41cc20bb2353))
3090
-
3091
- ## [2.0.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.0.3...@awes-io/ui@2.0.4) (2021-01-08)
3092
-
3093
- ### Bug Fixes
3094
-
3095
- - rambdax included ([cc6ba02](https://github.com/awes-io/client/commit/cc6ba0282c6e64a492a68f7142c8ae0c3d886529))
3096
-
3097
- ## [2.0.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.0.2...@awes-io/ui@2.0.3) (2021-01-08)
3098
-
3099
- ### Bug Fixes
3100
-
3101
- - merge issues ([2d7ab6e](https://github.com/awes-io/client/commit/2d7ab6e2bfbc66b7038c03ba85ba08de2502bd53))
3102
-
3103
- ## [2.0.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.0.0...@awes-io/ui@2.0.2) (2021-01-08)
3104
-
3105
- ### Bug Fixes
3106
-
3107
- - bump version ([8141e69](https://github.com/awes-io/client/commit/8141e6921bdd7eba794193558c7b0f73dd8e2768))
3108
-
3109
- # [2.0.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.111.1...@awes-io/ui@2.0.0) (2021-01-08)
3110
-
3111
- - refactor!: design and system update ([1cb4b02](https://github.com/awes-io/client/commit/1cb4b02cbca10b02f500c6bd392eb98c7758470c))
3112
-
3113
- ### BREAKING CHANGES
3114
-
3115
- - migration to awes.io v3
3116
-
3117
- ## [1.111.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.111.0...@awes-io/ui@1.111.1) (2020-12-23)
3118
-
3119
- ### Bug Fixes
3120
-
3121
- - **aw-filter-month:** take local dayjs ([8ce2ff1](https://github.com/awes-io/client/commit/8ce2ff1ef2a0cf4418b303da45bf1e524e9026cb))
3122
-
3123
- # [1.111.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.110.0...@awes-io/ui@1.111.0) (2020-12-22)
3124
-
3125
- ### Bug Fixes
3126
-
3127
- - changed url to https ([058bca6](https://github.com/awes-io/client/commit/058bca6d77c4a909f6c88bd8f1deefe1971eb144))
3128
- - test url ([210cea3](https://github.com/awes-io/client/commit/210cea34b2b64e88566d51b1e80451b309cab453))
3129
-
3130
- ### Features
3131
-
3132
- - **aw-filter-month:** check for local dayjs instance ([73c9473](https://github.com/awes-io/client/commit/73c947368e5e991db8a4c784ebae7e554cbd0993))
3133
-
3134
- # [1.110.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.109.0...@awes-io/ui@1.110.0) (2020-12-21)
3135
-
3136
- ### Bug Fixes
3137
-
3138
- - css ios width flickering ([fb03b1c](https://github.com/awes-io/client/commit/fb03b1cf8853c9ef76d75a6e9d868f2faa7e9854))
3139
- - css naming ([bc1c7b3](https://github.com/awes-io/client/commit/bc1c7b31afd5d817e43e3feffeb5f57ae08f5e50))
3140
- - date min width ([8a0d9ef](https://github.com/awes-io/client/commit/8a0d9efeffeba62b418e54350a31b97794427a20))
3141
- - filter month default width ([443280c](https://github.com/awes-io/client/commit/443280c69aa97d4e2080b2451aec97800b00e111))
3142
- - ios css fix ([ce213ad](https://github.com/awes-io/client/commit/ce213ad3c94c090fc4dd4fc241a7082b0fc4304c))
3143
-
3144
- ### Features
3145
-
3146
- - add aw-filter-month component ([2aac92e](https://github.com/awes-io/client/commit/2aac92e2946c850a8ce0c15a063e8c761545962d))
3147
-
3148
- # [1.109.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.108.0...@awes-io/ui@1.109.0) (2020-12-16)
3149
-
3150
- ### Bug Fixes
3151
-
3152
- - removed comment ([5762552](https://github.com/awes-io/client/commit/576255202def8b7f260ff647699e04d3021c820c))
3153
-
3154
- ### Features
3155
-
3156
- - add icons, select add not-equal listener ([426da60](https://github.com/awes-io/client/commit/426da60b34fda4be2d22d0f7305eec074e1ce66e))
3157
-
3158
- # [1.108.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.107.1...@awes-io/ui@1.108.0) (2020-12-16)
3159
-
3160
- ### Bug Fixes
3161
-
3162
- - AwInfo modal, AwDownloadLink ([83a01b6](https://github.com/awes-io/client/commit/83a01b6a00f9401b6b010f5442dd7e33a99a8179))
3163
- - ios hidden /icon files ([ad6d6a2](https://github.com/awes-io/client/commit/ad6d6a27c7cbfe03bb3b72c16c343234e02b353e))
3164
- - **AwButton:** loading icon ([def6f2c](https://github.com/awes-io/client/commit/def6f2cf32959c66903bafce83aa6edc79d31747))
3165
- - refactor ([a325d8a](https://github.com/awes-io/client/commit/a325d8aaf23f8a0443bfc6c1e461e1fdf0403f79))
3166
- - rename AwDisplayDate ([2e5b201](https://github.com/awes-io/client/commit/2e5b201adeba390f76a0b24d12ea8e557b98e33c))
3167
- - **AwDownloadLink:** styles ([0e306b7](https://github.com/awes-io/client/commit/0e306b79e76f3942dbb2d0c8746b68dee5d353f7))
3168
-
3169
- ### Features
3170
-
3171
- - add AwBirthdayDate component ([5742b2c](https://github.com/awes-io/client/commit/5742b2cba77f2bfb18a251121e8a0f2267da9462))
3172
- - css improvements, awDisplayDate ([5ab2ea0](https://github.com/awes-io/client/commit/5ab2ea03086d15be310e1fc31c23d2e2be1a953b))
3173
- - **AwButton:** add mobile-text-hidden props ([c05a37e](https://github.com/awes-io/client/commit/c05a37e28cbe0924c32c45a437ed3265cc04c672))
3174
- - **AwDownloadLink:** add supported formats ([6a51afc](https://github.com/awes-io/client/commit/6a51afc743ed1cdc6af9fe48bd047e1d9b1760ba))
3175
- - **AwDownloadLink:** docs, icons ([2bdca7d](https://github.com/awes-io/client/commit/2bdca7d8dc2a34790cdaf6ae02ddc6abba892382))
3176
- - change button, add AwDownloadLink ([a4a72d9](https://github.com/awes-io/client/commit/a4a72d990a8827d62964e2db0d9247548af819c5))
3177
-
3178
- ## [1.107.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.107.0...@awes-io/ui@1.107.1) (2020-12-11)
3179
-
3180
- ### Bug Fixes
3181
-
3182
- - dropdown, tel input ([01b8c65](https://github.com/awes-io/client/commit/01b8c65743ee68e4d1a11b95f035d7a724d5b819))
3183
- - notifications ([cb5699c](https://github.com/awes-io/client/commit/cb5699c1fe07a934c2ba09996e9d31a01b746f72))
3184
-
3185
- # [1.107.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.106.0...@awes-io/ui@1.107.0) (2020-12-11)
3186
-
3187
- ### Bug Fixes
3188
-
3189
- - improvements/fixes ([35cbe83](https://github.com/awes-io/client/commit/35cbe837a06cc85c73c99ee52644723da7bcde3b))
3190
-
3191
- ### Features
3192
-
3193
- - change styles dropdown, notyfication, birthdaypicker ([dff9f53](https://github.com/awes-io/client/commit/dff9f534a27681a54d9ab3da460a6a35d351b4b1))
3194
- - **aw-page-user:** component recieved loading logic ([81fdcd4](https://github.com/awes-io/client/commit/81fdcd464830b63484308892040cf59c6e39b554))
3195
- - **aw-uploader:** drop area expands to full screen in single uploader ([2310768](https://github.com/awes-io/client/commit/23107688eae2d151d96616dcff68180fcce78461))
3196
-
3197
- # [1.106.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.105.2...@awes-io/ui@1.106.0) (2020-12-08)
3198
-
3199
- ### Features
3200
-
3201
- - add AwBirthdayPicker component ([456a2d9](https://github.com/awes-io/client/commit/456a2d9d919ed7038adf449d140a3461eb67d5f1))
3202
- - awselect new option creation ([54b0eec](https://github.com/awes-io/client/commit/54b0eeccaf44b921613b30034957250be494617f))
3203
-
3204
- ## [1.105.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.105.1...@awes-io/ui@1.105.2) (2020-12-07)
3205
-
3206
- ### Bug Fixes
3207
-
3208
- - **aw-page-user:** styles moved to css bundle ([7bc8a56](https://github.com/awes-io/client/commit/7bc8a56ce030d3d06cc81f91aa61930386dace49))
3209
-
3210
- ## [1.105.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.105.0...@awes-io/ui@1.105.1) (2020-12-07)
3211
-
3212
- ### Bug Fixes
3213
-
3214
- - **icons:** regenerate iconic font every time on bundle build ([5199489](https://github.com/awes-io/client/commit/519948920870fb2f0d1a1db8c93d9d5c8571b35f))
3215
-
3216
- # [1.105.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.104.0...@awes-io/ui@1.105.0) (2020-12-06)
3217
-
3218
- ### Features
3219
-
3220
- - **aw-page-user:** cusom aw-page with avatar added ([8135df8](https://github.com/awes-io/client/commit/8135df875a80c2869793a672627382c27149aef2))
3221
-
3222
- # [1.104.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.103.0...@awes-io/ui@1.104.0) (2020-12-04)
3223
-
3224
- ### Features
3225
-
3226
- - **tooltip:** tooltip styles updated ([ded84f6](https://github.com/awes-io/client/commit/ded84f680918d4c36dbd9b0725f4396649e6deb6))
3227
-
3228
- # [1.103.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.102.0...@awes-io/ui@1.103.0) (2020-12-01)
3229
-
3230
- ### Bug Fixes
3231
-
3232
- - awselect element slot ([3d458b8](https://github.com/awes-io/client/commit/3d458b8664116c393601a9671799ef112c81791e))
3233
-
3234
- ### Features
3235
-
3236
- - add settings for icon menu as object ([2e7ad57](https://github.com/awes-io/client/commit/2e7ad57f7001e29dcbd9bfe6a12be9c9f125759e))
3237
- - use old fetch query ([bb56167](https://github.com/awes-io/client/commit/bb56167d0e5205602d0bf86903f3a042ce5699e1))
3238
-
3239
- # [1.102.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.101.0...@awes-io/ui@1.102.0) (2020-11-30)
3240
-
3241
- ### Bug Fixes
3242
-
3243
- - aw calendar days classes ([d36bad2](https://github.com/awes-io/client/commit/d36bad26d8cb0e4851046f26c6cdc48f458518c7))
3244
- - calendar date logic ([827cdde](https://github.com/awes-io/client/commit/827cdde6f07c7a7ce3a7637c2ae82553cdbed7b5))
3245
- - enable show today by default ([225b274](https://github.com/awes-io/client/commit/225b274d2b71439b0603d46c088d6f5b07110a21))
3246
-
3247
- ### Features
3248
-
3249
- - calendar, date add show-today prop ([71e720a](https://github.com/awes-io/client/commit/71e720aa4de356b78011d5e833d662e04a1d4aee))
3250
- - emit full response on tablebuilder data fetch ([017cdf8](https://github.com/awes-io/client/commit/017cdf8af2d19e9dc1459d8f0f641084ac881fa9))
3251
-
3252
- # [1.101.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.100.0...@awes-io/ui@1.101.0) (2020-11-30)
3253
-
3254
- ### Features
3255
-
3256
- - aw-money added ([01a96dd](https://github.com/awes-io/client/commit/01a96dd345e7a198b0e225238f4d9464dfe87780))
3257
-
3258
- # [1.100.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.99.0...@awes-io/ui@1.100.0) (2020-11-25)
3259
-
3260
- ### Features
3261
-
3262
- - before open modal events added ([ed75e36](https://github.com/awes-io/client/commit/ed75e36a89e4443ce7a81d386e29ccf145794895))
3263
- - no-fetch prop added for table-builder ([ffdb22c](https://github.com/awes-io/client/commit/ffdb22ca02598ec2b03936fa677ff35973305356))
3264
-
3265
- # [1.99.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.98.2...@awes-io/ui@1.99.0) (2020-11-19)
3266
-
3267
- ### Features
3268
-
3269
- - add select inverted prop, fix input border ([908d83b](https://github.com/awes-io/client/commit/908d83bb169599ccefe78d9f2db95731312a4138))
3270
-
3271
- ## [1.98.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.98.1...@awes-io/ui@1.98.2) (2020-11-12)
3272
-
3273
- **Note:** Version bump only for package @awes-io/ui
3274
-
3275
- ## [1.98.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.98.0...@awes-io/ui@1.98.1) (2020-11-12)
3276
-
3277
- ### Bug Fixes
3278
-
3279
- - password emits input event on paste ([a4d66b0](https://github.com/awes-io/client/commit/a4d66b01111d4b162e0e04c4634423754d83147e))
3280
- - password emits input event on paste ([b7126fb](https://github.com/awes-io/client/commit/b7126fbffafdcff944e80487ec5c5747e1614338))
3281
-
3282
- # [1.98.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.97.1...@awes-io/ui@1.98.0) (2020-10-15)
3283
-
3284
- ### Features
3285
-
3286
- - show default layout for 404 error ([1c1ed33](https://github.com/awes-io/client/commit/1c1ed332dbdeeb4b01f17e4af5f4d11306e3fcdb))
3287
-
3288
- ## [1.97.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.97.0...@awes-io/ui@1.97.1) (2020-10-12)
3289
-
3290
- ### Bug Fixes
3291
-
3292
- - **aw-dashboard-legend:** show zero if value is nan of infinity ([9a04e2e](https://github.com/awes-io/client/commit/9a04e2e15e556efcb389b75c003ca5eaab97c83d))
3293
-
3294
- # [1.97.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.96.1...@awes-io/ui@1.97.0) (2020-10-09)
3295
-
3296
- ### Features
3297
-
3298
- - updated version ([6b271c1](https://github.com/awes-io/client/commit/6b271c1c04ec3bcc6a96989537fa80166c99181c))
3299
-
3300
- ## [1.96.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.96.0...@awes-io/ui@1.96.1) (2020-10-09)
3301
-
3302
- ### Bug Fixes
3303
-
3304
- - **aw-layout-default:** header-notification styles updated ([0ca671a](https://github.com/awes-io/client/commit/0ca671ac47d489987b3563b3c12f1a6f9cf9ff83))
3305
-
3306
- # [1.96.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.95.0...@awes-io/ui@1.96.0) (2020-10-06)
3307
-
3308
- ### Features
3309
-
3310
- - **aw-address:** more information from places api + timezone prop ([35bf2e2](https://github.com/awes-io/client/commit/35bf2e2f89deb90ac96d6c8edb9563d5276807a2))
3311
-
3312
- # [1.95.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.94.0...@awes-io/ui@1.95.0) (2020-09-30)
3313
-
3314
- ### Bug Fixes
3315
-
3316
- - AwChipSelect add loading animation ([4f9bac8](https://github.com/awes-io/client/commit/4f9bac8c9c7480adee602d998f6fbfd6607b368e))
3317
- - fix AwInfo reactivity ([2cc209b](https://github.com/awes-io/client/commit/2cc209b7ce991baa78a83a279553a610d6c7b959))
3318
- - fullscreen modal body overflow ([589079c](https://github.com/awes-io/client/commit/589079cde91b26a9afbedb4275c4c2cfa87d9836))
3319
-
3320
- ### Features
3321
-
3322
- - header notification improvements ([2470a26](https://github.com/awes-io/client/commit/2470a262028c12721db21ef8c6a69ced67c42ca4))
3323
- - hide select arrow icon if no options ([25ba58d](https://github.com/awes-io/client/commit/25ba58dc902565f59894ccb502cea3d05a9cfb72))
3324
-
3325
- # [1.94.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.93.2...@awes-io/ui@1.94.0) (2020-09-21)
3326
-
3327
- ### Bug Fixes
3328
-
3329
- - font generator fix ([cca9060](https://github.com/awes-io/client/commit/cca90608d5efe35bfc35d2d62d187e106dabd52e))
3330
-
3331
- ### Features
3332
-
3333
- - dashboard charts update ([f0deac1](https://github.com/awes-io/client/commit/f0deac1d331c2c44200f4468774b6fe8fbe8431c))
3334
-
3335
- ## [1.93.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.93.1...@awes-io/ui@1.93.2) (2020-08-26)
3336
-
3337
- ### Bug Fixes
3338
-
3339
- - **aw-dropdown:** capture outside clicks ([9067cee](https://github.com/awes-io/client/commit/9067cee8bb549b10d6c75a3a24187dbf5bb17e90))
3340
-
3341
- ## [1.93.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.93.0...@awes-io/ui@1.93.1) (2020-08-26)
3342
-
3343
- ### Bug Fixes
3344
-
3345
- - kbd style improving ([41e86f3](https://github.com/awes-io/client/commit/41e86f302221aca21d724d608ca3a6ed1a3afd35))
3346
- - reomove AwChipSelect options validation ([e9f3142](https://github.com/awes-io/client/commit/e9f31427d7fc74c4c1133b5c84ef449b62e5220f))
3347
-
3348
- # [1.93.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.92.0...@awes-io/ui@1.93.0) (2020-08-25)
3349
-
3350
- ### Bug Fixes
3351
-
3352
- - AwTableBuilder change orderable default logic ([2569e02](https://github.com/awes-io/client/commit/2569e02d4e027ca5396e46aa36096675b9cbea15))
3353
-
3354
- ### Features
3355
-
3356
- - change get default AwTableCol logic ([5f6e7cd](https://github.com/awes-io/client/commit/5f6e7cd0d900ad7a314e25f47b42297a2e2aff27))
3357
-
3358
- # [1.92.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.91.0...@awes-io/ui@1.92.0) (2020-08-24)
3359
-
3360
- ### Bug Fixes
3361
-
3362
- - change kbd styles location ([b246e54](https://github.com/awes-io/client/commit/b246e54977fbb581ddafaa818e00c9a0dd7161a2))
3363
- - kbd change shadow color ([294f945](https://github.com/awes-io/client/commit/294f945962ed8b60084dbb32bb9bdd2fc1b9d88e))
3364
- - uncomment breadcrumb title ([17d8911](https://github.com/awes-io/client/commit/17d891164a6c804dfa2376ecbdfb3018c73f25be))
3365
-
3366
- ### Features
3367
-
3368
- - always show breacrubs back button ([b747561](https://github.com/awes-io/client/commit/b74756184a12e39aa885dd2a67901b2167bfd50a))
3369
-
3370
- # [1.91.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.90.1...@awes-io/ui@1.91.0) (2020-08-10)
3371
-
3372
- ### Bug Fixes
3373
-
3374
- - AwCard overflow fix ([9561304](https://github.com/awes-io/client/commit/956130425d50f0b1057409189120bed3b3864db9))
3375
- - change kbd color ([a2b5d59](https://github.com/awes-io/client/commit/a2b5d595cdaf754b73fa354ba8700cd00e8dbbc5))
3376
- - use awes colors ([b9f4bb7](https://github.com/awes-io/client/commit/b9f4bb7547a1d25541a4d6f3df86a885cf4bd07b))
3377
-
3378
- ### Features
3379
-
3380
- - add kbd styles ([66fdb80](https://github.com/awes-io/client/commit/66fdb8019aa2b0d2badab18abf3201f771fa540b))
3381
-
3382
- ## [1.90.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.90.0...@awes-io/ui@1.90.1) (2020-07-13)
3383
-
3384
- ### Bug Fixes
3385
-
3386
- - typo in aw address ([3e24084](https://github.com/awes-io/client/commit/3e2408479ed14103cee835e1911fedf9e4a0334b))
3387
-
3388
- # [1.90.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.89.0...@awes-io/ui@1.90.0) (2020-07-13)
3389
-
3390
- ### Features
3391
-
3392
- - added region to address; removed oveflow hidden for aw-page ([0697694](https://github.com/awes-io/client/commit/06976949c57eddce731ef2670f77e682ffe17ea6))
3393
-
3394
- # [1.89.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.88.1...@awes-io/ui@1.89.0) (2020-07-02)
3395
-
3396
- ### Features
3397
-
3398
- - removed white background in empty table block ([1beba06](https://github.com/awes-io/client/commit/1beba065b782f93c7603dfda75c6cc56fea4a639))
3399
-
3400
- ## [1.88.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.88.0...@awes-io/ui@1.88.1) (2020-06-29)
3401
-
3402
- ### Bug Fixes
3403
-
3404
- - **aw-calendar:** calendar defaults fallback added ([0d3954f](https://github.com/awes-io/client/commit/0d3954f9c5db76582a0f2fff86675dc3463554af))
3405
- - **aw-menu-item:** markup fix + active state detection update ([3d2681a](https://github.com/awes-io/client/commit/3d2681ac785a59cfcf93f0a4bb2128dee89af176))
3406
-
3407
- # [1.88.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.87.1...@awes-io/ui@1.88.0) (2020-06-26)
3408
-
3409
- ### Bug Fixes
3410
-
3411
- - **aw-input:** autoset ids only in mounted hook to prevent difference in input and label ([1629792](https://github.com/awes-io/client/commit/16297927dc3d9693e77b05a206b2d11efc92a918))
3412
- - **aw-select:** ui improvements ([10eb16a](https://github.com/awes-io/client/commit/10eb16a5bc52ab9e01f73ca24db7117f2d77959f))
3413
-
3414
- ### Features
3415
-
3416
- - **aw-modal:** after-close event added ([07c89e6](https://github.com/awes-io/client/commit/07c89e63f6e8b786369ac7e34c6713de9c155831))
3417
-
3418
- ## [1.87.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.87.0...@awes-io/ui@1.87.1) (2020-06-22)
3419
-
3420
- ### Bug Fixes
3421
-
3422
- - menu fixes ([7ef9b05](https://github.com/awes-io/client/commit/7ef9b057d5138dd66431e5fbc44e725c0cba3674))
3423
-
3424
- # [1.87.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.86.0...@awes-io/ui@1.87.0) (2020-06-19)
3425
-
3426
- ### Features
3427
-
3428
- - updated json ([c3f6d95](https://github.com/awes-io/client/commit/c3f6d952b7a7b01957cb97f148da1795dfc6f43c))
3429
-
3430
- # [1.86.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.85.2...@awes-io/ui@1.86.0) (2020-06-19)
3431
-
3432
- ### Features
3433
-
3434
- - add prefix, postfix, clearable to AwDate ([736ec6b](https://github.com/awes-io/client/commit/736ec6b9d31dc8a2488ec831c00c672fd70fcd80))
3435
- - menu improvements and fixes ([1469cbc](https://github.com/awes-io/client/commit/1469cbc01e0e9d749219646b25cc8e640fe3cbde))
3436
-
3437
- ## [1.85.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.85.1...@awes-io/ui@1.85.2) (2020-05-28)
3438
-
3439
- **Note:** Version bump only for package @awes-io/ui
3440
-
3441
- ## [1.85.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.85.0...@awes-io/ui@1.85.1) (2020-05-27)
3442
-
3443
- ### Bug Fixes
3444
-
3445
- - **aw-user-menu:** acept function as link url ([06f6977](https://github.com/awes-io/client/commit/06f6977a129fe10a3e49f7e5a2259d7484e1cb24))
3446
-
3447
- # [1.85.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.84.0...@awes-io/ui@1.85.0) (2020-05-27)
3448
-
3449
- ### Bug Fixes
3450
-
3451
- - **aw-slider:** fix junky native scroll ([4e56959](https://github.com/awes-io/client/commit/4e569596423eb2a0464b99af2e6027476da25302))
3452
- - AwSwitcher bind disabled ([1a624ad](https://github.com/awes-io/client/commit/1a624addba1a0b9676523cc71d07da75479838c2))
3453
-
3454
- ### Features
3455
-
3456
- - **aw-page:** fullscreen mode added ([6aa0edc](https://github.com/awes-io/client/commit/6aa0edc60d3a4123a59c3e1aae743678d1b36017))
3457
-
3458
- # [1.84.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.83.1...@awes-io/ui@1.84.0) (2020-05-20)
3459
-
3460
- ### Bug Fixes
3461
-
3462
- - docs updated ([924508a](https://github.com/awes-io/client/commit/924508afaf0a20b3383d97e8ed09290468338415))
3463
- - **avatar:** update avatar path for all components ([890b2ab](https://github.com/awes-io/client/commit/890b2aba1911f18474be06ac23380d7813538bfe))
3464
- - layout center dark bg fix ([982d912](https://github.com/awes-io/client/commit/982d91214ef2d580a488e2334b99ef3a957b6847))
3465
-
3466
- ### Features
3467
-
3468
- - add icon color for nav menu ([40df40a](https://github.com/awes-io/client/commit/40df40a1bf8ef162d972400c7b713a9709f8d3f3))
3469
-
3470
- ## [1.83.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.83.0...@awes-io/ui@1.83.1) (2020-05-20)
3471
-
3472
- ### Bug Fixes
3473
-
3474
- - migrate text in for ([5e74c94](https://github.com/awes-io/client/commit/5e74c9487505fff1131a988a01c1a7c3eb74f898))
3475
-
3476
- # [1.83.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.82.2...@awes-io/ui@1.83.0) (2020-05-19)
3477
-
3478
- ### Bug Fixes
3479
-
3480
- - AwSelect search error ([3b3ef1b](https://github.com/awes-io/client/commit/3b3ef1b32004c1b5e2029416ee216a05f8e61e18))
3481
- - change hidden row value display logic ([89f7e49](https://github.com/awes-io/client/commit/89f7e4975cbe155dd487a18d8e381da27741c616))
3482
- - display table props value on mobile ([b13246c](https://github.com/awes-io/client/commit/b13246ca126eee41ccedc98442cd8dd6078283e1))
3483
- - update table hidden row value display logic ([8fa245a](https://github.com/awes-io/client/commit/8fa245ac9952e4a1ae2c6210d5e8ebf6c386b74e))
3484
-
3485
- ### Features
3486
-
3487
- - @awes-io/ui/nuxt add dark background config ([ed3f030](https://github.com/awes-io/client/commit/ed3f0306190de3e5cd64824d494cdeb83bce5dd7))
3488
- - add AwDashboardCard ([f310957](https://github.com/awes-io/client/commit/f31095798d22c23f5dc2173c9b2e89aa5d576d2f))
3489
- - add description to userpic ([a7d71b9](https://github.com/awes-io/client/commit/a7d71b9e993c7f10e4f24ad16d58da772b3b097f))
3490
-
3491
- ## [1.82.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.82.1...@awes-io/ui@1.82.2) (2020-05-15)
3492
-
3493
- ### Bug Fixes
3494
-
3495
- - image logo height ([8c46d0d](https://github.com/awes-io/client/commit/8c46d0d94d7e59f70e9562d536867514977c6b42))
3496
-
3497
- ## [1.82.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.82.0...@awes-io/ui@1.82.1) (2020-05-15)
3498
-
3499
- ### Bug Fixes
3500
-
3501
- - awpassword keypress fix ([87fcc32](https://github.com/awes-io/client/commit/87fcc32a482966e7edbedcf1678310756b45dd18))
3502
-
3503
- # [1.82.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.81.1...@awes-io/ui@1.82.0) (2020-05-15)
3504
-
3505
- ### Bug Fixes
3506
-
3507
- - update AwPassword paste logic ([f73a847](https://github.com/awes-io/client/commit/f73a8473da6638c1a3cee1121b0f4cc3698e5356))
3508
-
3509
- ### Features
3510
-
3511
- - add prefix and postfix slots ([6de7289](https://github.com/awes-io/client/commit/6de7289446928867f5746da23ed9339f9d4ee8e1))
3512
- - add prefix, postfix ([8144b85](https://github.com/awes-io/client/commit/8144b85d63115c50107507910af99cbea5323b90))
3513
- - move logo var to store index ([a346567](https://github.com/awes-io/client/commit/a346567b525679f0c48045cf56d50ed70473c4e1))
3514
- - remove spaces from AwPassword ([f66864e](https://github.com/awes-io/client/commit/f66864e530665b80e2ee315ae02fbca38dd1d020))
3515
-
3516
- ## [1.81.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.81.0...@awes-io/ui@1.81.1) (2020-05-15)
3517
-
3518
- ### Bug Fixes
3519
-
3520
- - example ([9fce3ee](https://github.com/awes-io/client/commit/9fce3eeaca28004ad48c0bddde0fd7270bb0c46f))
3521
-
3522
- # [1.81.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.80.0...@awes-io/ui@1.81.0) (2020-05-15)
3523
-
3524
- ### Features
3525
-
3526
- - add AwDashboardSection ([369e433](https://github.com/awes-io/client/commit/369e433f6afff6568840411f144d2dbf812e2d60))
3527
- - add AwDashboardSpeed ([f19d55d](https://github.com/awes-io/client/commit/f19d55d8b63c02fd2c7a84e60b62d8de98479f6f))
3528
- - add example layout - simple ([67a6a1b](https://github.com/awes-io/client/commit/67a6a1bbff8316f8a2f2da6ca616d3d119be2984))
3529
- - change AwLayoutSimple ([945c0dc](https://github.com/awes-io/client/commit/945c0dc9b7e0abf79d2da3aacd8029099b2dbff6))
3530
- - layout improvements ([466dab8](https://github.com/awes-io/client/commit/466dab83425738459823bc1eecac8a9092952186))
3531
- - take logo from store ([9226e35](https://github.com/awes-io/client/commit/9226e357a9c231549cdbd112797d4bfa843f79d7))
3532
-
3533
- # [1.80.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.79.0...@awes-io/ui@1.80.0) (2020-05-11)
3534
-
3535
- ### Bug Fixes
3536
-
3537
- - **dayjs:** upgrade default custom string plugin to new api ([b1141a9](https://github.com/awes-io/client/commit/b1141a9ca76ba85593660f79023a19cbf44f2ff5))
3538
- - name fix ([eacccd7](https://github.com/awes-io/client/commit/eacccd746f53656eb5e5460cd511ff2e61a1f431))
3539
-
3540
- ### Features
3541
-
3542
- - add AwDashboardDoughnut component ([68a894f](https://github.com/awes-io/client/commit/68a894fefcf0f359acf090449996dd898189d026))
3543
- - add AwDashboardProgress ([75ac8e0](https://github.com/awes-io/client/commit/75ac8e0a3f2158274efb6b621790fa66c631bbbe))
3544
- - add base component for DashboardDonut ([c8fd78f](https://github.com/awes-io/client/commit/c8fd78f8d42d899185f5f6abf8c2556d15b5da56))
3545
- - applying connection tester on axios network error ([64cb2fc](https://github.com/awes-io/client/commit/64cb2fc7558e3e2709151ced317b85041a06cf17))
3546
- - finish AwDashboardDoughnut ([65fce97](https://github.com/awes-io/client/commit/65fce97f71201d6fcde071738cda782bc7869c04))
3547
- - improve AwDashboardDoughnut ([7391a58](https://github.com/awes-io/client/commit/7391a5800fd92609605abfbf62994d3c11a251ce))
3548
-
3549
- # [1.79.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.78.3...@awes-io/ui@1.79.0) (2020-05-06)
3550
-
3551
- ### Features
3552
-
3553
- - added mdash for empty value ([bd3d5ae](https://github.com/awes-io/client/commit/bd3d5ae755d3b67f1bb97bdf08b12a3d54a6fa20))
3554
-
3555
- ## [1.78.3](https://github.com/awes-io/client/compare/@awes-io/ui@1.78.2...@awes-io/ui@1.78.3) (2020-05-05)
3556
-
3557
- ### Bug Fixes
3558
-
3559
- - removed icon for offline ([5a71f36](https://github.com/awes-io/client/commit/5a71f36f5ac9259f12edf45c3bfcb8b650b67839))
3560
-
3561
- ## [1.78.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.78.1...@awes-io/ui@1.78.2) (2020-05-05)
3562
-
3563
- ### Bug Fixes
3564
-
3565
- - added icon for notify ([357f5d9](https://github.com/awes-io/client/commit/357f5d9865dadfbcdb49d760c89240977989f8fd))
3566
-
3567
- ## [1.78.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.78.0...@awes-io/ui@1.78.1) (2020-05-05)
3568
-
3569
- ### Bug Fixes
3570
-
3571
- - added translation for off mode ([207c7ef](https://github.com/awes-io/client/commit/207c7ef0eb3b276830ea15cce505b9a058e60754))
3572
-
3573
- # [1.78.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.77.3...@awes-io/ui@1.78.0) (2020-05-05)
3574
-
3575
- ### Features
3576
-
3577
- - **offline:** show offline notification ([a4c6986](https://github.com/awes-io/client/commit/a4c69863b542c5ed0e571c8e4ceaba13b7674c39))
3578
-
3579
- ## [1.77.3](https://github.com/awes-io/client/compare/@awes-io/ui@1.77.2...@awes-io/ui@1.77.3) (2020-05-05)
3580
-
3581
- ### Bug Fixes
3582
-
3583
- - updated brand color ([1fb5d15](https://github.com/awes-io/client/commit/1fb5d1574b9027a1b3f9c9cdea8fd7bd97f989ff))
3584
-
3585
- ## [1.77.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.77.1...@awes-io/ui@1.77.2) (2020-05-05)
3586
-
3587
- ### Bug Fixes
3588
-
3589
- - changed brancd color ([b55734f](https://github.com/awes-io/client/commit/b55734f046d0216444261a6a1ba5bceea083cb14))
3590
-
3591
- ## [1.77.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.77.0...@awes-io/ui@1.77.1) (2020-05-05)
3592
-
3593
- ### Bug Fixes
3594
-
3595
- - AwSelect improvements ([840c551](https://github.com/awes-io/client/commit/840c5517d9d072c9902165d8abff963d1f4f22f3))
3596
-
3597
- # [1.77.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.76.0...@awes-io/ui@1.77.0) (2020-05-05)
3598
-
3599
- ### Bug Fixes
3600
-
3601
- - **aw-slider:** allow scroll on touchpad ([8648101](https://github.com/awes-io/client/commit/86481014e600dfdabc04f6303da860e88cfc2307))
3602
- - AwDropdown z-index fix ([68c6689](https://github.com/awes-io/client/commit/68c6689d4157e8b1cda943ef1cc8f0e58f29a790))
3603
- - AwToggler overflow bug ([f268787](https://github.com/awes-io/client/commit/f2687870c169edb90896e8dbc1a5814bb0181e44))
3604
- - fix AwButtonNav styles ([dbecca9](https://github.com/awes-io/client/commit/dbecca943115dc8aa496817a1517a8332005fd31))
3605
- - update AwPagination ([7ea4abb](https://github.com/awes-io/client/commit/7ea4abb4463e45b5f3db16acb39675fbc7cc1b49))
3606
-
3607
- ### Features
3608
-
3609
- - **nuxt-auth:** casl added globally to manage permissions ([58b0175](https://github.com/awes-io/client/commit/58b0175c5809b37d2669d425a3702eb8840603ea))
3610
-
3611
- # [1.76.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.75.0...@awes-io/ui@1.76.0) (2020-04-29)
3612
-
3613
- ### Bug Fixes
3614
-
3615
- - **aw-calendar:** allow multiple dates in calendar ([0c7b486](https://github.com/awes-io/client/commit/0c7b486697b962302ff9e6ac07ff58e5ce2527e5))
3616
- - **aw-tel:** allow multiple vue-tel-input loaders ([d61bfbc](https://github.com/awes-io/client/commit/d61bfbcf937f696f5d9fff44dcb0c87c8fa4902c))
3617
- - **aw-uploader:** allow uppercase file extensions, clear errors before new upload ([edc4e49](https://github.com/awes-io/client/commit/edc4e499124981bc273d03fbc159b62e22a74f5a))
3618
- - autofill styles ([2df26e3](https://github.com/awes-io/client/commit/2df26e3555d49d9745d1a3d3a6fc0ad8dabb3590))
3619
- - AwTableRowHidden - do not show cell data if no field ([3b0271f](https://github.com/awes-io/client/commit/3b0271fb4ec5cc377aa2582678ff22eb0c24d2f1))
3620
- - change address button component ([0843482](https://github.com/awes-io/client/commit/0843482804254826c236182f9943b1dc6b416aa6))
3621
- - tab nav padding, focus ([4a5caf9](https://github.com/awes-io/client/commit/4a5caf9d8e153e5ef8e5a3c9547b80eab5a47486))
3622
-
3623
- ### Features
3624
-
3625
- - add resize listeners ([7804087](https://github.com/awes-io/client/commit/780408753d136ebec519b0836bbff9ebae0a4699))
3626
-
3627
- # [1.75.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.74.0...@awes-io/ui@1.75.0) (2020-04-16)
3628
-
3629
- ### Features
3630
-
3631
- - **aw-uploader:** media gallery example ([6306bd0](https://github.com/awes-io/client/commit/6306bd040f074999eb7e4d1928a5f0398c11fea3))
3632
-
3633
- # [1.74.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.73.0...@awes-io/ui@1.74.0) (2020-04-15)
3634
-
3635
- ### Features
3636
-
3637
- - add filled chip styles ([11200a9](https://github.com/awes-io/client/commit/11200a92e186c2635cdce81692a1637e920dbd34))
3638
- - added tooltip for awinfo ([12e062f](https://github.com/awes-io/client/commit/12e062f9c34cffefc23026c8ad127b55782e4e95))
3639
- - move icon options to config ([4ed0d87](https://github.com/awes-io/client/commit/4ed0d8797cbbe48845817372530a480efede74db))
3640
- - new styles for chipSelect ([8dedd3b](https://github.com/awes-io/client/commit/8dedd3b65918aac98138c7b5398f8083f26b13da))
3641
-
3642
- # [1.73.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.72.2...@awes-io/ui@1.73.0) (2020-04-10)
3643
-
3644
- ### Bug Fixes
3645
-
3646
- - change toggler to v-if ([61602b3](https://github.com/awes-io/client/commit/61602b39a285f111d73d7f3401375c27abf814ae))
3647
-
3648
- ### Features
3649
-
3650
- - add navbar menu ([b436cb2](https://github.com/awes-io/client/commit/b436cb27b464f7267117650f29aaa9ebe7ac3a31))
3651
- - add navbar menu ([869ba29](https://github.com/awes-io/client/commit/869ba292977f3d3e0e97dcc4e31597c5c458a3e6))
3652
- - fix navbar display ([b2cda27](https://github.com/awes-io/client/commit/b2cda276e498295c0edb21f6a5f5e9326d20fa6f))
3653
-
3654
- ## [1.72.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.72.1...@awes-io/ui@1.72.2) (2020-04-06)
3655
-
3656
- ### Bug Fixes
3657
-
3658
- - calendar docs ([e5716f2](https://github.com/awes-io/client/commit/e5716f2b2feb936deaae4d52d8f8ec0e0a5f8697))
3659
- - translation ([8476069](https://github.com/awes-io/client/commit/84760693aca842dc7f4cebb000d1f3ee90def34f))
3660
-
3661
- ## [1.72.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.72.0...@awes-io/ui@1.72.1) (2020-04-06)
3662
-
3663
- ### Bug Fixes
3664
-
3665
- - add textarea overflow ([28cf654](https://github.com/awes-io/client/commit/28cf654f641ba191d2c2001ad065ab2c0ffcf192))
3666
- - do not submit form if last element is textarea ([9b9403a](https://github.com/awes-io/client/commit/9b9403a99f117041d7e922e5e5485b5b4c58a081))
3667
-
3668
- # [1.72.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.71.0...@awes-io/ui@1.72.0) (2020-03-31)
3669
-
3670
- ### Bug Fixes
3671
-
3672
- - firefox scroll bug ([a2325f2](https://github.com/awes-io/client/commit/a2325f2cc9d35af102ff81778f169fe1c8e8f9d9))
3673
-
3674
- ### Features
3675
-
3676
- - add AwDashboardLine component ([0937399](https://github.com/awes-io/client/commit/09373996e30139df227463e2526078a06ea10041))
3677
- - add AwDashboardLine component ([75047bc](https://github.com/awes-io/client/commit/75047bc63c9d5ebbacdf43d378210703ee0317ef))
3678
- - add AwFetchData component ([28eddbd](https://github.com/awes-io/client/commit/28eddbd921f519a6622b5b17d2cdc5c47eb1510a))
3679
- - add new icons ([0276d26](https://github.com/awes-io/client/commit/0276d266f1deef9e6183c12b0d94460dca397a51))
3680
- - change watch-params mixin ([13620d1](https://github.com/awes-io/client/commit/13620d1f307069a05c58732329d2b8cf4ffb7ce5))
3681
- - push legend to bottom of card ([94743aa](https://github.com/awes-io/client/commit/94743aaebd22eb611dc5430e967372c38d9aec5e))
3682
- - remove reload interval prop ([b008a8e](https://github.com/awes-io/client/commit/b008a8e73bf11c3d7f0ada0de88618f6501e8764))
3683
- - update AwTableBuilder component ([879d1b9](https://github.com/awes-io/client/commit/879d1b93f0314dfdfd1c095192b56ed1f5658aa9))
3684
-
3685
- # [1.71.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.70.0...@awes-io/ui@1.71.0) (2020-03-16)
3686
-
3687
- ### Features
3688
-
3689
- - **calendar:** range selection added ([9eb81e8](https://github.com/awes-io/client/commit/9eb81e822bf6c26f0eafbc2a88c0264f7e1f3916))
3690
-
3691
- # [1.70.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.69.0...@awes-io/ui@1.70.0) (2020-03-13)
3692
-
3693
- ### Bug Fixes
3694
-
3695
- - **aw-button:** solid background on disabled buttons only for solid theme ([d532f98](https://github.com/awes-io/client/commit/d532f9851f67bbb7c9597e84f9e1abe46f1a5cb8))
3696
- - **aw-checkbox:** styles update ([6ed8a95](https://github.com/awes-io/client/commit/6ed8a95289a8e137c1c502fc8de72a34d98f0719))
3697
- - **aw-input:** consider field is empty if value is null ([5fa03b8](https://github.com/awes-io/client/commit/5fa03b822a647b16b41a5bbfcdd73a75c49b84c2))
3698
- - **aw-tab-nav, aw-button-nav:** active status check improved ([4fba0b7](https://github.com/awes-io/client/commit/4fba0b7c2bc7445abf1f43581662d461852bb2f9))
3699
- - **aw-tel:** update styles for dark mode ([1b0fea0](https://github.com/awes-io/client/commit/1b0fea0a768ef9eb886407ffd2479dd09ce91c49))
3700
- - **build:** explicitly export body-scroll-lock from es6 build ([f327ead](https://github.com/awes-io/client/commit/f327ead727f3d97201835832f9bb501bc6d8dac4))
3701
-
3702
- ### Features
3703
-
3704
- - AwTableBuilder add list slot ([f9cca42](https://github.com/awes-io/client/commit/f9cca42e0a05ccd2f0ead53b9653f9f7d4e6640b))
3705
- - **aw-modal:** body-scroll-lock integration ([40296ed](https://github.com/awes-io/client/commit/40296edf9c92759a7eaee58a0eefa3f2996f343d))
3706
- - update tooltip without destroying if possible ([038b704](https://github.com/awes-io/client/commit/038b7041cdd9069823a4c6f1c3015ad3bf4f06e3))
3707
-
3708
- # [1.69.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.68.1...@awes-io/ui@1.69.0) (2020-03-12)
3709
-
3710
- ### Bug Fixes
3711
-
3712
- - aw-select dropdown update in the next tick ([75addf7](https://github.com/awes-io/client/commit/75addf7c944cd28b87716ec36bd14cf4bca24340))
3713
- - header notification - center close button ([c476835](https://github.com/awes-io/client/commit/c476835467162b756c08c0f2999cbf78d00c535c))
3714
- - modal close button spacing fix ([3953c30](https://github.com/awes-io/client/commit/3953c301abd5ba586040f8daaf760ece1c2f694a))
3715
- - reduce timeout to 0 in async dropdown update on aw-select search ([c740f97](https://github.com/awes-io/client/commit/c740f9752e4355578de65df91c1bb2b418ee95d5))
3716
-
3717
- ### Features
3718
-
3719
- - **aw-select:** simple multiple select proposal ([524bcfd](https://github.com/awes-io/client/commit/524bcfd10a12a69a76bf23e0579231fd2330a074))
3720
- - change header notification min-height ([707a07e](https://github.com/awes-io/client/commit/707a07e8c11a56d4bd9a4b5e19811ffa3b1720e1))
3721
- - change modal content max-width ([ac0bc2f](https://github.com/awes-io/client/commit/ac0bc2fcac897465d5563c7b6ecb561abe59e1cf))
3722
-
3723
- ## [1.68.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.68.0...@awes-io/ui@1.68.1) (2020-03-11)
3724
-
3725
- ### Bug Fixes
3726
-
3727
- - **aw-select:** update dropdown on search ([3c138ac](https://github.com/awes-io/client/commit/3c138ac33493357bc2368f60dbb22108174abb28))
3728
-
3729
- # [1.68.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.67.0...@awes-io/ui@1.68.0) (2020-03-10)
3730
-
3731
- ### Bug Fixes
3732
-
3733
- - change modal title mobile padding ([35ee6ac](https://github.com/awes-io/client/commit/35ee6ac3efa70279fd6ec22c1acc8c11b622e9a6))
3734
- - improved paddings for radio buttons and toggle ([374b780](https://github.com/awes-io/client/commit/374b78003e68443cd61a266b169716d3c8e27bd1))
3735
- - modal mobile title truncate fix ([e116702](https://github.com/awes-io/client/commit/e116702a11d237c06c2c2a99ab0d6e2a1db5e055))
3736
-
3737
- ### Features
3738
-
3739
- - change mobile notification ([c302cc0](https://github.com/awes-io/client/commit/c302cc0369d2db06799b31a0cff417afae6e4a06))
3740
- - change modal styles ([a5c691a](https://github.com/awes-io/client/commit/a5c691a5d17d5ed870e17ffb1a1fc96880fd1a27))
3741
-
3742
- # [1.67.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.66.0...@awes-io/ui@1.67.0) (2020-03-09)
3743
-
3744
- ### Bug Fixes
3745
-
3746
- - remove unused code ([ab07ebc](https://github.com/awes-io/client/commit/ab07ebc3fb5c8b6bdd52cd4411d7f1f06cf1efca))
3747
- - surface color changed to lighter one ([bf23a63](https://github.com/awes-io/client/commit/bf23a63e108c0ac340cd4ed39a0910385652db5b))
3748
-
3749
- ### Features
3750
-
3751
- - add AwModal buttons slot ([3dbde2b](https://github.com/awes-io/client/commit/3dbde2bc9caca47801f3b0f15a115c126ed7af31))
3752
- - add default prop to orderable config ([176c135](https://github.com/awes-io/client/commit/176c135f851bc77130ddd77deb1d1801ea37970d))
3753
- - add meta info from nuxt-i18n-seo to layouts ([4bcae27](https://github.com/awes-io/client/commit/4bcae27040e8187846692e7367a0318577676128))
3754
- - add table column ordering ([5f62b6b](https://github.com/awes-io/client/commit/5f62b6bf436b6905fa07a2a94a02fadb159bd82a))
3755
- - arrow navigation for aw-context-menu and aw-chip-select ([12b12f6](https://github.com/awes-io/client/commit/12b12f6e2704f2a66e40af9bb1649478f9821cfa))
3756
- - change modal styles ([fcec5df](https://github.com/awes-io/client/commit/fcec5df16e09a58e7e69bbe756ddcd7f4db08410))
3757
- - dark theme switcher added ([014d817](https://github.com/awes-io/client/commit/014d81716bc668409279c3aac0418d547e0aa95f))
3758
-
3759
- # [1.66.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.65.0...@awes-io/ui@1.66.0) (2020-03-06)
3760
-
3761
- ### Bug Fixes
3762
-
3763
- - focus improvement fixes ([60e0eec](https://github.com/awes-io/client/commit/60e0eec34b6b3ded0250d5caf8991bf9df9d48ac))
3764
- - include footer height in aw-tel dropdown height ([69411fe](https://github.com/awes-io/client/commit/69411fe53c37915ed5600ff99489676ba0d91a42))
3765
- - reset aw-select error on value change ([0277739](https://github.com/awes-io/client/commit/0277739542fca2e64cf1228e2af89620eb715a3b))
3766
-
3767
- ### Features
3768
-
3769
- - add meta info from nuxt-i18n-seo to layouts ([d753964](https://github.com/awes-io/client/commit/d75396441dcb126a3aa557caf79793ed670e9fd1))
3770
-
3771
- # [1.65.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.64.0...@awes-io/ui@1.65.0) (2020-03-04)
3772
-
3773
- ### Features
3774
-
3775
- - new focus for button elements ([b3267a9](https://github.com/awes-io/client/commit/b3267a9d7854b81694d7f3ec6c137bd867178930))
3776
-
3777
- # [1.64.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.63.0...@awes-io/ui@1.64.0) (2020-03-04)
3778
-
3779
- ### Bug Fixes
3780
-
3781
- - aw-menu toggler arrow in right direction + do not open aw-menu-item without children ([998f2a9](https://github.com/awes-io/client/commit/998f2a9de998b838d86de02b3729139bacc69c38))
3782
- - aw-select improvements ([5277578](https://github.com/awes-io/client/commit/5277578854891d9c2d8e06bbe9a6d281c809f360))
3783
- - change modal desktop min-height ([f30eaa7](https://github.com/awes-io/client/commit/f30eaa7707413333f96eb369cc519cbc985e4da4))
3784
- - components markup finetuning ([b9274c3](https://github.com/awes-io/client/commit/b9274c329535b32c7a54da95be0ac762f5a1d107))
3785
- - consistent aw-tel styles ([e647c30](https://github.com/awes-io/client/commit/e647c30917ce35a9bf5ce4fc8afd9224e488e6cf))
3786
- - correct aw-menu min-height on mobile ([aa6bd78](https://github.com/awes-io/client/commit/aa6bd78659dfe7abea09cd12689d628c49fbf8eb))
3787
- - focus aw-select on error tooltip click ([6e568a2](https://github.com/awes-io/client/commit/6e568a2db69db3f6bf7745f0f272c405cef6ec55))
3788
- - modal remove subtitle prop ([5b5aa3f](https://github.com/awes-io/client/commit/5b5aa3f38f69cb51bfa3cf4e09d3fadceb904eb2))
3789
-
3790
- ### Features
3791
-
3792
- - add AwModal mobile styles ([26ff5ea](https://github.com/awes-io/client/commit/26ff5ea7d056b7e1ea3b0d2488a88a3a61a38390))
3793
- - add header notifications to AwLAyoutDefault ([b5b894a](https://github.com/awes-io/client/commit/b5b894a23f415f7c81818b463a6fb97af490eb19))
3794
- - change modal styles ([f1cfaae](https://github.com/awes-io/client/commit/f1cfaaebfa23ed8cf1120fd880a73d9ec47d2ece))
3795
- - update modal styles ([cff78db](https://github.com/awes-io/client/commit/cff78db01146dcb9dca526237ec551024f4ee03a))
3796
-
3797
- # [1.63.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.62.0...@awes-io/ui@1.63.0) (2020-03-02)
3798
-
3799
- ### Bug Fixes
3800
-
3801
- - cursor pointer for error tooltip and prevent switch in aw-shitcher ([f6ac099](https://github.com/awes-io/client/commit/f6ac099d2cb5db64f5071ece37f0483bc878ae08))
3802
- - fixed positioning calculations in aw-slider ([cc89b6a](https://github.com/awes-io/client/commit/cc89b6a26bf0ad9c2ed9012167a649c7353a47d1))
3803
-
3804
- ### Features
3805
-
3806
- - change dropdown button padding ([65f7b46](https://github.com/awes-io/client/commit/65f7b46f0486e4cd91b88d99de742e85244e66c1))
3807
-
3808
- # [1.62.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.61.1...@awes-io/ui@1.62.0) (2020-02-29)
3809
-
3810
- ### Features
3811
-
3812
- - aw-menu collapse behavior reworked ([506fe16](https://github.com/awes-io/client/commit/506fe1674696e487f88e9693089de370da121609))
3813
-
3814
- ## [1.61.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.61.0...@awes-io/ui@1.61.1) (2020-02-27)
3815
-
3816
- ### Bug Fixes
3817
-
3818
- - added git head in package json ([32c1725](https://github.com/awes-io/client/commit/32c1725093074da1851efdc373222a660d8da0a6))
3819
-
3820
- # [1.61.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.59.0...@awes-io/ui@1.61.0) (2020-02-27)
3821
-
3822
- ### Bug Fixes
3823
-
3824
- - nuxt config ([186ae9e](https://github.com/awes-io/client/commit/186ae9e319be2290e97868cb0686ee0d171e8a41))
3825
- - propper positioning of error tooltip ([875d161](https://github.com/awes-io/client/commit/875d161e63086571673547cd467862fbd88ea0c7))
3826
-
3827
- ### Features
3828
-
3829
- - add light color ([8d28bed](https://github.com/awes-io/client/commit/8d28bedd6c398a197fe65aa25a11d5d9c2b08ae5))
3830
- - add new styles to AwDropdown ([0237c4a](https://github.com/awes-io/client/commit/0237c4a8962d7a00ca8e863fecbdbe938ea02d60))
3831
- - add nuxt-profile ([346c4a2](https://github.com/awes-io/client/commit/346c4a29096685af4b4da2de23c0fcb1f8cb92f7))
3832
- - change AwDropdown, AwChip styles ([d645228](https://github.com/awes-io/client/commit/d6452281ba00e4000d236ec030b83a226223646e))
3833
- - change user menu design ([2a47b40](https://github.com/awes-io/client/commit/2a47b4002824c6dbe88f90820e8d08aefa6db24d))
3834
- - expanded prop for menu item ([3180047](https://github.com/awes-io/client/commit/3180047f627177fb3a9b6dec59d3a2729d703c06))
3835
- - **ui:** aw-button-nav styles upgraded, same comonent as aw-tab-nav ([2400501](https://github.com/awes-io/client/commit/2400501fae59eb3bb00e27322eeede2ec5a6ebbf))
3836
-
3837
- # [1.60.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.59.0...@awes-io/ui@1.60.0) (2020-02-27)
3838
-
3839
- ### Bug Fixes
3840
-
3841
- - nuxt config ([67b5bfa](https://github.com/awes-io/client/commit/67b5bfae287ab0bb7cff61fb97b92738d99e52f6))
3842
- - propper positioning of error tooltip ([875d161](https://github.com/awes-io/client/commit/875d161e63086571673547cd467862fbd88ea0c7))
3843
-
3844
- ### Features
3845
-
3846
- - add new styles to AwDropdown ([0237c4a](https://github.com/awes-io/client/commit/0237c4a8962d7a00ca8e863fecbdbe938ea02d60))
3847
- - add nuxt-profile ([346c4a2](https://github.com/awes-io/client/commit/346c4a29096685af4b4da2de23c0fcb1f8cb92f7))
3848
- - change AwDropdown, AwChip styles ([d645228](https://github.com/awes-io/client/commit/d6452281ba00e4000d236ec030b83a226223646e))
3849
- - change user menu design ([2a47b40](https://github.com/awes-io/client/commit/2a47b4002824c6dbe88f90820e8d08aefa6db24d))
3850
- - expanded prop for menu item ([3180047](https://github.com/awes-io/client/commit/3180047f627177fb3a9b6dec59d3a2729d703c06))
3851
- - **ui:** aw-button-nav styles upgraded, same comonent as aw-tab-nav ([2400501](https://github.com/awes-io/client/commit/2400501fae59eb3bb00e27322eeede2ec5a6ebbf))
3852
-
3853
- # [1.59.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.58.0...@awes-io/ui@1.59.0) (2020-02-22)
3854
-
3855
- ### Bug Fixes
3856
-
3857
- - **ui:** AwTable do not call click:row if clicked on button or link ([055eb91](https://github.com/awes-io/client/commit/055eb91096350366de96a821e694766f4316c59b))
3858
- - **ui:** fix AwAvatar shrink in table ([615d7e8](https://github.com/awes-io/client/commit/615d7e8143fcb14851fb4ba5443af8cc8dd6613b))
3859
- - **ui:** fix AwPage headline animation ([7c0245e](https://github.com/awes-io/client/commit/7c0245e54e495a2dfd664615729776d9e24ecde2))
3860
- - **ui:** fix AwSearch close button focus outline ([7aee3ed](https://github.com/awes-io/client/commit/7aee3ed444d3c3cec9e52eff101df9424d6d1b28))
3861
-
3862
- ### Features
3863
-
3864
- - **ui:** notifications added ([fe0bb05](https://github.com/awes-io/client/commit/fe0bb05e7908b53ec265f40bb4e9751bddd633ce))
3865
-
3866
- # [1.58.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.57.1...@awes-io/ui@1.58.0) (2020-02-21)
3867
-
3868
- ### Features
3869
-
3870
- - **nuxt-i18n:** send accept language header ([be6cef1](https://github.com/awes-io/client/commit/be6cef1f6d21b6c543b526df11dcae559d455c35))
3871
-
3872
- ## [1.57.1](https://github.com/awes-io/client/compare/@awes-io/ui@1.57.0...@awes-io/ui@1.57.1) (2020-02-21)
3873
-
3874
- ### Bug Fixes
3875
-
3876
- - **ui:** fix slider in safari ([c51ed9e](https://github.com/awes-io/client/commit/c51ed9e3e20108e5253e071c5788631a6ce00feb))
3877
-
3878
- # [1.57.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.56.0...@awes-io/ui@1.57.0) (2020-02-21)
3879
-
3880
- ### Bug Fixes
3881
-
3882
- - **ui:** tooltip design upgrade ([5af14fc](https://github.com/awes-io/client/commit/5af14fc8652621e3240f68da33b8d2a152c4d0af))
3883
-
3884
- ### Features
3885
-
3886
- - **ui:** tooltip directive for erors ([1ae459c](https://github.com/awes-io/client/commit/1ae459cf5a57d6438108deb6aeab4fd0609dbde9))
3887
-
3888
- # [1.56.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.55.0...@awes-io/ui@1.56.0) (2020-02-20)
3889
-
3890
- ### Bug Fixes
3891
-
3892
- - **ui:** layout styles fix for tablet ([13271e7](https://github.com/awes-io/client/commit/13271e7e7360795d8627f8514e225c69cd905aa7))
3893
- - **ui:** prevent drag in slider ([0b59202](https://github.com/awes-io/client/commit/0b592026d915a577d9dd733b68d46b9d947edf0b))
3894
-
3895
- ### Features
3896
-
3897
- - **ui:** aw-modal can optionally disable get param ([e1a18e3](https://github.com/awes-io/client/commit/e1a18e3eaa6fb6ce3c93f6170d95e6ecf602c4c7))
3898
- - **ui:** scroll for tabs ([b725062](https://github.com/awes-io/client/commit/b7250624d65830a7ac8acd45056ae4e84a0001a9))
3899
- - **ui:** tooltip directive added ([11271a6](https://github.com/awes-io/client/commit/11271a613f6432dc3efa68071e33c649532b2529))
3900
-
3901
- # [1.55.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.54.0...@awes-io/ui@1.55.0) (2020-02-18)
3902
-
3903
- ### Features
3904
-
3905
- - handle any format in aw-calendar-days ([206eaea](https://github.com/awes-io/client/commit/206eaea03c6f554d67c1f1b6f1b381cec56ec837))
3906
-
3907
- # [1.54.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.53.0...@awes-io/ui@1.54.0) (2020-02-18)
3908
-
3909
- ### Features
3910
-
3911
- - **ui:** close dropdown on action by defalt ([67d9723](https://github.com/awes-io/client/commit/67d972351aa4aef0230f9017a796a0306006238d))
3912
- - **ui:** export aw-calendar-days as global component ([580c836](https://github.com/awes-io/client/commit/580c836d54830021e6b0e1ff7ef41c2c712cf6b3))
3913
-
3914
- # [1.53.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.52.2...@awes-io/ui@1.53.0) (2020-02-17)
3915
-
3916
- ### Bug Fixes
3917
-
3918
- - delete icons.css ([c2aece0](https://github.com/awes-io/client/commit/c2aece0b073ebd1385ae0427cfb49cc17891d508))
3919
- - pagination dropdown upgrade ([0494d46](https://github.com/awes-io/client/commit/0494d46c37a20a0fd102035f172120112a361311))
3920
- - **ui:** aw-multiblock-builder creates models snapshop on init ([7a4ba12](https://github.com/awes-io/client/commit/7a4ba12fd424e250487d17dc2e1d96024d3d6fa1))
3921
-
3922
- ### Features
3923
-
3924
- - **ui:** add AwContextMenu component ([bce3f4e](https://github.com/awes-io/client/commit/bce3f4ee811254e6447962677674e874aa949363))
3925
- - **ui:** aw-dropdown-button added ([8b6bea0](https://github.com/awes-io/client/commit/8b6bea0531ec4f33d77cfd1c338b22c8d733d49f))
3926
- - **ui:** AwButton add active style ([e4e987b](https://github.com/awes-io/client/commit/e4e987b2f1010692aa5d64438d8061accb77c018))
3927
- - **ui:** AwButton remove ripple effect, add loading state ([2028101](https://github.com/awes-io/client/commit/20281019119efbf233a852392fe31c458e4c49f3))
3928
- - **ui:** AwTableBuilder - add dropdown slot ([730c99b](https://github.com/awes-io/client/commit/730c99bd8766f5efe37831177e165bb29ed84194))
3929
- - **ui:** update popper.js ([784eefb](https://github.com/awes-io/client/commit/784eefbdfbddb858a63fd0f794ec997e4c94a596))
3930
-
3931
- ## [1.52.2](https://github.com/awes-io/client/compare/@awes-io/ui@1.52.0...@awes-io/ui@1.52.2) (2020-02-14)
3932
-
3933
- ### Bug Fixes
3934
-
3935
- - fixed gitignore ([9825443](https://github.com/awes-io/client/commit/98254431a2d9a6aab4f80d1dafd8420d2ccb2522))
3936
- - removed icon.css, fixed brancd color ([fba3e51](https://github.com/awes-io/client/commit/fba3e51fd80a128696bd6543216662a1b1e6aceb))
3937
-
3938
- # [1.52.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.51.0...@awes-io/ui@1.52.0) (2020-02-13)
3939
-
3940
- ### Features
3941
-
3942
- - **ui:** add new icons ([d70585b](https://github.com/awes-io/client/commit/d70585b07e1f81c543a38339035193d35a2dd42c))
3943
- - **ui:** add new icons, colors ([749cdd1](https://github.com/awes-io/client/commit/749cdd1903dbb7a2d30f50dbc18edfceb03fda7f))
3944
-
3945
- # [1.51.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.50.0...@awes-io/ui@1.51.0) (2020-02-13)
3946
-
3947
- ### Bug Fixes
3948
-
3949
- - **ui:** remove unused code ([b9a71a8](https://github.com/awes-io/client/commit/b9a71a8e42c9a6c9430aa6ee57b25927f80d33a2))
3950
- - table builder was improved ([9836f21](https://github.com/awes-io/client/commit/9836f21158a784d9b3b940046cc41f7eb4384515))
3951
-
3952
- ### Features
3953
-
3954
- - **ui:** add AwBadge component ([2642b77](https://github.com/awes-io/client/commit/2642b7741cb6f236a006263f37501b49ea24aaec))
3955
- - **ui:** add AwBadge to AwTabNav ([cddad21](https://github.com/awes-io/client/commit/cddad215ca7180d93612d8d97f0222c06bdf4c44))
3956
- - **ui:** add AwSwitcher click handler ([576cac9](https://github.com/awes-io/client/commit/576cac98bb11a54e6987495bf0e1b8f2282fa68c))
3957
- - **ui:** add comma class ([ffd9e47](https://github.com/awes-io/client/commit/ffd9e47435fcac5bfc787391903f04024d9d1cc5))
3958
- - **ui:** AwAvatar add new colors, icon ([b23e4bd](https://github.com/awes-io/client/commit/b23e4bd0e2734ec3c3934077dfa4b97fc995cf22))
3959
- - **ui:** AwAvatar make text and icons responsive ([93f4905](https://github.com/awes-io/client/commit/93f4905749b90fd7c7253bab4549736fe7de8ac3))
3960
- - **ui:** AwAvatar remove color, change avatar image ([115adf4](https://github.com/awes-io/client/commit/115adf47cea6fc6ffe6ad2db8359cdbc1fec7c43))
3961
-
3962
- # [1.50.0](https://github.com/awes-io/client/compare/@awes-io/ui@1.49.0...@awes-io/ui@1.50.0) (2020-02-07)
3963
-
3964
- ### Bug Fixes
3965
-
3966
- - **ui:** AwTableBuilder replace empty-filter slot with empty-filter-container slot ([2f8fc42](https://github.com/awes-io/client/commit/2f8fc42d35cecee6076b84d444ddba5a99370042))
3967
-
3968
- ### Features
3969
-
3970
- - **ui:** add empty-filter slot to AwTableBuilder ([7b02daa](https://github.com/awes-io/client/commit/7b02daa302cd824235781cc7322216591a2c35e6))
3971
-
3972
- # [1.49.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.48.1...@awes-io/ui@1.49.0) (2020-02-06)
3973
-
3974
- ### Bug Fixes
3975
-
3976
- - **datejs:** package added to repository ([f2dfcb4](https://git.awescode.com/awes-io/ui/commits/f2dfcb4e9163afde10617d4a20b58c502ba761be))
3977
- - **ui:** aw-avatar fix empty name ([d2b9d5a](https://git.awescode.com/awes-io/ui/commits/d2b9d5afb5a2bb6c10d1171a90985b3290db9ca6))
3978
- - **ui:** change AwToggler animation ([1b4e092](https://git.awescode.com/awes-io/ui/commits/1b4e0926e904e0c418306095c13511cef9c3ceb8))
3979
- - **ui:** change AwToggler styles ([ae3ae6a](https://git.awescode.com/awes-io/ui/commits/ae3ae6a62e340e1599c4e029aa7731415a62b104))
3980
- - **ui:** fix focus on enter in aw-multi-block-buider ([3e1db0d](https://git.awescode.com/awes-io/ui/commits/3e1db0dea9b67bf27afe33cd1a493dcd3b2a098d))
3981
-
3982
- ### Features
3983
-
3984
- - **ui:** AwToggler component added ([7fde282](https://git.awescode.com/awes-io/ui/commits/7fde2821908f9123345b0b50598d5fc83f131e75))
3985
- - **ui:** AwToggler emit open\close events ([730ac01](https://git.awescode.com/awes-io/ui/commits/730ac01209effd1266abc7ba32cdbde3ed4db991))
3986
-
3987
- ## [1.48.1](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.48.0...@awes-io/ui@1.48.1) (2020-02-03)
3988
-
3989
- ### Bug Fixes
3990
-
3991
- - changed aw-userpic in profile button ([b1bbadd](https://git.awescode.com/awes-io/ui/commits/b1bbadd5bdbbf57f82d8df7f05cabab45e1095e1))
3992
-
3993
- # [1.48.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.47.1...@awes-io/ui@1.48.0) (2020-02-03)
3994
-
3995
- ### Bug Fixes
3996
-
3997
- - **ui:** fix avatar path if null ([8491197](https://git.awescode.com/awes-io/ui/commits/84911979f43e22520e8bd3e99eacd47ed130e459))
3998
-
3999
- ### Features
4000
-
4001
- - **ui:** global key bindings for search and pagination ([f49c660](https://git.awescode.com/awes-io/ui/commits/f49c660053e822a6b2d6da1ecfefd316e9a1c831))
4002
-
4003
- ## [1.47.1](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.47.0...@awes-io/ui@1.47.1) (2020-02-03)
4004
-
4005
- ### Bug Fixes
4006
-
4007
- - **ui:** css fixes ([23a6f20](https://git.awescode.com/awes-io/ui/commits/23a6f2015368403965f4703143d2bdeec7452c1b))
4008
- - **ui:** eslint config for ui subfolder ([f3760fe](https://git.awescode.com/awes-io/ui/commits/f3760fe5092e2b185c713f0d0c86c5508fc30b8e))
4009
- - **vue-mc:** path typo fix in package.json ([900d95d](https://git.awescode.com/awes-io/ui/commits/900d95d6330a87450dc7dd4ce66b6f78b1511ae7))
4010
-
4011
- # [1.47.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.46.0...@awes-io/ui@1.47.0) (2020-01-31)
4012
-
4013
- ### Bug Fixes
4014
-
4015
- - **ui:** desktop avatar is outlined on default layout ([335b3cf](https://git.awescode.com/awes-io/ui/commits/335b3cf6f64d7e88d94cf11e566aad71033bc4c5))
4016
- - removed condition to check src as a undefined string ([c6570f4](https://git.awescode.com/awes-io/ui/commits/c6570f44ad37219545baeb9bbcbcc56234463fab))
4017
-
4018
- ### Features
4019
-
4020
- - **ui:** default layout design fixes ([bc25a72](https://git.awescode.com/awes-io/ui/commits/bc25a72a07765a3ecb5d13da840b281a4509b034))
4021
- - **ui:** enter click moves to next field in aw-multi-block-builder ([f64ecd7](https://git.awescode.com/awes-io/ui/commits/f64ecd723e06f795f348a9acf78f1cc33f10c648))
4022
-
4023
- # [1.46.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.45.1...@awes-io/ui@1.46.0) (2020-01-30)
4024
-
4025
- ### Bug Fixes
4026
-
4027
- - changed style for inon in aw-chip-select ([b59e781](https://git.awescode.com/awes-io/ui/commits/b59e781ff0bdf92db445e3337fc0e0d8ce50fe82))
4028
- - removed deprecated package ([5690409](https://git.awescode.com/awes-io/ui/commits/56904098b874b569d17cd874df7f212224fe5ff7))
4029
-
4030
- ### Features
4031
-
4032
- - improved userpic with different cases ([51942ef](https://git.awescode.com/awes-io/ui/commits/51942efb9a3b3f3bfef3fa16075ad2aef1c759e5))
4033
- - **AWP-28:** made component AwAvatar ([931021c](https://git.awescode.com/awes-io/ui/commits/931021c4d9fb9907e24edbc5e4837dc09d18f742))
4034
-
4035
- ## [1.45.1](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.45.0...@awes-io/ui@1.45.1) (2020-01-30)
4036
-
4037
- ### Bug Fixes
4038
-
4039
- - **ui:** aw-chip-select - no scroll, no click event bubble ([553af14](https://git.awescode.com/awes-io/ui/commits/553af14fb8f736ec51441f8954d73e9aa72347b8))
4040
- - **ui:** table behavior finetuning ([b08bcc7](https://git.awescode.com/awes-io/ui/commits/b08bcc7cc0c22cbbe65a5083f66070bff47db7e9))
4041
-
4042
- # [1.45.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.44.1...@awes-io/ui@1.45.0) (2020-01-30)
4043
-
4044
- ### Features
4045
-
4046
- - **ui:** aw-chip-select component added ([ed985cb](https://git.awescode.com/awes-io/ui/commits/ed985cbabb2679bc2ab4df62f626e11cf6a912fd))
4047
-
4048
- ## [1.44.1](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.44.0...@awes-io/ui@1.44.1) (2020-01-29)
4049
-
4050
- ### Bug Fixes
4051
-
4052
- - **ui:** send arguments to row:click listener instead of object ([0971d82](https://git.awescode.com/awes-io/ui/commits/0971d82af0ce3a8be7a2a467020ab33e66aa9e96))
4053
-
4054
- # [1.44.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.43.0...@awes-io/ui@1.44.0) (2020-01-29)
4055
-
4056
- ### Features
4057
-
4058
- - added breadcrumb for AwPage ([bca914d](https://git.awescode.com/awes-io/ui/commits/bca914dffa6bb6b0ba9aa47b2a02fec460876439))
4059
-
4060
- # [1.43.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.42.3...@awes-io/ui@1.43.0) (2020-01-29)
4061
-
4062
- ### Bug Fixes
4063
-
4064
- - added translation for empty block ([48b9676](https://git.awescode.com/awes-io/ui/commits/48b96763fc30f2230336892a6d73822fa5421792))
4065
- - improvements for table ([166d3d9](https://git.awescode.com/awes-io/ui/commits/166d3d9e4f89b345fc54585bafa596791877197b))
4066
-
4067
- ### Features
4068
-
4069
- - added empty block for table; svg icons ([161b7dc](https://git.awescode.com/awes-io/ui/commits/161b7dce4393da093bbe711cb31fcaa0e1a9240c))
4070
- - added validator for defaultHeight prop ([e8b5add](https://git.awescode.com/awes-io/ui/commits/e8b5addff3cc213c6945b181f098ab251441865f))
4071
- - **awp-1:** added padding in navbar avatar ([59dcf60](https://git.awescode.com/awes-io/ui/commits/59dcf602555a452f5706e1e3e589e845df7bf5b6))
4072
-
4073
- ## [1.42.3](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.42.2...@awes-io/ui@1.42.3) (2020-01-29)
4074
-
4075
- ### Bug Fixes
4076
-
4077
- - tailwind borderRadius section ([53ae5d4](https://git.awescode.com/awes-io/ui/commits/53ae5d40bb9cb6edcae73d9daa2cb3ac4b652c94))
4078
-
4079
- ## [1.42.2](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.42.1...@awes-io/ui@1.42.2) (2020-01-29)
4080
-
4081
- ### Bug Fixes
4082
-
4083
- - updated package.json ([e96ddea](https://git.awescode.com/awes-io/ui/commits/e96ddea2bd8a306ffcb3f2a47744e7af6ae924b0))
4084
-
4085
- ## [1.42.1](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.42.0...@awes-io/ui@1.42.1) (2020-01-29)
4086
-
4087
- ### Bug Fixes
4088
-
4089
- - updated package.json ([374c7bf](https://git.awescode.com/awes-io/ui/commits/374c7bf218a8f7d9825de6145e3b9106a7cde3a4))
4090
-
4091
- # [1.42.0](https://git.awescode.com/awes-io/ui/compare/@awes-io/ui@1.41.0...@awes-io/ui@1.42.0) (2020-01-29)
4092
-
4093
- ### Bug Fixes
4094
-
4095
- - aw-multi-block-builder passed remove method in slots ([7464fbc](https://git.awescode.com/awes-io/ui/commits/7464fbc6b0f3050b8dbe6b33bd206b752a2a3ca1))
4096
- - **ui:** aw-form submits on command+enter key press ([0c4a12e](https://git.awescode.com/awes-io/ui/commits/0c4a12e0e9cf7489dda1287c5a78618d0db0326a))
4097
-
4098
- ### Features
4099
-
4100
- - **ui:** aw-multi-block-builder fetches collection only if fetch prop is true ([eac0d2f](https://git.awescode.com/awes-io/ui/commits/eac0d2fb88b431533de5460fe329c39a3da51e2b))
4101
- - **vue-mc:** package added ([dc8cfe3](https://git.awescode.com/awes-io/ui/commits/dc8cfe379fc31fec9e1693bd3cc76ac896e94163))
4102
-
4103
- # 1.41.0 (2020-01-28)
4104
-
4105
- ### Bug Fixes
4106
-
4107
- - buttons slot ([87af7d9](https://git.awescode.com/awes-io/ui/commits/87af7d9c7e1b4c7673409faa62ce7070f2509821))
4108
- - updated gitlab ([623446f](https://git.awescode.com/awes-io/ui/commits/623446ffe88da8e4efe703e1d33464c41791e4ed))
4109
-
4110
- ### Features
4111
-
4112
- - added pkg release system ([5fa32a3](https://git.awescode.com/awes-io/ui/commits/5fa32a37309dd12601ecc9382730683db9fafbf9))
4113
-
4114
- # 1.40.0 (2020-01-28)
4115
-
4116
- ### Bug Fixes
4117
-
4118
- - **awp-2:** refreshed doc for AwContentWrapper ([4142031](https://git.awescode.com/awes-io/ui/commits/41420313761ca6c0e40752110ee942c4067aea0b))
4119
- - **ui:** aw-calendar shows the month of provided date ([0b7d495](https://git.awescode.com/awes-io/ui/commits/0b7d495034cb2515386f27205cd9cdaf7b216b22))
4120
- - **ui:** aw-form skips disabled fields on enter click and leaves select opened ([8c77f88](https://git.awescode.com/awes-io/ui/commits/8c77f888c72054868d53d199089f1975efe410bd))
4121
- - removed release deploy to git command ([63cf57f](https://git.awescode.com/awes-io/ui/commits/63cf57f666f617f11d1ee0be05e69a04659c3bc1))
4122
-
4123
- ### Features
4124
-
4125
- - **awp-1:** made minor fixes ([bdd6fd6](https://git.awescode.com/awes-io/ui/commits/bdd6fd60c7a14ef342f4478100c770a44361f689))
4126
- - **ui:** calendar improvement ([b16d35f](https://git.awescode.com/awes-io/ui/commits/b16d35f5184edc964fa00c3b835fe53cef14636c))
4127
- - updated docs; deploy system ([92032c5](https://git.awescode.com/awes-io/ui/commits/92032c54a5364d8b66bc477e0827f06673ab29cc))
4128
-
4129
- # 1.38.0 (2020-01-27)
4130
-
4131
- ### Bug Fixes
4132
-
4133
- - **awp-2:** made component AwContentWrapper ([ebea23d](https://git.awescode.com/awes-io/ui/commits/ebea23d80478a95d8e231dbe253354ba2668b64d))
4134
- - **translations:** loaded langs fix ([d9f5803](https://git.awescode.com/awes-io/ui/commits/d9f5803138cd1c82321a8b28cce64babab52823c))
4135
-
4136
- ### Features
4137
-
4138
- - **ui:** aw-form listener to switch fields and send form ([85fac02](https://git.awescode.com/awes-io/ui/commits/85fac029ddb7c98dbe2673d2dc2c1076a0ee2c8b))
4139
- - **ui:** aw-multi-block-builder added ([f8a1e0d](https://git.awescode.com/awes-io/ui/commits/f8a1e0df35cfc0ac84c9a162b27a1ed39b57279a))
4140
-
4141
- # 1.37.0 (2020-01-23)
4142
-
4143
- ### Bug Fixes
4144
-
4145
- - updated fonts ([13392a0](https://git.awescode.com/awes-io/ui/commits/13392a02b0a37f8d8339a5ee129c04ad54c63a74))
4146
- - **aws-671:** fixed padding of AwTel component ([a4a6dee](https://git.awescode.com/awes-io/ui/commits/a4a6deec6dd736ee2c9d9805503437f6a85b7f35))
4147
- - **ui:** aw-table responsiveness works on ios ([82719eb](https://git.awescode.com/awes-io/ui/commits/82719eb20f853a46043c9b5d1417a1016af11291))
4148
-
4149
- ### Features
4150
-
4151
- - added generator for documentation ([dbba524](https://git.awescode.com/awes-io/ui/commits/dbba524fdb6858bd1541997580b6635ac91a19d7))
4152
-
4153
- ## 1.36.2 (2020-01-14)
4154
-
4155
- ### Bug Fixes
4156
-
4157
- - **aws-671:** fixed LayoutFrameCenter ([ffb6fe2](https://git.awescode.com/awes-io/ui/commits/ffb6fe2648af3a713e6970bb2b2ff3f19d78a2bf))
4158
-
4159
- ## 1.36.1 (2020-01-14)
4160
-
4161
- # 1.36.0 (2020-01-14)
4162
-
4163
- ### Bug Fixes
4164
-
4165
- - **aws-671:** fixed package.json files ([4270b60](https://git.awescode.com/awes-io/ui/commits/4270b605de47f7dba55e5578b67b028a2cd62b8d))
4166
-
4167
- ## 1.35.1 (2020-01-09)
4168
-
4169
- ### Bug Fixes
4170
-
4171
- - updated fonts ([2c913e5](https://git.awescode.com/awes-io/ui/commits/2c913e5985e5c7b20b81263a52d88f25c694a272))
4172
-
4173
- # 1.35.0 (2020-01-09)
4174
-
4175
- ### Bug Fixes
4176
-
4177
- - add build-icons command to dev ([f340c2f](https://git.awescode.com/awes-io/ui/commits/f340c2f82cb5ac1a445518a4f8255d41edaf18f5))
4178
- - fixed select autocomplete event ([576313f](https://git.awescode.com/awes-io/ui/commits/576313fd88e60c47d240b5786530bb3cf9b82d6a))
4179
- - move vertical align class names to validator for purgecss ([de004f9](https://git.awescode.com/awes-io/ui/commits/de004f9147a486765364a60aed656c08770ba04d))
4180
-
4181
- ### Features
4182
-
4183
- - **aw-table-builder:** use limit param from response ([017a758](https://git.awescode.com/awes-io/ui/commits/017a758bea1741a8e17f264256a9c1b3babc1105))
4184
- - **aws-639:** made vertical align ([b26dea2](https://git.awescode.com/awes-io/ui/commits/b26dea24ff00a5f1eae9ac684ac96616633a1c9c))
4185
- - **aws-671:** fixed prop method validation of AwForm ([403f3cf](https://git.awescode.com/awes-io/ui/commits/403f3cf3c9e2067d39139488af12c2c55fd450f6))
4186
- - **aws-671:** refreshed AwSearch ([0140d46](https://git.awescode.com/awes-io/ui/commits/0140d46e984e5e7742833214ed493d8784098e73))
4187
- - added a new component AwInfo ([1fd0998](https://git.awescode.com/awes-io/ui/commits/1fd099889f0635a375c5665429b93b408fef1075))
4188
- - **aws-671:** refreshed AwSearch ([9f3a213](https://git.awescode.com/awes-io/ui/commits/9f3a2136dfa53dab519da7fbe821fbece0ee2c5c))
4189
-
4190
- ## 1.34.2 (2020-01-04)
4191
-
4192
- ### Bug Fixes
4193
-
4194
- - removed trash from index ([11fee69](https://git.awescode.com/awes-io/ui/commits/11fee69565e80f730bb61485bf6972217d737397))
4195
-
4196
- ## 1.34.1 (2020-01-04)
4197
-
4198
- ### Bug Fixes
4199
-
4200
- - removed prepublish tag from package.json ([1d7c983](https://git.awescode.com/awes-io/ui/commits/1d7c9834339702837633e113ca08571cba30141d))
4201
-
4202
- # 1.34.0 (2020-01-04)
4203
-
4204
- ### Bug Fixes
4205
-
4206
- - added hello world component ([1b34e1f](https://git.awescode.com/awes-io/ui/commits/1b34e1f35f96d51082aecbe375bead1ebbbf04ef))
4207
- - added vue-mc in dependency ([9ad28da](https://git.awescode.com/awes-io/ui/commits/9ad28dae88403619edefed89750fe14cf8eb8b4e))
4208
- - eslint fixes ([a793207](https://git.awescode.com/awes-io/ui/commits/a7932079a5ef1ef881ad3e6bc038b3ca296e1baa))
4209
- - eslint fixes ([974c349](https://git.awescode.com/awes-io/ui/commits/974c3490362b82defeedf37b35fb4d90d8f4e1ec))
4210
- - excluded CHANGELOG from gitignore ([399843b](https://git.awescode.com/awes-io/ui/commits/399843b70c71e7d14bf8da9e72bf34b45543c8a6))
4211
-
4212
- ### Features
4213
-
4214
- - added examples for components ([323f75f](https://git.awescode.com/awes-io/ui/commits/323f75f49550cb9cba06b551ab13bbc025737ef5))
4215
- - added first example and dev env ([ce6b56f](https://git.awescode.com/awes-io/ui/commits/ce6b56fe130f84539d2b7288f7ed0dec89f404c7))
4216
- - alpha version of client frontend package ([ded2c50](https://git.awescode.com/awes-io/ui/commits/ded2c5089f3d6fbb39f6850def4d5f5eb8423e9e))
4217
- - eslint fixed files ([3c84c10](https://git.awescode.com/awes-io/ui/commits/3c84c10e741092970e42489fb84e5afab10fd3b5))
4218
-
4219
- # 1.40.0 (2020-01-27)
4220
-
4221
- ### Bug Fixes
4222
-
4223
- - **awp-2:** refreshed doc for AwContentWrapper ([4142031](https://git.awescode.com/awes-io/ui/commits/41420313761ca6c0e40752110ee942c4067aea0b))
4224
-
4225
- ### Features
4226
-
4227
- - updated docs; deploy system ([92032c5](https://git.awescode.com/awes-io/ui/commits/92032c54a5364d8b66bc477e0827f06673ab29cc))
4228
-
4229
- # 1.38.0 (2020-01-27)
4230
-
4231
- ### Bug Fixes
4232
-
4233
- - **awp-2:** made component AwContentWrapper ([ebea23d](https://git.awescode.com/awes-io/ui/commits/ebea23d80478a95d8e231dbe253354ba2668b64d))
4234
- - **translations:** loaded langs fix ([d9f5803](https://git.awescode.com/awes-io/ui/commits/d9f5803138cd1c82321a8b28cce64babab52823c))
4235
-
4236
- ### Features
4237
-
4238
- - **ui:** aw-form listener to switch fields and send form ([85fac02](https://git.awescode.com/awes-io/ui/commits/85fac029ddb7c98dbe2673d2dc2c1076a0ee2c8b))
4239
- - **ui:** aw-multi-block-builder added ([f8a1e0d](https://git.awescode.com/awes-io/ui/commits/f8a1e0df35cfc0ac84c9a162b27a1ed39b57279a))
4240
-
4241
- # 1.37.0 (2020-01-23)
4242
-
4243
- ### Bug Fixes
4244
-
4245
- - updated fonts ([13392a0](https://git.awescode.com/awes-io/ui/commits/13392a02b0a37f8d8339a5ee129c04ad54c63a74))
4246
- - **aws-671:** fixed padding of AwTel component ([a4a6dee](https://git.awescode.com/awes-io/ui/commits/a4a6deec6dd736ee2c9d9805503437f6a85b7f35))
4247
- - **ui:** aw-table responsiveness works on ios ([82719eb](https://git.awescode.com/awes-io/ui/commits/82719eb20f853a46043c9b5d1417a1016af11291))
4248
-
4249
- ### Features
4250
-
4251
- - added generator for documentation ([dbba524](https://git.awescode.com/awes-io/ui/commits/dbba524fdb6858bd1541997580b6635ac91a19d7))
4252
-
4253
- ## 1.36.2 (2020-01-14)
4254
-
4255
- ### Bug Fixes
4256
-
4257
- - **aws-671:** fixed LayoutFrameCenter ([ffb6fe2](https://git.awescode.com/awes-io/ui/commits/ffb6fe2648af3a713e6970bb2b2ff3f19d78a2bf))
4258
-
4259
- ## 1.36.1 (2020-01-14)
4260
-
4261
- # 1.36.0 (2020-01-14)
4262
-
4263
- ### Bug Fixes
4264
-
4265
- - **aws-671:** fixed package.json files ([4270b60](https://git.awescode.com/awes-io/ui/commits/4270b605de47f7dba55e5578b67b028a2cd62b8d))
4266
-
4267
- ## 1.35.1 (2020-01-09)
4268
-
4269
- ### Bug Fixes
4270
-
4271
- - updated fonts ([2c913e5](https://git.awescode.com/awes-io/ui/commits/2c913e5985e5c7b20b81263a52d88f25c694a272))
4272
-
4273
- # 1.35.0 (2020-01-09)
4274
-
4275
- ### Bug Fixes
4276
-
4277
- - add build-icons command to dev ([f340c2f](https://git.awescode.com/awes-io/ui/commits/f340c2f82cb5ac1a445518a4f8255d41edaf18f5))
4278
- - fixed select autocomplete event ([576313f](https://git.awescode.com/awes-io/ui/commits/576313fd88e60c47d240b5786530bb3cf9b82d6a))
4279
- - move vertical align class names to validator for purgecss ([de004f9](https://git.awescode.com/awes-io/ui/commits/de004f9147a486765364a60aed656c08770ba04d))
4280
-
4281
- ### Features
4282
-
4283
- - **aw-table-builder:** use limit param from response ([017a758](https://git.awescode.com/awes-io/ui/commits/017a758bea1741a8e17f264256a9c1b3babc1105))
4284
- - **aws-639:** made vertical align ([b26dea2](https://git.awescode.com/awes-io/ui/commits/b26dea24ff00a5f1eae9ac684ac96616633a1c9c))
4285
- - **aws-671:** fixed prop method validation of AwForm ([403f3cf](https://git.awescode.com/awes-io/ui/commits/403f3cf3c9e2067d39139488af12c2c55fd450f6))
4286
- - **aws-671:** refreshed AwSearch ([0140d46](https://git.awescode.com/awes-io/ui/commits/0140d46e984e5e7742833214ed493d8784098e73))
4287
- - added a new component AwInfo ([1fd0998](https://git.awescode.com/awes-io/ui/commits/1fd099889f0635a375c5665429b93b408fef1075))
4288
- - **aws-671:** refreshed AwSearch ([9f3a213](https://git.awescode.com/awes-io/ui/commits/9f3a2136dfa53dab519da7fbe821fbece0ee2c5c))
4289
-
4290
- ## 1.34.2 (2020-01-04)
4291
-
4292
- ### Bug Fixes
4293
-
4294
- - removed trash from index ([11fee69](https://git.awescode.com/awes-io/ui/commits/11fee69565e80f730bb61485bf6972217d737397))
4295
-
4296
- ## 1.34.1 (2020-01-04)
4297
-
4298
- ### Bug Fixes
4299
-
4300
- - removed prepublish tag from package.json ([1d7c983](https://git.awescode.com/awes-io/ui/commits/1d7c9834339702837633e113ca08571cba30141d))
4301
-
4302
- # 1.34.0 (2020-01-04)
4303
-
4304
- ### Bug Fixes
4305
-
4306
- - added hello world component ([1b34e1f](https://git.awescode.com/awes-io/ui/commits/1b34e1f35f96d51082aecbe375bead1ebbbf04ef))
4307
- - added vue-mc in dependency ([9ad28da](https://git.awescode.com/awes-io/ui/commits/9ad28dae88403619edefed89750fe14cf8eb8b4e))
4308
- - eslint fixes ([a793207](https://git.awescode.com/awes-io/ui/commits/a7932079a5ef1ef881ad3e6bc038b3ca296e1baa))
4309
- - eslint fixes ([974c349](https://git.awescode.com/awes-io/ui/commits/974c3490362b82defeedf37b35fb4d90d8f4e1ec))
4310
- - excluded CHANGELOG from gitignore ([399843b](https://git.awescode.com/awes-io/ui/commits/399843b70c71e7d14bf8da9e72bf34b45543c8a6))
4311
-
4312
- ### Features
4313
-
4314
- - added examples for components ([323f75f](https://git.awescode.com/awes-io/ui/commits/323f75f49550cb9cba06b551ab13bbc025737ef5))
4315
- - added first example and dev env ([ce6b56f](https://git.awescode.com/awes-io/ui/commits/ce6b56fe130f84539d2b7288f7ed0dec89f404c7))
4316
- - alpha version of client frontend package ([ded2c50](https://git.awescode.com/awes-io/ui/commits/ded2c5089f3d6fbb39f6850def4d5f5eb8423e9e))
4317
- - eslint fixed files ([3c84c10](https://git.awescode.com/awes-io/ui/commits/3c84c10e741092970e42489fb84e5afab10fd3b5))
4318
-
4319
- # 1.39.0 (2020-01-27)
4320
-
4321
- ### Bug Fixes
4322
-
4323
- - **awp-2:** refreshed doc for AwContentWrapper ([4142031](https://git.awescode.com/awes-io/ui/commits/41420313761ca6c0e40752110ee942c4067aea0b))
4324
-
4325
- # 1.38.0 (2020-01-27)
4326
-
4327
- ### Bug Fixes
4328
-
4329
- - **awp-2:** made component AwContentWrapper ([ebea23d](https://git.awescode.com/awes-io/ui/commits/ebea23d80478a95d8e231dbe253354ba2668b64d))
4330
- - **translations:** loaded langs fix ([d9f5803](https://git.awescode.com/awes-io/ui/commits/d9f5803138cd1c82321a8b28cce64babab52823c))
4331
-
4332
- ### Features
4333
-
4334
- - **ui:** aw-form listener to switch fields and send form ([85fac02](https://git.awescode.com/awes-io/ui/commits/85fac029ddb7c98dbe2673d2dc2c1076a0ee2c8b))
4335
- - **ui:** aw-multi-block-builder added ([f8a1e0d](https://git.awescode.com/awes-io/ui/commits/f8a1e0df35cfc0ac84c9a162b27a1ed39b57279a))
4336
-
4337
- # 1.37.0 (2020-01-23)
4338
-
4339
- ### Bug Fixes
4340
-
4341
- - updated fonts ([13392a0](https://git.awescode.com/awes-io/ui/commits/13392a02b0a37f8d8339a5ee129c04ad54c63a74))
4342
- - **aws-671:** fixed padding of AwTel component ([a4a6dee](https://git.awescode.com/awes-io/ui/commits/a4a6deec6dd736ee2c9d9805503437f6a85b7f35))
4343
- - **ui:** aw-table responsiveness works on ios ([82719eb](https://git.awescode.com/awes-io/ui/commits/82719eb20f853a46043c9b5d1417a1016af11291))
4344
-
4345
- ### Features
4346
-
4347
- - added generator for documentation ([dbba524](https://git.awescode.com/awes-io/ui/commits/dbba524fdb6858bd1541997580b6635ac91a19d7))
4348
-
4349
- ## 1.36.2 (2020-01-14)
4350
-
4351
- ### Bug Fixes
4352
-
4353
- - **aws-671:** fixed LayoutFrameCenter ([ffb6fe2](https://git.awescode.com/awes-io/ui/commits/ffb6fe2648af3a713e6970bb2b2ff3f19d78a2bf))
4354
-
4355
- ## 1.36.1 (2020-01-14)
4356
-
4357
- # 1.36.0 (2020-01-14)
4358
-
4359
- ### Bug Fixes
4360
-
4361
- - **aws-671:** fixed package.json files ([4270b60](https://git.awescode.com/awes-io/ui/commits/4270b605de47f7dba55e5578b67b028a2cd62b8d))
4362
-
4363
- ## 1.35.1 (2020-01-09)
4364
-
4365
- ### Bug Fixes
4366
-
4367
- - updated fonts ([2c913e5](https://git.awescode.com/awes-io/ui/commits/2c913e5985e5c7b20b81263a52d88f25c694a272))
4368
-
4369
- # 1.35.0 (2020-01-09)
4370
-
4371
- ### Bug Fixes
4372
-
4373
- - add build-icons command to dev ([f340c2f](https://git.awescode.com/awes-io/ui/commits/f340c2f82cb5ac1a445518a4f8255d41edaf18f5))
4374
- - fixed select autocomplete event ([576313f](https://git.awescode.com/awes-io/ui/commits/576313fd88e60c47d240b5786530bb3cf9b82d6a))
4375
- - move vertical align class names to validator for purgecss ([de004f9](https://git.awescode.com/awes-io/ui/commits/de004f9147a486765364a60aed656c08770ba04d))
4376
-
4377
- ### Features
4378
-
4379
- - **aw-table-builder:** use limit param from response ([017a758](https://git.awescode.com/awes-io/ui/commits/017a758bea1741a8e17f264256a9c1b3babc1105))
4380
- - **aws-639:** made vertical align ([b26dea2](https://git.awescode.com/awes-io/ui/commits/b26dea24ff00a5f1eae9ac684ac96616633a1c9c))
4381
- - **aws-671:** fixed prop method validation of AwForm ([403f3cf](https://git.awescode.com/awes-io/ui/commits/403f3cf3c9e2067d39139488af12c2c55fd450f6))
4382
- - **aws-671:** refreshed AwSearch ([0140d46](https://git.awescode.com/awes-io/ui/commits/0140d46e984e5e7742833214ed493d8784098e73))
4383
- - added a new component AwInfo ([1fd0998](https://git.awescode.com/awes-io/ui/commits/1fd099889f0635a375c5665429b93b408fef1075))
4384
- - **aws-671:** refreshed AwSearch ([9f3a213](https://git.awescode.com/awes-io/ui/commits/9f3a2136dfa53dab519da7fbe821fbece0ee2c5c))
4385
-
4386
- ## 1.34.2 (2020-01-04)
4387
-
4388
- ### Bug Fixes
4389
-
4390
- - removed trash from index ([11fee69](https://git.awescode.com/awes-io/ui/commits/11fee69565e80f730bb61485bf6972217d737397))
4391
-
4392
- ## 1.34.1 (2020-01-04)
4393
-
4394
- ### Bug Fixes
4395
-
4396
- - removed prepublish tag from package.json ([1d7c983](https://git.awescode.com/awes-io/ui/commits/1d7c9834339702837633e113ca08571cba30141d))
4397
-
4398
- # 1.34.0 (2020-01-04)
4399
-
4400
- ### Bug Fixes
4401
-
4402
- - added hello world component ([1b34e1f](https://git.awescode.com/awes-io/ui/commits/1b34e1f35f96d51082aecbe375bead1ebbbf04ef))
4403
- - added vue-mc in dependency ([9ad28da](https://git.awescode.com/awes-io/ui/commits/9ad28dae88403619edefed89750fe14cf8eb8b4e))
4404
- - eslint fixes ([a793207](https://git.awescode.com/awes-io/ui/commits/a7932079a5ef1ef881ad3e6bc038b3ca296e1baa))
4405
- - eslint fixes ([974c349](https://git.awescode.com/awes-io/ui/commits/974c3490362b82defeedf37b35fb4d90d8f4e1ec))
4406
- - excluded CHANGELOG from gitignore ([399843b](https://git.awescode.com/awes-io/ui/commits/399843b70c71e7d14bf8da9e72bf34b45543c8a6))
4407
-
4408
- ### Features
4409
-
4410
- - added examples for components ([323f75f](https://git.awescode.com/awes-io/ui/commits/323f75f49550cb9cba06b551ab13bbc025737ef5))
4411
- - added first example and dev env ([ce6b56f](https://git.awescode.com/awes-io/ui/commits/ce6b56fe130f84539d2b7288f7ed0dec89f404c7))
4412
- - alpha version of client frontend package ([ded2c50](https://git.awescode.com/awes-io/ui/commits/ded2c5089f3d6fbb39f6850def4d5f5eb8423e9e))
4413
- - eslint fixed files ([3c84c10](https://git.awescode.com/awes-io/ui/commits/3c84c10e741092970e42489fb84e5afab10fd3b5))
4414
-
4415
- # [1.38.0](https://git.awescode.com/awes-io/ui/compare/v1.37.0...v1.38.0) (2020-01-27)
4416
-
4417
- ### Bug Fixes
4418
-
4419
- - **translations:** loaded langs fix ([d9f5803](https://git.awescode.com/awes-io/ui/commits/d9f5803138cd1c82321a8b28cce64babab52823c))
4420
-
4421
- ### Features
4422
-
4423
- - **ui:** aw-form listener to switch fields and send form ([85fac02](https://git.awescode.com/awes-io/ui/commits/85fac029ddb7c98dbe2673d2dc2c1076a0ee2c8b))
4424
- - **ui:** aw-multi-block-builder added ([f8a1e0d](https://git.awescode.com/awes-io/ui/commits/f8a1e0df35cfc0ac84c9a162b27a1ed39b57279a))
4425
-
4426
- # [1.37.0](https://git.awescode.com/awes-io/ui/compare/v1.36.2...v1.37.0) (2020-01-23)
4427
-
4428
- ### Bug Fixes
4429
-
4430
- - updated fonts ([13392a0](https://git.awescode.com/awes-io/ui/commits/13392a02b0a37f8d8339a5ee129c04ad54c63a74))
4431
- - **aws-671:** fixed padding of AwTel component ([a4a6dee](https://git.awescode.com/awes-io/ui/commits/a4a6deec6dd736ee2c9d9805503437f6a85b7f35))
4432
- - **ui:** aw-table responsiveness works on ios ([82719eb](https://git.awescode.com/awes-io/ui/commits/82719eb20f853a46043c9b5d1417a1016af11291))
4433
-
4434
- ### Features
4435
-
4436
- - added generator for documentation ([dbba524](https://git.awescode.com/awes-io/ui/commits/dbba524fdb6858bd1541997580b6635ac91a19d7))
4437
-
4438
- ## [1.36.2](https://git.awescode.com/awes-io/ui/compare/v1.36.1...v1.36.2) (2020-01-14)
4439
-
4440
- ### Bug Fixes
4441
-
4442
- - **aws-671:** fixed LayoutFrameCenter ([ffb6fe2](https://git.awescode.com/awes-io/ui/commits/ffb6fe2648af3a713e6970bb2b2ff3f19d78a2bf))
4443
- - **aws-671:** fixed package.json files ([4270b60](https://git.awescode.com/awes-io/ui/commits/4270b605de47f7dba55e5578b67b028a2cd62b8d))
4444
-
4445
- ## [1.36.1](https://git.awescode.com/awes-io/ui/compare/v1.36.0...v1.36.1) (2020-01-14)
4446
-
4447
- **Note:** Version bump only for package @awes-io/ui
4448
-
4449
- # [1.36.0](https://git.awescode.com/awes-io/ui/compare/v1.35.1...v1.36.0) (2020-01-14)
4450
-
4451
- ### Features
4452
-
4453
- - **aws-671:** fixed prop method validation of AwForm ([403f3cf](https://git.awescode.com/awes-io/ui/commits/403f3cf3c9e2067d39139488af12c2c55fd450f6))
4454
- - **aws-671:** refreshed AwSearch ([9f3a213](https://git.awescode.com/awes-io/ui/commits/9f3a2136dfa53dab519da7fbe821fbece0ee2c5c))
4455
-
4456
- ## [1.35.1](https://git.awescode.com/awes-io/ui/compare/v1.35.0...v1.35.1) (2020-01-09)
4457
-
4458
- ### Bug Fixes
4459
-
4460
- - updated fonts ([2c913e5](https://git.awescode.com/awes-io/ui/commits/2c913e5985e5c7b20b81263a52d88f25c694a272))
4461
-
4462
- # [1.35.0](https://git.awescode.com/awes-io/ui/compare/v1.34.2...v1.35.0) (2020-01-09)
4463
-
4464
- ### Bug Fixes
4465
-
4466
- - add build-icons command to dev ([f340c2f](https://git.awescode.com/awes-io/ui/commits/f340c2f82cb5ac1a445518a4f8255d41edaf18f5))
4467
- - fixed select autocomplete event ([576313f](https://git.awescode.com/awes-io/ui/commits/576313fd88e60c47d240b5786530bb3cf9b82d6a))
4468
- - move vertical align class names to validator for purgecss ([de004f9](https://git.awescode.com/awes-io/ui/commits/de004f9147a486765364a60aed656c08770ba04d))
4469
-
4470
- ### Features
4471
-
4472
- - **aw-table-builder:** use limit param from response ([017a758](https://git.awescode.com/awes-io/ui/commits/017a758bea1741a8e17f264256a9c1b3babc1105))
4473
- - **aws-671:** refreshed AwSearch ([0140d46](https://git.awescode.com/awes-io/ui/commits/0140d46e984e5e7742833214ed493d8784098e73))
4474
- - added a new component AwInfo ([1fd0998](https://git.awescode.com/awes-io/ui/commits/1fd099889f0635a375c5665429b93b408fef1075))
4475
- - **aws-639:** made vertical align ([b26dea2](https://git.awescode.com/awes-io/ui/commits/b26dea24ff00a5f1eae9ac684ac96616633a1c9c))
4476
-
4477
- ## [1.34.2](https://git.awescode.com/awes-io/ui/compare/v1.34.1...v1.34.2) (2020-01-04)
4478
-
4479
- ### Bug Fixes
4480
-
4481
- - removed trash from index ([11fee69](https://git.awescode.com/awes-io/ui/commits/11fee69565e80f730bb61485bf6972217d737397))
4482
-
4483
- ## [1.34.1](https://git.awescode.com/awes-io/ui/compare/v1.34.0...v1.34.1) (2020-01-04)
4484
-
4485
- ### Bug Fixes
4486
-
4487
- - removed prepublish tag from package.json ([1d7c983](https://git.awescode.com/awes-io/ui/commits/1d7c9834339702837633e113ca08571cba30141d))
4488
-
4489
- # 1.34.0 (2020-01-04)
4490
-
4491
- ### Bug Fixes
4492
-
4493
- - added hello world component ([1b34e1f](https://git.awescode.com/awes-io/ui/commits/1b34e1f35f96d51082aecbe375bead1ebbbf04ef))
4494
- - added vue-mc in dependency ([9ad28da](https://git.awescode.com/awes-io/ui/commits/9ad28dae88403619edefed89750fe14cf8eb8b4e))
4495
- - eslint fixes ([a793207](https://git.awescode.com/awes-io/ui/commits/a7932079a5ef1ef881ad3e6bc038b3ca296e1baa))
4496
- - eslint fixes ([974c349](https://git.awescode.com/awes-io/ui/commits/974c3490362b82defeedf37b35fb4d90d8f4e1ec))
4497
- - excluded CHANGELOG from gitignore ([399843b](https://git.awescode.com/awes-io/ui/commits/399843b70c71e7d14bf8da9e72bf34b45543c8a6))
4498
-
4499
- ### Features
4500
-
4501
- - added examples for components ([323f75f](https://git.awescode.com/awes-io/ui/commits/323f75f49550cb9cba06b551ab13bbc025737ef5))
4502
- - added first example and dev env ([ce6b56f](https://git.awescode.com/awes-io/ui/commits/ce6b56fe130f84539d2b7288f7ed0dec89f404c7))
4503
- - alpha version of client frontend package ([ded2c50](https://git.awescode.com/awes-io/ui/commits/ded2c5089f3d6fbb39f6850def4d5f5eb8423e9e))
4504
- - eslint fixed files ([3c84c10](https://git.awescode.com/awes-io/ui/commits/3c84c10e741092970e42489fb84e5afab10fd3b5))
4505
-
4506
- # 1.33.0 (2020-01-04)
4507
-
4508
- ### Bug Fixes
4509
-
4510
- - added hello world component ([1b34e1f](https://git.awescode.com/awes-io/ui/commits/1b34e1f35f96d51082aecbe375bead1ebbbf04ef))
4511
- - added vue-mc in dependency ([9ad28da](https://git.awescode.com/awes-io/ui/commits/9ad28dae88403619edefed89750fe14cf8eb8b4e))
4512
- - eslint fixes ([a793207](https://git.awescode.com/awes-io/ui/commits/a7932079a5ef1ef881ad3e6bc038b3ca296e1baa))
4513
- - eslint fixes ([974c349](https://git.awescode.com/awes-io/ui/commits/974c3490362b82defeedf37b35fb4d90d8f4e1ec))
4514
-
4515
- ### Features
4516
-
4517
- - added examples for components ([323f75f](https://git.awescode.com/awes-io/ui/commits/323f75f49550cb9cba06b551ab13bbc025737ef5))
4518
- - added first example and dev env ([ce6b56f](https://git.awescode.com/awes-io/ui/commits/ce6b56fe130f84539d2b7288f7ed0dec89f404c7))
4519
- - alpha version of client frontend package ([ded2c50](https://git.awescode.com/awes-io/ui/commits/ded2c5089f3d6fbb39f6850def4d5f5eb8423e9e))
4520
- - eslint fixed files ([3c84c10](https://git.awescode.com/awes-io/ui/commits/3c84c10e741092970e42489fb84e5afab10fd3b5))