bit-ng-library 12.0.1 → 12.1.1
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 +18 -0
- package/bit-ng-library.d.ts +2 -2
- package/bit-ng-library.metadata.json +1 -1
- package/bundles/bit-ng-library.umd.js +69 -22
- package/bundles/bit-ng-library.umd.js.map +1 -1
- package/esm2015/bit-ng-library.js +2 -2
- package/esm2015/lib/sharedlibrary/components/footer/bit-footer.component.js +54 -18
- package/esm2015/lib/sharedlibrary/components/header/bit-header.component.js +2 -2
- package/esm2015/lib/sharedlibrary/components/loading/bit-loading.component.js +2 -2
- package/esm2015/lib/sharedlibrary/components/upload/bit-ng-upload.component.js +10 -8
- package/fesm2015/bit-ng-library.js +60 -22
- package/fesm2015/bit-ng-library.js.map +1 -1
- package/lib/sharedlibrary/components/footer/bit-footer.component.d.ts +17 -7
- package/lib/sharedlibrary/components/upload/bit-ng-upload.component.d.ts +8 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,24 @@ To get more help on the Angular CLI use `ng help` or go check out the [Angular C
|
|
|
26
26
|
|
|
27
27
|
## changelog
|
|
28
28
|
|
|
29
|
+
## [12.1.1] - 2022-07-02
|
|
30
|
+
|
|
31
|
+
Bugfix nombre selector bit-footer.
|
|
32
|
+
|
|
33
|
+
## [12.1.0] - 2022-07-02
|
|
34
|
+
|
|
35
|
+
Cambios:
|
|
36
|
+
* Nuevo tipo de bit-footer para las páginas con infinity-scroll, donde se muestra información de la carga de datos.
|
|
37
|
+
* 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.
|
|
38
|
+
|
|
39
|
+
## [12.0.3] - 2021-12-30
|
|
40
|
+
|
|
41
|
+
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.
|
|
42
|
+
|
|
43
|
+
## [12.0.2] - 2021-10-20
|
|
44
|
+
|
|
45
|
+
Se aplican cambios para centrar spinner y el breadcrumb
|
|
46
|
+
|
|
29
47
|
## [12.0.1] - 2021-09-30
|
|
30
48
|
|
|
31
49
|
Se aplican cambios para adecuarse al primeflex3
|
package/bit-ng-library.d.ts
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export { ErrorValidateForm as
|
|
6
|
-
export { AyudaService as
|
|
5
|
+
export { ErrorValidateForm as ɵh, TranslatedMessage as ɵg } from './lib/base/models';
|
|
6
|
+
export { AyudaService as ɵe, BitMessageService as ɵc, FocusService as ɵa, GeneralUtils as ɵd, SessionSharedService as ɵf, TranslateService as ɵb } from './lib/sharedlibrary/services';
|