dce-reactkit 3.10.3 → 3.11.1-beta.tooltip.1
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/cjs/index.js +2 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/stylesheets/shared.css.d.ts +1 -1
- package/dist/esm/index.js +2 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/stylesheets/shared.css.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/AppWrapper.tsx +18 -18
- package/src/components/CheckboxButton.tsx +0 -1
- package/src/components/RadioButton.tsx +0 -1
- package/src/stylesheets/shared.css.ts +0 -5
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Universal stylesheet
|
|
3
3
|
* @author Gabe Abrams
|
|
4
4
|
*/
|
|
5
|
-
declare const shared = "\n/* Button with no style */\n.btn-nostyle {\n border: 0 !important;\n background: transparent !important;\n outline: 0 !important;\n font-size: inherit !important;\n color: inherit !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n/* Tooltip on Very Top */\n.tooltip {\n z-index: 9000000000 !important;\n}\n
|
|
5
|
+
declare const shared = "\n/* Button with no style */\n.btn-nostyle {\n border: 0 !important;\n background: transparent !important;\n outline: 0 !important;\n font-size: inherit !important;\n color: inherit !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n/* Tooltip on Very Top */\n.tooltip {\n z-index: 9000000000 !important;\n}\n";
|
|
6
6
|
export default shared;
|
package/dist/esm/index.js
CHANGED
|
@@ -909,11 +909,6 @@ const shared = `
|
|
|
909
909
|
.tooltip {
|
|
910
910
|
z-index: 9000000000 !important;
|
|
911
911
|
}
|
|
912
|
-
|
|
913
|
-
/* Tooltip White Text */
|
|
914
|
-
.tooltip .tooltip-inner {
|
|
915
|
-
color: white !important;
|
|
916
|
-
}
|
|
917
912
|
`;
|
|
918
913
|
|
|
919
914
|
/**
|
|
@@ -1434,7 +1429,7 @@ const AppWrapper = (props) => {
|
|
|
1434
1429
|
? `
|
|
1435
1430
|
.tooltip-inner {
|
|
1436
1431
|
background-color: white;
|
|
1437
|
-
color: black;
|
|
1432
|
+
color: black !important;
|
|
1438
1433
|
border: 0.1rem solid black;
|
|
1439
1434
|
pointer-events: none;
|
|
1440
1435
|
}
|
|
@@ -1447,7 +1442,7 @@ const AppWrapper = (props) => {
|
|
|
1447
1442
|
: `
|
|
1448
1443
|
.tooltip-inner {
|
|
1449
1444
|
background-color: black;
|
|
1450
|
-
color: white;
|
|
1445
|
+
color: white !important;
|
|
1451
1446
|
border: 0.1rem solid white;
|
|
1452
1447
|
pointer-events: none;
|
|
1453
1448
|
}
|
|
@@ -1688,7 +1683,6 @@ const RadioButton = (props) => {
|
|
|
1688
1683
|
useComplexFormatting
|
|
1689
1684
|
? (React__default.createElement("pre", { className: "ps-1 text-start text-break", style: {
|
|
1690
1685
|
whiteSpace: 'pre-wrap',
|
|
1691
|
-
tabSize: 2,
|
|
1692
1686
|
} }, text))
|
|
1693
1687
|
: (React__default.createElement("div", { className: "flex-grow-1 text-start text-break" }, text)))));
|
|
1694
1688
|
};
|
|
@@ -1736,7 +1730,6 @@ const CheckboxButton = (props) => {
|
|
|
1736
1730
|
useComplexFormatting
|
|
1737
1731
|
? (React__default.createElement("pre", { className: "ps-1 text-start text-break", style: {
|
|
1738
1732
|
whiteSpace: 'pre-wrap',
|
|
1739
|
-
tabSize: 2,
|
|
1740
1733
|
} }, text))
|
|
1741
1734
|
: (React__default.createElement("div", { className: "flex-grow-1 text-start text-break" }, text)))));
|
|
1742
1735
|
};
|