dhre-ui-kit 0.0.318 → 0.0.320
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/lib/index.d.ts +2 -0
- package/lib/index.js +6 -22
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -22
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -611,7 +611,9 @@ const DHRE_COLORS_TEXT = {
|
|
|
611
611
|
DH_TRANPARENT_WHITE: "#FFFFFF00",
|
|
612
612
|
DH_DARK_GRAY: "#212121",
|
|
613
613
|
DH_BLACK_2: "rgba(0, 0, 0, 0.7)",
|
|
614
|
-
DH_BLACK_0: "rgba(0, 0, 0, 0)"
|
|
614
|
+
DH_BLACK_0: "rgba(0, 0, 0, 0)",
|
|
615
|
+
DH_MEDIUM_GRAY: "#A6A6A680",
|
|
616
|
+
DH_SOFT_GRAY: "#EEEEEE80"
|
|
615
617
|
};
|
|
616
618
|
|
|
617
619
|
const styles$A = reactNative.StyleSheet.create({
|
|
@@ -1344,27 +1346,9 @@ const CustomTextInput = ({
|
|
|
1344
1346
|
));
|
|
1345
1347
|
};
|
|
1346
1348
|
|
|
1347
|
-
const CustomTooltip = ({
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
content,
|
|
1351
|
-
placement = "bottom",
|
|
1352
|
-
displayInsets = { top: 0, bottom: 20, left: 20, right: 0 },
|
|
1353
|
-
backgroundColor,
|
|
1354
|
-
triggerElement
|
|
1355
|
-
}) => {
|
|
1356
|
-
return /* @__PURE__ */ React__default["default"].createElement(
|
|
1357
|
-
Tooltip__default["default"],
|
|
1358
|
-
{
|
|
1359
|
-
isVisible,
|
|
1360
|
-
content,
|
|
1361
|
-
placement,
|
|
1362
|
-
onClose,
|
|
1363
|
-
displayInsets,
|
|
1364
|
-
backgroundColor
|
|
1365
|
-
},
|
|
1366
|
-
triggerElement
|
|
1367
|
-
);
|
|
1349
|
+
const CustomTooltip = (props) => {
|
|
1350
|
+
const { triggerElement } = props;
|
|
1351
|
+
return /* @__PURE__ */ React__default["default"].createElement(Tooltip__default["default"], { ...props }, triggerElement);
|
|
1368
1352
|
};
|
|
1369
1353
|
|
|
1370
1354
|
const styles$t = reactNative.StyleSheet.create({
|