vrfi-design-system 1.0.36 → 1.0.38
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 -1
- package/dist/main.es.js +24409 -28074
- package/dist/main.umd.js +156 -182
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -208,7 +208,7 @@ declare interface CustomDropDownFileUploadProps extends Omit<UploadProps_2, 'onC
|
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
export declare interface CustomInputProps {
|
|
211
|
-
label
|
|
211
|
+
label?: string;
|
|
212
212
|
name: string;
|
|
213
213
|
placeholder?: string;
|
|
214
214
|
type?: InputTypes_2;
|
|
@@ -328,6 +328,7 @@ export declare interface FloatingLabelProps {
|
|
|
328
328
|
value: string;
|
|
329
329
|
prefix?: ReactNode;
|
|
330
330
|
required?: boolean;
|
|
331
|
+
placeholder?: string;
|
|
331
332
|
}
|
|
332
333
|
|
|
333
334
|
export { FooterDetailsProps }
|