general-library-union 2.5.78 → 2.5.79

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.78",
3
+ "version": "2.5.79",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^18.0.4",
@@ -598,6 +598,29 @@ color: var(--color-700);
598
598
  .eleccion-modo .p-inputswitch .p-inputswitch-slider{
599
599
  color: #fff;
600
600
  }
601
+
602
+
603
+ /* Definición de la animación de escala */
604
+ @keyframes scaleUp {
605
+ from {
606
+ transform: scale(0.8); /* Tamaño inicial */
607
+ }
608
+ to {
609
+ transform: scale(1); /* Tamaño final */
610
+ }
611
+ }
612
+
613
+ /* Aplicación de la animación al componente p-inputSwitch */
614
+ .eleccion-modo .p-inputswitch {
615
+ display: inline-block; /* Asegúrate de que el contenedor permite el cambio de tamaño */
616
+ animation: scaleUp 0.3s ease-in-out; /* Duración y tipo de animación */
617
+ }
618
+
619
+ /* Puedes ajustar la animación para solo aplicar en estados específicos usando clases adicionales */
620
+ .eleccion-modo .p-inputswitch.p-inputswitch-checked {
621
+ animation: scaleUp 0.3s ease-in-out; /* Aplica animación cuando el switch está activado */
622
+ }
623
+
601
624
  /******************************************************************************
602
625
  * color border styles
603
626
  *****************************************************************************/
@@ -3314,15 +3337,10 @@ td.GrupoColor {
3314
3337
  display: flex;
3315
3338
  align-items: center;
3316
3339
  text-align: center;
3317
- padding: 7% 4% 5%;
3340
+ padding: 14% 4% 5%;
3318
3341
  justify-content: center;
3319
3342
  }
3320
3343
 
3321
-
3322
- .contenedor-titulo-actos img {
3323
- width: 4.5rem;
3324
- }
3325
-
3326
3344
  .contenedor-lista-tipo-acto {
3327
3345
  position: relative;
3328
3346
  display: flex;