@versini/ui-textarea 7.0.5 → 7.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.
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { default as React_2 } from 'react';
|
|
2
2
|
|
|
3
3
|
export declare const TEXT_AREA_CLASSNAME = "av-text-area";
|
|
4
4
|
|
|
@@ -10,7 +10,7 @@ export declare const TEXT_AREA_HELPER_TEXT_CLASSNAME = "av-text-area-helper-text
|
|
|
10
10
|
|
|
11
11
|
export declare const TEXT_AREA_WRAPPER_CLASSNAME = "av-text-area-wrapper";
|
|
12
12
|
|
|
13
|
-
export declare function TextArea({ id, name, label, error, raw, className, textAreaClassName, mode, value, defaultValue, disabled, noBorder, labelId, helperText, helperTextOnFocus, rightElement, leftElement, onChange, onFocus, onBlur, ref, ...extraProps }: TextAreaProps): JSX.Element;
|
|
13
|
+
export declare function TextArea({ id, name, label, error, raw, className, textAreaClassName, mode, value, defaultValue, disabled, noBorder, labelId, helperText, helperTextOnFocus, rightElement, leftElement, onChange, onFocus, onBlur, ref, ...extraProps }: TextAreaProps): React_2.JSX.Element;
|
|
14
14
|
|
|
15
15
|
declare type TextAreaProps = {
|
|
16
16
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-textarea v7.0.
|
|
2
|
+
@versini/ui-textarea v7.0.6
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -12,6 +12,8 @@ import { LiveRegion } from "@versini/ui-liveregion";
|
|
|
12
12
|
import { useLayoutEffect, useRef, useState } from "react";
|
|
13
13
|
import clsx from "clsx";
|
|
14
14
|
|
|
15
|
+
|
|
16
|
+
|
|
15
17
|
const TEXT_AREA_CLASSNAME = "av-text-area";
|
|
16
18
|
const TEXT_AREA_WRAPPER_CLASSNAME = "av-text-area-wrapper";
|
|
17
19
|
const TEXT_AREA_HELPER_TEXT_CLASSNAME = "av-text-area-helper-text";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-textarea",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"@versini/ui-hooks": "6.1.1",
|
|
45
45
|
"@versini/ui-liveregion": "3.2.8",
|
|
46
46
|
"clsx": "2.1.1",
|
|
47
|
-
"tailwindcss": "4.3.
|
|
47
|
+
"tailwindcss": "4.3.1"
|
|
48
48
|
},
|
|
49
49
|
"sideEffects": [
|
|
50
50
|
"**/*.css"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "f25e4b557175f745705c249d10e2e77dc02ed462"
|
|
53
53
|
}
|