Refactor #3965 - For FileUpload

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-31 11:53:28 +03:00
parent ec55a35a32
commit 9a49c162c1
4 changed files with 224 additions and 195 deletions

View file

@ -243,10 +243,6 @@ export interface FileUploadPassThroughOptions {
* Uses to pass attributes to the label's DOM element.
*/
label?: FileUploadPassThroughOptionType;
/**
* Uses to pass attributes to the basic button's DOM element.
*/
basicButton?: FileUploadPassThroughOptionType;
/**
* Uses to pass attributes to the upload icon's DOM element.
*/
@ -411,6 +407,11 @@ export interface FileUploadProps {
* @type {FileUploadPassThroughOptions}
*/
pt?: FileUploadPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**