@uxf/ui 1.0.0-beta.120 → 1.0.0-beta.121
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/input/input-remove-button.js +1 -1
- package/package.json +1 -1
- package/select/select.js +1 -1
- package/tooltip/tooltip.js +2 -3
|
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.InputRemoveButton = void 0;
|
|
7
|
-
const icon_1 = require("
|
|
7
|
+
const icon_1 = require("../icon");
|
|
8
8
|
const react_1 = __importDefault(require("react"));
|
|
9
9
|
const InputRemoveButton = (props) => {
|
|
10
10
|
const onRemoveClick = (e) => {
|
package/package.json
CHANGED
package/select/select.js
CHANGED
|
@@ -31,7 +31,7 @@ const composeRefs_1 = require("@uxf/core/utils/composeRefs");
|
|
|
31
31
|
const cx_1 = require("@uxf/core/utils/cx");
|
|
32
32
|
const forwardRef_1 = require("@uxf/core/utils/forwardRef");
|
|
33
33
|
const use_dropdown_1 = require("@uxf/ui/hooks/use-dropdown");
|
|
34
|
-
const icon_1 = require("
|
|
34
|
+
const icon_1 = require("../icon");
|
|
35
35
|
const input_1 = require("@uxf/ui/input");
|
|
36
36
|
const label_1 = require("@uxf/ui/label");
|
|
37
37
|
const react_2 = __importStar(require("react"));
|
package/tooltip/tooltip.js
CHANGED
|
@@ -58,7 +58,6 @@ exports.Tooltip = (0, forwardRef_1.forwardRef)("Tooltip", ({ children, content,
|
|
|
58
58
|
},
|
|
59
59
|
className: "uxf-tooltip__content",
|
|
60
60
|
}) },
|
|
61
|
-
content,
|
|
62
61
|
react_1.default.createElement("div", { className: "uxf-tooltip__arrow", ref: arrowRef, style: {
|
|
63
62
|
height: "16px",
|
|
64
63
|
left: arrowX !== undefined ? `${arrowX}px` : "",
|
|
@@ -66,7 +65,7 @@ exports.Tooltip = (0, forwardRef_1.forwardRef)("Tooltip", ({ children, content,
|
|
|
66
65
|
top: arrowY !== undefined ? `${arrowY}px` : "",
|
|
67
66
|
transform: "rotate(45deg)",
|
|
68
67
|
width: "16px",
|
|
69
|
-
zIndex: "-1",
|
|
70
68
|
[staticSide]: "-6px",
|
|
71
|
-
} })
|
|
69
|
+
} }),
|
|
70
|
+
content))));
|
|
72
71
|
});
|