bit-ng-library 20.1.11 → 20.1.13
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 +17 -1
- package/fesm2022/bit-ng-library.mjs +253 -242
- package/fesm2022/bit-ng-library.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,23 @@ To get more help on the Angular CLI use `ng help` or go check out the [Angular C
|
|
|
38
38
|
|
|
39
39
|
## changelog
|
|
40
40
|
|
|
41
|
-
## [20.1.
|
|
41
|
+
## [20.1.13] - 2026-05-06
|
|
42
|
+
Se permite pasar un parametro adiciona y opcional para personalizar el label que tendrá el botón de 'other-actions' cuando se presenta en modo 'desplegable de acciones'. Si no se especifíca se usa la etiqueta de traducción para el label por defecto 'other-actions'.
|
|
43
|
+
Por ejemplo:
|
|
44
|
+
// Sin personalización
|
|
45
|
+
buildDefaultToolbarForm(FormType.Update, true, false)
|
|
46
|
+
|
|
47
|
+
// Con label personalizado → usará la entrada en el fichero de traducciones 'bitnglibrary.toolbar.other-actions-expediente'
|
|
48
|
+
buildDefaultToolbarForm(FormType.Update, true, false, 'other-actions-expediente')
|
|
49
|
+
|
|
50
|
+
Además se mejora para que el despliegue de las acciones se haga tanto si pulsas el botón como si pulsas la flecha.
|
|
51
|
+
|
|
52
|
+
## [20.1.12] - 2026-03-04
|
|
53
|
+
|
|
54
|
+
Se soluciona un problema con los botones disabled del paginator y toolbar. Siguiendo esta recomendación https://github.com/primefaces/primeng/issues/13342
|
|
55
|
+
Se sustituye el (click) por (onClick)
|
|
56
|
+
|
|
57
|
+
## [20.1.11] - 2026-02-17
|
|
42
58
|
|
|
43
59
|
Se añaden dos nuevos inputs al bit-dropdown-multiple
|
|
44
60
|
- placeholder Para mostrar un texto en el caso de que no haya ninguna opción seleccionada
|