ngx-vector-components 4.91.0 → 4.93.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 (358) hide show
  1. package/CHANGELOG.md +1220 -1208
  2. package/README.md +35 -35
  3. package/assets/icons/chevron_down_icon.svg +3 -3
  4. package/assets/icons/home_menu_icon.svg +3 -3
  5. package/assets/icons/logout_icon.svg +9 -9
  6. package/assets/icons/menu_footer_icon.svg +3 -3
  7. package/assets/icons/menu_hamburguer_icon.svg +3 -3
  8. package/assets/icons/terms_of_use_icon.svg +9 -9
  9. package/assets/icons/vector_admin_icon.svg +4 -4
  10. package/assets/icons/vector_fintech_icon.svg +3 -3
  11. package/assets/icons/vector_logtech_icon.svg +6 -6
  12. package/assets/icons/vector_marketplace_icon.svg +3 -3
  13. package/assets/images/bunge_logo.svg +23 -23
  14. package/assets/images/cofco_logo.svg +117 -117
  15. package/assets/images/emote_bad.svg +6 -6
  16. package/assets/images/emote_cool.svg +5 -5
  17. package/assets/images/emote_nice.svg +5 -5
  18. package/assets/images/success_sign.svg +4 -4
  19. package/assets/images/vector-logo-horizontal-inverse-color.svg +13 -13
  20. package/assets/images/vector_logo_horizontal.svg +13 -13
  21. package/assets/images/warn_sign.svg +4 -4
  22. package/assets/styles/_fonts.scss +114 -114
  23. package/assets/styles/_mixins.scss +7 -7
  24. package/assets/styles/_primeng-custom-theme.scss +982 -982
  25. package/assets/styles/_spinner.scss +35 -35
  26. package/assets/styles/_styles.scss +115 -115
  27. package/assets/styles/_variables.scss +27 -27
  28. package/esm2022/lib/components/badge/badge.component.mjs +39 -0
  29. package/esm2022/lib/components/badge/badge.module.mjs +19 -0
  30. package/{esm2020 → esm2022}/lib/components/badge/index.mjs +3 -3
  31. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +66 -0
  32. package/esm2022/lib/components/breadcrumb/breadcrumb.module.mjs +18 -0
  33. package/{esm2020 → esm2022}/lib/components/breadcrumb/index.mjs +3 -3
  34. package/esm2022/lib/components/crud-base/crud-base.component.mjs +47 -0
  35. package/{esm2020 → esm2022}/lib/components/crud-base/index.mjs +2 -2
  36. package/esm2022/lib/components/crud-footer/crud-footer.component.mjs +32 -0
  37. package/esm2022/lib/components/crud-footer/crud-footer.module.mjs +20 -0
  38. package/{esm2020 → esm2022}/lib/components/crud-footer/index.mjs +3 -3
  39. package/esm2022/lib/components/crud-header/crud-header.component.mjs +30 -0
  40. package/esm2022/lib/components/crud-header/crud-header.module.mjs +19 -0
  41. package/{esm2020 → esm2022}/lib/components/crud-header/index.mjs +3 -3
  42. package/esm2022/lib/components/crud-history/crud-history.component.mjs +82 -0
  43. package/esm2022/lib/components/crud-history/crud-history.module.mjs +20 -0
  44. package/{esm2020 → esm2022}/lib/components/crud-history/index.mjs +3 -3
  45. package/esm2022/lib/components/fields/button/button.component.mjs +41 -0
  46. package/{esm2020 → esm2022}/lib/components/fields/button/index.mjs +2 -2
  47. package/esm2022/lib/components/fields/calendar-field/calendar-field.component.mjs +74 -0
  48. package/{esm2020 → esm2022}/lib/components/fields/calendar-field/index.mjs +2 -2
  49. package/esm2022/lib/components/fields/checkbox-field/checkbox-field.component.mjs +46 -0
  50. package/{esm2020 → esm2022}/lib/components/fields/checkbox-field/index.mjs +2 -2
  51. package/esm2022/lib/components/fields/currency-field/currency-field.component.mjs +98 -0
  52. package/{esm2020 → esm2022}/lib/components/fields/currency-field/index.mjs +2 -2
  53. package/esm2022/lib/components/fields/data-table/data-table.component.mjs +386 -0
  54. package/{esm2020 → esm2022}/lib/components/fields/data-table/index.mjs +2 -2
  55. package/esm2022/lib/components/fields/dropdown-field/dropdown-field.component.mjs +204 -0
  56. package/{esm2020 → esm2022}/lib/components/fields/dropdown-field/index.mjs +2 -2
  57. package/{esm2020 → esm2022}/lib/components/fields/field-error-message/field-error-message.component.mjs +30 -30
  58. package/{esm2020 → esm2022}/lib/components/fields/field-error-message/index.mjs +2 -2
  59. package/esm2022/lib/components/fields/fields.module.mjs +211 -0
  60. package/esm2022/lib/components/fields/filters/filters.component.mjs +203 -0
  61. package/{esm2020 → esm2022}/lib/components/fields/filters/index.mjs +2 -2
  62. package/{esm2020 → esm2022}/lib/components/fields/index.mjs +19 -19
  63. package/{esm2020 → esm2022}/lib/components/fields/input-number-field/index.mjs +2 -2
  64. package/esm2022/lib/components/fields/input-number-field/input-number-field.component.mjs +85 -0
  65. package/{esm2020 → esm2022}/lib/components/fields/multiselect-field/index.mjs +2 -2
  66. package/esm2022/lib/components/fields/multiselect-field/multiselect-field.component.mjs +50 -0
  67. package/{esm2020 → esm2022}/lib/components/fields/percentage-field/index.mjs +2 -2
  68. package/esm2022/lib/components/fields/percentage-field/percentage-field.component.mjs +42 -0
  69. package/{esm2020 → esm2022}/lib/components/fields/radio-button-field/index.mjs +2 -2
  70. package/esm2022/lib/components/fields/radio-button-field/radio-button-field.component.mjs +48 -0
  71. package/{esm2020 → esm2022}/lib/components/fields/range-value/index.mjs +2 -2
  72. package/{esm2020 → esm2022}/lib/components/fields/range-value/range-value.component.mjs +72 -72
  73. package/{esm2020 → esm2022}/lib/components/fields/search-field/index.mjs +2 -2
  74. package/esm2022/lib/components/fields/search-field/search-field.component.mjs +33 -0
  75. package/{esm2020 → esm2022}/lib/components/fields/select-button-field/index.mjs +2 -2
  76. package/esm2022/lib/components/fields/select-button-field/select-button-field.component.mjs +20 -0
  77. package/{esm2020 → esm2022}/lib/components/fields/text-field/index.mjs +2 -2
  78. package/esm2022/lib/components/fields/text-field/text-field.component.mjs +229 -0
  79. package/{esm2020 → esm2022}/lib/components/fields/textarea-field/index.mjs +2 -2
  80. package/esm2022/lib/components/fields/textarea-field/textarea-field.component.mjs +81 -0
  81. package/esm2022/lib/components/generic-error-modal/generic-error-modal.component.mjs +39 -0
  82. package/esm2022/lib/components/generic-error-modal/generic-error-modal.module.mjs +20 -0
  83. package/{esm2020 → esm2022}/lib/components/generic-error-modal/index.mjs +3 -3
  84. package/esm2022/lib/components/generic-modal/generic-modal.component.mjs +66 -0
  85. package/esm2022/lib/components/generic-modal/generic-modal.module.mjs +20 -0
  86. package/{esm2020 → esm2022}/lib/components/generic-modal/index.mjs +3 -3
  87. package/{esm2020 → esm2022}/lib/components/index.mjs +14 -14
  88. package/{esm2020 → esm2022}/lib/components/menu/index.mjs +4 -4
  89. package/esm2022/lib/components/menu/menu.component.mjs +305 -0
  90. package/esm2022/lib/components/menu/menu.module.mjs +20 -0
  91. package/esm2022/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +42 -0
  92. package/{esm2020 → esm2022}/lib/components/panel/index.mjs +3 -3
  93. package/esm2022/lib/components/panel/panel.component.mjs +15 -0
  94. package/esm2022/lib/components/panel/panel.module.mjs +19 -0
  95. package/{esm2020 → esm2022}/lib/components/score/index.mjs +3 -3
  96. package/esm2022/lib/components/score/score.component.mjs +17 -0
  97. package/{esm2020 → esm2022}/lib/components/score/score.module.mjs +16 -16
  98. package/{esm2020 → esm2022}/lib/components/top-bar/index.mjs +3 -3
  99. package/esm2022/lib/components/top-bar/top-bar.component.mjs +142 -0
  100. package/esm2022/lib/components/top-bar/top-bar.module.mjs +20 -0
  101. package/{esm2020 → esm2022}/lib/guards/crud-list-has-items.guard.mjs +22 -22
  102. package/{esm2020 → esm2022}/lib/guards/get-token-by-guid.guard.mjs +54 -54
  103. package/{esm2020 → esm2022}/lib/guards/has-permission.guard.mjs +27 -27
  104. package/{esm2020 → esm2022}/lib/guards/index.mjs +6 -6
  105. package/{esm2020 → esm2022}/lib/guards/role.guard.mjs +24 -24
  106. package/{esm2020 → esm2022}/lib/guards/token-is-present.guard.mjs +26 -26
  107. package/{esm2020 → esm2022}/lib/interceptors/http-interceptor.mjs +185 -185
  108. package/{esm2020 → esm2022}/lib/interceptors/index.mjs +2 -2
  109. package/{esm2020 → esm2022}/lib/models/app-name.enum.mjs +10 -10
  110. package/{esm2020 → esm2022}/lib/models/boolean-type.enum.mjs +6 -6
  111. package/{esm2020 → esm2022}/lib/models/crud-history.model.mjs +3 -3
  112. package/{esm2020 → esm2022}/lib/models/crud-mode.enum.mjs +7 -7
  113. package/{esm2020 → esm2022}/lib/models/currency.enum.mjs +7 -7
  114. package/esm2022/lib/models/data-table.model.mjs +23 -0
  115. package/{esm2020 → esm2022}/lib/models/document-type.enum.mjs +6 -6
  116. package/{esm2020 → esm2022}/lib/models/filters.model.mjs +2 -2
  117. package/{esm2020 → esm2022}/lib/models/generic-modal.model.mjs +2 -2
  118. package/esm2022/lib/models/http-response.model.mjs +2 -0
  119. package/{esm2020 → esm2022}/lib/models/index.mjs +18 -18
  120. package/{esm2020 → esm2022}/lib/models/ip-info.enum.mjs +2 -2
  121. package/{esm2020 → esm2022}/lib/models/list-item.model.mjs +2 -2
  122. package/{esm2020 → esm2022}/lib/models/locale.enum.mjs +7 -7
  123. package/esm2022/lib/models/menu-item.model.mjs +2 -0
  124. package/{esm2020 → esm2022}/lib/models/message-status.enum.mjs +8 -8
  125. package/{esm2020 → esm2022}/lib/models/profile.model.mjs +271 -264
  126. package/{esm2020 → esm2022}/lib/models/role.enum.mjs +5 -5
  127. package/{esm2020 → esm2022}/lib/models/status.enum.mjs +8 -8
  128. package/{esm2020 → esm2022}/lib/models/topbar.model.mjs +2 -2
  129. package/esm2022/lib/models/vector-app.model.mjs +2 -0
  130. package/{esm2020 → esm2022}/lib/models/vector-notification.model.mjs +2 -2
  131. package/{esm2020 → esm2022}/lib/models/view.enum.mjs +7 -7
  132. package/{esm2020 → esm2022}/lib/pipes/currency-brl.pipe.mjs +18 -18
  133. package/{esm2020 → esm2022}/lib/pipes/format-document.pipe.mjs +17 -17
  134. package/{esm2020 → esm2022}/lib/pipes/index.mjs +9 -9
  135. package/{esm2020 → esm2022}/lib/pipes/mask.pipe.mjs +21 -21
  136. package/{esm2020 → esm2022}/lib/pipes/not-hidden.pipe.mjs +16 -16
  137. package/{esm2020 → esm2022}/lib/pipes/only-active.pipe.mjs +16 -16
  138. package/{esm2020 → esm2022}/lib/pipes/pipes.module.mjs +50 -50
  139. package/{esm2020 → esm2022}/lib/pipes/remove-last-child.pipe.mjs +18 -18
  140. package/{esm2020 → esm2022}/lib/pipes/unread-notifications.pipe.mjs +15 -15
  141. package/{esm2020 → esm2022}/lib/resolvers/get-selected-crud-item.resolver.mjs +28 -28
  142. package/{esm2020 → esm2022}/lib/resolvers/index.mjs +2 -2
  143. package/{esm2020 → esm2022}/lib/services/auth.service.mjs +77 -77
  144. package/esm2022/lib/services/base-dropdown.mjs +2 -0
  145. package/{esm2020 → esm2022}/lib/services/crud-base.service.mjs +14 -14
  146. package/{esm2020 → esm2022}/lib/services/enum.service.mjs +43 -43
  147. package/{esm2020 → esm2022}/lib/services/error-message.service.mjs +16 -16
  148. package/{esm2020 → esm2022}/lib/services/geolocation.service.mjs +23 -23
  149. package/{esm2020 → esm2022}/lib/services/index.mjs +13 -13
  150. package/{esm2020 → esm2022}/lib/services/loading.service.mjs +15 -15
  151. package/{esm2020 → esm2022}/lib/services/menu.service.mjs +152 -152
  152. package/{esm2020 → esm2022}/lib/services/modal.service.mjs +15 -15
  153. package/{esm2020 → esm2022}/lib/services/notifications.service.mjs +64 -64
  154. package/{esm2020 → esm2022}/lib/services/profile.service.mjs +103 -103
  155. package/{esm2020 → esm2022}/lib/services/storage.service.mjs +108 -108
  156. package/esm2022/lib/shared/shared.module.mjs +19 -0
  157. package/{esm2020 → esm2022}/lib/utils/cpf-cnpj-validator.util.mjs +116 -116
  158. package/{esm2020 → esm2022}/lib/utils/file.util.mjs +15 -15
  159. package/{esm2020 → esm2022}/lib/utils/index.mjs +8 -8
  160. package/esm2022/lib/utils/mask.util.mjs +76 -0
  161. package/{esm2020 → esm2022}/lib/utils/object.util.mjs +27 -27
  162. package/{esm2020 → esm2022}/lib/utils/string.util.mjs +16 -16
  163. package/{esm2020 → esm2022}/lib/utils/validation.util.mjs +234 -234
  164. package/{esm2020 → esm2022}/lib/utils/window.util.mjs +9 -9
  165. package/{esm2020 → esm2022}/ngx-vector-components.mjs +4 -4
  166. package/{esm2020 → esm2022}/public-api.mjs +9 -9
  167. package/fesm2022/ngx-vector-components.mjs +4784 -0
  168. package/fesm2022/ngx-vector-components.mjs.map +1 -0
  169. package/{ngx-vector-components.d.ts → index.d.ts} +5 -5
  170. package/lib/components/badge/badge.component.d.ts +15 -15
  171. package/lib/components/badge/badge.module.d.ts +9 -9
  172. package/lib/components/badge/index.d.ts +2 -2
  173. package/lib/components/breadcrumb/breadcrumb.component.d.ts +19 -19
  174. package/lib/components/breadcrumb/breadcrumb.module.d.ts +8 -8
  175. package/lib/components/breadcrumb/index.d.ts +2 -2
  176. package/lib/components/crud-base/crud-base.component.d.ts +20 -20
  177. package/lib/components/crud-base/index.d.ts +1 -1
  178. package/lib/components/crud-footer/crud-footer.component.d.ts +13 -13
  179. package/lib/components/crud-footer/crud-footer.module.d.ts +10 -10
  180. package/lib/components/crud-footer/index.d.ts +2 -2
  181. package/lib/components/crud-header/crud-header.component.d.ts +11 -11
  182. package/lib/components/crud-header/crud-header.module.d.ts +9 -9
  183. package/lib/components/crud-header/index.d.ts +2 -2
  184. package/lib/components/crud-history/crud-history.component.d.ts +12 -12
  185. package/lib/components/crud-history/crud-history.module.d.ts +10 -10
  186. package/lib/components/crud-history/index.d.ts +2 -2
  187. package/lib/components/fields/button/button.component.d.ts +17 -17
  188. package/lib/components/fields/button/index.d.ts +1 -1
  189. package/lib/components/fields/calendar-field/calendar-field.component.d.ts +23 -23
  190. package/lib/components/fields/calendar-field/index.d.ts +1 -1
  191. package/lib/components/fields/checkbox-field/checkbox-field.component.d.ts +19 -19
  192. package/lib/components/fields/checkbox-field/index.d.ts +1 -1
  193. package/lib/components/fields/currency-field/currency-field.component.d.ts +32 -32
  194. package/lib/components/fields/currency-field/index.d.ts +1 -1
  195. package/lib/components/fields/data-table/data-table.component.d.ts +82 -82
  196. package/lib/components/fields/data-table/index.d.ts +1 -1
  197. package/lib/components/fields/dropdown-field/dropdown-field.component.d.ts +52 -52
  198. package/lib/components/fields/dropdown-field/index.d.ts +1 -1
  199. package/lib/components/fields/field-error-message/field-error-message.component.d.ts +10 -10
  200. package/lib/components/fields/field-error-message/index.d.ts +1 -1
  201. package/lib/components/fields/fields.module.d.ts +48 -48
  202. package/lib/components/fields/filters/filters.component.d.ts +63 -63
  203. package/lib/components/fields/filters/index.d.ts +1 -1
  204. package/lib/components/fields/index.d.ts +18 -18
  205. package/lib/components/fields/input-number-field/index.d.ts +1 -1
  206. package/lib/components/fields/input-number-field/input-number-field.component.d.ts +28 -28
  207. package/lib/components/fields/multiselect-field/index.d.ts +1 -1
  208. package/lib/components/fields/multiselect-field/multiselect-field.component.d.ts +16 -16
  209. package/lib/components/fields/percentage-field/index.d.ts +1 -1
  210. package/lib/components/fields/percentage-field/percentage-field.component.d.ts +16 -16
  211. package/lib/components/fields/radio-button-field/index.d.ts +1 -1
  212. package/lib/components/fields/radio-button-field/radio-button-field.component.d.ts +25 -25
  213. package/lib/components/fields/range-value/index.d.ts +1 -1
  214. package/lib/components/fields/range-value/range-value.component.d.ts +18 -18
  215. package/lib/components/fields/search-field/index.d.ts +1 -1
  216. package/lib/components/fields/search-field/search-field.component.d.ts +14 -14
  217. package/lib/components/fields/select-button-field/index.d.ts +1 -1
  218. package/lib/components/fields/select-button-field/select-button-field.component.d.ts +9 -9
  219. package/lib/components/fields/text-field/index.d.ts +1 -1
  220. package/lib/components/fields/text-field/text-field.component.d.ts +54 -54
  221. package/lib/components/fields/textarea-field/index.d.ts +1 -1
  222. package/lib/components/fields/textarea-field/textarea-field.component.d.ts +22 -22
  223. package/lib/components/generic-error-modal/generic-error-modal.component.d.ts +16 -15
  224. package/lib/components/generic-error-modal/generic-error-modal.module.d.ts +10 -10
  225. package/lib/components/generic-error-modal/index.d.ts +2 -2
  226. package/lib/components/generic-modal/generic-modal.component.d.ts +24 -24
  227. package/lib/components/generic-modal/generic-modal.module.d.ts +10 -10
  228. package/lib/components/generic-modal/index.d.ts +2 -2
  229. package/lib/components/index.d.ts +13 -13
  230. package/lib/components/menu/index.d.ts +3 -3
  231. package/lib/components/menu/menu.component.d.ts +53 -53
  232. package/lib/components/menu/menu.module.d.ts +10 -10
  233. package/lib/components/menu/sub-menus-list/sub-menus-list.component.d.ts +14 -14
  234. package/lib/components/panel/index.d.ts +2 -2
  235. package/lib/components/panel/panel.component.d.ts +8 -8
  236. package/lib/components/panel/panel.module.d.ts +9 -9
  237. package/lib/components/score/index.d.ts +2 -2
  238. package/lib/components/score/score.component.d.ts +9 -9
  239. package/lib/components/score/score.module.d.ts +7 -7
  240. package/lib/components/top-bar/index.d.ts +2 -2
  241. package/lib/components/top-bar/top-bar.component.d.ts +48 -48
  242. package/lib/components/top-bar/top-bar.module.d.ts +10 -10
  243. package/lib/guards/crud-list-has-items.guard.d.ts +10 -10
  244. package/lib/guards/get-token-by-guid.guard.d.ts +15 -15
  245. package/lib/guards/has-permission.guard.d.ts +13 -13
  246. package/lib/guards/index.d.ts +5 -5
  247. package/lib/guards/role.guard.d.ts +11 -11
  248. package/lib/guards/token-is-present.guard.d.ts +11 -11
  249. package/lib/interceptors/http-interceptor.d.ts +31 -31
  250. package/lib/interceptors/index.d.ts +1 -1
  251. package/lib/models/app-name.enum.d.ts +8 -8
  252. package/lib/models/boolean-type.enum.d.ts +4 -4
  253. package/lib/models/crud-history.model.d.ts +13 -13
  254. package/lib/models/crud-mode.enum.d.ts +5 -5
  255. package/lib/models/currency.enum.d.ts +5 -5
  256. package/lib/models/data-table.model.d.ts +65 -65
  257. package/lib/models/document-type.enum.d.ts +4 -4
  258. package/lib/models/filters.model.d.ts +4 -4
  259. package/lib/models/generic-modal.model.d.ts +13 -13
  260. package/lib/models/http-response.model.d.ts +48 -48
  261. package/lib/models/index.d.ts +17 -17
  262. package/lib/models/ip-info.enum.d.ts +6 -6
  263. package/lib/models/list-item.model.d.ts +7 -7
  264. package/lib/models/locale.enum.d.ts +5 -5
  265. package/lib/models/menu-item.model.d.ts +16 -16
  266. package/lib/models/message-status.enum.d.ts +6 -6
  267. package/lib/models/profile.model.d.ts +292 -285
  268. package/lib/models/role.enum.d.ts +3 -3
  269. package/lib/models/status.enum.d.ts +6 -6
  270. package/lib/models/topbar.model.d.ts +5 -5
  271. package/lib/models/vector-app.model.d.ts +9 -9
  272. package/lib/models/vector-notification.model.d.ts +8 -8
  273. package/lib/models/view.enum.d.ts +5 -5
  274. package/lib/pipes/currency-brl.pipe.d.ts +7 -7
  275. package/lib/pipes/format-document.pipe.d.ts +7 -7
  276. package/lib/pipes/index.d.ts +8 -8
  277. package/lib/pipes/mask.pipe.d.ts +7 -7
  278. package/lib/pipes/not-hidden.pipe.d.ts +7 -7
  279. package/lib/pipes/only-active.pipe.d.ts +7 -7
  280. package/lib/pipes/pipes.module.d.ts +13 -13
  281. package/lib/pipes/remove-last-child.pipe.d.ts +7 -7
  282. package/lib/pipes/unread-notifications.pipe.d.ts +9 -9
  283. package/lib/resolvers/get-selected-crud-item.resolver.d.ts +10 -10
  284. package/lib/resolvers/index.d.ts +1 -1
  285. package/lib/services/auth.service.d.ts +24 -24
  286. package/lib/services/base-dropdown.d.ts +7 -7
  287. package/lib/services/crud-base.service.d.ts +7 -7
  288. package/lib/services/enum.service.d.ts +13 -13
  289. package/lib/services/error-message.service.d.ts +8 -8
  290. package/lib/services/geolocation.service.d.ts +13 -13
  291. package/lib/services/index.d.ts +12 -12
  292. package/lib/services/loading.service.d.ts +7 -7
  293. package/lib/services/menu.service.d.ts +35 -35
  294. package/lib/services/modal.service.d.ts +7 -7
  295. package/lib/services/notifications.service.d.ts +13 -13
  296. package/lib/services/profile.service.d.ts +26 -26
  297. package/lib/services/storage.service.d.ts +43 -43
  298. package/lib/shared/shared.module.d.ts +10 -10
  299. package/lib/utils/cpf-cnpj-validator.util.d.ts +5 -5
  300. package/lib/utils/file.util.d.ts +4 -4
  301. package/lib/utils/index.d.ts +7 -7
  302. package/lib/utils/mask.util.d.ts +21 -21
  303. package/lib/utils/object.util.d.ts +5 -5
  304. package/lib/utils/string.util.d.ts +4 -4
  305. package/lib/utils/validation.util.d.ts +17 -17
  306. package/lib/utils/window.util.d.ts +4 -4
  307. package/package.json +18 -24
  308. package/public-api.d.ts +8 -8
  309. package/esm2020/lib/components/badge/badge.component.mjs +0 -39
  310. package/esm2020/lib/components/badge/badge.module.mjs +0 -19
  311. package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +0 -66
  312. package/esm2020/lib/components/breadcrumb/breadcrumb.module.mjs +0 -18
  313. package/esm2020/lib/components/crud-base/crud-base.component.mjs +0 -47
  314. package/esm2020/lib/components/crud-footer/crud-footer.component.mjs +0 -32
  315. package/esm2020/lib/components/crud-footer/crud-footer.module.mjs +0 -20
  316. package/esm2020/lib/components/crud-header/crud-header.component.mjs +0 -30
  317. package/esm2020/lib/components/crud-header/crud-header.module.mjs +0 -19
  318. package/esm2020/lib/components/crud-history/crud-history.component.mjs +0 -82
  319. package/esm2020/lib/components/crud-history/crud-history.module.mjs +0 -20
  320. package/esm2020/lib/components/fields/button/button.component.mjs +0 -41
  321. package/esm2020/lib/components/fields/calendar-field/calendar-field.component.mjs +0 -74
  322. package/esm2020/lib/components/fields/checkbox-field/checkbox-field.component.mjs +0 -46
  323. package/esm2020/lib/components/fields/currency-field/currency-field.component.mjs +0 -98
  324. package/esm2020/lib/components/fields/data-table/data-table.component.mjs +0 -386
  325. package/esm2020/lib/components/fields/dropdown-field/dropdown-field.component.mjs +0 -204
  326. package/esm2020/lib/components/fields/fields.module.mjs +0 -213
  327. package/esm2020/lib/components/fields/filters/filters.component.mjs +0 -203
  328. package/esm2020/lib/components/fields/input-number-field/input-number-field.component.mjs +0 -85
  329. package/esm2020/lib/components/fields/multiselect-field/multiselect-field.component.mjs +0 -50
  330. package/esm2020/lib/components/fields/percentage-field/percentage-field.component.mjs +0 -42
  331. package/esm2020/lib/components/fields/radio-button-field/radio-button-field.component.mjs +0 -48
  332. package/esm2020/lib/components/fields/search-field/search-field.component.mjs +0 -33
  333. package/esm2020/lib/components/fields/select-button-field/select-button-field.component.mjs +0 -20
  334. package/esm2020/lib/components/fields/text-field/text-field.component.mjs +0 -229
  335. package/esm2020/lib/components/fields/textarea-field/textarea-field.component.mjs +0 -81
  336. package/esm2020/lib/components/generic-error-modal/generic-error-modal.component.mjs +0 -36
  337. package/esm2020/lib/components/generic-error-modal/generic-error-modal.module.mjs +0 -20
  338. package/esm2020/lib/components/generic-modal/generic-modal.component.mjs +0 -66
  339. package/esm2020/lib/components/generic-modal/generic-modal.module.mjs +0 -20
  340. package/esm2020/lib/components/menu/menu.component.mjs +0 -305
  341. package/esm2020/lib/components/menu/menu.module.mjs +0 -20
  342. package/esm2020/lib/components/menu/sub-menus-list/sub-menus-list.component.mjs +0 -42
  343. package/esm2020/lib/components/panel/panel.component.mjs +0 -15
  344. package/esm2020/lib/components/panel/panel.module.mjs +0 -19
  345. package/esm2020/lib/components/score/score.component.mjs +0 -17
  346. package/esm2020/lib/components/top-bar/top-bar.component.mjs +0 -142
  347. package/esm2020/lib/components/top-bar/top-bar.module.mjs +0 -20
  348. package/esm2020/lib/models/data-table.model.mjs +0 -23
  349. package/esm2020/lib/models/http-response.model.mjs +0 -2
  350. package/esm2020/lib/models/menu-item.model.mjs +0 -2
  351. package/esm2020/lib/models/vector-app.model.mjs +0 -2
  352. package/esm2020/lib/services/base-dropdown.mjs +0 -2
  353. package/esm2020/lib/shared/shared.module.mjs +0 -19
  354. package/esm2020/lib/utils/mask.util.mjs +0 -76
  355. package/fesm2015/ngx-vector-components.mjs +0 -4798
  356. package/fesm2015/ngx-vector-components.mjs.map +0 -1
  357. package/fesm2020/ngx-vector-components.mjs +0 -4776
  358. package/fesm2020/ngx-vector-components.mjs.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,1208 +1,1220 @@
1
- # Changelog
2
-
3
- ## [4.91.0] (26/07/2023)
4
-
5
- ### Feature
6
-
7
- - Added `permission` in `parametersCancelTrips`.
8
-
9
- ## [4.90.0] (24/07/2023)
10
-
11
- ### Feature
12
-
13
- - Added `permission` in `profile.model.ts`.
14
-
15
- ## [4.89.0] (19/07/2023)
16
-
17
- ### Feature
18
-
19
- - Added `permission` in `profile.model.ts`.
20
-
21
- ## [4.88.0] (20/07/2023)
22
-
23
- ### Feature
24
-
25
- - Added `permission` in `profile.model.ts`.
26
-
27
- ## [4.87.0] (19/07/2023)
28
-
29
- ### Feature
30
-
31
- - Added `inputId` and `slotChar` inputs to `vector-text-field`;
32
- - Added `centered` input to `vector-currency-field`;
33
- - Added `skipMessages` input to `vector-generic-error-modal`.
34
-
35
- ## [4.86.1] (18/07/2023)
36
-
37
- ### Fix
38
-
39
- - Update `Label Mostrar Todos To Selecionar Todos` in `multiselect-field.component.html`
40
- - Added `Created optional parameter to control showToggleAll value` in `multiselect-field.component.html`
41
-
42
- ## [4.86.0] (16/07/2023)
43
-
44
- ### Feature
45
-
46
- - Added `permission` in `profile.model.ts`.
47
-
48
- ## [4.85.0] (12/07/2023)
49
-
50
- ### Feature
51
-
52
- - Added `permission` in `profile.model.ts`.
53
-
54
- ## [4.84.0] (11/07/2023)
55
-
56
- ### Feature
57
-
58
- - Added new function `onBackSpacePress` in `text-field.component.ts`.
59
-
60
- ## [4.83.0] (10/07/2023)
61
-
62
- ### Feature
63
-
64
- - Added `permission` in `profile.model.ts`.
65
-
66
- ## [4.82.1] (07/07/2023)
67
-
68
- ### Fix
69
-
70
- - Update `TextFieldComponent in parameter (blur) inside unmasked input element` in `text-field.component.html`
71
-
72
- ## [4.82.0] (28/06/2023)
73
-
74
- ### Feature
75
-
76
- - Updated `DropdownFieldComponent add parameter isNgContent` in `dropdown-field.component.ts`.
77
- - Updated `Add new <p-autocomplete> with <ng-template> when isNgContent is true` in `dropdown-field.component.html`.
78
-
79
- ## [4.81.0] (27/06/2023)
80
-
81
- ### Feature
82
-
83
- - Added `permission` in `profile.model.ts`.
84
-
85
- ## [4.80.0] (23/06/2023)
86
-
87
- ### Feature
88
-
89
- - Added `permission` in `profile.model.ts`.
90
-
91
- ## [4.79.0] (23/06/2023)
92
-
93
- ### Feature
94
-
95
- - Added `permission` in `profile.model.ts`.
96
-
97
- ## [4.78.0] (22/06/2023)
98
-
99
- ### Feature
100
-
101
- - Added `permission` in `profile.model.ts`
102
-
103
- ## [4.77.0] (22/06/2023)
104
-
105
- ### Feature
106
-
107
- - Added `permission` in `profile.model.ts`
108
-
109
- ## [4.76.0] (22/06/2023)
110
-
111
- ### Feature
112
-
113
- - Added `permission` in `profile.model.ts`.
114
-
115
- ## [4.75.0] (22/06/2023)
116
-
117
- ### Feature
118
-
119
- - Added `new object in http response to get errorMessage` `Http-response.model.ts`.
120
- - Added `fatherKey in listItem to better control over options that depends from other values` `list-item.model.ts`
121
-
122
- ## [4.74.2] (22/06/2023)
123
-
124
- ### Feature
125
-
126
- - Added `permission` in `profile.model.ts`.
127
-
128
- ## [4.74.1] (21/06/2023)
129
-
130
- ### Bugfix
131
-
132
- - Added `new return error in interceptor `Http-interceptor.ts`.
133
-
134
- ## [4.74.0] (20/06/2023)
135
-
136
- ### Feature
137
-
138
- - Added `permission` in `profile.model.ts`.
139
-
140
- ## [4.73.0] (14/06/2023)
141
-
142
- ### Feature
143
-
144
- - adding disabled feature to dropdown filter type `filter.component.ts`.
145
-
146
- ## [4.72.1] (12/05/2023)
147
-
148
- ### Bugfix
149
-
150
- - populatin user id in profile service, so even in QA it will work `profile.service.ts`.
151
-
152
- ## [4.72.0] (25/05/2023)
153
-
154
- ### Feature
155
-
156
- - Added `permission` in `profile.model.ts`
157
-
158
- ## [4.71.0] (24/05/2023)
159
-
160
- ### Feature
161
-
162
- - Added `permission` in `profile.model.ts`
163
-
164
- ## [4.70.4] (22/05/2023)
165
-
166
- ### Feature
167
-
168
- - Added help center icons with links to `vector-top-bar`;
169
-
170
- ## [4.70.3] (19/05/2023)
171
-
172
- ### Feature
173
-
174
- - Refactory `close` click link to `vector-top-bar`;
175
-
176
- ## [4.70.2] (19/05/2023)
177
-
178
- ### Feature
179
-
180
- - Added `close` click link to `vector-top-bar`;
181
-
182
- ## [4.70.1] (19/05/2023)
183
-
184
- ### Feature
185
-
186
- - Added `event` click to `vector-top-bar`;
187
-
188
- ## [4.70.0] (18/05/2023)
189
-
190
- ### Feature
191
-
192
- - Added `alphaNumericAndWhitespace` filter to `vector-text-field`;
193
-
194
- ## [4.69.2] (12/05/2023)
195
-
196
- ### Bugfix
197
-
198
- - Added adjustment in the list of records when using the scrollbar `vector-dropdown-field`.
199
-
200
- ## [4.69.1] (11/05/2023)
201
-
202
- ### Bugfix
203
-
204
- - Added IF when column type is STATUS_BAGDE, because before when the value was 0 it was empty `vector-data-table`.
205
-
206
- ## [4.69.0] (06/05/2023)
207
-
208
- ### Feature
209
-
210
- - Added translations to fixed labels on `vector-data-table` and `vector-filters`.
211
-
212
- ## [4.68.0] (06/05/2023)
213
-
214
- ### Feature
215
-
216
- - Added help central icons to `vector-top-bar`.
217
-
218
- ## [4.67.0] (30/04/2023)
219
-
220
- ### Feature
221
-
222
- - Added `vector-score` component.
223
-
224
- ## [4.66.0] (30/04/2023)
225
-
226
- ### Feature
227
-
228
- - Added `NotificationsService`;
229
- - Added `VectorNotification` model;
230
- - Added notifications popup on `vector-top-bar`.
231
-
232
- ## [4.65.0] (28/04/2023)
233
-
234
- ### Feature
235
-
236
- - Added `permission` in `profile.model.ts`
237
-
238
- ## [4.64.0] (12/04/2023)
239
-
240
- ### Feature
241
-
242
- - Added `translate options` into `crud-footer` component in lib ngx-vector-components.
243
-
244
- ## [4.63.0] (05/04/2023)
245
-
246
- ### Feature
247
-
248
- - Added `apps` input for `vector-menu`, allowing rendering of custom apps.
249
- - Added `onTabSelected` for `vector-data-table`;
250
-
251
- ### Bugfix
252
-
253
- - Fixed multiple lazy load requests on data tables with filters and tabs.
254
-
255
- ### Bugfix
256
-
257
- ## [4.62.1] (04/04/2023)
258
-
259
- - Added validation to `filters.component` to not make initial search in case there's a list item or default value invalid.
260
-
261
- ## [4.62.0] (03/04/2023)
262
-
263
- ### Feature
264
-
265
- - Added `currencyPrefix` and `localePrefix` properties in `currency filed.component`
266
-
267
- ## [4.61.0] (29/03/2023)
268
-
269
- ### Feature
270
-
271
- - Added `permission` in messageServices
272
-
273
- ## [4.60.0] (22/03/2023)
274
-
275
- ### Feature
276
-
277
- - Added `permission` in `profile.model.ts`
278
-
279
- ## [4.59.0] (24/02/2023)
280
-
281
- ### Feature
282
-
283
- - Added `permission` in `profile.model.ts`
284
- - Added `disabled` in `vector-input-number.ts`
285
-
286
- ## [4.58.0] (22/02/2023)
287
-
288
- ### Feature
289
-
290
- - Added `CUIT_MASK` in `mask.util.ts`
291
-
292
- ## [4.57.0] (16/02/2023)
293
-
294
- ### Feature
295
-
296
- - Added cols and rows dynamic in `vector-textarea-field.ts`
297
-
298
- ## [4.56.0] (15/02/2023)
299
-
300
- ### Feature
301
-
302
- - Added mask in `mask.util.ts`
303
-
304
- ## [4.55.0] (12/02/2023)
305
-
306
- ### Feature
307
-
308
- - Added `leftLabel` to `vector-text-field`.
309
-
310
- ### Bugfix
311
-
312
- - Added padding-top to `vector-generic-modal` content to improve layout.
313
- - Made grid classes for the action buttons of `vector-generic-modal` dynamic to fill the column if it is a single button.
314
-
315
- ## [4.54.0] (08/02/2023)
316
-
317
- ## [4.53.0] (06/02/2023)
318
-
319
- ### Feature
320
-
321
- - Added permissions in `profile.model.ts`
322
-
323
- ## [4.52.0] (28/01/2023)
324
-
325
- ### Feature
326
-
327
- - Added `icon` property to `ListItem`;
328
- - Added icon option for `vector-data-table` tabs.
329
-
330
- ## [4.51.0] (28/01/2023)
331
-
332
- ### Feature
333
-
334
- - Added "info" value for `Status` enum;
335
- - Added "info" color for `TEXT_BADGE` column on `data-table`;
336
- - Added `STACK_BADGE` column type for `data-table`;
337
- - Added `DATE` column type for `data-table`;
338
- - Added `CURRENCY` column type for `data-table`;
339
- - Auto select rows marked with `select: true` on `data-table`;
340
- - Added filter option for `vector-multiselect-field`.
341
-
342
- ### Bugfix
343
-
344
- - Changed `appendTo` to `body` on `vector-multiselect-field`;
345
- - Changed styles for `vector-multiselect-field` to match `vector-dropdown-field` styles;
346
- - Fixed style issue regarding `filters` search button that prevented screens rendering correctly on first render.
347
-
348
- ## [4.50.0] (25/01/2023)
349
-
350
- ### Feature
351
-
352
- - Adding `permission` in tripService.
353
-
354
- ## [4.49.0] (13/01/2023)
355
-
356
- ### Feature
357
-
358
- - Added mask for hours minutes `00:00` in `mask-util`
359
-
360
- ### Bugfix
361
-
362
- - Erased pagedSuggestions restart in line 140 of `dropdown-field-component.ts` because when the data was reloaded, the dropdown fields were blank
363
-
364
- # [4.48.0] (11/01/2023)
365
-
366
- ### Feature
367
-
368
- - Added permissions in `product-reception-list.component.ts`
369
-
370
- ## [4.47.1] (18/11/2022)
371
-
372
- ### Bugfix
373
-
374
- - Adjust `api.ipify` in geolocation.service
375
-
376
- ## [4.47.0] (28/12/2022)
377
-
378
- ### Feature
379
-
380
- - Added permissions in `profile.model.ts`
381
-
382
- ## [4.46.0] (19/12/2022)
383
-
384
- ### Feature
385
-
386
- - Adding `permission` in trips.
387
-
388
- ## [4.45.0] (08/12/2022)
389
-
390
- ### Feature
391
-
392
- - Adding `permission Geofence` in profileService.
393
- - Adding `AlterationHistory` in `vector-crud-history` and `Insert typeOfModification` in `crud-history.model`
394
-
395
- ## [4.44.4] (18/11/2022)
396
-
397
- ### Bugfix
398
-
399
- - Adjust `name "carteira digital for conta digital` in menu-vector
400
-
401
- ## [4.44.3] (18/11/2022)
402
-
403
- ### Bugfix
404
-
405
- - Adjust `open modal in icon termOfUse` in menu-vector
406
-
407
- ## [4.44.2] (16/11/2022)
408
-
409
- ### Bugfix
410
-
411
- - Adjust `password` in validation
412
-
413
- ## [4.44.1] (01/11/2022)
414
-
415
- ### Bugfix
416
-
417
- - Adjust `permission approveVector and approveETCD` in profileService
418
-
419
- ## [4.44.0] (28/10/2022)
420
-
421
- ### Feature
422
-
423
- - Adding `permission` in groups.
424
-
425
- ## [4.43.0] (28/10/2022)
426
-
427
- ### Feature
428
-
429
- - Adding `permission` in profileService.
430
-
431
- ## [4.42.1] (27/10/2022)
432
-
433
- ### Bugfix
434
-
435
- - Added fixed `vector-checkbox-field` error validation
436
-
437
- ## [4.42.0] (26/10/2022)
438
-
439
- ### Feature
440
-
441
- - Adding `columns expansible` in data-table.
442
-
443
- ## [4.41.1] (19/10/2022)
444
-
445
- ### Bugfix
446
-
447
- - Adding search action in `SELECT-BUTTON` filter
448
-
449
- ## [4.41.0] (15/10/2022)
450
-
451
- ### Feature
452
-
453
- - Added `HistoricalChangesNews` news permission
454
-
455
- ## [4.40.1] (14/10/2022)
456
-
457
- ### Bugfix
458
-
459
- - Added fixed "pt-BR" locale to `vector-currency-field`.
460
-
461
- ## [4.40.0] (14/10/2022)
462
-
463
- ### Feature
464
-
465
- - Added `maxDecimalInput `in `vector-currency-field`.
466
-
467
- ## [4.39.2] (13/10/2022)
468
-
469
- ### Bugfix
470
-
471
- - Fixed `vector-currency-field` behavior when inputing values when `isBankingField` is set to `true`.
472
-
473
- ## [4.39.1] (13/10/2022)
474
-
475
- ### Feature
476
-
477
- - adjusted bug in dataKey from `data-table.component`
478
-
479
- ## [4.39.0] (12/10/2022)
480
-
481
- ### Feature
482
-
483
- - Added disabled option for checkBox in `Datatbles.component`.
484
-
485
- ## [4.38.1] (11/10/2022)
486
-
487
- ### Feature
488
-
489
- - Fixed `expansible` feature for data-table.
490
-
491
- ## [4.38.0] (11/10/2022)
492
-
493
- ### Feature
494
-
495
- - Added row expand in `datatable.component`.
496
-
497
- ## [4.37.2] (07/10/2022)
498
-
499
- ### BugFix
500
-
501
- - Correction in `auth-service`.
502
-
503
- ## [4.37.1] (07/10/2022)
504
-
505
- ### BugFix
506
-
507
- - Correction in `auth-service`.
508
-
509
- ## [4.37.0] (07/10/2022)
510
-
511
- ### BugFix
512
-
513
- - Correction in `auth-service`.
514
-
515
- ## [4.36.0] (06/10/2022)
516
-
517
- ### Feature
518
-
519
- - Added service change `AddPermisLastNameLocation ` profile permission
520
-
521
- ## [4.35.0] (05/10/2022)
522
-
523
- ### Feature
524
-
525
- - Added service change `LinkedCnpj` top bar components
526
-
527
- ## [4.34.0] (03/10/2022)
528
-
529
- ### Feature
530
-
531
- - Added `TripOfferShow` profile permission
532
-
533
- ## [4.33.0] (02/10/2022)
534
-
535
- ### Feature
536
-
537
- - Added `Supply` profile permission.
538
-
539
- # Changelog
540
-
541
- ## [4.32.0] (30/09/2022)
542
-
543
- ### Feature
544
-
545
- - Added `ETCD` profile permission.
546
-
547
- ## [4.31.0] (30/09/2022)
548
-
549
- ### Feature
550
-
551
- - Added `RECEPTION_PRODUCT` profile permission.
552
-
553
- # Changelog
554
-
555
- ## [4.30.0] (30/09/2022)
556
-
557
- ### Feature
558
-
559
- - Added `Parameters` profile permission.
560
-
561
- ## [4.29.0] (27/09/2022)
562
-
563
- ### Feature
564
-
565
- - Added `max-width` and `line-break` support for `vector-generic-modal`.
566
-
567
- ## [4.28.0] (22/09/2022)
568
-
569
- ### Feature
570
-
571
- - Added `page` in `datatableComponent` to use in datatable fintech
572
-
573
- ## [4.27.0] (21/09/2022)
574
-
575
- ### Feature
576
-
577
- - Added `APPROVE_VECTOR` profile permission, ProfileModuleActionType.
578
- - Added `APPROVE_ETCD` profile permission, ProfileModuleActionType.
579
- - Added `DIGITAL_DISCHARGE` profile permission, ProfileModuleType
580
-
581
- ## [4.26.0] (15/09/2022)
582
-
583
- ### Feature
584
-
585
- - Added `userId` in `profile.service`.
586
-
587
- ## [4.25.1] (15/09/2022)
588
-
589
- ### Bugfix
590
-
591
- - fix `CREDIT_UNIT` profile permission.
592
-
593
- ## [4.25.0] (15/09/2022)
594
-
595
- ### Feature
596
-
597
- - Added `CREDIT` profile permission.
598
- - Added `CREDIT_UNIT` profile permission.
599
-
600
- ## [4.24.0] (14/09/2022)
601
-
602
- ### Feature
603
-
604
- - Added `News` profile permission.
605
-
606
- ## [4.23.0] (14/09/2022)
607
-
608
- ### Feature
609
-
610
- - Added `step` support for `vector-percentage-field`.
611
-
612
- ### Bugfix
613
-
614
- - Fixed `vector-radio-button` alignment.
615
-
616
- ## [4.22.4] (09/09/2022)
617
-
618
- ### BugFix
619
-
620
- - change search document format
621
-
622
- ## [4.22.3] (06/09/2022)
623
-
624
- ### BugFix
625
-
626
- - Hide button after click dropdown
627
-
628
- ## [4.22.2] (06/09/2022)
629
-
630
- ### BugFix
631
-
632
- - dropdown change for choosing accounts, whenever you have more than 1 account, dropdown appears on the active account
633
-
634
- ## [4.22.1] (06/09/2022)
635
-
636
- ### BugFix
637
-
638
- - added `onHeaderCheckboxToggle` in `datatableComponent`
639
-
640
- ## [4.22.0] (05/09/2022)
641
-
642
- ### Feature
643
-
644
- - added `cpf-cnpj-validator` in `utils`, added `plate-mask` in `mask-utils`, added permissions in `profile.model.ts`.
645
-
646
- ## [4.21.0] (30/08/2022)
647
-
648
- ### Feature
649
-
650
- - added `profileName` to user info in `profile.service.ts`.
651
-
652
- ## [4.20.1] (15/08/2022)
653
-
654
- ### Bugfix
655
-
656
- - adjusted `data-table` to not keep start property when clicking search, validation in `data-table.component.ts`.
657
-
658
- ## [4.20.0] (15/08/2022)
659
-
660
- ### Features
661
-
662
- - Added `input-number` to `Componentes`
663
-
664
- ## [4.19.0] (13/08/2022)
665
-
666
- ### Features
667
-
668
- - Added `TEXT_BADGE` type to `TableColumnType` to render `vector-badge` on table.
669
-
670
- ### Bugfixes
671
-
672
- - Fixed filters patch from query params.
673
-
674
- ## [4.18.0] (05/08/2022)
675
-
676
- ### Features
677
-
678
- - Added `CustomButtons` to `vector-data-table` so the data-tables can have more buttons if needed.
679
-
680
- ## [4.17.0] (04/08/2022)
681
-
682
- ### Features
683
-
684
- - Added `filterMultiselect` to `FiltersType` to search for multiple selection
685
-
686
- ## [4.16.1] (01/08/2022)
687
-
688
- ### Bugfixes
689
-
690
- - Fixed `getCodes` function from `ObjectUtil` to support inner JSON objects.
691
-
692
- ## [4.16.0] (31/07/2022)
693
-
694
- ### Features
695
-
696
- - Added `getCodes` to `ObjectUtil` to mutate the given object properties to keep only the `code` property.
697
-
698
- ### Bugfixes
699
-
700
- - `FiltersComponent` fixed to patch the query params values correctly.
701
-
702
- ## [4.15.0] (01/08/2022)
703
-
704
- ### Features
705
-
706
- - Added function to add new account fintech.
707
-
708
- ## [4.14.0] (22/07/2022)
709
-
710
- ### Features
711
-
712
- - Added `AlterationHistory` in `vector-crud-history` to use the logtech pattern.
713
-
714
- ## [4.13.0] (18/07/2022)
715
-
716
- ### Features
717
-
718
- - Added `selectionType` in `vector-data-table` to add `checkboxbutton` or `radionbutton` in table.
719
-
720
- ### Refactor
721
-
722
- - Refactor `generic-modal` to accept news parameters and output events for make more dynamically.
723
-
724
- ## [4.12.0] (18/07/2022)
725
-
726
- ### Features
727
-
728
- - Added `multipleCheck` in `vector-checkbox-field` to add multiple options.
729
-
730
- ## [4.11.2] (16/07/2022)
731
-
732
- ### Bugfixes
733
-
734
- - Fixed `radio-button` to show invalid status color when touched.
735
-
736
- ## [4.11.1] (15/07/2022)
737
-
738
- ### Bugfixes
739
-
740
- - Fixed `getUserId` in `storageService` to get correctly user id.
741
-
742
- ## [4.11.0] (15/07/2022)
743
-
744
- ### Features
745
-
746
- - added `disabled` on `vector-range-field` to disabled field when insert true.
747
- - added `disabled` on `vector-currency-field` to disabled field when insert true.
748
-
749
- ## [4.10.5] (14/07/2022)
750
-
751
- ### Bugfixes
752
-
753
- - Fixed `doMaskString` on `MaskUtil` to safely return a empty `string` when receiving an empty input.
754
-
755
- ## [4.10.4] (13/07/2022)
756
-
757
- ### Bugfixes
758
-
759
- - Fixed excel and pdf display button in `vector-data-table`.
760
-
761
- ## [4.10.3] (13/07/2022)
762
-
763
- ### Bugfixes
764
-
765
- - Fixed sort column without actions in `vector-data-table`.
766
-
767
- ## [4.10.2] (10/07/2022)
768
-
769
- ### Bugfixes
770
-
771
- - Fixed arrow icon in(Sort column) `vector-data-table`
772
-
773
- ## [4.10.1] (10/07/2022)
774
-
775
- ### Bugfixes
776
-
777
- - Fixed autoStart `vector-data-table`
778
-
779
- ## [4.9.0] (10/07/2022)
780
-
781
- ### Features
782
-
783
- - Added `MASK` type to `TableColumn` enum and implemented it on `data-table`;
784
- - Added `FieldType` `DATE_RANGE` to `data-table` filters.
785
-
786
- ## [4.8.0] (09/07/2022)
787
-
788
- ### Features
789
-
790
- - Added `notSortable` property do `TableColumn` and implemented it on `data-table`.
791
-
792
- ## [4.7.1] (09/07/2022)
793
-
794
- ### BugFixes
795
-
796
- - Fixed `getById` on `getSugestionsOfDropDown`.
797
-
798
- ## [4.7.0] (08/07/2022)
799
-
800
- ### BugFixes
801
-
802
- - Added new Permissions in `profile.model.ts`.
803
-
804
- ### Features
805
-
806
- - Added `profileTypeItens` BehaviourSubject in `profile.serivice.ts`.
807
-
808
- ## [4.6.3] (08/07/2022)
809
-
810
- ### Bugfixes
811
-
812
- - fixed `menu-label` min-width to align correctly items.
813
-
814
- ## [4.6.2] (07/07/2022)
815
-
816
- ### Bugfixes
817
-
818
- - fixed `top-bar` to display vector user first name.
819
-
820
- ## [4.6.1] (05/07/2022)
821
-
822
- ### Bugfixes
823
-
824
- - `percentage field component` added minFractionDigits and maxFractionDigits properties to configure decimal values
825
-
826
- ## [4.6.0] (06/07/2022)
827
-
828
- ### Features
829
-
830
- - Added `goBackHidden` parameter to hidden goBackButton in `vector-crud-footer`.
831
-
832
- ## [4.5.1] (30/06/2022)
833
-
834
- ### Bugfixes
835
-
836
- - `menu` changed admin menu to show only fintech admin.
837
-
838
- ## [4.5.0] (29/06/2022)
839
-
840
- ### Features
841
-
842
- - `vector-filters` changed to read the url queryParams to set default values.
843
-
844
- ## [4.4.0] (28/06/2022)
845
-
846
- ### Features
847
-
848
- - Added `isExternalUrl` in `http-interceptor.ts`;
849
-
850
- ## [4.3.0] (27/06/2022)
851
-
852
- ### Features
853
-
854
- - Added `HttpDataResponse` in model `http-response.model.ts`;
855
-
856
- ## [4.2.1] (27/06/2022)
857
-
858
- ### Bug Fixes
859
-
860
- - Added `ADD_REGION` in model `profile.model.ts`;
861
- - Added `SHOW_REGION` in model `profile.model.ts`;
862
- - Added `EDIT_REGION` in model `profile.model.ts`;
863
-
864
- ## [4.2.0] (24/06/2022)
865
-
866
- ### Features
867
-
868
- - Added `CUSTOM_STYLES` in TableColumnType on `data-table-component`;
869
- - Added `textFieldClass` in TableColumn on `data-table-component`;
870
-
871
- ## [4.1.1] (23/06/2022)
872
-
873
- ### Bug Fixes
874
-
875
- - Fixed `FilterChangedEvent` external model to use in all project.
876
-
877
- ## [4.1.0] (23/06/2022)
878
-
879
- ### Features
880
-
881
- - Added `onFilterChanged` event on `filters` and `data-table`;
882
-
883
- ### Bug Fixes
884
-
885
- - Fixed `filters` to validate required fields before searching.
886
-
887
- ## [4.0.0] (21/06/2022)
888
-
889
- ### Breaking Changes
890
-
891
- - Added `getById` on `BaseDropdown` interface.
892
-
893
- ### Bug Fixes
894
-
895
- - Fixed `dropdown` behavior with and without `minLengthToService` set;
896
- - Fixed `dropdown` search on suggestions to ignore case;
897
- - Fixed `data-table` header z-index to keep below other fixed elements (e.g `vector-footer`);
898
- - Fixed `multiselect` to get the correct item property for value.
899
-
900
- ## [3.6.1] (15/06/2022)
901
-
902
- ### Bug Fixes
903
-
904
- - Changed overflow behavior of tabview to scroll.
905
- -
906
-
907
- ## [3.6.0] (14/06/2022)
908
-
909
- ### Features
910
-
911
- - Added selection to data-table component.
912
- - Added hasAction input, now can hide action column.
913
-
914
- ## [3.5.0] (09/06/2022)
915
-
916
- ### Features
917
-
918
- - Added `disabled` property on `ListItem`;
919
- - Added `onChange` event on `vector-multiselect-field`.
920
-
921
- ## [3.4.0] (26/05/2022)
922
-
923
- ### Features
924
-
925
- - Added `inputClassName` property to `vector-currency-field`;
926
-
927
- ### Bug Fixes
928
-
929
- - Fixed `vector-button` style property type;
930
-
931
- ## [3.3.1] (25/05/2022)
932
-
933
- ### Bug Fixes
934
-
935
- - Fixed `fullName` validation of `Utils`, changed invalid error message.
936
-
937
- ## [3.3.0] (24/05/2022)
938
-
939
- ### Features
940
-
941
- - Added min length to call the dropdown service query.
942
-
943
- ## [3.2.0] (24/05/2022)
944
-
945
- ### Features
946
-
947
- - Added the ability to add a button column to the `vector-data-table` component that calls a custom function.
948
- - Added the possibility to hide the actions column of the component `vector-data-table`.
949
-
950
- ## [3.1.1] (20/05/2022)
951
-
952
- ### Bug Fixes
953
-
954
- - Fixed `vector-button` to fill 100% of container.
955
- - Fixed `BOLETO_PATTERN` in `MaskUtils` for accept a digit more.
956
-
957
- ## [3.1.0] (19/05/2022)
958
-
959
- ### Features
960
-
961
- - added `isBankingField` input to `vector-currency-field`.
962
-
963
- ## [3.0.2] (19/05/2022)
964
-
965
- ### Bug Fixes
966
-
967
- - Fixed `vector-button` disable behavior.
968
-
969
- ## [3.0.1] (08/05/2022)
970
-
971
- ### Bug Fixes
972
-
973
- - Fixed peer dependency version.
974
-
975
- ## [3.0.0] (08/05/2022)
976
-
977
- ### Breaking Changes
978
-
979
- - Changed `mixins` to a separated `mixins.scss` file.
980
-
981
- ### Features
982
-
983
- - Added generic guard to check if crud list has items;
984
- - Added generic resolver to get the selected crud item from the list;
985
- - Added generic resolver to get the selected crud item history from the list;
986
- - Added `vector-badge` component;
987
- - Added `vector-crud-header` component;
988
- - Added `vector-select-button-field` component;
989
- - Added `formatDocument` pipe;
990
- - Added `VIRTUAL_CARRIER` view type;
991
- - Added styles input to `vector-button` to apply styles to the `<button>` tag;
992
- - Added dynamic filters to dropdown;
993
- - Breadcrumb now has clickable links to navigate to route fragments.
994
-
995
- ### Bug Fixes
996
-
997
- - Menu fixed to navigate to menu route even if it has children;
998
- - Changed `vector-data-table` appearence to match new design;
999
- - Fixed `vector-filters` to hide the search button when there is no visible filters;
1000
- - Removed unnecessary `variables.scss` references throughout the project.
1001
-
1002
- ## [2.14.0] (05/05/2022)
1003
-
1004
- ### Features
1005
-
1006
- - TokenIsPresentGuard changed to support both storage and queryParams token.
1007
-
1008
- ### Bug Fixes
1009
-
1010
- - MenuComponent fixed to take priority on `frameUrl` to make sure `route` can still be used to build the breadcrumbs if needed;
1011
- - Made some changes to the accordion styles.
1012
-
1013
- ## [2.13.1] (28/04/2022)
1014
-
1015
- ### Bug Fixes
1016
-
1017
- - Fix conflict merge with versions 2.12.0 with 2.13.0.
1018
-
1019
- ## [2.13.0] (27/04/2022)
1020
-
1021
- ### Features
1022
-
1023
- - Added input valueMovimented in vector-range-value component.
1024
-
1025
- ### Bug Fixes
1026
-
1027
- - Fix Sent API address for endpoint.
1028
- - Fix export GeolocationService.
1029
-
1030
- ## [2.12.0] (26/04/2022)
1031
-
1032
- ### Features
1033
-
1034
- - MenuItem changed to accept both singular and array of permissions.
1035
-
1036
- ## [2.11.0] (20/04/2022)
1037
-
1038
- ### Features
1039
-
1040
- - Added currency-input rounded option.
1041
-
1042
- ### Bug Fixes
1043
-
1044
- - Fixed breadcrumb responsive layout;
1045
- - Fixed radio-button responsive layout;
1046
- - Changed menu backgroud to white;
1047
- - Changed accordion styles.
1048
-
1049
- ## [2.10.0] (19/04/2022)
1050
-
1051
- ### Features
1052
-
1053
- - Added login info and geolocation to share: date, time, device info, ip, hostname, latitude, longitude, accuracy.
1054
-
1055
- ## [2.8.0] (08/04/2022)
1056
-
1057
- ### Features
1058
-
1059
- - Added containsLettersAndNumbers validation.
1060
-
1061
- ### Fix
1062
-
1063
- - Fix currency-field min and max value don't work.
1064
-
1065
- ## [2.7.1] (08/04/2022)
1066
-
1067
- ### Fix
1068
-
1069
- - Fix text-field don't limit to alpha numeric with alphanumeric true.
1070
-
1071
- ## [2.7.0] (04/04/2022)
1072
-
1073
- ### Features
1074
-
1075
- - Added alphaNumeric option to text-field.
1076
-
1077
- ### Bug Fixes
1078
-
1079
- - Fix top-bar to hidden notification if is fintech.
1080
- - Fix top-bar changed label for change password.
1081
- - Fix toggle menu when keydown escape.
1082
-
1083
- ## [2.6.0] (30/03/2022)
1084
-
1085
- ### Features
1086
-
1087
- - Added directive min and max for percentage-field.
1088
- - Added notSequentialNumbers validator.
1089
- - Added firstLetterIsUppercase validator.
1090
-
1091
- ### Bug Fixes
1092
-
1093
- - Fix menu service for don't delete father.
1094
-
1095
- ## [2.5.1] (24/03/2022)
1096
-
1097
- ### Bug Fixes
1098
-
1099
- - Fix input checkbox don't mark when click on label.
1100
-
1101
- ## [2.5.0] (21/03/2022)
1102
-
1103
- ### Features
1104
-
1105
- - Added menu notifications count
1106
-
1107
- ### Bug Fixes
1108
-
1109
- - Fixed gray colors variables names;
1110
- - Fixed topbar to show Fintech menus only when is Fintech;
1111
- - Fixed permissions request to save permissions on storage before using them.
1112
- - Calendar-field "min" and "max" properties set optional.
1113
-
1114
- ## [2.4.0] (20/03/2022)
1115
-
1116
- ### Features
1117
-
1118
- - Added min and max validation functions to forms;
1119
- - Added onlyActivePipe.
1120
-
1121
- ### Bug Fixes
1122
-
1123
- - Fixed menu service to hide parent menus when no children is left after filtering by permission;
1124
- - Changed data-table scrollHeight from 350px to 300px to prevent unnecessary scrolling on viewport;
1125
- - Added toast to unexpected errors from the API.
1126
-
1127
- ## [2.3.0] (18/03/2022)
1128
-
1129
- ### Features
1130
-
1131
- - Added vector-field-error-message for showing when field is invalid.
1132
-
1133
- ### Bug Fixes
1134
-
1135
- - Fix input calendar invalid showing incorrect;
1136
- - Fix input dropdown invalid showing incorrect;
1137
- - Fix Top-bar now show correct account information.
1138
-
1139
- ## [2.2.2] (17/03/2022)
1140
-
1141
- ### Feature
1142
-
1143
- - Added new default color for text in \_variables.scss.
1144
- - Fix Portals items in menu showing incorrect.
1145
-
1146
- ## [2.2.1] (17/03/2022)
1147
-
1148
- ### Bug Fixes
1149
-
1150
- - Fix Portals items menu with switched color.
1151
- - Added directive in vector-top-var(fintech, service);
1152
- - Fix Menu showing without account information in fintech vector-top-bar;
1153
-
1154
- ## [2.2.0] (10/03/2022)
1155
-
1156
- ### Features
1157
-
1158
- - Added textarea field;
1159
- - Added sessionStorage functions to StorageService;
1160
- - Added IFrame opening option to menu items;
1161
- - Added inversed colors vector logo.
1162
-
1163
- ### Bug Fixes
1164
-
1165
- - Fixed dropdown code comparision on filter to support any format;
1166
- - Fixed data table auto load when using virtual pagination;
1167
- - Fixed breadcrumb font-weight;
1168
- - Fixed menu icon filter.
1169
-
1170
- ## [2.0.3] (01/03/2022)
1171
-
1172
- ### Bug Fixes
1173
-
1174
- - Fixed AuthService url to support multiple projects with different endpoint prefixes.
1175
-
1176
- ## [2.0.2] (01/03/2022)
1177
-
1178
- ### Bug Fixes
1179
-
1180
- - Fixed old variable
1181
-
1182
- ## [2.0.1] (01/03/2022)
1183
-
1184
- ### Bug Fixes
1185
-
1186
- - Fixed missing styles
1187
-
1188
- ## [2.0.0] (01/03/2022)
1189
-
1190
- ### Breaking Changes
1191
-
1192
- - CSS variables changed declaration form.
1193
-
1194
- ## [1.0.2] (01/03/2022)
1195
-
1196
- ### Bug Fixes
1197
-
1198
- - Changed text field filter to validate only when on "only text" mode.
1199
-
1200
- ## [1.0.1] (27/02/2022)
1201
-
1202
- ### Bug Fixes
1203
-
1204
- ### Features
1205
-
1206
- ### Breaking Changes
1207
-
1208
- - Library publishing
1
+ # Changelog
2
+
3
+ ## [4.93.0] (01/08/2023)
4
+
5
+ ### Feature
6
+
7
+ - Update version angular.
8
+
9
+ ## [4.92.0] (26/07/2023)
10
+
11
+ ### Feature
12
+
13
+ - Added `permission` in `PriceTaking`.
14
+
15
+ ## [4.91.0] (26/07/2023)
16
+
17
+ ### Feature
18
+
19
+ - Added `permission` in `parametersCancelTrips`.
20
+
21
+ ## [4.90.0] (24/07/2023)
22
+
23
+ ### Feature
24
+
25
+ - Added `permission` in `profile.model.ts`.
26
+
27
+ ## [4.89.0] (19/07/2023)
28
+
29
+ ### Feature
30
+
31
+ - Added `permission` in `profile.model.ts`.
32
+
33
+ ## [4.88.0] (20/07/2023)
34
+
35
+ ### Feature
36
+
37
+ - Added `permission` in `profile.model.ts`.
38
+
39
+ ## [4.87.0] (19/07/2023)
40
+
41
+ ### Feature
42
+
43
+ - Added `inputId` and `slotChar` inputs to `vector-text-field`;
44
+ - Added `centered` input to `vector-currency-field`;
45
+ - Added `skipMessages` input to `vector-generic-error-modal`.
46
+
47
+ ## [4.86.1] (18/07/2023)
48
+
49
+ ### Fix
50
+
51
+ - Update `Label Mostrar Todos To Selecionar Todos` in `multiselect-field.component.html`
52
+ - Added `Created optional parameter to control showToggleAll value` in `multiselect-field.component.html`
53
+
54
+ ## [4.86.0] (16/07/2023)
55
+
56
+ ### Feature
57
+
58
+ - Added `permission` in `profile.model.ts`.
59
+
60
+ ## [4.85.0] (12/07/2023)
61
+
62
+ ### Feature
63
+
64
+ - Added `permission` in `profile.model.ts`.
65
+
66
+ ## [4.84.0] (11/07/2023)
67
+
68
+ ### Feature
69
+
70
+ - Added new function `onBackSpacePress` in `text-field.component.ts`.
71
+
72
+ ## [4.83.0] (10/07/2023)
73
+
74
+ ### Feature
75
+
76
+ - Added `permission` in `profile.model.ts`.
77
+
78
+ ## [4.82.1] (07/07/2023)
79
+
80
+ ### Fix
81
+
82
+ - Update `TextFieldComponent in parameter (blur) inside unmasked input element` in `text-field.component.html`
83
+
84
+ ## [4.82.0] (28/06/2023)
85
+
86
+ ### Feature
87
+
88
+ - Updated `DropdownFieldComponent add parameter isNgContent` in `dropdown-field.component.ts`.
89
+ - Updated `Add new <p-autocomplete> with <ng-template> when isNgContent is true` in `dropdown-field.component.html`.
90
+
91
+ ## [4.81.0] (27/06/2023)
92
+
93
+ ### Feature
94
+
95
+ - Added `permission` in `profile.model.ts`.
96
+
97
+ ## [4.80.0] (23/06/2023)
98
+
99
+ ### Feature
100
+
101
+ - Added `permission` in `profile.model.ts`.
102
+
103
+ ## [4.79.0] (23/06/2023)
104
+
105
+ ### Feature
106
+
107
+ - Added `permission` in `profile.model.ts`.
108
+
109
+ ## [4.78.0] (22/06/2023)
110
+
111
+ ### Feature
112
+
113
+ - Added `permission` in `profile.model.ts`
114
+
115
+ ## [4.77.0] (22/06/2023)
116
+
117
+ ### Feature
118
+
119
+ - Added `permission` in `profile.model.ts`
120
+
121
+ ## [4.76.0] (22/06/2023)
122
+
123
+ ### Feature
124
+
125
+ - Added `permission` in `profile.model.ts`.
126
+
127
+ ## [4.75.0] (22/06/2023)
128
+
129
+ ### Feature
130
+
131
+ - Added `new object in http response to get errorMessage` `Http-response.model.ts`.
132
+ - Added `fatherKey in listItem to better control over options that depends from other values` `list-item.model.ts`
133
+
134
+ ## [4.74.2] (22/06/2023)
135
+
136
+ ### Feature
137
+
138
+ - Added `permission` in `profile.model.ts`.
139
+
140
+ ## [4.74.1] (21/06/2023)
141
+
142
+ ### Bugfix
143
+
144
+ - Added `new return error in interceptor `Http-interceptor.ts`.
145
+
146
+ ## [4.74.0] (20/06/2023)
147
+
148
+ ### Feature
149
+
150
+ - Added `permission` in `profile.model.ts`.
151
+
152
+ ## [4.73.0] (14/06/2023)
153
+
154
+ ### Feature
155
+
156
+ - adding disabled feature to dropdown filter type `filter.component.ts`.
157
+
158
+ ## [4.72.1] (12/05/2023)
159
+
160
+ ### Bugfix
161
+
162
+ - populatin user id in profile service, so even in QA it will work `profile.service.ts`.
163
+
164
+ ## [4.72.0] (25/05/2023)
165
+
166
+ ### Feature
167
+
168
+ - Added `permission` in `profile.model.ts`
169
+
170
+ ## [4.71.0] (24/05/2023)
171
+
172
+ ### Feature
173
+
174
+ - Added `permission` in `profile.model.ts`
175
+
176
+ ## [4.70.4] (22/05/2023)
177
+
178
+ ### Feature
179
+
180
+ - Added help center icons with links to `vector-top-bar`;
181
+
182
+ ## [4.70.3] (19/05/2023)
183
+
184
+ ### Feature
185
+
186
+ - Refactory `close` click link to `vector-top-bar`;
187
+
188
+ ## [4.70.2] (19/05/2023)
189
+
190
+ ### Feature
191
+
192
+ - Added `close` click link to `vector-top-bar`;
193
+
194
+ ## [4.70.1] (19/05/2023)
195
+
196
+ ### Feature
197
+
198
+ - Added `event` click to `vector-top-bar`;
199
+
200
+ ## [4.70.0] (18/05/2023)
201
+
202
+ ### Feature
203
+
204
+ - Added `alphaNumericAndWhitespace` filter to `vector-text-field`;
205
+
206
+ ## [4.69.2] (12/05/2023)
207
+
208
+ ### Bugfix
209
+
210
+ - Added adjustment in the list of records when using the scrollbar `vector-dropdown-field`.
211
+
212
+ ## [4.69.1] (11/05/2023)
213
+
214
+ ### Bugfix
215
+
216
+ - Added IF when column type is STATUS_BAGDE, because before when the value was 0 it was empty `vector-data-table`.
217
+
218
+ ## [4.69.0] (06/05/2023)
219
+
220
+ ### Feature
221
+
222
+ - Added translations to fixed labels on `vector-data-table` and `vector-filters`.
223
+
224
+ ## [4.68.0] (06/05/2023)
225
+
226
+ ### Feature
227
+
228
+ - Added help central icons to `vector-top-bar`.
229
+
230
+ ## [4.67.0] (30/04/2023)
231
+
232
+ ### Feature
233
+
234
+ - Added `vector-score` component.
235
+
236
+ ## [4.66.0] (30/04/2023)
237
+
238
+ ### Feature
239
+
240
+ - Added `NotificationsService`;
241
+ - Added `VectorNotification` model;
242
+ - Added notifications popup on `vector-top-bar`.
243
+
244
+ ## [4.65.0] (28/04/2023)
245
+
246
+ ### Feature
247
+
248
+ - Added `permission` in `profile.model.ts`
249
+
250
+ ## [4.64.0] (12/04/2023)
251
+
252
+ ### Feature
253
+
254
+ - Added `translate options` into `crud-footer` component in lib ngx-vector-components.
255
+
256
+ ## [4.63.0] (05/04/2023)
257
+
258
+ ### Feature
259
+
260
+ - Added `apps` input for `vector-menu`, allowing rendering of custom apps.
261
+ - Added `onTabSelected` for `vector-data-table`;
262
+
263
+ ### Bugfix
264
+
265
+ - Fixed multiple lazy load requests on data tables with filters and tabs.
266
+
267
+ ### Bugfix
268
+
269
+ ## [4.62.1] (04/04/2023)
270
+
271
+ - Added validation to `filters.component` to not make initial search in case there's a list item or default value invalid.
272
+
273
+ ## [4.62.0] (03/04/2023)
274
+
275
+ ### Feature
276
+
277
+ - Added `currencyPrefix` and `localePrefix` properties in `currency filed.component`
278
+
279
+ ## [4.61.0] (29/03/2023)
280
+
281
+ ### Feature
282
+
283
+ - Added `permission` in messageServices
284
+
285
+ ## [4.60.0] (22/03/2023)
286
+
287
+ ### Feature
288
+
289
+ - Added `permission` in `profile.model.ts`
290
+
291
+ ## [4.59.0] (24/02/2023)
292
+
293
+ ### Feature
294
+
295
+ - Added `permission` in `profile.model.ts`
296
+ - Added `disabled` in `vector-input-number.ts`
297
+
298
+ ## [4.58.0] (22/02/2023)
299
+
300
+ ### Feature
301
+
302
+ - Added `CUIT_MASK` in `mask.util.ts`
303
+
304
+ ## [4.57.0] (16/02/2023)
305
+
306
+ ### Feature
307
+
308
+ - Added cols and rows dynamic in `vector-textarea-field.ts`
309
+
310
+ ## [4.56.0] (15/02/2023)
311
+
312
+ ### Feature
313
+
314
+ - Added mask in `mask.util.ts`
315
+
316
+ ## [4.55.0] (12/02/2023)
317
+
318
+ ### Feature
319
+
320
+ - Added `leftLabel` to `vector-text-field`.
321
+
322
+ ### Bugfix
323
+
324
+ - Added padding-top to `vector-generic-modal` content to improve layout.
325
+ - Made grid classes for the action buttons of `vector-generic-modal` dynamic to fill the column if it is a single button.
326
+
327
+ ## [4.54.0] (08/02/2023)
328
+
329
+ ## [4.53.0] (06/02/2023)
330
+
331
+ ### Feature
332
+
333
+ - Added permissions in `profile.model.ts`
334
+
335
+ ## [4.52.0] (28/01/2023)
336
+
337
+ ### Feature
338
+
339
+ - Added `icon` property to `ListItem`;
340
+ - Added icon option for `vector-data-table` tabs.
341
+
342
+ ## [4.51.0] (28/01/2023)
343
+
344
+ ### Feature
345
+
346
+ - Added "info" value for `Status` enum;
347
+ - Added "info" color for `TEXT_BADGE` column on `data-table`;
348
+ - Added `STACK_BADGE` column type for `data-table`;
349
+ - Added `DATE` column type for `data-table`;
350
+ - Added `CURRENCY` column type for `data-table`;
351
+ - Auto select rows marked with `select: true` on `data-table`;
352
+ - Added filter option for `vector-multiselect-field`.
353
+
354
+ ### Bugfix
355
+
356
+ - Changed `appendTo` to `body` on `vector-multiselect-field`;
357
+ - Changed styles for `vector-multiselect-field` to match `vector-dropdown-field` styles;
358
+ - Fixed style issue regarding `filters` search button that prevented screens rendering correctly on first render.
359
+
360
+ ## [4.50.0] (25/01/2023)
361
+
362
+ ### Feature
363
+
364
+ - Adding `permission` in tripService.
365
+
366
+ ## [4.49.0] (13/01/2023)
367
+
368
+ ### Feature
369
+
370
+ - Added mask for hours minutes `00:00` in `mask-util`
371
+
372
+ ### Bugfix
373
+
374
+ - Erased pagedSuggestions restart in line 140 of `dropdown-field-component.ts` because when the data was reloaded, the dropdown fields were blank
375
+
376
+ # [4.48.0] (11/01/2023)
377
+
378
+ ### Feature
379
+
380
+ - Added permissions in `product-reception-list.component.ts`
381
+
382
+ ## [4.47.1] (18/11/2022)
383
+
384
+ ### Bugfix
385
+
386
+ - Adjust `api.ipify` in geolocation.service
387
+
388
+ ## [4.47.0] (28/12/2022)
389
+
390
+ ### Feature
391
+
392
+ - Added permissions in `profile.model.ts`
393
+
394
+ ## [4.46.0] (19/12/2022)
395
+
396
+ ### Feature
397
+
398
+ - Adding `permission` in trips.
399
+
400
+ ## [4.45.0] (08/12/2022)
401
+
402
+ ### Feature
403
+
404
+ - Adding `permission Geofence` in profileService.
405
+ - Adding `AlterationHistory` in `vector-crud-history` and `Insert typeOfModification` in `crud-history.model`
406
+
407
+ ## [4.44.4] (18/11/2022)
408
+
409
+ ### Bugfix
410
+
411
+ - Adjust `name "carteira digital for conta digital` in menu-vector
412
+
413
+ ## [4.44.3] (18/11/2022)
414
+
415
+ ### Bugfix
416
+
417
+ - Adjust `open modal in icon termOfUse` in menu-vector
418
+
419
+ ## [4.44.2] (16/11/2022)
420
+
421
+ ### Bugfix
422
+
423
+ - Adjust `password` in validation
424
+
425
+ ## [4.44.1] (01/11/2022)
426
+
427
+ ### Bugfix
428
+
429
+ - Adjust `permission approveVector and approveETCD` in profileService
430
+
431
+ ## [4.44.0] (28/10/2022)
432
+
433
+ ### Feature
434
+
435
+ - Adding `permission` in groups.
436
+
437
+ ## [4.43.0] (28/10/2022)
438
+
439
+ ### Feature
440
+
441
+ - Adding `permission` in profileService.
442
+
443
+ ## [4.42.1] (27/10/2022)
444
+
445
+ ### Bugfix
446
+
447
+ - Added fixed `vector-checkbox-field` error validation
448
+
449
+ ## [4.42.0] (26/10/2022)
450
+
451
+ ### Feature
452
+
453
+ - Adding `columns expansible` in data-table.
454
+
455
+ ## [4.41.1] (19/10/2022)
456
+
457
+ ### Bugfix
458
+
459
+ - Adding search action in `SELECT-BUTTON` filter
460
+
461
+ ## [4.41.0] (15/10/2022)
462
+
463
+ ### Feature
464
+
465
+ - Added `HistoricalChangesNews` news permission
466
+
467
+ ## [4.40.1] (14/10/2022)
468
+
469
+ ### Bugfix
470
+
471
+ - Added fixed "pt-BR" locale to `vector-currency-field`.
472
+
473
+ ## [4.40.0] (14/10/2022)
474
+
475
+ ### Feature
476
+
477
+ - Added `maxDecimalInput `in `vector-currency-field`.
478
+
479
+ ## [4.39.2] (13/10/2022)
480
+
481
+ ### Bugfix
482
+
483
+ - Fixed `vector-currency-field` behavior when inputing values when `isBankingField` is set to `true`.
484
+
485
+ ## [4.39.1] (13/10/2022)
486
+
487
+ ### Feature
488
+
489
+ - adjusted bug in dataKey from `data-table.component`
490
+
491
+ ## [4.39.0] (12/10/2022)
492
+
493
+ ### Feature
494
+
495
+ - Added disabled option for checkBox in `Datatbles.component`.
496
+
497
+ ## [4.38.1] (11/10/2022)
498
+
499
+ ### Feature
500
+
501
+ - Fixed `expansible` feature for data-table.
502
+
503
+ ## [4.38.0] (11/10/2022)
504
+
505
+ ### Feature
506
+
507
+ - Added row expand in `datatable.component`.
508
+
509
+ ## [4.37.2] (07/10/2022)
510
+
511
+ ### BugFix
512
+
513
+ - Correction in `auth-service`.
514
+
515
+ ## [4.37.1] (07/10/2022)
516
+
517
+ ### BugFix
518
+
519
+ - Correction in `auth-service`.
520
+
521
+ ## [4.37.0] (07/10/2022)
522
+
523
+ ### BugFix
524
+
525
+ - Correction in `auth-service`.
526
+
527
+ ## [4.36.0] (06/10/2022)
528
+
529
+ ### Feature
530
+
531
+ - Added service change `AddPermisLastNameLocation ` profile permission
532
+
533
+ ## [4.35.0] (05/10/2022)
534
+
535
+ ### Feature
536
+
537
+ - Added service change `LinkedCnpj` top bar components
538
+
539
+ ## [4.34.0] (03/10/2022)
540
+
541
+ ### Feature
542
+
543
+ - Added `TripOfferShow` profile permission
544
+
545
+ ## [4.33.0] (02/10/2022)
546
+
547
+ ### Feature
548
+
549
+ - Added `Supply` profile permission.
550
+
551
+ # Changelog
552
+
553
+ ## [4.32.0] (30/09/2022)
554
+
555
+ ### Feature
556
+
557
+ - Added `ETCD` profile permission.
558
+
559
+ ## [4.31.0] (30/09/2022)
560
+
561
+ ### Feature
562
+
563
+ - Added `RECEPTION_PRODUCT` profile permission.
564
+
565
+ # Changelog
566
+
567
+ ## [4.30.0] (30/09/2022)
568
+
569
+ ### Feature
570
+
571
+ - Added `Parameters` profile permission.
572
+
573
+ ## [4.29.0] (27/09/2022)
574
+
575
+ ### Feature
576
+
577
+ - Added `max-width` and `line-break` support for `vector-generic-modal`.
578
+
579
+ ## [4.28.0] (22/09/2022)
580
+
581
+ ### Feature
582
+
583
+ - Added `page` in `datatableComponent` to use in datatable fintech
584
+
585
+ ## [4.27.0] (21/09/2022)
586
+
587
+ ### Feature
588
+
589
+ - Added `APPROVE_VECTOR` profile permission, ProfileModuleActionType.
590
+ - Added `APPROVE_ETCD` profile permission, ProfileModuleActionType.
591
+ - Added `DIGITAL_DISCHARGE` profile permission, ProfileModuleType
592
+
593
+ ## [4.26.0] (15/09/2022)
594
+
595
+ ### Feature
596
+
597
+ - Added `userId` in `profile.service`.
598
+
599
+ ## [4.25.1] (15/09/2022)
600
+
601
+ ### Bugfix
602
+
603
+ - fix `CREDIT_UNIT` profile permission.
604
+
605
+ ## [4.25.0] (15/09/2022)
606
+
607
+ ### Feature
608
+
609
+ - Added `CREDIT` profile permission.
610
+ - Added `CREDIT_UNIT` profile permission.
611
+
612
+ ## [4.24.0] (14/09/2022)
613
+
614
+ ### Feature
615
+
616
+ - Added `News` profile permission.
617
+
618
+ ## [4.23.0] (14/09/2022)
619
+
620
+ ### Feature
621
+
622
+ - Added `step` support for `vector-percentage-field`.
623
+
624
+ ### Bugfix
625
+
626
+ - Fixed `vector-radio-button` alignment.
627
+
628
+ ## [4.22.4] (09/09/2022)
629
+
630
+ ### BugFix
631
+
632
+ - change search document format
633
+
634
+ ## [4.22.3] (06/09/2022)
635
+
636
+ ### BugFix
637
+
638
+ - Hide button after click dropdown
639
+
640
+ ## [4.22.2] (06/09/2022)
641
+
642
+ ### BugFix
643
+
644
+ - dropdown change for choosing accounts, whenever you have more than 1 account, dropdown appears on the active account
645
+
646
+ ## [4.22.1] (06/09/2022)
647
+
648
+ ### BugFix
649
+
650
+ - added `onHeaderCheckboxToggle` in `datatableComponent`
651
+
652
+ ## [4.22.0] (05/09/2022)
653
+
654
+ ### Feature
655
+
656
+ - added `cpf-cnpj-validator` in `utils`, added `plate-mask` in `mask-utils`, added permissions in `profile.model.ts`.
657
+
658
+ ## [4.21.0] (30/08/2022)
659
+
660
+ ### Feature
661
+
662
+ - added `profileName` to user info in `profile.service.ts`.
663
+
664
+ ## [4.20.1] (15/08/2022)
665
+
666
+ ### Bugfix
667
+
668
+ - adjusted `data-table` to not keep start property when clicking search, validation in `data-table.component.ts`.
669
+
670
+ ## [4.20.0] (15/08/2022)
671
+
672
+ ### Features
673
+
674
+ - Added `input-number` to `Componentes`
675
+
676
+ ## [4.19.0] (13/08/2022)
677
+
678
+ ### Features
679
+
680
+ - Added `TEXT_BADGE` type to `TableColumnType` to render `vector-badge` on table.
681
+
682
+ ### Bugfixes
683
+
684
+ - Fixed filters patch from query params.
685
+
686
+ ## [4.18.0] (05/08/2022)
687
+
688
+ ### Features
689
+
690
+ - Added `CustomButtons` to `vector-data-table` so the data-tables can have more buttons if needed.
691
+
692
+ ## [4.17.0] (04/08/2022)
693
+
694
+ ### Features
695
+
696
+ - Added `filterMultiselect` to `FiltersType` to search for multiple selection
697
+
698
+ ## [4.16.1] (01/08/2022)
699
+
700
+ ### Bugfixes
701
+
702
+ - Fixed `getCodes` function from `ObjectUtil` to support inner JSON objects.
703
+
704
+ ## [4.16.0] (31/07/2022)
705
+
706
+ ### Features
707
+
708
+ - Added `getCodes` to `ObjectUtil` to mutate the given object properties to keep only the `code` property.
709
+
710
+ ### Bugfixes
711
+
712
+ - `FiltersComponent` fixed to patch the query params values correctly.
713
+
714
+ ## [4.15.0] (01/08/2022)
715
+
716
+ ### Features
717
+
718
+ - Added function to add new account fintech.
719
+
720
+ ## [4.14.0] (22/07/2022)
721
+
722
+ ### Features
723
+
724
+ - Added `AlterationHistory` in `vector-crud-history` to use the logtech pattern.
725
+
726
+ ## [4.13.0] (18/07/2022)
727
+
728
+ ### Features
729
+
730
+ - Added `selectionType` in `vector-data-table` to add `checkboxbutton` or `radionbutton` in table.
731
+
732
+ ### Refactor
733
+
734
+ - Refactor `generic-modal` to accept news parameters and output events for make more dynamically.
735
+
736
+ ## [4.12.0] (18/07/2022)
737
+
738
+ ### Features
739
+
740
+ - Added `multipleCheck` in `vector-checkbox-field` to add multiple options.
741
+
742
+ ## [4.11.2] (16/07/2022)
743
+
744
+ ### Bugfixes
745
+
746
+ - Fixed `radio-button` to show invalid status color when touched.
747
+
748
+ ## [4.11.1] (15/07/2022)
749
+
750
+ ### Bugfixes
751
+
752
+ - Fixed `getUserId` in `storageService` to get correctly user id.
753
+
754
+ ## [4.11.0] (15/07/2022)
755
+
756
+ ### Features
757
+
758
+ - added `disabled` on `vector-range-field` to disabled field when insert true.
759
+ - added `disabled` on `vector-currency-field` to disabled field when insert true.
760
+
761
+ ## [4.10.5] (14/07/2022)
762
+
763
+ ### Bugfixes
764
+
765
+ - Fixed `doMaskString` on `MaskUtil` to safely return a empty `string` when receiving an empty input.
766
+
767
+ ## [4.10.4] (13/07/2022)
768
+
769
+ ### Bugfixes
770
+
771
+ - Fixed excel and pdf display button in `vector-data-table`.
772
+
773
+ ## [4.10.3] (13/07/2022)
774
+
775
+ ### Bugfixes
776
+
777
+ - Fixed sort column without actions in `vector-data-table`.
778
+
779
+ ## [4.10.2] (10/07/2022)
780
+
781
+ ### Bugfixes
782
+
783
+ - Fixed arrow icon in(Sort column) `vector-data-table`
784
+
785
+ ## [4.10.1] (10/07/2022)
786
+
787
+ ### Bugfixes
788
+
789
+ - Fixed autoStart `vector-data-table`
790
+
791
+ ## [4.9.0] (10/07/2022)
792
+
793
+ ### Features
794
+
795
+ - Added `MASK` type to `TableColumn` enum and implemented it on `data-table`;
796
+ - Added `FieldType` `DATE_RANGE` to `data-table` filters.
797
+
798
+ ## [4.8.0] (09/07/2022)
799
+
800
+ ### Features
801
+
802
+ - Added `notSortable` property do `TableColumn` and implemented it on `data-table`.
803
+
804
+ ## [4.7.1] (09/07/2022)
805
+
806
+ ### BugFixes
807
+
808
+ - Fixed `getById` on `getSugestionsOfDropDown`.
809
+
810
+ ## [4.7.0] (08/07/2022)
811
+
812
+ ### BugFixes
813
+
814
+ - Added new Permissions in `profile.model.ts`.
815
+
816
+ ### Features
817
+
818
+ - Added `profileTypeItens` BehaviourSubject in `profile.serivice.ts`.
819
+
820
+ ## [4.6.3] (08/07/2022)
821
+
822
+ ### Bugfixes
823
+
824
+ - fixed `menu-label` min-width to align correctly items.
825
+
826
+ ## [4.6.2] (07/07/2022)
827
+
828
+ ### Bugfixes
829
+
830
+ - fixed `top-bar` to display vector user first name.
831
+
832
+ ## [4.6.1] (05/07/2022)
833
+
834
+ ### Bugfixes
835
+
836
+ - `percentage field component` added minFractionDigits and maxFractionDigits properties to configure decimal values
837
+
838
+ ## [4.6.0] (06/07/2022)
839
+
840
+ ### Features
841
+
842
+ - Added `goBackHidden` parameter to hidden goBackButton in `vector-crud-footer`.
843
+
844
+ ## [4.5.1] (30/06/2022)
845
+
846
+ ### Bugfixes
847
+
848
+ - `menu` changed admin menu to show only fintech admin.
849
+
850
+ ## [4.5.0] (29/06/2022)
851
+
852
+ ### Features
853
+
854
+ - `vector-filters` changed to read the url queryParams to set default values.
855
+
856
+ ## [4.4.0] (28/06/2022)
857
+
858
+ ### Features
859
+
860
+ - Added `isExternalUrl` in `http-interceptor.ts`;
861
+
862
+ ## [4.3.0] (27/06/2022)
863
+
864
+ ### Features
865
+
866
+ - Added `HttpDataResponse` in model `http-response.model.ts`;
867
+
868
+ ## [4.2.1] (27/06/2022)
869
+
870
+ ### Bug Fixes
871
+
872
+ - Added `ADD_REGION` in model `profile.model.ts`;
873
+ - Added `SHOW_REGION` in model `profile.model.ts`;
874
+ - Added `EDIT_REGION` in model `profile.model.ts`;
875
+
876
+ ## [4.2.0] (24/06/2022)
877
+
878
+ ### Features
879
+
880
+ - Added `CUSTOM_STYLES` in TableColumnType on `data-table-component`;
881
+ - Added `textFieldClass` in TableColumn on `data-table-component`;
882
+
883
+ ## [4.1.1] (23/06/2022)
884
+
885
+ ### Bug Fixes
886
+
887
+ - Fixed `FilterChangedEvent` external model to use in all project.
888
+
889
+ ## [4.1.0] (23/06/2022)
890
+
891
+ ### Features
892
+
893
+ - Added `onFilterChanged` event on `filters` and `data-table`;
894
+
895
+ ### Bug Fixes
896
+
897
+ - Fixed `filters` to validate required fields before searching.
898
+
899
+ ## [4.0.0] (21/06/2022)
900
+
901
+ ### Breaking Changes
902
+
903
+ - Added `getById` on `BaseDropdown` interface.
904
+
905
+ ### Bug Fixes
906
+
907
+ - Fixed `dropdown` behavior with and without `minLengthToService` set;
908
+ - Fixed `dropdown` search on suggestions to ignore case;
909
+ - Fixed `data-table` header z-index to keep below other fixed elements (e.g `vector-footer`);
910
+ - Fixed `multiselect` to get the correct item property for value.
911
+
912
+ ## [3.6.1] (15/06/2022)
913
+
914
+ ### Bug Fixes
915
+
916
+ - Changed overflow behavior of tabview to scroll.
917
+ -
918
+
919
+ ## [3.6.0] (14/06/2022)
920
+
921
+ ### Features
922
+
923
+ - Added selection to data-table component.
924
+ - Added hasAction input, now can hide action column.
925
+
926
+ ## [3.5.0] (09/06/2022)
927
+
928
+ ### Features
929
+
930
+ - Added `disabled` property on `ListItem`;
931
+ - Added `onChange` event on `vector-multiselect-field`.
932
+
933
+ ## [3.4.0] (26/05/2022)
934
+
935
+ ### Features
936
+
937
+ - Added `inputClassName` property to `vector-currency-field`;
938
+
939
+ ### Bug Fixes
940
+
941
+ - Fixed `vector-button` style property type;
942
+
943
+ ## [3.3.1] (25/05/2022)
944
+
945
+ ### Bug Fixes
946
+
947
+ - Fixed `fullName` validation of `Utils`, changed invalid error message.
948
+
949
+ ## [3.3.0] (24/05/2022)
950
+
951
+ ### Features
952
+
953
+ - Added min length to call the dropdown service query.
954
+
955
+ ## [3.2.0] (24/05/2022)
956
+
957
+ ### Features
958
+
959
+ - Added the ability to add a button column to the `vector-data-table` component that calls a custom function.
960
+ - Added the possibility to hide the actions column of the component `vector-data-table`.
961
+
962
+ ## [3.1.1] (20/05/2022)
963
+
964
+ ### Bug Fixes
965
+
966
+ - Fixed `vector-button` to fill 100% of container.
967
+ - Fixed `BOLETO_PATTERN` in `MaskUtils` for accept a digit more.
968
+
969
+ ## [3.1.0] (19/05/2022)
970
+
971
+ ### Features
972
+
973
+ - added `isBankingField` input to `vector-currency-field`.
974
+
975
+ ## [3.0.2] (19/05/2022)
976
+
977
+ ### Bug Fixes
978
+
979
+ - Fixed `vector-button` disable behavior.
980
+
981
+ ## [3.0.1] (08/05/2022)
982
+
983
+ ### Bug Fixes
984
+
985
+ - Fixed peer dependency version.
986
+
987
+ ## [3.0.0] (08/05/2022)
988
+
989
+ ### Breaking Changes
990
+
991
+ - Changed `mixins` to a separated `mixins.scss` file.
992
+
993
+ ### Features
994
+
995
+ - Added generic guard to check if crud list has items;
996
+ - Added generic resolver to get the selected crud item from the list;
997
+ - Added generic resolver to get the selected crud item history from the list;
998
+ - Added `vector-badge` component;
999
+ - Added `vector-crud-header` component;
1000
+ - Added `vector-select-button-field` component;
1001
+ - Added `formatDocument` pipe;
1002
+ - Added `VIRTUAL_CARRIER` view type;
1003
+ - Added styles input to `vector-button` to apply styles to the `<button>` tag;
1004
+ - Added dynamic filters to dropdown;
1005
+ - Breadcrumb now has clickable links to navigate to route fragments.
1006
+
1007
+ ### Bug Fixes
1008
+
1009
+ - Menu fixed to navigate to menu route even if it has children;
1010
+ - Changed `vector-data-table` appearence to match new design;
1011
+ - Fixed `vector-filters` to hide the search button when there is no visible filters;
1012
+ - Removed unnecessary `variables.scss` references throughout the project.
1013
+
1014
+ ## [2.14.0] (05/05/2022)
1015
+
1016
+ ### Features
1017
+
1018
+ - TokenIsPresentGuard changed to support both storage and queryParams token.
1019
+
1020
+ ### Bug Fixes
1021
+
1022
+ - MenuComponent fixed to take priority on `frameUrl` to make sure `route` can still be used to build the breadcrumbs if needed;
1023
+ - Made some changes to the accordion styles.
1024
+
1025
+ ## [2.13.1] (28/04/2022)
1026
+
1027
+ ### Bug Fixes
1028
+
1029
+ - Fix conflict merge with versions 2.12.0 with 2.13.0.
1030
+
1031
+ ## [2.13.0] (27/04/2022)
1032
+
1033
+ ### Features
1034
+
1035
+ - Added input valueMovimented in vector-range-value component.
1036
+
1037
+ ### Bug Fixes
1038
+
1039
+ - Fix Sent API address for endpoint.
1040
+ - Fix export GeolocationService.
1041
+
1042
+ ## [2.12.0] (26/04/2022)
1043
+
1044
+ ### Features
1045
+
1046
+ - MenuItem changed to accept both singular and array of permissions.
1047
+
1048
+ ## [2.11.0] (20/04/2022)
1049
+
1050
+ ### Features
1051
+
1052
+ - Added currency-input rounded option.
1053
+
1054
+ ### Bug Fixes
1055
+
1056
+ - Fixed breadcrumb responsive layout;
1057
+ - Fixed radio-button responsive layout;
1058
+ - Changed menu backgroud to white;
1059
+ - Changed accordion styles.
1060
+
1061
+ ## [2.10.0] (19/04/2022)
1062
+
1063
+ ### Features
1064
+
1065
+ - Added login info and geolocation to share: date, time, device info, ip, hostname, latitude, longitude, accuracy.
1066
+
1067
+ ## [2.8.0] (08/04/2022)
1068
+
1069
+ ### Features
1070
+
1071
+ - Added containsLettersAndNumbers validation.
1072
+
1073
+ ### Fix
1074
+
1075
+ - Fix currency-field min and max value don't work.
1076
+
1077
+ ## [2.7.1] (08/04/2022)
1078
+
1079
+ ### Fix
1080
+
1081
+ - Fix text-field don't limit to alpha numeric with alphanumeric true.
1082
+
1083
+ ## [2.7.0] (04/04/2022)
1084
+
1085
+ ### Features
1086
+
1087
+ - Added alphaNumeric option to text-field.
1088
+
1089
+ ### Bug Fixes
1090
+
1091
+ - Fix top-bar to hidden notification if is fintech.
1092
+ - Fix top-bar changed label for change password.
1093
+ - Fix toggle menu when keydown escape.
1094
+
1095
+ ## [2.6.0] (30/03/2022)
1096
+
1097
+ ### Features
1098
+
1099
+ - Added directive min and max for percentage-field.
1100
+ - Added notSequentialNumbers validator.
1101
+ - Added firstLetterIsUppercase validator.
1102
+
1103
+ ### Bug Fixes
1104
+
1105
+ - Fix menu service for don't delete father.
1106
+
1107
+ ## [2.5.1] (24/03/2022)
1108
+
1109
+ ### Bug Fixes
1110
+
1111
+ - Fix input checkbox don't mark when click on label.
1112
+
1113
+ ## [2.5.0] (21/03/2022)
1114
+
1115
+ ### Features
1116
+
1117
+ - Added menu notifications count
1118
+
1119
+ ### Bug Fixes
1120
+
1121
+ - Fixed gray colors variables names;
1122
+ - Fixed topbar to show Fintech menus only when is Fintech;
1123
+ - Fixed permissions request to save permissions on storage before using them.
1124
+ - Calendar-field "min" and "max" properties set optional.
1125
+
1126
+ ## [2.4.0] (20/03/2022)
1127
+
1128
+ ### Features
1129
+
1130
+ - Added min and max validation functions to forms;
1131
+ - Added onlyActivePipe.
1132
+
1133
+ ### Bug Fixes
1134
+
1135
+ - Fixed menu service to hide parent menus when no children is left after filtering by permission;
1136
+ - Changed data-table scrollHeight from 350px to 300px to prevent unnecessary scrolling on viewport;
1137
+ - Added toast to unexpected errors from the API.
1138
+
1139
+ ## [2.3.0] (18/03/2022)
1140
+
1141
+ ### Features
1142
+
1143
+ - Added vector-field-error-message for showing when field is invalid.
1144
+
1145
+ ### Bug Fixes
1146
+
1147
+ - Fix input calendar invalid showing incorrect;
1148
+ - Fix input dropdown invalid showing incorrect;
1149
+ - Fix Top-bar now show correct account information.
1150
+
1151
+ ## [2.2.2] (17/03/2022)
1152
+
1153
+ ### Feature
1154
+
1155
+ - Added new default color for text in \_variables.scss.
1156
+ - Fix Portals items in menu showing incorrect.
1157
+
1158
+ ## [2.2.1] (17/03/2022)
1159
+
1160
+ ### Bug Fixes
1161
+
1162
+ - Fix Portals items menu with switched color.
1163
+ - Added directive in vector-top-var(fintech, service);
1164
+ - Fix Menu showing without account information in fintech vector-top-bar;
1165
+
1166
+ ## [2.2.0] (10/03/2022)
1167
+
1168
+ ### Features
1169
+
1170
+ - Added textarea field;
1171
+ - Added sessionStorage functions to StorageService;
1172
+ - Added IFrame opening option to menu items;
1173
+ - Added inversed colors vector logo.
1174
+
1175
+ ### Bug Fixes
1176
+
1177
+ - Fixed dropdown code comparision on filter to support any format;
1178
+ - Fixed data table auto load when using virtual pagination;
1179
+ - Fixed breadcrumb font-weight;
1180
+ - Fixed menu icon filter.
1181
+
1182
+ ## [2.0.3] (01/03/2022)
1183
+
1184
+ ### Bug Fixes
1185
+
1186
+ - Fixed AuthService url to support multiple projects with different endpoint prefixes.
1187
+
1188
+ ## [2.0.2] (01/03/2022)
1189
+
1190
+ ### Bug Fixes
1191
+
1192
+ - Fixed old variable
1193
+
1194
+ ## [2.0.1] (01/03/2022)
1195
+
1196
+ ### Bug Fixes
1197
+
1198
+ - Fixed missing styles
1199
+
1200
+ ## [2.0.0] (01/03/2022)
1201
+
1202
+ ### Breaking Changes
1203
+
1204
+ - CSS variables changed declaration form.
1205
+
1206
+ ## [1.0.2] (01/03/2022)
1207
+
1208
+ ### Bug Fixes
1209
+
1210
+ - Changed text field filter to validate only when on "only text" mode.
1211
+
1212
+ ## [1.0.1] (27/02/2022)
1213
+
1214
+ ### Bug Fixes
1215
+
1216
+ ### Features
1217
+
1218
+ ### Breaking Changes
1219
+
1220
+ - Library publishing