@charlesgomes/leafcode-shared-lib-react 1.0.45 → 1.0.47
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/dist/index.css +2 -5
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/styles/table.css +2 -6
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -439,9 +439,6 @@ th {
|
|
|
439
439
|
.p-datatable .p-datatable-tbody > tr > td:nth-last-child(2) {
|
|
440
440
|
border-right: 1px solid #edf0f2 !important;
|
|
441
441
|
}
|
|
442
|
-
.react-tooltip {
|
|
443
|
-
z-index: 99 !important;
|
|
444
|
-
}
|
|
445
442
|
.box-icones-actions-column:hover {
|
|
446
443
|
opacity: 1;
|
|
447
444
|
}
|
|
@@ -521,8 +518,8 @@ th {
|
|
|
521
518
|
padding: 0;
|
|
522
519
|
}
|
|
523
520
|
.p-datatable-scrollable-table > .p-datatable-thead {
|
|
524
|
-
z-index:
|
|
521
|
+
z-index: 13;
|
|
525
522
|
}
|
|
526
523
|
.react-tooltip {
|
|
527
|
-
z-index:
|
|
524
|
+
z-index: 13 !important;
|
|
528
525
|
}
|
package/dist/index.js
CHANGED
|
@@ -249,7 +249,7 @@ function TooltipCustom({ label, id }) {
|
|
|
249
249
|
place: "top",
|
|
250
250
|
positionStrategy: "fixed",
|
|
251
251
|
className: "tooltip-icone",
|
|
252
|
-
style: { zIndex:
|
|
252
|
+
style: { zIndex: 13 },
|
|
253
253
|
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)("div", { className: "tooltip-custom", children: label })
|
|
254
254
|
}
|
|
255
255
|
),
|
package/dist/index.mjs
CHANGED
|
@@ -194,7 +194,7 @@ function TooltipCustom({ label, id }) {
|
|
|
194
194
|
place: "top",
|
|
195
195
|
positionStrategy: "fixed",
|
|
196
196
|
className: "tooltip-icone",
|
|
197
|
-
style: { zIndex:
|
|
197
|
+
style: { zIndex: 13 },
|
|
198
198
|
children: /* @__PURE__ */ jsx5("div", { className: "tooltip-custom", children: label })
|
|
199
199
|
}
|
|
200
200
|
),
|
package/dist/styles/table.css
CHANGED
|
@@ -530,10 +530,6 @@ th {
|
|
|
530
530
|
border-right: 1px solid #edf0f2 !important;
|
|
531
531
|
}
|
|
532
532
|
|
|
533
|
-
.react-tooltip {
|
|
534
|
-
z-index: 99 !important;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
533
|
.box-icones-actions-column:hover {
|
|
538
534
|
opacity: 1;
|
|
539
535
|
}
|
|
@@ -629,9 +625,9 @@ th {
|
|
|
629
625
|
}
|
|
630
626
|
|
|
631
627
|
.p-datatable-scrollable-table > .p-datatable-thead {
|
|
632
|
-
z-index:
|
|
628
|
+
z-index: 13;
|
|
633
629
|
}
|
|
634
630
|
|
|
635
631
|
.react-tooltip {
|
|
636
|
-
z-index:
|
|
632
|
+
z-index: 13 !important;
|
|
637
633
|
}
|