Update incentro.Autosearch.mpk, Autosearch.xml, and 5 more files...

This commit is contained in:
2022-02-04 11:40:18 +01:00
parent f7d22b33ff
commit 1eb1993e6b
7 changed files with 88 additions and 33 deletions

View File

@@ -1,20 +1,24 @@
/**
* 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>;
onChange?: ActionValue;
}
export interface AutosearchPreviewProps {
class: string;
style: string;
searchvalue: string;
onChange: {} | null;
}
/**
* 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;
onChange?: ActionValue;
onEnter?: ActionValue;
}
export interface AutosearchPreviewProps {
class: string;
style: string;
searchvalue: string;
editable: boolean;
onChange: {} | null;
onEnter: {} | null;
}