bit-ng-library 13.0.2 → 13.1.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 (170) hide show
  1. package/README.md +182 -160
  2. package/bit-ng-library.d.ts +5 -5
  3. package/esm2020/bit-ng-library.mjs +4 -4
  4. package/esm2020/lib/base/components/base.component.mjs +18 -18
  5. package/esm2020/lib/base/models/base-form.models.mjs +129 -129
  6. package/esm2020/lib/base/models/base-list.models.mjs +202 -202
  7. package/esm2020/lib/base/models/base-sublist.models.mjs +93 -93
  8. package/esm2020/lib/base/models/index.mjs +5 -5
  9. package/esm2020/lib/base/models/types.mjs +19 -19
  10. package/esm2020/lib/base/shared/base-interface.service.mjs +2 -2
  11. package/esm2020/lib/base/shared/base.filter.mjs +78 -78
  12. package/esm2020/lib/base/shared/base.service.mjs +85 -85
  13. package/esm2020/lib/base/shared/utils.mjs +113 -113
  14. package/esm2020/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.mjs +67 -67
  15. package/esm2020/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.mjs +49 -49
  16. package/esm2020/lib/sharedlibrary/components/dialog/bit-dialog.component.mjs +209 -209
  17. package/esm2020/lib/sharedlibrary/components/footer/bit-footer.component.mjs +264 -217
  18. package/esm2020/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.mjs +47 -47
  19. package/esm2020/lib/sharedlibrary/components/form/bit-custom.component.mjs +86 -86
  20. package/esm2020/lib/sharedlibrary/components/form/bit-editable.component.mjs +87 -87
  21. package/esm2020/lib/sharedlibrary/components/form/bit-general.component.mjs +93 -93
  22. package/esm2020/lib/sharedlibrary/components/form/calendar/bit-calendar.component.mjs +37 -37
  23. package/esm2020/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.mjs +24 -24
  24. package/esm2020/lib/sharedlibrary/components/form/date/bit-date.component.mjs +45 -45
  25. package/esm2020/lib/sharedlibrary/components/form/datetime/bit-datetime.component.mjs +38 -38
  26. package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.mjs +100 -100
  27. package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.mjs +80 -80
  28. package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.mjs +86 -86
  29. package/esm2020/lib/sharedlibrary/components/form/editor/bit-editor.component.mjs +81 -81
  30. package/esm2020/lib/sharedlibrary/components/form/readonly/bit-readonly.component.mjs +96 -96
  31. package/esm2020/lib/sharedlibrary/components/form/switch/bit-switch.component.mjs +43 -43
  32. package/esm2020/lib/sharedlibrary/components/form/text/bit-text.component.mjs +23 -23
  33. package/esm2020/lib/sharedlibrary/components/form/textarea/bit-textarea.component.mjs +21 -21
  34. package/esm2020/lib/sharedlibrary/components/form/time/bit-time.component.mjs +45 -45
  35. package/esm2020/lib/sharedlibrary/components/header/bit-header.component.mjs +48 -48
  36. package/esm2020/lib/sharedlibrary/components/help/bit-help.component.mjs +59 -59
  37. package/esm2020/lib/sharedlibrary/components/loading/bit-loading.component.mjs +65 -65
  38. package/esm2020/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.mjs +44 -44
  39. package/esm2020/lib/sharedlibrary/components/misc/bit-column-boolean.component.mjs +38 -38
  40. package/esm2020/lib/sharedlibrary/components/misc/bit-domain-value.component.mjs +45 -45
  41. package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-error.component.mjs +110 -110
  42. package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.mjs +45 -45
  43. package/esm2020/lib/sharedlibrary/components/toolbar/bit-toolbar.component.mjs +104 -104
  44. package/esm2020/lib/sharedlibrary/components/upload/bit-ng-upload.component.mjs +133 -133
  45. package/esm2020/lib/sharedlibrary/components/user/bit-user-controls.component.mjs +39 -39
  46. package/esm2020/lib/sharedlibrary/data/ayudacontextual.mjs +12 -12
  47. package/esm2020/lib/sharedlibrary/data/bitmessage.mjs +21 -21
  48. package/esm2020/lib/sharedlibrary/data/bitnotification-error.mjs +11 -11
  49. package/esm2020/lib/sharedlibrary/data/bitnotification.mjs +12 -12
  50. package/esm2020/lib/sharedlibrary/data/configuration-editor.mjs +20 -20
  51. package/esm2020/lib/sharedlibrary/data/domain.mjs +9 -9
  52. package/esm2020/lib/sharedlibrary/data/error.mjs +14 -14
  53. package/esm2020/lib/sharedlibrary/data/fichero.mjs +18 -18
  54. package/esm2020/lib/sharedlibrary/data/index.mjs +10 -10
  55. package/esm2020/lib/sharedlibrary/data/item.mjs +9 -9
  56. package/esm2020/lib/sharedlibrary/directives/edit-mode.directive.mjs +16 -16
  57. package/esm2020/lib/sharedlibrary/directives/focus-register.directive.mjs +31 -31
  58. package/esm2020/lib/sharedlibrary/directives/view-mode.directive.mjs +16 -16
  59. package/esm2020/lib/sharedlibrary/global.constants.mjs +24 -24
  60. package/esm2020/lib/sharedlibrary/guards/candeactivate.guard.mjs +13 -13
  61. package/esm2020/lib/sharedlibrary/pipes/capitalize.pipe.mjs +22 -22
  62. package/esm2020/lib/sharedlibrary/pipes/other-actions.pipe.mjs +26 -26
  63. package/esm2020/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.mjs +44 -44
  64. package/esm2020/lib/sharedlibrary/pipes/remove-line-breaks.pipe.mjs +28 -28
  65. package/esm2020/lib/sharedlibrary/services/ayuda.service.mjs +38 -38
  66. package/esm2020/lib/sharedlibrary/services/base-data-adapter.service.mjs +16 -16
  67. package/esm2020/lib/sharedlibrary/services/base-data.service.mjs +4 -4
  68. package/esm2020/lib/sharedlibrary/services/custom-validators.service.mjs +635 -627
  69. package/esm2020/lib/sharedlibrary/services/domain.service.mjs +24 -24
  70. package/esm2020/lib/sharedlibrary/services/focus.service.mjs +30 -30
  71. package/esm2020/lib/sharedlibrary/services/general-utils.service.mjs +143 -143
  72. package/esm2020/lib/sharedlibrary/services/http-utils.service.mjs +175 -175
  73. package/esm2020/lib/sharedlibrary/services/index.mjs +16 -16
  74. package/esm2020/lib/sharedlibrary/services/locator.service.mjs +8 -8
  75. package/esm2020/lib/sharedlibrary/services/message.service.mjs +69 -69
  76. package/esm2020/lib/sharedlibrary/services/session-shared.service.mjs +23 -23
  77. package/esm2020/lib/sharedlibrary/services/tableview.service.mjs +19 -19
  78. package/esm2020/lib/sharedlibrary/services/toolbar.service.mjs +25 -25
  79. package/esm2020/lib/sharedlibrary/services/translate.service.mjs +67 -67
  80. package/esm2020/lib/sharedlibrary/services/upload.service.mjs +57 -57
  81. package/esm2020/lib/sharedlibrary/sharedlibrary.module.mjs +264 -264
  82. package/esm2020/lib/sharedlibrary/utils/custom-http-interceptor.mjs +37 -37
  83. package/esm2020/public-api.mjs +81 -81
  84. package/fesm2015/bit-ng-library.mjs +4550 -4494
  85. package/fesm2015/bit-ng-library.mjs.map +1 -1
  86. package/fesm2020/bit-ng-library.mjs +4543 -4488
  87. package/fesm2020/bit-ng-library.mjs.map +1 -1
  88. package/lib/base/components/base.component.d.ts +8 -8
  89. package/lib/base/models/base-form.models.d.ts +80 -80
  90. package/lib/base/models/base-list.models.d.ts +136 -136
  91. package/lib/base/models/base-sublist.models.d.ts +42 -42
  92. package/lib/base/models/index.d.ts +4 -4
  93. package/lib/base/models/types.d.ts +33 -33
  94. package/lib/base/shared/base-interface.service.d.ts +37 -37
  95. package/lib/base/shared/base.filter.d.ts +37 -37
  96. package/lib/base/shared/base.service.d.ts +59 -59
  97. package/lib/base/shared/utils.d.ts +42 -42
  98. package/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.d.ts +25 -25
  99. package/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.d.ts +15 -15
  100. package/lib/sharedlibrary/components/dialog/bit-dialog.component.d.ts +30 -30
  101. package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts +84 -73
  102. package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts.map +1 -1
  103. package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts +19 -19
  104. package/lib/sharedlibrary/components/form/bit-custom.component.d.ts +35 -35
  105. package/lib/sharedlibrary/components/form/bit-editable.component.d.ts +31 -31
  106. package/lib/sharedlibrary/components/form/bit-general.component.d.ts +41 -41
  107. package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts +19 -19
  108. package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts +10 -10
  109. package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts +15 -15
  110. package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts +14 -14
  111. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts +41 -41
  112. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts +37 -37
  113. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts +33 -33
  114. package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts +31 -31
  115. package/lib/sharedlibrary/components/form/readonly/bit-readonly.component.d.ts +26 -26
  116. package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts +15 -15
  117. package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts +9 -9
  118. package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts +9 -9
  119. package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts +15 -15
  120. package/lib/sharedlibrary/components/header/bit-header.component.d.ts +22 -22
  121. package/lib/sharedlibrary/components/help/bit-help.component.d.ts +15 -15
  122. package/lib/sharedlibrary/components/loading/bit-loading.component.d.ts +17 -17
  123. package/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.d.ts +12 -12
  124. package/lib/sharedlibrary/components/misc/bit-column-boolean.component.d.ts +13 -13
  125. package/lib/sharedlibrary/components/misc/bit-domain-value.component.d.ts +14 -14
  126. package/lib/sharedlibrary/components/notificacion/bit-notification-error.component.d.ts +34 -34
  127. package/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.d.ts +16 -16
  128. package/lib/sharedlibrary/components/toolbar/bit-toolbar.component.d.ts +39 -39
  129. package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts +49 -49
  130. package/lib/sharedlibrary/components/user/bit-user-controls.component.d.ts +14 -14
  131. package/lib/sharedlibrary/data/ayudacontextual.d.ts +8 -8
  132. package/lib/sharedlibrary/data/bitmessage.d.ts +17 -17
  133. package/lib/sharedlibrary/data/bitnotification-error.d.ts +9 -9
  134. package/lib/sharedlibrary/data/bitnotification.d.ts +10 -10
  135. package/lib/sharedlibrary/data/configuration-editor.d.ts +9 -9
  136. package/lib/sharedlibrary/data/domain.d.ts +7 -7
  137. package/lib/sharedlibrary/data/error.d.ts +12 -12
  138. package/lib/sharedlibrary/data/fichero.d.ts +13 -13
  139. package/lib/sharedlibrary/data/index.d.ts +9 -9
  140. package/lib/sharedlibrary/data/item.d.ts +7 -7
  141. package/lib/sharedlibrary/directives/edit-mode.directive.d.ts +8 -8
  142. package/lib/sharedlibrary/directives/focus-register.directive.d.ts +13 -13
  143. package/lib/sharedlibrary/directives/view-mode.directive.d.ts +8 -8
  144. package/lib/sharedlibrary/global.constants.d.ts +15 -15
  145. package/lib/sharedlibrary/guards/candeactivate.guard.d.ts +11 -11
  146. package/lib/sharedlibrary/pipes/capitalize.pipe.d.ts +10 -10
  147. package/lib/sharedlibrary/pipes/other-actions.pipe.d.ts +7 -7
  148. package/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.d.ts +12 -12
  149. package/lib/sharedlibrary/pipes/remove-line-breaks.pipe.d.ts +7 -7
  150. package/lib/sharedlibrary/services/ayuda.service.d.ts +13 -13
  151. package/lib/sharedlibrary/services/base-data-adapter.service.d.ts +11 -11
  152. package/lib/sharedlibrary/services/base-data.service.d.ts +13 -13
  153. package/lib/sharedlibrary/services/custom-validators.service.d.ts +173 -173
  154. package/lib/sharedlibrary/services/custom-validators.service.d.ts.map +1 -1
  155. package/lib/sharedlibrary/services/domain.service.d.ts +11 -11
  156. package/lib/sharedlibrary/services/focus.service.d.ts +12 -12
  157. package/lib/sharedlibrary/services/general-utils.service.d.ts +39 -39
  158. package/lib/sharedlibrary/services/http-utils.service.d.ts +34 -34
  159. package/lib/sharedlibrary/services/index.d.ts +15 -15
  160. package/lib/sharedlibrary/services/locator.service.d.ts +8 -8
  161. package/lib/sharedlibrary/services/message.service.d.ts +44 -44
  162. package/lib/sharedlibrary/services/session-shared.service.d.ts +9 -9
  163. package/lib/sharedlibrary/services/tableview.service.d.ts +9 -9
  164. package/lib/sharedlibrary/services/toolbar.service.d.ts +10 -10
  165. package/lib/sharedlibrary/services/translate.service.d.ts +31 -31
  166. package/lib/sharedlibrary/services/upload.service.d.ts +19 -19
  167. package/lib/sharedlibrary/sharedlibrary.module.d.ts +71 -71
  168. package/lib/sharedlibrary/utils/custom-http-interceptor.d.ts +13 -13
  169. package/package.json +1 -1
  170. package/public-api.d.ts +77 -77
package/README.md CHANGED
@@ -1,160 +1,182 @@
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
+ # 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.1.2] - 2022-05-09
30
+
31
+ Corregido bug de bug en bit-footer al volver de un formulario a la lista, momento en que desaparecía el footer. (la solución completa del bug requiere de cambios en base-list-filter.component.ts de los proyectos)
32
+
33
+ ## [13.1.1] - 2022-02-22
34
+
35
+ Corregido bug de CustomValidators cuando se usaba en forms con diversos campos de longitud limitada. Se mostraba siempre el mismo mensaje para todos, aunque se especificase un validador con longitud diferente en cada campo.
36
+
37
+ ## [13.1.0] - 2022-02-03
38
+
39
+ Incluir el nuevo tipo de bit-footer para las páginas con infinity-scroll en la rama angular 13
40
+
41
+ ## [13.0.2] - 2022-02-03
42
+
43
+ Se añade allowSyntheticDefaultImports a true en las opciones de compilacion de tsconfig para que se importe correctamente la librería
44
+ 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
45
+ 'moment'
46
+
47
+ ## [13.0.1] - 2022-02-03
48
+
49
+ Se elimina moment-mini-ts al presentar problemas de carga con angular 13
50
+
51
+ ## [13.0.0] - 2022-02-02
52
+
53
+ Migración a angular 13
54
+
55
+ ## [12.1.1] - 2022-07-02
56
+
57
+ Bugfix nombre selector bit-footer.
58
+
59
+ ## [12.1.0] - 2022-07-02
60
+
61
+ Cambios:
62
+ * Nuevo tipo de bit-footer para las páginas con infinity-scroll, donde se muestra información de la carga de datos.
63
+ * Para el tipo "list" de bit-footer añadidas opciones para poder ocultar los enlaces a páginas y los botones de primera y última página hasta que no se han recuperado todos los registros. Ambos cambios son workarounds para que el usuario final no se encuentre el bug de página vacía cuando solicita una página de registros mucho más avanzada de la que se encuentra en ese momento.
64
+
65
+ ## [12.0.3] - 2021-12-30
66
+
67
+ 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.
68
+
69
+ ## [12.0.2] - 2021-10-20
70
+
71
+ Se aplican cambios para centrar spinner y el breadcrumb
72
+
73
+ ## [12.0.1] - 2021-09-30
74
+
75
+ Se aplican cambios para adecuarse al primeflex3
76
+
77
+ ## [12.0.0] - 2021-08-22
78
+
79
+ Versión angular12
80
+
81
+ ## [11.0.6] - 2021-08-06
82
+
83
+ Estilo para el footer sin resultados
84
+
85
+ ## [11.0.5] - 2021-07-08
86
+
87
+ se restaura el servicio DomainService que había desaparecido tras un delete no sé muy bien porqué
88
+
89
+ ## [11.0.4] - 2021-07-08
90
+
91
+ se pone firstDayOfWeek a los calendarios de prime
92
+
93
+ ## [11.0.3] - 2021-05-20
94
+
95
+ Se modifica el bit-ng-upload
96
+
97
+ ## [11.0.2] - 2021-05-13
98
+
99
+ Se adapta la toolbar a prime para el caso de botones con más acciones
100
+
101
+ ## [11.0.1] - 2021-05-05
102
+
103
+ Se añade la función objectoToQueryParameters
104
+
105
+ ## [11.0.0] - 2021-04-21
106
+
107
+ Versión compatible con angular 11
108
+
109
+ ## [1.2.4] - 2021-04-21
110
+
111
+ se añaden console.log en el envío de la notificacionError al detectarse fallos
112
+
113
+ ## [1.2.3] - 2021-03-19
114
+
115
+ método para poder ocultar notificaciones de error
116
+
117
+ ## [1.2.2] - 2021-03-05
118
+
119
+ Se imorta moment versión mini
120
+
121
+ ## [1.2.1] - 2021-02-25
122
+
123
+ Añadir tag pInputText al input de bit-text-component.
124
+
125
+ ## [1.2.0] - 2021-02-05
126
+
127
+ Migración a angular 10
128
+
129
+ ## [1.1.3] - 2020-09-11
130
+
131
+ ### Changed
132
+
133
+ Se añade la validación de teléfonos separados por comas
134
+
135
+ ## [1.1.2] - 2020-09-10
136
+
137
+ ### Changed
138
+
139
+ Se arregla un fallo del bit-dropdown-multiple que no traduce el valor emptyTest.
140
+ Se añade el parámetro filter al bit-dropdown-multiple para poder indicar si queremos que filtre o no
141
+
142
+ ## [1.1.1] - 2020-08-07
143
+
144
+ ### Changed
145
+
146
+ Se arregla un fallo del bit-dropdown que repetía dos veces el valor empty
147
+
148
+ ## [1.1.0] - 2020-07-30
149
+
150
+ ### Changed
151
+
152
+ Se eliminan los css internos
153
+
154
+ ## [1.0.0] - 2020-07-01
155
+
156
+ ### Changed
157
+
158
+ Primera versión funcional
159
+
160
+ ## [1.0.3-alpha1] - 2020-05-14
161
+
162
+ ### Changed
163
+
164
+ - 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
165
+
166
+ ## [1.0.3-alpha1] - 2020-05-13
167
+
168
+ ### Changed
169
+
170
+ - Label mal construido no se traducía
171
+
172
+ ## [1.0.2-alpha1] - 2020-05-13
173
+
174
+ ### Changed
175
+
176
+ - Se publica la clase BaseLisPaginateComponent
177
+
178
+ ## [1.0.1-alpha1] - 2020-05-12
179
+
180
+ ### Added
181
+
182
+ - Commit inicial
@@ -1,6 +1,6 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="bit-ng-library" />
5
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="bit-ng-library" />
5
+ export * from './public-api';
6
6
  //# sourceMappingURL=bit-ng-library.d.ts.map
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
5
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYml0LW5nLWxpYnJhcnkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9iaXQtbmctbGlicmFyeS9zcmMvYml0LW5nLWxpYnJhcnkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -1,18 +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=
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.2", ngImport: i0, type: BaseComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive });
14
+ BaseComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: BaseComponent, ngImport: i0 });
15
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseComponent, decorators: [{
16
+ type: Directive
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iaXQtbmctbGlicmFyeS9zcmMvbGliL2Jhc2UvY29tcG9uZW50cy9iYXNlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQy9CLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRzFDLE1BQU0sT0FBZ0IsYUFBYTtJQURuQztRQUVFLGFBQVEsR0FBcUIsSUFBSSxPQUFPLEVBQVcsQ0FBQztLQU1yRDtJQUpDLFdBQVc7UUFDVCxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztRQUN6QixJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQzlCLENBQUM7OzBHQU5tQixhQUFhOzhGQUFiLGFBQWE7MkZBQWIsYUFBYTtrQkFEbEMsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xyXG5pbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5cclxuQERpcmVjdGl2ZSgpXHJcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBCYXNlQ29tcG9uZW50IHtcclxuICBkZXN0cm95JDogU3ViamVjdDxib29sZWFuPiA9IG5ldyBTdWJqZWN0PGJvb2xlYW4+KCk7XHJcblxyXG4gIG5nT25EZXN0cm95KCkge1xyXG4gICAgdGhpcy5kZXN0cm95JC5uZXh0KHRydWUpO1xyXG4gICAgdGhpcy5kZXN0cm95JC51bnN1YnNjcmliZSgpO1xyXG4gIH1cclxufVxyXG4iXX0=