@lets-events/react 11.7.7 → 11.7.8
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/components/TextField.tsx +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @lets-events/react@11.7.
|
|
3
|
+
> @lets-events/react@11.7.8 build
|
|
4
4
|
> tsup src/index.tsx --format esm,cjs --dts --external react
|
|
5
5
|
|
|
6
6
|
[1G[0K[34mCLI[39m Building entry: src/index.tsx
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[32mESM[39m [1mdist/index.mjs [22m[32m321.38 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 106909ms
|
|
14
14
|
[32mCJS[39m [1mdist/index.js [22m[32m333.60 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 106909ms
|
|
16
16
|
DTS Build start
|
|
17
|
-
DTS ⚡️ Build success in
|
|
17
|
+
DTS ⚡️ Build success in 5590ms
|
|
18
18
|
DTS dist/index.d.mts 374.51 KB
|
|
19
19
|
DTS dist/index.d.ts 374.51 KB
|
|
20
20
|
[1G[0K⠙[1G[0K
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2869,8 +2869,8 @@ var TextField = import_react2.default.forwardRef(
|
|
|
2869
2869
|
updateCharCountBadge();
|
|
2870
2870
|
(_a2 = props.onInput) == null ? void 0 : _a2.call(props, e);
|
|
2871
2871
|
};
|
|
2872
|
-
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(Flex2, { direction: "column", css: { width: "100%" }, children: [
|
|
2873
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(Flex2, { gap: "0", css: { width: "100%"
|
|
2872
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(Flex2, { direction: "column", css: { width: "100%", position: "relative" }, children: [
|
|
2873
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(Flex2, { gap: "0", css: { width: "100%" }, children: [
|
|
2874
2874
|
!!addon && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(InputAddon, { color, typography: "labelSmall", children: addon }),
|
|
2875
2875
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
2876
2876
|
TextFieldStyled,
|
package/dist/index.mjs
CHANGED
|
@@ -2762,8 +2762,8 @@ var TextField = React.forwardRef(
|
|
|
2762
2762
|
updateCharCountBadge();
|
|
2763
2763
|
(_a2 = props.onInput) == null ? void 0 : _a2.call(props, e);
|
|
2764
2764
|
};
|
|
2765
|
-
return /* @__PURE__ */ jsxs(Flex2, { direction: "column", css: { width: "100%" }, children: [
|
|
2766
|
-
/* @__PURE__ */ jsxs(Flex2, { gap: "0", css: { width: "100%"
|
|
2765
|
+
return /* @__PURE__ */ jsxs(Flex2, { direction: "column", css: { width: "100%", position: "relative" }, children: [
|
|
2766
|
+
/* @__PURE__ */ jsxs(Flex2, { gap: "0", css: { width: "100%" }, children: [
|
|
2767
2767
|
!!addon && /* @__PURE__ */ jsx7(InputAddon, { color, typography: "labelSmall", children: addon }),
|
|
2768
2768
|
/* @__PURE__ */ jsxs(
|
|
2769
2769
|
TextFieldStyled,
|
package/package.json
CHANGED
|
@@ -268,8 +268,8 @@ export const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
|
|
|
268
268
|
};
|
|
269
269
|
|
|
270
270
|
return (
|
|
271
|
-
<Flex direction="column" css={{ width: "100%" }}>
|
|
272
|
-
<Flex gap={"0"} css={{ width: "100%"
|
|
271
|
+
<Flex direction="column" css={{ width: "100%", position: "relative" }}>
|
|
272
|
+
<Flex gap={"0"} css={{ width: "100%" }}>
|
|
273
273
|
{!!addon && (
|
|
274
274
|
<InputAddon color={color} typography="labelSmall">
|
|
275
275
|
{addon}
|