|
| 1 | +export const listActionWithVariablesInput = `<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<widget id="mendix.mywidget.MyWidget" needsEntityContext="true" offlineCapable="true" pluginWidget="true" |
| 3 | + xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../xsd/widget.xsd"> |
| 5 | + <properties> |
| 6 | + <propertyGroup caption="Events"> |
| 7 | + <property key="actions" type="object" isList="true"> |
| 8 | + <caption>Actions</caption> |
| 9 | + <description /> |
| 10 | + <properties> |
| 11 | + <propertyGroup caption="Action"> |
| 12 | + <property key="description" type="attribute"> |
| 13 | + <caption>Action</caption> |
| 14 | + <description /> |
| 15 | + <attributeTypes> |
| 16 | + <attributeType name="String"/> |
| 17 | + </attributeTypes> |
| 18 | + </property> |
| 19 | + <property key="action" type="action"> |
| 20 | + <caption>Action</caption> |
| 21 | + <description /> |
| 22 | + <actionVariables> |
| 23 | + <actionVariable key="boolean_v" type="Boolean" caption="Boolean" /> |
| 24 | + <actionVariable key="integer_v" type="Integer" caption="Integer" /> |
| 25 | + <actionVariable key="datetime_v" type="DateTime" caption="DateTime" /> |
| 26 | + <actionVariable key="string_v" type="String" caption="String" /> |
| 27 | + <actionVariable key="decimal_v" type="Decimal" caption="Decimal" /> |
| 28 | + </actionVariables> |
| 29 | + </property> |
| 30 | + </propertyGroup> |
| 31 | + </properties> |
| 32 | + </property> |
| 33 | + </propertyGroup> |
| 34 | + <propertyGroup caption="System Properties"> |
| 35 | + <systemProperty key="Label"></systemProperty> |
| 36 | + <systemProperty key="TabIndex"></systemProperty> |
| 37 | + </propertyGroup> |
| 38 | + </properties> |
| 39 | +</widget>`; |
| 40 | + |
| 41 | +export const listActionWithVariablesInputNative = `<?xml version="1.0" encoding="utf-8"?> |
| 42 | +<widget id="mendix.mywidget.MyWidget" needsEntityContext="true" offlineCapable="true" pluginWidget="true" supportedPlatform="Native" |
| 43 | + xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 44 | + xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../xsd/widget.xsd"> |
| 45 | + <properties> |
| 46 | + <propertyGroup caption="Events"> |
| 47 | + <property key="actions" type="object" isList="true"> |
| 48 | + <caption>Actions</caption> |
| 49 | + <description /> |
| 50 | + <properties> |
| 51 | + <propertyGroup caption="Action"> |
| 52 | + <property key="description" type="attribute"> |
| 53 | + <caption>Action</caption> |
| 54 | + <description /> |
| 55 | + <attributeTypes> |
| 56 | + <attributeType name="String"/> |
| 57 | + </attributeTypes> |
| 58 | + </property> |
| 59 | + <property key="action" type="action"> |
| 60 | + <caption>Action</caption> |
| 61 | + <description /> |
| 62 | + <actionVariables> |
| 63 | + <actionVariable key="boolean_v" type="Boolean" caption="Boolean" /> |
| 64 | + <actionVariable key="integer_v" type="Integer" caption="Integer" /> |
| 65 | + <actionVariable key="datetime_v" type="DateTime" caption="DateTime" /> |
| 66 | + <actionVariable key="string_v" type="String" caption="String" /> |
| 67 | + <actionVariable key="decimal_v" type="Decimal" caption="Decimal" /> |
| 68 | + </actionVariables> |
| 69 | + </property> |
| 70 | + </propertyGroup> |
| 71 | + </properties> |
| 72 | + </property> |
| 73 | + </propertyGroup> |
| 74 | + <propertyGroup caption="System Properties"> |
| 75 | + <systemProperty key="Label"></systemProperty> |
| 76 | + <systemProperty key="TabIndex"></systemProperty> |
| 77 | + </propertyGroup> |
| 78 | + </properties> |
| 79 | +</widget>`; |
0 commit comments