@beequip/hexagon 0.21.1 → 0.22.0
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 +1 -1
- package/dist/components/Input/index.d.ts +1 -0
- package/dist/components/Input/index.js +27 -9
- package/dist/components/Input/index.js.map +1 -1
- package/dist/components/Input/styles.d.ts +1 -0
- package/dist/components/Input/styles.js +4 -3
- package/dist/components/Input/styles.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ We use [Chromatic](https://www.chromatic.com/) to publish and review our Storybo
|
|
|
52
52
|
|
|
53
53
|
- Make sure everything is merged in develop (check for linting errors)
|
|
54
54
|
- Merge develop into master
|
|
55
|
-
- Run `
|
|
55
|
+
- Run `npm run release` (you have to be a member of the organization and logged in with `npm login`)
|
|
56
56
|
|
|
57
57
|
## Contributing
|
|
58
58
|
|
|
@@ -5,5 +5,6 @@ export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement>
|
|
|
5
5
|
helpText?: string;
|
|
6
6
|
postfix?: string;
|
|
7
7
|
prefix?: string;
|
|
8
|
+
showClear?: boolean;
|
|
8
9
|
}
|
|
9
10
|
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -3,19 +3,35 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Input = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var React = require("react");
|
|
6
|
+
var Cross_1 = require("../../assets/icons/Cross");
|
|
6
7
|
var styles_1 = require("./styles");
|
|
7
8
|
exports.Input = React.forwardRef(function (_a, ref) {
|
|
8
|
-
var hook = _a.hook, helpText = _a.helpText, postfix = _a.postfix, prefix = _a.prefix, className = _a.className, onFocus = _a.onFocus, onBlur = _a.onBlur, _b = _a.autoComplete, autoComplete = _b === void 0 ? 'off' : _b,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
var hook = _a.hook, helpText = _a.helpText, postfix = _a.postfix, prefix = _a.prefix, className = _a.className, onFocus = _a.onFocus, onBlur = _a.onBlur, _b = _a.autoComplete, autoComplete = _b === void 0 ? 'off' : _b, _c = _a.disabled, disabled = _c === void 0 ? false : _c, _d = _a.type, type = _d === void 0 ? 'text' : _d, _e = _a.showClear, showClear = _e === void 0 ? true : _e, onChange = _a.onChange, props = tslib_1.__rest(_a, ["hook", "helpText", "postfix", "prefix", "className", "onFocus", "onBlur", "autoComplete", "disabled", "type", "showClear", "onChange"]);
|
|
10
|
+
var inputRef = React.useRef(null);
|
|
11
|
+
React.useImperativeHandle(ref, function () { return inputRef.current; });
|
|
12
|
+
var _f = tslib_1.__read(React.useState(false), 2), hasValue = _f[0], setHasValue = _f[1];
|
|
13
|
+
var handleChange = function (e) {
|
|
14
|
+
setHasValue(e.target.value.length > 0);
|
|
15
|
+
if (onChange)
|
|
16
|
+
onChange(e);
|
|
17
|
+
};
|
|
18
|
+
var _g = tslib_1.__read(React.useState(props.autoFocus || false), 2), isFocussed = _g[0], setIsFocussed = _g[1];
|
|
19
|
+
var handleClear = React.useCallback(function () {
|
|
20
|
+
if (inputRef.current) {
|
|
21
|
+
inputRef.current.value = '';
|
|
22
|
+
setHasValue(false);
|
|
23
|
+
inputRef.current.dispatchEvent(new Event('input', { bubbles: true }));
|
|
24
|
+
}
|
|
25
|
+
}, []);
|
|
26
|
+
var showClearHandle = showClear &&
|
|
27
|
+
hasValue &&
|
|
28
|
+
isFocussed &&
|
|
29
|
+
!disabled &&
|
|
30
|
+
autoComplete === 'off';
|
|
15
31
|
return (React.createElement(styles_1.StyledInputWrapper, { isFocussed: isFocussed, disabled: disabled, error: props.error, className: className },
|
|
16
32
|
prefix && (React.createElement(styles_1.StyledPreFix, { className: "hexagon-input-prefix" }, prefix)),
|
|
17
33
|
React.createElement(styles_1.StyledInputInner, null,
|
|
18
|
-
React.createElement(styles_1.StyledInput, tslib_1.__assign({ "data-hook": hook, prefix: prefix, postfix: postfix, ref:
|
|
34
|
+
React.createElement(styles_1.StyledInput, tslib_1.__assign({ "data-hook": hook, prefix: prefix, postfix: postfix, ref: inputRef, onFocus: function (e) {
|
|
19
35
|
if (onFocus)
|
|
20
36
|
onFocus(e);
|
|
21
37
|
setIsFocussed(true);
|
|
@@ -23,8 +39,10 @@ exports.Input = React.forwardRef(function (_a, ref) {
|
|
|
23
39
|
if (onBlur)
|
|
24
40
|
onBlur(e);
|
|
25
41
|
setIsFocussed(false);
|
|
26
|
-
}, className: "hexagon-input", autoComplete: autoComplete, disabled: disabled, type: type }, props)),
|
|
42
|
+
}, className: "hexagon-input", autoComplete: autoComplete, disabled: disabled, type: type, onChange: handleChange }, props)),
|
|
27
43
|
helpText && React.createElement(styles_1.StyledHelpText, null, helpText)),
|
|
44
|
+
showClearHandle && (React.createElement(styles_1.StyledClearHandle, { className: "hexagon-input-clear", onMouseDown: function (e) { return e.preventDefault(); }, onClick: handleClear },
|
|
45
|
+
React.createElement(Cross_1.Cross, { width: 20 }))),
|
|
28
46
|
postfix && (React.createElement(styles_1.StyledPostFix, { className: "hexagon-input-postfix" }, postfix))));
|
|
29
47
|
});
|
|
30
48
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Input/index.tsx"],"names":[],"mappings":";;;;AAAA,6BAA8B;AAC9B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Input/index.tsx"],"names":[],"mappings":"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"}
|
|
@@ -30,5 +30,6 @@ export declare const StyledInput: import("styled-components/dist/types").IStyled
|
|
|
30
30
|
export declare const StyledHelpText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("../HelpText").HelpTextProps, never>> & string & Omit<({ className, bottomMargin, inline, children, }: import("../HelpText").HelpTextProps) => JSX.Element, keyof React.Component<any, {}, any>>;
|
|
31
31
|
export declare const StyledInputInner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
32
32
|
export declare const StyledPreFix: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
33
|
+
export declare const StyledClearHandle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
33
34
|
export declare const StyledPostFix: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
34
35
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StyledPostFix = exports.StyledPreFix = exports.StyledInputInner = exports.StyledHelpText = exports.StyledInput = exports.inputStyles = exports.StyledInputWrapper = exports.inputWrapperStyles = void 0;
|
|
3
|
+
exports.StyledPostFix = exports.StyledClearHandle = exports.StyledPreFix = exports.StyledInputInner = exports.StyledHelpText = exports.StyledInput = exports.inputStyles = exports.StyledInputWrapper = exports.inputWrapperStyles = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var styled_components_1 = require("styled-components");
|
|
6
6
|
var HelpText_1 = require("../HelpText");
|
|
@@ -44,6 +44,7 @@ exports.StyledHelpText = (0, styled_components_1.default)(HelpText_1.HelpText)(t
|
|
|
44
44
|
exports.StyledInputInner = styled_components_1.default.div(templateObject_6 || (templateObject_6 = tslib_1.__makeTemplateObject(["\n position: relative;\n width: 100%;\n"], ["\n position: relative;\n width: 100%;\n"])));
|
|
45
45
|
var prePostStyles = (0, styled_components_1.css)(templateObject_7 || (templateObject_7 = tslib_1.__makeTemplateObject(["\n font-family: ", ";\n font-size: ", ";\n font-weight: 500;\n color: ", ";\n display: flex;\n justify-content: center;\n align-items: center;\n transition: background-color 0.2s ease-in-out 0s;\n"], ["\n font-family: ", ";\n font-size: ", ";\n font-weight: 500;\n color: ", ";\n display: flex;\n justify-content: center;\n align-items: center;\n transition: background-color 0.2s ease-in-out 0s;\n"])), function (props) { return props.theme.font.default; }, function (props) { return props.theme.font.sizes.s; }, function (props) { return props.theme.colors.grey[900]; });
|
|
46
46
|
exports.StyledPreFix = styled_components_1.default.div(templateObject_8 || (templateObject_8 = tslib_1.__makeTemplateObject(["\n ", ";\n padding-left: ", "px;\n"], ["\n ", ";\n padding-left: ", "px;\n"])), prePostStyles, function (props) { return props.theme.baseline; });
|
|
47
|
-
exports.
|
|
48
|
-
|
|
47
|
+
exports.StyledClearHandle = styled_components_1.default.div(templateObject_9 || (templateObject_9 = tslib_1.__makeTemplateObject(["\n ", ";\n padding-right: ", "px;\n cursor: pointer;\n\n &:hover {\n svg {\n fill: ", ";\n }\n }\n"], ["\n ", ";\n padding-right: ", "px;\n cursor: pointer;\n\n &:hover {\n svg {\n fill: ", ";\n }\n }\n"])), prePostStyles, function (props) { return props.theme.baseline; }, function (props) { return props.theme.colors.grey[900]; });
|
|
48
|
+
exports.StyledPostFix = styled_components_1.default.div(templateObject_10 || (templateObject_10 = tslib_1.__makeTemplateObject(["\n ", ";\n padding-right: ", "px;\n"], ["\n ", ";\n padding-right: ", "px;\n"])), prePostStyles, function (props) { return props.theme.baseline; });
|
|
49
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10;
|
|
49
50
|
//# sourceMappingURL=styles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/components/Input/styles.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../../src/components/Input/styles.ts"],"names":[],"mappings":"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"}
|