Changed boolean to event, to execute in Mendix

This commit is contained in:
bartonstee
2020-10-01 10:30:49 +02:00
committed by GitHub
parent 66cb4817cb
commit 786b48de7d
8 changed files with 28 additions and 42 deletions

View File

@@ -3,16 +3,16 @@
* WARNING: All changes made to this file will be overwritten
* @author Mendix UI Content Team
*/
import { EditableValue } from "mendix";
import { ActionValue } from "mendix";
export interface BackhandlerProps<Style> {
name: string;
style: Style[];
disableBack: EditableValue<boolean>;
onBack?: ActionValue;
}
export interface BackhandlerPreviewProps {
class: string;
style: string;
disableBack: string;
onBack: {} | null;
}