29 lines
698 B
TypeScript
29 lines
698 B
TypeScript
/**
|
|
* This file was generated from Autosearch.xml
|
|
* WARNING: All changes made to this file will be overwritten
|
|
* @author Mendix UI Content Team
|
|
*/
|
|
import { ActionValue, EditableValue } from "mendix";
|
|
|
|
export interface AutosearchProps<Style> {
|
|
name: string;
|
|
style: Style[];
|
|
searchvalue: EditableValue<string>;
|
|
editable: boolean;
|
|
autoFocus: EditableValue<boolean>;
|
|
onChange?: ActionValue;
|
|
onEnter?: ActionValue;
|
|
onLeave?: ActionValue;
|
|
}
|
|
|
|
export interface AutosearchPreviewProps {
|
|
class: string;
|
|
style: string;
|
|
searchvalue: string;
|
|
editable: boolean;
|
|
autoFocus: string;
|
|
onChange: {} | null;
|
|
onEnter: {} | null;
|
|
onLeave: {} | null;
|
|
}
|