@overmap-ai/blocks 1.0.17-linkify.0 → 1.0.17-linkify.1
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/blocks.js +3 -2
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +3 -2
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/blocks.js
CHANGED
|
@@ -1948,6 +1948,7 @@ const _TextArea = forwardRef(function TextArea2({
|
|
|
1948
1948
|
}
|
|
1949
1949
|
return valueAsString.length;
|
|
1950
1950
|
}, [inputLengthTemplate, rest.maxLength, rest.minLength, valueAsString.length]);
|
|
1951
|
+
console.log("in blocks", value);
|
|
1951
1952
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1952
1953
|
/* @__PURE__ */ jsx(
|
|
1953
1954
|
TextArea$1,
|
|
@@ -1963,7 +1964,7 @@ const _TextArea = forwardRef(function TextArea2({
|
|
|
1963
1964
|
...rest
|
|
1964
1965
|
}
|
|
1965
1966
|
),
|
|
1966
|
-
/* @__PURE__ */ jsx("div", { className: "rt-TextAreaInput", children: /* @__PURE__ */ jsx(
|
|
1967
|
+
/* @__PURE__ */ jsx("div", { className: "rt-TextAreaRoot overmap-textarea rt-r-size-2 rt-variant-surface", style: { resize }, children: /* @__PURE__ */ jsx("div", { className: "rt-TextAreaInput", children: /* @__PURE__ */ jsx(
|
|
1967
1968
|
Linkify,
|
|
1968
1969
|
{
|
|
1969
1970
|
options: {
|
|
@@ -1972,7 +1973,7 @@ const _TextArea = forwardRef(function TextArea2({
|
|
|
1972
1973
|
},
|
|
1973
1974
|
children: value
|
|
1974
1975
|
}
|
|
1975
|
-
) }),
|
|
1976
|
+
) }) }),
|
|
1976
1977
|
/* @__PURE__ */ jsx("div", { className: "rt-TextAreaChrome" }),
|
|
1977
1978
|
displayInputLength && /* @__PURE__ */ jsx(Text$2, { as: "p", className: styles$8.charCount, color: infoColor, align: "right", children: displayInputLengthValue })
|
|
1978
1979
|
] });
|