@mendix/pluggable-widgets-tools
Version:
Mendix Pluggable Widgets Tools
3 lines (2 loc) • 1.31 kB
TypeScript
export declare const associationMetaDataWebOutput = "/**\n * This file was generated from MyWidget.xml\n * WARNING: All changes made to this file will be overwritten\n * @author Mendix Widgets Framework Team\n */\nimport { CSSProperties } from \"react\";\nimport { AssociationMetaData, ListValue } from \"mendix\";\n\nexport interface MyWidgetContainerProps {\n name: string;\n class: string;\n style?: CSSProperties;\n tabIndex?: number;\n data: ListValue;\n metaReference: AssociationMetaData;\n metaReferenceSet: AssociationMetaData;\n}\n\nexport interface MyWidgetPreviewProps {\n /**\n * @deprecated Deprecated since version 9.18.0. Please use class property instead.\n */\n className: string;\n class: string;\n style: string;\n styleObject?: CSSProperties;\n readOnly: boolean;\n renderMode: \"design\" | \"xray\" | \"structure\";\n translate: (text: string) => string;\n data: {} | { caption: string } | { type: string } | null;\n metaReference: string;\n metaReferenceSet: string;\n}\n";
export declare const associationMetaDataNativeOutput = "export interface MyWidgetProps<Style> {\n name: string;\n style: Style[];\n data: ListValue;\n metaReference: AssociationMetaData;\n metaReferenceSet: AssociationMetaData;\n}";