@lets-events/react 11.0.5 → 11.0.6

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @lets-events/react@11.0.5 build
2
+ > @lets-events/react@11.0.6 build
3
3
  > tsup src/index.tsx --format esm,cjs --dts --external react
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -8,11 +8,11 @@
8
8
  CLI Target: es6
9
9
  ESM Build start
10
10
  CJS Build start
11
- CJS dist\index.js 284.17 KB
12
- CJS ⚡️ Build success in 218ms
13
11
  ESM dist\index.mjs 275.82 KB
14
12
  ESM ⚡️ Build success in 219ms
13
+ CJS dist\index.js 284.17 KB
14
+ CJS ⚡️ Build success in 220ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 3492ms
16
+ DTS ⚡️ Build success in 3594ms
17
17
  DTS dist\index.d.mts 338.39 KB
18
18
  DTS dist\index.d.ts 338.39 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lets-events/react
2
2
 
3
+ ## 11.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: textarea default rows
8
+
3
9
  ## 11.0.5
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -8827,7 +8827,7 @@ var TextareaField = import_react8.default.forwardRef((_a, fowardedRef) => {
8827
8827
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
8828
8828
  TextareaFieldStyle,
8829
8829
  __spreadValues({
8830
- rows: 3,
8830
+ rows: 4,
8831
8831
  ref: (r) => {
8832
8832
  if (!r) return;
8833
8833
  inputRef.current = r;
package/dist/index.mjs CHANGED
@@ -8741,7 +8741,7 @@ var TextareaField = React6.forwardRef((_a, fowardedRef) => {
8741
8741
  /* @__PURE__ */ jsx20(
8742
8742
  TextareaFieldStyle,
8743
8743
  __spreadValues({
8744
- rows: 3,
8744
+ rows: 4,
8745
8745
  ref: (r) => {
8746
8746
  if (!r) return;
8747
8747
  inputRef.current = r;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lets-events/react",
3
- "version": "11.0.5",
3
+ "version": "11.0.6",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -85,7 +85,7 @@ export const TextareaField = React.forwardRef<
85
85
  return (
86
86
  <TextareaContainer>
87
87
  <TextareaFieldStyle
88
- rows={3}
88
+ rows={4}
89
89
  ref={(r) => {
90
90
  if (!r) return;
91
91
  inputRef.current = r;