@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.
- package/LICENSE.md +37 -0
- package/README.md +756 -0
- package/lib/commands/modeler/workspace/add.js +1 -0
- package/lib/commands/modeler/workspace/build.js +1 -0
- package/lib/commands/modeler/workspace/cleanup.js +1 -0
- package/lib/commands/modeler/workspace/create.js +1 -0
- package/lib/commands/modeler/workspace/package.js +1 -0
- package/lib/commands/modeler/workspace/refreshLocale.js +1 -0
- package/lib/commands/modeler/workspace/server/start.js +1 -0
- package/lib/commands/modeler/workspace/upgrade.js +1 -0
- package/lib/commands/modeler/workspace/utils/base64encode.js +1 -0
- package/lib/commands/modeler/workspace/utils/generateManifest.js +1 -0
- package/lib/commands/modeler/workspace/utils/migrateContracts.js +1 -0
- package/lib/commands/modeler/workspace/validate.js +1 -0
- package/lib/constants.js +1 -0
- package/lib/hooks/init/updateCheck.js +1 -0
- package/lib/model/buildStatus.js +1 -0
- package/lib/model/workspace.js +1 -0
- package/lib/model/workspaceCommand.js +1 -0
- package/lib/shared/commandBuilder.js +1 -0
- package/lib/shared/commandExecutor.js +1 -0
- package/lib/shared/commandOutput.js +1 -0
- package/lib/types/config.js +1 -0
- package/lib/types/errors.js +1 -0
- package/lib/types/messages.js +1 -0
- package/lib/types/package.js +1 -0
- package/lib/types/results.js +1 -0
- package/lib/utils/componentHelper.js +1 -0
- package/lib/utils/errorHelper.js +1 -0
- package/lib/utils/fsHelper.js +1 -0
- package/lib/utils/generateManifestHelper.js +1 -0
- package/lib/utils/messageHelper.js +1 -0
- package/lib/utils/packageHelper.js +1 -0
- package/lib/utils/serverHelper.js +1 -0
- package/lib/utils/templateEngine.js +1 -0
- package/lib/utils/templateHelper.js +1 -0
- package/lib/utils/updateChecker.js +1 -0
- package/lib/utils/validationHelper.js +1 -0
- package/messages/modeler-workspace-add.md +45 -0
- package/messages/modeler-workspace-build.md +29 -0
- package/messages/modeler-workspace-cleanup.md +17 -0
- package/messages/modeler-workspace-create.md +21 -0
- package/messages/modeler-workspace-package.md +21 -0
- package/messages/modeler-workspace-refresh-locale.md +27 -0
- package/messages/modeler-workspace-server-start.md +37 -0
- package/messages/modeler-workspace-upgrade.md +21 -0
- package/messages/modeler-workspace-utils-base64encode.md +25 -0
- package/messages/modeler-workspace-utils-generateManifest.md +15 -0
- package/messages/modeler-workspace-utils-migrateContracts.md +23 -0
- package/messages/modeler-workspace-validate.md +29 -0
- package/messages/modeler-workspace.md +19 -0
- package/oclif.manifest.json +429 -0
- package/package.json +108 -0
- package/templates/.gitignore.tmp +4 -0
- package/templates/README.md.tmp +77 -0
- package/templates/contractTemplates/#ModuleName#/BO/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/DS/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PL/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PR/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/TB/README.md +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Bo${NAME}.businessobject.xml +22 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.AfterCreateAsync.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.BeforeCreateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.AfterInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.BeforeInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/BusinessObject.md +186 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectNestedObjectsNestedObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertyEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobjecthelper/snippets/BusinessObjectHelperSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/ValidationMessage.md +38 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/snippets/ValidationMessagesValidationMessageSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/DataSource.md +319 -0
- package/templates/contractTemplates/DS_DataSource/Ds${NAME}_sf.datasource.xml +11 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesDerivedAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionLiteralSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntitySnipp.xml +1 -0
- package/templates/contractTemplates/ExternalFiles/#Name#.externalfile.xml +6 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Li${NAME}.listitem.xml +5 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListItem.md +114 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListObject.md +354 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Lo${NAME}.listobject.xml +12 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/snippets/ListItemSimplePropertiesSimplepropertySnipp.xml +1 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/LookupObject.md +97 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Lu${NAME}.lookupobject.xml +12 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LU_LookupObject/snippets/LookupObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/PL_PrintLayout/#Name#PDF/#Name#PDF.printlayoutv2.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#.userinterface.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#Process.processflow.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/Process.md +790 -0
- package/templates/contractTemplates/PR_Process_&_UI/UserInterface.md +1545 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionConfirmSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionCreateSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionDecisionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionEndSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLoadSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLogicSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionMasterDetailSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionNavigationSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintV2Snipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionProcessSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionValidationSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionViewSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionCreateSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLoadSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLogicSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderInfoSectionSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/BannerFilterSnipp.xml +19 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml +25 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithoutFilterSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_DecisionsSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_GroupsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_ResultsSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlEventsSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingAddItemSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingCategoriesSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingShowCategorySnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyDataSourcesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingButtonSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingComboSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDynamicSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepperSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepper_CorrelationIdSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsContextMenuSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSearchAttributesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSnipp.xml +22 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/MultiSelectionBreadCrumbControlSnipp.xml +23 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlEventsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSettingsSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxEventsSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DataImportWizard/DataImportWizardSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DatePicker/DatePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EnhanceDecisionList/EnhancedDecisionListSnipp.xml +52 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml +69 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml +20 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupElement/GroupElementSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListEventsSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListFooterSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml +16 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaMultiLineSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_ComplexSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_GridSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_TwoRowsSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/LinkBar/LinkBarSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupEventSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingDescriptionSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingIsTaggedSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingMediaPathSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingTypeSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/LongPressMenuSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/MenuItemSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerOneInputControlTwoButtonsMaxSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsCombinedSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsNoneSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsOwnSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/NoDataMessageSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailGroupsSnipp.xml +43 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailListSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailTabsSnipp.xml +61 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithExtendedDetailSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_GroupedElementsSnipp.xml +33 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_ListSnipp.xml +41 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_TabSnipp.xml +39 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_WizardSnipp.xml +34 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SplitScreen/Page_SplitScreenSnipp.xml +27 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxBindingSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxToggleSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlEditabilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlVisibilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Stepper/StepperSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TextBar/TextBarSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ThemeSelection/ThemeSelectionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TimePicker/TimePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/UserWelcomeSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/VisitDetailsSnipp.xml +21 -0
- package/templates/contractTemplates/TB_Table/#Name#_T.temptable.xml +11 -0
- package/templates/contractTemplates/TB_Table/snippets/#Name#.dbtable.xml +10 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTablecolumnscolumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnIsDeletedSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/UI_Plugins/#Name#UiPluginV2.uipluginv2.xml +16 -0
- package/templates/templateDefinitions.json +167 -0
|
@@ -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,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,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
|
+
<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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml
ADDED
|
@@ -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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml
ADDED
|
@@ -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,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 @@
|
|
|
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 @@
|
|
|
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="Image" id="${#id#}"/>
|
|
@@ -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,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#}" />
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml
ADDED
|
@@ -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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml
ADDED
|
@@ -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>
|
package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml
ADDED
|
@@ -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>
|