Refactor #3965 - For CascadeSelect

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-26 17:33:50 +03:00
parent c2430861bb
commit f3c54bd15c
4 changed files with 310 additions and 265 deletions

View file

@ -90,6 +90,10 @@ export interface CascadeSelectPassThroughOptions {
* Uses to pass attributes to the text's DOM element.
*/
text?: CascadeSelectPassThroughOptionType;
/**
* Uses to pass attributes to the group icon's DOM element.
*/
groupIcon?: CascadeSelectPassThroughOptionType;
/**
* Uses to pass attributes to the hidden selected message's DOM element.
*/
@ -313,6 +317,11 @@ export interface CascadeSelectProps {
* @type {CascadeSelectPassThroughOptions}
*/
pt?: CascadeSelectPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**