@symply.io/basic-components 1.0.0-alpha.10 → 1.0.0-alpha.13
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/BasicModal/index.js +1 -4
- package/DigitInput/index.js +0 -1
- package/README.md +1 -1
- package/package.json +1 -1
package/BasicModal/index.js
CHANGED
@@ -40,10 +40,7 @@ function BasicModal(props) {
|
|
40
40
|
if (reason !== "backdropClick") {
|
41
41
|
onClose();
|
42
42
|
}
|
43
|
-
}, maxWidth: maxWidth, fullWidth: true, TransitionComponent: Transition, "aria-labelledby": "form-dialog-title", fullScreen: fullScreen, disableEscapeKeyDown: true }, { children: _jsx(Grid, __assign({
|
44
|
-
height: "100%",
|
45
|
-
overflowY: "hidden"
|
46
|
-
}, component: noForm ? "div" : "form", onSubmit: noForm
|
43
|
+
}, maxWidth: maxWidth, fullWidth: true, TransitionComponent: Transition, "aria-labelledby": "form-dialog-title", fullScreen: fullScreen, disableEscapeKeyDown: true }, { children: _jsx(Grid, __assign({ component: noForm ? "div" : "form", onSubmit: noForm
|
47
44
|
? undefined
|
48
45
|
: function (e) {
|
49
46
|
e.preventDefault();
|
package/DigitInput/index.js
CHANGED
@@ -28,7 +28,6 @@ import useInteractions from "./useInteractions";
|
|
28
28
|
import useCustomTheme from "../useCustomTheme";
|
29
29
|
function DigitInput(props) {
|
30
30
|
var onChange = props.onChange, value = props.value, _a = props.size, size = _a === void 0 ? "small" : _a, tooltip = props.tooltip, _b = props.maxLength, maxLength = _b === void 0 ? 999 : _b, _c = props.minLength, minLength = _c === void 0 ? 0 : _c, endAdornment = props.endAdornment, primaryColor = props.primaryColor, secondaryColor = props.secondaryColor, rest = __rest(props, ["onChange", "value", "size", "tooltip", "maxLength", "minLength", "endAdornment", "primaryColor", "secondaryColor"]);
|
31
|
-
console.log({ maxLength: maxLength, minLength: minLength });
|
32
31
|
var _d = useInteractions({ onChange: onChange }), tooltipOpen = _d.tooltipOpen, handleChange = _d.handleChange, onOpenTooltip = _d.onOpenTooltip, onCloseTooltip = _d.onCloseTooltip;
|
33
32
|
var theme = useCustomTheme({ primaryColor: primaryColor, secondaryColor: secondaryColor });
|
34
33
|
return (_jsx(ThemeProvider, __assign({ theme: theme }, { children: _jsx(Tooltip, __assign({ title: tooltip !== null && tooltip !== void 0 ? tooltip : "", open: !!tooltip && tooltipOpen }, { children: _jsx(Field, __assign({ size: size, margin: "dense", type: "text", value: value === undefined || value === null ? "" : value, onFocus: onOpenTooltip, onBlur: onCloseTooltip, inputProps: { maxLength: maxLength, minLength: minLength }, InputProps: {
|
package/README.md
CHANGED
@@ -46,7 +46,7 @@ yarn add @symply.io/basic-components
|
|
46
46
|
|
47
47
|
<h2>License</h2>
|
48
48
|
|
49
|
-
This project is licensed under the terms of the [MIT license](https://github.com/
|
49
|
+
This project is licensed under the terms of the [MIT license](https://github.com/baseline-software/symply-basic-components/blob/main/LICENSE).
|
50
50
|
|
51
51
|
|
52
52
|
|