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.
- package/README.md +59 -0
- package/dist/ReactAutoCompleteTableView.d.ts +23 -0
- package/dist/ReactAutoCompleteTableView.js +184 -71
- package/dist/ReactAutoCompleteTableView.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/styles/components/autocomplete.css +69 -0
- package/dist/styles/components/tooltip.css +4 -6
- package/dist/styles/styles/components/autocomplete.css +69 -0
- package/dist/styles/styles/components/tooltip.css +4 -6
- package/docs/App.tsx +61 -0
- package/package.json +1 -1
- package/src/ReactAutoCompleteTableView.tsx +322 -94
- package/src/index.tsx +5 -0
- package/src/styles/components/autocomplete.css +69 -0
- package/src/styles/components/tooltip.css +4 -6
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
|
|
499
499
|
/* Portal tooltip version used outside .tooltip-container */
|
|
500
500
|
.tooltip-info-portal {
|
|
501
|
-
transform
|
|
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:
|
|
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
|
|
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:
|
|
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 {
|