vrfi-design-system 1.1.62 → 1.1.63
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 +4 -3
- package/dist/main.es.js +209 -204
- package/dist/main.umd.js +14 -14
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -594,6 +594,7 @@ export declare interface FloatingLabelProps {
|
|
|
594
594
|
type?: LabelType_2;
|
|
595
595
|
customInput?: boolean;
|
|
596
596
|
className?: string;
|
|
597
|
+
manualFocus?: boolean;
|
|
597
598
|
}
|
|
598
599
|
|
|
599
600
|
export { FooterDetailsProps }
|
|
@@ -1170,16 +1171,16 @@ declare interface TabsProps extends TabsProps_2 {
|
|
|
1170
1171
|
innerRef?: default_2.RefObject<HTMLDivElement> | null;
|
|
1171
1172
|
}
|
|
1172
1173
|
|
|
1173
|
-
export declare const TextArea: ({ className, label,
|
|
1174
|
+
export declare const TextArea: ({ className, label, required, customInput, defaultValue, ...props }: TextAreaProps) => default_2.JSX.Element;
|
|
1174
1175
|
|
|
1175
1176
|
export declare interface TextAreaProps extends Omit<TextAreaProps_2, "value"> {
|
|
1176
1177
|
label?: string;
|
|
1177
|
-
value?: string;
|
|
1178
1178
|
required?: boolean;
|
|
1179
1179
|
customInput?: boolean;
|
|
1180
|
+
defaultValue?: string;
|
|
1180
1181
|
}
|
|
1181
1182
|
|
|
1182
|
-
export declare const TextAreaWithController: ({ label, placeholder, required, name, customInput, ...rest }: TextAreaWithControllerProps) => default_2.JSX.Element;
|
|
1183
|
+
export declare const TextAreaWithController: ({ label, placeholder, required, name, customInput, defaultValue, ...rest }: TextAreaWithControllerProps) => default_2.JSX.Element;
|
|
1183
1184
|
|
|
1184
1185
|
export declare type TextAreaWithControllerProps = CustomInputProps & TextAreaProps_2;
|
|
1185
1186
|
|