general-library-union 2.5.94 → 2.5.96

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "general-library-union",
3
- "version": "2.5.94",
3
+ "version": "2.5.96",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^18.0.4",
@@ -598,6 +598,18 @@ color: var(--color-700);
598
598
  .eleccion-modo .p-inputswitch .p-inputswitch-slider{
599
599
  color: #fff;
600
600
  }
601
+
602
+ /* Aplicación de transición suave a la bolita del switch */
603
+
604
+ .eleccion-modo .p-inputswitch-slider {
605
+ transition: transform 0.8s ease-in-out; /* Ajusta la duración y la curva de tiempo */
606
+ }
607
+
608
+ /* Cuando el switch está activado */
609
+
610
+ .eleccion-modo .p-inputswitch-checked .p-inputswitch-slider {
611
+ transition: transform 0.8s ease-in-out; /* Mueve la bolita a la posición de "on" */
612
+ }
601
613
  /******************************************************************************
602
614
  * color border styles
603
615
  *****************************************************************************/
@@ -576,13 +576,13 @@ body {
576
576
  /* Aplicación de transición suave a la bolita del switch */
577
577
 
578
578
  .eleccion-modo .p-inputswitch-slider {
579
- transition: transform 0.4s ease-in-out; /* Ajusta la duración y la curva de tiempo */
579
+ transition: transform 0.8s ease-in-out; /* Ajusta la duración y la curva de tiempo */
580
580
  }
581
581
 
582
582
  /* Cuando el switch está activado */
583
583
 
584
584
  .eleccion-modo .p-inputswitch-checked .p-inputswitch-slider {
585
- transition: transform 0.4s ease-in-out; /* Mueve la bolita a la posición de "on" */
585
+ transition: transform 0.8s ease-in-out; /* Mueve la bolita a la posición de "on" */
586
586
  }
587
587
 
588
588