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.
- package/README.md +182 -160
- package/bit-ng-library.d.ts +5 -5
- package/esm2020/bit-ng-library.mjs +4 -4
- package/esm2020/lib/base/components/base.component.mjs +18 -18
- package/esm2020/lib/base/models/base-form.models.mjs +129 -129
- package/esm2020/lib/base/models/base-list.models.mjs +202 -202
- package/esm2020/lib/base/models/base-sublist.models.mjs +93 -93
- package/esm2020/lib/base/models/index.mjs +5 -5
- package/esm2020/lib/base/models/types.mjs +19 -19
- package/esm2020/lib/base/shared/base-interface.service.mjs +2 -2
- package/esm2020/lib/base/shared/base.filter.mjs +78 -78
- package/esm2020/lib/base/shared/base.service.mjs +85 -85
- package/esm2020/lib/base/shared/utils.mjs +113 -113
- package/esm2020/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.mjs +67 -67
- package/esm2020/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.mjs +49 -49
- package/esm2020/lib/sharedlibrary/components/dialog/bit-dialog.component.mjs +209 -209
- package/esm2020/lib/sharedlibrary/components/footer/bit-footer.component.mjs +264 -217
- package/esm2020/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.mjs +47 -47
- package/esm2020/lib/sharedlibrary/components/form/bit-custom.component.mjs +86 -86
- package/esm2020/lib/sharedlibrary/components/form/bit-editable.component.mjs +87 -87
- package/esm2020/lib/sharedlibrary/components/form/bit-general.component.mjs +93 -93
- package/esm2020/lib/sharedlibrary/components/form/calendar/bit-calendar.component.mjs +37 -37
- package/esm2020/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.mjs +24 -24
- package/esm2020/lib/sharedlibrary/components/form/date/bit-date.component.mjs +45 -45
- package/esm2020/lib/sharedlibrary/components/form/datetime/bit-datetime.component.mjs +38 -38
- package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.mjs +100 -100
- package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.mjs +80 -80
- package/esm2020/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.mjs +86 -86
- package/esm2020/lib/sharedlibrary/components/form/editor/bit-editor.component.mjs +81 -81
- package/esm2020/lib/sharedlibrary/components/form/readonly/bit-readonly.component.mjs +96 -96
- package/esm2020/lib/sharedlibrary/components/form/switch/bit-switch.component.mjs +43 -43
- package/esm2020/lib/sharedlibrary/components/form/text/bit-text.component.mjs +23 -23
- package/esm2020/lib/sharedlibrary/components/form/textarea/bit-textarea.component.mjs +21 -21
- package/esm2020/lib/sharedlibrary/components/form/time/bit-time.component.mjs +45 -45
- package/esm2020/lib/sharedlibrary/components/header/bit-header.component.mjs +48 -48
- package/esm2020/lib/sharedlibrary/components/help/bit-help.component.mjs +59 -59
- package/esm2020/lib/sharedlibrary/components/loading/bit-loading.component.mjs +65 -65
- package/esm2020/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.mjs +44 -44
- package/esm2020/lib/sharedlibrary/components/misc/bit-column-boolean.component.mjs +38 -38
- package/esm2020/lib/sharedlibrary/components/misc/bit-domain-value.component.mjs +45 -45
- package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-error.component.mjs +110 -110
- package/esm2020/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.mjs +45 -45
- package/esm2020/lib/sharedlibrary/components/toolbar/bit-toolbar.component.mjs +104 -104
- package/esm2020/lib/sharedlibrary/components/upload/bit-ng-upload.component.mjs +133 -133
- package/esm2020/lib/sharedlibrary/components/user/bit-user-controls.component.mjs +39 -39
- package/esm2020/lib/sharedlibrary/data/ayudacontextual.mjs +12 -12
- package/esm2020/lib/sharedlibrary/data/bitmessage.mjs +21 -21
- package/esm2020/lib/sharedlibrary/data/bitnotification-error.mjs +11 -11
- package/esm2020/lib/sharedlibrary/data/bitnotification.mjs +12 -12
- package/esm2020/lib/sharedlibrary/data/configuration-editor.mjs +20 -20
- package/esm2020/lib/sharedlibrary/data/domain.mjs +9 -9
- package/esm2020/lib/sharedlibrary/data/error.mjs +14 -14
- package/esm2020/lib/sharedlibrary/data/fichero.mjs +18 -18
- package/esm2020/lib/sharedlibrary/data/index.mjs +10 -10
- package/esm2020/lib/sharedlibrary/data/item.mjs +9 -9
- package/esm2020/lib/sharedlibrary/directives/edit-mode.directive.mjs +16 -16
- package/esm2020/lib/sharedlibrary/directives/focus-register.directive.mjs +31 -31
- package/esm2020/lib/sharedlibrary/directives/view-mode.directive.mjs +16 -16
- package/esm2020/lib/sharedlibrary/global.constants.mjs +24 -24
- package/esm2020/lib/sharedlibrary/guards/candeactivate.guard.mjs +13 -13
- package/esm2020/lib/sharedlibrary/pipes/capitalize.pipe.mjs +22 -22
- package/esm2020/lib/sharedlibrary/pipes/other-actions.pipe.mjs +26 -26
- package/esm2020/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.mjs +44 -44
- package/esm2020/lib/sharedlibrary/pipes/remove-line-breaks.pipe.mjs +28 -28
- package/esm2020/lib/sharedlibrary/services/ayuda.service.mjs +38 -38
- package/esm2020/lib/sharedlibrary/services/base-data-adapter.service.mjs +16 -16
- package/esm2020/lib/sharedlibrary/services/base-data.service.mjs +4 -4
- package/esm2020/lib/sharedlibrary/services/custom-validators.service.mjs +635 -627
- package/esm2020/lib/sharedlibrary/services/domain.service.mjs +24 -24
- package/esm2020/lib/sharedlibrary/services/focus.service.mjs +30 -30
- package/esm2020/lib/sharedlibrary/services/general-utils.service.mjs +143 -143
- package/esm2020/lib/sharedlibrary/services/http-utils.service.mjs +175 -175
- package/esm2020/lib/sharedlibrary/services/index.mjs +16 -16
- package/esm2020/lib/sharedlibrary/services/locator.service.mjs +8 -8
- package/esm2020/lib/sharedlibrary/services/message.service.mjs +69 -69
- package/esm2020/lib/sharedlibrary/services/session-shared.service.mjs +23 -23
- package/esm2020/lib/sharedlibrary/services/tableview.service.mjs +19 -19
- package/esm2020/lib/sharedlibrary/services/toolbar.service.mjs +25 -25
- package/esm2020/lib/sharedlibrary/services/translate.service.mjs +67 -67
- package/esm2020/lib/sharedlibrary/services/upload.service.mjs +57 -57
- package/esm2020/lib/sharedlibrary/sharedlibrary.module.mjs +264 -264
- package/esm2020/lib/sharedlibrary/utils/custom-http-interceptor.mjs +37 -37
- package/esm2020/public-api.mjs +81 -81
- package/fesm2015/bit-ng-library.mjs +4550 -4494
- package/fesm2015/bit-ng-library.mjs.map +1 -1
- package/fesm2020/bit-ng-library.mjs +4543 -4488
- package/fesm2020/bit-ng-library.mjs.map +1 -1
- package/lib/base/components/base.component.d.ts +8 -8
- package/lib/base/models/base-form.models.d.ts +80 -80
- package/lib/base/models/base-list.models.d.ts +136 -136
- package/lib/base/models/base-sublist.models.d.ts +42 -42
- package/lib/base/models/index.d.ts +4 -4
- package/lib/base/models/types.d.ts +33 -33
- package/lib/base/shared/base-interface.service.d.ts +37 -37
- package/lib/base/shared/base.filter.d.ts +37 -37
- package/lib/base/shared/base.service.d.ts +59 -59
- package/lib/base/shared/utils.d.ts +42 -42
- package/lib/sharedlibrary/components/breadcrumb/bit-breadcrumb.component.d.ts +25 -25
- package/lib/sharedlibrary/components/contol-messages/bit-control-messages.component.d.ts +15 -15
- package/lib/sharedlibrary/components/dialog/bit-dialog.component.d.ts +30 -30
- package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts +84 -73
- package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts.map +1 -1
- package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts +19 -19
- package/lib/sharedlibrary/components/form/bit-custom.component.d.ts +35 -35
- package/lib/sharedlibrary/components/form/bit-editable.component.d.ts +31 -31
- package/lib/sharedlibrary/components/form/bit-general.component.d.ts +41 -41
- package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts +19 -19
- package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts +10 -10
- package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts +15 -15
- package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts +14 -14
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts +41 -41
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts +37 -37
- package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts +33 -33
- package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts +31 -31
- package/lib/sharedlibrary/components/form/readonly/bit-readonly.component.d.ts +26 -26
- package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts +15 -15
- package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts +9 -9
- package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts +9 -9
- package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts +15 -15
- package/lib/sharedlibrary/components/header/bit-header.component.d.ts +22 -22
- package/lib/sharedlibrary/components/help/bit-help.component.d.ts +15 -15
- package/lib/sharedlibrary/components/loading/bit-loading.component.d.ts +17 -17
- package/lib/sharedlibrary/components/misc/bit-boton-ayuda.component.d.ts +12 -12
- package/lib/sharedlibrary/components/misc/bit-column-boolean.component.d.ts +13 -13
- package/lib/sharedlibrary/components/misc/bit-domain-value.component.d.ts +14 -14
- package/lib/sharedlibrary/components/notificacion/bit-notification-error.component.d.ts +34 -34
- package/lib/sharedlibrary/components/notificacion/bit-notification-toast.component.d.ts +16 -16
- package/lib/sharedlibrary/components/toolbar/bit-toolbar.component.d.ts +39 -39
- package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts +49 -49
- package/lib/sharedlibrary/components/user/bit-user-controls.component.d.ts +14 -14
- package/lib/sharedlibrary/data/ayudacontextual.d.ts +8 -8
- package/lib/sharedlibrary/data/bitmessage.d.ts +17 -17
- package/lib/sharedlibrary/data/bitnotification-error.d.ts +9 -9
- package/lib/sharedlibrary/data/bitnotification.d.ts +10 -10
- package/lib/sharedlibrary/data/configuration-editor.d.ts +9 -9
- package/lib/sharedlibrary/data/domain.d.ts +7 -7
- package/lib/sharedlibrary/data/error.d.ts +12 -12
- package/lib/sharedlibrary/data/fichero.d.ts +13 -13
- package/lib/sharedlibrary/data/index.d.ts +9 -9
- package/lib/sharedlibrary/data/item.d.ts +7 -7
- package/lib/sharedlibrary/directives/edit-mode.directive.d.ts +8 -8
- package/lib/sharedlibrary/directives/focus-register.directive.d.ts +13 -13
- package/lib/sharedlibrary/directives/view-mode.directive.d.ts +8 -8
- package/lib/sharedlibrary/global.constants.d.ts +15 -15
- package/lib/sharedlibrary/guards/candeactivate.guard.d.ts +11 -11
- package/lib/sharedlibrary/pipes/capitalize.pipe.d.ts +10 -10
- package/lib/sharedlibrary/pipes/other-actions.pipe.d.ts +7 -7
- package/lib/sharedlibrary/pipes/pipe-cantidadmoneda.pipe.d.ts +12 -12
- package/lib/sharedlibrary/pipes/remove-line-breaks.pipe.d.ts +7 -7
- package/lib/sharedlibrary/services/ayuda.service.d.ts +13 -13
- package/lib/sharedlibrary/services/base-data-adapter.service.d.ts +11 -11
- package/lib/sharedlibrary/services/base-data.service.d.ts +13 -13
- package/lib/sharedlibrary/services/custom-validators.service.d.ts +173 -173
- package/lib/sharedlibrary/services/custom-validators.service.d.ts.map +1 -1
- package/lib/sharedlibrary/services/domain.service.d.ts +11 -11
- package/lib/sharedlibrary/services/focus.service.d.ts +12 -12
- package/lib/sharedlibrary/services/general-utils.service.d.ts +39 -39
- package/lib/sharedlibrary/services/http-utils.service.d.ts +34 -34
- package/lib/sharedlibrary/services/index.d.ts +15 -15
- package/lib/sharedlibrary/services/locator.service.d.ts +8 -8
- package/lib/sharedlibrary/services/message.service.d.ts +44 -44
- package/lib/sharedlibrary/services/session-shared.service.d.ts +9 -9
- package/lib/sharedlibrary/services/tableview.service.d.ts +9 -9
- package/lib/sharedlibrary/services/toolbar.service.d.ts +10 -10
- package/lib/sharedlibrary/services/translate.service.d.ts +31 -31
- package/lib/sharedlibrary/services/upload.service.d.ts +19 -19
- package/lib/sharedlibrary/sharedlibrary.module.d.ts +71 -71
- package/lib/sharedlibrary/utils/custom-http-interceptor.d.ts +13 -13
- package/package.json +1 -1
- 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.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## [
|
|
48
|
-
|
|
49
|
-
Se
|
|
50
|
-
|
|
51
|
-
## [
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
## [12.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
## [
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## [1.
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
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
|
+
## [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
|
package/bit-ng-library.d.ts
CHANGED
|
@@ -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.
|
|
14
|
-
BaseComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.
|
|
16
|
-
type: Directive
|
|
17
|
-
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
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=
|