@functionalui/functionalui 0.1.3 → 0.1.4
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/main.cjs +2 -2
- package/dist/main.d.ts +2 -2
- package/dist/main.js +203 -202
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -1525,7 +1525,7 @@ declare enum TextAligns {
|
|
|
1525
1525
|
Justify = 4
|
|
1526
1526
|
}
|
|
1527
1527
|
|
|
1528
|
-
export declare const TextArea: ({ id, name, value, modes, label, required, rows, width, fullWidth, placeholder, onChange, handleBlur, handleFocus, handleCheck, size, textAreaStyle, textAreaColor, labelTextColor, noLabel, ref, ...props }: P_15) => JSX_2.Element;
|
|
1528
|
+
export declare const TextArea: ({ id, name, value, modes, label, required, rows, width, fullWidth, placeholder, onChange, handleBlur, handleFocus, handleCheck, size, textAreaStyle, textAreaColor, labelTextColor, noLabel, ref, ...props }: P_15 & TextAreaProps) => JSX_2.Element;
|
|
1529
1529
|
|
|
1530
1530
|
declare enum TextAreaModes {
|
|
1531
1531
|
Default = 1,
|
|
@@ -1545,7 +1545,7 @@ declare interface TextAreaProp {
|
|
|
1545
1545
|
step?: number | undefined;
|
|
1546
1546
|
rows?: number | undefined;
|
|
1547
1547
|
resize?: ElementResizes;
|
|
1548
|
-
|
|
1548
|
+
textOutlineStyle?: OutlineStyles;
|
|
1549
1549
|
textAreaStyle?: TextAreaStyles;
|
|
1550
1550
|
}
|
|
1551
1551
|
|