bit-ng-library 12.0.2 → 13.0.2

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 (310) hide show
  1. package/README.md +160 -142
  2. package/bit-ng-library.d.ts +6 -6
  3. package/bit-ng-library.d.ts.map +1 -0
  4. package/esm2020/bit-ng-library.mjs +5 -0
  5. package/esm2020/lib/base/components/base.component.mjs +18 -0
  6. package/{esm2015/lib/base/models/base-form.models.js → esm2020/lib/base/models/base-form.models.mjs} +129 -129
  7. package/{esm2015/lib/base/models/base-list.models.js → esm2020/lib/base/models/base-list.models.mjs} +202 -202
  8. package/{esm2015/lib/base/models/base-sublist.models.js → esm2020/lib/base/models/base-sublist.models.mjs} +93 -93
  9. package/{esm2015/lib/base/models/index.js → esm2020/lib/base/models/index.mjs} +5 -5
  10. package/esm2020/lib/base/models/types.mjs +19 -0
  11. package/esm2020/lib/base/shared/base-interface.service.mjs +2 -0
  12. package/esm2020/lib/base/shared/base.filter.mjs +78 -0
  13. package/{esm2015/lib/base/shared/base.service.js → esm2020/lib/base/shared/base.service.mjs} +85 -85
  14. package/{esm2015/lib/base/shared/utils.js → esm2020/lib/base/shared/utils.mjs} +113 -113
  15. package/esm2020/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.mjs +67 -0
  16. package/esm2020/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.mjs +49 -0
  17. package/esm2020/lib/sharedlibrary/components/dialog/bit-dialog.component.mjs +209 -0
  18. package/esm2020/lib/sharedlibrary/components/footer/bit-footer.component.mjs +217 -0
  19. package/esm2020/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.mjs +47 -0
  20. package/esm2020/lib/sharedlibrary/components/form/bit-custom.component.mjs +86 -0
  21. package/esm2020/lib/sharedlibrary/components/form/bit-editable.component.mjs +87 -0
  22. package/esm2020/lib/sharedlibrary/components/form/bit-general.component.mjs +93 -0
  23. package/esm2020/lib/sharedlibrary/components/form/calendar/bit-calendar.component.mjs +37 -0
  24. package/esm2020/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.mjs +24 -0
  25. package/esm2020/lib/sharedlibrary/components/form/date/bit-date.component.mjs +45 -0
  26. package/esm2020/lib/sharedlibrary/components/form/datetime/bit-datetime.component.mjs +38 -0
  27. package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.mjs +100 -0
  28. package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.mjs +80 -0
  29. package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.mjs +86 -0
  30. package/esm2020/lib/sharedlibrary/components/form/editor/bit-editor.component.mjs +81 -0
  31. package/esm2020/lib/sharedlibrary/components/form/readonly/bit-readonly.component.mjs +96 -0
  32. package/esm2020/lib/sharedlibrary/components/form/switch/bit-switch.component.mjs +43 -0
  33. package/esm2020/lib/sharedlibrary/components/form/text/bit-text.component.mjs +23 -0
  34. package/esm2020/lib/sharedlibrary/components/form/textarea/bit-textarea.component.mjs +21 -0
  35. package/esm2020/lib/sharedlibrary/components/form/time/bit-time.component.mjs +45 -0
  36. package/esm2020/lib/sharedlibrary/components/header/bit-header.component.mjs +48 -0
  37. package/esm2020/lib/sharedlibrary/components/help/bit-help.component.mjs +59 -0
  38. package/esm2020/lib/sharedlibrary/components/loading/bit-loading.component.mjs +65 -0
  39. package/esm2020/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.mjs +44 -0
  40. package/esm2020/lib/sharedlibrary/components/misc/bit-column-boolean.component.mjs +38 -0
  41. package/esm2020/lib/sharedlibrary/components/misc/bit-domain-value.component.mjs +45 -0
  42. package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-error.component.mjs +110 -0
  43. package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.mjs +45 -0
  44. package/esm2020/lib/sharedlibrary/components/toolbar/bit-toolbar.component.mjs +104 -0
  45. package/esm2020/lib/sharedlibrary/components/upload/bit-ng-upload.component.mjs +133 -0
  46. package/esm2020/lib/sharedlibrary/components/user/bit-user-controls.component.mjs +39 -0
  47. package/{esm2015/lib/sharedlibrary/data/ayudacontextual.js → esm2020/lib/sharedlibrary/data/ayudacontextual.mjs} +12 -12
  48. package/{esm2015/lib/sharedlibrary/data/bitmessage.js → esm2020/lib/sharedlibrary/data/bitmessage.mjs} +21 -21
  49. package/{esm2015/lib/sharedlibrary/data/bitnotification-error.js → esm2020/lib/sharedlibrary/data/bitnotification-error.mjs} +11 -11
  50. package/{esm2015/lib/sharedlibrary/data/bitnotification.js → esm2020/lib/sharedlibrary/data/bitnotification.mjs} +12 -12
  51. package/{esm2015/lib/sharedlibrary/data/configuration-editor.js → esm2020/lib/sharedlibrary/data/configuration-editor.mjs} +20 -20
  52. package/{esm2015/lib/sharedlibrary/data/domain.js → esm2020/lib/sharedlibrary/data/domain.mjs} +9 -9
  53. package/{esm2015/lib/sharedlibrary/data/error.js → esm2020/lib/sharedlibrary/data/error.mjs} +14 -14
  54. package/{esm2015/lib/sharedlibrary/data/fichero.js → esm2020/lib/sharedlibrary/data/fichero.mjs} +18 -18
  55. package/{esm2015/lib/sharedlibrary/data/index.js → esm2020/lib/sharedlibrary/data/index.mjs} +10 -10
  56. package/{esm2015/lib/sharedlibrary/data/item.js → esm2020/lib/sharedlibrary/data/item.mjs} +9 -9
  57. package/esm2020/lib/sharedlibrary/directives/edit-mode.directive.mjs +16 -0
  58. package/esm2020/lib/sharedlibrary/directives/focus-register.directive.mjs +31 -0
  59. package/esm2020/lib/sharedlibrary/directives/view-mode.directive.mjs +16 -0
  60. package/{esm2015/lib/sharedlibrary/global.constants.js → esm2020/lib/sharedlibrary/global.constants.mjs} +24 -24
  61. package/esm2020/lib/sharedlibrary/guards/candeactivate.guard.mjs +13 -0
  62. package/esm2020/lib/sharedlibrary/pipes/capitalize.pipe.mjs +22 -0
  63. package/esm2020/lib/sharedlibrary/pipes/other-actions.pipe.mjs +26 -0
  64. package/esm2020/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.mjs +44 -0
  65. package/esm2020/lib/sharedlibrary/pipes/remove-line-breaks.pipe.mjs +28 -0
  66. package/{esm2015/lib/sharedlibrary/services/ayuda.service.js → esm2020/lib/sharedlibrary/services/ayuda.service.mjs} +38 -37
  67. package/{esm2015/lib/sharedlibrary/services/base-data-adapter.service.js → esm2020/lib/sharedlibrary/services/base-data-adapter.service.mjs} +16 -16
  68. package/esm2020/lib/sharedlibrary/services/base-data.service.mjs +4 -0
  69. package/{esm2015/lib/sharedlibrary/services/custom-validators.service.js → esm2020/lib/sharedlibrary/services/custom-validators.service.mjs} +627 -627
  70. package/esm2020/lib/sharedlibrary/services/domain.service.mjs +24 -0
  71. package/esm2020/lib/sharedlibrary/services/focus.service.mjs +30 -0
  72. package/esm2020/lib/sharedlibrary/services/general-utils.service.mjs +143 -0
  73. package/esm2020/lib/sharedlibrary/services/http-utils.service.mjs +175 -0
  74. package/{esm2015/lib/sharedlibrary/services/index.js → esm2020/lib/sharedlibrary/services/index.mjs} +16 -16
  75. package/{esm2015/lib/sharedlibrary/services/locator.service.js → esm2020/lib/sharedlibrary/services/locator.service.mjs} +8 -8
  76. package/esm2020/lib/sharedlibrary/services/message.service.mjs +69 -0
  77. package/esm2020/lib/sharedlibrary/services/session-shared.service.mjs +23 -0
  78. package/esm2020/lib/sharedlibrary/services/tableview.service.mjs +19 -0
  79. package/esm2020/lib/sharedlibrary/services/toolbar.service.mjs +25 -0
  80. package/esm2020/lib/sharedlibrary/services/translate.service.mjs +67 -0
  81. package/{esm2015/lib/sharedlibrary/services/upload.service.js → esm2020/lib/sharedlibrary/services/upload.service.mjs} +57 -55
  82. package/esm2020/lib/sharedlibrary/sharedlibrary.module.mjs +264 -0
  83. package/esm2020/lib/sharedlibrary/utils/custom-http-interceptor.mjs +37 -0
  84. package/{esm2015/public-api.js → esm2020/public-api.mjs} +81 -81
  85. package/fesm2015/bit-ng-library.mjs +4708 -0
  86. package/fesm2015/bit-ng-library.mjs.map +1 -0
  87. package/{fesm2015/bit-ng-library.js → fesm2020/bit-ng-library.mjs} +4563 -4325
  88. package/fesm2020/bit-ng-library.mjs.map +1 -0
  89. package/lib/base/components/base.component.d.ts +9 -5
  90. package/lib/base/components/base.component.d.ts.map +1 -0
  91. package/lib/base/models/base-form.models.d.ts +81 -80
  92. package/lib/base/models/base-form.models.d.ts.map +1 -0
  93. package/lib/base/models/base-list.models.d.ts +137 -136
  94. package/lib/base/models/base-list.models.d.ts.map +1 -0
  95. package/lib/base/models/base-sublist.models.d.ts +43 -42
  96. package/lib/base/models/base-sublist.models.d.ts.map +1 -0
  97. package/lib/base/models/index.d.ts +5 -4
  98. package/lib/base/models/index.d.ts.map +1 -0
  99. package/lib/base/models/types.d.ts +34 -33
  100. package/lib/base/models/types.d.ts.map +1 -0
  101. package/lib/base/shared/base-interface.service.d.ts +38 -37
  102. package/lib/base/shared/base-interface.service.d.ts.map +1 -0
  103. package/lib/base/shared/base.filter.d.ts +38 -37
  104. package/lib/base/shared/base.filter.d.ts.map +1 -0
  105. package/lib/base/shared/base.service.d.ts +60 -59
  106. package/lib/base/shared/base.service.d.ts.map +1 -0
  107. package/lib/base/shared/utils.d.ts +43 -42
  108. package/lib/base/shared/utils.d.ts.map +1 -0
  109. package/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.d.ts +26 -22
  110. package/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.d.ts.map +1 -0
  111. package/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.d.ts +16 -12
  112. package/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.d.ts.map +1 -0
  113. package/lib/sharedlibrary/components/dialog/bit-dialog.component.d.ts +31 -27
  114. package/lib/sharedlibrary/components/dialog/bit-dialog.component.d.ts.map +1 -0
  115. package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts +74 -70
  116. package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts.map +1 -0
  117. package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts +20 -16
  118. package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts.map +1 -0
  119. package/lib/sharedlibrary/components/form/bit-custom.component.d.ts +36 -32
  120. package/lib/sharedlibrary/components/form/bit-custom.component.d.ts.map +1 -0
  121. package/lib/sharedlibrary/components/form/bit-editable.component.d.ts +32 -28
  122. package/lib/sharedlibrary/components/form/bit-editable.component.d.ts.map +1 -0
  123. package/lib/sharedlibrary/components/form/bit-general.component.d.ts +42 -38
  124. package/lib/sharedlibrary/components/form/bit-general.component.d.ts.map +1 -0
  125. package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts +20 -16
  126. package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts.map +1 -0
  127. package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts +11 -7
  128. package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts.map +1 -0
  129. package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts +16 -12
  130. package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts.map +1 -0
  131. package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts +15 -11
  132. package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts.map +1 -0
  133. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts +42 -38
  134. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts.map +1 -0
  135. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts +38 -34
  136. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts.map +1 -0
  137. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts +34 -30
  138. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts.map +1 -0
  139. package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts +32 -28
  140. package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts.map +1 -0
  141. package/lib/sharedlibrary/components/form/readonly/bit-readonly.component.d.ts +27 -23
  142. package/lib/sharedlibrary/components/form/readonly/bit-readonly.component.d.ts.map +1 -0
  143. package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts +16 -12
  144. package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts.map +1 -0
  145. package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts +10 -6
  146. package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts.map +1 -0
  147. package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts +10 -6
  148. package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts.map +1 -0
  149. package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts +16 -12
  150. package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts.map +1 -0
  151. package/lib/sharedlibrary/components/header/bit-header.component.d.ts +23 -19
  152. package/lib/sharedlibrary/components/header/bit-header.component.d.ts.map +1 -0
  153. package/lib/sharedlibrary/components/help/bit-help.component.d.ts +16 -12
  154. package/lib/sharedlibrary/components/help/bit-help.component.d.ts.map +1 -0
  155. package/lib/sharedlibrary/components/loading/bit-loading.component.d.ts +18 -14
  156. package/lib/sharedlibrary/components/loading/bit-loading.component.d.ts.map +1 -0
  157. package/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.d.ts +13 -9
  158. package/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.d.ts.map +1 -0
  159. package/lib/sharedlibrary/components/misc/bit-column-boolean.component.d.ts +14 -10
  160. package/lib/sharedlibrary/components/misc/bit-column-boolean.component.d.ts.map +1 -0
  161. package/lib/sharedlibrary/components/misc/bit-domain-value.component.d.ts +15 -11
  162. package/lib/sharedlibrary/components/misc/bit-domain-value.component.d.ts.map +1 -0
  163. package/lib/sharedlibrary/components/notificacion/bit-notification-error.component.d.ts +35 -31
  164. package/lib/sharedlibrary/components/notificacion/bit-notification-error.component.d.ts.map +1 -0
  165. package/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.d.ts +17 -13
  166. package/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.d.ts.map +1 -0
  167. package/lib/sharedlibrary/components/toolbar/bit-toolbar.component.d.ts +40 -36
  168. package/lib/sharedlibrary/components/toolbar/bit-toolbar.component.d.ts.map +1 -0
  169. package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts +50 -45
  170. package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts.map +1 -0
  171. package/lib/sharedlibrary/components/user/bit-user-controls.component.d.ts +15 -11
  172. package/lib/sharedlibrary/components/user/bit-user-controls.component.d.ts.map +1 -0
  173. package/lib/sharedlibrary/data/ayudacontextual.d.ts +9 -8
  174. package/lib/sharedlibrary/data/ayudacontextual.d.ts.map +1 -0
  175. package/lib/sharedlibrary/data/bitmessage.d.ts +18 -17
  176. package/lib/sharedlibrary/data/bitmessage.d.ts.map +1 -0
  177. package/lib/sharedlibrary/data/bitnotification-error.d.ts +10 -9
  178. package/lib/sharedlibrary/data/bitnotification-error.d.ts.map +1 -0
  179. package/lib/sharedlibrary/data/bitnotification.d.ts +11 -10
  180. package/lib/sharedlibrary/data/bitnotification.d.ts.map +1 -0
  181. package/lib/sharedlibrary/data/configuration-editor.d.ts +10 -9
  182. package/lib/sharedlibrary/data/configuration-editor.d.ts.map +1 -0
  183. package/lib/sharedlibrary/data/domain.d.ts +8 -7
  184. package/lib/sharedlibrary/data/domain.d.ts.map +1 -0
  185. package/lib/sharedlibrary/data/error.d.ts +13 -12
  186. package/lib/sharedlibrary/data/error.d.ts.map +1 -0
  187. package/lib/sharedlibrary/data/fichero.d.ts +14 -13
  188. package/lib/sharedlibrary/data/fichero.d.ts.map +1 -0
  189. package/lib/sharedlibrary/data/index.d.ts +10 -9
  190. package/lib/sharedlibrary/data/index.d.ts.map +1 -0
  191. package/lib/sharedlibrary/data/item.d.ts +8 -7
  192. package/lib/sharedlibrary/data/item.d.ts.map +1 -0
  193. package/lib/sharedlibrary/directives/edit-mode.directive.d.ts +9 -5
  194. package/lib/sharedlibrary/directives/edit-mode.directive.d.ts.map +1 -0
  195. package/lib/sharedlibrary/directives/focus-register.directive.d.ts +14 -10
  196. package/lib/sharedlibrary/directives/focus-register.directive.d.ts.map +1 -0
  197. package/lib/sharedlibrary/directives/view-mode.directive.d.ts +9 -5
  198. package/lib/sharedlibrary/directives/view-mode.directive.d.ts.map +1 -0
  199. package/lib/sharedlibrary/global.constants.d.ts +16 -15
  200. package/lib/sharedlibrary/global.constants.d.ts.map +1 -0
  201. package/lib/sharedlibrary/guards/candeactivate.guard.d.ts +12 -8
  202. package/lib/sharedlibrary/guards/candeactivate.guard.d.ts.map +1 -0
  203. package/lib/sharedlibrary/pipes/capitalize.pipe.d.ts +11 -7
  204. package/lib/sharedlibrary/pipes/capitalize.pipe.d.ts.map +1 -0
  205. package/lib/sharedlibrary/pipes/other-actions.pipe.d.ts +8 -4
  206. package/lib/sharedlibrary/pipes/other-actions.pipe.d.ts.map +1 -0
  207. package/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.d.ts +13 -9
  208. package/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.d.ts.map +1 -0
  209. package/lib/sharedlibrary/pipes/remove-line-breaks.pipe.d.ts +8 -4
  210. package/lib/sharedlibrary/pipes/remove-line-breaks.pipe.d.ts.map +1 -0
  211. package/lib/sharedlibrary/services/ayuda.service.d.ts +14 -10
  212. package/lib/sharedlibrary/services/ayuda.service.d.ts.map +1 -0
  213. package/lib/sharedlibrary/services/base-data-adapter.service.d.ts +12 -11
  214. package/lib/sharedlibrary/services/base-data-adapter.service.d.ts.map +1 -0
  215. package/lib/sharedlibrary/services/base-data.service.d.ts +14 -13
  216. package/lib/sharedlibrary/services/base-data.service.d.ts.map +1 -0
  217. package/lib/sharedlibrary/services/custom-validators.service.d.ts +174 -173
  218. package/lib/sharedlibrary/services/custom-validators.service.d.ts.map +1 -0
  219. package/lib/sharedlibrary/services/domain.service.d.ts +12 -8
  220. package/lib/sharedlibrary/services/domain.service.d.ts.map +1 -0
  221. package/lib/sharedlibrary/services/focus.service.d.ts +13 -9
  222. package/lib/sharedlibrary/services/focus.service.d.ts.map +1 -0
  223. package/lib/sharedlibrary/services/general-utils.service.d.ts +40 -36
  224. package/lib/sharedlibrary/services/general-utils.service.d.ts.map +1 -0
  225. package/lib/sharedlibrary/services/http-utils.service.d.ts +35 -31
  226. package/lib/sharedlibrary/services/http-utils.service.d.ts.map +1 -0
  227. package/lib/sharedlibrary/services/index.d.ts +16 -15
  228. package/lib/sharedlibrary/services/index.d.ts.map +1 -0
  229. package/lib/sharedlibrary/services/locator.service.d.ts +9 -8
  230. package/lib/sharedlibrary/services/locator.service.d.ts.map +1 -0
  231. package/lib/sharedlibrary/services/message.service.d.ts +45 -41
  232. package/lib/sharedlibrary/services/message.service.d.ts.map +1 -0
  233. package/lib/sharedlibrary/services/session-shared.service.d.ts +10 -6
  234. package/lib/sharedlibrary/services/session-shared.service.d.ts.map +1 -0
  235. package/lib/sharedlibrary/services/tableview.service.d.ts +10 -6
  236. package/lib/sharedlibrary/services/tableview.service.d.ts.map +1 -0
  237. package/lib/sharedlibrary/services/toolbar.service.d.ts +11 -7
  238. package/lib/sharedlibrary/services/toolbar.service.d.ts.map +1 -0
  239. package/lib/sharedlibrary/services/translate.service.d.ts +32 -28
  240. package/lib/sharedlibrary/services/translate.service.d.ts.map +1 -0
  241. package/lib/sharedlibrary/services/upload.service.d.ts +20 -16
  242. package/lib/sharedlibrary/services/upload.service.d.ts.map +1 -0
  243. package/lib/sharedlibrary/sharedlibrary.module.d.ts +72 -6
  244. package/lib/sharedlibrary/sharedlibrary.module.d.ts.map +1 -0
  245. package/lib/sharedlibrary/utils/custom-http-interceptor.d.ts +14 -10
  246. package/lib/sharedlibrary/utils/custom-http-interceptor.d.ts.map +1 -0
  247. package/package.json +19 -7
  248. package/public-api.d.ts +78 -77
  249. package/public-api.d.ts.map +1 -0
  250. package/bit-ng-library.metadata.json +0 -1
  251. package/bundles/bit-ng-library.umd.js +0 -5165
  252. package/bundles/bit-ng-library.umd.js.map +0 -1
  253. package/esm2015/bit-ng-library.js +0 -6
  254. package/esm2015/lib/base/components/base.component.js +0 -15
  255. package/esm2015/lib/base/models/types.js +0 -19
  256. package/esm2015/lib/base/shared/base-interface.service.js +0 -2
  257. package/esm2015/lib/base/shared/base.filter.js +0 -78
  258. package/esm2015/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.js +0 -57
  259. package/esm2015/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.js +0 -43
  260. package/esm2015/lib/sharedlibrary/components/dialog/bit-dialog.component.js +0 -163
  261. package/esm2015/lib/sharedlibrary/components/footer/bit-footer.component.js +0 -206
  262. package/esm2015/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.js +0 -44
  263. package/esm2015/lib/sharedlibrary/components/form/bit-custom.component.js +0 -89
  264. package/esm2015/lib/sharedlibrary/components/form/bit-editable.component.js +0 -83
  265. package/esm2015/lib/sharedlibrary/components/form/bit-general.component.js +0 -81
  266. package/esm2015/lib/sharedlibrary/components/form/calendar/bit-calendar.component.js +0 -38
  267. package/esm2015/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.js +0 -23
  268. package/esm2015/lib/sharedlibrary/components/form/date/bit-date.component.js +0 -45
  269. package/esm2015/lib/sharedlibrary/components/form/datetime/bit-datetime.component.js +0 -38
  270. package/esm2015/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.js +0 -99
  271. package/esm2015/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.js +0 -81
  272. package/esm2015/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.js +0 -89
  273. package/esm2015/lib/sharedlibrary/components/form/editor/bit-editor.component.js +0 -77
  274. package/esm2015/lib/sharedlibrary/components/form/readonly/bit-readonly.component.js +0 -95
  275. package/esm2015/lib/sharedlibrary/components/form/switch/bit-switch.component.js +0 -43
  276. package/esm2015/lib/sharedlibrary/components/form/text/bit-text.component.js +0 -19
  277. package/esm2015/lib/sharedlibrary/components/form/textarea/bit-textarea.component.js +0 -19
  278. package/esm2015/lib/sharedlibrary/components/form/time/bit-time.component.js +0 -45
  279. package/esm2015/lib/sharedlibrary/components/header/bit-header.component.js +0 -38
  280. package/esm2015/lib/sharedlibrary/components/help/bit-help.component.js +0 -47
  281. package/esm2015/lib/sharedlibrary/components/loading/bit-loading.component.js +0 -55
  282. package/esm2015/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.js +0 -33
  283. package/esm2015/lib/sharedlibrary/components/misc/bit-column-boolean.component.js +0 -28
  284. package/esm2015/lib/sharedlibrary/components/misc/bit-domain-value.component.js +0 -39
  285. package/esm2015/lib/sharedlibrary/components/notificacion/bit-notification-error.component.js +0 -110
  286. package/esm2015/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.js +0 -45
  287. package/esm2015/lib/sharedlibrary/components/toolbar/bit-toolbar.component.js +0 -97
  288. package/esm2015/lib/sharedlibrary/components/upload/bit-ng-upload.component.js +0 -116
  289. package/esm2015/lib/sharedlibrary/components/user/bit-user-controls.component.js +0 -30
  290. package/esm2015/lib/sharedlibrary/directives/edit-mode.directive.js +0 -15
  291. package/esm2015/lib/sharedlibrary/directives/focus-register.directive.js +0 -30
  292. package/esm2015/lib/sharedlibrary/directives/view-mode.directive.js +0 -15
  293. package/esm2015/lib/sharedlibrary/guards/candeactivate.guard.js +0 -10
  294. package/esm2015/lib/sharedlibrary/pipes/capitalize.pipe.js +0 -18
  295. package/esm2015/lib/sharedlibrary/pipes/other-actions.pipe.js +0 -22
  296. package/esm2015/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.js +0 -41
  297. package/esm2015/lib/sharedlibrary/pipes/remove-line-breaks.pipe.js +0 -24
  298. package/esm2015/lib/sharedlibrary/services/base-data.service.js +0 -4
  299. package/esm2015/lib/sharedlibrary/services/domain.service.js +0 -26
  300. package/esm2015/lib/sharedlibrary/services/focus.service.js +0 -28
  301. package/esm2015/lib/sharedlibrary/services/general-utils.service.js +0 -142
  302. package/esm2015/lib/sharedlibrary/services/http-utils.service.js +0 -178
  303. package/esm2015/lib/sharedlibrary/services/message.service.js +0 -68
  304. package/esm2015/lib/sharedlibrary/services/session-shared.service.js +0 -22
  305. package/esm2015/lib/sharedlibrary/services/tableview.service.js +0 -18
  306. package/esm2015/lib/sharedlibrary/services/toolbar.service.js +0 -24
  307. package/esm2015/lib/sharedlibrary/services/translate.service.js +0 -67
  308. package/esm2015/lib/sharedlibrary/sharedlibrary.module.js +0 -135
  309. package/esm2015/lib/sharedlibrary/utils/custom-http-interceptor.js +0 -41
  310. package/fesm2015/bit-ng-library.js.map +0 -1
package/README.md CHANGED
@@ -1,142 +1,160 @@
1
- # BitNgLibrary
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.6.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project bit-ng-library` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project bit-ng-library`.
8
-
9
- > Note: Don't forget to add `--project bit-ng-library` or else it will be added to the default project in your `angular.json` file.
10
-
11
- ## Build
12
-
13
- Run `ng build bit-ng-library --configuration production` to build the project. The build artifacts will be stored in the `dist/` directory.
14
-
15
- ## Publishing
16
-
17
- After building your library with `ng build bit-ng-library`, go to the dist folder `cd dist/bit-ng-library` and run `npm publish`.
18
-
19
- ## Running unit tests
20
-
21
- Run `ng test bit-ng-library` to execute the unit tests via [Karma](https://karma-runner.github.io).
22
-
23
- ## Further help
24
-
25
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
26
-
27
- ## changelog
28
-
29
- ## [12.0.2] - 2021-10-20
30
-
31
- Se aplican cambios para centrar spinner y el breadcrumb
32
-
33
- ## [12.0.1] - 2021-09-30
34
-
35
- Se aplican cambios para adecuarse al primeflex3
36
-
37
- ## [12.0.0] - 2021-08-22
38
-
39
- Versión angular12
40
-
41
- ## [11.0.6] - 2021-08-06
42
-
43
- Estilo para el footer sin resultados
44
-
45
- ## [11.0.5] - 2021-07-08
46
-
47
- se restaura el servicio DomainService que había desaparecido tras un delete no sé muy bien porqué
48
-
49
- ## [11.0.4] - 2021-07-08
50
-
51
- se pone firstDayOfWeek a los calendarios de prime
52
-
53
- ## [11.0.3] - 2021-05-20
54
-
55
- Se modifica el bit-ng-upload
56
-
57
- ## [11.0.2] - 2021-05-13
58
-
59
- Se adapta la toolbar a prime para el caso de botones con más acciones
60
-
61
- ## [11.0.1] - 2021-05-05
62
-
63
- Se añade la función objectoToQueryParameters
64
-
65
- ## [11.0.0] - 2021-04-21
66
-
67
- Versión compatible con angular 11
68
-
69
- ## [1.2.4] - 2021-04-21
70
-
71
- se añaden console.log en el envío de la notificacionError al detectarse fallos
72
-
73
- ## [1.2.3] - 2021-03-19
74
-
75
- método para poder ocultar notificaciones de error
76
-
77
- ## [1.2.2] - 2021-03-05
78
-
79
- Se imorta moment versión mini
80
-
81
- ## [1.2.1] - 2021-02-25
82
-
83
- Añadir tag pInputText al input de bit-text-component.
84
-
85
- ## [1.2.0] - 2021-02-05
86
-
87
- Migración a angular 10
88
-
89
- ## [1.1.3] - 2020-09-11
90
-
91
- ### Changed
92
-
93
- Se añade la validación de teléfonos separados por comas
94
-
95
- ## [1.1.2] - 2020-09-10
96
-
97
- ### Changed
98
-
99
- Se arregla un fallo del bit-dropdown-multiple que no traduce el valor emptyTest.
100
- Se añade el parámetro filter al bit-dropdown-multiple para poder indicar si queremos que filtre o no
101
-
102
- ## [1.1.1] - 2020-08-07
103
-
104
- ### Changed
105
-
106
- Se arregla un fallo del bit-dropdown que repetía dos veces el valor empty
107
-
108
- ## [1.1.0] - 2020-07-30
109
-
110
- ### Changed
111
-
112
- Se eliminan los css internos
113
-
114
- ## [1.0.0] - 2020-07-01
115
-
116
- ### Changed
117
-
118
- Primera versión funcional
119
-
120
- ## [1.0.3-alpha1] - 2020-05-14
121
-
122
- ### Changed
123
-
124
- - Se modifica el observable que notifica el cambio de idioma de Subject a BehaviourSubject por un issue que siempre se emitía el valor ca cuando te resuscribías
125
-
126
- ## [1.0.3-alpha1] - 2020-05-13
127
-
128
- ### Changed
129
-
130
- - Label mal construido no se traducía
131
-
132
- ## [1.0.2-alpha1] - 2020-05-13
133
-
134
- ### Changed
135
-
136
- - Se publica la clase BaseLisPaginateComponent
137
-
138
- ## [1.0.1-alpha1] - 2020-05-12
139
-
140
- ### Added
141
-
142
- - Commit inicial
1
+ # BitNgLibrary
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.6.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project bit-ng-library` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project bit-ng-library`.
8
+
9
+ > Note: Don't forget to add `--project bit-ng-library` or else it will be added to the default project in your `angular.json` file.
10
+
11
+ ## Build
12
+
13
+ Run `ng build bit-ng-library --configuration production` to build the project. The build artifacts will be stored in the `dist/` directory.
14
+
15
+ ## Publishing
16
+
17
+ After building your library with `ng build bit-ng-library`, go to the dist folder `cd dist/bit-ng-library` and run `npm publish`.
18
+
19
+ ## Running unit tests
20
+
21
+ Run `ng test bit-ng-library` to execute the unit tests via [Karma](https://karma-runner.github.io).
22
+
23
+ ## Further help
24
+
25
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
26
+
27
+ ## changelog
28
+
29
+ ## [13.0.2] - 2022-02-03
30
+
31
+ Se añade allowSyntheticDefaultImports a true en las opciones de compilacion de tsconfig para que se importe correctamente la librería
32
+ moment. También se modifica la forma de importar en el código pasando a import momento from 'moment' en vez de import \* as moment from
33
+ 'moment'
34
+
35
+ ## [13.0.1] - 2022-02-03
36
+
37
+ Se elimina moment-mini-ts al presentar problemas de carga con angular 13
38
+
39
+ ## [13.0.0] - 2022-02-02
40
+
41
+ Migración a angular 13
42
+
43
+ ## [12.0.3] - 2021-12-30
44
+
45
+ Nuevo parámetro "inputAccept" para el "input file" del componente BitNgUpload, que permite restringir los tipos de ficheros del explorador de archivos al elegir un archivo para subida.
46
+
47
+ ## [12.0.2] - 2021-10-20
48
+
49
+ Se aplican cambios para centrar spinner y el breadcrumb
50
+
51
+ ## [12.0.1] - 2021-09-30
52
+
53
+ Se aplican cambios para adecuarse al primeflex3
54
+
55
+ ## [12.0.0] - 2021-08-22
56
+
57
+ Versión angular12
58
+
59
+ ## [11.0.6] - 2021-08-06
60
+
61
+ Estilo para el footer sin resultados
62
+
63
+ ## [11.0.5] - 2021-07-08
64
+
65
+ se restaura el servicio DomainService que había desaparecido tras un delete no sé muy bien porqué
66
+
67
+ ## [11.0.4] - 2021-07-08
68
+
69
+ se pone firstDayOfWeek a los calendarios de prime
70
+
71
+ ## [11.0.3] - 2021-05-20
72
+
73
+ Se modifica el bit-ng-upload
74
+
75
+ ## [11.0.2] - 2021-05-13
76
+
77
+ Se adapta la toolbar a prime para el caso de botones con más acciones
78
+
79
+ ## [11.0.1] - 2021-05-05
80
+
81
+ Se añade la función objectoToQueryParameters
82
+
83
+ ## [11.0.0] - 2021-04-21
84
+
85
+ Versión compatible con angular 11
86
+
87
+ ## [1.2.4] - 2021-04-21
88
+
89
+ se añaden console.log en el envío de la notificacionError al detectarse fallos
90
+
91
+ ## [1.2.3] - 2021-03-19
92
+
93
+ método para poder ocultar notificaciones de error
94
+
95
+ ## [1.2.2] - 2021-03-05
96
+
97
+ Se imorta moment versión mini
98
+
99
+ ## [1.2.1] - 2021-02-25
100
+
101
+ Añadir tag pInputText al input de bit-text-component.
102
+
103
+ ## [1.2.0] - 2021-02-05
104
+
105
+ Migración a angular 10
106
+
107
+ ## [1.1.3] - 2020-09-11
108
+
109
+ ### Changed
110
+
111
+ Se añade la validación de teléfonos separados por comas
112
+
113
+ ## [1.1.2] - 2020-09-10
114
+
115
+ ### Changed
116
+
117
+ Se arregla un fallo del bit-dropdown-multiple que no traduce el valor emptyTest.
118
+ Se añade el parámetro filter al bit-dropdown-multiple para poder indicar si queremos que filtre o no
119
+
120
+ ## [1.1.1] - 2020-08-07
121
+
122
+ ### Changed
123
+
124
+ Se arregla un fallo del bit-dropdown que repetía dos veces el valor empty
125
+
126
+ ## [1.1.0] - 2020-07-30
127
+
128
+ ### Changed
129
+
130
+ Se eliminan los css internos
131
+
132
+ ## [1.0.0] - 2020-07-01
133
+
134
+ ### Changed
135
+
136
+ Primera versión funcional
137
+
138
+ ## [1.0.3-alpha1] - 2020-05-14
139
+
140
+ ### Changed
141
+
142
+ - Se modifica el observable que notifica el cambio de idioma de Subject a BehaviourSubject por un issue que siempre se emitía el valor ca cuando te resuscribías
143
+
144
+ ## [1.0.3-alpha1] - 2020-05-13
145
+
146
+ ### Changed
147
+
148
+ - Label mal construido no se traducía
149
+
150
+ ## [1.0.2-alpha1] - 2020-05-13
151
+
152
+ ### Changed
153
+
154
+ - Se publica la clase BaseLisPaginateComponent
155
+
156
+ ## [1.0.1-alpha1] - 2020-05-12
157
+
158
+ ### Added
159
+
160
+ - Commit inicial
@@ -1,6 +1,6 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- export { ErrorValidateForm as ɵg, TranslatedMessage as ɵf } from './lib/base/models';
6
- export { AyudaService as ɵd, BitMessageService as ɵc, FocusService as ɵa, SessionSharedService as ɵe, TranslateService as ɵb } from './lib/sharedlibrary/services';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="bit-ng-library" />
5
+ export * from './public-api';
6
+ //# sourceMappingURL=bit-ng-library.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bit-ng-library.d.ts","sourceRoot":"","sources":["../../projects/bit-ng-library/src/bit-ng-library.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,cAAc,cAAc,CAAC"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYml0LW5nLWxpYnJhcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9iaXQtbmctbGlicmFyeS9zcmMvYml0LW5nLWxpYnJhcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,18 @@
1
+ import { Subject } from "rxjs";
2
+ import { Directive } from "@angular/core";
3
+ import * as i0 from "@angular/core";
4
+ export class BaseComponent {
5
+ constructor() {
6
+ this.destroy$ = new Subject();
7
+ }
8
+ ngOnDestroy() {
9
+ this.destroy$.next(true);
10
+ this.destroy$.unsubscribe();
11
+ }
12
+ }
13
+ BaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: BaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
14
+ BaseComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.0", type: BaseComponent, ngImport: i0 });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: BaseComponent, decorators: [{
16
+ type: Directive
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iaXQtbmctbGlicmFyeS9zcmMvbGliL2Jhc2UvY29tcG9uZW50cy9iYXNlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRzFDLE1BQU0sT0FBZ0IsYUFBYTtJQURuQztRQUVFLGFBQVEsR0FBcUIsSUFBSSxPQUFPLEVBQVcsQ0FBQztLQU1yRDtJQUpDLFdBQVc7UUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUN6QixJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQzlCLENBQUM7OzBHQU5tQixhQUFhOzhGQUFiLGFBQWE7MkZBQWIsYUFBYTtrQkFEbEMsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xuaW1wb3J0IHsgRGlyZWN0aXZlIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgQmFzZUNvbXBvbmVudCB7XG4gIGRlc3Ryb3kkOiBTdWJqZWN0PGJvb2xlYW4+ID0gbmV3IFN1YmplY3Q8Ym9vbGVhbj4oKTtcblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLmRlc3Ryb3kkLm5leHQodHJ1ZSk7XG4gICAgdGhpcy5kZXN0cm95JC51bnN1YnNjcmliZSgpO1xuICB9XG59XG4iXX0=