Initial commit

This commit is contained in:
bartonstee
2020-10-29 14:48:59 +01:00
committed by GitHub
commit 970d4a7df1
15 changed files with 21088 additions and 0 deletions

20
typings/AutosearchProps.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
/**
* 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;
}