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