You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
615 B
25 lines
615 B
import { SuperComponent } from '../common/src/index';
|
|
export default class Search extends SuperComponent {
|
|
externalClasses: string[];
|
|
options: {
|
|
multipleSlots: boolean;
|
|
};
|
|
properties: import("./type").TdSearchProps;
|
|
observers: {
|
|
focus(this: Search, nextValue: boolean): void;
|
|
};
|
|
data: {
|
|
classPrefix: string;
|
|
prefix: string;
|
|
localValue: {
|
|
focus: boolean;
|
|
};
|
|
};
|
|
onInput(e: any): void;
|
|
onFocus(e: any): void;
|
|
onBlur(e: any): void;
|
|
handleClear(): void;
|
|
onConfirm(e: any): void;
|
|
onActionClick(): void;
|
|
}
|