next-recomponents 2.0.65 → 2.0.67
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +137 -144
- package/dist/index.mjs +85 -94
- package/package.json +1 -1
- package/src/text-area/index.tsx +16 -21
- package/src/use-resources/index.ts +12 -12
package/dist/index.d.mts
CHANGED
|
@@ -101,7 +101,7 @@ interface Props$2 extends DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaE
|
|
|
101
101
|
label?: React$1.ReactNode;
|
|
102
102
|
maxLength?: number;
|
|
103
103
|
}
|
|
104
|
-
declare function TextArea({ label, className, maxLength, onChange,
|
|
104
|
+
declare function TextArea({ label, className, maxLength, onChange, value, ...props }: Props$2): react_jsx_runtime.JSX.Element;
|
|
105
105
|
|
|
106
106
|
interface DefaultParams {
|
|
107
107
|
[key: string]: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ interface Props$2 extends DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaE
|
|
|
101
101
|
label?: React$1.ReactNode;
|
|
102
102
|
maxLength?: number;
|
|
103
103
|
}
|
|
104
|
-
declare function TextArea({ label, className, maxLength, onChange,
|
|
104
|
+
declare function TextArea({ label, className, maxLength, onChange, value, ...props }: Props$2): react_jsx_runtime.JSX.Element;
|
|
105
105
|
|
|
106
106
|
interface DefaultParams {
|
|
107
107
|
[key: string]: any;
|