@mendix/pluggable-widgets-tools
Version:
Mendix Pluggable Widgets Tools
62 lines (61 loc) • 2.92 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.iconInputNative = exports.iconInput = void 0;
exports.iconInput = `<widget id="mendix.mywidget.MyWidget" needsEntityContext="true" offlineCapable="true" pluginWidget="true"
xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../xsd/widget.xsd">
<properties>
<propertyGroup caption="Events">
<property key="icons" type="object" isList="true">
<caption>Icons</caption>
<description />
<properties>
<propertyGroup caption="Icons">
<property key="firstIcon" type="icon">
<caption>First icon</caption>
<description />
</property>
<property key="secondIcon" type="icon">
<caption>Second Icon</caption>
<description />
</property>
</propertyGroup>
</properties>
</property>
</propertyGroup>
<propertyGroup caption="System Properties">
<systemProperty key="Label"></systemProperty>
<systemProperty key="TabIndex"></systemProperty>
</propertyGroup>
</properties>
</widget>`;
exports.iconInputNative = `
<widget id="mendix.mywidget.MyWidget" needsEntityContext="true" offlineCapable="true" pluginWidget="true" supportedPlatform="Native"
xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../xsd/widget.xsd">
<properties>
<propertyGroup caption="Events">
<property key="icons" type="object" isList="true">
<caption>Icons</caption>
<description />
<properties>
<propertyGroup caption="Icons">
<property key="firstIcon" type="icon">
<caption>First icon</caption>
<description />
</property>
<property key="secondIcon" type="icon">
<caption>Second Icon</caption>
<description />
</property>
</propertyGroup>
</properties>
</property>
</propertyGroup>
<propertyGroup caption="System Properties">
<systemProperty key="Label"></systemProperty>
<systemProperty key="TabIndex"></systemProperty>
</propertyGroup>
</properties>
</widget>`;