|
|
|
@ -5,20 +5,10 @@ export declare class MultiSelectBar extends BasicButton {
|
|
|
|
|
|
|
|
|
|
static EVENT_CHANGE: string; |
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
|
text: string; |
|
|
|
|
isAllCheckedBySelectedValue: Function; |
|
|
|
|
disableSelected: boolean; |
|
|
|
|
isHalfCheckedBySelectedValue: Function; |
|
|
|
|
halfSelected: boolean; |
|
|
|
|
iconWrapperWidth: number; |
|
|
|
|
iconWidth: number; |
|
|
|
|
iconHeight: number; |
|
|
|
|
} & BasicButton['props']; |
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
|
text: string; |
|
|
|
|
isAllCheckedBySelectedValue: (values: any[]) => boolean; |
|
|
|
|
disableSelected: boolean; |
|
|
|
|
isHalfCheckedBySelectedValue: (values: any[]) => boolean; |
|
|
|
|
halfSelected: boolean; |
|
|
|
|
iconWrapperWidth: number; |
|
|
|
|