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