@sap/open.fe 1.98.0 → 1.99.0
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/package.json +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/.library +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/.theming +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton-dbg.js +10 -8
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton.js +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/library-dbg.js +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js +2 -2
- package/packages/sap.fe.common/src/sap/fe/common/library-preload.js +3 -3
- package/packages/sap.fe.common/src/sap/fe/common/library-preload.js.map +3 -3
- package/packages/sap.fe.common/src/sap/fe/common/library.js +1 -1
- package/packages/sap.fe.common/src/sap/fe/common/manifest.json +3 -3
- package/packages/sap.fe.common/src/sap/fe/common/resources.json +4 -4
- package/packages/sap.fe.common/test/sap/fe/common/designtime/api.json +1 -1
- package/packages/sap.fe.common/test/sap/fe/common/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.common/test/sap/fe/common/relnotes/changes-1.99.json +18 -0
- package/packages/sap.fe.core/src/sap/fe/core/.library +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/.theming +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper-dbg.js +376 -405
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper.ts +385 -0
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler-dbg.js +228 -181
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler.ts +171 -0
- package/packages/sap.fe.core/src/sap/fe/core/BusyLocker-dbg.js +104 -121
- package/packages/sap.fe.core/src/sap/fe/core/BusyLocker.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/BusyLocker.ts +98 -0
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils-dbg.js +2072 -2399
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils.ts +2078 -0
- package/packages/sap.fe.core/src/sap/fe/core/PageController-dbg.js +83 -125
- package/packages/sap.fe.core/src/sap/fe/core/PageController.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/PageController.ts +101 -0
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy-dbg.js +985 -823
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy.ts +838 -0
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization-dbg.js +50 -35
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization.ts +29 -0
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent-dbg.js +172 -164
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent.ts +166 -0
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel-dbg.js +96 -54
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel.ts +63 -0
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper-dbg.js +1575 -1664
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper.ts +1706 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft-dbg.js +558 -608
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft.ts +593 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling-dbg.js +544 -514
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling.ts +532 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft-dbg.js +16 -19
- package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft.ts +12 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations-dbg.js +1073 -1215
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations.ts +1162 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky-dbg.js +101 -105
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky.ts +102 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow-dbg.js +51 -209
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow-dbg.js +276 -9
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation-dbg.js +5 -4
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting-dbg.js +44 -43
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement-dbg.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.ts +29 -26
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MassEdit-dbg.js +98 -6
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MassEdit.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler-dbg.js +14 -6
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.ts +12 -8
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing-dbg.js +6 -2
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects-dbg.js +3 -3
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.ts +18 -18
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper-dbg.js +8 -20
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/controls/NonComputedVisibleKeyFieldsDialog.fragment.xml +1 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.ts +4 -3
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.ts +1 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper-dbg.js +39 -26
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.ts +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter-dbg.js +11 -8
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.ts +16 -16
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter.ts +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/common/AnnotationConverter-dbg.js +17 -13
- package/packages/sap.fe.core/src/sap/fe/core/converters/common/AnnotationConverter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action.ts +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart-dbg.js +5 -3
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart.ts +11 -3
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization-dbg.js +3 -3
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization.ts +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form-dbg.js +4 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.ts +16 -2
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table-dbg.js +250 -146
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.ts +300 -167
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/table/StandardActions-dbg.js +115 -56
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/table/StandardActions.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/table/StandardActions.ts +120 -74
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar-dbg.js +467 -32
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.ts +483 -54
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection-dbg.js +6 -6
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection.ts +9 -15
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation-dbg.js +13 -5
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.ts +20 -5
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager-dbg.js +4 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager.ts +3 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction-dbg.js +4 -4
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +3 -3
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter-dbg.js +13 -6
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.ts +26 -15
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter.ts +4 -10
- package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter.ts +3 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter-dbg.js +39 -28
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.ts +43 -28
- package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter.ts +7 -6
- package/packages/sap.fe.core/src/sap/fe/core/fpm/manifest.json +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AppStartupHelper-dbg.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AppStartupHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AppStartupHelper.ts +7 -4
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression-dbg.js +314 -355
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.ts +317 -391
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport-dbg.js +27 -15
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.ts +31 -20
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper-dbg.js +62 -59
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper.ts +56 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState-dbg.js +80 -84
- package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState.ts +81 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper-dbg.js +61 -48
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper.ts +49 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper-dbg.js +51 -56
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper.ts +62 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/KeepAliveHelper-dbg.js +3 -4
- package/packages/sap.fe.core/src/sap/fe/core/helpers/KeepAliveHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/KeepAliveHelper.ts +9 -9
- package/packages/sap.fe.core/src/sap/fe/core/helpers/MassEditHelper-dbg.js +24 -16
- package/packages/sap.fe.core/src/sap/fe/core/helpers/MassEditHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper-dbg.js +228 -225
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper.ts +227 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper-dbg.js +209 -132
- package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper.ts +196 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators-dbg.js +331 -313
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators.ts +330 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper-dbg.js +65 -67
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper.ts +73 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper-dbg.js +1 -5
- package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper.ts +2 -6
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/library-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js +23 -26
- package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js.map +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.js +630 -649
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.js.map +3 -3
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js +17 -5
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js.map +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/library.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/manifest.json +10 -10
- package/packages/sap.fe.core/src/sap/fe/core/manifestMerger/ChangePageConfiguration-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/manifestMerger/ChangePageConfiguration.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle.properties +23 -10
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ar.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_bg.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ca.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cs.properties +10 -1
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cy.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_da.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_de.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_el.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_GB.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_sappsd.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saprigi.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saptrc.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es_MX.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_et.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fi.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr.properties +13 -4
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr_CA.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hi.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hr.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hu.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_id.properties +10 -1
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_it.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_iw.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ja.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_kk.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ko.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lt.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lv.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ms.properties +14 -5
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_nl.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_no.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pl.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt_PT.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ro.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ru.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sh.properties +11 -2
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sk.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sl.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sv.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_th.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_tr.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_uk.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_vi.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_CN.properties +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_TW.properties +15 -6
- package/packages/sap.fe.core/src/sap/fe/core/resources.json +427 -341
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory.ts +3 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory-dbg.js +268 -202
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory.ts +212 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.ts +7 -6
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory-dbg.js +405 -300
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory.ts +316 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory-dbg.js +148 -81
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory.ts +80 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory-dbg.js +986 -899
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory.ts +898 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.ts +15 -10
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory-dbg.js +35 -81
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.ts +46 -94
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory-dbg.js +460 -487
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory.ts +453 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage-dbg.controller.js +9 -8
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.controller.js +2 -3
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.controller.ts +8 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/AnnotationIssue.support.js +15 -3
- package/packages/sap.fe.core/src/sap/fe/core/support/AnnotationIssue.support.ts +16 -2
- package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetUnsupportedLevel.support.js +2 -2
- package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetUnsupportedLevel.support.ts +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper-dbg.js +8 -8
- package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper.ts +25 -7
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper-dbg.js +138 -72
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.ts +139 -71
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters-dbg.js +31 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.ts +33 -2
- package/packages/sap.fe.core/src/sap/fe/core/type/Email-dbg.js +1 -1
- package/packages/sap.fe.core/src/sap/fe/core/type/Email.ts +4 -6
- package/packages/sap.fe.core/test/sap/fe/core/designtime/api.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jstemplates.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controls/FileEditor.js +15 -1
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/MacroNavigationModel.js +90 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/buildingBlockOverview.md +2 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/chartFilterBar.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/chartFilterBar.view.xml +22 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/localService/RootEntity.json +252 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/localService/service.cds +141 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/localService/status.json +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartFilterBar/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartFilterBar.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/FieldFormatOptions.view.xml +186 -122
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/FieldFormatOptions.cds +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/RootEntity.json +2 -1
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/service.cds +15 -1
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarSVandAnnotationDefaults/localService/service.cds +36 -5
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/form/formSample/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/form/formSample/FormSample.view.xml +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/form/formSample/localService/FormSample.cds +72 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/form/formSample/localService/RootEntity.json +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/form/formSample/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formSample.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/guidance/guidanceFreestyle/EntryPage.controller.js +72 -43
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/guidance/guidanceFreestyle/EntryPage.controller.ts +90 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/guidance/guidanceFreestyle/EntryPage.view.xml +12 -3
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.controller.js +4 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.view.xml +9 -3
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/TableFilterBar.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/TableFilterBar.view.xml +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/localService/RootEntity.json +102 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/localService/service.cds +94 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableFilterBar/manifest.json +79 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableFilterBar.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/AnnotationHelper.spec.js +694 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/AnnotationHelper.spec.ts +819 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/AppStateHandler.spec.js +51 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/AppStateHandler.spec.ts +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression-AnnotationExpression.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression-AnnotationExpression.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression.spec.js +26 -15
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression.spec.ts +28 -15
- package/packages/sap.fe.core/test/sap/fe/core/jest/CommonUtils.spec.ts +202 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/RouterProxy.spec.js +54 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/RouterProxy.spec.ts +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.js +5 -11
- package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.ts +8 -8
- package/packages/sap.fe.core/test/sap/fe/core/jest/TransactionHelper.spec.js +736 -619
- package/packages/sap.fe.core/test/sap/fe/core/jest/TransactionHelper.spec.ts +703 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/__snapshots__/TemplateConverter.spec.ts.snap +89 -85
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/draft.spec.js +102 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/draft.spec.ts +97 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/messageHandling.spec.js +492 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/messageHandling.spec.ts +509 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/operations.spec.js +895 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/actions/operations.spec.ts +908 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/EditFlow.spec.js +209 -353
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/EditFlow.spec.ts +222 -362
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalEditFlow.spec.js +508 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalEditFlow.spec.ts +440 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/InternalRouting.spec.ts +90 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.ts +10 -10
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MassEdit.spec.js +286 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MassEdit.spec.ts +179 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MessageHandler.spec.js +200 -21
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MessageHandler.spec.ts +168 -17
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/Routing.spec.js +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/Routing.spec.ts +26 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/FilterBar.spec.js +355 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controls/FilterBar.spec.ts +287 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Filter.spec.js +542 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Filter.spec.ts +588 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/HeaderFacet.spec.js +1 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/HeaderFacet.spec.ts +1 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.js +371 -7
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.ts +469 -6
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.js +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.ts +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ObjectPageAvatar.spec.js +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ObjectPageAvatar.spec.ts +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/SubSection.spec.js +12 -8
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/SubSection.spec.ts +8 -7
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.js +436 -45
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.ts +565 -33
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/TableStandardActions.spec.js +136 -78
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/TableStandardActions.spec.ts +315 -199
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/__snapshots__/Filter.spec.ts.snap +307 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/__snapshots__/MetaModelConverter.spec.ts.snap +49 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/__snapshots__/Table.spec.ts.snap +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/AnalyticalService.cds +51 -4
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/AnalyticalService2.cds +107 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/ComplexType.cds +39 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/Filter.cds +187 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/MassEditHelper.cds +226 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/SideEffects.cds +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/computedDefaultValueService.cds +99 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/TableFormatters.spec.js +25 -5
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/TableFormatters.spec.ts +18 -7
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/AppStartupHelper.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/AppStartupHelper.spec.ts +4 -2
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/DynamicAnnotationPathHelper.spec.js +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/DynamicAnnotationPathHelper.spec.ts +39 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/ExcelFormatHelper.spec.js +20 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/ExcelFormatHelper.spec.ts +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/KeepAliveHelper.spec.js +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/KeepAliveHelper.spec.ts +3 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/MassEditHelper.spec.js +712 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/MassEditHelper.spec.ts +613 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/ModelHelper.spec.js +344 -225
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/ModelHelper.spec.ts +347 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/PasteHelper.spec.js +439 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/PasteHelper.spec.ts +378 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/SemanticDateOperators.spec.js +123 -0
- package/packages/sap.fe.core/test/sap/fe/core/{qunit/helpers/SemanticDateOperators.qunit.js → jest/helpers/SemanticDateOperators.spec.ts} +10 -21
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/SemanticKeyHelper.spec.js +215 -0
- package/packages/sap.fe.core/test/sap/fe/core/{qunit/helpers/SemanticKeyHelper.qunit.js → jest/helpers/SemanticKeyHelper.spec.ts} +58 -55
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/StableIdHelper.spec.js +125 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/StableIdHelper.spec.ts +142 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/helpers/__snapshots__/MassEditHelper.spec.ts.snap +263 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/CacheHandlerTest.spec.js +871 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/CacheHandlerTest.spec.ts +899 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/NavigationServiceFactory.spec.js +46 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/NavigationServiceFactory.spec.ts +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/RoutingServiceFactory.spec.js +120 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/RoutingServiceFactory.spec.ts +96 -7
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/ShellServicesFactory.spec.js +86 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/ShellServicesFactory.spec.ts +72 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.js +16 -44
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.ts +22 -60
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.js +4 -4
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.ts +9 -3
- package/packages/sap.fe.core/test/sap/fe/core/jest/type/ComplexType.spec.js +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/type/ComplexType.spec.ts +51 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/TemplatingExpressions.qunit.js +2 -2
- package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/generalTests.json +0 -105
- package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.98.json +0 -11
- package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.99.json +534 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/.library +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/.theming +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata-dbg.js +14 -5
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartAPI-dbg.js +15 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartAPI.ts +9 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate-dbg.js +37 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper-dbg.js +27 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.fragment.xml +4 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata-dbg.js +17 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata.ts +17 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.ts +35 -9
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata-dbg.js +41 -10
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.ts +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate-dbg.js +50 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.fragment.xml +65 -75
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata-dbg.js +55 -51
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FormAPI-dbg.js +83 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormAPI.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormAPI.ts +29 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.fragment.xml +11 -10
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.metadata-dbg.js +2 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainerAPI-dbg.js +99 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainerAPI.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainerAPI.ts +32 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI-dbg.js +67 -7
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.ts +60 -10
- package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil-dbg.js +26 -34
- package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.fragment.xml +6 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata-dbg.js +38 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI-dbg.js +78 -92
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.ts +55 -68
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper-dbg.js +41 -39
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime-dbg.js +125 -31
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating-dbg.js +16 -42
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.ts +13 -39
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate-dbg.js +0 -7
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper-dbg.js +142 -129
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils-dbg.js +120 -61
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/form/AddressSection.fragment.xml +4 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/form/DataFieldCollection.fragment.xml +3 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/form/FormHelper-dbg.js +1 -14
- package/packages/sap.fe.macros/src/sap/fe/macros/form/FormHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata-dbg.js +23 -8
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.ts +29 -17
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.fragment.xml +45 -54
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata-dbg.js +16 -22
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata-dbg.js +14 -5
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/FilterField.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/SituationsIndicator-dbg.js +3 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/SituationsIndicator.ts +4 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldStructure.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWithQuickViewForm.fragment.xml +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWrapper.fragment.xml +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectIdentifier.fragment.xml +4 -145
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectStatus.fragment.xml +32 -8
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DatePicker.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DateTimePicker.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/File.fragment.xml +3 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/Input.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithUnit.fragment.xml +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithValueHelp.fragment.xml +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TextArea.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TimePicker.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/fragments/ObjectIdentifierContent.fragment.xml +81 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating-dbg.js +64 -30
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.ts +58 -36
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Formatter-dbg.js +4 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Formatter.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Formatter.ts +19 -20
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Runtime-dbg.js +2 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Runtime.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/situations/Runtime.ts +13 -5
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpContent.fragment.xml +3 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating-dbg.js +17 -7
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating.ts +10 -3
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListDialogTable.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper-dbg.js +53 -62
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListTable.fragment.xml +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/library-dbg.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js +16 -14
- package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js.map +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js +157 -178
- package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js.map +4 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/library.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/manifest.json +9 -9
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle.properties +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ar.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_bg.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ca.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cs.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cy.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_da.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_de.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_el.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_GB.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_sappsd.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saprigi.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saptrc.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es_MX.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_et.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fi.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr_CA.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hi.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hr.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hu.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_id.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_it.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_iw.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ja.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_kk.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ko.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lt.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lv.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ms.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_nl.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_no.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pl.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt_PT.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ro.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ru.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sh.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sk.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sl.properties +16 -8
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sv.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_th.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_tr.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_uk.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_vi.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_CN.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_TW.properties +14 -6
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartHelper-dbg.js +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/BulletMicroChart.fragment.xml +2 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/ComparisonMicroChart.fragment.xml +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/resources.json +277 -209
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Actions.fragment.xml +5 -16
- package/packages/sap.fe.macros/src/sap/fe/macros/table/ColumnContent.fragment.xml +17 -4
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper-dbg.js +0 -2
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableRuntime-dbg.js +27 -18
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableRuntime.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate-dbg.js +196 -139
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/InteractiveChartHelper-dbg.js +12 -14
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/InteractiveChartHelper.js +1 -1
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/VisualFilterRuntime-dbg.js +13 -15
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/VisualFilterRuntime.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/api.json +113 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ChartDelegate.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ChartDelegate.spec.ts +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ChartMacro.spec.js +32 -20
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ChartMacro.spec.ts +24 -12
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CollectionField.spec.js +15 -5
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CollectionField.spec.ts +18 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CommonHelper.spec.js +69 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CommonHelper.spec.ts +32 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/DatapointMacro.spec.js +6 -180
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/DatapointMacro.spec.ts +6 -177
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithSemanticKey.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithSemanticKey.spec.ts +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterField.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterField.spec.ts +1 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterFieldHelper.spec.js +51 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterFieldHelper.spec.ts +48 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterUtils.spec.js +133 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FormContainerAPI.spec.js +34 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FormContainerAPI.spec.ts +23 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FormMacro.spec.js +49 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FormMacro.spec.ts +41 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroAPI.spec.js +105 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroAPI.spec.ts +53 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroComponent.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroComponent.spec.ts +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MicroChart.spec.js +15 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MicroChart.spec.ts +13 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/PhantomUtil.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/PhantomUtil.spec.ts +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/QuickViewForm.spec.js +2 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/QuickViewForm.spec.ts +3 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/SimpleFieldMacro.spec.js +14 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/SimpleFieldMacro.spec.ts +18 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/Table.spec.js +140 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/Table.spec.ts +144 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.js +445 -635
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.ts +528 -719
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableMacro.spec.js +83 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableMacro.spec.ts +101 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ValueHelpMacro.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ValueHelpMacro.spec.ts +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/ChartMacro.spec.ts.snap +75 -7
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/CollectionField.spec.ts.snap +26 -11
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/DatapointMacro.spec.ts.snap +42 -304
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FieldMacroDataFieldTypes.spec.ts.snap +6 -6
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FilterBarMacro.spec.ts.snap +12 -12
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FilterField.spec.ts.snap +3 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FormMacro.spec.ts.snap +150 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/KPITag.spec.ts.snap +4 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/MicroChart.spec.ts.snap +39 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/QuickViewForm.spec.ts.snap +4 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/SimpleFieldMacro.spec.ts.snap +125 -51
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/Table.spec.ts.snap +1455 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/Chart.cds +56 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroDataFieldTypes.cds +12 -59
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/Form.cds +129 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/MicroChart.cds +14 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/Table.cds +55 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/simpleFieldMacro.cds +10 -4
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldRuntime.spec.js +2 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldRuntime.spec.ts +15 -8
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.js +12 -34
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.ts +21 -38
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/Actions.spec.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/Actions.spec.ts +2 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/__snapshots__/columnWidth.spec.ts.snap +54 -14
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/columnWidth.spec.js +17 -7
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/columnWidth.spec.ts +18 -11
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/data/columnWidth.cds +26 -3
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/TableDelegate.spec.js +145 -17
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/TableDelegate.spec.ts +176 -18
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/__snapshots__/TableDelegate.spec.ts.snap +813 -111
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/table/delegates/data/tabledelegate.cds +9 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelper.qunit.js +0 -56
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelperTemplate.qunit.js +0 -321
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormContainerTemplating.qunit.js +1 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplating.qunit.js +10 -5
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplatingTs.qunit.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartHelperForTemplate.qunit.js +1 -2
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableRuntime.qunit.js +1 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueListHelper.qunit.js +130 -1
- package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.99.json +343 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/.library +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/.theming +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/NavigationHandler-dbg.js +0 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/NavigationHandler.js +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-dbg.js +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js +2 -2
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js +3 -3
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js.map +2 -2
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library.js +1 -1
- package/packages/sap.fe.navigation/src/sap/fe/navigation/manifest.json +3 -3
- package/packages/sap.fe.navigation/src/sap/fe/navigation/resources.json +4 -4
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/api.json +1 -1
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.library +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.theming +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-dbg.js +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js +2 -2
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library.js +1 -1
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/manifest.json +3 -3
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/api.json +1 -1
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/.library +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/.theming +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/manifest.json +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent-dbg.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component-dbg.js +8 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ExtensionAPI-dbg.js +8 -3
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ExtensionAPI.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReport.view.xml +11 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController-dbg.controller.js +114 -29
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController.controller.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/manifest.json +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/IntentBasedNavigation-dbg.js +10 -10
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/IntentBasedNavigation.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/Share-dbg.js +7 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/Share.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/ViewState-dbg.js +75 -53
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/ViewState.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/resources.json +14 -23
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/CollectionVisualization.fragment.xml +8 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper-dbg.js +3 -3
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component-dbg.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPage.view.xml +8 -45
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController-dbg.controller.js +17 -67
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController.controller.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/manifest.json +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/resources.json +24 -12
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating-dbg.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating.ts +2 -2
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FooterContent.fragment.xml +5 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/Heading.fragment.xml +33 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeadingAvatar.fragment.xml +17 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeadingTitle.fragment.xml +18 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionFormContent.fragment.xml +3 -3
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionMoreFormContent.fragment.xml +3 -3
- package/packages/sap.fe.templates/src/sap/fe/templates/library-dbg.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js +7 -5
- package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js.map +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js +24 -22
- package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js.map +4 -4
- package/packages/sap.fe.templates/src/sap/fe/templates/library.js +1 -1
- package/packages/sap.fe.templates/src/sap/fe/templates/manifest.json +13 -13
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle.properties +14 -30
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ar.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_bg.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ca.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cs.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cy.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_da.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_de.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_el.properties +25 -7
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_GB.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_sappsd.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saprigi.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saptrc.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es_MX.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_et.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fi.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr_CA.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hi.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hr.properties +25 -7
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hu.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_id.properties +26 -8
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_it.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_iw.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ja.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_kk.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ko.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lt.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lv.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ms.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_nl.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_no.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pl.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt.properties +27 -9
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt_PT.properties +25 -7
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ro.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ru.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sh.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sk.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sl.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sv.properties +25 -7
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_th.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_tr.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_uk.properties +25 -7
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_vi.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_CN.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_TW.properties +24 -6
- package/packages/sap.fe.templates/src/sap/fe/templates/resources.json +127 -113
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/manifest.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/api.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/IntentBasedNavigation.spec.js +59 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/IntentBasedNavigation.spec.ts +54 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/Share.spec.js +85 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/Share.spec.ts +89 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/ViewState.spec.js +482 -259
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ListReport/overrides/ViewState.spec.ts +442 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/AnnotationHelper.spec.js +99 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/AnnotationHelper.spec.ts +82 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/Heading.spec.js +50 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/Heading.spec.ts +32 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/__snapshots__/Heading.spec.ts.snap +43 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/ObjectPage/view/fragments/__snapshots__/Sections.spec.ts.snap +9 -7
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/RootContainer/RootContainerBaseController.spec.js +2 -2
- package/packages/sap.fe.templates/test/sap/fe/templates/jest/RootContainer/RootContainerBaseController.spec.ts +4 -3
- package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.99.json +335 -0
- package/packages/sap.fe.test/src/sap/fe/test/.library +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/.theming +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/FeMocks-dbg.js +66 -0
- package/packages/sap.fe.test/src/sap/fe/test/FeMocks.js +5 -0
- package/packages/sap.fe.test/src/sap/fe/test/FeMocks.ts +77 -0
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper-dbg.js +78 -22
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.ts +66 -22
- package/packages/sap.fe.test/src/sap/fe/test/ObjectPage-dbg.js +6 -4
- package/packages/sap.fe.test/src/sap/fe/test/ObjectPage.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/UI5MockHelper-dbg.js +44 -21
- package/packages/sap.fe.test/src/sap/fe/test/UI5MockHelper.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/UI5MockHelper.ts +28 -8
- package/packages/sap.fe.test/src/sap/fe/test/api/BaseAPI-dbg.js +1 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogAPI-dbg.js +14 -2
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogAPI.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateActions-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateActions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateAssertions-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateAssertions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageActions-dbg.js +16 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageActions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageAssertions-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageAssertions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpActions-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpActions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpAssertions-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpAssertions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/TableActions-dbg.js +0 -19
- package/packages/sap.fe.test/src/sap/fe/test/api/TableActions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/api/TableAssertions-dbg.js +3 -4
- package/packages/sap.fe.test/src/sap/fe/test/api/TableAssertions.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcTableBuilder-dbg.js +4 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcTableBuilder.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/internal/FEJourneyRunner-dbg.js +6 -3
- package/packages/sap.fe.test/src/sap/fe/test/internal/FEJourneyRunner.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/library-dbg.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js +3 -2
- package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js.map +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/library-preload.js +39 -20
- package/packages/sap.fe.test/src/sap/fe/test/library-preload.js.map +4 -4
- package/packages/sap.fe.test/src/sap/fe/test/library.js +1 -1
- package/packages/sap.fe.test/src/sap/fe/test/manifest.json +3 -3
- package/packages/sap.fe.test/src/sap/fe/test/resources.json +65 -28
- package/packages/sap.fe.test/test/sap/fe/test/designtime/api.json +1 -1
- package/packages/sap.fe.test/test/sap/fe/test/designtime/apiref/api.json +1 -1
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.jsmeta.json +1 -1
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.xmlmeta.json +1 -1
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MessageHandling.spec.js +0 -115
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/MessageHandling.spec.ts +0 -95
- package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/ExcelFormatHelper.qunit.js +0 -19
- package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/StableIdHelper.qunit.js +0 -301
- package/packages/sap.fe.core/test/sap/fe/core/qunit/services/CacheHandlerTest.qunit.js +0 -924
- package/packages/sap.fe.macros/src/sap/fe/macros/formcontainer/FormContainerRuntime-dbg.js +0 -46
- package/packages/sap.fe.macros/src/sap/fe/macros/formcontainer/FormContainerRuntime.js +0 -6
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CommonUtils.spec.js +0 -94
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CommonUtils.spec.ts +0 -70
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableFieldLabel.spec.js +0 -68
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableFieldLabel.spec.ts +0 -65
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/TableFieldLabel.spec.ts.snap +0 -607
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/MassEdit-dbg.js +0 -96
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/MassEdit.js +0 -6
|
@@ -0,0 +1,1455 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`Table Search Field Search Field is disabled when filter bar id is provided 1`] = `
|
|
4
|
+
"<root>
|
|
5
|
+
<macro:TableAPI
|
|
6
|
+
xmlns:macro=\\"sap.fe.macros\\"
|
|
7
|
+
id=\\"abc\\"
|
|
8
|
+
tableDefinition=\\"/\\"
|
|
9
|
+
metaPath=\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem\\"
|
|
10
|
+
contextPath=\\"/TestEntity\\"
|
|
11
|
+
readOnly=\\"true\\"
|
|
12
|
+
>
|
|
13
|
+
<macro:layoutData>
|
|
14
|
+
<FlexItemData xmlns=\\"sap.m\\" maxWidth=\\"100%\\" />
|
|
15
|
+
</macro:layoutData>
|
|
16
|
+
<!-- macrodata has to be an expression binding if it needs to be set as attribute via change handler during templating -->
|
|
17
|
+
<mdc:Table
|
|
18
|
+
xmlns:mdc=\\"sap.ui.mdc\\"
|
|
19
|
+
binding=\\"{internal>controls/abc-content}\\"
|
|
20
|
+
xmlns:ns1=\\"http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1\\"
|
|
21
|
+
ns1:id=\\"TableMacroFragment\\"
|
|
22
|
+
xmlns:ns2=\\"sap.ui.core\\"
|
|
23
|
+
ns2:require=\\"{TableRuntime: 'sap/fe/macros/table/TableRuntime', API: 'sap/fe/macros/TableAPI'}\\"
|
|
24
|
+
xmlns:ns3=\\"http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1\\"
|
|
25
|
+
ns3:kind=\\"EntitySet\\"
|
|
26
|
+
ns3:navigationPath=\\"\\"
|
|
27
|
+
id=\\"abc-content\\"
|
|
28
|
+
busyIndicatorDelay=\\"0\\"
|
|
29
|
+
enableExport=\\"true\\"
|
|
30
|
+
delegate='{\\"name\\":\\"sap/fe/macros/table/delegates/TableDelegate\\"}'
|
|
31
|
+
height=\\"100%\\"
|
|
32
|
+
autoBindOnInit=\\"false\\"
|
|
33
|
+
selectionMode=\\"Multi\\"
|
|
34
|
+
selectionChange=\\"TableRuntime.setContexts(\${$source>/}, 'undefined', '[object Object]', '{}', '{}', '', '')\\"
|
|
35
|
+
showRowCount=\\"true\\"
|
|
36
|
+
headerVisible=\\"true\\"
|
|
37
|
+
threshold=\\"30\\"
|
|
38
|
+
p13nMode=\\"Sort,Column\\"
|
|
39
|
+
filter=\\"someFilterBarID\\"
|
|
40
|
+
paste=\\"API.onPaste($event, $controller)\\"
|
|
41
|
+
beforeExport=\\"API.onBeforeExport($event)\\"
|
|
42
|
+
multiSelectMode=\\"ClearAll\\"
|
|
43
|
+
showPasteButton=\\"false\\"
|
|
44
|
+
enablePaste=\\"false\\"
|
|
45
|
+
ns3:rowsBindingInfo=\\"{ ui5object: true, suspended: false, path: '/TestEntity', parameters: { $count: true, $select: 'ID', $$groupId: '$auto.Workers', $$updateGroupId: '$auto'}, events: { patchSent: '.editFlow.handlePatchSent', patchCompleted: '.editFlow.handlePatchCompleted', dataReceived: 'API.onInternalDataReceived'}}\\"
|
|
46
|
+
ns3:creationMode=\\"Inline\\"
|
|
47
|
+
ns3:showCreate=\\"true\\"
|
|
48
|
+
ns3:createAtEnd=\\"true\\"
|
|
49
|
+
ns3:displayModePropertyBinding=\\"true\\"
|
|
50
|
+
ns3:tableType=\\"ResponsiveTable\\"
|
|
51
|
+
ns3:targetCollectionPath=\\"/TestEntity\\"
|
|
52
|
+
ns3:entityType=\\"/TestEntity/\\"
|
|
53
|
+
ns3:metaPath=\\"/TestEntity\\"
|
|
54
|
+
ns3:requestGroupId=\\"$auto.Workers\\"
|
|
55
|
+
ns3:columns='{\\"ui5object\\":true,\\"customData\\":[{\\"key\\":\\"DataField::name\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/name\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"name\\",\\"relativePath\\":\\"name\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::description\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Description\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/description\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"description\\",\\"relativePath\\":\\"description\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::SoldToParty\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Sold-To Party\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/SoldToParty\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"SoldToParty\\",\\"relativePath\\":\\"SoldToParty\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false,\\"template\\":\\"{1} ({0})\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":10}},\\"propertyInfos\\":[\\"Property::SoldToParty\\",\\"description\\"]},{\\"key\\":\\"DataField::Rating\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating as Rating Indicator\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Rating\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":2,\\"delimiter\\":false,\\"template\\":\\"{0}/5\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":2,\\"precision\\":4}},\\"propertyInfos\\":[\\"Property::Rating\\",\\"@com.sap.vocabularies.UI.v1.DataPoint#Rating\\"]},{\\"key\\":\\"DataField::Progress\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Progress\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Progress\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Progress\\",\\"relativePath\\":\\"Progress\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":1,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":1,\\"precision\\":4}}},{\\"key\\":\\"DataField::Currency\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Currency\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Currency\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Currency\\",\\"relativePath\\":\\"Currency\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":5}}},{\\"key\\":\\"DataField::EmailAddress\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Email Address\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/EmailAddress\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"EmailAddress\\",\\"relativePath\\":\\"EmailAddress\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::OverallSDProcessStatus_Text\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Description\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/OverallSDProcessStatus_Text\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"OverallSDProcessStatus_Text\\",\\"relativePath\\":\\"OverallSDProcessStatus_Text\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":20}}},{\\"key\\":\\"DataField::IsActiveEntity\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"IsActiveEntity\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/IsActiveEntity\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"IsActiveEntity\\",\\"relativePath\\":\\"IsActiveEntity\\",\\"sortable\\":false,\\"isKey\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Boolean\\",\\"delimiter\\":false,\\"trueValue\\":\\"Yes\\",\\"falseValue\\":\\"No\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Boolean\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::HasActiveEntity\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"HasActiveEntity\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/HasActiveEntity\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"HasActiveEntity\\",\\"relativePath\\":\\"HasActiveEntity\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Boolean\\",\\"delimiter\\":false,\\"trueValue\\":\\"Yes\\",\\"falseValue\\":\\"No\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Boolean\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::HasDraftEntity\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"HasDraftEntity\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/HasDraftEntity\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"HasDraftEntity\\",\\"relativePath\\":\\"HasDraftEntity\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Boolean\\",\\"delimiter\\":false,\\"trueValue\\":\\"Yes\\",\\"falseValue\\":\\"No\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Boolean\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::DraftAdministrativeData_DraftUUID\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"DraftAdministrativeData_DraftUUID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/DraftAdministrativeData_DraftUUID\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"DraftAdministrativeData_DraftUUID\\",\\"relativePath\\":\\"DraftAdministrativeData_DraftUUID\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::ID\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"ID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/0\\",\\"availability\\":\\"Default\\",\\"name\\":\\"ID\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"ID\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::ID\\",\\"name\\"],\\"exportSettings\\":{\\"template\\":\\"{1}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4},\\"oConstraints\\":{}},\\"visualSettings\\":{\\"widthCalculation\\":{\\"excludeProperties\\":\\"Property::ID\\"}}},{\\"key\\":\\"DataField::ImageUrl\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Image\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/1\\",\\"availability\\":\\"Default\\",\\"name\\":\\"ImageUrl\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"ImageUrl\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::ImageUrl\\"],\\"exportSettings\\":{\\"template\\":\\"{0}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4,\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"DataFieldForAnnotation::Contact\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Contact\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/2\\",\\"availability\\":\\"Default\\",\\"name\\":\\"DataFieldForAnnotation::Contact\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"sortable\\":false,\\"propertyInfos\\":[\\"@com.sap.vocabularies.Communication.v1.Contact\\"],\\"exportSettings\\":{\\"template\\":\\"{0}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"exportContactProperty\\":\\"name\\",\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4,\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"DataFieldForAnnotation::FieldGroup::multipleFields\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Field Group\\",\\"groupLabel\\":null,\\"group\\":null,\\"FieldGroupHiddenExpressions\\":\\"true\\",\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/3\\",\\"availability\\":\\"Default\\",\\"name\\":\\"DataFieldForAnnotation::FieldGroup::multipleFields\\",\\"relativePath\\":\\"@com.sap.vocabularies.UI.v1.FieldGroup#multipleFields\\",\\"sortable\\":false,\\"propertyInfos\\":[\\"Property::SoldToParty\\",\\"description\\",\\"Property::Rating\\"],\\"exportSettings\\":{\\"template\\":\\"{1} ({0})\\\\n{2}\\",\\"wrap\\":true,\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}},{\\"key\\":\\"DataField::OverallSDProcessStatus\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Overall Status\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/4\\",\\"availability\\":\\"Default\\",\\"name\\":\\"OverallSDProcessStatus\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"OverallSDProcessStatus\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::OverallSDProcessStatus\\",\\"OverallSDProcessStatus_Text\\"],\\"exportSettings\\":{\\"template\\":\\"{1} ({0})\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4,\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"DataField::TotalNetAmount\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Net Amount\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/5\\",\\"availability\\":\\"Default\\",\\"name\\":\\"TotalNetAmount\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"TotalNetAmount\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::TotalNetAmount\\",\\"Currency\\"],\\"exportSettings\\":{\\"template\\":\\"{0} {1}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"Property::ID\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"ID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/ID\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::ID\\",\\"relativePath\\":\\"ID\\",\\"sortable\\":true,\\"isKey\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}},\\"textArrangement\\":{\\"textProperty\\":\\"name\\",\\"mode\\":\\"Description\\"}},{\\"key\\":\\"Property::ImageUrl\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Image\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/ImageUrl\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::ImageUrl\\",\\"relativePath\\":\\"ImageUrl\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::com.sap.vocabularies.Communication.v1.Contact\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.Communication.v1.Contact\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"relativePath\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"Property::SoldToParty\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Sold-To Party\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/SoldToParty\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::SoldToParty\\",\\"relativePath\\":\\"SoldToParty\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":10}},\\"textArrangement\\":{\\"textProperty\\":\\"description\\",\\"mode\\":\\"DescriptionValue\\"}},{\\"key\\":\\"Property::Rating\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating as Rating Indicator\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Rating\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":2,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":2,\\"precision\\":4}}},{\\"key\\":\\"Property::OverallSDProcessStatus\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Overall Status\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/OverallSDProcessStatus\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::OverallSDProcessStatus\\",\\"relativePath\\":\\"OverallSDProcessStatus\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":1}},\\"textArrangement\\":{\\"textProperty\\":\\"OverallSDProcessStatus_Text\\",\\"mode\\":\\"DescriptionValue\\"}},{\\"key\\":\\"Property::TotalNetAmount\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Net Amount\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/TotalNetAmount\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::TotalNetAmount\\",\\"relativePath\\":\\"TotalNetAmount\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":10,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":10,\\"precision\\":15}},\\"unit\\":\\"Currency\\"},{\\"key\\":\\"DataField::com.sap.vocabularies.UI.v1.DataPoint::Rating\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating as Rating Indicator\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":true,\\"exportSettings\\":{\\"template\\":\\"5\\"},\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}}]}'
|
|
56
|
+
ns3:aggregates='{\\"ui5object\\":true}'
|
|
57
|
+
ns3:segmentedButtonId=\\"abc-content::SegmentedButton::TemplateContentView\\"
|
|
58
|
+
ns3:enablePaste=\\"false\\"
|
|
59
|
+
ns3:operationAvailableMap='{\\"ui5object\\":true,\\"customData\\":\\"{}\\"}'
|
|
60
|
+
enableAutoColumnWidth=\\"true\\"
|
|
61
|
+
>
|
|
62
|
+
<mdc:dataStateIndicator>
|
|
63
|
+
<plugins:DataStateIndicator
|
|
64
|
+
xmlns:plugins=\\"sap.m.plugins\\"
|
|
65
|
+
filter=\\"API.dataStateIndicatorFilter\\"
|
|
66
|
+
enableFiltering=\\"true\\"
|
|
67
|
+
dataStateChange=\\"API.onDataStateChange\\"
|
|
68
|
+
/>
|
|
69
|
+
</mdc:dataStateIndicator>
|
|
70
|
+
<mdc:type>
|
|
71
|
+
<mdcTable:ResponsiveTableType
|
|
72
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
73
|
+
showDetailsButton=\\"true\\"
|
|
74
|
+
detailsButtonSetting=\\"{=['Low', 'Medium', 'None']}\\"
|
|
75
|
+
growingMode=\\"Scroll\\"
|
|
76
|
+
/>
|
|
77
|
+
</mdc:type>
|
|
78
|
+
<mdc:dependents>
|
|
79
|
+
<control:CommandExecution
|
|
80
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
81
|
+
execute=\\".editFlow.createDocument(\${$source>}.getParent().getRowBinding() || \${$source>}.getParent().data('rowsBindingInfo').path, { creationMode: 'Inline', createAtEnd: true, tableId: 'abc-content'})\\"
|
|
82
|
+
visible=\\"true\\"
|
|
83
|
+
enabled=\\"true\\"
|
|
84
|
+
command=\\"Create\\"
|
|
85
|
+
/>
|
|
86
|
+
<control:CommandExecution
|
|
87
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
88
|
+
execute=\\".editFlow.deleteMultipleDocuments(\${internal>deletableContexts}, { id: 'abc-content', entitySetName: 'TestEntity', numberOfSelectedContexts: \${internal>selectedContexts}.length, unSavedContexts: \${internal>unSavedContexts}, lockedContexts: \${internal>lockedContexts}, controlId: \${internal>controlId}})\\"
|
|
89
|
+
visible=\\"true\\"
|
|
90
|
+
enabled=\\"{= ((%{internal>deletableContexts} !== undefined && (%{internal>deletableContexts}.length) > 0) || (%{internal>unSavedContexts} !== undefined && (%{internal>unSavedContexts}.length) > 0)) && %{internal>deleteEnabled}}\\"
|
|
91
|
+
command=\\"DeleteEntry\\"
|
|
92
|
+
/>
|
|
93
|
+
<control:CommandExecution
|
|
94
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
95
|
+
execute=\\"TableRuntime.displayTableSettings\\"
|
|
96
|
+
command=\\"TableSettings\\"
|
|
97
|
+
/>
|
|
98
|
+
<!-- Persistence provider offers persisting personalization changes without variant management -->
|
|
99
|
+
<p13n:PersistenceProvider
|
|
100
|
+
xmlns:p13n=\\"sap.ui.mdc.p13n\\"
|
|
101
|
+
id=\\"abc-content::PersistenceProvider\\"
|
|
102
|
+
for=\\"abc-content\\"
|
|
103
|
+
/>
|
|
104
|
+
</mdc:dependents>
|
|
105
|
+
<mdc:actions>
|
|
106
|
+
<!-- TODO: This should be moved out of macros and should be added as a macro aggregation to macro table-->
|
|
107
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
108
|
+
<Button
|
|
109
|
+
xmlns=\\"sap.m\\"
|
|
110
|
+
ns1:id=\\"DataFieldForActionButton\\"
|
|
111
|
+
id=\\"abc-content::DataFieldForAction::sap.fe.test.JestService.ActionNavigation\\"
|
|
112
|
+
text=\\"Navigate via Action\\"
|
|
113
|
+
ariaHasPopup=\\"None\\"
|
|
114
|
+
press=\\".editFlow.invokeAction('sap.fe.test.JestService.ActionNavigation', { contexts: \${internal>selectedContexts}, bStaticAction: undefined, entitySetName: 'TestEntity', invocationGrouping: 'Isolated', controlId: 'abc-content', operationAvailableMap: '{}', model: \${$source>/}.getModel(), label: 'Navigate via Action', applicableContext: \${internal>dynamicActions/sap.fe.test.JestService.ActionNavigation/aApplicable/}, notApplicableContext: \${internal>dynamicActions/sap.fe.test.JestService.ActionNavigation/aNotApplicable/}, isNavigable: true, enableAutoScroll: undefined, defaultValuesExtensionFunction: undefined})\\"
|
|
115
|
+
type=\\"Transparent\\"
|
|
116
|
+
enabled=\\"{= \${internal>numberOfSelectedContexts} > 0 && \${internal>dynamicActions/sap.fe.test.JestService.ActionNavigation/bEnabled}}\\"
|
|
117
|
+
visible=\\"true\\"
|
|
118
|
+
>
|
|
119
|
+
</Button>
|
|
120
|
+
</mdcat:ActionToolbarAction>
|
|
121
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
122
|
+
<Button
|
|
123
|
+
xmlns=\\"sap.m\\"
|
|
124
|
+
ns1:id=\\"DataFieldForActionButton\\"
|
|
125
|
+
id=\\"abc-content::DataFieldForAction::sap.fe.test.JestService.MenuAction1\\"
|
|
126
|
+
text=\\"MenuLabel1\\"
|
|
127
|
+
ariaHasPopup=\\"None\\"
|
|
128
|
+
press=\\".editFlow.invokeAction('sap.fe.test.JestService.MenuAction1', { contexts: \${internal>selectedContexts}, bStaticAction: undefined, entitySetName: 'TestEntity', invocationGrouping: 'Isolated', controlId: 'abc-content', operationAvailableMap: '{}', model: \${$source>/}.getModel(), label: 'MenuLabel1', applicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction1/aApplicable/}, notApplicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction1/aNotApplicable/}, isNavigable: true, enableAutoScroll: undefined, defaultValuesExtensionFunction: undefined})\\"
|
|
129
|
+
type=\\"Transparent\\"
|
|
130
|
+
enabled=\\"{= \${internal>numberOfSelectedContexts} > 0 && \${internal>dynamicActions/sap.fe.test.JestService.MenuAction1/bEnabled}}\\"
|
|
131
|
+
visible=\\"true\\"
|
|
132
|
+
>
|
|
133
|
+
</Button>
|
|
134
|
+
</mdcat:ActionToolbarAction>
|
|
135
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
136
|
+
<Button
|
|
137
|
+
xmlns=\\"sap.m\\"
|
|
138
|
+
ns1:id=\\"DataFieldForActionButton\\"
|
|
139
|
+
id=\\"abc-content::DataFieldForAction::sap.fe.test.JestService.MenuAction2\\"
|
|
140
|
+
text=\\"MenuLabel2\\"
|
|
141
|
+
ariaHasPopup=\\"None\\"
|
|
142
|
+
press=\\".editFlow.invokeAction('sap.fe.test.JestService.MenuAction2', { contexts: \${internal>selectedContexts}, bStaticAction: undefined, entitySetName: 'TestEntity', invocationGrouping: 'Isolated', controlId: 'abc-content', operationAvailableMap: '{}', model: \${$source>/}.getModel(), label: 'MenuLabel2', applicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction2/aApplicable/}, notApplicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction2/aNotApplicable/}, isNavigable: true, enableAutoScroll: undefined, defaultValuesExtensionFunction: undefined})\\"
|
|
143
|
+
type=\\"Transparent\\"
|
|
144
|
+
enabled=\\"{= \${internal>numberOfSelectedContexts} > 0 && \${internal>dynamicActions/sap.fe.test.JestService.MenuAction2/bEnabled}}\\"
|
|
145
|
+
visible=\\"true\\"
|
|
146
|
+
>
|
|
147
|
+
</Button>
|
|
148
|
+
</mdcat:ActionToolbarAction>
|
|
149
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
150
|
+
<Button
|
|
151
|
+
xmlns=\\"sap.m\\"
|
|
152
|
+
ns1:id=\\"CreateButtonTemplate\\"
|
|
153
|
+
id=\\"abc-content::StandardAction::Create\\"
|
|
154
|
+
text=\\"Create\\"
|
|
155
|
+
press=\\"cmd:Create\\"
|
|
156
|
+
type=\\"Transparent\\"
|
|
157
|
+
visible=\\"true\\"
|
|
158
|
+
enabled=\\"true\\"
|
|
159
|
+
/>
|
|
160
|
+
</mdcat:ActionToolbarAction>
|
|
161
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
162
|
+
<Button
|
|
163
|
+
xmlns=\\"sap.m\\"
|
|
164
|
+
ns1:id=\\"DeleteButtonTemplate\\"
|
|
165
|
+
id=\\"abc-content::StandardAction::Delete\\"
|
|
166
|
+
text=\\"Delete\\"
|
|
167
|
+
press=\\"cmd:DeleteEntry\\"
|
|
168
|
+
type=\\"Transparent\\"
|
|
169
|
+
visible=\\"true\\"
|
|
170
|
+
enabled=\\"{= ((%{internal>deletableContexts} !== undefined && (%{internal>deletableContexts}.length) > 0) || (%{internal>unSavedContexts} !== undefined && (%{internal>unSavedContexts}.length) > 0)) && %{internal>deleteEnabled}}\\"
|
|
171
|
+
ariaHasPopup=\\"Dialog\\"
|
|
172
|
+
/>
|
|
173
|
+
</mdcat:ActionToolbarAction>
|
|
174
|
+
</mdc:actions>
|
|
175
|
+
<mdc:rowSettings>
|
|
176
|
+
<mdcTable:RowSettings
|
|
177
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
178
|
+
navigated=\\"{parts: [{value: 'navigatedRow'}, {path: 'internal>/deepestPath', targetType: 'any'}, {path: 'ID', targetType: 'any'}, {path: 'IsActiveEntity', targetType: 'any'}], formatter: 'sap.fe.core.formatters.TableFormatter'}\\"
|
|
179
|
+
highlight=\\"{parts: [{value: 'rowHighlighting'}, {value: 'None'}, {path: 'internal>filteredMessages', targetType: 'any'}, {value: 'false'}, {value: 'false'}, {value: 'false'}, {path: 'ID', targetType: 'any'}], formatter: 'sap.fe.core.formatters.TableFormatter'}\\"
|
|
180
|
+
/>
|
|
181
|
+
</mdc:rowSettings>
|
|
182
|
+
<mdc:columns>
|
|
183
|
+
<mdcTable:Column
|
|
184
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
185
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
186
|
+
id=\\"abc-content::C::ID\\"
|
|
187
|
+
header=\\"ID\\"
|
|
188
|
+
dataProperty=\\"ID\\"
|
|
189
|
+
hAlign=\\"Begin\\"
|
|
190
|
+
headerVisible=\\"true\\"
|
|
191
|
+
importance=\\"None\\"
|
|
192
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
193
|
+
>
|
|
194
|
+
<internalMacro:Field
|
|
195
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
196
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
197
|
+
editMode=\\"Display\\"
|
|
198
|
+
entitySet=\\"{collection>}\\"
|
|
199
|
+
dataField=\\"{dataField>}\\"
|
|
200
|
+
wrap=\\"true\\"
|
|
201
|
+
navigateAfterAction=\\"true\\"
|
|
202
|
+
>
|
|
203
|
+
<internalMacro:formatOptions
|
|
204
|
+
fieldMode=\\"\\"
|
|
205
|
+
textLinesEdit=\\"4\\"
|
|
206
|
+
textAlignMode=\\"Table\\"
|
|
207
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
208
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
209
|
+
isCurrencyAligned=\\"true\\"
|
|
210
|
+
/>
|
|
211
|
+
<internalMacro:customData>
|
|
212
|
+
<ns2:CustomData key=\\"extraProperty\\" value=\\"{ID}\\" />
|
|
213
|
+
</internalMacro:customData>
|
|
214
|
+
</internalMacro:Field>
|
|
215
|
+
</mdcTable:Column>
|
|
216
|
+
<mdcTable:Column
|
|
217
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
218
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
219
|
+
id=\\"abc-content::C::ImageUrl\\"
|
|
220
|
+
width=\\"7em\\"
|
|
221
|
+
header=\\"Image\\"
|
|
222
|
+
dataProperty=\\"ImageUrl\\"
|
|
223
|
+
hAlign=\\"Begin\\"
|
|
224
|
+
headerVisible=\\"true\\"
|
|
225
|
+
importance=\\"None\\"
|
|
226
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
227
|
+
>
|
|
228
|
+
<internalMacro:Field
|
|
229
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
230
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
231
|
+
editMode=\\"Display\\"
|
|
232
|
+
entitySet=\\"{collection>}\\"
|
|
233
|
+
dataField=\\"{dataField>}\\"
|
|
234
|
+
wrap=\\"true\\"
|
|
235
|
+
navigateAfterAction=\\"true\\"
|
|
236
|
+
>
|
|
237
|
+
<internalMacro:formatOptions
|
|
238
|
+
fieldMode=\\"\\"
|
|
239
|
+
textLinesEdit=\\"4\\"
|
|
240
|
+
textAlignMode=\\"Table\\"
|
|
241
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
242
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
243
|
+
isCurrencyAligned=\\"true\\"
|
|
244
|
+
/>
|
|
245
|
+
<internalMacro:customData>
|
|
246
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
247
|
+
</internalMacro:customData>
|
|
248
|
+
</internalMacro:Field>
|
|
249
|
+
</mdcTable:Column>
|
|
250
|
+
<mdcTable:Column
|
|
251
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
252
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
253
|
+
id=\\"abc-content::C::Contact\\"
|
|
254
|
+
header=\\"Contact\\"
|
|
255
|
+
dataProperty=\\"DataFieldForAnnotation::Contact\\"
|
|
256
|
+
hAlign=\\"Begin\\"
|
|
257
|
+
headerVisible=\\"true\\"
|
|
258
|
+
importance=\\"None\\"
|
|
259
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
260
|
+
>
|
|
261
|
+
<internalMacro:Field
|
|
262
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
263
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
264
|
+
editMode=\\"Display\\"
|
|
265
|
+
entitySet=\\"{collection>}\\"
|
|
266
|
+
dataField=\\"{dataField>}\\"
|
|
267
|
+
wrap=\\"true\\"
|
|
268
|
+
navigateAfterAction=\\"true\\"
|
|
269
|
+
>
|
|
270
|
+
<internalMacro:formatOptions
|
|
271
|
+
fieldMode=\\"\\"
|
|
272
|
+
textLinesEdit=\\"4\\"
|
|
273
|
+
textAlignMode=\\"Table\\"
|
|
274
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
275
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
276
|
+
isCurrencyAligned=\\"true\\"
|
|
277
|
+
/>
|
|
278
|
+
<internalMacro:customData>
|
|
279
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
280
|
+
</internalMacro:customData>
|
|
281
|
+
</internalMacro:Field>
|
|
282
|
+
</mdcTable:Column>
|
|
283
|
+
<mdcTable:Column
|
|
284
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
285
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
286
|
+
id=\\"abc-content::C::FieldGroup::multipleFields\\"
|
|
287
|
+
header=\\"Field Group\\"
|
|
288
|
+
dataProperty=\\"DataFieldForAnnotation::FieldGroup::multipleFields\\"
|
|
289
|
+
hAlign=\\"Begin\\"
|
|
290
|
+
headerVisible=\\"true\\"
|
|
291
|
+
importance=\\"None\\"
|
|
292
|
+
>
|
|
293
|
+
<VBox xmlns=\\"sap.m\\" visible=\\"true\\">
|
|
294
|
+
<internalMacro:Field
|
|
295
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
296
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
297
|
+
editMode=\\"Display\\"
|
|
298
|
+
entitySet=\\"{collection>}\\"
|
|
299
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
300
|
+
wrap=\\"true\\"
|
|
301
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
302
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::multipleFields\\"
|
|
303
|
+
navigateAfterAction=\\"true\\"
|
|
304
|
+
>
|
|
305
|
+
<internalMacro:formatOptions
|
|
306
|
+
fieldMode=\\"\\"
|
|
307
|
+
textLinesEdit=\\"4\\"
|
|
308
|
+
textAlignMode=\\"Table\\"
|
|
309
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
310
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
311
|
+
isCurrencyAligned=\\"true\\"
|
|
312
|
+
/>
|
|
313
|
+
<internalMacro:customData>
|
|
314
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
315
|
+
</internalMacro:customData>
|
|
316
|
+
</internalMacro:Field>
|
|
317
|
+
<internalMacro:Field
|
|
318
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
319
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
320
|
+
editMode=\\"Display\\"
|
|
321
|
+
entitySet=\\"{collection>}\\"
|
|
322
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
323
|
+
wrap=\\"true\\"
|
|
324
|
+
class=\\"\\"
|
|
325
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::multipleFields\\"
|
|
326
|
+
navigateAfterAction=\\"true\\"
|
|
327
|
+
>
|
|
328
|
+
<internalMacro:formatOptions
|
|
329
|
+
fieldMode=\\"\\"
|
|
330
|
+
textLinesEdit=\\"4\\"
|
|
331
|
+
textAlignMode=\\"Table\\"
|
|
332
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
333
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
334
|
+
isCurrencyAligned=\\"true\\"
|
|
335
|
+
/>
|
|
336
|
+
<internalMacro:customData>
|
|
337
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
338
|
+
</internalMacro:customData>
|
|
339
|
+
</internalMacro:Field>
|
|
340
|
+
</VBox>
|
|
341
|
+
</mdcTable:Column>
|
|
342
|
+
<mdcTable:Column
|
|
343
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
344
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
345
|
+
id=\\"abc-content::C::OverallSDProcessStatus\\"
|
|
346
|
+
header=\\"Overall Status\\"
|
|
347
|
+
dataProperty=\\"OverallSDProcessStatus\\"
|
|
348
|
+
hAlign=\\"Begin\\"
|
|
349
|
+
headerVisible=\\"true\\"
|
|
350
|
+
importance=\\"None\\"
|
|
351
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
352
|
+
>
|
|
353
|
+
<internalMacro:Field
|
|
354
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
355
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
356
|
+
editMode=\\"Display\\"
|
|
357
|
+
entitySet=\\"{collection>}\\"
|
|
358
|
+
dataField=\\"{dataField>}\\"
|
|
359
|
+
wrap=\\"true\\"
|
|
360
|
+
navigateAfterAction=\\"true\\"
|
|
361
|
+
>
|
|
362
|
+
<internalMacro:formatOptions
|
|
363
|
+
fieldMode=\\"\\"
|
|
364
|
+
textLinesEdit=\\"4\\"
|
|
365
|
+
textAlignMode=\\"Table\\"
|
|
366
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
367
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
368
|
+
isCurrencyAligned=\\"true\\"
|
|
369
|
+
/>
|
|
370
|
+
<internalMacro:customData>
|
|
371
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
372
|
+
</internalMacro:customData>
|
|
373
|
+
</internalMacro:Field>
|
|
374
|
+
</mdcTable:Column>
|
|
375
|
+
<mdcTable:Column
|
|
376
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
377
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
378
|
+
id=\\"abc-content::C::TotalNetAmount\\"
|
|
379
|
+
header=\\"Net Amount\\"
|
|
380
|
+
dataProperty=\\"TotalNetAmount\\"
|
|
381
|
+
hAlign=\\"Right\\"
|
|
382
|
+
headerVisible=\\"true\\"
|
|
383
|
+
importance=\\"None\\"
|
|
384
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
385
|
+
>
|
|
386
|
+
<internalMacro:Field
|
|
387
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
388
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
389
|
+
editMode=\\"Display\\"
|
|
390
|
+
entitySet=\\"{collection>}\\"
|
|
391
|
+
dataField=\\"{dataField>}\\"
|
|
392
|
+
wrap=\\"true\\"
|
|
393
|
+
navigateAfterAction=\\"true\\"
|
|
394
|
+
>
|
|
395
|
+
<internalMacro:formatOptions
|
|
396
|
+
fieldMode=\\"\\"
|
|
397
|
+
textLinesEdit=\\"4\\"
|
|
398
|
+
textAlignMode=\\"Table\\"
|
|
399
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
400
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
401
|
+
isCurrencyAligned=\\"true\\"
|
|
402
|
+
/>
|
|
403
|
+
<internalMacro:customData>
|
|
404
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
405
|
+
</internalMacro:customData>
|
|
406
|
+
</internalMacro:Field>
|
|
407
|
+
</mdcTable:Column>
|
|
408
|
+
</mdc:columns>
|
|
409
|
+
</mdc:Table>
|
|
410
|
+
</macro:TableAPI>
|
|
411
|
+
</root>
|
|
412
|
+
"
|
|
413
|
+
`;
|
|
414
|
+
|
|
415
|
+
exports[`Table Search Field Search Field is shown by default 1`] = `
|
|
416
|
+
"<root>
|
|
417
|
+
<macro:TableAPI
|
|
418
|
+
xmlns:macro=\\"sap.fe.macros\\"
|
|
419
|
+
id=\\"abc\\"
|
|
420
|
+
tableDefinition=\\"/\\"
|
|
421
|
+
metaPath=\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem\\"
|
|
422
|
+
contextPath=\\"/TestEntity\\"
|
|
423
|
+
readOnly=\\"true\\"
|
|
424
|
+
>
|
|
425
|
+
<macro:layoutData>
|
|
426
|
+
<FlexItemData xmlns=\\"sap.m\\" maxWidth=\\"100%\\" />
|
|
427
|
+
</macro:layoutData>
|
|
428
|
+
<!-- macrodata has to be an expression binding if it needs to be set as attribute via change handler during templating -->
|
|
429
|
+
<mdc:Table
|
|
430
|
+
xmlns:mdc=\\"sap.ui.mdc\\"
|
|
431
|
+
binding=\\"{internal>controls/abc-content}\\"
|
|
432
|
+
xmlns:ns1=\\"http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1\\"
|
|
433
|
+
ns1:id=\\"TableMacroFragment\\"
|
|
434
|
+
xmlns:ns2=\\"sap.ui.core\\"
|
|
435
|
+
ns2:require=\\"{TableRuntime: 'sap/fe/macros/table/TableRuntime', API: 'sap/fe/macros/TableAPI'}\\"
|
|
436
|
+
xmlns:ns3=\\"http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1\\"
|
|
437
|
+
ns3:kind=\\"EntitySet\\"
|
|
438
|
+
ns3:navigationPath=\\"\\"
|
|
439
|
+
id=\\"abc-content\\"
|
|
440
|
+
busyIndicatorDelay=\\"0\\"
|
|
441
|
+
enableExport=\\"true\\"
|
|
442
|
+
delegate='{\\"name\\":\\"sap/fe/macros/table/delegates/TableDelegate\\"}'
|
|
443
|
+
height=\\"100%\\"
|
|
444
|
+
autoBindOnInit=\\"false\\"
|
|
445
|
+
selectionMode=\\"Multi\\"
|
|
446
|
+
selectionChange=\\"TableRuntime.setContexts(\${$source>/}, 'undefined', '[object Object]', '{}', '{}', '', '')\\"
|
|
447
|
+
showRowCount=\\"true\\"
|
|
448
|
+
headerVisible=\\"true\\"
|
|
449
|
+
threshold=\\"30\\"
|
|
450
|
+
p13nMode=\\"Sort,Column\\"
|
|
451
|
+
filter=\\"abc-content::StandardAction::BasicSearch\\"
|
|
452
|
+
paste=\\"API.onPaste($event, $controller)\\"
|
|
453
|
+
beforeExport=\\"API.onBeforeExport($event)\\"
|
|
454
|
+
multiSelectMode=\\"ClearAll\\"
|
|
455
|
+
showPasteButton=\\"false\\"
|
|
456
|
+
enablePaste=\\"false\\"
|
|
457
|
+
ns3:rowsBindingInfo=\\"{ ui5object: true, suspended: false, path: '/TestEntity', parameters: { $count: true, $select: 'ID', $$groupId: '$auto.Workers', $$updateGroupId: '$auto'}, events: { patchSent: '.editFlow.handlePatchSent', patchCompleted: '.editFlow.handlePatchCompleted', dataReceived: 'API.onInternalDataReceived'}}\\"
|
|
458
|
+
ns3:creationMode=\\"Inline\\"
|
|
459
|
+
ns3:showCreate=\\"true\\"
|
|
460
|
+
ns3:createAtEnd=\\"true\\"
|
|
461
|
+
ns3:displayModePropertyBinding=\\"true\\"
|
|
462
|
+
ns3:tableType=\\"ResponsiveTable\\"
|
|
463
|
+
ns3:targetCollectionPath=\\"/TestEntity\\"
|
|
464
|
+
ns3:entityType=\\"/TestEntity/\\"
|
|
465
|
+
ns3:metaPath=\\"/TestEntity\\"
|
|
466
|
+
ns3:requestGroupId=\\"$auto.Workers\\"
|
|
467
|
+
ns3:columns='{\\"ui5object\\":true,\\"customData\\":[{\\"key\\":\\"DataField::name\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/name\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"name\\",\\"relativePath\\":\\"name\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::description\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Description\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/description\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"description\\",\\"relativePath\\":\\"description\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::SoldToParty\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Sold-To Party\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/SoldToParty\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"SoldToParty\\",\\"relativePath\\":\\"SoldToParty\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false,\\"template\\":\\"{1} ({0})\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":10}},\\"propertyInfos\\":[\\"Property::SoldToParty\\",\\"description\\"]},{\\"key\\":\\"DataField::Rating\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating as Rating Indicator\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Rating\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":2,\\"delimiter\\":false,\\"template\\":\\"{0}/5\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":2,\\"precision\\":4}},\\"propertyInfos\\":[\\"Property::Rating\\",\\"@com.sap.vocabularies.UI.v1.DataPoint#Rating\\"]},{\\"key\\":\\"DataField::Progress\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Progress\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Progress\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Progress\\",\\"relativePath\\":\\"Progress\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":1,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":1,\\"precision\\":4}}},{\\"key\\":\\"DataField::Currency\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Currency\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Currency\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Currency\\",\\"relativePath\\":\\"Currency\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":5}}},{\\"key\\":\\"DataField::EmailAddress\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Email Address\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/EmailAddress\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"EmailAddress\\",\\"relativePath\\":\\"EmailAddress\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::OverallSDProcessStatus_Text\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Description\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/OverallSDProcessStatus_Text\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"OverallSDProcessStatus_Text\\",\\"relativePath\\":\\"OverallSDProcessStatus_Text\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":20}}},{\\"key\\":\\"DataField::IsActiveEntity\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"IsActiveEntity\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/IsActiveEntity\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"IsActiveEntity\\",\\"relativePath\\":\\"IsActiveEntity\\",\\"sortable\\":false,\\"isKey\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Boolean\\",\\"delimiter\\":false,\\"trueValue\\":\\"Yes\\",\\"falseValue\\":\\"No\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Boolean\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::HasActiveEntity\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"HasActiveEntity\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/HasActiveEntity\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"HasActiveEntity\\",\\"relativePath\\":\\"HasActiveEntity\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Boolean\\",\\"delimiter\\":false,\\"trueValue\\":\\"Yes\\",\\"falseValue\\":\\"No\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Boolean\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::HasDraftEntity\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"HasDraftEntity\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/HasDraftEntity\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"HasDraftEntity\\",\\"relativePath\\":\\"HasDraftEntity\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Boolean\\",\\"delimiter\\":false,\\"trueValue\\":\\"Yes\\",\\"falseValue\\":\\"No\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Boolean\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::DraftAdministrativeData_DraftUUID\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"DraftAdministrativeData_DraftUUID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/DraftAdministrativeData_DraftUUID\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"DraftAdministrativeData_DraftUUID\\",\\"relativePath\\":\\"DraftAdministrativeData_DraftUUID\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::ID\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"ID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/0\\",\\"availability\\":\\"Default\\",\\"name\\":\\"ID\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"ID\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::ID\\",\\"name\\"],\\"exportSettings\\":{\\"template\\":\\"{1}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4},\\"oConstraints\\":{}},\\"visualSettings\\":{\\"widthCalculation\\":{\\"excludeProperties\\":\\"Property::ID\\"}}},{\\"key\\":\\"DataField::ImageUrl\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Image\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/1\\",\\"availability\\":\\"Default\\",\\"name\\":\\"ImageUrl\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"ImageUrl\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::ImageUrl\\"],\\"exportSettings\\":{\\"template\\":\\"{0}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4,\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"DataFieldForAnnotation::Contact\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Contact\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/2\\",\\"availability\\":\\"Default\\",\\"name\\":\\"DataFieldForAnnotation::Contact\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"sortable\\":false,\\"propertyInfos\\":[\\"@com.sap.vocabularies.Communication.v1.Contact\\"],\\"exportSettings\\":{\\"template\\":\\"{0}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"exportContactProperty\\":\\"name\\",\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4,\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"DataFieldForAnnotation::FieldGroup::multipleFields\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Field Group\\",\\"groupLabel\\":null,\\"group\\":null,\\"FieldGroupHiddenExpressions\\":\\"true\\",\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/3\\",\\"availability\\":\\"Default\\",\\"name\\":\\"DataFieldForAnnotation::FieldGroup::multipleFields\\",\\"relativePath\\":\\"@com.sap.vocabularies.UI.v1.FieldGroup#multipleFields\\",\\"sortable\\":false,\\"propertyInfos\\":[\\"Property::SoldToParty\\",\\"description\\",\\"Property::Rating\\"],\\"exportSettings\\":{\\"template\\":\\"{1} ({0})\\\\n{2}\\",\\"wrap\\":true,\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}},{\\"key\\":\\"DataField::OverallSDProcessStatus\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Overall Status\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/4\\",\\"availability\\":\\"Default\\",\\"name\\":\\"OverallSDProcessStatus\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"OverallSDProcessStatus\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::OverallSDProcessStatus\\",\\"OverallSDProcessStatus_Text\\"],\\"exportSettings\\":{\\"template\\":\\"{1} ({0})\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4,\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"DataField::TotalNetAmount\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Net Amount\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.LineItem/5\\",\\"availability\\":\\"Default\\",\\"name\\":\\"TotalNetAmount\\",\\"showDataFieldsLabel\\":false,\\"relativePath\\":\\"TotalNetAmount\\",\\"sortable\\":true,\\"propertyInfos\\":[\\"Property::TotalNetAmount\\",\\"Currency\\"],\\"exportSettings\\":{\\"template\\":\\"{0} {1}\\",\\"type\\":\\"String\\",\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{\\"textLinesEdit\\":4},\\"oConstraints\\":{}},\\"visualSettings\\":{}},{\\"key\\":\\"Property::ID\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"ID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/ID\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::ID\\",\\"relativePath\\":\\"ID\\",\\"sortable\\":true,\\"isKey\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}},\\"textArrangement\\":{\\"textProperty\\":\\"name\\",\\"mode\\":\\"Description\\"}},{\\"key\\":\\"Property::ImageUrl\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Image\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/ImageUrl\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::ImageUrl\\",\\"relativePath\\":\\"ImageUrl\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::com.sap.vocabularies.Communication.v1.Contact\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.Communication.v1.Contact\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"relativePath\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"Property::SoldToParty\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Sold-To Party\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/SoldToParty\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::SoldToParty\\",\\"relativePath\\":\\"SoldToParty\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":10}},\\"textArrangement\\":{\\"textProperty\\":\\"description\\",\\"mode\\":\\"DescriptionValue\\"}},{\\"key\\":\\"Property::Rating\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating as Rating Indicator\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/Rating\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":2,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":2,\\"precision\\":4}}},{\\"key\\":\\"Property::OverallSDProcessStatus\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Overall Status\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/OverallSDProcessStatus\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::OverallSDProcessStatus\\",\\"relativePath\\":\\"OverallSDProcessStatus\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":1}},\\"textArrangement\\":{\\"textProperty\\":\\"OverallSDProcessStatus_Text\\",\\"mode\\":\\"DescriptionValue\\"}},{\\"key\\":\\"Property::TotalNetAmount\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Net Amount\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/TotalNetAmount\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::TotalNetAmount\\",\\"relativePath\\":\\"TotalNetAmount\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":10,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":10,\\"precision\\":15}},\\"unit\\":\\"Currency\\"},{\\"key\\":\\"DataField::com.sap.vocabularies.UI.v1.DataPoint::Rating\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating as Rating Indicator\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/TestEntity/@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":true,\\"exportSettings\\":{\\"template\\":\\"5\\"},\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}}]}'
|
|
468
|
+
ns3:aggregates='{\\"ui5object\\":true}'
|
|
469
|
+
ns3:segmentedButtonId=\\"abc-content::SegmentedButton::TemplateContentView\\"
|
|
470
|
+
ns3:enablePaste=\\"false\\"
|
|
471
|
+
ns3:operationAvailableMap='{\\"ui5object\\":true,\\"customData\\":\\"{}\\"}'
|
|
472
|
+
enableAutoColumnWidth=\\"true\\"
|
|
473
|
+
>
|
|
474
|
+
<mdc:dataStateIndicator>
|
|
475
|
+
<plugins:DataStateIndicator
|
|
476
|
+
xmlns:plugins=\\"sap.m.plugins\\"
|
|
477
|
+
filter=\\"API.dataStateIndicatorFilter\\"
|
|
478
|
+
enableFiltering=\\"true\\"
|
|
479
|
+
dataStateChange=\\"API.onDataStateChange\\"
|
|
480
|
+
/>
|
|
481
|
+
</mdc:dataStateIndicator>
|
|
482
|
+
<mdc:type>
|
|
483
|
+
<mdcTable:ResponsiveTableType
|
|
484
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
485
|
+
showDetailsButton=\\"true\\"
|
|
486
|
+
detailsButtonSetting=\\"{=['Low', 'Medium', 'None']}\\"
|
|
487
|
+
growingMode=\\"Scroll\\"
|
|
488
|
+
/>
|
|
489
|
+
</mdc:type>
|
|
490
|
+
<mdc:dependents>
|
|
491
|
+
<control:CommandExecution
|
|
492
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
493
|
+
execute=\\".editFlow.createDocument(\${$source>}.getParent().getRowBinding() || \${$source>}.getParent().data('rowsBindingInfo').path, { creationMode: 'Inline', createAtEnd: true, tableId: 'abc-content'})\\"
|
|
494
|
+
visible=\\"true\\"
|
|
495
|
+
enabled=\\"true\\"
|
|
496
|
+
command=\\"Create\\"
|
|
497
|
+
/>
|
|
498
|
+
<control:CommandExecution
|
|
499
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
500
|
+
execute=\\".editFlow.deleteMultipleDocuments(\${internal>deletableContexts}, { id: 'abc-content', entitySetName: 'TestEntity', numberOfSelectedContexts: \${internal>selectedContexts}.length, unSavedContexts: \${internal>unSavedContexts}, lockedContexts: \${internal>lockedContexts}, controlId: \${internal>controlId}})\\"
|
|
501
|
+
visible=\\"true\\"
|
|
502
|
+
enabled=\\"{= ((%{internal>deletableContexts} !== undefined && (%{internal>deletableContexts}.length) > 0) || (%{internal>unSavedContexts} !== undefined && (%{internal>unSavedContexts}.length) > 0)) && %{internal>deleteEnabled}}\\"
|
|
503
|
+
command=\\"DeleteEntry\\"
|
|
504
|
+
/>
|
|
505
|
+
<control:CommandExecution
|
|
506
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
507
|
+
execute=\\"TableRuntime.displayTableSettings\\"
|
|
508
|
+
command=\\"TableSettings\\"
|
|
509
|
+
/>
|
|
510
|
+
<!-- Persistence provider offers persisting personalization changes without variant management -->
|
|
511
|
+
<p13n:PersistenceProvider
|
|
512
|
+
xmlns:p13n=\\"sap.ui.mdc.p13n\\"
|
|
513
|
+
id=\\"abc-content::PersistenceProvider\\"
|
|
514
|
+
for=\\"abc-content\\"
|
|
515
|
+
/>
|
|
516
|
+
</mdc:dependents>
|
|
517
|
+
<mdc:actions>
|
|
518
|
+
<!-- TODO: This should be moved out of macros and should be added as a macro aggregation to macro table-->
|
|
519
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
520
|
+
<Button
|
|
521
|
+
xmlns=\\"sap.m\\"
|
|
522
|
+
ns1:id=\\"DataFieldForActionButton\\"
|
|
523
|
+
id=\\"abc-content::DataFieldForAction::sap.fe.test.JestService.ActionNavigation\\"
|
|
524
|
+
text=\\"Navigate via Action\\"
|
|
525
|
+
ariaHasPopup=\\"None\\"
|
|
526
|
+
press=\\".editFlow.invokeAction('sap.fe.test.JestService.ActionNavigation', { contexts: \${internal>selectedContexts}, bStaticAction: undefined, entitySetName: 'TestEntity', invocationGrouping: 'Isolated', controlId: 'abc-content', operationAvailableMap: '{}', model: \${$source>/}.getModel(), label: 'Navigate via Action', applicableContext: \${internal>dynamicActions/sap.fe.test.JestService.ActionNavigation/aApplicable/}, notApplicableContext: \${internal>dynamicActions/sap.fe.test.JestService.ActionNavigation/aNotApplicable/}, isNavigable: true, enableAutoScroll: undefined, defaultValuesExtensionFunction: undefined})\\"
|
|
527
|
+
type=\\"Transparent\\"
|
|
528
|
+
enabled=\\"{= \${internal>numberOfSelectedContexts} > 0 && \${internal>dynamicActions/sap.fe.test.JestService.ActionNavigation/bEnabled}}\\"
|
|
529
|
+
visible=\\"true\\"
|
|
530
|
+
>
|
|
531
|
+
</Button>
|
|
532
|
+
</mdcat:ActionToolbarAction>
|
|
533
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
534
|
+
<Button
|
|
535
|
+
xmlns=\\"sap.m\\"
|
|
536
|
+
ns1:id=\\"DataFieldForActionButton\\"
|
|
537
|
+
id=\\"abc-content::DataFieldForAction::sap.fe.test.JestService.MenuAction1\\"
|
|
538
|
+
text=\\"MenuLabel1\\"
|
|
539
|
+
ariaHasPopup=\\"None\\"
|
|
540
|
+
press=\\".editFlow.invokeAction('sap.fe.test.JestService.MenuAction1', { contexts: \${internal>selectedContexts}, bStaticAction: undefined, entitySetName: 'TestEntity', invocationGrouping: 'Isolated', controlId: 'abc-content', operationAvailableMap: '{}', model: \${$source>/}.getModel(), label: 'MenuLabel1', applicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction1/aApplicable/}, notApplicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction1/aNotApplicable/}, isNavigable: true, enableAutoScroll: undefined, defaultValuesExtensionFunction: undefined})\\"
|
|
541
|
+
type=\\"Transparent\\"
|
|
542
|
+
enabled=\\"{= \${internal>numberOfSelectedContexts} > 0 && \${internal>dynamicActions/sap.fe.test.JestService.MenuAction1/bEnabled}}\\"
|
|
543
|
+
visible=\\"true\\"
|
|
544
|
+
>
|
|
545
|
+
</Button>
|
|
546
|
+
</mdcat:ActionToolbarAction>
|
|
547
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
548
|
+
<Button
|
|
549
|
+
xmlns=\\"sap.m\\"
|
|
550
|
+
ns1:id=\\"DataFieldForActionButton\\"
|
|
551
|
+
id=\\"abc-content::DataFieldForAction::sap.fe.test.JestService.MenuAction2\\"
|
|
552
|
+
text=\\"MenuLabel2\\"
|
|
553
|
+
ariaHasPopup=\\"None\\"
|
|
554
|
+
press=\\".editFlow.invokeAction('sap.fe.test.JestService.MenuAction2', { contexts: \${internal>selectedContexts}, bStaticAction: undefined, entitySetName: 'TestEntity', invocationGrouping: 'Isolated', controlId: 'abc-content', operationAvailableMap: '{}', model: \${$source>/}.getModel(), label: 'MenuLabel2', applicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction2/aApplicable/}, notApplicableContext: \${internal>dynamicActions/sap.fe.test.JestService.MenuAction2/aNotApplicable/}, isNavigable: true, enableAutoScroll: undefined, defaultValuesExtensionFunction: undefined})\\"
|
|
555
|
+
type=\\"Transparent\\"
|
|
556
|
+
enabled=\\"{= \${internal>numberOfSelectedContexts} > 0 && \${internal>dynamicActions/sap.fe.test.JestService.MenuAction2/bEnabled}}\\"
|
|
557
|
+
visible=\\"true\\"
|
|
558
|
+
>
|
|
559
|
+
</Button>
|
|
560
|
+
</mdcat:ActionToolbarAction>
|
|
561
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
562
|
+
<Button
|
|
563
|
+
xmlns=\\"sap.m\\"
|
|
564
|
+
ns1:id=\\"CreateButtonTemplate\\"
|
|
565
|
+
id=\\"abc-content::StandardAction::Create\\"
|
|
566
|
+
text=\\"Create\\"
|
|
567
|
+
press=\\"cmd:Create\\"
|
|
568
|
+
type=\\"Transparent\\"
|
|
569
|
+
visible=\\"true\\"
|
|
570
|
+
enabled=\\"true\\"
|
|
571
|
+
/>
|
|
572
|
+
</mdcat:ActionToolbarAction>
|
|
573
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
574
|
+
<Button
|
|
575
|
+
xmlns=\\"sap.m\\"
|
|
576
|
+
ns1:id=\\"DeleteButtonTemplate\\"
|
|
577
|
+
id=\\"abc-content::StandardAction::Delete\\"
|
|
578
|
+
text=\\"Delete\\"
|
|
579
|
+
press=\\"cmd:DeleteEntry\\"
|
|
580
|
+
type=\\"Transparent\\"
|
|
581
|
+
visible=\\"true\\"
|
|
582
|
+
enabled=\\"{= ((%{internal>deletableContexts} !== undefined && (%{internal>deletableContexts}.length) > 0) || (%{internal>unSavedContexts} !== undefined && (%{internal>unSavedContexts}.length) > 0)) && %{internal>deleteEnabled}}\\"
|
|
583
|
+
ariaHasPopup=\\"Dialog\\"
|
|
584
|
+
/>
|
|
585
|
+
</mdcat:ActionToolbarAction>
|
|
586
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
587
|
+
<macroTable:BasicSearch
|
|
588
|
+
xmlns:macroTable=\\"sap.fe.macros.table\\"
|
|
589
|
+
id=\\"abc-content::StandardAction::BasicSearch\\"
|
|
590
|
+
/>
|
|
591
|
+
</mdcat:ActionToolbarAction>
|
|
592
|
+
</mdc:actions>
|
|
593
|
+
<mdc:rowSettings>
|
|
594
|
+
<mdcTable:RowSettings
|
|
595
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
596
|
+
navigated=\\"{parts: [{value: 'navigatedRow'}, {path: 'internal>/deepestPath', targetType: 'any'}, {path: 'ID', targetType: 'any'}, {path: 'IsActiveEntity', targetType: 'any'}], formatter: 'sap.fe.core.formatters.TableFormatter'}\\"
|
|
597
|
+
highlight=\\"{parts: [{value: 'rowHighlighting'}, {value: 'None'}, {path: 'internal>filteredMessages', targetType: 'any'}, {value: 'false'}, {value: 'false'}, {value: 'false'}, {path: 'ID', targetType: 'any'}], formatter: 'sap.fe.core.formatters.TableFormatter'}\\"
|
|
598
|
+
/>
|
|
599
|
+
</mdc:rowSettings>
|
|
600
|
+
<mdc:columns>
|
|
601
|
+
<mdcTable:Column
|
|
602
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
603
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
604
|
+
id=\\"abc-content::C::ID\\"
|
|
605
|
+
header=\\"ID\\"
|
|
606
|
+
dataProperty=\\"ID\\"
|
|
607
|
+
hAlign=\\"Begin\\"
|
|
608
|
+
headerVisible=\\"true\\"
|
|
609
|
+
importance=\\"None\\"
|
|
610
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
611
|
+
>
|
|
612
|
+
<internalMacro:Field
|
|
613
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
614
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
615
|
+
editMode=\\"Display\\"
|
|
616
|
+
entitySet=\\"{collection>}\\"
|
|
617
|
+
dataField=\\"{dataField>}\\"
|
|
618
|
+
wrap=\\"true\\"
|
|
619
|
+
navigateAfterAction=\\"true\\"
|
|
620
|
+
>
|
|
621
|
+
<internalMacro:formatOptions
|
|
622
|
+
fieldMode=\\"\\"
|
|
623
|
+
textLinesEdit=\\"4\\"
|
|
624
|
+
textAlignMode=\\"Table\\"
|
|
625
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
626
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
627
|
+
isCurrencyAligned=\\"true\\"
|
|
628
|
+
/>
|
|
629
|
+
<internalMacro:customData>
|
|
630
|
+
<ns2:CustomData key=\\"extraProperty\\" value=\\"{ID}\\" />
|
|
631
|
+
</internalMacro:customData>
|
|
632
|
+
</internalMacro:Field>
|
|
633
|
+
</mdcTable:Column>
|
|
634
|
+
<mdcTable:Column
|
|
635
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
636
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
637
|
+
id=\\"abc-content::C::ImageUrl\\"
|
|
638
|
+
width=\\"7em\\"
|
|
639
|
+
header=\\"Image\\"
|
|
640
|
+
dataProperty=\\"ImageUrl\\"
|
|
641
|
+
hAlign=\\"Begin\\"
|
|
642
|
+
headerVisible=\\"true\\"
|
|
643
|
+
importance=\\"None\\"
|
|
644
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
645
|
+
>
|
|
646
|
+
<internalMacro:Field
|
|
647
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
648
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
649
|
+
editMode=\\"Display\\"
|
|
650
|
+
entitySet=\\"{collection>}\\"
|
|
651
|
+
dataField=\\"{dataField>}\\"
|
|
652
|
+
wrap=\\"true\\"
|
|
653
|
+
navigateAfterAction=\\"true\\"
|
|
654
|
+
>
|
|
655
|
+
<internalMacro:formatOptions
|
|
656
|
+
fieldMode=\\"\\"
|
|
657
|
+
textLinesEdit=\\"4\\"
|
|
658
|
+
textAlignMode=\\"Table\\"
|
|
659
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
660
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
661
|
+
isCurrencyAligned=\\"true\\"
|
|
662
|
+
/>
|
|
663
|
+
<internalMacro:customData>
|
|
664
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
665
|
+
</internalMacro:customData>
|
|
666
|
+
</internalMacro:Field>
|
|
667
|
+
</mdcTable:Column>
|
|
668
|
+
<mdcTable:Column
|
|
669
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
670
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
671
|
+
id=\\"abc-content::C::Contact\\"
|
|
672
|
+
header=\\"Contact\\"
|
|
673
|
+
dataProperty=\\"DataFieldForAnnotation::Contact\\"
|
|
674
|
+
hAlign=\\"Begin\\"
|
|
675
|
+
headerVisible=\\"true\\"
|
|
676
|
+
importance=\\"None\\"
|
|
677
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
678
|
+
>
|
|
679
|
+
<internalMacro:Field
|
|
680
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
681
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
682
|
+
editMode=\\"Display\\"
|
|
683
|
+
entitySet=\\"{collection>}\\"
|
|
684
|
+
dataField=\\"{dataField>}\\"
|
|
685
|
+
wrap=\\"true\\"
|
|
686
|
+
navigateAfterAction=\\"true\\"
|
|
687
|
+
>
|
|
688
|
+
<internalMacro:formatOptions
|
|
689
|
+
fieldMode=\\"\\"
|
|
690
|
+
textLinesEdit=\\"4\\"
|
|
691
|
+
textAlignMode=\\"Table\\"
|
|
692
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
693
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
694
|
+
isCurrencyAligned=\\"true\\"
|
|
695
|
+
/>
|
|
696
|
+
<internalMacro:customData>
|
|
697
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
698
|
+
</internalMacro:customData>
|
|
699
|
+
</internalMacro:Field>
|
|
700
|
+
</mdcTable:Column>
|
|
701
|
+
<mdcTable:Column
|
|
702
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
703
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
704
|
+
id=\\"abc-content::C::FieldGroup::multipleFields\\"
|
|
705
|
+
header=\\"Field Group\\"
|
|
706
|
+
dataProperty=\\"DataFieldForAnnotation::FieldGroup::multipleFields\\"
|
|
707
|
+
hAlign=\\"Begin\\"
|
|
708
|
+
headerVisible=\\"true\\"
|
|
709
|
+
importance=\\"None\\"
|
|
710
|
+
>
|
|
711
|
+
<VBox xmlns=\\"sap.m\\" visible=\\"true\\">
|
|
712
|
+
<internalMacro:Field
|
|
713
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
714
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
715
|
+
editMode=\\"Display\\"
|
|
716
|
+
entitySet=\\"{collection>}\\"
|
|
717
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
718
|
+
wrap=\\"true\\"
|
|
719
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
720
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::multipleFields\\"
|
|
721
|
+
navigateAfterAction=\\"true\\"
|
|
722
|
+
>
|
|
723
|
+
<internalMacro:formatOptions
|
|
724
|
+
fieldMode=\\"\\"
|
|
725
|
+
textLinesEdit=\\"4\\"
|
|
726
|
+
textAlignMode=\\"Table\\"
|
|
727
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
728
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
729
|
+
isCurrencyAligned=\\"true\\"
|
|
730
|
+
/>
|
|
731
|
+
<internalMacro:customData>
|
|
732
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
733
|
+
</internalMacro:customData>
|
|
734
|
+
</internalMacro:Field>
|
|
735
|
+
<internalMacro:Field
|
|
736
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
737
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
738
|
+
editMode=\\"Display\\"
|
|
739
|
+
entitySet=\\"{collection>}\\"
|
|
740
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
741
|
+
wrap=\\"true\\"
|
|
742
|
+
class=\\"\\"
|
|
743
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::multipleFields\\"
|
|
744
|
+
navigateAfterAction=\\"true\\"
|
|
745
|
+
>
|
|
746
|
+
<internalMacro:formatOptions
|
|
747
|
+
fieldMode=\\"\\"
|
|
748
|
+
textLinesEdit=\\"4\\"
|
|
749
|
+
textAlignMode=\\"Table\\"
|
|
750
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
751
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
752
|
+
isCurrencyAligned=\\"true\\"
|
|
753
|
+
/>
|
|
754
|
+
<internalMacro:customData>
|
|
755
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
756
|
+
</internalMacro:customData>
|
|
757
|
+
</internalMacro:Field>
|
|
758
|
+
</VBox>
|
|
759
|
+
</mdcTable:Column>
|
|
760
|
+
<mdcTable:Column
|
|
761
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
762
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
763
|
+
id=\\"abc-content::C::OverallSDProcessStatus\\"
|
|
764
|
+
header=\\"Overall Status\\"
|
|
765
|
+
dataProperty=\\"OverallSDProcessStatus\\"
|
|
766
|
+
hAlign=\\"Begin\\"
|
|
767
|
+
headerVisible=\\"true\\"
|
|
768
|
+
importance=\\"None\\"
|
|
769
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
770
|
+
>
|
|
771
|
+
<internalMacro:Field
|
|
772
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
773
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
774
|
+
editMode=\\"Display\\"
|
|
775
|
+
entitySet=\\"{collection>}\\"
|
|
776
|
+
dataField=\\"{dataField>}\\"
|
|
777
|
+
wrap=\\"true\\"
|
|
778
|
+
navigateAfterAction=\\"true\\"
|
|
779
|
+
>
|
|
780
|
+
<internalMacro:formatOptions
|
|
781
|
+
fieldMode=\\"\\"
|
|
782
|
+
textLinesEdit=\\"4\\"
|
|
783
|
+
textAlignMode=\\"Table\\"
|
|
784
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
785
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
786
|
+
isCurrencyAligned=\\"true\\"
|
|
787
|
+
/>
|
|
788
|
+
<internalMacro:customData>
|
|
789
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
790
|
+
</internalMacro:customData>
|
|
791
|
+
</internalMacro:Field>
|
|
792
|
+
</mdcTable:Column>
|
|
793
|
+
<mdcTable:Column
|
|
794
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
795
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
796
|
+
id=\\"abc-content::C::TotalNetAmount\\"
|
|
797
|
+
header=\\"Net Amount\\"
|
|
798
|
+
dataProperty=\\"TotalNetAmount\\"
|
|
799
|
+
hAlign=\\"Right\\"
|
|
800
|
+
headerVisible=\\"true\\"
|
|
801
|
+
importance=\\"None\\"
|
|
802
|
+
ns3:showDataFieldsLabel=\\"false\\"
|
|
803
|
+
>
|
|
804
|
+
<internalMacro:Field
|
|
805
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
806
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
807
|
+
editMode=\\"Display\\"
|
|
808
|
+
entitySet=\\"{collection>}\\"
|
|
809
|
+
dataField=\\"{dataField>}\\"
|
|
810
|
+
wrap=\\"true\\"
|
|
811
|
+
navigateAfterAction=\\"true\\"
|
|
812
|
+
>
|
|
813
|
+
<internalMacro:formatOptions
|
|
814
|
+
fieldMode=\\"\\"
|
|
815
|
+
textLinesEdit=\\"4\\"
|
|
816
|
+
textAlignMode=\\"Table\\"
|
|
817
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
818
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
819
|
+
isCurrencyAligned=\\"true\\"
|
|
820
|
+
/>
|
|
821
|
+
<internalMacro:customData>
|
|
822
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
823
|
+
</internalMacro:customData>
|
|
824
|
+
</internalMacro:Field>
|
|
825
|
+
</mdcTable:Column>
|
|
826
|
+
</mdc:columns>
|
|
827
|
+
</mdc:Table>
|
|
828
|
+
</macro:TableAPI>
|
|
829
|
+
</root>
|
|
830
|
+
"
|
|
831
|
+
`;
|
|
832
|
+
|
|
833
|
+
exports[`TableFieldLabel FieldGroup DataFields Label within a LineItem 1`] = `
|
|
834
|
+
"<root>
|
|
835
|
+
<macro:TableAPI
|
|
836
|
+
xmlns:macro=\\"sap.fe.macros\\"
|
|
837
|
+
id=\\"abc\\"
|
|
838
|
+
tableDefinition=\\"/\\"
|
|
839
|
+
metaPath=\\"/SalesOrderItem/@com.sap.vocabularies.UI.v1.LineItem\\"
|
|
840
|
+
contextPath=\\"/SalesOrderItem\\"
|
|
841
|
+
readOnly=\\"true\\"
|
|
842
|
+
>
|
|
843
|
+
<macro:layoutData>
|
|
844
|
+
<FlexItemData xmlns=\\"sap.m\\" maxWidth=\\"100%\\" />
|
|
845
|
+
</macro:layoutData>
|
|
846
|
+
<!-- macrodata has to be an expression binding if it needs to be set as attribute via change handler during templating -->
|
|
847
|
+
<mdc:Table
|
|
848
|
+
xmlns:mdc=\\"sap.ui.mdc\\"
|
|
849
|
+
binding=\\"{internal>controls/abc-content}\\"
|
|
850
|
+
xmlns:ns1=\\"http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1\\"
|
|
851
|
+
ns1:id=\\"TableMacroFragment\\"
|
|
852
|
+
xmlns:ns2=\\"sap.ui.core\\"
|
|
853
|
+
ns2:require=\\"{TableRuntime: 'sap/fe/macros/table/TableRuntime', API: 'sap/fe/macros/TableAPI'}\\"
|
|
854
|
+
xmlns:ns3=\\"http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1\\"
|
|
855
|
+
ns3:kind=\\"EntitySet\\"
|
|
856
|
+
ns3:navigationPath=\\"\\"
|
|
857
|
+
id=\\"abc-content\\"
|
|
858
|
+
busyIndicatorDelay=\\"0\\"
|
|
859
|
+
enableExport=\\"true\\"
|
|
860
|
+
delegate='{\\"name\\":\\"sap/fe/macros/table/delegates/TableDelegate\\"}'
|
|
861
|
+
height=\\"100%\\"
|
|
862
|
+
autoBindOnInit=\\"false\\"
|
|
863
|
+
selectionMode=\\"Multi\\"
|
|
864
|
+
selectionChange=\\"TableRuntime.setContexts(\${$source>/}, 'undefined', 'undefined', '{}', '{}', '', '')\\"
|
|
865
|
+
showRowCount=\\"true\\"
|
|
866
|
+
headerVisible=\\"true\\"
|
|
867
|
+
threshold=\\"30\\"
|
|
868
|
+
p13nMode=\\"Sort,Column\\"
|
|
869
|
+
filter=\\"abc-content::StandardAction::BasicSearch\\"
|
|
870
|
+
paste=\\"API.onPaste($event, $controller)\\"
|
|
871
|
+
beforeExport=\\"API.onBeforeExport($event)\\"
|
|
872
|
+
multiSelectMode=\\"ClearAll\\"
|
|
873
|
+
showPasteButton=\\"false\\"
|
|
874
|
+
enablePaste=\\"false\\"
|
|
875
|
+
ns3:rowsBindingInfo=\\"{ ui5object: true, suspended: false, path: '/SalesOrderItem', parameters: { $count: true, $$groupId: '$auto.Workers', $$updateGroupId: '$auto'}, events: { patchSent: '.editFlow.handlePatchSent', patchCompleted: '.editFlow.handlePatchCompleted', dataReceived: 'API.onInternalDataReceived'}}\\"
|
|
876
|
+
ns3:creationMode=\\"Inline\\"
|
|
877
|
+
ns3:showCreate=\\"true\\"
|
|
878
|
+
ns3:createAtEnd=\\"true\\"
|
|
879
|
+
ns3:displayModePropertyBinding=\\"true\\"
|
|
880
|
+
ns3:tableType=\\"ResponsiveTable\\"
|
|
881
|
+
ns3:targetCollectionPath=\\"/SalesOrderItem\\"
|
|
882
|
+
ns3:entityType=\\"/SalesOrderItem/\\"
|
|
883
|
+
ns3:metaPath=\\"/SalesOrderItem\\"
|
|
884
|
+
ns3:requestGroupId=\\"$auto.Workers\\"
|
|
885
|
+
ns3:columns='{\\"ui5object\\":true,\\"customData\\":[{\\"key\\":\\"DataField::ID\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"ID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/ID\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"ID\\",\\"relativePath\\":\\"ID\\",\\"sortable\\":true,\\"isKey\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Int32\\",\\"oFormatOptions\\":{\\"parseAsString\\":false,\\"emptyString\\":\\"\\"},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::name\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/name\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"name\\",\\"relativePath\\":\\"name\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::Material\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Property Label\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/Material\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Material\\",\\"relativePath\\":\\"Material\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::amount1\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"amount1\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/amount1\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"amount1\\",\\"relativePath\\":\\"amount1\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"delimiter\\":true,\\"template\\":\\"{0} {1}\\"},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Int64\\",\\"oFormatOptions\\":{\\"parseAsString\\":false,\\"emptyString\\":\\"\\"},\\"oConstraints\\":{}},\\"propertyInfos\\":[\\"Property::amount1\\",\\"unit1\\"]},{\\"key\\":\\"DataField::unit1\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"unit1\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/unit1\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"unit1\\",\\"relativePath\\":\\"unit1\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{}}},{\\"key\\":\\"DataField::BusinessPartner\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Business Partner\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/BusinessPartner\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"BusinessPartner\\",\\"relativePath\\":\\"BusinessPartner\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":10}}},{\\"key\\":\\"DataField::Progress\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Progress\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/Progress\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Progress\\",\\"relativePath\\":\\"Progress\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":1,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":1,\\"precision\\":4}}},{\\"key\\":\\"DataField::Rating\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/Rating\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"scale\\":1,\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Decimal\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{\\"scale\\":1,\\"precision\\":4}}},{\\"key\\":\\"DataField::FullName\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Full Name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/FullName\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"FullName\\",\\"relativePath\\":\\"FullName\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":80}}},{\\"key\\":\\"DataField::ReferencedSalesOrderID\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"ReferencedSalesOrderID\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/ReferencedSalesOrderID\\",\\"availability\\":\\"Adaptation\\",\\"name\\":\\"ReferencedSalesOrderID\\",\\"relativePath\\":\\"ReferencedSalesOrderID\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Guid\\",\\"oFormatOptions\\":{},\\"oConstraints\\":{}}},{\\"key\\":\\"DataFieldForAnnotation::FieldGroup::myFieldGroup\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"My Field Group\\",\\"groupLabel\\":null,\\"group\\":null,\\"FieldGroupHiddenExpressions\\":\\"true\\",\\"annotationPath\\":\\"/SalesOrderItem/@com.sap.vocabularies.UI.v1.LineItem/0\\",\\"availability\\":\\"Default\\",\\"name\\":\\"DataFieldForAnnotation::FieldGroup::myFieldGroup\\",\\"showDataFieldsLabel\\":true,\\"relativePath\\":\\"@com.sap.vocabularies.UI.v1.FieldGroup#myFieldGroup\\",\\"sortable\\":false,\\"propertyInfos\\":[\\"Material\\",\\"Progress\\",\\"@com.sap.vocabularies.UI.v1.DataPoint#Progress\\",\\"Rating\\",\\"@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"@com.sap.vocabularies.Communication.v1.Contact\\"],\\"exportSettings\\":{\\"template\\":\\"{0}\\\\n{0}\\\\n{0}\\\\n{0}\\\\n{1}/100\\\\n{3}/5\\\\n{0}\\\\n{0}\\\\n{5}\\",\\"wrap\\":true,\\"delimiter\\":false},\\"isNavigable\\":true,\\"formatOptions\\":{\\"textLinesEdit\\":4},\\"exportContactProperty\\":\\"FullName\\",\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}},{\\"key\\":\\"DataField::com.sap.vocabularies.UI.v1.DataPoint::Progress\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"Progress\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/@com.sap.vocabularies.UI.v1.DataPoint#Progress\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.UI.v1.DataPoint#Progress\\",\\"relativePath\\":\\"Progress\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":true,\\"exportSettings\\":{\\"template\\":\\"100\\"},\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}},{\\"key\\":\\"DataField::com.sap.vocabularies.UI.v1.DataPoint::Rating\\",\\"isGroupable\\":false,\\"type\\":\\"Annotation\\",\\"label\\":\\"Rating\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.UI.v1.DataPoint#Rating\\",\\"relativePath\\":\\"Rating\\",\\"sortable\\":false,\\"isDataPointFakeTargetProperty\\":true,\\"exportSettings\\":{\\"template\\":\\"5\\"},\\"caseSensitive\\":true,\\"visualSettings\\":{\\"widthCalculation\\":null}},{\\"key\\":\\"DataField::com.sap.vocabularies.Communication.v1.Contact\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"Full Name\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/@com.sap.vocabularies.Communication.v1.Contact\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"relativePath\\":\\"@com.sap.vocabularies.Communication.v1.Contact\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"String\\",\\"delimiter\\":false},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.String\\",\\"oFormatOptions\\":{\\"parseKeepsEmptyString\\":true},\\"oConstraints\\":{\\"maxLength\\":80}}},{\\"key\\":\\"Property::amount1\\",\\"type\\":\\"Annotation\\",\\"label\\":\\"amount1\\",\\"groupLabel\\":null,\\"group\\":null,\\"annotationPath\\":\\"/SalesOrderItem/amount1\\",\\"availability\\":\\"Hidden\\",\\"name\\":\\"Property::amount1\\",\\"relativePath\\":\\"amount1\\",\\"sortable\\":true,\\"isDataPointFakeTargetProperty\\":false,\\"exportSettings\\":{\\"type\\":\\"Number\\",\\"delimiter\\":true},\\"caseSensitive\\":true,\\"typeConfig\\":{\\"className\\":\\"Edm.Int64\\",\\"oFormatOptions\\":{\\"parseAsString\\":false,\\"emptyString\\":\\"\\"},\\"oConstraints\\":{}},\\"unit\\":\\"unit1\\"}]}'
|
|
886
|
+
ns3:aggregates='{\\"ui5object\\":true}'
|
|
887
|
+
ns3:segmentedButtonId=\\"abc-content::SegmentedButton::TemplateContentView\\"
|
|
888
|
+
ns3:enablePaste=\\"false\\"
|
|
889
|
+
ns3:operationAvailableMap='{\\"ui5object\\":true,\\"customData\\":\\"{}\\"}'
|
|
890
|
+
enableAutoColumnWidth=\\"true\\"
|
|
891
|
+
>
|
|
892
|
+
<mdc:dataStateIndicator>
|
|
893
|
+
<plugins:DataStateIndicator
|
|
894
|
+
xmlns:plugins=\\"sap.m.plugins\\"
|
|
895
|
+
filter=\\"API.dataStateIndicatorFilter\\"
|
|
896
|
+
enableFiltering=\\"true\\"
|
|
897
|
+
dataStateChange=\\"API.onDataStateChange\\"
|
|
898
|
+
/>
|
|
899
|
+
</mdc:dataStateIndicator>
|
|
900
|
+
<mdc:type>
|
|
901
|
+
<mdcTable:ResponsiveTableType
|
|
902
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
903
|
+
showDetailsButton=\\"true\\"
|
|
904
|
+
detailsButtonSetting=\\"{=['Low', 'Medium', 'None']}\\"
|
|
905
|
+
growingMode=\\"Scroll\\"
|
|
906
|
+
/>
|
|
907
|
+
</mdc:type>
|
|
908
|
+
<mdc:dependents>
|
|
909
|
+
<control:CommandExecution
|
|
910
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
911
|
+
execute=\\".editFlow.createDocument(\${$source>}.getParent().getRowBinding() || \${$source>}.getParent().data('rowsBindingInfo').path, { creationMode: 'Inline', createAtEnd: true, tableId: 'abc-content'})\\"
|
|
912
|
+
visible=\\"true\\"
|
|
913
|
+
enabled=\\"true\\"
|
|
914
|
+
command=\\"Create\\"
|
|
915
|
+
/>
|
|
916
|
+
<control:CommandExecution
|
|
917
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
918
|
+
execute=\\".editFlow.deleteMultipleDocuments(\${internal>deletableContexts}, { id: 'abc-content', entitySetName: 'SalesOrderItem', numberOfSelectedContexts: \${internal>selectedContexts}.length, unSavedContexts: \${internal>unSavedContexts}, lockedContexts: \${internal>lockedContexts}, controlId: \${internal>controlId}})\\"
|
|
919
|
+
visible=\\"true\\"
|
|
920
|
+
enabled=\\"{= ((%{internal>deletableContexts} !== undefined && (%{internal>deletableContexts}.length) > 0) || (%{internal>unSavedContexts} !== undefined && (%{internal>unSavedContexts}.length) > 0)) && %{internal>deleteEnabled}}\\"
|
|
921
|
+
command=\\"DeleteEntry\\"
|
|
922
|
+
/>
|
|
923
|
+
<control:CommandExecution
|
|
924
|
+
xmlns:control=\\"sap.fe.core.controls\\"
|
|
925
|
+
execute=\\"TableRuntime.displayTableSettings\\"
|
|
926
|
+
command=\\"TableSettings\\"
|
|
927
|
+
/>
|
|
928
|
+
<!-- Persistence provider offers persisting personalization changes without variant management -->
|
|
929
|
+
<p13n:PersistenceProvider
|
|
930
|
+
xmlns:p13n=\\"sap.ui.mdc.p13n\\"
|
|
931
|
+
id=\\"abc-content::PersistenceProvider\\"
|
|
932
|
+
for=\\"abc-content\\"
|
|
933
|
+
/>
|
|
934
|
+
</mdc:dependents>
|
|
935
|
+
<mdc:actions>
|
|
936
|
+
<!-- TODO: This should be moved out of macros and should be added as a macro aggregation to macro table-->
|
|
937
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
938
|
+
<Button
|
|
939
|
+
xmlns=\\"sap.m\\"
|
|
940
|
+
ns1:id=\\"DeleteButtonTemplate\\"
|
|
941
|
+
id=\\"abc-content::StandardAction::Delete\\"
|
|
942
|
+
text=\\"Delete\\"
|
|
943
|
+
press=\\"cmd:DeleteEntry\\"
|
|
944
|
+
type=\\"Transparent\\"
|
|
945
|
+
visible=\\"true\\"
|
|
946
|
+
enabled=\\"{= ((%{internal>deletableContexts} !== undefined && (%{internal>deletableContexts}.length) > 0) || (%{internal>unSavedContexts} !== undefined && (%{internal>unSavedContexts}.length) > 0)) && %{internal>deleteEnabled}}\\"
|
|
947
|
+
ariaHasPopup=\\"Dialog\\"
|
|
948
|
+
/>
|
|
949
|
+
</mdcat:ActionToolbarAction>
|
|
950
|
+
<mdcat:ActionToolbarAction xmlns:mdcat=\\"sap.ui.mdc.actiontoolbar\\">
|
|
951
|
+
<macroTable:BasicSearch
|
|
952
|
+
xmlns:macroTable=\\"sap.fe.macros.table\\"
|
|
953
|
+
id=\\"abc-content::StandardAction::BasicSearch\\"
|
|
954
|
+
/>
|
|
955
|
+
</mdcat:ActionToolbarAction>
|
|
956
|
+
</mdc:actions>
|
|
957
|
+
<mdc:rowSettings>
|
|
958
|
+
<mdcTable:RowSettings
|
|
959
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
960
|
+
navigated=\\"{parts: [{value: 'navigatedRow'}, {path: 'internal>/deepestPath', targetType: 'any'}, {path: 'ID', targetType: 'any'}], formatter: 'sap.fe.core.formatters.TableFormatter'}\\"
|
|
961
|
+
highlight=\\"{parts: [{value: 'rowHighlighting'}, {value: 'None'}, {path: 'internal>filteredMessages', targetType: 'any'}, {value: 'false'}, {value: 'false'}, {value: 'false'}, {path: 'ID', targetType: 'any'}], formatter: 'sap.fe.core.formatters.TableFormatter'}\\"
|
|
962
|
+
/>
|
|
963
|
+
</mdc:rowSettings>
|
|
964
|
+
<mdc:columns>
|
|
965
|
+
<mdcTable:Column
|
|
966
|
+
xmlns:mdcTable=\\"sap.ui.mdc.table\\"
|
|
967
|
+
ns1:id=\\"MDCTableColumn\\"
|
|
968
|
+
id=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
969
|
+
header=\\"My Field Group\\"
|
|
970
|
+
dataProperty=\\"DataFieldForAnnotation::FieldGroup::myFieldGroup\\"
|
|
971
|
+
hAlign=\\"Begin\\"
|
|
972
|
+
headerVisible=\\"true\\"
|
|
973
|
+
importance=\\"None\\"
|
|
974
|
+
ns3:showDataFieldsLabel=\\"true\\"
|
|
975
|
+
>
|
|
976
|
+
<VBox xmlns=\\"sap.m\\" visible=\\"true\\">
|
|
977
|
+
<HBox
|
|
978
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
979
|
+
>
|
|
980
|
+
<Label
|
|
981
|
+
text=\\"DataFieldForAnnotation Label:\\"
|
|
982
|
+
class=\\"sapUiTinyMarginEnd\\"
|
|
983
|
+
/>
|
|
984
|
+
<VBox>
|
|
985
|
+
<layoutData>
|
|
986
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
987
|
+
</layoutData>
|
|
988
|
+
<internalMacro:Field
|
|
989
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
990
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
991
|
+
editMode=\\"Display\\"
|
|
992
|
+
entitySet=\\"{collection>}\\"
|
|
993
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
994
|
+
textAlign=\\"Left\\"
|
|
995
|
+
wrap=\\"true\\"
|
|
996
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
997
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
998
|
+
navigateAfterAction=\\"true\\"
|
|
999
|
+
>
|
|
1000
|
+
<internalMacro:formatOptions
|
|
1001
|
+
textLinesEdit=\\"4\\"
|
|
1002
|
+
textAlignMode=\\"Table\\"
|
|
1003
|
+
showEmptyIndicator=\\"true\\"
|
|
1004
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1005
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1006
|
+
isCurrencyAligned=\\"true\\"
|
|
1007
|
+
/>
|
|
1008
|
+
<internalMacro:customData>
|
|
1009
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1010
|
+
</internalMacro:customData>
|
|
1011
|
+
</internalMacro:Field>
|
|
1012
|
+
</VBox>
|
|
1013
|
+
</HBox>
|
|
1014
|
+
<internalMacro:Field
|
|
1015
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1016
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1017
|
+
editMode=\\"Display\\"
|
|
1018
|
+
entitySet=\\"{collection>}\\"
|
|
1019
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1020
|
+
wrap=\\"true\\"
|
|
1021
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1022
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1023
|
+
navigateAfterAction=\\"true\\"
|
|
1024
|
+
>
|
|
1025
|
+
<internalMacro:formatOptions
|
|
1026
|
+
fieldMode=\\"\\"
|
|
1027
|
+
textLinesEdit=\\"4\\"
|
|
1028
|
+
textAlignMode=\\"Table\\"
|
|
1029
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1030
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1031
|
+
isCurrencyAligned=\\"true\\"
|
|
1032
|
+
/>
|
|
1033
|
+
<internalMacro:customData>
|
|
1034
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1035
|
+
</internalMacro:customData>
|
|
1036
|
+
</internalMacro:Field>
|
|
1037
|
+
<HBox
|
|
1038
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1039
|
+
>
|
|
1040
|
+
<Label text=\\"DataPoint Title:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1041
|
+
<VBox>
|
|
1042
|
+
<layoutData>
|
|
1043
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1044
|
+
</layoutData>
|
|
1045
|
+
<internalMacro:Field
|
|
1046
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1047
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1048
|
+
editMode=\\"Display\\"
|
|
1049
|
+
entitySet=\\"{collection>}\\"
|
|
1050
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1051
|
+
textAlign=\\"Left\\"
|
|
1052
|
+
wrap=\\"true\\"
|
|
1053
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1054
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1055
|
+
navigateAfterAction=\\"true\\"
|
|
1056
|
+
>
|
|
1057
|
+
<internalMacro:formatOptions
|
|
1058
|
+
textLinesEdit=\\"4\\"
|
|
1059
|
+
textAlignMode=\\"Table\\"
|
|
1060
|
+
showEmptyIndicator=\\"true\\"
|
|
1061
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1062
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1063
|
+
isCurrencyAligned=\\"true\\"
|
|
1064
|
+
/>
|
|
1065
|
+
<internalMacro:customData>
|
|
1066
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1067
|
+
</internalMacro:customData>
|
|
1068
|
+
</internalMacro:Field>
|
|
1069
|
+
</VBox>
|
|
1070
|
+
</HBox>
|
|
1071
|
+
<HBox
|
|
1072
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1073
|
+
>
|
|
1074
|
+
<Label text=\\"Property Label:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1075
|
+
<VBox>
|
|
1076
|
+
<layoutData>
|
|
1077
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1078
|
+
</layoutData>
|
|
1079
|
+
<internalMacro:Field
|
|
1080
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1081
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1082
|
+
editMode=\\"Display\\"
|
|
1083
|
+
entitySet=\\"{collection>}\\"
|
|
1084
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1085
|
+
textAlign=\\"Left\\"
|
|
1086
|
+
wrap=\\"true\\"
|
|
1087
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1088
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1089
|
+
navigateAfterAction=\\"true\\"
|
|
1090
|
+
>
|
|
1091
|
+
<internalMacro:formatOptions
|
|
1092
|
+
textLinesEdit=\\"4\\"
|
|
1093
|
+
textAlignMode=\\"Table\\"
|
|
1094
|
+
showEmptyIndicator=\\"true\\"
|
|
1095
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1096
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1097
|
+
isCurrencyAligned=\\"true\\"
|
|
1098
|
+
/>
|
|
1099
|
+
<internalMacro:customData>
|
|
1100
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1101
|
+
</internalMacro:customData>
|
|
1102
|
+
</internalMacro:Field>
|
|
1103
|
+
</VBox>
|
|
1104
|
+
</HBox>
|
|
1105
|
+
<HBox alignItems=\\"Center\\">
|
|
1106
|
+
<Label text=\\"Progress:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1107
|
+
<VBox>
|
|
1108
|
+
<layoutData>
|
|
1109
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1110
|
+
</layoutData>
|
|
1111
|
+
<internalMacro:Field
|
|
1112
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1113
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1114
|
+
editMode=\\"Display\\"
|
|
1115
|
+
entitySet=\\"{collection>}\\"
|
|
1116
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1117
|
+
textAlign=\\"Left\\"
|
|
1118
|
+
wrap=\\"true\\"
|
|
1119
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1120
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1121
|
+
navigateAfterAction=\\"true\\"
|
|
1122
|
+
>
|
|
1123
|
+
<internalMacro:formatOptions
|
|
1124
|
+
textLinesEdit=\\"4\\"
|
|
1125
|
+
textAlignMode=\\"Table\\"
|
|
1126
|
+
showEmptyIndicator=\\"true\\"
|
|
1127
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1128
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1129
|
+
isCurrencyAligned=\\"true\\"
|
|
1130
|
+
/>
|
|
1131
|
+
<internalMacro:customData>
|
|
1132
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1133
|
+
</internalMacro:customData>
|
|
1134
|
+
</internalMacro:Field>
|
|
1135
|
+
</VBox>
|
|
1136
|
+
</HBox>
|
|
1137
|
+
<HBox alignItems=\\"Center\\">
|
|
1138
|
+
<Label text=\\"Rating:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1139
|
+
<VBox>
|
|
1140
|
+
<layoutData>
|
|
1141
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1142
|
+
</layoutData>
|
|
1143
|
+
<internalMacro:Field
|
|
1144
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1145
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1146
|
+
editMode=\\"Display\\"
|
|
1147
|
+
entitySet=\\"{collection>}\\"
|
|
1148
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1149
|
+
textAlign=\\"Left\\"
|
|
1150
|
+
wrap=\\"true\\"
|
|
1151
|
+
class=\\"sapUiNoMarginTop\\"
|
|
1152
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1153
|
+
navigateAfterAction=\\"true\\"
|
|
1154
|
+
>
|
|
1155
|
+
<internalMacro:formatOptions
|
|
1156
|
+
textLinesEdit=\\"4\\"
|
|
1157
|
+
textAlignMode=\\"Table\\"
|
|
1158
|
+
showEmptyIndicator=\\"true\\"
|
|
1159
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1160
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1161
|
+
isCurrencyAligned=\\"true\\"
|
|
1162
|
+
/>
|
|
1163
|
+
<internalMacro:customData>
|
|
1164
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1165
|
+
</internalMacro:customData>
|
|
1166
|
+
</internalMacro:Field>
|
|
1167
|
+
</VBox>
|
|
1168
|
+
</HBox>
|
|
1169
|
+
<HBox
|
|
1170
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1171
|
+
>
|
|
1172
|
+
<Label
|
|
1173
|
+
text=\\"Simple DataField Label:\\"
|
|
1174
|
+
class=\\"sapUiTinyMarginEnd\\"
|
|
1175
|
+
/>
|
|
1176
|
+
<VBox>
|
|
1177
|
+
<layoutData>
|
|
1178
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1179
|
+
</layoutData>
|
|
1180
|
+
<internalMacro:Field
|
|
1181
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1182
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1183
|
+
editMode=\\"Display\\"
|
|
1184
|
+
entitySet=\\"{collection>}\\"
|
|
1185
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1186
|
+
textAlign=\\"Left\\"
|
|
1187
|
+
wrap=\\"true\\"
|
|
1188
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1189
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1190
|
+
navigateAfterAction=\\"true\\"
|
|
1191
|
+
>
|
|
1192
|
+
<internalMacro:formatOptions
|
|
1193
|
+
textLinesEdit=\\"4\\"
|
|
1194
|
+
textAlignMode=\\"Table\\"
|
|
1195
|
+
showEmptyIndicator=\\"true\\"
|
|
1196
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1197
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1198
|
+
isCurrencyAligned=\\"true\\"
|
|
1199
|
+
/>
|
|
1200
|
+
<internalMacro:customData>
|
|
1201
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1202
|
+
</internalMacro:customData>
|
|
1203
|
+
</internalMacro:Field>
|
|
1204
|
+
</VBox>
|
|
1205
|
+
</HBox>
|
|
1206
|
+
<HBox
|
|
1207
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1208
|
+
>
|
|
1209
|
+
<Label text=\\"Property Label:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1210
|
+
<VBox>
|
|
1211
|
+
<layoutData>
|
|
1212
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1213
|
+
</layoutData>
|
|
1214
|
+
<internalMacro:Field
|
|
1215
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1216
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1217
|
+
editMode=\\"Display\\"
|
|
1218
|
+
entitySet=\\"{collection>}\\"
|
|
1219
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1220
|
+
textAlign=\\"Left\\"
|
|
1221
|
+
wrap=\\"true\\"
|
|
1222
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1223
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1224
|
+
navigateAfterAction=\\"true\\"
|
|
1225
|
+
>
|
|
1226
|
+
<internalMacro:formatOptions
|
|
1227
|
+
textLinesEdit=\\"4\\"
|
|
1228
|
+
textAlignMode=\\"Table\\"
|
|
1229
|
+
showEmptyIndicator=\\"true\\"
|
|
1230
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1231
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1232
|
+
isCurrencyAligned=\\"true\\"
|
|
1233
|
+
/>
|
|
1234
|
+
<internalMacro:customData>
|
|
1235
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1236
|
+
</internalMacro:customData>
|
|
1237
|
+
</internalMacro:Field>
|
|
1238
|
+
</VBox>
|
|
1239
|
+
</HBox>
|
|
1240
|
+
<HBox
|
|
1241
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1242
|
+
>
|
|
1243
|
+
<Label text=\\"Chart Title:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1244
|
+
<VBox>
|
|
1245
|
+
<layoutData>
|
|
1246
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1247
|
+
</layoutData>
|
|
1248
|
+
<internalMacro:Field
|
|
1249
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1250
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1251
|
+
editMode=\\"Display\\"
|
|
1252
|
+
entitySet=\\"{collection>}\\"
|
|
1253
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1254
|
+
textAlign=\\"Left\\"
|
|
1255
|
+
wrap=\\"true\\"
|
|
1256
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1257
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1258
|
+
navigateAfterAction=\\"true\\"
|
|
1259
|
+
>
|
|
1260
|
+
<internalMacro:formatOptions
|
|
1261
|
+
textLinesEdit=\\"4\\"
|
|
1262
|
+
textAlignMode=\\"Table\\"
|
|
1263
|
+
showEmptyIndicator=\\"true\\"
|
|
1264
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1265
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1266
|
+
isCurrencyAligned=\\"true\\"
|
|
1267
|
+
/>
|
|
1268
|
+
<internalMacro:customData>
|
|
1269
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1270
|
+
</internalMacro:customData>
|
|
1271
|
+
</internalMacro:Field>
|
|
1272
|
+
</VBox>
|
|
1273
|
+
</HBox>
|
|
1274
|
+
<internalMacro:Field
|
|
1275
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1276
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1277
|
+
editMode=\\"Display\\"
|
|
1278
|
+
entitySet=\\"{collection>}\\"
|
|
1279
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1280
|
+
wrap=\\"true\\"
|
|
1281
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1282
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1283
|
+
navigateAfterAction=\\"true\\"
|
|
1284
|
+
>
|
|
1285
|
+
<internalMacro:formatOptions
|
|
1286
|
+
fieldMode=\\"\\"
|
|
1287
|
+
textLinesEdit=\\"4\\"
|
|
1288
|
+
textAlignMode=\\"Table\\"
|
|
1289
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1290
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1291
|
+
isCurrencyAligned=\\"true\\"
|
|
1292
|
+
/>
|
|
1293
|
+
<internalMacro:customData>
|
|
1294
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1295
|
+
</internalMacro:customData>
|
|
1296
|
+
</internalMacro:Field>
|
|
1297
|
+
<HBox
|
|
1298
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1299
|
+
>
|
|
1300
|
+
<Label text=\\"Full Name:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1301
|
+
<VBox>
|
|
1302
|
+
<layoutData>
|
|
1303
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1304
|
+
</layoutData>
|
|
1305
|
+
<internalMacro:Field
|
|
1306
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1307
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1308
|
+
editMode=\\"Display\\"
|
|
1309
|
+
entitySet=\\"{collection>}\\"
|
|
1310
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1311
|
+
textAlign=\\"Left\\"
|
|
1312
|
+
wrap=\\"true\\"
|
|
1313
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1314
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1315
|
+
navigateAfterAction=\\"true\\"
|
|
1316
|
+
>
|
|
1317
|
+
<internalMacro:formatOptions
|
|
1318
|
+
textLinesEdit=\\"4\\"
|
|
1319
|
+
textAlignMode=\\"Table\\"
|
|
1320
|
+
showEmptyIndicator=\\"true\\"
|
|
1321
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1322
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1323
|
+
isCurrencyAligned=\\"true\\"
|
|
1324
|
+
/>
|
|
1325
|
+
<internalMacro:customData>
|
|
1326
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1327
|
+
</internalMacro:customData>
|
|
1328
|
+
</internalMacro:Field>
|
|
1329
|
+
</VBox>
|
|
1330
|
+
</HBox>
|
|
1331
|
+
<HBox
|
|
1332
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1333
|
+
>
|
|
1334
|
+
<Label
|
|
1335
|
+
text=\\"Referenced Sales Order:\\"
|
|
1336
|
+
class=\\"sapUiTinyMarginEnd\\"
|
|
1337
|
+
/>
|
|
1338
|
+
<VBox>
|
|
1339
|
+
<layoutData>
|
|
1340
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1341
|
+
</layoutData>
|
|
1342
|
+
<internalMacro:Field
|
|
1343
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1344
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1345
|
+
editMode=\\"Display\\"
|
|
1346
|
+
entitySet=\\"{collection>}\\"
|
|
1347
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1348
|
+
textAlign=\\"Left\\"
|
|
1349
|
+
wrap=\\"true\\"
|
|
1350
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1351
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1352
|
+
navigateAfterAction=\\"true\\"
|
|
1353
|
+
>
|
|
1354
|
+
<internalMacro:formatOptions
|
|
1355
|
+
textLinesEdit=\\"4\\"
|
|
1356
|
+
textAlignMode=\\"Table\\"
|
|
1357
|
+
showEmptyIndicator=\\"true\\"
|
|
1358
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1359
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1360
|
+
isCurrencyAligned=\\"true\\"
|
|
1361
|
+
/>
|
|
1362
|
+
<internalMacro:customData>
|
|
1363
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1364
|
+
</internalMacro:customData>
|
|
1365
|
+
</internalMacro:Field>
|
|
1366
|
+
</VBox>
|
|
1367
|
+
</HBox>
|
|
1368
|
+
<HBox
|
|
1369
|
+
alignItems=\\"{= (%{ui>/editMode}) === 'Editable' ? 'Center' : 'Stretch'}\\"
|
|
1370
|
+
>
|
|
1371
|
+
<Label text=\\"Sales Order No.:\\" class=\\"sapUiTinyMarginEnd\\" />
|
|
1372
|
+
<VBox>
|
|
1373
|
+
<layoutData>
|
|
1374
|
+
<FlexItemData growFactor=\\"1\\" />
|
|
1375
|
+
</layoutData>
|
|
1376
|
+
<internalMacro:Field
|
|
1377
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1378
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1379
|
+
editMode=\\"Display\\"
|
|
1380
|
+
entitySet=\\"{collection>}\\"
|
|
1381
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1382
|
+
textAlign=\\"Left\\"
|
|
1383
|
+
wrap=\\"true\\"
|
|
1384
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1385
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1386
|
+
navigateAfterAction=\\"true\\"
|
|
1387
|
+
>
|
|
1388
|
+
<internalMacro:formatOptions
|
|
1389
|
+
textLinesEdit=\\"4\\"
|
|
1390
|
+
textAlignMode=\\"Table\\"
|
|
1391
|
+
showEmptyIndicator=\\"true\\"
|
|
1392
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1393
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1394
|
+
isCurrencyAligned=\\"true\\"
|
|
1395
|
+
/>
|
|
1396
|
+
<internalMacro:customData>
|
|
1397
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1398
|
+
</internalMacro:customData>
|
|
1399
|
+
</internalMacro:Field>
|
|
1400
|
+
</VBox>
|
|
1401
|
+
</HBox>
|
|
1402
|
+
<internalMacro:Field
|
|
1403
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1404
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1405
|
+
editMode=\\"Display\\"
|
|
1406
|
+
entitySet=\\"{collection>}\\"
|
|
1407
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1408
|
+
wrap=\\"true\\"
|
|
1409
|
+
class=\\"sapUiTinyMarginBottom\\"
|
|
1410
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1411
|
+
navigateAfterAction=\\"true\\"
|
|
1412
|
+
>
|
|
1413
|
+
<internalMacro:formatOptions
|
|
1414
|
+
fieldMode=\\"\\"
|
|
1415
|
+
textLinesEdit=\\"4\\"
|
|
1416
|
+
textAlignMode=\\"Table\\"
|
|
1417
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1418
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1419
|
+
isCurrencyAligned=\\"true\\"
|
|
1420
|
+
/>
|
|
1421
|
+
<internalMacro:customData>
|
|
1422
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1423
|
+
</internalMacro:customData>
|
|
1424
|
+
</internalMacro:Field>
|
|
1425
|
+
<internalMacro:Field
|
|
1426
|
+
xmlns:internalMacro=\\"sap.fe.macros.internal\\"
|
|
1427
|
+
vhIdPrefix=\\"abc-content::TableValueHelp\\"
|
|
1428
|
+
editMode=\\"Display\\"
|
|
1429
|
+
entitySet=\\"{collection>}\\"
|
|
1430
|
+
dataField=\\"{fieldGroupDataField>}\\"
|
|
1431
|
+
wrap=\\"true\\"
|
|
1432
|
+
class=\\"\\"
|
|
1433
|
+
ariaLabelledBy=\\"abc-content::C::FieldGroup::myFieldGroup\\"
|
|
1434
|
+
navigateAfterAction=\\"true\\"
|
|
1435
|
+
>
|
|
1436
|
+
<internalMacro:formatOptions
|
|
1437
|
+
fieldMode=\\"\\"
|
|
1438
|
+
textLinesEdit=\\"4\\"
|
|
1439
|
+
textAlignMode=\\"Table\\"
|
|
1440
|
+
semanticKeyStyle=\\"ObjectIdentifier\\"
|
|
1441
|
+
ignoreNavigationAvailable=\\"false\\"
|
|
1442
|
+
isCurrencyAligned=\\"true\\"
|
|
1443
|
+
/>
|
|
1444
|
+
<internalMacro:customData>
|
|
1445
|
+
<ns2:CustomData key=\\"extraProperty\\" />
|
|
1446
|
+
</internalMacro:customData>
|
|
1447
|
+
</internalMacro:Field>
|
|
1448
|
+
</VBox>
|
|
1449
|
+
</mdcTable:Column>
|
|
1450
|
+
</mdc:columns>
|
|
1451
|
+
</mdc:Table>
|
|
1452
|
+
</macro:TableAPI>
|
|
1453
|
+
</root>
|
|
1454
|
+
"
|
|
1455
|
+
`;
|