bit-ng-library 19.0.6 → 19.0.8

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 (51) hide show
  1. package/README.md +10 -0
  2. package/fesm2022/bit-ng-library.mjs +1255 -1274
  3. package/fesm2022/bit-ng-library.mjs.map +1 -1
  4. package/lib/base/components/base.component.d.ts +3 -0
  5. package/lib/base/components/base.component.d.ts.map +1 -1
  6. package/lib/sharedlibrary/components/form/amount/bit-amount.component.d.ts +0 -3
  7. package/lib/sharedlibrary/components/form/amount/bit-amount.component.d.ts.map +1 -1
  8. package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts +0 -3
  9. package/lib/sharedlibrary/components/form/autocomplete/bit-autocomplete.component.d.ts.map +1 -1
  10. package/lib/sharedlibrary/components/form/bit-custom.component.d.ts +1 -3
  11. package/lib/sharedlibrary/components/form/bit-custom.component.d.ts.map +1 -1
  12. package/lib/sharedlibrary/components/form/bit-general.component.d.ts +0 -3
  13. package/lib/sharedlibrary/components/form/bit-general.component.d.ts.map +1 -1
  14. package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts +1 -3
  15. package/lib/sharedlibrary/components/form/calendar/bit-calendar.component.d.ts.map +1 -1
  16. package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts +0 -3
  17. package/lib/sharedlibrary/components/form/checkbox/bit-checkbox.component.d.ts.map +1 -1
  18. package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts +1 -3
  19. package/lib/sharedlibrary/components/form/date/bit-date.component.d.ts.map +1 -1
  20. package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts +1 -3
  21. package/lib/sharedlibrary/components/form/datetime/bit-datetime.component.d.ts.map +1 -1
  22. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts +1 -3
  23. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-general.component.d.ts.map +1 -1
  24. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts +1 -3
  25. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown-multiple.component.d.ts.map +1 -1
  26. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts +2 -3
  27. package/lib/sharedlibrary/components/form/dropdown/bit-dropdown.component.d.ts.map +1 -1
  28. package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts +0 -3
  29. package/lib/sharedlibrary/components/form/editor/bit-editor.component.d.ts.map +1 -1
  30. package/lib/sharedlibrary/components/form/multiple-checkbox/bit-multiple-checkbox.component.d.ts +0 -3
  31. package/lib/sharedlibrary/components/form/multiple-checkbox/bit-multiple-checkbox.component.d.ts.map +1 -1
  32. package/lib/sharedlibrary/components/form/number/bit-number.component.d.ts +0 -3
  33. package/lib/sharedlibrary/components/form/number/bit-number.component.d.ts.map +1 -1
  34. package/lib/sharedlibrary/components/form/switch/bit-switch-si-no.component.d.ts +0 -3
  35. package/lib/sharedlibrary/components/form/switch/bit-switch-si-no.component.d.ts.map +1 -1
  36. package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts +0 -3
  37. package/lib/sharedlibrary/components/form/switch/bit-switch.component.d.ts.map +1 -1
  38. package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts +0 -3
  39. package/lib/sharedlibrary/components/form/text/bit-text.component.d.ts.map +1 -1
  40. package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts +0 -3
  41. package/lib/sharedlibrary/components/form/textarea/bit-textarea.component.d.ts.map +1 -1
  42. package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts +1 -3
  43. package/lib/sharedlibrary/components/form/time/bit-time.component.d.ts.map +1 -1
  44. package/lib/sharedlibrary/components/language/bit-language-selector.component.d.ts.map +1 -1
  45. package/lib/sharedlibrary/services/ayuda.service.d.ts +5 -0
  46. package/lib/sharedlibrary/services/ayuda.service.d.ts.map +1 -1
  47. package/lib/sharedlibrary/services/locale.service.d.ts +1 -1
  48. package/lib/sharedlibrary/services/locale.service.d.ts.map +1 -1
  49. package/lib/sharedlibrary/services/theme-fbit.service.d.ts +1 -1
  50. package/lib/sharedlibrary/services/theme-fbit.service.d.ts.map +1 -1
  51. package/package.json +1 -1
package/README.md CHANGED
@@ -26,6 +26,16 @@ 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
+ ## [19.0.8] - 2025-04-10
30
+
31
+ LocaleService pasa a almacenar el local como un signal mediante la propiedad locale$ y se elimina la propiedad locale
32
+ Se elimina la inyección de AyudaService en los constructores de los componentes que lo usan puesto que estos extienden de BaseComponent que ya inyecta AyudaService
33
+
34
+ ## [19.0.7] - 2025-04-08
35
+
36
+ Se modifican stilos del sidebar para eliminar el estilo que daba color
37
+ Se cambia el p-putton del settings por un elemento i con un icono
38
+
29
39
  ## [19.0.6] - 2025-04-03
30
40
 
31
41
  Se modifica el componente bit-switch para utilizar p-toogleSwitch en vez de p-inputSwitch