@ind-rcg/modeler-sfdx-cli-plugin 246.1042.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (239) hide show
  1. package/LICENSE.md +37 -0
  2. package/README.md +756 -0
  3. package/lib/commands/modeler/workspace/add.js +1 -0
  4. package/lib/commands/modeler/workspace/build.js +1 -0
  5. package/lib/commands/modeler/workspace/cleanup.js +1 -0
  6. package/lib/commands/modeler/workspace/create.js +1 -0
  7. package/lib/commands/modeler/workspace/package.js +1 -0
  8. package/lib/commands/modeler/workspace/refreshLocale.js +1 -0
  9. package/lib/commands/modeler/workspace/server/start.js +1 -0
  10. package/lib/commands/modeler/workspace/upgrade.js +1 -0
  11. package/lib/commands/modeler/workspace/utils/base64encode.js +1 -0
  12. package/lib/commands/modeler/workspace/utils/generateManifest.js +1 -0
  13. package/lib/commands/modeler/workspace/utils/migrateContracts.js +1 -0
  14. package/lib/commands/modeler/workspace/validate.js +1 -0
  15. package/lib/constants.js +1 -0
  16. package/lib/hooks/init/updateCheck.js +1 -0
  17. package/lib/model/buildStatus.js +1 -0
  18. package/lib/model/workspace.js +1 -0
  19. package/lib/model/workspaceCommand.js +1 -0
  20. package/lib/shared/commandBuilder.js +1 -0
  21. package/lib/shared/commandExecutor.js +1 -0
  22. package/lib/shared/commandOutput.js +1 -0
  23. package/lib/types/config.js +1 -0
  24. package/lib/types/errors.js +1 -0
  25. package/lib/types/messages.js +1 -0
  26. package/lib/types/package.js +1 -0
  27. package/lib/types/results.js +1 -0
  28. package/lib/utils/componentHelper.js +1 -0
  29. package/lib/utils/errorHelper.js +1 -0
  30. package/lib/utils/fsHelper.js +1 -0
  31. package/lib/utils/generateManifestHelper.js +1 -0
  32. package/lib/utils/messageHelper.js +1 -0
  33. package/lib/utils/packageHelper.js +1 -0
  34. package/lib/utils/serverHelper.js +1 -0
  35. package/lib/utils/templateEngine.js +1 -0
  36. package/lib/utils/templateHelper.js +1 -0
  37. package/lib/utils/updateChecker.js +1 -0
  38. package/lib/utils/validationHelper.js +1 -0
  39. package/messages/modeler-workspace-add.md +45 -0
  40. package/messages/modeler-workspace-build.md +29 -0
  41. package/messages/modeler-workspace-cleanup.md +17 -0
  42. package/messages/modeler-workspace-create.md +21 -0
  43. package/messages/modeler-workspace-package.md +21 -0
  44. package/messages/modeler-workspace-refresh-locale.md +27 -0
  45. package/messages/modeler-workspace-server-start.md +37 -0
  46. package/messages/modeler-workspace-upgrade.md +21 -0
  47. package/messages/modeler-workspace-utils-base64encode.md +25 -0
  48. package/messages/modeler-workspace-utils-generateManifest.md +15 -0
  49. package/messages/modeler-workspace-utils-migrateContracts.md +23 -0
  50. package/messages/modeler-workspace-validate.md +29 -0
  51. package/messages/modeler-workspace.md +19 -0
  52. package/oclif.manifest.json +429 -0
  53. package/package.json +108 -0
  54. package/templates/.gitignore.tmp +4 -0
  55. package/templates/README.md.tmp +77 -0
  56. package/templates/contractTemplates/#ModuleName#/BO/README.md +1 -0
  57. package/templates/contractTemplates/#ModuleName#/DS/README.md +1 -0
  58. package/templates/contractTemplates/#ModuleName#/PL/README.md +1 -0
  59. package/templates/contractTemplates/#ModuleName#/PR/README.md +1 -0
  60. package/templates/contractTemplates/#ModuleName#/TB/README.md +1 -0
  61. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Bo${NAME}.businessobject.xml +22 -0
  62. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.AfterCreateAsync.bl.js +54 -0
  63. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.BeforeCreateAsync.bl.js +56 -0
  64. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.AfterDoValidateAsync.bl.js +57 -0
  65. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
  66. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.AfterInitialize.bl.js +54 -0
  67. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.BeforeInitialize.bl.js +54 -0
  68. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.AfterLoadAsync.bl.js +57 -0
  69. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.BeforeLoadAsync.bl.js +56 -0
  70. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.AfterSaveAsync.bl.js +57 -0
  71. package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.BeforeSaveAsync.bl.js +56 -0
  72. package/templates/contractTemplates/BO_BusinessObject/businessobject/BusinessObject.md +186 -0
  73. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectEventsSnipp.xml +3 -0
  74. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectSnipp.xml +1 -0
  75. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectNestedObjectsNestedObjectSnipp.xml +1 -0
  76. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupEventsSnipp.xml +3 -0
  77. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupSnipp.xml +1 -0
  78. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertyEventsSnipp.xml +3 -0
  79. package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
  80. package/templates/contractTemplates/BO_BusinessObject/businessobjecthelper/snippets/BusinessObjectHelperSimplePropertiesSimplePropertySnipp.xml +1 -0
  81. package/templates/contractTemplates/BO_BusinessObject/validationmessages/ValidationMessage.md +38 -0
  82. package/templates/contractTemplates/BO_BusinessObject/validationmessages/snippets/ValidationMessagesValidationMessageSnipp.xml +1 -0
  83. package/templates/contractTemplates/DS_DataSource/DataSource.md +319 -0
  84. package/templates/contractTemplates/DS_DataSource/Ds${NAME}_sf.datasource.xml +11 -0
  85. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesAttributeSnipp.xml +1 -0
  86. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesDerivedAttributeSnipp.xml +1 -0
  87. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionAttributeSnipp.xml +1 -0
  88. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionLiteralSnipp.xml +1 -0
  89. package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntitySnipp.xml +1 -0
  90. package/templates/contractTemplates/ExternalFiles/#Name#.externalfile.xml +6 -0
  91. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Li${NAME}.listitem.xml +5 -0
  92. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListItem.md +114 -0
  93. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListObject.md +354 -0
  94. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Lo${NAME}.listobject.xml +12 -0
  95. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.AfterDoValidateAsync.bl.js +57 -0
  96. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
  97. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.AfterLoadAsync.bl.js +57 -0
  98. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.BeforeLoadAsync.bl.js +56 -0
  99. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.AfterSaveAsync.bl.js +57 -0
  100. package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.BeforeSaveAsync.bl.js +56 -0
  101. package/templates/contractTemplates/LO_ListObject/snippets/ListItemSimplePropertiesSimplepropertySnipp.xml +1 -0
  102. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/LookupObject.md +97 -0
  103. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Lu${NAME}.lookupobject.xml +12 -0
  104. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.AfterLoadAsync.bl.js +57 -0
  105. package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.BeforeLoadAsync.bl.js +56 -0
  106. package/templates/contractTemplates/LU_LookupObject/snippets/LookupObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
  107. package/templates/contractTemplates/PL_PrintLayout/#Name#PDF/#Name#PDF.printlayoutv2.xml +4 -0
  108. package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#.userinterface.xml +4 -0
  109. package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#Process.processflow.xml +12 -0
  110. package/templates/contractTemplates/PR_Process_&_UI/Process.md +790 -0
  111. package/templates/contractTemplates/PR_Process_&_UI/UserInterface.md +1545 -0
  112. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionConfirmSnipp.xml +6 -0
  113. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionCreateSnipp.xml +7 -0
  114. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionDecisionSnipp.xml +5 -0
  115. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionEndSnipp.xml +5 -0
  116. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLoadSnipp.xml +7 -0
  117. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLogicSnipp.xml +7 -0
  118. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionMasterDetailSnipp.xml +24 -0
  119. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionNavigationSnipp.xml +8 -0
  120. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintSnipp.xml +6 -0
  121. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintV2Snipp.xml +6 -0
  122. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionProcessSnipp.xml +9 -0
  123. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionValidationSnipp.xml +6 -0
  124. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionViewSnipp.xml +6 -0
  125. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionCreateSnipp.xml +6 -0
  126. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLoadSnipp.xml +6 -0
  127. package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLogicSnipp.xml +6 -0
  128. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderInfoSectionSnipp.xml +6 -0
  129. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml +24 -0
  130. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/BannerFilterSnipp.xml +19 -0
  131. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml +25 -0
  132. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithoutFilterSnipp.xml +6 -0
  133. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_DecisionsSnipp.xml +9 -0
  134. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_GroupsSnipp.xml +11 -0
  135. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_ResultsSnipp.xml +13 -0
  136. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlEventsSnipp.xml +6 -0
  137. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingAddItemSnipp.xml +1 -0
  138. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingCategoriesSnipp.xml +1 -0
  139. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingShowCategorySnipp.xml +1 -0
  140. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyDataSourcesSnipp.xml +3 -0
  141. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingButtonSnipp.xml +1 -0
  142. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingComboSnipp.xml +1 -0
  143. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDateSnipp.xml +1 -0
  144. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDecimalSnipp.xml +1 -0
  145. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDynamicSnipp.xml +1 -0
  146. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingImageSnipp.xml +1 -0
  147. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepperSnipp.xml +1 -0
  148. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepper_CorrelationIdSnipp.xml +1 -0
  149. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingTextSnipp.xml +1 -0
  150. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceImageSnipp.xml +1 -0
  151. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceLabelSnipp.xml +1 -0
  152. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsContextMenuSnipp.xml +13 -0
  153. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSearchAttributesSnipp.xml +3 -0
  154. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSnipp.xml +22 -0
  155. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/MultiSelectionBreadCrumbControlSnipp.xml +23 -0
  156. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlEventsSnipp.xml +11 -0
  157. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDateSnipp.xml +1 -0
  158. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDecimalSnipp.xml +1 -0
  159. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingImageSnipp.xml +1 -0
  160. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingLabelSnipp.xml +1 -0
  161. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingTextSnipp.xml +1 -0
  162. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSettingsSnipp.xml +1 -0
  163. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml +8 -0
  164. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxEventsSnipp.xml +3 -0
  165. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxSnipp.xml +6 -0
  166. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml +7 -0
  167. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DataImportWizard/DataImportWizardSnipp.xml +12 -0
  168. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DatePicker/DatePickerFieldSnipp.xml +6 -0
  169. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml +8 -0
  170. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EnhanceDecisionList/EnhancedDecisionListSnipp.xml +52 -0
  171. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml +69 -0
  172. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml +20 -0
  173. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapSnipp.xml +7 -0
  174. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupElement/GroupElementSnipp.xml +5 -0
  175. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListEventsSnipp.xml +5 -0
  176. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListFooterSnipp.xml +8 -0
  177. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListSnipp.xml +8 -0
  178. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListEventsSnipp.xml +7 -0
  179. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml +5 -0
  180. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListEventsSnipp.xml +7 -0
  181. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListSnipp.xml +6 -0
  182. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml +10 -0
  183. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml +16 -0
  184. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaMultiLineSnipp.xml +6 -0
  185. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaSnipp.xml +6 -0
  186. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_ComplexSnipp.xml +13 -0
  187. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_GridSnipp.xml +10 -0
  188. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_TwoRowsSnipp.xml +8 -0
  189. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/LinkBar/LinkBarSnipp.xml +12 -0
  190. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupEventSnipp.xml +3 -0
  191. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupSnipp.xml +6 -0
  192. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml +7 -0
  193. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingDescriptionSnipp.xml +1 -0
  194. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingIsTaggedSnipp.xml +1 -0
  195. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingMediaPathSnipp.xml +1 -0
  196. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingTypeSnipp.xml +1 -0
  197. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlEventsSnipp.xml +4 -0
  198. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlSnipp.xml +8 -0
  199. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/LongPressMenuSnipp.xml +8 -0
  200. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/MenuItemSnipp.xml +9 -0
  201. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerOneInputControlTwoButtonsMaxSnipp.xml +2 -0
  202. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsCombinedSnipp.xml +2 -0
  203. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsNoneSnipp.xml +2 -0
  204. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsOwnSnipp.xml +5 -0
  205. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/NoDataMessageSnipp.xml +9 -0
  206. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailGroupsSnipp.xml +43 -0
  207. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailListSnipp.xml +44 -0
  208. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailTabsSnipp.xml +61 -0
  209. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithExtendedDetailSnipp.xml +44 -0
  210. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_GroupedElementsSnipp.xml +33 -0
  211. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_ListSnipp.xml +41 -0
  212. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_TabSnipp.xml +39 -0
  213. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_WizardSnipp.xml +34 -0
  214. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SplitScreen/Page_SplitScreenSnipp.xml +27 -0
  215. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxBindingSnipp.xml +13 -0
  216. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxEventsSnipp.xml +4 -0
  217. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxToggleSnipp.xml +13 -0
  218. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableParametersSnipp.xml +3 -0
  219. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableSnipp.xml +1 -0
  220. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleParametersSnipp.xml +3 -0
  221. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleSnipp.xml +1 -0
  222. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlEditabilityRolesSnipp.xml +3 -0
  223. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlSnipp.xml +6 -0
  224. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlVisibilityRolesSnipp.xml +3 -0
  225. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Stepper/StepperSnipp.xml +7 -0
  226. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TextBar/TextBarSnipp.xml +7 -0
  227. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ThemeSelection/ThemeSelectionSnipp.xml +5 -0
  228. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TimePicker/TimePickerFieldSnipp.xml +6 -0
  229. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/UserWelcomeSnipp.xml +24 -0
  230. package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/VisitDetailsSnipp.xml +21 -0
  231. package/templates/contractTemplates/TB_Table/#Name#_T.temptable.xml +11 -0
  232. package/templates/contractTemplates/TB_Table/snippets/#Name#.dbtable.xml +10 -0
  233. package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTablecolumnscolumnSnipp.xml +1 -0
  234. package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTableindexesindexSnipp.xml +3 -0
  235. package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnIsDeletedSnipp.xml +1 -0
  236. package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml +1 -0
  237. package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableindexesindexSnipp.xml +3 -0
  238. package/templates/contractTemplates/UI_Plugins/#Name#UiPluginV2.uipluginv2.xml +16 -0
  239. package/templates/templateDefinitions.json +167 -0
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="CONFIRM" confirmType="${#ConfirmType#}">
2
+ <Message messageId="${#Message#}" />
3
+ <Cases>
4
+ <Case value="${#Value#}" action="${#Action#}" />
5
+ </Cases>
6
+ </Action>
@@ -0,0 +1,7 @@
1
+ <Action name="${#ActionName#}" actionType="CREATE" type="${#type#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" type="${#InputType#}" />
4
+ </Parameters>
5
+ <Return name="${#ReturnName#}" />
6
+ <TransitionTo action="${#TransitionToAction#}"/>
7
+ </Action>
@@ -0,0 +1,5 @@
1
+ <Action name="${#ActionName#}" actionType="DECISION" parameter="${#Parameter#}">
2
+ <Case value="${#CaseValue#}" action="${#Action#}" />
3
+ <CaseEmpty action="${#EmptyAction#}" />
4
+ <CaseElse action="${#ElseAction#}" />
5
+ </Action>
@@ -0,0 +1,5 @@
1
+ <Action actionType="END" name="${#ActionName#}">
2
+ <ReturnValues>
3
+ <Return name="${#ReturnName#}" value="${#ReturnValue#}" />
4
+ </ReturnValues>
5
+ </Action>
@@ -0,0 +1,7 @@
1
+ <Action name="${#ActionName#}" actionType="LOAD" type="${#type#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" type="${#InputType#}" />
4
+ </Parameters>
5
+ <Return name="${#ReturnName#}" />
6
+ <TransitionTo action="${#TransitionToAction#}"/>
7
+ </Action>
@@ -0,0 +1,7 @@
1
+ <Action name="${#ActionName#}" actionType="LOGIC" call="${#call#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" type="${#InputType#}" />
4
+ </Parameters>
5
+ <Return name="${#ReturnName#}" />
6
+ <TransitionTo action="${#TransitionToAction#}"/>
7
+ </Action>
@@ -0,0 +1,24 @@
1
+ <Action name="${#ActionName#}" actionType="MASTER_DETAIL_HANDLER">
2
+ <MasterList name="${#MasterList#}">
3
+ <ItemUnselected type="RELOAD" >
4
+ <UpdateMappings>
5
+ <Mapping masterProperty="" detailProperty="" />
6
+ </UpdateMappings>
7
+ </ItemUnselected>
8
+ </MasterList>
9
+ <DetailObject name="${#DetailObject#}" objectClass="${#ObjectClass#}">
10
+ <Save type="DIRTY" confirmation="FALSE" validate="FALSE" />
11
+ <Delete confirmation="true" messageId="${#DeleteMessage#}" nextCurrent="Next" />
12
+ <Create autoSave="true">
13
+ <WizardProcess name="${#WizardProcess#}" submitParameter="${#submitParameter#}">
14
+ <Parameters>
15
+ <Input name="${#Input#}" value="${#value#}" />
16
+ </Parameters>
17
+ <ReturnValues>
18
+ <Return name="${#returnName#}" value="${#ReturnValue#}" />
19
+ </ReturnValues>
20
+ </WizardProcess>
21
+ </Create>
22
+ </DetailObject>
23
+ <TransitionTo action="${#TransitionToAction#}" />
24
+ </Action>
@@ -0,0 +1,8 @@
1
+ <Action name="${#ActionName#}" actionType="NAVIGATION" >
2
+ <Parameters name="${#ParameterName#}">
3
+ <Processes>
4
+ <Process id="${#ProcessId#}" image="${#Image#}" label="" defaultLabel="" action="${#Action#}" process="${#SubProcess#}" />
5
+ </Processes>
6
+ </Parameters>
7
+ <TransitionTo action="${#TransitionToAction#}" />
8
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="PRINT" printId="${#PrintId#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#InputValue#}" />
4
+ </Parameters>
5
+ <TransitionTo action="${#TransitionToAction#}" />
6
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="PRINTV2" printId="${#printId#}">
2
+ <Parameters>
3
+ <Input name="${#inputName#}" value="${#inputValue#}" />
4
+ </Parameters>
5
+ <TransitionTo action="${#action#}" />
6
+ </Action>
@@ -0,0 +1,9 @@
1
+ <Action name="${#ActionName#}" actionType="PROCESS" process="${#Process#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" />
4
+ </Parameters>
5
+ <ReturnValues>
6
+ <Return name="${#ReturnName#}" value="${#ReturnValue#}" />
7
+ </ReturnValues>
8
+ <TransitionTo action="${#TransitionToAction#}" />
9
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="VALIDATION" >
2
+ <Validations>
3
+ <Validation name="${#ValidationName#}"/>
4
+ </Validations>
5
+ <TransitionTo action="${#TransitionToAction#}" />
6
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action actionType="View" name="${#ActionName#}">
2
+ <UIDescription>${#UIName#}</UIDescription>
3
+ <Events>
4
+ <Event name="${#EventName#}" action="${#Action#}" />
5
+ </Events>
6
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="CREATE" type="${#type#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" type="${#InputType#}" />
4
+ </Parameters>
5
+ <Return name="${#ReturnName#}" />
6
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="LOAD" type="${#type#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" type="${#InputType#}" />
4
+ </Parameters>
5
+ <Return name="${#ReturnName#}" />
6
+ </Action>
@@ -0,0 +1,6 @@
1
+ <Action name="${#ActionName#}" actionType="LOGIC" call="${#call#}">
2
+ <Parameters>
3
+ <Input name="${#InputName#}" value="${#Value#}" type="${#InputType#}" />
4
+ </Parameters>
5
+ <Return name="${#ReturnName#}" />
6
+ </Action>
@@ -0,0 +1,6 @@
1
+ <AttachmentFolderInfoSection name="${#section#}" backendSystem="${#backendSystem#}">
2
+ <Bindings>
3
+ <Resource id="${#id#}" target="InfoIcon" type="Image" />
4
+ </Bindings>
5
+ <AttachmentFolderInfoSectionAttribute name="${#name#}" mappedTarget="${#mappedTarget#}"/>
6
+ </AttachmentFolderInfoSection>
@@ -0,0 +1,24 @@
1
+ <AttachmentFolder name="${#name#}" maxVisibleAttachments="2" attachmentList="attachments" dataSource="${#dataSource#}">
2
+ <Items>
3
+ <Bindings>
4
+ <Binding target="PKey" type="Text" binding="${#pKeyBinding#}" />
5
+ <Binding target="Title" type="Text" binding="${#titleBinding#}" />
6
+ <Binding target="InfoText" type="Text" binding="${#infoTextBinding#}" />
7
+ </Bindings>
8
+ </Items>
9
+ <Bindings>
10
+ <List target="attachments" dataSource="${#listDataSource#}">
11
+ <Binding bindingMode="ONE_WAY" target="MainPKey" type="Text" binding="${#mainPKeyBinding#}" />
12
+ <Binding bindingMode="ONE_WAY" target="Type" type="Text" binding="${#typeBinding#}" />
13
+ <Binding bindingMode="ONE_WAY" target="MediaPath" type="Text" binding="${#mediaPathBinding#}" />
14
+ </List>
15
+ </Bindings>
16
+ <AttachmentFolderInfoSections noOfColumns="2">
17
+ <AttachmentFolderInfoSection name="Section1" backendSystem="both">
18
+ <Bindings>
19
+ <Resource id="${#IconId#}" target="InfoIcon" type="Image" />
20
+ </Bindings>
21
+ <AttachmentFolderInfoSectionAttribute name="${#infoName#}" mappedTarget="${#mappedTarget#}"/>
22
+ </AttachmentFolderInfoSection>
23
+ </AttachmentFolderInfoSections>
24
+ </AttachmentFolder>
@@ -0,0 +1,19 @@
1
+ <BannerFilter textLines="2" dataSource="${#dataSource#}">
2
+ <Bindings>
3
+ <Resource target="ClearStateText" type="Label" id="${#labelId#}" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
4
+ </Bindings>
5
+ <Items name="FilterItems">
6
+ <Bindings>
7
+ <Binding bindingMode="ONE_WAY" binding="${#mediaPathBinding#}" type="Blob" target="MediaPath" roundedEdge="true"/>
8
+ <Binding bindingMode="ONE_WAY" binding="${#typeBinding#}" type="Text" target="Type" />
9
+ <Binding target="Text" type="Label" binding="${#textBinding#}" />
10
+ </Bindings>
11
+ </Items>
12
+ <Events>
13
+ <ItemSelectedEvent event="filterSelected">
14
+ <Params>
15
+ <Param name="pKey" value="${#pKeyBinding#}" />
16
+ </Params>
17
+ </ItemSelectedEvent>
18
+ </Events>
19
+ </BannerFilter>
@@ -0,0 +1,25 @@
1
+ <Banner>
2
+ <Bindings>
3
+ <Binding bindingMode="ONE_WAY" binding="${#bannerMediaPath#}" type="Blob" target="MediaPath" />
4
+ <Binding bindingMode="ONE_WAY" binding="${#bannerFileType#}" type="Text" target="Type" />
5
+ </Bindings>
6
+ <BannerFilter textLines="2" dataSource="${#dataSource#}">
7
+ <Bindings>
8
+ <Resource target="ClearStateText" type="Label" id="${#labelId#}" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
9
+ </Bindings>
10
+ <Items name="FilterItems">
11
+ <Bindings>
12
+ <Binding bindingMode="ONE_WAY" binding="${#mediaPathBinding#}" type="Blob" target="MediaPath" roundedEdge="true"/>
13
+ <Binding bindingMode="ONE_WAY" binding="${#typeBinding#}" type="Text" target="Type" />
14
+ <Binding target="Text" type="Label" binding="${#textBinding#}" />
15
+ </Bindings>
16
+ </Items>
17
+ <Events>
18
+ <ItemSelectedEvent event="filterSelected">
19
+ <Params>
20
+ <Param name="pKey" value="${#pKeyBinding#}" />
21
+ </Params>
22
+ </ItemSelectedEvent>
23
+ </Events>
24
+ </BannerFilter>
25
+ </Banner>
@@ -0,0 +1,6 @@
1
+ <Banner>
2
+ <Bindings>
3
+ <Binding bindingMode="ONE_WAY" binding="${#bannerMediaPath#}" type="Blob" target="MediaPath" />
4
+ <Binding bindingMode="ONE_WAY" binding="${#bannerFileType#}" type="Text" target="Type" />
5
+ </Bindings>
6
+ </Banner>
@@ -0,0 +1,9 @@
1
+ <List target="Decisions" dataSource="${#dDataSource#}">
2
+ <Binding target="pKey" type="Text" binding="${#dPKey#}" />
3
+ <Binding target="description" type="Text" binding="${#dDescription#}" />
4
+ <Binding target="detailText" type="Text" binding="${#dDetailText#}" />
5
+ <Binding target="detailTextFontColor" type="Color" binding="${#dDetailTextFontColor#}" />
6
+ <Binding target="isTrue" type="Boolean" binding="${#dIsTrue#}" />
7
+ <Binding target="groupId" type="Text" binding="${#dGroupId#}" />
8
+ <Binding target="sort" type="Text" binding="${#dSort#}" />
9
+ </List>
@@ -0,0 +1,11 @@
1
+ <List target="Groups" dataSource="${#gDataSource#}">
2
+ <Binding target="pKey" type="Text" binding="${#gPKey#}" />
3
+ <Binding target="description" type="Text" binding="${#gDescription#}" />
4
+ <Binding target="detailText" type="Text" binding="${#dDetailText#}" />
5
+ <Binding target="additionalInfo" type="Text" binding="${#dAdditionalInfo#}" />
6
+ <Binding target="resultHeaderImage" type="Text" binding="${#gResultHeaderImage#}" />
7
+ <Binding target="resultSectionText" type="Text" binding="${#gResultSectionText#}" />
8
+ <Binding target="sort" type="Text" binding="${#gSort#}" />
9
+ <Binding target="HeaderBackgroundColor" type="Color" binding="${#gHeaderBackgroundColor#}" />
10
+ <Binding target="HeaderFontColor" type="Color" binding="${#gHeaderFontColor#}" />
11
+ </List>
@@ -0,0 +1,13 @@
1
+ <List target="Results" dataSource="${#rDataSource#}">
2
+ <Binding target="pKey" type="Text" binding="${#rPKey#}" />
3
+ <Binding target="description" type="Text" binding="${#rDescription#}" />
4
+ <Binding target="detailText" type="Text" binding="${#rDetailText#}" />
5
+ <Binding target="detailTextFontColor" type="Color" binding="${#rDetailTextFontColor#}" />
6
+ <Binding target="showButton" type="Boolean" binding="${#rShowButton#}" />
7
+ <Binding target="buttonText" type="Text" binding="${#rButtonText#}" />
8
+ <Binding target="isSelected" type="Boolean" binding="${#rIsSelected#}" />
9
+ <Binding target="visible" type="Boolean" binding="${#rVisible#}" />
10
+ <Binding target="editable" type="Boolean" binding="${#rEditable#}" />
11
+ <Binding target="groupId" type="Text" binding="${#rGroupId#}" />
12
+ <Binding target="sort" type="Text" binding="${#rSort#}" />
13
+ </List>
@@ -0,0 +1,6 @@
1
+ <Events>
2
+ <ItemSelectedEvent event="${#ise#}" />
3
+ <ContextOpeningEvent event="${#coe#}" />
4
+ <ContextSelectedEvent event="${#cse#}" />
5
+ <ListButtonPressedEvent event="${#lbpe#}" />
6
+ </Events>
@@ -0,0 +1 @@
1
+ <Binding target="AddItem" type="Text" binding="${#binding#}" BindingMode="ONE_WAY"/>
@@ -0,0 +1 @@
1
+ <Binding target="Categories" type="Text" binding="${#binding#}" BindingMode="ONE_TIME"/>
@@ -0,0 +1 @@
1
+ <Binding target="ShowCategory" type="Text" binding="${#binding#}" BindingMode="ONE_WAY"/>
@@ -0,0 +1,3 @@
1
+ <DataSources>
2
+ <DataSource name="${#name#}" keyAttribute="${#keyAttribute#}" refKeyAttribute="${#refKeyAttribute#}" />
3
+ </DataSources>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Button" binding="${#binding#}" bindingMode="ONE_WAY" longPressMenuId="${#longPressMenuId#}" />
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Combo" binding="${#binding#}" bindingMode="ONE_WAY" toggleId="${#toggleId#}" />
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Date" binding="${#binding#}" bindingMode="ONE_WAY" minBinding="${#minBinding#}" maxBinding="${#maxBinding#}"/>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Decimal" binding="${#binding#}" bindingMode="ONE_WAY" format="${#format#}"/>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Dynamic" binding="${#binding#}" bindingMode="ONE_WAY" typeField="${#typeField#}" toggleId="${#toggleId#}" minBinding="${#minBinding#}" maxBinding="${#maxBinding#}" stepSizeBinding="${#stepSizeBinding#}" formatBinding="${#formatBinding#}" stepperEnabledBinding="${#stepperEnabledBinding#}"/>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Image" binding="${#binding#}" bindingMode="ONE_WAY"/>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Stepper" binding="${#binding#}" bindingMode="ONE_WAY" minBinding="${#minBinding#}" maxBinding="${#maxBinding#}" stepSizeBinding="${#stepSizeBinding#}"/>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Stepper" binding="${#binding#}" bindingMode="ONE_WAY" minBinding="${#minBinding#}" maxBinding="${#maxBinding#}" stepSizeBinding="${#stepSizeBinding#}" stepperCorrelationId="${#stepperCorrelationId#}"/>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
@@ -0,0 +1 @@
1
+ <Resource target="${#target#}" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id"/>
@@ -0,0 +1,13 @@
1
+ <ContextMenu>
2
+ <Bindings>
3
+ <Binding target="DataSource" binding="${#binding#}" bindingMode="ONE_WAY" />
4
+ </Bindings>
5
+ <Items name="ContextMenuItems">
6
+ <Bindings>
7
+ <Binding target="Icon" type="Image" binding="${#binding1#}" />
8
+ <Binding target="Text" type="Label" binding="${#binding2#}" />
9
+ <Binding target="Editable" type="Editable" binding="${#binding3#}" />
10
+ <Binding target="Visible" type="Visible" binding="${#binding4#}" />
11
+ </Bindings>
12
+ </Items>
13
+ </ContextMenu>
@@ -0,0 +1,3 @@
1
+ <SearchAttributes>
2
+ <SearchAttribute name="${#name#}" />
3
+ </SearchAttributes>
@@ -0,0 +1,22 @@
1
+ <BreadCrumbControl name="${#bccName#}" dataSource="${#dataSource#}">
2
+ <Hierarchy name="${#hName#}" labelAttribute="${#labelAttribute#}">
3
+ <Bindings>
4
+ <Resource target="RootLabel" type="Label" id="${#id#}" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
5
+ </Bindings>
6
+ <Events>
7
+ <ItemSelectedEvent event="${#event#}">
8
+ <Params>
9
+ <Param name="id" value=".id" />
10
+ </Params>
11
+ </ItemSelectedEvent>
12
+ <HierarchyBackEvent event="${#event1#}">
13
+ <Params>
14
+ <Param name="id" value=".id" />
15
+ </Params>
16
+ </HierarchyBackEvent>
17
+ </Events>
18
+ </Hierarchy>
19
+ <Items name="Items" itemPattern="${#itemPattern#}">
20
+ <ItemListLayout />
21
+ </Items>
22
+ </BreadCrumbControl>
@@ -0,0 +1,23 @@
1
+ <MultiSelectionBreadCrumbControl name="${#name#}" dataSource="${#dataSource#}">
2
+ <Hierarchy name="${#hName#}" labelAttribute="${#labelAttribute#}">
3
+ <Bindings>
4
+ <Resource target="RootLabel" type="Label" id="${#id#}" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
5
+ </Bindings>
6
+ <Events>
7
+ <ItemSelectedEvent event="${#event1#}">
8
+ <Params>
9
+ <Param name="id" value=".id" />
10
+ </Params>
11
+ </ItemSelectedEvent>
12
+ <HierarchyBackEvent event="${#event2#}">
13
+ <Params>
14
+ <Param name="id" value=".id" />
15
+ </Params>
16
+ </HierarchyBackEvent>
17
+ </Events>
18
+ </Hierarchy>
19
+ <Items name="Items" itemPattern="${#itemPattern#}">
20
+ <ItemListLayout />
21
+ </Items>
22
+ <GroupVisibleElementConfiguration />
23
+ </MultiSelectionBreadCrumbControl>
@@ -0,0 +1,11 @@
1
+ <Events>
2
+ <CalendarLongTapEvent event="${#event1#}"/>
3
+ <CalendarItemOverlappingOpeningEvent event="${#event2#}"/>
4
+ <ItemSelectedEvent event="${#event3#}"/>
5
+ <ContextOpeningEvent event="${#event4#}"/>
6
+ <ContextSelectedEvent event="${#event5#}"/>
7
+ <CalendarDateRangeChangedEvent event="${#event6#}"/>
8
+ <CalendarItemResizeEvent event="${#event7#}"/>
9
+ <CalendarItemMoveEvent event="${#event8#}"/>
10
+ <CalendarDropEvent event="${#event9#}"/>
11
+ </Events>
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Date" binding="${#binding#}" bindingMode="ONE_WAY" defaultLabel="${#defaultLabel#}" />
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Decimal" binding="${#binding#}" bindingMode="ONE_WAY" defaultLabel="${#defaultLabel#}" format="${#format#}" />
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Image" binding="${#binding#}" bindingMode="ONE_WAY" defaultLabel="${#defaultLabel#}" />
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" />
@@ -0,0 +1 @@
1
+ <Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" defaultLabel="${#defaultLabel#}" />
@@ -0,0 +1 @@
1
+ <Settings dataSource="${#dataSource#}" KeyAttribute="${#KeyAttribute#}" ValueAttribute="${#ValueAttribute#}" />
@@ -0,0 +1,8 @@
1
+ <CalendarControl name="${#name#}" dataSource="${#dataSource#}" dateFromAttribute="${#dateFromAttribute#}" dateThruAttribute="${#dateThruAttribute#}" timeFromAttribute="${#timeFromAttribute#}" timeThruAttribute="${#timeThruAttribute#}" allDayAttribute="${#allDayAttribute#}" firstLine="${#firstLine#}" secondLine="${#secondLine#}" backgroundColorAttribute="${#backgroundColorAttribute#}">
2
+ <Bindings>
3
+ <Binding target="DateRangeStartDate" binding="${#scd#}" bindingMode="ONE_WAY" />
4
+ <Binding target="ShowCalendarWeek" binding="${#scw#}" bindingMode="ONE_WAY" />
5
+ </Bindings>
6
+ <Items name="Items" itemPattern="${#itemPattern#}">
7
+ </Items>
8
+ </CalendarControl>
@@ -0,0 +1,3 @@
1
+ <Events>
2
+ <ValueChangedEvent event="${#event#}" />
3
+ </Events>
@@ -0,0 +1,6 @@
1
+ <CheckBox name="${#name#}">
2
+ <Bindings>
3
+ <Resource target="Label" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
4
+ <Binding target="checkedValue" binding="${#binding#}" bindingMode="TWO_WAY" />
5
+ </Bindings>
6
+ </CheckBox>
@@ -0,0 +1,7 @@
1
+ <CockpitSections name="${#name#}">
2
+ <CockpitSection name="${#sectionName#}" sectionPattern="3columns" showSeparator="true">
3
+ <Bindings>
4
+ <Binding target="col1row1" type="ItemIdentifier" binding="${#binding#}"/>
5
+ </Bindings>
6
+ </CockpitSection>
7
+ </CockpitSections>
@@ -0,0 +1,12 @@
1
+ <DataImportWizard name="${#Name#}" dataSource="${#dataSource#}">
2
+ <Bindings>
3
+ <!-- Enter Labels here -->
4
+ </Bindings>
5
+ <DataMapping>
6
+ <ColumnMapping type="Text" name="${#ColumnName#}" defaultCSVPosition="1">
7
+ <Bindings>
8
+ <Resource target="Label" type="Label" defaultLabel="${#label#}" id="${#label#}Id" />
9
+ </Bindings>
10
+ </ColumnMapping>
11
+ </DataMapping>
12
+ </DataImportWizard>
@@ -0,0 +1,6 @@
1
+ <DatePickerField name="${#name#}">
2
+ <Bindings>
3
+ <Resource target="Label" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" />
4
+ <Binding target="Value" binding="${#binding#}" bindingMode="TWO_WAY" />
5
+ </Bindings>
6
+ </DatePickerField>
@@ -0,0 +1,8 @@
1
+ <EmbeddedList name="${#name#}" dataSource="${#dataSource#}" sortBy="${#sortBy#}" hasBorder="${#hasBorder#}">
2
+ <Items name="Items" itemPattern="${#itemPattern#}">
3
+ <Bindings>
4
+ <Resource target="Title" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" />
5
+ </Bindings>
6
+ <ItemListLayout />
7
+ </Items>
8
+ </EmbeddedList>
@@ -0,0 +1,52 @@
1
+ <EnhancedDecisionList name="${#ListName#}">
2
+ <Bindings>
3
+ <Binding target="Title" type="Text" binding="${#TitleBinding#}" />
4
+ <Binding target="Visible" type="Visible" binding="${#VisibleBinding#}"/>
5
+ <Binding target="Editable" type="Editable" binding="${#eEditableBinding#}" />
6
+ <List target="Decisions" dataSource="${#dDataSource#}">
7
+ <Binding target="pKey" type="Text" binding="${#dPKey#}" />
8
+ <Binding target="description" type="Text" binding="${#dDescription#}" />
9
+ <Binding target="detailText" type="Text" binding="${#dDetailText#}" />
10
+ <Binding target="detailTextFontColor" type="Color" binding="${#dDetailTextFontColor#}" />
11
+ <Binding target="groupId" type="Text" binding="${#dGroupId#}" />
12
+ <Binding target="isTrue" type="Boolean" binding="${#dIsTrue#}" />
13
+ <Binding target="sort" type="Text" binding="${#dSort#}" />
14
+ </List>
15
+ <List target="Groups" dataSource="${#gDataSource#}">
16
+ <Binding target="pKey" type="Text" binding="${#gPKey#}" />
17
+ <Binding target="description" type="Text" binding="${#gDescription#}" />
18
+ <Binding target="detailText" type="Text" binding="${#dDetailText#}" />
19
+ <Binding target="additionalInfo" type="Text" binding="${#dAdditionalInfo#}" />
20
+ <Binding target="resultHeaderImage" type="Text" binding="${#gResultHeaderImage#}" />
21
+ <Binding target="resultSectionText" type="Text" binding="${#gResultSectionText#}" />
22
+ <Binding target="sort" type="Text" binding="${#gSort#}" />
23
+ <Binding target="HeaderBackgroundColor" type="Color" binding="${#gHeaderBackgroundColor#}" />
24
+ <Binding target="HeaderFontColor" type="Color" binding="${#gHeaderFontColor#}" />
25
+ </List>
26
+ <List target="Results" dataSource="${#rDataSource#}">
27
+ <Binding target="pKey" type="Text" binding="${#rPKey#}" />
28
+ <Binding target="description" type="Text" binding="${#rDescription#}" />
29
+ <Binding target="detailText" type="Text" binding="${#rDetailText#}" />
30
+ <Binding target="detailTextFontColor" type="Color" binding="${#rDetailTextFontColor#}" />
31
+ <Binding target="buttonText" type="Text" binding="${#rButtonText#}" />
32
+ <Binding target="editable" type="Boolean" binding="${#rEditable#}" />
33
+ <Binding target="visible" type="Boolean" binding="${#rVisible#}" />
34
+ <Binding target="groupId" type="Text" binding="${#rGroupId#}" />
35
+ <Binding target="isSelected" type="Boolean" binding="${#rIsSelected#}" />
36
+ <Binding target="showButton" type="Boolean" binding="${#rShowButton#}" />
37
+ <Binding target="sort" type="Text" binding="${#rSort#}" />
38
+ </List>
39
+ </Bindings>
40
+ <Events>
41
+ <ButtonPressedEvent event="${#buttonPressed#}" >
42
+ <Params>
43
+ <Param name="pKey" value=".pKey" />
44
+ </Params>
45
+ </ButtonPressedEvent>
46
+ <ItemSelectedEvent event= "${#itemSelected#}">
47
+ <Params>
48
+ <Param name="pKey" value=".pKey" />
49
+ </Params>
50
+ </ItemSelectedEvent>
51
+ </Events>
52
+ </EnhancedDecisionList>