tp-react-elements-dev 1.5.2 → 1.5.3
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/components/Form/FormRender.d.ts +2 -1
- package/dist/index.esm.js +1 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -52784,9 +52784,7 @@ const RenderForm = (props) => {
|
|
|
52784
52784
|
// textTransform:'uppercase'
|
|
52785
52785
|
maxHeight: "500px !important",
|
|
52786
52786
|
overflow: "auto",
|
|
52787
|
-
} }, props.item.sx), minRows: props.item.minRows || 1,
|
|
52788
|
-
// maxRows={2}
|
|
52789
|
-
placeholder: props.item.placeholder || "Type Something..." }, field, { label: `${props.item.label}${props.item.required ? " *" : ""}`, value: field.value || "", disabled: props.item.disable, inputProps: {
|
|
52787
|
+
} }, props.item.sx), minRows: props.item.minRows || 1, maxRows: props.item.maxRows || null, placeholder: props.item.placeholder || "Type Something..." }, field, { label: `${props.item.label}${props.item.required ? " *" : ""}`, value: field.value || "", disabled: props.item.disable, inputProps: {
|
|
52790
52788
|
onInput: (e) => {
|
|
52791
52789
|
var _a;
|
|
52792
52790
|
if (!((_a = props === null || props === void 0 ? void 0 : props.item) === null || _a === void 0 ? void 0 : _a.allowSpecialChars)) {
|