@overmap-ai/forms 1.0.12-links.6 → 1.0.12-links.7
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/forms.js +9 -2
- package/dist/forms.js.map +1 -1
- package/dist/forms.umd.cjs +9 -2
- package/dist/forms.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/forms.js
CHANGED
|
@@ -479,8 +479,15 @@ const StringInput = memo(function StringInput2(props) {
|
|
|
479
479
|
console.log(inputId, label, fieldProps, field, rest);
|
|
480
480
|
return /* @__PURE__ */ jsx(InputWithLabelAndHelpText, { helpText, severity, children: /* @__PURE__ */ jsxs(InputWithLabel, { severity, inputId, labelId, label, children: [
|
|
481
481
|
/* @__PURE__ */ jsx(TextField$1.Input, { ...rest, ...fieldProps, type: field.inputType, id: inputId, color }),
|
|
482
|
-
/* @__PURE__ */ jsxs(TextField$1.Root, { children: [
|
|
483
|
-
/* @__PURE__ */ jsx(
|
|
482
|
+
/* @__PURE__ */ jsxs(TextField$1.Root, { style: { zIndex: 1 }, children: [
|
|
483
|
+
/* @__PURE__ */ jsx(
|
|
484
|
+
"div",
|
|
485
|
+
{
|
|
486
|
+
className: "rt-TextFieldInput rt-r-size-2 rt-variant-surface",
|
|
487
|
+
style: { overflowY: "hidden", paddingTop: "5px" },
|
|
488
|
+
children: /* @__PURE__ */ jsx(Linkify, { children: fieldProps.value })
|
|
489
|
+
}
|
|
490
|
+
),
|
|
484
491
|
/* @__PURE__ */ jsx("div", { className: "rt-TextFieldChrome" })
|
|
485
492
|
] })
|
|
486
493
|
] }) });
|