react-core-ts 2.1.30 → 2.1.32

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.
@@ -498,7 +498,7 @@
498
498
 
499
499
  /* Portal tooltip version used outside .tooltip-container */
500
500
  .tooltip-info-portal {
501
- transform: translateX(0%);
501
+ /* position/transform set inline in React (portal) */
502
502
  padding: 0.3em 0.6em;
503
503
  opacity: 1;
504
504
  width: max-content;
@@ -506,11 +506,10 @@
506
506
  font-size: 12px;
507
507
  color: #fff !important;
508
508
  pointer-events: auto;
509
- transition: all 0.3s;
509
+ transition: opacity 0.2s, visibility 0.2s;
510
510
  border: 1px solid #475467;
511
511
  background-color: #475467;
512
512
  border-radius: 6px;
513
- visibility: visible;
514
513
  }
515
514
 
516
515
  .tooltip-info-portal::before {
@@ -528,7 +527,7 @@
528
527
  }
529
528
 
530
529
  .tooltip-portal-error {
531
- transform: translateX(0%);
530
+ /* position/transform set inline in React (portal); avoid CSS overriding anchor */
532
531
  padding: 0.3em 0.6em;
533
532
  opacity: 1;
534
533
  width: max-content;
@@ -536,11 +535,10 @@
536
535
  font-size: 12px;
537
536
  color: #fff !important;
538
537
  pointer-events: auto;
539
- transition: all 0.3s;
538
+ transition: opacity 0.2s, visibility 0.2s;
540
539
  border: 1px solid #e55353;
541
540
  background-color: #e55353;
542
541
  border-radius: 6px;
543
- visibility: visible;
544
542
  }
545
543
 
546
544
  .tooltip-portal-error::before {