@sap/open.fe 1.94.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/LICENSE.txt +23 -0
- package/README.md +10 -0
- package/package.json +21 -0
- package/packages/sap.fe.common/src/sap/fe/common/.library +36 -0
- package/packages/sap.fe.common/src/sap/fe/common/.theming +6 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton-dbg.js +1378 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessageButton.js +6 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessageFilter-dbg.js +36 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessageFilter.js +6 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessagePopover-dbg.js +56 -0
- package/packages/sap.fe.common/src/sap/fe/common/MessagePopover.js +6 -0
- package/packages/sap.fe.common/src/sap/fe/common/library-dbg.js +41 -0
- package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js +18 -0
- package/packages/sap.fe.common/src/sap/fe/common/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.common/src/sap/fe/common/library-preload.js +68 -0
- package/packages/sap.fe.common/src/sap/fe/common/library-preload.js.map +9 -0
- package/packages/sap.fe.common/src/sap/fe/common/library.js +6 -0
- package/packages/sap.fe.common/src/sap/fe/common/manifest.json +40 -0
- package/packages/sap.fe.common/src/sap/fe/common/resources.json +186 -0
- package/packages/sap.fe.common/test/sap/fe/common/designtime/api.json +1 -0
- package/packages/sap.fe.common/test/sap/fe/common/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.common/test/sap/fe/common/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.common/test/sap/fe/common/relnotes/changes-1.91.json +23 -0
- package/packages/sap.fe.common/test/sap/fe/common/relnotes/changes-1.94.json +23 -0
- package/packages/sap.fe.core/src/sap/fe/core/.library +60 -0
- package/packages/sap.fe.core/src/sap/fe/core/.supportrc +4 -0
- package/packages/sap.fe.core/src/sap/fe/core/.theming +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper-dbg.js +409 -0
- package/packages/sap.fe.core/src/sap/fe/core/AnnotationHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/AppComponent-dbg.js +433 -0
- package/packages/sap.fe.core/src/sap/fe/core/AppComponent.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler-dbg.js +184 -0
- package/packages/sap.fe.core/src/sap/fe/core/AppStateHandler.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/BaseController-dbg.js +65 -0
- package/packages/sap.fe.core/src/sap/fe/core/BaseController.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/BusyLocker-dbg.js +112 -0
- package/packages/sap.fe.core/src/sap/fe/core/BusyLocker.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils-dbg.js +2246 -0
- package/packages/sap.fe.core/src/sap/fe/core/CommonUtils.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI-dbg.js +269 -0
- package/packages/sap.fe.core/src/sap/fe/core/ExtensionAPI.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/PageController-dbg.js +120 -0
- package/packages/sap.fe.core/src/sap/fe/core/PageController.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy-dbg.js +822 -0
- package/packages/sap.fe.core/src/sap/fe/core/RouterProxy.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization-dbg.js +38 -0
- package/packages/sap.fe.core/src/sap/fe/core/Synchronization.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent-dbg.js +152 -0
- package/packages/sap.fe.core/src/sap/fe/core/TemplateComponent.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel-dbg.js +57 -0
- package/packages/sap.fe.core/src/sap/fe/core/TemplateModel.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper-dbg.js +1584 -0
- package/packages/sap.fe.core/src/sap/fe/core/TransactionHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft-dbg.js +584 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/draft.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling-dbg.js +439 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/messageHandling.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft-dbg.js +23 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/nonDraft.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations-dbg.js +1174 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/operations.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky-dbg.js +121 -0
- package/packages/sap.fe.core/src/sap/fe/core/actions/sticky.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata-dbg.js +75 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ControllerExtensionMetadata.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow-dbg.js +1667 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/EditFlow.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation-dbg.js +57 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/IntentBasedNavigation.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow-dbg.js +501 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalEditFlow.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation-dbg.js +707 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting-dbg.js +989 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/InternalRouting.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement-dbg.js +417 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/KPIManagement.ts +399 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler-dbg.js +116 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/MessageHandler.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady-dbg.js +403 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/PageReady.ts +350 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator-dbg.js +135 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Paginator.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder-dbg.js +287 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Placeholder.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing-dbg.js +109 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Routing.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener-dbg.js +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/RoutingListener.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share-dbg.js +258 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/Share.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects-dbg.js +711 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/SideEffects.ts +692 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState-dbg.js +615 -0
- package/packages/sap.fe.core/src/sap/fe/core/controllerextensions/ViewState.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/ActionParameterDialog.fragment.xml +76 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/ActionPartial.fragment.xml +91 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution-dbg.js +71 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/CommandExecution.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper-dbg.js +82 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/ConditionalWrapper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage-dbg.js +127 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/CustomQuickViewPage.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossDraft.fragment.xml +12 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler-dbg.js +122 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/DataLossOrDraftDiscard/DataLossOrDraftDiscardHandler.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper-dbg.js +150 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FieldWrapper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar-dbg.js +162 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FilterBar.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper-dbg.js +47 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/FormElementWrapper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/NonComputedVisibleKeyFieldsDialog.fragment.xml +61 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer-dbg.js +122 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/FilterContainer.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter-dbg.js +209 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilter.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer-dbg.js +148 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/VisualFilterContainer.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils-dbg.js +319 -0
- package/packages/sap.fe.core/src/sap/fe/core/controls/filterbar/utils/VisualFilterUtils.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext-dbg.js +500 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ConverterContext.ts +460 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings-dbg.js +90 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestSettings.ts +431 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper-dbg.js +404 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/ManifestWrapper.ts +322 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter-dbg.js +1294 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/MetaModelConverter.ts +1172 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter-dbg.js +100 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/TemplateConverter.ts +126 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField-dbg.js +335 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/annotations/DataField.ts +306 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/common/AnnotationConverter-dbg.js +1692 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/common/AnnotationConverter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action-dbg.js +349 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Action.ts +353 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart-dbg.js +206 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Chart.ts +202 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Criticality-dbg.js +50 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Criticality.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Criticality.ts +33 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization-dbg.js +276 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/DataVisualization.ts +296 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form-dbg.js +222 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Form.ts +241 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI-dbg.js +181 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/KPI.ts +220 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table-dbg.js +2100 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/Common/Table.ts +2446 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar-dbg.js +499 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/FilterBar.ts +545 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/VisualFilters-dbg.js +335 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/VisualFilters.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ListReport/VisualFilters.ts +316 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet-dbg.js +495 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.ts +502 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection-dbg.js +674 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/controls/ObjectPage/SubSection.ts +711 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation-dbg.js +204 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Aggregation.ts +176 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper-dbg.js +96 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/BindingHelper.ts +76 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject-dbg.js +217 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ConfigurableObject.ts +211 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ID-dbg.js +90 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ID.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/ID.ts +45 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager-dbg.js +61 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/IssueManager.ts +41 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key-dbg.js +86 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/Key.ts +49 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/SelectionVariantHelper-dbg.js +93 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/SelectionVariantHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/helpers/SelectionVariantHelper.ts +92 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/FormMenuActions-dbg.js +164 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/FormMenuActions.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/FormMenuActions.ts +160 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction-dbg.js +427 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +414 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter-dbg.js +552 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ListReportConverter.ts +601 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter-dbg.js +320 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/converters/templates/ObjectPageConverter.ts +314 -0
- package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent-dbg.designtime.js +93 -0
- package/packages/sap.fe.core/src/sap/fe/core/designtime/AppComponent.designtime.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/designtime/library-preload.designtime.js +8 -0
- package/packages/sap.fe.core/src/sap/fe/core/designtime/library-preload.designtime.js.map +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter-dbg.js +77 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/CriticalityFormatter.ts +58 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter-dbg.js +51 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/FPMFormatter.ts +41 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter-dbg.js +103 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/KPIFormatter.ts +88 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter-dbg.js +100 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatter.ts +80 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatterTypes-dbg.js +23 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatterTypes.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/TableFormatterTypes.ts +7 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter-dbg.js +162 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/formatters/ValueFormatter.ts +130 -0
- package/packages/sap.fe.core/src/sap/fe/core/fpm/Component-dbg.js +58 -0
- package/packages/sap.fe.core/src/sap/fe/core/fpm/Component.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/fpm/manifest.json +64 -0
- package/packages/sap.fe.core/src/sap/fe/core/fpm/resources.json +18 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AnnotationEnum-dbg.js +49 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AnnotationEnum.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/AnnotationEnum.ts +18 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression-dbg.js +1667 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/BindingExpression.ts +1765 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport-dbg.js +314 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ClassSupport.ts +232 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper-dbg.js +62 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/DynamicAnnotationPathHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState-dbg.js +92 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/EditState.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper-dbg.js +53 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ExcelFormatHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper-dbg.js +64 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/FPMHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper-dbg.js +150 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/ModelHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper-dbg.js +130 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/PasteHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators-dbg.js +327 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticDateOperators.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper-dbg.js +78 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/SemanticKeyHelper.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper-dbg.js +267 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper.js +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/helpers/StableIdHelper.ts +228 -0
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx-dbg.js +75 -0
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsx.ts +83 -0
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsxs-dbg.js +10 -0
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsxs.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/jsx-runtime/jsxs.ts +3 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-dbg.js +429 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js +123 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.js +1201 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.js.map +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js +148 -0
- package/packages/sap.fe.core/src/sap/fe/core/library-preload.support.js.map +9 -0
- package/packages/sap.fe.core/src/sap/fe/core/library.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/library.support.js +32 -0
- package/packages/sap.fe.core/src/sap/fe/core/manifest.json +121 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle.properties +417 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ar.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_bg.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ca.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cs.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_cy.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_da.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_de.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_el.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_GB.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_sappsd.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saprigi.properties +275 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_en_US_saptrc.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_es_MX.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_et.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fi.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_fr_CA.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hi.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hr.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_hu.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_id.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_it.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_iw.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ja.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_kk.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ko.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lt.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_lv.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ms.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_nl.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_no.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pl.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_pt_PT.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ro.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_ru.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sh.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sk.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sl.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_sv.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_th.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_tr.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_uk.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_vi.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_CN.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/messagebundle_zh_TW.properties +273 -0
- package/packages/sap.fe.core/src/sap/fe/core/resources.json +4087 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory-dbg.js +106 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/AsyncComponentServiceFactory.ts +58 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory-dbg.js +205 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/CacheHandlerServiceFactory.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory-dbg.js +128 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/EnvironmentServiceFactory.ts +71 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory-dbg.js +303 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/NavigationServiceFactory.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory-dbg.js +84 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ResourceModelServiceFactory.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory-dbg.js +1099 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/RoutingServiceFactory.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory-dbg.js +819 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/ShellServicesFactory.ts +720 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory-dbg.js +731 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/SideEffectsServiceFactory.ts +668 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory-dbg.js +471 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/TemplatedViewServiceFactory.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage-dbg.controller.js +12 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.controller.js +6 -0
- package/packages/sap.fe.core/src/sap/fe/core/services/view/TemplatingErrorPage.view.xml +8 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/AnnotationIssue.support.js +38 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/AnnotationIssue.support.ts +20 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetMissingID.support.js +38 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetMissingID.support.ts +18 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetUnsupportedLevel.support.js +38 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CollectionFacetUnsupportedLevel.support.ts +18 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper-dbg.js +71 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/CommonHelper.ts +67 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics-dbg.js +73 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/support/Diagnostics.ts +66 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/CriticalityFormatters-dbg.js +156 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/CriticalityFormatters.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/CriticalityFormatters.ts +226 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataFieldFormatters-dbg.js +77 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataFieldFormatters.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataFieldFormatters.ts +54 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper-dbg.js +444 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/DataModelPathHelper.ts +428 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/EntitySetHelper-dbg.js +33 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/EntitySetHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/EntitySetHelper.ts +13 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper-dbg.js +89 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FieldControlHelper.ts +53 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper-dbg.js +331 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterHelper.ts +310 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterTemplating-dbg.js +66 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterTemplating.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/FilterTemplating.ts +39 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyFormatters-dbg.js +126 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyFormatters.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyFormatters.ts +86 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper-dbg.js +303 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/PropertyHelper.ts +209 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters-dbg.js +525 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/templating/UIFormatters.ts +489 -0
- package/packages/sap.fe.core/src/sap/fe/core/type/Email-dbg.js +20 -0
- package/packages/sap.fe.core/src/sap/fe/core/type/Email.js +5 -0
- package/packages/sap.fe.core/src/sap/fe/core/type/Email.ts +18 -0
- package/packages/sap.fe.core/test/sap/fe/core/designtime/api.json +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/Component.js +56 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/App.controller.js +252 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/BaseController.js +46 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/ControllerExtensions.controller.js +380 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/CustomElements.controller.js +380 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/MacrosPage.controller.js +382 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/Overview.controller.js +99 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controller/Topic.controller.js +71 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/controls/FileEditor.js +401 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/FileEditor.css +8 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/codesample.css +172 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/markdown-styles.css +3 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/style.css +48 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/css/topic.css +176 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/index.html +62 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/manifest.json +132 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/ControllerExtensionNavigationModel.js +174 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/CustomElementNavigationModel.js +327 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/ExploreSettingsModel.js +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/MacroNavigationModel.js +709 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/model/OverviewNavigationModel.js +15 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/scripts/boot.js +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/service-worker.js +100 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/.gitignore.tmpl +0 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/.npmrc.tmpl +0 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/README.md +43 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/package.json +31 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/ui5-local.yaml +25 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/ui5.yaml +25 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/Component.js +9 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/i18n/i18n.properties +9 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/index.html +28 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/template/webapp/manifest.json +165 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/Component.js +31 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/localService/Incidents.json +56 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/localService/service.cds +32 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/manifest.json +109 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/myViewTest.controller.js +6 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FCL/FclNavigationButtons/myViewTest.view.xml +30 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/FclNavigationButtons.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/buildingBlockOverview.html +24 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/buildingBlockOverview.md +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/ChartDefault.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/ChartDefault.view.xml +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/RootEntity.json +252 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/localService/service.cds +122 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartDefault/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/ChartQualifier.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/ChartQualifier.view.xml +20 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/RootEntity.json +252 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/localService/service.cds +122 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartQualifier/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/ChartSelectionMode.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/ChartSelectionMode.view.xml +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/RootEntity.json +277 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/localService/service.cds +122 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chart/chartSelectionMode/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartDefault.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartQualifier.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/chartSelectionMode.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/Component.js +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/FieldDisplay.view.xml +64 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/ChildEntity.json +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/FieldDisplay.cds +94 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/RootEntity.json +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldDisplay/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/FieldEdit.controller.js +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/FieldEdit.view.xml +101 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/ChildEntity.json +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/FieldControlValueHelpEntity.json +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/FieldEdit.cds +77 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/RootEntity.json +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/localService/localAnnotations.xml +38 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEdit/manifest.json +75 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/FieldEvents.controller.js +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/FieldEvents.view.xml +20 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/localService/Entities.json +6 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/localService/service.cds +6 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldEvents/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/FieldFormatOptions.controller.js +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/FieldFormatOptions.view.xml +132 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Currencies.json +29 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Currencies_texts.json +38 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/FieldFormatOptions.cds +58 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Languages.json +17 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/Languages_texts.json +38 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/RootEntity.json +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/localService/UnitOfMeasure.json +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldFormatOptions/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/FieldNavProp.controller.js +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/FieldNavProp.view.xml +114 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/FieldNavProp.cds +161 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/NavProp1.json +25 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/NavProp2.json +7 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/RootEntity.json +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/localService/ValueHelpEntity.json +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/field/fieldNavProp/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldDisplay.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldEdit.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldEvents.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldFormatOptions.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/fieldNavProp.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/FilterBarDefault.controller.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/FilterBarDefault.view.xml +58 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/RootEntity.json +102 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/localService/service.cds +96 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBar/filterBarDefault/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/filterBarDefault.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/FormElementCustomField.view.xml +49 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/localService/FormElementCustomField.cds +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/localService/RootEntity.json +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementCustomField/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/Component.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/FormElementLabel.view.xml +32 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/localService/FormElementLabel.cds +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/localService/RootEntity.json +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElement/formElementLabel/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElementCustomField.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/formElementLabel.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/i18n/i18n.properties +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartDefault.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartDynamicSize.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartHideOnNoData.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microChartShowOnlyChart.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/MicroChartDefault.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/MicroChartDefault.view.xml +83 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/RootEntity.json +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/localService/service.cds +308 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDefault/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/MicroChartDynamicSize.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/MicroChartDynamicSize.view.xml +93 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/RootEntity.json +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/localService/service.cds +308 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartDynamicSize/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/MicroChartHideOnNoData.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/MicroChartHideOnNoData.view.xml +91 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/RootEntity.json +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/localService/service.cds +308 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartHideOnNoData/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/MicroChartShowOnlyChart.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/MicroChartShowOnlyChart.view.xml +93 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/ChildEntity.json +686 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/CreditLimitDetails.json +154 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/RootEntity.json +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/localService/service.cds +308 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/microchart/microChartShowOnlyChart/manifest.json +69 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/PaginatorDefault.controller.js +27 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/PaginatorDefault.view.xml +45 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/localService/RootEntity.json +102 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/localService/service.cds +90 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginator/paginatorDefault/manifest.json +79 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/paginatorDefault.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/Component.js +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/Share.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/Share.view.xml +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/localService/RootEntity.json +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/localService/Share.cds +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/share/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/shareDefault.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Component.js +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.controller.js +32 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/Page.view.xml +32 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/RootEntity.json +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/localService/service.cds +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableCustoms/manifest.json +78 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/TableDefault.controller.js +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/TableDefault.view.xml +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/localService/RootEntity.json +102 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/localService/service.cds +90 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableDefault/manifest.json +79 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/TableEdit.controller.js +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/TableEdit.view.xml +31 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/RootEntity.json +78 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/ValueHelpCurrencyEntity.json +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/localService/service.cds +119 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/table/tableEdit/manifest.json +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableCustoms.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableDefault.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/buildingBlocks/tableEdit.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/OPExtend.controller.js +41 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/localService/RootEntity.json +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/localService/service.cds +52 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility/manifest.json +76 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/basicExtensibility.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/controllerExtensionsOverview.html +24 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/controllerExtensionsOverview.md +18 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/IntentBasedNavigation.controller.js +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/IntentBasedNavigation.view.xml +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/localService/RootEntity.json +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/localService/service.cds +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation/manifest.json +76 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/intentBasedNavigation.html +70 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/extendLR.controller.js +63 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/extendOP.controller.js +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/localService/RootEntity.json +18 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/localService/service.cds +64 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility/manifest.json +103 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/routingExtensibility.html +70 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/Share.controller.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/Share.view.xml +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/ShareExtend.js +15 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/localService/RootEntity.json +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/localService/service.cds +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/share/manifest.json +68 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/shareExtensibility.html +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/CustomSection.fragment.xml +15 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/OPExtend.controller.js +57 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/localService/RootEntity.json +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/localService/service.cds +40 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState/manifest.json +86 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/controllerExtensions/viewState.html +70 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/CustomAction.js +41 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/extendOP.controller.js +9 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/localService/ChildEntity.json +22 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/localService/RootEntity.json +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/localService/service.cds +73 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customAction/customActionContent/manifest.json +133 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customActionContent.html +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/CustomColumn.js +25 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/CustomColumnAdaptation.fragment.xml +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/CustomColumnButton.fragment.xml +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/localService/ChildEntity.json +26 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/localService/RootEntity.json +9 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/localService/service.cds +55 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumn/customColumnContent/manifest.json +98 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customColumnContent.html +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customElementsOverview.html +24 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customElementsOverview.md +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/CustomFilter.js +28 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/CustomRatingFilter.fragment.xml +8 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/CustomRatingFilterOperator.fragment.xml +17 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/localService/RootEntity.json +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/localService/service.cds +75 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilter/customFilterContent/manifest.json +87 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customFilterContent.html +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/CustomHeaderFacetColumnChart.fragment.xml +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/CustomHeaderFacetDataPoint.fragment.xml +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/CustomHeaderFacetMicroChartAndFormElement.fragment.xml +42 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/localService/RootEntity.json +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/localService/service.cds +54 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacet/customHeaderFacetContent/manifest.json +127 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customHeaderFacetContent.html +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomDetailPage.controller.js +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomDetailPage.view.xml +64 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomPage.controller.js +10 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/CustomPage.view.xml +39 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/ChildEntity.json +23 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/RootEntity.json +41 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/ValueHelpCurrencyEntity.json +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/resources/275081.jpg +0 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/resources/275472.jpg +0 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/localService/service.cds +144 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPage/customPageContent/manifest.json +119 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customPageContent.html +70 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/Component.js +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSection.fragment.xml +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSectionFormElementAndTable.fragment.xml +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSectionNavigation.fragment.xml +44 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/CustomSectionNavigation.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/extendOP.controller.js +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/ChildEntity.json +82 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/RootEntity.json +9 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/ValueHelpCurrencyEntity.json +5 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/ValueHelpEntity.js +11 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/localService/service.cds +177 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSection/customSectionContent/manifest.json +129 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customSectionContent.html +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/Component.js +35 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/CustomButton.js +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/CustomViewWithButton.fragment.xml +12 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/CustomViewWithTable.fragment.xml +46 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/LRExtend.controller.js +31 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/localService/RootEntity.json +37 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/localService/service.cds +70 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLR/customViewInLRContent/manifest.json +100 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/customViewInLRContent.html +36 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/customElements/i18n/i18n.properties +61 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/overview/introduction.html +24 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/topics/overview/introduction.md +6 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/util/FileUtils.js +124 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/App.view.xml +60 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/ControllerExtensions.view.xml +97 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/CustomElements.view.xml +97 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/MacrosPage.view.xml +97 -0
- package/packages/sap.fe.core/test/sap/fe/core/fpmExplorer/view/Overview.view.xml +13 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression-AnnotationExpression.spec.js +140 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression-AnnotationExpression.spec.ts +142 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression.spec.js +504 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/BindingExpression.spec.ts +751 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.js +74 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/TemplateConverter.spec.ts +75 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/__snapshots__/BindingExpression-AnnotationExpression.spec.ts.snap +7 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/__snapshots__/TemplateConverter.spec.ts.snap +17450 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.js +582 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/KPIManagement.spec.ts +515 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.js +636 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/controllerextensions/SideEffects.spec.ts +547 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.js +60 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ConverterContext.spec.ts +57 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/HeaderFacet.spec.js +436 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/HeaderFacet.spec.ts +469 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/KPITag.spec.js +346 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/KPITag.spec.ts +357 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.js +255 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ListReportConverter.spec.ts +254 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.js +67 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/MetaModelConverter.spec.ts +43 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ObjectPageConverter.spec.js +577 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/ObjectPageConverter.spec.ts +593 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.js +1206 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/Table.spec.ts +1361 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/converters/__snapshots__/Table.spec.ts.snap +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/AnalyticalService.cds +16 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/BindingExpression-AnnotationExpression.xml +248 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/ConverterContext.cds +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/HeaderFacets.cds +199 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/KPI.cds +320 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/KPINone.cds +78 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/ListReportConverter.cds +164 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/MetaModelConverter.cds +43 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/MetaModelConverterBoundAction.cds +31 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/ObjectPageConverter.cds +161 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/PropertyHelper.cds +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/SideEffects.cds +285 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/Table.cds +98 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableGetSelectionMode.cds +242 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableNewActionNoOperationAvailable.cds +22 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableNewActionOperationAvailableFalse.cds +25 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/TableNewActionOperationAvailableTrue.cds +24 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/data/salesOrderMetadata.xml +4824 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/ValueFormatters.spec.js +54 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/formatters/ValueFormatters.spec.ts +70 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.js +607 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/services/SideEffectsService.spec.ts +540 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.js +62 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/templating/PropertyHelper.spec.ts +45 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/type/Email.spec.js +34 -0
- package/packages/sap.fe.core/test/sap/fe/core/jest/type/Email.spec.ts +21 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/TemplatingExpressions.qunit.js +1328 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/generalTests.js +18 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/generalTests.json +233 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/apps/index.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/common/testHelper.js +81 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/common/utility.js +28 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/ExcelFormatHelper.qunit.js +19 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/SemanticDateOperators.qunit.js +253 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/SemanticKeyHelper.qunit.js +211 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/helpers/StableIdHelper.qunit.js +301 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/services/CacheHandlerTest.qunit.js +924 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/test/iteloMetadata.js +2752 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/test/musicDraftMetadata.js +2301 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/test/simpleMetadata.js +1186 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/test/techServiceMetadata.js +3993 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/testsuite.qunit.html +14 -0
- package/packages/sap.fe.core/test/sap/fe/core/qunit/testsuite.qunit.js +33 -0
- package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.91.json +96 -0
- package/packages/sap.fe.core/test/sap/fe/core/relnotes/changes-1.94.json +40 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/.library +54 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/.theming +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.fragment.xml +171 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata-dbg.js +200 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Chart.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate-dbg.js +530 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ChartDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper-dbg.js +1256 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/CommonHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Contact-dbg.designtime.js +93 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Contact.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Contact.fragment.xml +38 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Contact.metadata-dbg.js +91 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Contact.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ContactHelper-dbg.js +96 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ContactHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DelegateUtil-dbg.js +286 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DelegateUtil.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.fragment.xml +37 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.metadata-dbg.js +91 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicator.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicatorRuntime-dbg.js +138 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/DraftIndicatorRuntime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.fragment.xml +37 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata-dbg.js +144 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Field.metadata.ts +136 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI-dbg.js +234 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldAPI.ts +177 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldValueHelpDelegate-dbg.js +55 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FieldValueHelpDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar-dbg.designtime.js +83 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.fragment.xml +109 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata-dbg.js +243 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBar.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI-dbg.js +130 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarAPI.ts +62 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate-dbg.js +568 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarHelper-dbg.js +48 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterBarHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterField-dbg.designtime.js +339 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.fragment.xml +57 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.metadata-dbg.js +130 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FilterField.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FlexibleColumnLayoutActions.fragment.xml +24 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FlexibleColumnLayoutActions.metadata-dbg.js +68 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FlexibleColumnLayoutActions.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Form-dbg.designtime.js +188 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.fragment.xml +94 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata-dbg.js +209 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Form.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer-dbg.designtime.js +42 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.fragment.xml +196 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.metadata-dbg.js +132 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormContainer.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.fragment.xml +25 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.metadata-dbg.js +123 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.metadata.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormElement.metadata.ts +113 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/FormWrapper.fragment.xml +26 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.metadata-dbg.js +103 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.metadata.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/KPITag.metadata.ts +106 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI-dbg.js +197 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroAPI.ts +120 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroMetadata-dbg.js +92 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroMetadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroRuntime-dbg.js +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroRuntime.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroRuntime.ts +12 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroTemplating-dbg.js +22 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroTemplating.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MacroTemplating.ts +9 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart-dbg.designtime.js +361 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.fragment.xml +36 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.metadata-dbg.js +149 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/MicroChart.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ODataMetaModelUtil-dbg.js +600 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ODataMetaModelUtil.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Paginator.fragment.xml +32 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Paginator.metadata-dbg.js +61 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Paginator.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil-dbg.js +615 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/PhantomUtil.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm-dbg.designtime.js +215 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.fragment.xml +66 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.metadata-dbg.js +84 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/QuickViewForm.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ResourceModel-dbg.js +56 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ResourceModel.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Share.fragment.xml +21 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Share.metadata-dbg.js +90 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Share.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/SizeHelper-dbg.js +41 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/SizeHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.fragment.xml +236 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata-dbg.js +489 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/Table.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI-dbg.js +469 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/TableAPI.ts +487 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/TraceInfo-dbg.js +462 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/TraceInfo.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ValueHelp.metadata-dbg.js +135 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/ValueHelp.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/VisualFilter.fragment.xml +87 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/VisualFilter.metadata-dbg.js +217 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/VisualFilter.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartHelper-dbg.js +468 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartRuntime-dbg.js +118 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartRuntime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartUtils-dbg.js +221 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/chart/ChartUtils.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/designtime/library-preload.designtime.js +17 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/designtime/library-preload.designtime.js.map +9 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/DraftPopOverAdminData.fragment.xml +53 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper-dbg.js +1670 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime-dbg.js +400 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldRuntime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating-dbg.js +538 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/FieldTemplating.ts +541 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkContactContent.fragment.xml +95 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate-dbg.js +1136 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkForContact.fragment.xml +26 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkForDataField.fragment.xml +95 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkForEntity.fragment.xml +76 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/field/QuickViewLinkWithFacets.fragment.xml +40 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/CustomFilter.fragment.xml +38 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState-dbg.js +179 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState.fragment.xml +36 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/DraftEditState.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper-dbg.js +149 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldTemplating-dbg.js +23 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldTemplating.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterFieldTemplating.ts +11 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils-dbg.js +363 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/FilterUtils.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue-dbg.js +53 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/MultiValue.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range-dbg.js +38 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Range.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value-dbg.js +219 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/filter/type/Value.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/flexibility/FormDelegate-dbg.js +152 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/flexibility/FormDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/flexibility/ValueHelpWrapper.fragment.xml +3 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/form/AddressSection.fragment.xml +35 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/form/DataFieldCollection.fragment.xml +44 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/form/FormElement.fragment.xml +42 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/form/FormHelper-dbg.js +118 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/form/FormHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFormElement.fragment.xml +10 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFragment.fragment.xml +13 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFragment.metadata-dbg.js +73 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomFragment.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomHeaderFieldElement.fragment.xml +17 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomSection.fragment.xml +13 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomSection.metadata-dbg.js +82 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/CustomSection.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/fpm-dbg.js +15 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/fpm/fpm.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata-dbg.js +167 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/CollectionField.metadata.ts +179 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.fragment.xml +123 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata-dbg.js +162 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/DataPoint.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field-dbg.designtime.js +811 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.fragment.xml +20 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata-dbg.js +534 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/Field.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/collectionField/MultiValueFieldDelegate-dbg.js +76 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/collectionField/MultiValueFieldDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/ConnectedDataField.fragment.xml +39 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldContent.fragment.xml +94 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/FieldStructure.fragment.xml +55 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/AmountWithCurrency.fragment.xml +41 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Avatar.fragment.xml +57 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Button.fragment.xml +56 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Contact.fragment.xml +38 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/DataPoint.fragment.xml +45 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ExpandableText.fragment.xml +18 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/File.fragment.xml +31 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LabelSemanticKey.fragment.xml +65 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Link.fragment.xml +30 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWithQuickViewForm.fragment.xml +45 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/LinkWrapper.fragment.xml +56 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectIdentifier.fragment.xml +37 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/ObjectStatus.fragment.xml +16 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/SemanticKeyWithDraftIndicator.fragment.xml +35 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/displayStyle/Text.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/CheckBox.fragment.xml +28 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DatePicker.fragment.xml +32 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/DateTimePicker.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/File.fragment.xml +55 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/Input.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithUnit.fragment.xml +77 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/InputWithValueHelp.fragment.xml +73 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/RatingIndicator.fragment.xml +23 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TextArea.fragment.xml +34 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/field/editStyle/TimePicker.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/form/FormTemplating-dbg.js +65 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/form/FormTemplating.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/form/FormTemplating.ts +40 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating-dbg.js +244 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/helpers/DataPointTemplating.ts +229 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/TableDelegate-dbg.js +215 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/TableDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelp-dbg.designtime.js +466 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelp.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelp.fragment.xml +23 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpContent.fragment.xml +62 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating-dbg.js +155 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating.js +5 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueHelpTemplating.ts +133 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListDialogTable.fragment.xml +57 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListFilterBar.fragment.xml +20 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper-dbg.js +1286 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListTable.fragment.xml +67 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/internal/valuehelp/ValueListTableColumnHeader.fragment.xml +25 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/library-dbg.js +144 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js +190 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js +696 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/library-preload.js.map +9 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/library.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/macroLibrary-dbg.js +126 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/macroLibrary.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/manifest.json +115 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditDialog.fragment.xml +106 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditHandler-dbg.js +708 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditHandler.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditRuntime-dbg.js +115 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/massedit/MassEditRuntime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle.properties +215 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ar.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_bg.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ca.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cs.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_cy.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_da.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_de.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_el.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_GB.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_sappsd.properties +129 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saprigi.properties +129 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_en_US_saptrc.properties +129 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_es_MX.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_et.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fi.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_fr_CA.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hi.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hr.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_hu.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_id.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_it.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_iw.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ja.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_kk.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ko.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lt.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_lv.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ms.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_nl.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_no.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pl.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_pt_PT.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ro.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_ru.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sh.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sk.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sl.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_sv.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_th.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_tr.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_uk.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_vi.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_CN.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/messagebundle_zh_TW.properties +140 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartContainer-dbg.js +620 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartContainer.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartHelper-dbg.js +491 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/MicroChartHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/AreaMicroChart.fragment.xml +180 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/BulletMicroChart.fragment.xml +111 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/ColumnMicroChart.fragment.xml +99 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/ComparisonMicroChart.fragment.xml +64 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/HarveyBallMicroChart.fragment.xml +64 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/LineMicroChart.fragment.xml +67 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/MicroChartContent.fragment.xml +41 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/MicroChartTitle.fragment.xml +52 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/RadialMicroChart.fragment.xml +58 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/microchart/fragments/StackedBarMicroChart.fragment.xml +54 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/resources.json +4885 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/share/ShareSheet.fragment.xml +26 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Actions.fragment.xml +215 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/BasicSearch-dbg.js +73 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/BasicSearch.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Column.fragment.xml +27 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/ColumnContent.fragment.xml +133 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/ColumnProperty.fragment.xml +43 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Columns.fragment.xml +37 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/CreationRow.fragment.xml +33 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/CustomColumn.fragment.xml +16 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/QuickFilterContainer-dbg.js +298 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/QuickFilterContainer.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableFullScreenUtil-dbg.js +194 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableFullScreenUtil.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper-dbg.js +1399 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableRuntime-dbg.js +231 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/TableRuntime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Utils-dbg.js +468 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/Utils.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/ValueHelp.fragment.xml +34 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegate-dbg.js +32 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegateBaseMixin-dbg.js +100 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/ALPTableDelegateBaseMixin.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalALPTableDelegate-dbg.js +36 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalALPTableDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalTableDelegate-dbg.js +147 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/AnalyticalTableDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate-dbg.js +818 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/table/delegates/TableDelegate.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar-dbg.designtime.js +83 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.designtime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.fragment.xml +115 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.metadata-dbg.js +204 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/valuehelp/ValueHelpFilterBar.metadata.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/InteractiveChartHelper-dbg.js +476 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/InteractiveChartHelper.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/VisualFilterRuntime-dbg.js +286 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/VisualFilterRuntime.js +6 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/fragments/InteractiveBarChart.fragment.xml +70 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/fragments/InteractiveDonutChart.fragment.xml +69 -0
- package/packages/sap.fe.macros/src/sap/fe/macros/visualfilters/fragments/InteractiveLineChart.fragment.xml +70 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/api.json +1001 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CollectionField.spec.js +64 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/CollectionField.spec.ts +67 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/DatapointMacro.spec.js +326 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/DatapointMacro.spec.ts +349 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroDataFieldTypes.spec.js +127 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroDataFieldTypes.spec.ts +127 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithSemanticKey.spec.js +184 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithSemanticKey.spec.ts +263 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithValueHelp.spec.js +63 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FieldMacroWithValueHelp.spec.ts +72 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterField.spec.js +32 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/FilterField.spec.ts +28 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroComponent.spec.js +39 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MacroComponent.spec.ts +26 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MicroChart.spec.js +53 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/MicroChart.spec.ts +54 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/PhantomUtil.spec.js +142 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/PhantomUtil.spec.ts +178 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/QuickViewForm.spec.js +401 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/QuickViewForm.spec.ts +662 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/SimpleFieldMacro.spec.js +571 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/SimpleFieldMacro.spec.ts +778 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.js +712 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/TableAPI.spec.ts +800 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ValueHelpMacro.spec.js +192 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/ValueHelpMacro.spec.ts +194 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/FilterField.spec.ts.snap +37 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/MacroComponent.spec.ts.snap +7 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/PhantomUtil.spec.ts.snap +184 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/QuickViewForm.spec.ts.snap +820 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/__snapshots__/ValueHelpMacro.spec.ts.snap +279 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/addTemplatingTest.md +51 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/AdminDataPopOver.cds +8 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/CollectionField.cds +48 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroDataFieldTypes.cds +295 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroWithSemanticKey.cds +62 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FieldMacroWithValueHelp.cds +131 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/FilterFieldMacro.cds +124 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/MicroChart.cds +47 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/PhantomUtil.cds +20 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/QuickViewForm.cds +248 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/Table.cds +113 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/ValueHelpMacro.cds +163 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/data/simpleFieldMacro.cds +129 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.cds +115 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.js +180 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/FieldTemplating.spec.ts +215 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/field/__snapshots__/FieldTemplating.spec.ts.snap +160 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/fragments/MyTestFragment.xml +15 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/fragments/MyTestFragmentRepeat.xml +27 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/tsx/TestTSX.spec.tsx +49 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/jest/tsx/__snapshots__/TestTSX.spec.tsx.snap +33 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/common/testHelper.js +24 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/index.json +154 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/AnalyticalTableDelegate.qunit.js +158 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ChartDelegate.qunit.js +275 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ChartHelper.qunit.js +601 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ChartHelperTemplate.qunit.js +67 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/CommonHelper.qunit.js +1607 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelper.qunit.js +2478 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FieldHelperTemplate.qunit.js +383 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FilterBarDelegate.qunit.js +89 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FilterBarHelper.qunit.js +223 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FilterFieldHelper.qunit.js +712 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormContainerTemplating.qunit.js +245 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormElementTemplating.qunit.js +83 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormHelper.qunit.js +209 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplating.qunit.js +577 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/FormTemplatingTs.qunit.js +271 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/InteractiveChartHelper.qunit.js +1227 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MacroMetadata.qunit.js +123 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartContainer.qunit.js +1637 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartHelper.qunit.js +619 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/MicroChartHelperForTemplate.qunit.js +360 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/PhantomUtil.qunit.js +307 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/QuickViewLinkDelegate.qunit.js +81 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableDelegate.qunit.js +734 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableHelper.qunit.js +2630 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableHelperTemplate.qunit.js +201 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/TableRuntime.qunit.js +861 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueHelpTemplating.qunit.js +176 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/ValueListHelper.qunit.js +1133 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/chartMetadata/metadata.xml +461 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/flexibility/FormDelegate.qunit.js +408 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/fragments/FilterFieldMacro.fragment.xml +9 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/fragments/FilterFieldMacroMissingID.fragment.xml +9 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/fragments/TableMacro.fragment.xml +22 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/macros/metadata/simpleMetadata.js +1415 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/teststarter.qunit.html +13 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/testsuite.qunit.html +14 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/qunit/testsuite.qunit.js +41 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.91.json +76 -0
- package/packages/sap.fe.macros/test/sap/fe/macros/relnotes/changes-1.94.json +29 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/.library +36 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/.theming +6 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/NavError-dbg.js +49 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/NavError.js +6 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/NavigationHandler-dbg.js +2215 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/NavigationHandler.js +6 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/PresentationVariant-dbg.js +347 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/PresentationVariant.js +6 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/SelectionVariant-dbg.js +774 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/SelectionVariant.js +6 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-dbg.js +170 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js +19 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js +129 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library-preload.js.map +9 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/library.js +6 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/manifest.json +44 -0
- package/packages/sap.fe.navigation/src/sap/fe/navigation/resources.json +215 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/api.json +1 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/index.json +17 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/CrossAppNavigationServiceMock.js +110 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/NavigationHandlerTest.qunit.js +8625 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/PresentationVariantTest.qunit.js +179 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/navigation/SelectionVariantTest.qunit.js +1366 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/teststarter.qunit.html +13 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/testsuite.qunit.html +14 -0
- package/packages/sap.fe.navigation/test/sap/fe/navigation/qunit/testsuite.qunit.js +41 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.library +35 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/.theming +5 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/controller/Placeholder-dbg.controller.js +60 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/controller/Placeholder.controller.js +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-dbg.js +41 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js +20 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js +21 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library-preload.js.map +9 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/library.js +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/manifest.json +49 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/resources.json +725 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/.theming +5 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/Placeholder.less +504 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.less +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/css_variables.source.less +1439 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library.less +511 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/base/resources.json +70 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/.theming +27 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.css +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.less +1497 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/css_variables.source.less +1487 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library-RTL.css +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library.css +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/.theming +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.less +1463 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/css_variables.source.less +1453 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcb/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/.theming +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.less +1463 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/css_variables.source.less +1453 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_hcw/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/.theming +26 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.css +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.less +1497 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/css_variables.source.less +1487 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library-RTL.css +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library.css +4 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_belize_plus/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/.theming +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.less +1468 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/css_variables.source.less +1458 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/.theming +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.less +1468 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/css_variables.source.less +1458 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_dark/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/.theming +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.less +1464 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/css_variables.source.less +1454 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcb/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/.theming +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.less +1464 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/css_variables.source.less +1454 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library-RTL.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library-parameters.json +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library.css +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library.less +6 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library.source.less +3 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library_skeleton-RTL.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/library_skeleton.css +1 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/themes/sap_fiori_3_hcw/resources.json +64 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderALP.fragment.html +10 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderALP.view.xml +11 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderLR.fragment.html +8 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderLR.view.xml +11 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOP.fragment.html +8 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOP.view.xml +11 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOVP.fragment.html +8 -0
- package/packages/sap.fe.placeholder/src/sap/fe/placeholder/view/PlaceholderOVP.view.xml +11 -0
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/api.json +1 -0
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.placeholder/test/sap/fe/placeholder/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/.library +74 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/.theming +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/Component-dbg.js +15 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/Component.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/chart/FEChartDelegate-dbg.js +37 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/chart/FEChartDelegate.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/manifest.json +27 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/AnalyticalListPage/resources.json +27 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent-dbg.js +121 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListComponent.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component-dbg.js +42 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/Component.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ExtensionAPI-dbg.js +95 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ExtensionAPI.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReport.view.xml +199 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController-dbg.controller.js +954 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/ListReportController.controller.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/manifest.json +28 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/IntentBasedNavigation-dbg.js +52 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/IntentBasedNavigation.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/Share-dbg.js +124 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/Share.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/ViewState-dbg.js +264 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/overrides/ViewState.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/resources.json +79 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/CollectionVisualization.fragment.xml +32 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/CustomView.fragment.xml +10 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ListReport/view/fragments/MultipleMode.fragment.xml +49 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper-dbg.js +457 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/AnnotationHelper.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component-dbg.js +139 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/Component.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ExtensionAPI-dbg.js +130 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ExtensionAPI.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPage.view.xml +184 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController-dbg.controller.js +1460 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/ObjectPageController.controller.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableHBox-dbg.js +90 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableHBox.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableVBox-dbg.js +27 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/StashableVBox.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/SubSectionBlock-dbg.js +57 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/controls/SubSectionBlock.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/FlexBox-dbg.designtime.js +19 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/FlexBox.designtime.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableHBox-dbg.designtime.js +51 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableHBox.designtime.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableVBox-dbg.designtime.js +38 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/designtime/StashableVBox.designtime.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility-dbg.js +19 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableVBox.flexibility-dbg.js +15 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/flexibility/StashableVBox.flexibility.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/manifest.json +122 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/IntentBasedNavigation-dbg.js +55 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/IntentBasedNavigation.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/InternalRouting-dbg.js +20 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/InternalRouting.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/MessageHandler-dbg.js +20 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/MessageHandler.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Routing-dbg.js +21 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Routing.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Share-dbg.js +303 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/Share.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/ViewState-dbg.js +45 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/overrides/ViewState.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/resources.json +282 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating-dbg.js +117 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating.js +5 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/templating/ObjectPageTemplating.ts +124 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/Actions.fragment.xml +183 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/EditableHeaderFacet.fragment.xml +160 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FooterContent.fragment.xml +117 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FormActionButtons.fragment.xml +79 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/FormActions.fragment.xml +24 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderContent.fragment.xml +54 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderDataPoint.fragment.xml +26 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderDataPointTitle.fragment.xml +69 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderFacet.fragment.xml +90 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderFacetCustomContainer.fragment.xml +41 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/HeaderImage.fragment.xml +24 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/ObjectPageHeaderAddress.fragment.xml +20 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/ObjectPageHeaderForm.fragment.xml +72 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/RelatedApps.fragment.xml +22 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/Section.fragment.xml +71 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionContent.fragment.xml +175 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionCustomSection.fragment.xml +18 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionFormContent.fragment.xml +18 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionMoreFormContent.fragment.xml +18 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SectionPresentationVisualization.fragment.xml +17 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/SideContentCustomContainer.fragment.xml +19 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/ObjectPage/view/fragments/TitleAndSubtitle.fragment.xml +24 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/Fcl-dbg.controller.js +816 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/Fcl.controller.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/NavContainer-dbg.controller.js +176 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/NavContainer.controller.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/RootContainerBaseController-dbg.js +441 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/controller/RootContainerBaseController.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/overrides/EditFlow-dbg.js +18 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/overrides/EditFlow.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/Fcl.view.xml +15 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/NavContainer.view.xml +9 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/PlaceholderLR.view.xml +617 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/RootContainer/view/PlaceholderOP.view.xml +588 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/Chart.fragment.xml +20 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/OverflowToolbarButtonHover-dbg.js +26 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/OverflowToolbarButtonHover.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/Paginator-dbg.js +174 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/Paginator.control.xml +24 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/Paginator.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/controls/Table.fragment.xml +23 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/designtime/library-preload.designtime.js +10 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/designtime/library-preload.designtime.js.map +9 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/library-dbg.js +72 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js +77 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js +154 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/library-preload.js.map +9 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/library.js +6 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/manifest.json +136 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle.properties +210 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ar.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_bg.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ca.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cs.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_cy.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_da.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_de.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_el.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_GB.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_sappsd.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saprigi.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_en_US_saptrc.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_es_MX.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_et.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fi.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_fr_CA.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hi.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hr.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_hu.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_id.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_it.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_iw.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ja.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_kk.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ko.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lt.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_lv.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ms.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_nl.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_no.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pl.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_pt_PT.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ro.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_ru.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sh.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sk.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sl.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_sv.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_th.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_tr.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_uk.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_vi.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_CN.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/messagebundle_zh_TW.properties +135 -0
- package/packages/sap.fe.templates/src/sap/fe/templates/resources.json +2103 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/Component.js +9 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/WEB-INF/web.xml +120 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/annotations/annotations.xml +43 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/i18n/i18n.properties +13 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/manifest.json +176 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/test/manifestCreateDialogWithFCL.json +87 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/test/testFLP.html +71 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/apps/itelo/webapp/test/testFLPService.html +82 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/flpSandbox.html +24 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/flpSandbox.js +225 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/mockServer.js +780 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/demokit/mockServerHelper.js +195 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/api.json +1 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/qunit/common/testHelper.js +80 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/qunit/common/utility.js +28 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/qunit/testsuite.qunit.html +14 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/qunit/testsuite.qunit.js +33 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.91.json +134 -0
- package/packages/sap.fe.templates/test/sap/fe/templates/relnotes/changes-1.94.json +34 -0
- package/packages/sap.fe.test/src/sap/fe/test/.library +30 -0
- package/packages/sap.fe.test/src/sap/fe/test/.theming +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/BaseActions-dbg.js +107 -0
- package/packages/sap.fe.test/src/sap/fe/test/BaseActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/BaseArrangements-dbg.js +199 -0
- package/packages/sap.fe.test/src/sap/fe/test/BaseArrangements.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/BaseAssertions-dbg.js +56 -0
- package/packages/sap.fe.test/src/sap/fe/test/BaseAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/ConfirmDialog-dbg.js +72 -0
- package/packages/sap.fe.test/src/sap/fe/test/ConfirmDialog.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/FCLView-dbg.js +86 -0
- package/packages/sap.fe.test/src/sap/fe/test/FCLView.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/Flexibility-dbg.js +743 -0
- package/packages/sap.fe.test/src/sap/fe/test/Flexibility.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/FlexibleColumnLayout-dbg.js +149 -0
- package/packages/sap.fe.test/src/sap/fe/test/FlexibleColumnLayout.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper-dbg.js +284 -0
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.js +5 -0
- package/packages/sap.fe.test/src/sap/fe/test/JestTemplatingHelper.ts +242 -0
- package/packages/sap.fe.test/src/sap/fe/test/JourneyRunner-dbg.js +314 -0
- package/packages/sap.fe.test/src/sap/fe/test/JourneyRunner.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/ListReport-dbg.js +525 -0
- package/packages/sap.fe.test/src/sap/fe/test/ListReport.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/LocationUtil-dbg.js +54 -0
- package/packages/sap.fe.test/src/sap/fe/test/LocationUtil.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/ObjectPage-dbg.js +857 -0
- package/packages/sap.fe.test/src/sap/fe/test/ObjectPage.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/Shell-dbg.js +226 -0
- package/packages/sap.fe.test/src/sap/fe/test/Shell.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/Stubs-dbg.js +97 -0
- package/packages/sap.fe.test/src/sap/fe/test/Stubs.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/TemplatePage-dbg.js +447 -0
- package/packages/sap.fe.test/src/sap/fe/test/TemplatePage.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/TemplatingTestUtils-dbg.js +243 -0
- package/packages/sap.fe.test/src/sap/fe/test/TemplatingTestUtils.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/Utils-dbg.js +301 -0
- package/packages/sap.fe.test/src/sap/fe/test/Utils.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/APIHelper-dbg.js +117 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/APIHelper.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/BaseAPI-dbg.js +285 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/BaseAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/ChartActions-dbg.js +131 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/ChartActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/ChartAssertions-dbg.js +114 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/ChartAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogAPI-dbg.js +93 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogActions-dbg.js +101 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogAssertions-dbg.js +123 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateActions-dbg.js +44 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateAssertions-dbg.js +55 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogCreateAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageActions-dbg.js +59 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageAssertions-dbg.js +87 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogMessageAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogType-dbg.js +76 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogType.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpActions-dbg.js +317 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpAssertions-dbg.js +263 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/DialogValueHelpAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/EditState-dbg.js +67 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/EditState.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAPI-dbg.js +197 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarActions-dbg.js +310 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAssertions-dbg.js +413 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FilterBarAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterAPI-dbg.js +37 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsBase-dbg.js +47 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsBase.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsOP-dbg.js +83 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterActionsOP.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsBase-dbg.js +66 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsBase.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsOP-dbg.js +98 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FooterAssertionsOP.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FormAPI-dbg.js +82 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FormAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FormActions-dbg.js +180 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FormActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FormAssertions-dbg.js +182 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/FormAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAPI-dbg.js +152 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActions-dbg.js +232 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActionsLR-dbg.js +94 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderActionsLR.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertions-dbg.js +495 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertionsLR-dbg.js +110 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderAssertionsLR.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderLR-dbg.js +74 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/HeaderLR.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/TableAPI-dbg.js +452 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/TableAPI.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/TableActions-dbg.js +958 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/TableActions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/TableAssertions-dbg.js +697 -0
- package/packages/sap.fe.test/src/sap/fe/test/api/TableAssertions.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/DialogBuilder-dbg.js +118 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/DialogBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/FEBuilder-dbg.js +428 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/FEBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/KPIBuilder-dbg.js +56 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/KPIBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MacroFieldBuilder-dbg.js +174 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MacroFieldBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFieldBuilder-dbg.js +254 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFieldBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterBarBuilder-dbg.js +112 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterBarBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterFieldBuilder-dbg.js +54 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcFilterFieldBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcTableBuilder-dbg.js +1069 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/MdcTableBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/OverflowToolbarBuilder-dbg.js +89 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/OverflowToolbarBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/VMBuilder-dbg.js +268 -0
- package/packages/sap.fe.test/src/sap/fe/test/builder/VMBuilder.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/internal/FEArrangements-dbg.js +66 -0
- package/packages/sap.fe.test/src/sap/fe/test/internal/FEArrangements.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/internal/FEJourneyRunner-dbg.js +55 -0
- package/packages/sap.fe.test/src/sap/fe/test/internal/FEJourneyRunner.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/library-dbg.js +37 -0
- package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js +78 -0
- package/packages/sap.fe.test/src/sap/fe/test/library-h2-preload.js.map +9 -0
- package/packages/sap.fe.test/src/sap/fe/test/library-preload.js +587 -0
- package/packages/sap.fe.test/src/sap/fe/test/library-preload.js.map +9 -0
- package/packages/sap.fe.test/src/sap/fe/test/library.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/manifest.json +39 -0
- package/packages/sap.fe.test/src/sap/fe/test/massEdit-dbg.js +99 -0
- package/packages/sap.fe.test/src/sap/fe/test/massEdit.js +6 -0
- package/packages/sap.fe.test/src/sap/fe/test/resources.json +1972 -0
- package/packages/sap.fe.test/test/sap/fe/test/designtime/api.json +1 -0
- package/packages/sap.fe.test/test/sap/fe/test/designtime/apiref/api.json +1 -0
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.jsmeta.json +1 -0
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.jstemplates.json +1 -0
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.xmlmeta.json +1 -0
- package/packages/sap.fe.test/test/sap/fe/test/designtime/codeassistance/Library.xmltemplates.json +1 -0
- package/packages/sap.fe.test/test/sap/fe/test/mockserver/MockServer.js +134870 -0
- package/src/LICENSE.txt +23 -0
- package/ui5.yaml +66 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
//@ui5-bundle sap/fe/templates/library-preload.js
|
|
2
|
+
/*!
|
|
3
|
+
* SAP UI development toolkit for HTML5 (SAPUI5)
|
|
4
|
+
(c) Copyright 2009-2021 SAP SE. All rights reserved
|
|
5
|
+
|
|
6
|
+
*/
|
|
7
|
+
sap.ui.predefine('sap/fe/templates/AnalyticalListPage/Component',["sap/fe/templates/ListComponent"],function(L){"use strict";
|
|
8
|
+
var A=L.extend("sap.fe.templates.AnalyticalListPage.Component");
|
|
9
|
+
return A;},true);
|
|
10
|
+
sap.ui.predefine('sap/fe/templates/AnalyticalListPage/chart/FEChartDelegate',["sap/fe/macros/ChartDelegate"],function(B){"use strict";var C=Object.assign({},B);
|
|
11
|
+
C.rebindChart=function(m,b){var i=m.getBindingContext("pageInternal");var t=i.getProperty(i.getPath()+"/alpContentView");if(!t||t!=="Table"){B.rebindChart(m,b);}};
|
|
12
|
+
return C;},false);
|
|
13
|
+
sap.ui.predefine('sap/fe/templates/ListComponent',["sap/fe/core/TemplateComponent","sap/fe/core/library"],function(T,C){"use strict";var V=C.VariantManagement,I=C.InitialLoadMode,L=T.extend("sap.fe.templates.ListComponent",{metadata:{properties:{initialLoad:{type:"sap.fe.core.InitialLoadMode",defaultValue:I.Auto},variantManagement:{type:"sap.fe.core.VariantManagement",defaultValue:V.Page},defaultTemplateAnnotationPath:{type:"string",defaultValue:undefined},liveMode:{type:"boolean",defaultValue:false}},manifest:{"sap.ui":{"technology":"UI5","deviceTypes":{"desktop":true,"tablet":true,"phone":true},"supportedThemes":["sap_fiori_3","sap_hcb","sap_bluecrystal","sap_belize","sap_belize_plus","sap_belize_hcw"]},"sap.ui5":{"services":{"templatedViewService":{"factoryName":"sap.fe.core.services.TemplatedViewService","startup":"waitFor","settings":{"viewName":"sap.fe.templates.ListReport.ListReport","converterType":"ListReport","errorViewName":"sap.fe.core.services.view.TemplatingErrorPage"}},"asyncComponentService":{"factoryName":"sap.fe.core.services.AsyncComponentService","startup":"waitFor"}},"commands":{"Create":{"name":"Create","shortcut":"Ctrl+Enter"},"DeleteEntry":{"name":"DeleteEntry","shortcut":"Ctrl+D"},"TableSettings":{"name":"TableSettings","shortcut":"Ctrl+,"},"Share":{"name":"Share","shortcut":"Shift+Ctrl+S"}},"handleValidation":true,"dependencies":{"minUI5Version":"1.94.0","libs":{"sap.f":{},"sap.fe.macros":{"lazy":true},"sap.m":{},"sap.suite.ui.microchart":{"lazy":true},"sap.ui.core":{},"sap.ui.layout":{},"sap.ui.mdc":{},"sap.ushell":{"lazy":true},"sap.ui.fl":{}}},"contentDensities":{"compact":true,"cozy":true}}},library:"sap.fe.templates"},getViewData:function(){var v=T.prototype.getViewData.apply(this,arguments);return v;}});return L;},true);
|
|
14
|
+
sap.ui.predefine('sap/fe/templates/ListReport/Component',["sap/fe/templates/ListComponent"],function(L){"use strict";
|
|
15
|
+
var a=L.extend("sap.fe.templates.ListReport.Component",{metadata:{properties:{views:{type:"object"},keyPerformanceIndicators:{type:"object"}},library:"sap.fe.templates",manifest:"json"}});
|
|
16
|
+
return a;},true);
|
|
17
|
+
sap.ui.predefine('sap/fe/templates/ListReport/ExtensionAPI',["sap/fe/core/ExtensionAPI","sap/fe/macros/filter/FilterUtils"],function(E,F){"use strict";
|
|
18
|
+
var e=E.extend("sap.fe.templates.ListReport.ExtensionAPI",{
|
|
19
|
+
refresh:function(){var f=this._controller._getFilterBarControl();return f.waitForInitialization().then(function(){f.triggerSearch();});},
|
|
20
|
+
getSelectedContexts:function(){var t=this._controller._getCurrentTable();return(t&&t.getSelectedContexts())||[];},
|
|
21
|
+
setFilterValues:function(c,o,v){return F.setFilterValues(this._controller._getFilterBarControl(),c,o,v);},
|
|
22
|
+
createFiltersFromFilterConditions:function(f){var o=this._controller._getFilterBarControl();return F.getFilterInfo(o,undefined,f);}
|
|
23
|
+
});
|
|
24
|
+
return e;});
|
|
25
|
+
sap.ui.predefine('sap/fe/templates/ListReport/ListReportController.controller',["sap/fe/core/PageController","sap/fe/core/controllerextensions/SideEffects","sap/fe/core/controllerextensions/EditFlow","sap/fe/macros/field/FieldRuntime","sap/base/Log","sap/base/util/ObjectPath","sap/fe/navigation/SelectionVariant","sap/fe/core/CommonUtils","sap/ui/mdc/p13n/StateUtil","sap/fe/macros/table/Utils","sap/fe/macros/ResourceModel","sap/fe/core/controllerextensions/InternalRouting","sap/ui/Device","sap/fe/core/controllerextensions/IntentBasedNavigation","./overrides/IntentBasedNavigation","sap/fe/core/controllerextensions/InternalIntentBasedNavigation","sap/fe/macros/chart/ChartRuntime","sap/fe/templates/ListReport/ExtensionAPI","sap/fe/macros/filter/FilterUtils","sap/fe/macros/chart/ChartUtils","sap/fe/macros/DelegateUtil","sap/ui/core/mvc/OverrideExecution","sap/fe/core/controllerextensions/ViewState","./overrides/ViewState","sap/fe/templates/RootContainer/overrides/EditFlow","sap/fe/core/helpers/EditState","sap/ui/model/json/JSONModel","sap/fe/core/library","sap/fe/core/helpers/SemanticDateOperators","sap/fe/core/controllerextensions/Share","./overrides/Share","sap/fe/macros/CommonHelper","sap/fe/core/controllerextensions/KPIManagement"],function(P,S,E,F,L,O,a,C,b,T,R,I,D,c,d,e,f,g,h,j,l,m,V,n,o,p,J,q,r,s,t,u,K){"use strict";var v=q.TemplateContentView,w=q.InitialLoadMode;return P.extend("sap.fe.templates.ListReport.ListReportController",{metadata:{methods:{getExtensionAPI:{"public":true,"final":true},onPageReady:{"public":false,"final":false,overrideExecution:m.After},onViewNeedsRefresh:{"public":true,"final":false,overrideExecution:m.After},onPendingFilters:{"public":true,"final":false,overrideExecution:m.After}}},_routing:I.override({onAfterBinding:function(i,k){this.getView().getController()._onAfterBinding(i,k);}}),_intentBasedNavigation:e.override({getEntitySet:function(){return this.base.getCurrentEntitySet();}}),sideEffects:S,intentBasedNavigation:c.override(d),share:s.override(t),editFlow:E.override(o),viewState:V.override(n),kpiManagement:K,getExtensionAPI:function(){if(!this.extensionAPI){this.extensionAPI=new g(this);}return this.extensionAPI;},onInit:function(){P.prototype.onInit.apply(this);var i=this;var k=this._getTables();var x=this.getView().getBindingContext("internal");if(i._isMultiMode()){var M=i._getMultiModeControl();x.setProperty("tabs",{selected:M.getSelectedKey()||M.getItems()[0].getKey()});k.forEach(function(z){var U=function(){i._updateCounts();};T.addEventToBindingInfo(z,"dataRequested",U);});}x.setProperty("hasPendingFilters",true);x.setProperty("appliedFilters","");x.setProperty("uom",{});x.setProperty("scalefactor",{});x.setProperty("scalefactorNumber",{});x.setProperty("currency",{});if(this._hasMultiVisualizations()){var y=this._getDefaultPath();if(!D.system.desktop&&y===v.Hybrid){y=v.Chart;}x.setProperty("alpContentView",y);}this.filterBarConditions={};this.getAppComponent().getRouterProxy().waitForRouteMatchBeforeNavigation();this._updateMultiTableHiddenStatus();h.attachConditionHandling(this._getFilterBarControl());},onExit:function(){h.detachConditionHandling(this._getFilterBarControl());delete this._sEntitySet;delete this.filterBarConditions;delete this._oListReportControl;delete this._bMultiMode;this.extensionAPI&&this.extensionAPI.destroy();delete this.extensionAPI;},_onAfterBinding:function(){var i=this._getTables();var k=this;if(p.isEditStateDirty()){var x=this._getTableBinding();if(x){if(!this.sUpdateTimer){this.sUpdateTimer=setTimeout(function(){x.refresh();delete k.sUpdateTimer;},0);}var U=function(){k._updateTableActions(i);x.detachDataReceived(U);};x.attachDataReceived(U);}p.setEditStateProcessed();}if(!this.sUpdateTimer){this._updateTableActions(i);}this.pageReady.waitFor(this.getAppComponent().getAppStateHandler().applyAppState());},onAfterRendering:function(i){var k=this;this.getView().getModel("sap.fe.i18n").getResourceBundle().then(function(x){k.oResourceBundle=x;var y=k._getTables();var z=k.getView().getViewData().entitySet;var A=C.getTranslatedText("T_OP_TABLE_AND_CHART_NO_DATA_TEXT",k.oResourceBundle,undefined,z);y.forEach(function(G){G.setNoDataText(A);});if(k._hasMultiVisualizations()){var B=k.getChartControl();B.setNoDataText(A);}}).catch(function(x){L.error("Error while retrieving the resource bundle",x);});},onPageReady:function(i){var k=i.lastFocusedControl;var x=this.getView();if(k&&k.controlId&&k.focusInfo){var y=x.byId(k.controlId);if(y){y.applyFocusInfo(k.focusInfo);}}var z=this._getFilterBarControl();if(z&&!z.getShowMessages()){z.setShowMessages(true);z.setFocusOnFirstErroneousField();}},onViewNeedsRefresh:function(i){},onPendingFilters:function(){},getCurrentEntitySet:function(){if(!this._sEntitySet){var i=this._getCurrentTable();this._sEntitySet=i.data("targetCollectionPath").slice(1);}return this._sEntitySet;},_updateTableActions:function(i){var k=[];i.forEach(function(x){k=C.getIBNActions(x,k);T.getSemanticTargetsFromTable(this,x);var y=x.getBindingContext("internal"),A=JSON.parse(u.parseCustomData(l.getCustomData(x,"operationAvailableMap"))),z=x.getSelectedContexts();C.setActionEnablement(y,A,z);}.bind(this));C.updateDataFieldForIBNButtonsVisibility(k,this.getView());},_scrollTablesToRow:function(k){var x,y,z,A;if(this._getTables&&this._getTables().length>0){x=this._getTables();for(var i=0;i<x.length;i++){y=x[i];A=y.getRowBinding();if(A){var B;switch(y.data().tableType){case"GridTable":B=A.getContexts(0);break;case"ResponsiveTable":B=A.getCurrentContexts();break;default:}z=B.find(function(H){return H&&H.getPath().indexOf(k)!==-1;});}if(z){var G=z.iIndex;y.scrollToIndex(G);}}}},_getPageTitleInformation:function(){var i=this;return new Promise(function(k,x){var y={title:"",subtitle:"",intent:"",icon:""};y.title=i.getView().getContent()[0].data().ListReportTitle;y.subtitle=i.getView().getContent()[0].data().ListReportSubtitle;k(y);});},_getFilterBarControl:function(){return this.getView().byId(this._getFilterBarControlId());},_getSegmentedButton:function(i){return this.getView().byId(this._getSegmentedButtonId(i));},_getSegmentedButtonId:function(i){if(i==="Chart"){return this.getChartControl().data("segmentedButtonId");}else{return this._getCurrentTable().data("segmentedButtonId");}},_getFilterBarControlId:function(){return this.getView().getContent()[0].data("filterBarId");},_getChartControlId:function(){return this.getView().getContent()[0].data("singleChartId");},getChartControl:function(){return this.getView().byId(this._getChartControlId());},_getVisualFilterBarControl:function(){return this.getView().byId(this._getVisualFilterBarControlId());},_getVisualFilterBarControlId:function(){return this.getView().getContent()[0].data("visualFilterBarId");},_getMultiModeControl:function(){return this.getView().byId("fe::TabMultipleMode");},_getTableControlId:function(){return this.getView().getContent()[0].data("singleTableId");},_getCurrentTable:function(){if(!this._oListReportControl){var M=this._getMultiModeControl();if(M){this._oListReportControl=this.getView().byId(M.getSelectedKey()||M.getItems()[0].getKey());}else{this._oListReportControl=this.getView().byId(this._getTableControlId());}}return this._oListReportControl;},_getTableBinding:function(i){var k=i?this.getView().byId(i):this._getCurrentTable(),B=k&&k._getRowBinding();return B;},_getTables:function(){var i=this;if(this._isMultiMode()){var k=[];var x=this._getMultiModeControl();x.getItems().forEach(function(y){var z=i.getView().byId(y.getKey());if(z){k.push(z);}});return k;}return[this._getCurrentTable()];},_getDefaultPath:function(){var i=this.getView().getContent()[0].data("defaultPath");switch(i){case"primary":return v.Chart;case"secondary":return v.Table;case"both":default:return v.Hybrid;}},_isMultiMode:function(){if(!this._oListReportControl){this._bMultiMode=!!this._getMultiModeControl();}return this._bMultiMode;},_isMultiEntitySets:function(){return(this.getView().getContent()[0].data("isMultiEntitySets")==="true");},_hasMultiVisualizations:function(){return(this.getView().getContent()[0].data("hasMultiVisualizations")==="true");},_setShareModel:function(){var G=O.get("sap.ushell.Container.getUser");var i={bookmarkTitle:document.title,bookmarkCustomUrl:function(){var H=window.hasher.getHash();return H?"#"+H:window.location.href;},isShareInJamActive:!!G&&G().isJamActive()};var k=this.getOwnerComponent().getModel("_templPriv");k.setProperty("/listReport/share",i);},_updateMultiTableHiddenStatus:function(){var i=this._getCurrentTable();if(this._isMultiMode()&&i){var k=i.getId();var x=this._getTables();x.forEach(function(y){var z=y.getId();y.data("tableHidden",z!==k);});}},_updateMultiNotApplicableFields:function(i,k){var x={};var y={},z=this._getTables();z.forEach(function(A){var B=A.data("targetCollectionPath"),G=B.slice(1),H=A.getParent().getParent().getKey(),M=G+(A.data("enableAnalytics")==="true"?"Analytical":"Regular");if(!x[M]){x[M]=h.getNotApplicableFiltersForTable(k,A);}y[H]=x[M];});i.setProperty("tabs/ignoredFields",y);},_updateTableControl:function(){this._sEntitySet=undefined;this._oListReportControl=undefined;this._getCurrentTable();},_updateCounts:function(){this._updateMutliModeCounts();},_isCustomTab:function(){var M=this._getMultiModeControl();return M&&M.getSelectedKey().indexOf("::CustomTab::")>-1;},_updateMutliModeCounts:function(){var i=this;var B=[];var M=this._getMultiModeControl();if(M&&M.data("showCounts")==="true"&&!this._isCustomTab()){var x=this._getCurrentTable();var y=x.getId();var z=[];var A=M.getItems();A.forEach(function(k){var G=i.getView().byId(k.getKey());if(G&&(k.data("outdatedCounts")||G.getId()===y)){z.push({table:G,item:k});}});B=z.map(function(k){k.item.setCount("...");var G=k.table;var H=T.getFiltersInfoForSV(G,k.item.data("selectionVariant"));return T.getListBindingForCount(G,i.getView().getBindingContext(),{batchGroupId:G.getId()===y?G.data("batchGroupId"):"$auto",additionalFilters:H.filters});});Promise.all(B).then(function(G){for(var k in G){var H=z[k].item;H.setCount(T.getCountFormatted(G[k]));H.data("outdatedCounts",false);}}).catch(function(k){L.error("Error while retrieving the values for the icon tab bar",k);});}},_shouldAutoTriggerSearch:function(i){if(this.getView().getViewData().initialLoad===w.Auto&&(!i||i.getStandardVariantKey()===i.getCurrentVariantKey())){var k=this._getFilterBarControl(),x=k.getConditions();for(var y in x){if(!y.startsWith("$")&&Array.isArray(x[y])&&x[y].length){return true;}}}return false;},_updateTable:function(i){if(!i.isTableBound()||this.hasPendingChartChanges){i.rebindTable();this.hasPendingChartChanges=false;}},_updateChart:function(i){if(!i.isInnerChartBound()||this.hasPendingTableChanges){i.getControlDelegate().rebindChart(i,i.getBindingInfo("data"));this.hasPendingTableChanges=false;}},handlers:{onTabMultiModeChange:function(i){this._updateTableControl();this._updateMultiTableHiddenStatus();var k=this._getFilterBarControl();var x=this.getView().getBindingContext("internal");var y=this._getCurrentTable();var M=this._getMultiModeControl();x.setProperty("tabs/selected",M.getSelectedKey());if(k&&x.getProperty("hasPendingFilters")!==true){if(this._isCustomTab()){var z=k.getFilterConditions();this.onViewNeedsRefresh({filterConditions:z,currentTabId:M.getSelectedKey(),refreshCause:"tabChanged"});}else if(!y.getRowBinding()||y.data("outdatedRows")===true){y.rebindTable();y.data("outdatedRows",false);}}this.getExtensionAPI().updateAppState();},onFiltersChanged:function(i){var k=this._getFilterBarControl(),x=this.getView().getBindingContext("internal");this.onPendingFilters();x.setProperty("appliedFilters",k.getAssignedFiltersText().filtersText);x.setProperty("hasPendingFilters",true);if(i.getParameter("conditionsBased")){this.getExtensionAPI().updateAppState();}},onVariantSelected:function(i){var k=this,x=i.getSource();setTimeout(function(){if(k._shouldAutoTriggerSearch(x)){return k._getFilterBarControl().triggerSearch();}else{k.getExtensionAPI().updateAppState();}},0);},onVariantSaved:function(i){var k=this;setTimeout(function(){k.getExtensionAPI().updateAppState();},1000);},onSearch:function(i){var k=this;var x=this._getFilterBarControl();var y=this.getView().getBindingContext("internal");var M=this.getChartControl();y.setProperty("hasPendingFilters",false);if(this._isMultiMode()){var z=this._getTables(),A=this._getMultiModeControl();if(A&&A.data("showCounts")==="true"){var B=A.getItems();B.forEach(function(U){U.data("outdatedCounts",true);});}if(!this._isCustomTab()){var G=this._getCurrentTable().getId();this._updateMultiNotApplicableFields(y,x);z.forEach(function(U){U.data("outdatedRows",U.getId()!==G);});}else{var H=x.getFilterConditions();this.onViewNeedsRefresh({filterConditions:H,currentTabId:A.getSelectedKey(),refreshCause:"search"});}}if(M){M.getBindingContext("internal").setProperty("",{});var N=M.getBindingContext("pageInternal");var Q=N.getProperty(N.getPath()+"/alpContentView");if(Q===v.Chart){this.hasPendingChartChanges=true;}if(Q===v.Table){this.hasPendingTableChanges=true;}}b.retrieveExternalState(x).then(function(U){k.filterBarConditions=U.filter;}).catch(function(U){L.error("Error while retrieving the external state",U);});if(this.getView().getViewData().liveMode===false){this.getExtensionAPI().updateAppState();}},onChevronPressNavigateOutBound:function(i,k,x){var y=i.getAppComponent().getRoutingService().getOutbounds(),z=y[k];if(z&&z.semanticObject&&z.action){x=x&&x.isA&&x.isA("sap.ui.model.odata.v4.Context")?[x]:x;i._intentBasedNavigation.navigate(z.semanticObject,z.action,{navigationContexts:x});return Promise.resolve();}else{throw new Error("outbound target "+k+" not found in cross navigation definition of manifest");}},onChartSelectionChanged:function(i){var M=i.getSource(),k=this._getCurrentTable(),x=i.getParameter("dataContext"),y=this.getView().getBindingContext("internal");if(x&&x.data){f.fnUpdateChart(i);j.setChartFilters(M);}var z=y.getProperty(y.getPath()+"/alpContentView");if(z===v.Chart){this.hasPendingChartChanges=true;}else{k&&k.rebindTable();this.hasPendingChartChanges=false;}},onSegmentedButtonPressed:function(i){var k=i.mParameters.key?i.mParameters.key:null;var x=this.getView().getBindingContext("internal");x.setProperty("alpContentView",k);var y;var z=this.getChartControl();var A=this._getCurrentTable();var B={onAfterRendering:function(){var G=y.getItems();G.forEach(function(H){if(H.getKey()===k){H.focus();}});y.removeEventDelegate(B);}};y=k===v.Table?this._getSegmentedButton("Table"):this._getSegmentedButton("Chart");if(y!==i.getSource()){y.addEventDelegate(B);}switch(k){case v.Table:this._updateTable(A);break;case v.Chart:this._updateChart(z);break;case v.Hybrid:this._updateTable(A);this._updateChart(z);break;default:break;}this.getExtensionAPI().updateAppState();},onFiltersSegmentedButtonPressed:function(i){if(i.getParameter("key")==="Compact"){this._getFilterBarControl().setVisible(true);this.getView().byId(this.getView().getContent()[0].data("visualFilterBarId")).setVisible(false);}else{this._getFilterBarControl().setVisible(false);this.getView().byId(this.getView().getContent()[0].data("visualFilterBarId")).setVisible(true);}}},formatters:{setTabMessageStrip:function(i,k){var x="";if(Array.isArray(i)&&i.length>0&&k){var y=this._getFilterBarControl(),z=y.data("entityType"),M=this.getView().getModel().getMetaModel(),A=sap.ui.getCore().getLibraryResourceBundle("sap.fe.templates"),B=i.map(function(N){if(N==="$search"){var Q=sap.ui.getCore().getLibraryResourceBundle("sap.fe.macros");return Q?Q.getText("M_FILTERBAR_SEARCH"):"";}var U=M.getObject(z+N+"@com.sap.vocabularies.Common.v1.Label");return l.getLocalizedText(U,y);});if(A){var G="C_LR_MULTITABLES_"+(B.length===1?"SINGLE":"MULTI")+"_IGNORED_FILTER_"+(D.system.desktop?"LARGE":"SMALL"),H=l.getLocalizedText(k,y);x=A.getText(G,[B.join(", "),H]);}}return x;}}});});
|
|
26
|
+
sap.ui.predefine('sap/fe/templates/ListReport/overrides/IntentBasedNavigation',["sap/fe/core/CommonUtils"],function(C){"use strict";return{adaptNavigationContext:function(s,t){if(!s.isEmpty()){var v=this.getView(),V=v.getViewData(),c=v.getController(),r=V.fullContextPath+V.entitySet;var f=Object.assign({},this.base.getView().getController().filterBarConditions);var p=[];if(V.contextPath){var m=v.getModel().getMetaModel(),P=C.getParameterInfo(m,V.contextPath),o=P.parameterProperties;p=(o&&Object.keys(o))||[];}f=c._intentBasedNavigation.prepareFiltersForExternalNavigation(f,r,p);var i=v.getBindingContext("internal");var T=i.getProperty("tabs");if(T){var I=T.ignoredFields[T.selected];if(Array.isArray(I)&&I.length>0){I.forEach(function(a){delete f.filterConditions[a];});}}C.addExternalStateFiltersToSelectionVariant(s,f,t);delete t.propertiesWithoutConflict;}},getEntitySet:function(){return this.base.getCurrentEntitySet();}};});
|
|
27
|
+
sap.ui.predefine('sap/fe/templates/ListReport/overrides/Share',["sap/fe/core/helpers/SemanticDateOperators","sap/ui/core/routing/HashChanger","sap/fe/core/CommonUtils","sap/base/Log"],function(S,H,C,L){"use strict";
|
|
28
|
+
function g(o){var t=o.getView().getContent()[0].data().singleTableId;if(!t){t=o.getView().byId("fe::TabMultipleMode").getSelectedKey();}var T=o.getView().byId(t);if(!T){return"";}var B=T.getRowBinding()||T.getBinding("items");var d=(B&&B.getDownloadUrl())||"";var s=d.split("?");var e=s[0]+"/$count?";var f=[];if(s.length>1){var u=s[1];u.split("&").forEach(function(h){var U=h.split("=");switch(U[0]){case"$apply":case"$search":case"$filter":f.push(h);}});}return e+f.join("&");}
|
|
29
|
+
function a(){var s;var h=H.getInstance().getHash();var B=H.getInstance().hrefForAppSpecificHash?H.getInstance().hrefForAppSpecificHash(""):"";s=h?B+h:window.location.hash;return s;}
|
|
30
|
+
function b(o){var f=o.getView().byId(o.getView().getContent()[0].data("filterBarId"));var d=f.getFilterConditions();var e=S.hasSemanticDateOperations(d);if(e){return g(o);}else{return"";}}
|
|
31
|
+
function c(){var j;var h=H.getInstance().getHash();var B=H.getInstance().hrefForAppSpecificHash?H.getInstance().hrefForAppSpecificHash(""):"";j=h?B+h:window.location.hash;if(sap.ushell&&sap.ushell.Container&&sap.ushell.Container.runningInIframe&&sap.ushell.Container.runningInIframe()){sap.ushell.Container.getFLPUrl(true).then(function(u){return u.substr(0,u.indexOf("#"))+j;}).catch(function(e){L.error("Could not retrieve cFLP URL for the sharing dialog (dialog will not be opened)",e);});}else{return window.location.origin+window.location.pathname+j;}}
|
|
32
|
+
return{adaptShareMetadata:function(s){var t=this;return Promise.resolve(c()).then(function(j){var A=C.getAppComponent(t.base.getView());var m=A.getMetadata();var u=m.getManifestEntry("sap.ui");var i=(u&&u.icons&&u.icons.icon)||"";var o=m.getManifestEntry("sap.app");var T=(o&&o.title)||"";s.tile={icon:i,title:T,queryUrl:b(t.base)};s.title=document.title;s.url=a();s.jam.url=j;return s;});}};});
|
|
33
|
+
sap.ui.predefine('sap/fe/templates/ListReport/overrides/ViewState',["sap/fe/core/library","sap/fe/navigation/library","sap/fe/core/CommonUtils","sap/ui/fl/apply/api/ControlVariantApplyAPI","sap/ui/mdc/p13n/StateUtil","sap/ui/Device","sap/ui/mdc/enum/ConditionValidated"],function(C,N,a,b,S,D,c){"use strict";var d=N.NavType,V=C.VariantManagement,T=C.TemplateContentView,I=C.InitialLoadMode;return{applyInitialStateOnly:function(){return true;},onBeforeStateApplied:function(p){var v=this.getView(),o=v.getController(),f=o._getFilterBarControl(),t=o._getTables();f.setSuspendSelection(true);t.forEach(function(e){p.push(e.initialized());});p.push(f.initialized());delete this._bSearchTriggered;},onAfterStateApplied:function(){var v=this.getView(),o=v.getController();o._getFilterBarControl().setSuspendSelection(false);},adaptStateControls:function(s){var v=this.getView(),o=v.getController(),e=v.getViewData(),f=e.variantManagement===V.Control;if(o._isMultiMode()){s.push(o._getMultiModeControl());}var F=this._getFilterBarVM(v);if(F){s.push(F);}o._getTables().forEach(function(t){var q=t.getQuickFilter();if(q){s.push(q);}if(f){s.push(t.getVariant());}});if(o._hasMultiVisualizations()){s.push(o._getSegmentedButton(T.Chart));s.push(o._getSegmentedButton(T.Table));}s.push(o._getFilterBarControl());s.push(v.byId("fe::ListReport"));},retrieveAdditionalStates:function(A){var v=this.getView(),o=v.getController(),p=v.getBindingContext("internal").getProperty("hasPendingFilters");A.dataLoaded=!p||!!this._bSearchTriggered;if(o._hasMultiVisualizations()){var s=v.getBindingContext("internal").getProperty("alpContentView");A.alpContentView=s;}delete this._bSearchTriggered;},applyAdditionalStates:function(A){var v=this.getView(),o=v.getController(),f=o._getFilterBarControl();if(A){if(A.dataLoaded===false){f._bSearchTriggered=false;}else if(A.dataLoaded===true){o._getFilterBarControl().triggerSearch();this._bSearchTriggered=true;}if(o._hasMultiVisualizations()){var i=v.getBindingContext("internal");if(!D.system.desktop&&A.alpContentView==T.Hybrid){A.alpContentView=T.Chart;}i.getModel().setProperty(i.getPath()+"/alpContentView",A.alpContentView);}}},applyNavigationParameters:function(n,r){var v=this.getView(),t=this;var R=this._applySelectionVariant(v,n).then(function(){var o=v.getController();var e=v.byId("fe::ListReport");var p=false;var f=t._getFilterBarVM(v);var F=o._getFilterBarControl();if(n.navigationType!==d.initial||(!f&&v.getViewData().initialLoad===I.Enabled)||o._shouldAutoTriggerSearch(f)){F.triggerSearch();}else{p=t._preventInitialSearch(f);}t._bSearchTriggered=!p;e.setHeaderExpanded(D.system.desktop||p);});r.push(R);},_getFilterBarVM:function(v){var o=v.getViewData();switch(o.variantManagement){case V.Page:return v.byId("fe::PageVariantManagement");case V.Control:return v.byId(v.getContent()[0].data("filterBarVariantId"));case V.None:return null;default:throw new Error("unhandled variant setting: "+o.variantManagement);}},_preventInitialSearch:function(v){if(!v){return true;}var e=v.getVariants();var o=e.find(function(i){return i.key===v.getCurrentVariantKey();});return!o.executeOnSelect;},_applySelectionVariant:function(v,n){var s=n.selectionVariant,o=n.selectionVariantDefaults;if(!s){return Promise.resolve();}var e={},m=v.getModel().getMetaModel(),f=v.getViewData(),g=f.contextPath||"/"+f.entitySet,F=v.byId(v.getContent()[0].data("filterBarId")),M=a.getMandatoryFilterFields(m,g),h,r=n.requiresStandardVariant;a.addDefaultDisplayCurrency(M,s,o);a.addSelectionVariantToConditions(s,e,m,g);switch(f.variantManagement){case V.Page:h=v.byId("fe::PageVariantManagement");break;case V.Control:h=v.byId(v.getContent()[0].data("filterBarVariantId"));break;case V.None:default:break;}return this._activateSelectionVariant(F,e,h,r);},_activateSelectionVariant:function(f,o,v,r){var t=this,p;if(v){var e=r?v.getStandardVariantKey():v.getDefaultVariantKey();if(e===null){e=v.getId();}p=b.activateVariant({element:v,variantReference:e}).then(function(){return r||v.getDefaultVariantKey()===v.getStandardVariantKey();});}else{p=Promise.resolve(true);}return p.then(function(g){if(g){return t._fnClearFilterAndReplaceWithAppState(f,o);}});},_fnApplyConditions:function(f,o){var F={},i=[],A=function(e){e.validated=c.Validated;if(e.operator==="Empty"){e.operator="EQ";e.values=[""];}else if(e.operator==="NotEmpty"){e.operator="NE";e.values=[""];}delete e.isEmpty;};return f.initialized().then(function(){f.getPropertyInfoSet().filter(function(p){return p.path!=="$editState"&&p.path!=="$search";}).forEach(function(p){if(p.path in o){F[p.path]=o[p.path];if(!p.hiddenFilter){i.push({name:p.path});}if(p.hasValueHelp){F[p.path].forEach(A);}}else{F[p.path]=[];}});return S.applyExternalState(f,{filter:F,items:i});});},_fnClearFilterAndReplaceWithAppState:function(f,o){return this._fnApplyConditions(f,{}).then(this._fnApplyConditions.bind(this,f,o));}};});
|
|
34
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/AnnotationHelper',["sap/ui/model/odata/v4/AnnotationHelper","sap/ui/base/ManagedObject","sap/fe/macros/CommonHelper"],function(O,M,C){"use strict";var A={getElementBinding:function(p){var n=O.getNavigationPath(p);if(n){return"{path:'"+n+"'}";}else{return"{path: ''}";}},checkDraftState:function(a){if(a["@com.sap.vocabularies.Common.v1.DraftRoot"]&&a["@com.sap.vocabularies.Common.v1.DraftRoot"]["EditAction"]){return true;}else{return false;}},getSwitchToActiveVisibility:function(a){if(this.checkDraftState(a)){return"{= (${ui>/editMode} === 'Editable') && !${ui>createMode} && %{DraftAdministrativeData/DraftIsCreatedByMe} }";}else{return false;}},getSwitchToDraftVisibility:function(a){if(this.checkDraftState(a)){return"{= !(${ui>/editMode} === 'Editable') && !${ui>createMode} && (${HasDraftEntity} && %{DraftAdministrativeData/DraftIsCreatedByMe}) }";}else{return false;}},_findAction:function(c,a){var o;if(c&&c.length){o=c.find(function(h){return h.type===a;});}return o;},getDeleteCommandExecutionEnabled:function(c){var d=A._findAction(c,"Secondary");return d?d.enabled:"true";},getDeleteCommandExecutionVisible:function(c){var d=A._findAction(c,"Secondary");return d?d.visible:"true";},getEditCommandExecutionVisible:function(c){var e=A._findAction(c,"Primary");return e?e.visible:"true";},getEditCommandExecutionEnabled:function(c){var e=A._findAction(c,"Primary");return e?e.enabled:"true";},getEditAction:function(e){var p=e.getPath(),a=e.getObject(p+"@");var d=a.hasOwnProperty("@com.sap.vocabularies.Common.v1.DraftRoot");var s=a.hasOwnProperty("@com.sap.vocabularies.Session.v1.StickySessionSupported");var b;if(d){b=e.getObject(p+"@com.sap.vocabularies.Common.v1.DraftRoot/EditAction");}else if(s){b=e.getObject(p+"@com.sap.vocabularies.Session.v1.StickySessionSupported/EditAction");}return!b?b:p+"/"+b;},isReadOnlyFromStaticAnnotations:function(a,f){var c,i,r;if(a["@Org.OData.Core.V1.Computed"]){c=a["@Org.OData.Core.V1.Computed"].Bool?a["@Org.OData.Core.V1.Computed"].Bool=="true":true;}if(a["@Org.OData.Core.V1.Immutable"]){i=a["@Org.OData.Core.V1.Immutable"].Bool?a["@Org.OData.Core.V1.Immutable"].Bool=="true":true;}r=c||i;if(f){r=r||f=="com.sap.vocabularies.Common.v1.FieldControlType/ReadOnly";}if(r){return false;}else{return true;}},isReadOnlyFromDynamicAnnotations:function(f){var i;if(f){if(M.bindingParser(f)){i="$"+f+" === '1'";}}if(i){return"{= "+i+"? false : true }";}else{return true;}},getExpressionForMicroChartTitlePress:function(c,m,s){if(c){if((c["targetOutbound"]&&c["targetOutbound"]["outbound"])||(c["targetOutbound"]&&c["targetOutbound"]["outbound"]&&c["targetSections"])){return(".handlers.onDataPointTitlePressed($controller, ${$source>/},'"+JSON.stringify(m)+"','"+c["targetOutbound"]["outbound"]+"','"+s+"' )");}else if(c["targetSections"]){return".handlers.navigateToSubSection($controller, '"+JSON.stringify(c["targetSections"])+"')";}else{return undefined;}}},getMicroChartTitleAsLink:function(c){if(c&&(c["targetOutbound"]||(c["targetOutbound"]&&c["targetSections"]))){return"External";}else if(c&&c["targetSections"]){return"InPage";}else{return"None";}},getGroupIdFromConfig:function(c,a,d){var o=c[a],b=["Heroes","Decoration","Workers","LongRunners"],g=d;if(o&&o.requestGroupId&&b.some(function(e){return e===o.requestGroupId;})){g="$auto."+o.requestGroupId;}return g;},getBindingWithGroupIdFromConfig:function(c,k){var g=A.getGroupIdFromConfig(c,k),b;if(g){b="{ path : '', parameters : { $$groupId : '"+g+"' } }";}return b;},doesFieldGroupContainOnlyOneMultiLineDataField:function(f){return f&&f.length===1&&!!f[0].isValueMultilineText;},getVisibleExpressionForBreadcrumbs:function(v){return v.showBreadCrumbs&&v.fclEnabled!==undefined?"{fclhelper>/breadCrumbIsVisible}":v.showBreadCrumbs;},getShareButtonVisibility:function(v){var s="!${ui>createMode}";if(v.fclEnabled){s="${fclhelper>/showShareIcon} && "+s;}return"{= "+s+" }";},getVisiblityOfHeaderFacet:function(a,f){return(A.isReadOnlyFromStaticAnnotations(a,f)&&A.isReadOnlyFromDynamicAnnotations(f));},getPressExpressionForDelete:function(e){var d="${$view>/getBindingContext}",t="${$view>/#fe::ObjectPage/getHeaderTitle/getExpandedHeading/getItems/1/getItems/0/getText}",D="${$view>/#fe::ObjectPage/getHeaderTitle/getExpandedHeading/getItems/1/getItems/1/getText}";var p={title:t,entitySetName:C.addSingleQuotes(e),description:D};return C.generateFunction(".editFlow.deleteDocument",d,C.objectToString(p));},getPressExpressionForEdit:function(d,e,h){var E=C.addSingleQuotes(d&&d.Action),D=d&&d.InvocationGrouping&&d.InvocationGrouping["$EnumMember"],i=D==="com.sap.vocabularies.UI.v1.OperationGroupingType/ChangeSet"?"ChangeSet":"Isolated";var p={contexts:"${$view>/getBindingContext}",entitySetName:C.addSingleQuotes(e),invocationGrouping:C.addSingleQuotes(i),model:"${$source>/}.getModel()",label:C.addSingleQuotes(d&&d.Label),isNavigable:h&&h.isNavigable,defaultValuesExtensionFunction:h&&h.defaultValuesExtensionFunction?"'"+h.defaultValuesExtensionFunction+"'":undefined};return C.generateFunction(".handlers.onCallAction","${$view>/}",E,C.objectToString(p));},getPressExpressionForFooterAnnotationAction:function(d,e,h){var a=C.addSingleQuotes(d&&d.Action),D=d&&d.InvocationGrouping&&d.InvocationGrouping["$EnumMember"],i=D==="com.sap.vocabularies.UI.v1.OperationGroupingType/ChangeSet"?"ChangeSet":"Isolated";var p={contexts:"${$view>/#fe::ObjectPage/}.getBindingContext()",entitySetName:C.addSingleQuotes(e),invocationGrouping:C.addSingleQuotes(i),model:"${$source>/}.getModel()",label:C.addSingleQuotes(d&&d.Label),isNavigable:h&&h.isNavigable,defaultValuesExtensionFunction:h&&h.defaultValuesExtensionFunction?"'"+h.defaultValuesExtensionFunction+"'":undefined};return C.generateFunction(".handlers.onCallAction","${$view>/}",a,C.objectToString(p));},getStashableHBoxBinding:function(c,h){if(h&&h.Facet&&h.Facet.targetAnnotationType==="DataPoint"){return A.getBindingWithGroupIdFromConfig(c,h.Facet.targetAnnotationValue);}},getPressExpressionForLink:function(c,m){if(c){if(c["targetOutbound"]&&c["targetOutbound"]["outbound"]){return(".handlers.onDataPointTitlePressed($controller, ${$source>}, "+JSON.stringify(m)+","+JSON.stringify(c["targetOutbound"]["outbound"])+")");}else if(c["targetSections"]){return".handlers.navigateToSubSection($controller, '"+JSON.stringify(c["targetSections"])+"')";}else{return undefined;}}}};return A;},true);
|
|
35
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/Component',["sap/fe/core/TemplateComponent","sap/ui/model/odata/v4/ODataListBinding","sap/fe/core/CommonUtils","sap/base/Log","sap/fe/core/library","sap/fe/templates/ObjectPage/SectionLayout"],function(T,O,C,L,a,S){"use strict";var V=a.VariantManagement,b=T.extend("sap.fe.templates.ObjectPage.Component",{metadata:{properties:{variantManagement:{type:"sap.fe.core.VariantManagement",defaultValue:V.None},sectionLayout:{type:"sap.fe.templates.ObjectPage.SectionLayout",defaultValue:S.Page},showRelatedApps:{type:"boolean",defaultValue:false},additionalSemanticObjects:{type:"object"},editableHeaderContent:{type:"boolean",defaultValue:true},showBreadCrumbs:{type:"boolean",defaultValue:true},prepareOnEdit:{type:"boolean",defaultValue:false},_disableLazyLoadingForMessages:{type:"boolean"}},library:"sap.fe.templates",manifest:"json"},isContextExpected:function(){return true;},createDeferredContext:function(p,A){if(!this.DeferredContextCreated){this.DeferredContextCreated=true;var l,t=this,P={"$$groupId":"$auto.Heroes","$$updateGroupId":"$auto"};l=new O(this.getModel(),p.replace("(...)",""),undefined,undefined,undefined,P);t.getRootControl().getController().editFlow.createDocument(l,{creationMode:"Sync",createAction:A}).finally(function(){t.DeferredContextCreated=false;}).catch(function(){window.history.back();});}},setVariantManagement:function(v){if(v===V.Page){L.error("ObjectPage does not support Page-level variant management yet");v=V.None;}this.setProperty("variantManagement",v);}});return b;},true);
|
|
36
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/ExtensionAPI',["sap/fe/core/ExtensionAPI","sap/fe/core/CommonUtils","sap/fe/core/converters/helpers/ID"],function(E,C,I){"use strict";
|
|
37
|
+
var e=E.extend("sap.fe.templates.ObjectPage.ExtensionAPI",{
|
|
38
|
+
refresh:function(p){var b=this._view.getBindingContext(),a=C.getAppComponent(this._view),s=a.getSideEffectsService(),m=b.getModel().getMetaModel(),P,S={TargetProperties:[],TargetEntities:[]},c,B,k;if(p===undefined||p===null){S.TargetEntities.push({$NavigationPropertyPath:""});}else{P=Array.isArray(p)?p:[p];B=this._controller.getOwnerComponent().getEntitySet();for(var i=0;i<P.length;i++){c=P[i];if(c===""){S.TargetProperties.push({$PropertyPath:"*"});}else{k=m.getObject("/"+B+"/"+c+"/$kind");if(k==="NavigationProperty"){S.TargetEntities.push({$NavigationPropertyPath:c});}else if(k){S.TargetProperties.push({$PropertyPath:c});}else{return Promise.reject(c+" is not a valid path to be refreshed");}}}}return s.requestSideEffects(S.TargetEntities.concat(S.TargetProperties),b);},
|
|
39
|
+
getSelectedContexts:function(t){var T=this._view.byId(t);return(T&&T.isA("sap.ui.mdc.Table")&&T.getSelectedContexts())||[];},
|
|
40
|
+
showSideContent:function(s,S){var b=I.SideContentLayoutID(s),B=this._view.byId(b),a=S===undefined?!B.getShowSideContent():S;B.setShowSideContent(a);}
|
|
41
|
+
});
|
|
42
|
+
return e;});
|
|
43
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/ObjectPageController.controller',["sap/fe/core/PageController","sap/fe/core/controllerextensions/InternalRouting","./overrides/Routing","./overrides/InternalRouting","sap/fe/core/controllerextensions/SideEffects","sap/fe/core/controllerextensions/EditFlow","sap/fe/core/controllerextensions/InternalEditFlow","sap/fe/core/controllerextensions/PageReady","sap/fe/core/controllerextensions/InternalIntentBasedNavigation","sap/fe/core/controllerextensions/IntentBasedNavigation","./overrides/IntentBasedNavigation","sap/base/Log","sap/base/util/merge","sap/fe/core/CommonUtils","sap/fe/navigation/SelectionVariant","sap/fe/macros/table/Utils","sap/m/MessageBox","sap/fe/core/BusyLocker","sap/m/Link","sap/fe/macros/chart/ChartRuntime","sap/fe/templates/ObjectPage/ExtensionAPI","sap/ui/core/mvc/OverrideExecution","sap/fe/core/controllerextensions/ViewState","./overrides/ViewState","sap/fe/templates/RootContainer/overrides/EditFlow","sap/fe/core/helpers/ModelHelper","sap/fe/core/controllerextensions/Routing","sap/m/InstanceManager","sap/fe/core/controllerextensions/MessageHandler","./overrides/MessageHandler","sap/fe/core/controllerextensions/Share","./overrides/Share","sap/fe/macros/DelegateUtil","sap/fe/macros/CommonHelper","sap/ui/model/json/JSONModel"],function(P,I,R,a,S,E,b,c,d,e,f,L,m,C,g,T,M,B,h,j,k,O,V,l,n,o,p,q,r,s,t,u,D,v,J){"use strict";return P.extend("sap.fe.templates.ObjectPage.ObjectPageController",{metadata:{methods:{getExtensionAPI:{"public":true,"final":true},onPageReady:{"public":true,"final":false,overrideExecution:O.After}}},sideEffects:S,editFlow:E,share:t.override(u),_editFlow:b.override(n),_routing:I.override(a),messageHandler:r.override(s),intentBasedNavigation:e.override(f),_intentBasedNavigation:d.override({getNavigationMode:function(){var i=this._oView.getController().getStickyEditMode&&this._oView.getController().getStickyEditMode();return i?"explace":"inplace";}}),routing:p.override(R),viewState:V.override(l),pageReady:c.override({isContextExpected:function(){return true;}}),getExtensionAPI:function(i){if(i){this.mCustomSectionExtensionAPIs=this.mCustomSectionExtensionAPIs||{};if(!this.mCustomSectionExtensionAPIs[i]){this.mCustomSectionExtensionAPIs[i]=new k(this,i);}return this.mCustomSectionExtensionAPIs[i];}else{if(!this.extensionAPI){this.extensionAPI=new k(this);}return this.extensionAPI;}},onInit:function(){P.prototype.onInit.apply(this);var i=this.byId("fe::ObjectPage");var w=this.getView().getBindingContext("internal");w.setProperty("externalNavigationContext",{"page":true});w.setProperty("relatedApps",{visibility:false,items:null});w.setProperty("batchGroups",this._getBatchGroupsForView());w.setProperty("errorNavigationSectionFlag",false);if(i.getEnableLazyLoading()){i.attachEvent("subSectionEnteredViewPort",this._handleSubSectionEnteredViewPort.bind(this));}},onExit:function(){var i=this;if(this.mCustomSectionExtensionAPIs){Object.keys(this.mCustomSectionExtensionAPIs).forEach(function(w){i.mCustomSectionExtensionAPIs[w]&&i.mCustomSectionExtensionAPIs[w].destroy();});delete this.mCustomSectionExtensionAPIs;}this.extensionAPI&&this.extensionAPI.destroy();delete this.extensionAPI;},_getTableBinding:function(i){return i&&i.getRowBinding();},onAfterRendering:function(i){var w=this;this.getView().getModel("sap.fe.i18n").getResourceBundle().then(function(x){w.oResourceBundle=x;}).catch(function(x){L.error("Error while retrieving the resource bundle",x);});},_onBeforeBinding:function(w,x){var y=this,z=this._findTables(),F,A=this.byId("fe::ObjectPage"),G=x.listBinding,H=y.getView().getBindingContext("internal"),K=H.getProperty("batchGroups");K.push("$auto");if(x.bDraftNavigation!==true){this._closeSideContent();}if(A.getBindingContext()&&A.getBindingContext().hasPendingChanges()&&!K.some(A.getBindingContext().getModel().hasPendingChanges.bind(A.getBindingContext().getModel()))){A.getBindingContext().getBinding().resetChanges();}for(var i=0;i<z.length;i++){F=z[i].getCreationRow();if(F){F.setBindingContext(null);}}var N=function(f1){if(!A.isFirstRendering()&&!x.bPersistOPScroll){A.setSelectedSection(null);}};A.attachEventOnce("modelContextChange",N);var Q={onAfterRendering:N};A.addEventDelegate(Q,y);this.pageReady.attachEventOnce("pageReady",function(f1){A.removeEventDelegate(Q);});var U=y.byId("fe::Paginator");if(G&&U){if(G.isA("sap.ui.model.odata.v4.ODataListBinding")){U.setListBinding(G);}else{var W=G.getPath().replace(/\([^\)]*\)*$/,"");var G=new sap.ui.model.odata.v4.ODataListBinding(G.oModel,"",G.oModel.createBindingContext(W));G.getContexts(0);G.attachEvent("change",function f1(){if(G.getContexts().length>0){U.setListBinding(G);G.detachEvent("change",f1);}});}}if(A.getEnableLazyLoading()){var X=A.getSections(),Y=A.getUseIconTabBar(),Z=2,$=A.getModel("ui").getProperty("/editMode")==="Editable",_=this.getView().getViewData().editableHeaderContent;for(var a1=0;a1<X.length;a1++){var b1=X[a1];var c1=b1.getSubSections();for(var d1=0;d1<c1.length;d1++,Z--){if(Z<1||(Y&&(a1>1||(a1===1&&!_&&!$)))){var e1=c1[d1];e1.setBindingContext(null);}}}}},_getFirstClickableElement:function(i){var F;var A=i.getHeaderTitle()&&i.getHeaderTitle().getActions();if(A&&A.length){F=A.find(function(w){return w.getVisible();});}return F;},_getFirstEmptyMandatoryFieldFromSubSection:function(i){for(var w=0;i&&w<i.length;w++){var x=i[w].getBlocks();for(var y=0;x&&y<x.length;y++){var F;if(x[y].isA("sap.ui.layout.form.Form")){F=x[y].getFormContainers();}else if(x[y].getContent&&x[y].getContent()&&x[y].getContent().isA("sap.ui.layout.form.Form")){F=x[y].getContent().getFormContainers();}for(var z=0;F&&z<F.length;z++){var A=F[z].getFormElements();for(var G=0;A&&G<A.length;G++){var H=A[G].getFields();if(H[0].getRequired()&&!H[0].getValue()){return H[0];}}}}}return undefined;},initialTab:{value:true},_handleSubSectionEnteredViewPort:function(i){var w=i.getParameter("subSection");var x=this.getView().getBindingContext("internal");w.setBindingContext(undefined);var y=this.byId("fe::ObjectPage");if(y.getModel("ui").getProperty("/editMode")!=="Display"){if(this.getView().getViewData().sectionLayout==="Tabs"&&this.initialTab.value===false&&x.getProperty("errorNavigationSectionFlag")===false){var F=this._getFirstEmptyMandatoryFieldFromSubSection([w]);if(F){F.content.getContentEdit()[0].focus();}else{var z=y._getFirstEditableInput();if(z){z.focus();}else{var A=this._getFirstClickableElement(y);if(A){A.focus();}}}}}},_onBackNavigationInDraft:function(i){C.fnProcessDataLossOrDraftDiscardConfirmation(function(){history.back();},Function.prototype,i,this.getView().getController(),false);},_onAfterBinding:function(i,w){var x=this.byId("fe::ObjectPage"),y=this,z=this._findTables();this.sideEffects.clearPropertiesStatus();i=x.getBindingContext();if(i){var A=o.isStickySessionSupported(i.getModel().getMetaModel());if(!A){var F=C.getAppComponent(this.getView());F.getShellServices().setBackNavigation(y._onBackNavigationInDraft.bind(y,i));}}var G=[];x.getSections().forEach(function(Z){Z.getSubSections().forEach(function($){G=C.getIBNActions($,G);});});z.forEach(function(Z){var $=Z.getBindingContext("internal");$.setProperty("creationRowFieldValidity",{});$.setProperty("creationRowCustomValidity",{});G=C.getIBNActions(Z,G);var _=Z.getRowBinding();if(_){if(o.isStickySessionSupported(_.getModel().getMetaModel())){_.removeCachesAndMessages("");}}T.getSemanticTargetsFromTable(y,Z);var a1=JSON.parse(v.parseCustomData(D.getCustomData(Z,"operationAvailableMap"))),b1=Z.getSelectedContexts();C.setActionEnablement($,a1,b1);});C.getSemanticTargetsFromPageModel(y,"_pageModel");var H=x.getHeaderTitle();var K=[];K=C.getIBNActions(H,K);G=G.concat(K);C.updateDataFieldForIBNButtonsVisibility(G,this.getView());var N,Q;function U(Z,$){var _=Z.getCreationRow(),a1,b1;if(_){Q.then(function(){if(_.getModel("ui").getProperty("/isEditable")){a1=N.bindList($.getPath(),$.getContext(),[],[],{$$updateGroupId:"doNotSubmit",$$groupId:"doNotSubmit"});a1.refreshInternal=function(){};b1=a1.create();_.setBindingContext(b1);b1.created().catch(function(){L.trace("transient fast creation context deleted");});}}).catch(function(c1){L.error("Error while computing the final UI state",c1);});}}function W(Z){var Y=y._getTableBinding(Z),$=function(){U(Z,Y);};if(!Y){L.error("Expected binding missing for table: "+Z.getId());return;}if(Y.oContext){$();}else{var _=function(){if(Y.oContext){$();Y.detachChange(_);}};Y.attachChange(_);}}if(i){N=i.getModel();Q=this._editFlow.computeEditMode(i);if(i.getBinding().oCache){y._updateRelatedApps();}else{var X=function(){y._updateRelatedApps();i.getBinding().detachDataReceived(X);};i.getBinding().attachDataReceived(X);}var Y=(i.getBinding&&i.getBinding())||i;Y.attachEvent("patchSent",this.editFlow.handlePatchSent,this);Y.attachEvent("patchCompleted",this.editFlow.handlePatchCompleted,this);z.forEach(function(Z){T.whenBound(Z).then(W).catch(function($){L.error("Error while waiting for the table to be bound",$);});});x._triggerVisibleSubSectionsEvents();}},onPageReady:function(i){function w(A){var K;var X=A.getSections();if(X&&X.length){K=X.filter(function(Y){return Y.getVisible()===true;});}return K;}var x=this.getView().getBindingContext("internal");this.getAppComponent().getAppStateHandler().applyAppState();var y=i.lastFocusedControl;if(y&&y.controlId&&y.focusInfo){var z=this.getView();var F=z.byId(y.controlId);if(F){F.applyFocusInfo(y.focusInfo);return;}}var A=this.byId("fe::ObjectPage");var G=A.getModel("ui").getProperty("/editMode")==="Display";var H;var K=w(A);if(G){A.setSelectedSection(K[0].getId());H=this._getFirstClickableElement(A);if(H){H.focus();}}else{A.setSelectedSection(K[0].getId());if(this.getView().getViewData().sectionLayout==="Page"||(this.getView().getViewData().sectionLayout==="Tabs"&&this.initialTab.value===true)){var N;var Q=[];for(var U=0;U<K.length;U++){Q=K[U].getSubSections();N=this._getFirstEmptyMandatoryFieldFromSubSection(Q);if(N){N.content.getContentEdit()[0].focus();break;}}}if(!N){var W=A._getFirstEditableInput();if(W){W.focus();}else{H=this._getFirstClickableElement(A);if(H){H.focus();}}}this.initialTab.value=false;}x.setProperty("errorNavigationSectionFlag",false);this._checkDataPointTitleForExternalNavigation();},getStickyEditMode:function(){var i=this.oView.getBindingContext&&this.oView.getBindingContext(),w=false;if(i){var x=o.isStickySessionSupported(i.getModel().getMetaModel());if(x){w=this.oView.getModel("ui").getProperty("/isEditable");}}return w;},_getPageTitleInformation:function(){var i=this.byId("fe::ObjectPage");var w=i.getCustomData().find(function(y){return y.getKey()==="ObjectPageSubtitle";});var x={title:i.data("ObjectPageTitle")||"",subtitle:w&&w.getValue(),intent:"",icon:""};return Promise.resolve(x);},_executeHeaderShortcut:function(i){var w=this.getView().getId()+"--"+i,x=this.byId("fe::ObjectPage").getHeaderTitle().getActions().find(function(y){return y.getId()===w;});C.fireButtonPress(x);},_executeFooterShortcut:function(i){var w=this.getView().getId()+"--"+i,x=this.byId("fe::ObjectPage").getFooter().getContent().find(function(y){return y.getMetadata().getName()==="sap.m.Button"&&y.getId()===w;});C.fireButtonPress(x);},_executeTabShortCut:function(i){var w=this.byId("fe::ObjectPage"),x=w.indexOfSection(this.byId(w.getSelectedSection())),y=w.getSections(),z=y.length-1,A=i.oSource.getCommand(),F;if(x!==-1&&z>0){if(A==="NextTab"){if(x<=z-1){F=y[++x];}}else{if(x!==0){F=y[--x];}}if(F){w.setSelectedSection(F);F.focus();}}},_getFooterVisibility:function(i){var w=this.getView().getBindingContext("internal");var x=this.getView().getId();w.setProperty("messageFooterContainsErrors",false);sap.ui.getCore().getMessageManager().getMessageModel().getData().forEach(function(y){if(y.validation&&y.type==="Error"&&y.target.indexOf(x)>-1){w.setProperty("messageFooterContainsErrors",true);}});},_showMessagePopover:function(i,w){if(i){L.error(i);}var x=this;var y=x.getView().byId("fe::FooterBar::MessageButton"),z=y.oMessagePopover,A=z.getBinding("items");if(A.getLength()>0&&!z.isOpen()){y.setVisible(true);setTimeout(function(){z.openBy(y);},0);}return w;},_editDocument:function(i){var w=this.getView().getModel("ui"),x={prepareOnEdit:this.getView().getViewData().prepareOnEdit};B.lock(w);return this.editFlow.editDocument.apply(this.editFlow,[i,x]).finally(function(){B.unlock(w);});},_saveDocument:function(i){var w=this,x=this.getView().getModel("ui"),W=[];var y=false;B.lock(x);this._findTables().forEach(function(z){var A=w._getTableBinding(z);var F={creationMode:z.data("creationMode"),creationRow:z.getCreationRow(),createAtEnd:z.data("createAtEnd")==="true"};var G=F.creationRow&&F.creationRow.getBindingContext()&&Object.keys(F.creationRow.getBindingContext().getObject()).length>1;if(G){F.bSkipSideEffects=true;y=true;W.push(w.editFlow.createDocument(A,F).then(function(){return A;}));}});return Promise.all(W).then(function(z){var A={bExecuteSideEffectsOnError:y,bindings:z};return w.editFlow.saveDocument(i,A).catch(w._showMessagePopover.bind(w)).finally(function(){B.unlock(x);});});},_cancelDocument:function(i,w){w.cancelButton=this.getView().byId(w.cancelButton);return this.editFlow.cancelDocument(i,w);},_applyDocument:function(i){var w=this;return this.editFlow.applyDocument(i).catch(w._showMessagePopover.bind(w));},_updateRelatedApps:function(){var i=this.byId("fe::ObjectPage");if(C.resolveStringtoBoolean(i.data("showRelatedApps"))){C.updateRelatedAppsDetails(i);}},_findTableInSubSection:function(i,w,x){var y=[];for(var z=0;z<i.length;z++){var A=i[z].getContent instanceof Function&&i[z].getContent();if(A&&A.isA&&A.isA("sap.ui.layout.DynamicSideContent")){A=A.getMainContent instanceof Function&&A.getMainContent();if(A&&A.length>0){A=A[0];}}if(A&&A.isA&&A.isA("sap.fe.macros.TableAPI")){A=A.getContent instanceof Function&&A.getContent();if(A&&A.length>0){A=A[0];}}if(A&&A.isA&&A.isA("sap.ui.mdc.Table")){x.push(A);y.push({"table":A,"gridTable":A.getType().isA("sap.ui.mdc.table.GridTableType")});}}if(y.length===1&&i.length===1&&y[0].gridTable&&!w.hasStyleClass("sapUxAPObjectPageSubSectionFitContainer")){w.addStyleClass("sapUxAPObjectPageSubSectionFitContainer");}else{if(y&&!w.hasStyleClass("sapUxAPObjectPageSubSectionFitContainer")){y.forEach(function(F){if(F.gridTable){F.table.getType().setRowCount(null);}});}}},_getAllSubSections:function(){var i=this.byId("fe::ObjectPage"),w=[];i.getSections().forEach(function(x){w=w.concat(x.getSubSections());});return w;},_getAllBlocks:function(){var i=[];this._getAllSubSections().forEach(function(w){i=i.concat(w.getBlocks());});return i;},_findTables:function(){var i=this._getAllSubSections(),w=[];for(var x=0;x<i.length;x++){this._findTableInSubSection(i[x].getBlocks(),i[x],w);this._findTableInSubSection(i[x].getMoreBlocks(),i[x],w);}return w;},_closeSideContent:function(){this._getAllBlocks().forEach(function(i){var w=i.getContent instanceof Function&&i.getContent();if(w&&w.isA&&w.isA("sap.ui.layout.DynamicSideContent")){if(w.setShowSideContent instanceof Function){w.setShowSideContent(false);}}});},_getChartContextData:function(i,w){var x=i.getObject(),y=[x];if(i&&w){if(x[w]){y=x[w];delete x[w];y.push(x);}}return y;},_getTableRow:function(i,w){if(i.filter(function(y){return y!==undefined;}).length>0){var x=i.find(function(y){return y.getPath().indexOf(w)!==-1;});return x;}else{return undefined;}},_scrollTableToRow:function(i,w){var x=i.getRowBinding();var y=this;var z=new Promise(function(A,F){if(x){var G;switch(i.data().tableType){case"GridTable":G=x.getContexts(0);break;case"ResponsiveTable":G=x.getCurrentContexts();break;default:}if(G.filter(function(H){return H===undefined;}).length>0||G.length===0){x.attachChange(function K(H){var G=y._getTableRow(H.getSource().getCurrentContexts(),w);if(G){x.detachChange(K);A(G);}});}else{A(y._getTableRow(G,w));}}else{F();}});z.then(function(A){if(A){var F=A.iIndex;i.scrollToIndex(F);}}).catch(function(){L.warning("Could not find any matched row");});},_scrollTablesToRow:function(w){if(this._findTables&&this._findTables().length>0){var x=this._findTables();for(var i=0;i<x.length;i++){this._scrollTableToRow(x[i],w);}}},_mergeMultipleContexts:function(i,w,x){var y=this;var A=[],z=[],F,G,H,K,N,Q,U;U=i.getPath();F=i&&i.getModel()&&i.getModel().getMetaModel();K=F&&F.getMetaPath(U).replace(/^\/*/,"");if(w&&w.length){G=w[0];N=G.getPath();H=F&&F.getMetaPath(N).replace(/^\/*/,"");w.map(function(W){if(x){var X=y._getChartContextData(W,x);if(X){A=X.map(function(X){return{contextData:X,entitySet:K+"/"+x};});}}else{A.push({contextData:W.getObject(),entitySet:H});}});}z.push({contextData:i.getObject(),entitySet:K});z=C.removeSensitiveData(z,F);Q=C.addPageContextToSelectionVariant(new g(),z,y.getView());A=C.removeSensitiveData(A,F);return{selectionVariant:Q,attributes:A};},_getBatchGroupsForView:function(){var i=this,w=i.getView().getViewData(),x=w.controlConfiguration,y=x&&Object.keys(x),z=["$auto.Heroes","$auto.Decoration","$auto.Workers"];if(y&&y.length>0){y.forEach(function(K){var A=x[K];if(A.requestGroupId==="LongRunners"){z.push("$auto.LongRunners");}});}return z;},_setBreadcrumbLinks:function(w){var x=w.getBindingContext();var A=this.getAppComponent();if(x){var N=x.getPath(),y=N.split("/"),z="",F=A.getMetaModel(),G=0;y.shift();y.splice(-1,1);y.forEach(function(H,i){z+="/"+H;var K=A.getRootViewController();var Q=K.getTitleHierarchyCache();var U;var W=F.getMetaPath(z);var X=F.getProperty(W+"/@com.sap.vocabularies.Common.v1.ResultContext");if(X){G=1;return;}if(!Q[z]){U=K.addNewEntryInCacheTitle(z,A);}else{U=Promise.resolve(Q[z]);}U.then(function(Y){var Z=i-G,$=w.getLinks()[Z]?w.getLinks()[Z]:new h();$.setText(Y.subtitle||Y.title);$.setHref(Y.intent);if(!w.getLinks()[Z]){w.addLink($);}}).catch(function(Y){L.error("Error while computing the title hierarchy",Y);});});}},_checkDataPointTitleForExternalNavigation:function(){var i=this.getView();var w=i.getBindingContext("internal");var x=C.getHeaderFacetItemConfigForExternalNavigation(i.getViewData(),this.getAppComponent().getRoutingService().getOutbounds());var y=this.getAppComponent().getShellServices();var z=i&&i.getBindingContext();w.setProperty("isHeaderDPLinkVisible",{});if(z){z.requestObject().then(function(H){G(x,H);}).catch(function(H){L.error("Cannot retrieve the links from the shell service",H);});}function A(H){L.error(H);}function F(H){var K=this.id;if(H&&H.length===1&&H[0].supported){w.setProperty("isHeaderDPLinkVisible/"+K,true);}}function G(x,H){for(var K in x){var N=x[K];var Q={};var U=i.byId(K);if(!U){continue;}var W=U.getBindingContext();var X=W&&W.getObject();var Y=m({},H,X);if(N.semanticObjectMapping){var Z=N.semanticObjectMapping;for(var $ in Z){var _=Z[$];var a1=_["LocalProperty"]["$PropertyPath"];var b1=_["SemanticObjectProperty"];if(a1!==b1){if(Y.hasOwnProperty(a1)){var c1={};c1[b1]=Y[a1];Y=m({},Y,c1);delete Y[a1];}}}}if(Y){for(var d1 in Y){if(d1.indexOf("_")!==0&&d1.indexOf("odata.context")===-1){Q[d1]=Y[d1];}}}y.isNavigationSupported([{target:{semanticObject:N.semanticObject,action:N.action},params:Q}]).then(F.bind({id:K})).catch(A);}}},handlers:{onTableContextChange:function(w){var x=this;var y=w.getSource();var z;this._findTables().some(function(_){if(_.getRowBinding()===y){z=_;return true;}return false;});var A=this._editFlow.getCurrentActionPromise();if(A){var F;if(z.getType().getMetadata().isA("sap.ui.mdc.table.GridTableType")){F=y.getContexts(0);}else{F=y.getCurrentContexts();}if(!F[0]){return;}A.then(function(H){if(!H||H.controlId!==z.sId){return;}var K=H.oData;var N=H.keys;var Q=-1;F.find(function(X,i){var Y=X.getObject();var Z=N.every(function($){return Y[$]===K[$];});if(Z){Q=i;}return Z;});if(Q!==-1){var U=q.getOpenDialogs();var W=U.length>0?U[0]:null;if(W){W.attachEventOnce("afterClose",function(){z.focusRow(Q,true);});}else{z.focusRow(Q,true);}x._editFlow.deleteCurrentActionPromise();}}).catch(function(i){L.error("An error occurs while scrolling to the newly created Item: "+i);});}var G=x.getView().byId("fe::FooterBar::MessageButton");G.fireModelContextChange();},onCallAction:function(i,A,w){var x=i.getController();var y=x;return x.editFlow.invokeAction(A,w).then(y._showMessagePopover.bind(y,undefined)).catch(y._showMessagePopover.bind(y));},onDataPointTitlePressed:function(i,w,x,y,z){x=typeof x==="string"?JSON.parse(x):x;var A=x[y],F=C.getSemanticObjectMapping(A),G=w.getBindingContext(),H=G.getModel().getMetaModel().getMetaPath(G.getPath()),N=i._getChartContextData(G,z);N=N.map(function(K){return{data:K,metaPath:H+(z?"/"+z:"")};});if(A&&A.semanticObject&&A.action){i._intentBasedNavigation.navigate(A.semanticObject,A.action,{navigationContexts:N,semanticObjectMapping:F});}},onChevronPressNavigateOutBound:function(i,w,x){var y=i.getAppComponent().getRoutingService().getOutbounds(),z=y[w];if(z&&z.semanticObject&&z.action){x=x&&x.isA&&x.isA("sap.ui.model.odata.v4.Context")?[x]:x;i._intentBasedNavigation.navigate(z.semanticObject,z.action,{navigationContexts:x});return Promise.resolve();}else{throw new Error("outbound target "+w+" not found in cross navigation definition of manifest");}},onNavigateChange:function(i){this.getExtensionAPI().updateAppState();this.bSectionNavigated=true;},onVariantSelected:function(i){this.getExtensionAPI().updateAppState();},onVariantSaved:function(i){var w=this;setTimeout(function(){w.getExtensionAPI().updateAppState();},500);},navigateToSubSection:function(i,w){var x=typeof w==="string"?JSON.parse(w):w,y=i.getView().byId("fe::ObjectPage"),z,A;if(x.sectionId){z=i.getView().byId(x.sectionId);A=x.subSectionId?i.getView().byId(x.subSectionId):z&&z.getSubSections()&&z.getSubSections()[0];}else if(x.subSectionId){A=i.getView().byId(x.subSectionId);z=A&&A.getParent();}if(!z||!A||!z.getVisible()||!A.getVisible()){i.getView().getModel("sap.fe.i18n").getResourceBundle().then(function(F){var G=C.getTranslatedText("C_ROUTING_NAVIGATION_DISABLED_TITLE",F,null,i.getView().getViewData().entitySet);L.error(G);M.error(G);}).catch(function(F){L.error(F);});}else{y.scrollToSection(A.getId());y.fireNavigate({section:z,subSection:A});}},onChartSelectionChanged:function(i){j.fnUpdateChart(i);}}});});
|
|
44
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/controls/StashableHBox',["sap/m/HBox","sap/m/HBoxRenderer","sap/ui/core/StashedControlSupport"],function(H,a,S){"use strict";
|
|
45
|
+
var b=H.extend("sap.fe.templates.ObjectPage.controls.StashableHBox",{
|
|
46
|
+
metadata:{properties:{title:{type:"string"}},designtime:"sap/fe/templates/ObjectPage/designtime/StashableHBox.designtime"},
|
|
47
|
+
renderer:{render:function(r,c){a.render.apply(this,[r,c]);}}
|
|
48
|
+
});
|
|
49
|
+
b.prototype.setTitle=function(t){var c=this.getTitleControl();if(c){c.setText(t);}this.title=t;return this;};
|
|
50
|
+
b.prototype.getTitle=function(){return this.title;};
|
|
51
|
+
b.prototype.onAfterRendering=function(){if(this.title){this.setTitle(this.title);}else{var c=this.getTitleControl();if(c){this.title=c.getText();}}};
|
|
52
|
+
b.prototype.getTitleControl=function(){var I=[],i;if(this.getItems&&this.getItems()[0]&&this.getItems()[0].getItems){I=this.getItems()[0].getItems();}else if(this.getItems&&this.getItems()[0]&&this.getItems()[0].getMicroChartTitle){I=this.getItems()[0].getMicroChartTitle();}for(i=0;i<I.length;i++){if(I[i].isA("sap.m.Title")||I[i].isA("sap.m.Link")){return I[i];}}return null;};
|
|
53
|
+
S.mixInto(b);return b;},true);
|
|
54
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/controls/StashableVBox',["sap/m/VBox","sap/m/VBoxRenderer","sap/ui/core/StashedControlSupport"],function(V,a,S){"use strict";
|
|
55
|
+
var b=V.extend("sap.fe.templates.ObjectPage.controls.StashableVBox",{
|
|
56
|
+
metadata:{designtime:"sap/fe/templates/ObjectPage/designtime/StashableVBox.designtime"},
|
|
57
|
+
renderer:{render:function(r,c){a.render.apply(this,[r,c]);}}
|
|
58
|
+
});
|
|
59
|
+
S.mixInto(b);return b;},true);
|
|
60
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/controls/SubSectionBlock',["sap/uxap/BlockBase"],function(B){"use strict";
|
|
61
|
+
var S=B.extend("sap.fe.templates.ObjectPage.controls.SubSectionBlock",{metadata:{properties:{"columnLayout":{type:"sap.uxap.BlockBaseColumnLayout",group:"Behavior",defaultValue:4}},aggregations:{content:{type:"sap.ui.core.Control",multiple:false}}}});
|
|
62
|
+
S.prototype.init=function(){B.prototype.init.apply(this,arguments);this._bConnected=true;};
|
|
63
|
+
S.prototype._applyFormAdjustment=function(){var f=this.getFormAdjustment(),v=this._getSelectedViewContent(),p=this._oParentObjectPageSubSection,F;if(f!==sap.uxap.BlockBaseFormAdjustment.None&&v&&p){F=this._computeFormAdjustmentFields(f,p._oLayoutConfig);this._adjustForm(v,F);}};
|
|
64
|
+
S.prototype.setMode=function(m){this.setProperty("mode",m);};
|
|
65
|
+
S.prototype.connectToModels=function(){};
|
|
66
|
+
S.prototype._getSelectedViewContent=function(){var c=this.getAggregation("content");return c;};
|
|
67
|
+
return S;});
|
|
68
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility',["sap/ui/fl/changeHandler/BaseRename"],function(B){"use strict";return{"stashControl":"default","unstashControl":"default","renameHeaderFacet":B.createRenameChangeHandler({propertyName:"title",translationTextType:"XFLD",changePropertyName:"headerFacetTitle"})};});
|
|
69
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/flexibility/StashableVBox.flexibility',[],function(){"use strict";return{"stashControl":"default","unstashControl":"default","moveControls":"default"};});
|
|
70
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/overrides/IntentBasedNavigation',["sap/fe/core/CommonUtils","sap/fe/navigation/SelectionVariant"],function(C,S){"use strict";return{adaptNavigationContext:function(s,t){var v=this.getView(),c=v.getController(),i=this.getView().getBindingContext("internal"),e=i.getProperty("externalNavigationContext");var a=C.getAppComponent(v);var m=a.getModel().getMetaModel();if(e.page){var p=v.getBindingContext(),M=m.getMetaPath(p.getPath());var P=c._intentBasedNavigation.removeSensitiveData(p.getObject(),M),o=c._intentBasedNavigation.prepareContextForExternalNavigation(P,p),b=o.propertiesWithoutConflict,d=C.addPageContextToSelectionVariant(new S(),o.semanticAttributes,v),f=t.propertiesWithoutConflict;var g=d.getSelectOptionsPropertyNames();g.forEach(function(h){if(!s.getSelectOption(h)){s.massAddSelectOption(h,d.getSelectOption(h));}else{if(f&&h in f){s.massAddSelectOption(f[h],s.getSelectOption(h));}if(h in b){s.massAddSelectOption(b[h],d.getSelectOption(h));}}});delete t.propertiesWithoutConflict;}i.setProperty("externalNavigationContext",{"page":true});}};});
|
|
71
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/overrides/InternalRouting',["sap/fe/core/CommonUtils","sap/fe/navigation/SelectionVariant"],function(C,S){"use strict";return{onBeforeBinding:function(c,p){this.getView().getController()._onBeforeBinding(c,p);},onAfterBinding:function(c,p){this.getView().getController()._onAfterBinding(c,p);}};});
|
|
72
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/overrides/MessageHandler',[],function(){"use strict";return{getShowBoundMessagesInMessageDialog:function(){return(!this.base.getModel("ui").getProperty("/isEditable")||this.base.getView().getBindingContext("internal").getProperty("isActionParameterDialogOpen"));}};});
|
|
73
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/overrides/Routing',["sap/fe/core/CommonUtils","sap/fe/navigation/SelectionVariant"],function(C,S){"use strict";return{onBeforeNavigation:function(c){var s=c.oEvent&&c.oEvent.getSource(),p=s&&s.getMetadata().getName();if(!(p==="sap.uxap.ObjectPageHeaderActionButton")){var P=this.getView().getBindingContext();if(P){c.objectPageContext=P.getObject();}}c.oEvent?delete c.oEvent:c;}};});
|
|
74
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/overrides/Share',["sap/ui/core/routing/HashChanger","sap/fe/core/helpers/ModelHelper","sap/fe/core/helpers/SemanticKeyHelper","sap/ui/model/Filter","sap/ui/model/FilterOperator","sap/base/Log"],function(H,M,S,F,a,L){"use strict";var I,h,b,u,e;
|
|
75
|
+
function c(K){var i,m=Object.keys(K);i=m.map(function(s){var v=K[s];if(v!==undefined){return new F(s,a.EQ,v);}});var A=new F({filters:[new F("SiblingEntity/IsActiveEntity",a.EQ,true)],and:false});i.push(A);var C=new F(i,true);return C;}
|
|
76
|
+
function g(C,p,o){var i=C.getView().getBindingContext().getModel().bindList("/"+p,undefined,undefined,o,{"$$groupId":"$auto.Heroes"});return i.requestContexts(0,2).then(function(m){if(m&&m.length){return m[0].getPath();}});}
|
|
77
|
+
function d(C,o,E){var A=[];var p=[];var m=C.getModel().getMetaModel().getMetaPath(C.getPath());if(m.indexOf("/")===0){m=m.substring(1);}var i=m.split("/");var s=H.getInstance().getHash().split("?")[0];var n=s.split("/");var P={};n.forEach(function(r){var K=r.substring(r.indexOf("(")+1,r.length-1).split(",");var t={};K.forEach(function(v){var w=v.split("="),x=w[1];if(w[0]!=="IsActiveEntity"){if(x.indexOf("'")===0&&x.lastIndexOf("'")===x.length-1){x=decodeURIComponent(x.substring(1,x.length-1));}t[w[0]]=x;}});P[r.split("(")[0]]=t;});var q=E;i.forEach(function(N){var r={};var t=q.$NavigationPropertyBinding&&q.$NavigationPropertyBinding[N];if(t){r.pageEntityName=q.$NavigationPropertyBinding[N];q=C.getModel().getMetaModel().getObject("/"+t)||E;}else{r.pageEntityName=N;}r.mKeyValues=P[N];p.push(r);});p.forEach(function(r){var t=c(r.mKeyValues);A.push(g(o,r.pageEntityName,t));});return A;}
|
|
78
|
+
function f(C,o){var s=H.getInstance().getHash().split("?")[0];var r=s&&s.substr(0,s.indexOf("("));if(r.indexOf("/")===0){r=r.substring(1);}var E=C.getModel().getMetaModel().getObject("/"+r);var p=C;var A=d(C,o,E);if(A.length>0){return Promise.all(A).then(function(D){var m=[];var P=E;if(D[0].indexOf("/")===0){m.push(D[0].substring(1));}else{m.push(D[0]);}for(var i=1;i<D.length;i++){var n=D[i];var N="";var q=n&&n.substr(0,n.indexOf("("));if(q.indexOf("/")===0){q=q.substring(1);}if(n.indexOf("/")===0){n=n.substring(1);}N=Object.keys(P.$NavigationPropertyBinding)[Object.values(P.$NavigationPropertyBinding).indexOf(q)];if(N){m.push(n.replace(q,N));P=p.getModel().getMetaModel().getObject("/"+q)||E;}else{m.push(n);}}return m;}).catch(function(i){L.info("Failed to retrieve one or more active context path's",i);});}else{return Promise.resolve();}}
|
|
79
|
+
function j(C,o){var p,s;var i=H.getInstance().getHash().split("?")[0];if(C){var m=C.getModel();var n=m.getMetaModel();b=M.isStickySessionSupported(n);var r=i&&i.substr(0,i.indexOf("("));if(r.indexOf("/")===0){r=r.substring(1);}s=S.getSemanticKeys(n,r);}var v=o.getView().getViewData();if(C&&!b&&((v.viewLevel===1&&!s)||v.viewLevel>=2)){I=C.getObject().IsActiveEntity;h=C.getObject().HasActiveEntity;p=f(C,o);return p;}else{return Promise.resolve();}}
|
|
80
|
+
function k(e,I,h,b,A){var s;var i=H.getInstance().getHash();var B=H.getInstance().hrefForAppSpecificHash?H.getInstance().hrefForAppSpecificHash(""):"";if(e==="Editable"&&!b&&!I&&h&&A){s=B+A.join("/");}else{s=i?B+i:window.location.hash;}return s;}
|
|
81
|
+
function l(e,I,h,b,A){var J;var s=H.getInstance().getHash();var B=H.getInstance().hrefForAppSpecificHash?H.getInstance().hrefForAppSpecificHash(""):"";if(e==="Editable"&&!b&&!I&&h&&A){J=B+A.join("/");}else{J=s?B+s:window.location.hash;}if(sap.ushell&&sap.ushell.Container&&sap.ushell.Container.runningInIframe&&sap.ushell.Container.runningInIframe()){sap.ushell.Container.getFLPUrl(true).then(function(U){return U.substr(0,U.indexOf("#"))+J;}).catch(function(E){L.error("Could not retrieve cFLP URL for the sharing dialog (dialog will not be opened)",E);});}else{return Promise.resolve(window.location.origin+window.location.pathname+J);}}
|
|
82
|
+
return{adaptShareMetadata:function(s){var t=this;var C=this.base.getView().getBindingContext();u=this.base.getView().getModel("ui");e=u.getProperty("/editMode");return j(C,t.base.getView().getController()).then(function(A){var p=[];p.push(t.base.getView().getController()._getPageTitleInformation());p.push(l(e,I,h,b,A));return Promise.all(p).then(function(D){var P=D[0];var J=D[1];var T=P.title;var o=P.subtitle;if(o){T=T+" - "+o;}s.tile={title:P.title,subtitle:P.subtitle};s.email.title=T;s.title=T;s.url=k(e,I,h,b,A);s.jam.url=J;return s;});});}};});
|
|
83
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/overrides/ViewState',["sap/fe/core/library"],function(C){"use strict";var V=C.VariantManagement;return{applyInitialStateOnly:function(){return false;},adaptStateControls:function(s){var v=this.getView(),c=v.getController(),o=v.getViewData(),b=false;switch(o.variantManagement){case V.Control:b=true;break;case V.Page:case V.None:break;default:throw new Error("unhandled variant setting: "+o.getVariantManagement());}c._findTables().forEach(function(t){var q=t.getQuickFilter();if(q){s.push(q);}if(b){s.push(t.getVariant());}});s.push(v.byId("fe::ObjectPage"));}};});
|
|
84
|
+
sap.ui.predefine('sap/fe/templates/ObjectPage/templating/ObjectPageTemplating',["sap/fe/core/helpers/BindingExpression","sap/fe/core/converters/helpers/BindingHelper","sap/fe/core/CommonUtils","sap/fe/macros/field/FieldTemplating","sap/fe/core/templating/EntitySetHelper"],function(B,a,C,F,E){"use strict";var _={};var i=E.isStickySessionSupported;var f=F.formatValueRecursively;var b=F.addTextArrangementToBindingExpression;var D=a.Draft;var U=a.UI;var c=B.compileBinding;var d=B.annotationExpression;var e=B.concat;var g=B.isEmpty;var h=B.ifElse;var j=B.and;var k=function(H,v,n){var o,p,q,r,s,t,u,w,x;var y=C.getTranslatedText("T_NEW_OBJECT",v.resourceBundle,null,v.entitySet);var z=C.getTranslatedText("T_ANNOTATION_HELPER_DEFAULT_OBJECT_PAGE_HEADER_TITLE",v.resourceBundle,null,v.entitySet);var A=C.getTranslatedText("T_ANNOTATION_HELPER_DEFAULT_OBJECT_PAGE_HEADER_TITLE_NO_HEADER_INFO",v.resourceBundle);var G=d(H===null||H===void 0?void 0:(o=H.Title)===null||o===void 0?void 0:o.Value);if(H!==null&&H!==void 0&&(p=H.Title)!==null&&p!==void 0&&(q=p.Value)!==null&&q!==void 0&&(r=q.$target)!==null&&r!==void 0&&(s=r.annotations)!==null&&s!==void 0&&(t=s.Common)!==null&&t!==void 0&&(u=t.Text)!==null&&u!==void 0&&(w=u.annotations)!==null&&w!==void 0&&(x=w.UI)!==null&&x!==void 0&&x.TextArrangement){G=b(G,n);}G=f(G,n);var I=H!==null&&H!==void 0&&H.TypeName?e(z," ",d(H.TypeName.toString())):y;return c(h(j(U.IsCreateMode,G&&g(G)),I,h(G&&g(G),A,G)));};_.getExpressionForTitle=k;var l=function(H,n){var o,p,q,r,s,t,u,v,w;var x=d(H===null||H===void 0?void 0:(o=H.Description)===null||o===void 0?void 0:o.Value);if(H!==null&&H!==void 0&&(p=H.Description)!==null&&p!==void 0&&(q=p.Value)!==null&&q!==void 0&&(r=q.$target)!==null&&r!==void 0&&(s=r.annotations)!==null&&s!==void 0&&(t=s.Common)!==null&&t!==void 0&&(u=t.Text)!==null&&u!==void 0&&(v=u.annotations)!==null&&v!==void 0&&(w=v.UI)!==null&&w!==void 0&&w.TextArrangement){x=b(x,n);}return c(f(x,n));};_.getExpressionForDescription=l;var m=function(v,n){var s=C.getTranslatedText("T_OP_OBJECT_PAGE_SAVE",v.resourceBundle);var o=C.getTranslatedText("T_OP_OBJECT_PAGE_CREATE",v.resourceBundle);var p;if(i(n.startingEntitySet)){p=h(U.IsCreateModeSticky,o,s);}else{p=h(D.IsNewObject,o,s);}return c(p);};_.getExpressionForSaveButton=m;return _;},false);
|
|
85
|
+
sap.ui.predefine('sap/fe/templates/RootContainer/controller/Fcl.controller',["sap/base/Log","sap/ui/model/json/JSONModel","./RootContainerBaseController","sap/f/FlexibleColumnLayoutSemanticHelper","sap/ui/core/Component","sap/fe/core/controllerextensions/ViewState","sap/m/Link","sap/m/MessagePage","sap/m/MessageBox"],function(L,J,B,F,C,V,a,M,b){"use strict";var c={page:{names:["BeginColumn","MidColumn","EndColumn"],currentGetter:{prefix:"getCurrent",suffix:"Page"},getter:{prefix:"get",suffix:"Pages"}}};var _=function(o){if(o.isA("sap.ui.core.ComponentContainer")){return o.getComponentInstance().getRootControl();}else{return o;}};return B.extend("sap.fe.templates.RootContainer.controller.Fcl",{viewState:V.override({applyInitialStateOnly:function(){return false;},adaptStateControls:function(s){this.getView().getController()._getAllVisibleViews().forEach(function(o){var p=new Promise(function(r){if(o&&o.getController&&o.getController().isPlaceholder&&o.getController().isPlaceholder()){o.getController().attachEventOnce("targetPageInsertedInContainer",function(e){var t=e.getParameter("targetpage");r(_(t));});}else{r(o);}});s.push(p);});}}),onInit:function(e){B.prototype.onInit.bind(this)();this._internalInit();},attachRouteMatchers:function(){this.getRouter().attachBeforeRouteMatched(this._getViewForNavigatedRowsComputation,this);B.prototype.attachRouteMatchers.apply(this,arguments);this._internalInit();this.getRouter().attachBeforeRouteMatched(this.onBeforeRouteMatched,this);this.getRouter().attachRouteMatched(this.onRouteMatched,this);this.getFclControl().attachStateChange(this._saveLayout,this);},_internalInit:function(){if(this._oRouterProxy){return;}this.sCurrentRouteName="";this.sCurrentArguments={};this.SQUERYKEYNAME="?query";var A=this.getAppComponent();this._oRouterProxy=A.getRouterProxy();this._oFCLConfig={maxColumnsCount:3};var r=A.getManifest()["sap.ui5"].routing;if(r&&r.config){if(r.config.flexibleColumnLayout){var f=r.config.flexibleColumnLayout;if(f.defaultTwoColumnLayoutType){this._oFCLConfig.defaultTwoColumnLayoutType=f.defaultTwoColumnLayoutType;}if(f.defaultThreeColumnLayoutType){this._oFCLConfig.defaultThreeColumnLayoutType=f.defaultThreeColumnLayoutType;}if(f.limitFCLToTwoColumns===true){this._oFCLConfig.maxColumnsCount=2;}}if(r.config.controlAggregation){this._oFCLConfig.defaultControlAggregation=r.config.controlAggregation;}}this._initializeTargetAggregation(A);this._initializeRoutesInformation(A);},getFclControl:function(){return this.getView().getContent()[0];},_saveLayout:function(e){this.sPreviousLayout=e.getParameters().layout;},_getViewForNavigatedRowsComputation:function(){var A=this._getAllVisibleViews(this.sPreviousLayout);var r=A[A.length-1];var R;var t=this;t.getRouter().attachEventOnce("routeMatched",function(e){R=_(e.getParameter("views")[e.getParameter("views").length-1]);if(r){if(R.getViewData()&&R.getViewData().viewLevel===t._oFCLConfig.maxColumnsCount){t.oAdditionalViewForNavRowsComputation=R;}if(R.getViewData()&&r.getViewData()&&r.getViewData().viewLevel<t._oFCLConfig.maxColumnsCount&&r.getViewData()&&r.getViewData().viewLevel>R.getViewData().viewLevel&&R!==r){t.oAdditionalViewForNavRowsComputation=r;}}});},getViewForNavigatedRowsComputation:function(){return this.oAdditionalViewForNavRowsComputation;},onExit:function(){this.getRouter().detachRouteMatched(this.onRouteMatched,this);this.getRouter().detachBeforeRouteMatched(this.onBeforeRouteMatched,this);this.getFclControl().detachStateChange(this.onStateChanged,this);this.getFclControl().detachAfterEndColumnNavigate(this.onStateChanged,this);this._oTargetsAggregation=null;this._oTargetsFromRoutePattern=null;B.prototype.onExit.bind(this)();},isFclEnabled:function(){return true;},displayMessagePage:function(e,p){var f=this.getFclControl();if(this._oFCLConfig&&p.FCLLevel>=this._oFCLConfig.maxColumnsCount){p.FCLLevel=this._oFCLConfig.maxColumnsCount-1;}if(!this.aMessagePages){this.aMessagePages=[null,null,null];}var m=this.aMessagePages[p.FCLLevel];if(!m){m=new M({showHeader:false,icon:"sap-icon://message-error"});this.aMessagePages[p.FCLLevel]=m;switch(p.FCLLevel){case 0:f.addBeginColumnPage(m);break;case 1:f.addMidColumnPage(m);break;default:f.addEndColumnPage(m);}}m.setText(e);if(p.technicalMessage){m.setCustomDescription(new a({text:p.description||p.technicalMessage,press:function(){b.show(p.technicalMessage,{icon:b.Icon.ERROR,title:p.title,actions:[b.Action.OK],defaultAction:b.Action.OK,details:p.technicalDetails||"",contentWidth:"60%"});}}));}else{m.setDescription(p.description||"");}f.to(m.getId());},_initializeTargetAggregation:function(A){var m=A.getManifest(),t=m["sap.ui5"].routing?m["sap.ui5"].routing.targets:null,d=this;this._oTargetsAggregation={};if(t){Object.keys(t).forEach(function(T){var o=t[T];if(o.controlAggregation){d._oTargetsAggregation[T]={aggregation:o.controlAggregation,pattern:o.contextPattern};}else{d._oTargetsAggregation[T]={aggregation:"page",pattern:null};}});}},_initializeRoutesInformation:function(A){var m=A.getManifest(),r=m["sap.ui5"].routing?m["sap.ui5"].routing.routes:null,t=this;this._oTargetsFromRoutePattern={};if(r){r.forEach(function(d){t._oTargetsFromRoutePattern[d.pattern]=d.target;});}},getCurrentArgument:function(){return this.sCurrentArguments;},getCurrentRouteName:function(){return this.sCurrentRouteName;},getConstants:function(){return c;},getTargetAggregation:function(){return this._oTargetsAggregation;},onRouteMatched:function(e){var r=e.getParameter("name");this.sCurrentRouteName=r;this.sCurrentArguments=e.getParameter("arguments");},_scrollTablesToLastNavigatedItems:function(){var v=this._getAllVisibleViews();if(v.length>1||v[0].getViewData().viewLevel<this._oFCLConfig.maxColumnsCount){var s,A=this.getViewForNavigatedRowsComputation();if(A&&v.indexOf(A)===-1){v.push(A);}for(var i=v.length-1;i>0;i--){var o=v[i],p=v[i-1];if(o.getBindingContext()){s=o.getBindingContext().getPath();p.getController()._scrollTablesToRow(s);}}}},onStateChanged:function(e){var i=e.getParameter("isNavigationArrow");if(this.sCurrentArguments!==undefined){if(!this.sCurrentArguments[this.SQUERYKEYNAME]){this.sCurrentArguments[this.SQUERYKEYNAME]={};}this.sCurrentArguments[this.SQUERYKEYNAME].layout=e.getParameter("layout");}this._forceModelContextChangeOnBreadCrumbs(e);if(i){this._oRouterProxy.navTo(this.sCurrentRouteName,this.sCurrentArguments);}},_forceModelContextChangeOnBreadCrumbs:function(e){var f=e.getSource(),p=[];p=p.concat(f.getBeginColumnPages()).concat(f.getMidColumnPages()).concat(f.getEndColumnPages());p.forEach(function(P){var v=_(P);var o=v.byId&&v.byId("breadcrumbs");if(o){o.fireModelContextChange();}});},_updateShareButtonVisibility:function(v,l){var s;switch(l){case"OneColumn":s=v==="beginColumn";break;case"MidColumnFullScreen":case"ThreeColumnsBeginExpandedEndHidden":case"ThreeColumnsMidExpandedEndHidden":case"TwoColumnsBeginExpanded":case"TwoColumnsMidExpanded":s=v==="midColumn";break;case"EndColumnFullScreen":case"ThreeColumnsEndExpanded":case"ThreeColumnsMidExpanded":s=v==="endColumn";break;default:s=false;}return s;},updateUIStateForView:function(v,d){var u=this.getHelper().getCurrentUIState(),f=["beginColumn","midColumn","endColumn"],l=this.getFclControl().getLayout(),e;if(!v.getModel("fclhelper")){v.setModel(this._createHelperModel(),"fclhelper");}if(d>=this._oFCLConfig.maxColumnsCount){e=f[this._oFCLConfig.maxColumnsCount-1];u.actionButtonsInfo.midColumn.exitFullScreen=null;u.actionButtonsInfo.midColumn.closeColumn=null;u.actionButtonsInfo.endColumn.exitFullScreen=null;u.actionButtonsInfo.endColumn.closeColumn=null;}else{e=f[d];}if(d>=this._oFCLConfig.maxColumnsCount||l==="EndColumnFullScreen"||l==="MidColumnFullScreen"||l==="OneColumn"){v.getModel("fclhelper").setProperty("/breadCrumbIsVisible",true);}else{v.getModel("fclhelper").setProperty("/breadCrumbIsVisible",false);}u.actionButtonsInfo.beginColumn={fullScreen:null,exitFullScreen:null,closeColumn:null};v.getModel("fclhelper").setProperty("/actionButtonsInfo",Object.assign({},u.actionButtonsInfo[e]));v.getModel("fclhelper").setProperty("/showShareIcon",this._updateShareButtonVisibility(e,l));},onBeforeRouteMatched:function(e){if(e){var q=e.getParameters().arguments[this.SQUERYKEYNAME];var l=q?q.layout:null;if(!l){var n=this.getHelper().getNextUIState(0);l=n.layout;}var t=e.getParameter("config").target;l=this._correctLayoutForTargets(l,t);if(l){if(!this.getFclControl().getModel("fcl")){this.getFclControl().setModel(new J(),"fcl");this.getFclControl().bindProperty("layout","fcl>/layout");}this.getFclControl().setProperty("layout",l);}}},getHelper:function(){return F.getInstanceFor(this.getFclControl(),this._oFCLConfig);},calculateLayout:function(n,h,p){if(!p){p=this.getHelper().getNextUIState(n).layout;}var r=this.getRouter().getRouteByHash(h+"?layout="+p);var t=this._oTargetsFromRoutePattern[r.getPattern()];return this._correctLayoutForTargets(p,t);},_correctLayoutForTargets:function(p,t){var d={"2":["TwoColumnsMidExpanded","TwoColumnsBeginExpanded","MidColumnFullScreen"],"3":["ThreeColumnsMidExpanded","ThreeColumnsEndExpanded","ThreeColumnsMidExpandedEndHidden","ThreeColumnsBeginExpandedEndHidden","MidColumnFullScreen","EndColumnFullScreen"]};if(t&&!Array.isArray(t)){t=[t];}if(!t){return p;}else if(t.length>1){var l=d[t.length];if(l.indexOf(p)<0){p=l[0];}}else{var T=this.getTargetAggregation()[t[0]].aggregation||this._oFCLConfig.defaultControlAggregation;switch(T){case"beginColumnPages":p="OneColumn";break;case"midColumnPages":p="MidColumnFullScreen";break;case"endColumnPages":p="EndColumnFullScreen";break;}}return p;},_getAllVisibleViews:function(l){var v=[];l=!!l?l:this.getFclControl().getLayout();switch(l){case sap.f.LayoutType.EndColumnFullScreen:if(this.getFclControl().getCurrentEndColumnPage()){v.push(_(this.getFclControl().getCurrentEndColumnPage()));}break;case sap.f.LayoutType.MidColumnFullScreen:if(this.getFclControl().getCurrentMidColumnPage()){v.push(_(this.getFclControl().getCurrentMidColumnPage()));}break;case sap.f.LayoutType.OneColumn:if(this.getFclControl().getCurrentBeginColumnPage()){v.push(_(this.getFclControl().getCurrentBeginColumnPage()));}break;case sap.f.LayoutType.ThreeColumnsEndExpanded:case sap.f.LayoutType.ThreeColumnsMidExpanded:if(this.getFclControl().getCurrentBeginColumnPage()){v.push(_(this.getFclControl().getCurrentBeginColumnPage()));}if(this.getFclControl().getCurrentMidColumnPage()){v.push(_(this.getFclControl().getCurrentMidColumnPage()));}if(this.getFclControl().getCurrentEndColumnPage()){v.push(_(this.getFclControl().getCurrentEndColumnPage()));}break;case sap.f.LayoutType.TwoColumnsBeginExpanded:case sap.f.LayoutType.TwoColumnsMidExpanded:case sap.f.LayoutType.ThreeColumnsMidExpandedEndHidden:case sap.f.LayoutType.ThreeColumnsBeginExpandedEndHidden:if(this.getFclControl().getCurrentBeginColumnPage()){v.push(_(this.getFclControl().getCurrentBeginColumnPage()));}if(this.getFclControl().getCurrentMidColumnPage()){v.push(_(this.getFclControl().getCurrentMidColumnPage()));}break;default:L.error("Unhandled switch case for "+this.getFclControl().getLayout());}return v;},displayPlaceholders:function(t,T,p,r,R){var d=T.indexOf(t);var P=false;var f=/layout=(.*)Column/.exec(R.getHashChanger().hash);var e;var g;var h=false;if(f&&f[1]==="End"){if(!p["end"]){p["end"]=this.oPlaceholder.createPlaceholderView(t.name);r.addEndColumnPage(p["end"]);r.setDefaultTransitionNameEndColumn("placeholder");h=true;}g=p["end"];e=r.toEndColumnPage;}else{switch(d){case 0:if(!p["begin"]){p["begin"]=this.oPlaceholder.createPlaceholderView(t.name);r.addBeginColumnPage(p["begin"]);r.setDefaultTransitionNameBeginColumn("placeholder");h=true;}g=p["begin"];e=r.toBeginColumnPage;break;case 1:if(!p["mid"]){p["mid"]=this.oPlaceholder.createPlaceholderView(t.name);r.addMidColumnPage(p["mid"]);r.setDefaultTransitionNameMidColumn("placeholder");h=true;}g=p["mid"];e=r.toMidColumnPage;break;case 2:if(!p["end"]){p["end"]=this.oPlaceholder.createPlaceholderView(t.name);r.addEndColumnPage(p["end"]);r.setDefaultTransitionNameEndColumn("placeholder");h=true;}g=p["end"];e=r.toEndColumnPage;break;default:break;}}var s;var i;if(this.oPlaceholder.isPlaceholderEnabled){if(t.name==="sap.fe.templates.ListReport"){s=this.oPlaceholder.getEnumStartingParams().FE_DATA_LOADED;i=true;}else{s=this.oPlaceholder.getEnumStartingParams().FE_HEROES_LOADED;i=false;}}if((i&&!g.getController().istargetNavigated(t))||h){g.getController().setPlaceholderOption(s);e.apply(r,[g,"show"]);P=true;}else if(!i&&d===T.length-1){var j=R.getHashChanger().getHash().replace(/[&?]{1}sap-iapp-state=[A-Z0-9]+/,"");if(this.sPreviousHashNoAppState!==j){g.getController().setPlaceholderOption(s);e.apply(r,[g,"show"]);P=true;}this.sPreviousHashNoAppState=j;}return P;}});},true);
|
|
86
|
+
sap.ui.predefine('sap/fe/templates/RootContainer/controller/NavContainer.controller',["sap/ui/model/json/JSONModel","./RootContainerBaseController","sap/fe/core/CommonUtils","sap/fe/core/controllerextensions/ViewState","sap/m/Link","sap/m/MessagePage","sap/m/MessageBox"],function(J,B,C,V,L,M,a){"use strict";return B.extend("sap.fe.templates.RootContainer.controller.NavContainer",{viewState:V.override({applyInitialStateOnly:function(){return false;},adaptStateControls:function(s){var t=this;var p=new Promise(function(r){var v=t.getView(),n=v.byId("appContent");var c=n.getCurrentPage();if(c&&c.getController&&c.getController().isPlaceholder&&c.getController().isPlaceholder()){c.getController().attachEventOnce("targetPageInsertedInContainer",function(e){var o=e.getParameter("targetpage");var T=C.getTargetView(o);r(T!==t.getView()&&T);});}else{var T=C.getTargetView(c);r(T!==t.getView()&&T);}});s.push(p);}}),_getNavContainer:function(){return this.getView().getContent()[0];},isFclEnabled:function(){return false;},_scrollTablesToLastNavigatedItems:function(){},displayMessagePage:function(e,p){var n=this._getNavContainer();if(!this.oMessagePage){this.oMessagePage=new M({showHeader:false,icon:"sap-icon://message-error"});n.addPage(this.oMessagePage);}this.oMessagePage.setText(e);if(p.technicalMessage){this.oMessagePage.setCustomDescription(new L({text:p.description||p.technicalMessage,press:function(){a.show(p.technicalMessage,{icon:a.Icon.ERROR,title:p.title,actions:[a.Action.OK],defaultAction:a.Action.OK,details:p.technicalDetails||"",contentWidth:"60%"});}}));}else{this.oMessagePage.setDescription(p.description||"");}n.to(this.oMessagePage.getId());},displayPlaceholders:function(t,T,p,r){var P=false;r.setDefaultTransitionName("placeholder");var o=this.oPlaceholder.getPlaceholderMapping();if(o[t.name]){if(!p.view){p.view=this.oPlaceholder.createPlaceholderView(t.name);r.addPage(p.view);}var s;var b;if(this.oPlaceholder.isPlaceholderEnabled){if(t.name==="sap.fe.templates.ListReport"){s=this.oPlaceholder.getEnumStartingParams().FE_DATA_LOADED;b=true;}else{s=this.oPlaceholder.getEnumStartingParams().FE_HEROES_LOADED;b=false;}}if((b&&!p.view.getController().istargetNavigated(t))||!b){p.view.getController().setPlaceholderOption(s);r.to(p.view,"show");P=true;}}return P;}});},true);
|
|
87
|
+
sap.ui.predefine('sap/fe/templates/RootContainer/controller/RootContainerBaseController',["sap/ui/model/json/JSONModel","sap/fe/core/BaseController","sap/ui/core/Component","sap/ui/core/routing/HashChanger","sap/fe/core/CommonUtils","sap/fe/macros/SizeHelper","sap/ui/model/odata/v4/AnnotationHelper","sap/ui/base/BindingParser","sap/base/Log","sap/fe/core/controllerextensions/Placeholder"],function(J,B,C,H,a,S,A,b,L,P){"use strict";return B.extend("sap.fe.templates.RootContainer.controller.RootContainerBaseController",{oPlaceholder:P,onInit:function(){S.init();this._aHelperModels=[];},attachRouteMatchers:function(){this.oPlaceholder.attachRouteMatchers();this.getAppComponent().getRoutingService().attachAfterRouteMatched(this.shellTitleHandler,this);},onExit:function(){this.getAppComponent().getRoutingService().detachAfterRouteMatched(this.shellTitleHandler,this);this.oRouter=null;S.exit();this._aHelperModels.forEach(function(m){m.destroy();});},getResourceBundle:function(){return this.getOwnerComponent().getModel("i18n").getResourceBundle();},getRouter:function(){if(!this.oRouter){this.oRouter=this.getAppComponent().getRouter();}return this.oRouter;},_createHelperModel:function(){var m=new J();this._aHelperModels.push(m);return m;},waitForRightMostViewReady:function(e){return new Promise(function(r){var c=e.getParameter("views"),f=[];c.forEach(function(o){var v=o;if(o&&o.getComponentInstance){var d=o.getComponentInstance();v=d.getRootControl();}if(v&&v.getController()&&v.getController().pageReady){f.push(v);}});var R=f[f.length-1];if(R&&R.getController().pageReady.isPageReady()){r(R);}else{R&&R.getController().pageReady.attachEventOnce("pageReady",function(){r(R);});}});},shellTitleHandler:function(e){var t=this;if(!t.oShellTitlePromise){t.oShellTitlePromise=t.waitForRightMostViewReady(e).then(function(v){var o=t.getAppComponent();var d={oView:v,oAppComponent:o};t._scrollTablesToLastNavigatedItems();if(o.getEnvironmentCapabilities().getCapabilities().UShell){t.computeTitleHierarchy(d);}var l=o.getRouterProxy().getFocusControlForCurrentHash();if(v.getController()&&v.getController().onPageReady){if(l){v.getParent().onPageReady({lastFocusedControl:l});}else{var c=sap.ui.getCore().getCurrentFocusedControlId();var f={controlId:c,focusInfo:{id:c}};v.getParent().onPageReady({lastFocusedControl:f});}}t.oShellTitlePromise=null;}).catch(function(E){L.error("An error occurs while computing the title hierarchy and calling focus method",E);t.oShellTitlePromise=null;});}},getTitleHierarchyCache:function(){if(!this.oTitleHierarchyCache){this.oTitleHierarchyCache={};}return this.oTitleHierarchyCache;},_computeTitleInfo:function(t,s,i){var p=i.split("/");if(p[p.length-1].indexOf("?")===-1){i+="?restoreHistory=true";}else{i+="&restoreHistory=true";}return{title:t,subtitle:s,intent:i,icon:""};},addNewEntryInCacheTitle:function(p,o){var t=this.getView().getModel();var c=this;var e=p.replace(/ *\([^)]*\) */g,"");var T=A.format(o.getMetaModel().getProperty(e+"/@com.sap.vocabularies.UI.v1.HeaderInfo/Title/Value"),{context:o.getMetaModel().createBindingContext("/")});var d=b.complexParser(T);var s=o.getMetaModel().getProperty(e+"/@com.sap.vocabularies.UI.v1.HeaderInfo/TypeName");var f=t.createBindingContext(p);if(d){var g=d.parts?d.parts[0].path:d.path;var h=d.formatter;var i=t.bindProperty(g,f);i.initialize();}return new Promise(function(r,j){var k=H.getInstance().hrefForAppSpecificHash?H.getInstance().hrefForAppSpecificHash(""):"";var I=k+p.slice(1);var l=c.getTitleHierarchyCache();var m=function(E){var n=h?h(E.getSource().getValue()):E.getSource().getValue();l[p]=c._computeTitleInfo(s,n,I);r(l[p]);i.detachChange(m);};if(i){i.attachChange(m);}else{l[p]=c._computeTitleInfo(s,"",I);r(l[p]);}});},ensureHierarchyElementsAreStrings:function(h){var c=[];for(var l in h){var o=h[l];var s={};for(var k in o){s[k]=typeof o[k]!=="string"?String(o[k]):o[k];}c.push(s);}return c;},computeTitleHierarchy:function(d){var t=this,v=d.oView,o=d.oAppComponent,c=v.getBindingContext(),e=v.getParent(),T=[],s=H.getInstance().hrefForAppSpecificHash?H.getInstance().hrefForAppSpecificHash(""):"",f=o.getMetadata().getManifestEntry("sap.app").title||"",g=o.getMetadata().getManifestEntry("sap.app").appSubTitle||"",h=s,p,n;if(this.bIsComputingTitleHierachy===true){L.warning("computeTitleHierarchy already running ... this call is canceled");return;}this.bIsComputingTitleHierachy=true;if(e&&e._getPageTitleInformation){if(c){n=c.getPath();var l=n.split("/"),m,q="",N=l.length;l.splice(-1,1);l.forEach(function(r,i){if(i===0){var R=o.getManifestEntry("/sap.ui5/routing/routes"),u=o.getManifestEntry("/sap.ui5/routing/targets");var w=function(y){if(typeof R[this.index].target==="string"){return y===R[this.index].target;}else if(typeof R[this.index].target==="object"){for(var k=0;k<R[this.index].target.length;k++){return y===R[this.index].target[k];}}};for(var j=0;j<R.length;j++){var x=o.getRouter().getRoute(R[j].name);if(x.match(l[i])){var y=Object.keys(u).find(w,{index:j});m=o.getRouter().getTarget(y)._oOptions.name;break;}}if(m==="sap.fe.templates.ListReport"){T.push(Promise.resolve(t._computeTitleInfo(f,g,h)));}}else if(i<N){q+="/"+r;var M=o.getMetaModel(),z=M.getMetaPath(q),I=M.getProperty(z+"/@com.sap.vocabularies.Common.v1.ResultContext");if(I){return;}if(!t.getTitleHierarchyCache()[q]){T.push(t.addNewEntryInCacheTitle(q,o));}else{T.push(Promise.resolve(t.getTitleHierarchyCache()[q]));}}});}p=e._getPageTitleInformation().then(function(i){var j=H.getInstance().getHash();var k=j.split("/");if(k[k.length-1].indexOf("?")===-1){j+="?restoreHistory=true";}else{j+="&restoreHistory=true";}i.intent=s+j;if(c){t.getTitleHierarchyCache()[n]=i;}else{t.getTitleHierarchyCache()[h]=i;}return i;});T.push(p);}else{T.push(Promise.reject("Title information missing in HeaderInfo"));}Promise.all(T).then(function(i){var j=t.ensureHierarchyElementsAreStrings(i),k=j.pop().title;o.getShellServices().setHierarchy(j.reverse());o.getShellServices().setTitle(k);}).catch(function(E){L.error(E);}).finally(function(){t.bIsComputingTitleHierachy=false;}).catch(function(E){L.error(E);});},calculateLayout:function(n,p,s){return null;},onContextBoundToView:function(c){if(c){var d=this.getView().getModel("internal").getProperty("/deepestPath"),v=c.getPath();if(!d||d.indexOf(v)!==0){this.getView().getModel("internal").setProperty("/deepestPath",v,undefined,true);}}},displayMessagePage:function(e,p){},updateUIStateForView:function(v,F){}});});
|
|
88
|
+
sap.ui.predefine('sap/fe/templates/RootContainer/overrides/EditFlow',[],function(){"use strict";return{setCreationMode:function(c){var u=this.base.getView().getBindingContext("ui");u.getModel().setProperty("createMode",c,u,true);if(this.getProgrammingModel()==="Sticky"){u.getModel().setProperty("createModeSticky",this.getTransactionHelper()._bCreateMode,u,true);}}};});
|
|
89
|
+
sap.ui.predefine('sap/fe/templates/controls/OverflowToolbarButtonHover',["sap/m/OverflowToolbarButton"],function(O){"use strict";
|
|
90
|
+
var a=O.extend("sap.fe.templates.ObjectPage.controls.OverflowToolbarButtonHover",{
|
|
91
|
+
metadata:{events:{"hover":{}}},
|
|
92
|
+
onmouseover:function(e){this.fireHover();},
|
|
93
|
+
renderer:{}
|
|
94
|
+
});
|
|
95
|
+
return a;});
|
|
96
|
+
sap.ui.predefine('sap/fe/templates/controls/Paginator',["sap/ui/core/XMLComposite","sap/ui/model/json/JSONModel","sap/ui/base/ManagedObjectObserver","sap/ui/model/resource/ResourceModel"],function(X,J,M,R){"use strict";
|
|
97
|
+
var P=X.extend("sap.fe.templates.controls.Paginator",{
|
|
98
|
+
metadata:{properties:{listBinding:{type:"sap.ui.model.odata.v4.ODataListBinding"}},events:{navigate:{}},aggregations:{},publicMethods:[]},
|
|
99
|
+
alias:"this",
|
|
100
|
+
fragment:"sap.fe.templates.controls.Paginator"
|
|
101
|
+
});
|
|
102
|
+
P.prototype.init=function(){X.prototype.init.apply(this,arguments);var t=this;t.setModel(new J({navUpEnabled:false,navDownEnabled:false}),"buttonEnablement");t.setVisible(false);t._oObserver=new M(t._observeChanges.bind(t));t._oObserver.observe(t,{properties:["listBinding"]});t.attachModelContextChange(function(e){var m=t.getModel();if(!m){return;}t.updateCurrentIndexAndButtonEnablement();});};
|
|
103
|
+
P.prototype.onBeforeRendering=function(){if(!this.getModel("sap.fe.i18n")){this.setModel(new R({bundleName:"sap/fe/templates/messagebundle",async:true}),"sap.fe.i18n");}};
|
|
104
|
+
P.prototype._observeChanges=function(c){var t=this;if(c.name==="listBinding"){if(t.getListBinding()){t.updateCurrentIndexAndButtonEnablement();t.setVisible(true);}else{t._currentIndex=null;t.setVisible(false);}}};
|
|
105
|
+
P.prototype.updateCurrentIndexAndButtonEnablement=function(){var t=this;var l=t.getListBinding();if(t.getBindingContext()&&l){var c=l.getCurrentContexts()[t._currentIndex];if((!t._currentIndex&&t._currentIndex!==0)||!c||t.getBindingContext().getPath()!==c.getPath()){t.updateCurrentIndex();}t.handleButtonEnablement();}};
|
|
106
|
+
P.prototype.updateCurrentIndex=function(){var t=this;var p=t.getBindingContext().getPath();t._currentIndex=t.getListBinding().getCurrentContexts().findIndex(function(c){return c&&c.getPath()===p;});};
|
|
107
|
+
P.prototype.handleButtonEnablement=function(){var t=this;var l=t.getListBinding();var b=t.getModel("buttonEnablement");if(l&&l.getCurrentContexts().length>1&&t._currentIndex>-1){if(t._currentIndex===l.getCurrentContexts().length-1){b.setProperty("/navDownEnabled",false);}else{b.setProperty("/navDownEnabled",true);}if(t._currentIndex===0){b.setProperty("/navUpEnabled",false);}else{b.setProperty("/navUpEnabled",true);}t.setVisible(true);}else{t.setVisible(false);}};
|
|
108
|
+
P.prototype.handleShowOtherObject=function(i,e){var t=this;var l=t.getListBinding();if(!l){return;}var c=l.getCurrentContexts();var n=t._currentIndex+i;if(c[n]){t.fireNavigate({oEvent:e,context:c[n]});t._currentIndex=n;}};
|
|
109
|
+
P.prototype.handleShowPrevObject=function(e){this.handleShowOtherObject(-1,e);};
|
|
110
|
+
P.prototype.handleShowNextObject=function(e){this.handleShowOtherObject(1,e);};
|
|
111
|
+
return P;},true);
|
|
112
|
+
sap.ui.predefine('sap/fe/templates/library',["sap/ui/core/Core","sap/ui/core/library","sap/fe/core/library","sap/f/library","sap/fe/macros/library","sap/fe/common/library"],function(){"use strict";sap.ui.getCore().initLibrary({name:"sap.fe.templates",dependencies:["sap.ui.core","sap.fe.core","sap.fe.macros","sap.fe.common","sap.f"],types:["sap.fe.templates.ObjectPage.SectionLayout"],interfaces:[],controls:[],elements:[],version:"1.94.0",noLibraryCSS:true});if(!sap.fe.templates.ObjectPage){sap.fe.templates.ObjectPage={};}sap.fe.templates.ObjectPage.SectionLayout={Page:"Page",Tabs:"Tabs"};return sap.fe.templates;});
|
|
113
|
+
sap.ui.require.preload({
|
|
114
|
+
"sap/fe/templates/AnalyticalListPage/manifest.json":'{"_version":"1.14.0","sap.app":{"id":"sap.fe.templates.AnalyticalListPage","type":"component","applicationVersion":{"version":"1.94.0"},"title":"Analytical List Page","tags":{"keywords":["Analytical List Page"]},"ach":"CA-UI5-FE","embeddedBy":"../","offline":false,"resources":"resources.json"},"sap.ui5":{"services":{"templatedViewService":{"settings":{"converterType":"AnalyticalListPage"}}}}}',
|
|
115
|
+
"sap/fe/templates/ListReport/ListReport.view.xml":'<mvc:View xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc" xmlns:f="sap.f" xmlns:v="sap.ui.fl.variants" xmlns:macro="sap.fe.macros" xmlns:macroInternal="sap.fe.macros.internal" xmlns:control="sap.fe.core.controls" xmlns:core="sap.ui.core" xmlns:l="sap.ui.layout" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:customData="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" template:require="{CORE:\'sap/fe/core/AnnotationHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\',COMMON:\'sap/fe/macros/CommonHelper\',FILTER:\'sap/fe/core/templating/FilterHelper\'}" controllerName="sap.fe.templates.ListReport.ListReportController"><template:with path="converterContext>mainEntitySet" var="entitySet"><template:with path="converterContext>mainEntityType" var="entityType"><f:DynamicPage id="fe::ListReport" unittest:id="listReportFooterTest" customData:singleTableId="{converterContext>singleTableId}" customData:singleChartId="{converterContext>singleChartId}" customData:filterBarId="{converterContext>filterBarId}" customData:defaultPath="{= CORE.getDefaultPath(${converterContext>views})}" customData:visualFilterBarId="{= ID.generate([\'visualFilter\',${converterContext>filterBarId}])}" customData:filterBarVariantId="{converterContext>variantManagement/id}" customData:ListReportTitle="{= ${manifest>/sap.app/title} }" customData:isMultiEntitySets="{converterContext>isMultiEntitySets}" customData:hasMultiVisualizations="{converterContext>hasMultiVisualizations}" customData:ListReportSubtitle="{= ${manifest>/sap.app/appSubTitle} || \'\' }" customData:KPIData="{= COMMON.stringifyCustomData(${converterContext>kpiDefinitions})}" showFooter="false" busy="{ui>/busy}" busyIndicatorDelay="0" class="{= !${converterContext>hasMultiVisualizations} && ${converterContext>views}.length > 1 ? \'sapUiNoContentPadding\' : \'sapUiResponsiveContentPadding\'}"><f:title><f:DynamicPageTitle><f:heading><template:with path="converterContext>kpiDefinitions" var="definitions"><template:if test="{definitions>length}"><template:then><l:HorizontalLayout class="sapUiContentPadding"><template:if test="{= ${viewData>/variantManagement} === \'Page\'}"><template:then><v:VariantManagement id="fe::PageVariantManagement" unittest:id="listReportVMPageTest" for="{converterContext>variantManagement/targetControlIds}" showSetAsDefault="true" select=".handlers.onVariantSelected" save=".handlers.onVariantSaved" displayTextForExecuteOnSelectionForStandardVariant="{= ${viewData>/initialLoad} === \'Auto\' ? ${sap.fe.i18n>T_LR_VARIANT_APPLY_AUTOMATICALLY_WHEN_FILTER_SET} : undefined }" executeOnSelectionForStandardDefault="{= ${viewData>/initialLoad} === \'Enabled\'}"/></template:then><template:elseif test="{= ${viewData>/variantManagement} === \'Control\'}"><v:VariantManagement id="{= ID.generate([ ${converterContext>filterBarId}, \'VariantManagement\']) }" unittest:id="listReportVMControlTest" for="{converterContext>filterBarId}" showSetAsDefault="true" select=".handlers.onVariantSelected" save=".handlers.onVariantSaved" displayTextForExecuteOnSelectionForStandardVariant="{= ${viewData>/initialLoad} === \'Auto\' ? ${sap.fe.i18n>T_LR_VARIANT_APPLY_AUTOMATICALLY_WHEN_FILTER_SET} : undefined }" executeOnSelectionForStandardDefault="{= ${viewData>/initialLoad} === \'Enabled\'}"/></template:elseif><template:else><Title unittest:id="listReportTitleTest" text="{= ${manifest>/sap.app/subTitle} || ${manifest>/sap.app/title} }"/></template:else></template:if><template:repeat list="{converterContext>kpiDefinitions}" var="kpi"><template:with path="kpi>datapoint" var="datapoint"><macro:KPITag id="{kpi>id}" metaPath="{datapoint>annotationPath}" hasUnit="{= ${datapoint>unit} !== undefined}"/></template:with></template:repeat></l:HorizontalLayout></template:then><template:else><template:if test="{= ${viewData>/variantManagement} === \'Page\'}"><template:then><v:VariantManagement id="fe::PageVariantManagement" unittest:id="listReportVMPageTest" for="{converterContext>variantManagement/targetControlIds}" showSetAsDefault="true" select=".handlers.onVariantSelected" save=".handlers.onVariantSaved" displayTextForExecuteOnSelectionForStandardVariant="{= ${viewData>/initialLoad} === \'Auto\' ? ${sap.fe.i18n>T_LR_VARIANT_APPLY_AUTOMATICALLY_WHEN_FILTER_SET} : undefined }" executeOnSelectionForStandardDefault="{= ${viewData>/initialLoad} === \'Enabled\'}"/></template:then><template:elseif test="{= ${viewData>/variantManagement} === \'Control\'}"><v:VariantManagement id="{= ID.generate([ ${converterContext>filterBarId}, \'VariantManagement\']) }" unittest:id="listReportVMControlTest" for="{converterContext>filterBarId}" showSetAsDefault="true" select=".handlers.onVariantSelected" save=".handlers.onVariantSaved" displayTextForExecuteOnSelectionForStandardVariant="{= ${viewData>/initialLoad} === \'Auto\' ? ${sap.fe.i18n>T_LR_VARIANT_APPLY_AUTOMATICALLY_WHEN_FILTER_SET} : undefined }" executeOnSelectionForStandardDefault="{= ${viewData>/initialLoad} === \'Enabled\'}"/></template:elseif><template:else><Title unittest:id="listReportTitleTest" text="{= ${manifest>/sap.app/subTitle} || ${manifest>/sap.app/title} }"/></template:else></template:if></template:else></template:if></template:with></f:heading><f:snappedContent><Text text="{internal>appliedFilters}"/></f:snappedContent><f:actions><ToolbarSpacer/><template:if test="{converterContext>headerActions}"><template:repeat list="{converterContext>headerActions}" var="headerAction"><Button core:require="{FPM:\'sap/fe/core/helpers/FPMHelper\'}" id="{= ID.generate([\'fe\',${headerAction>id}])}" text="{headerAction>text}" press="{= CORE.buildActionWrapper(${headerAction>})}" type="Transparent" visible="{headerAction>visible}" enabled="{headerAction>enabled}"/></template:repeat></template:if><template:if test="{= ${converterContext>/filterLayout} === \'compactvisual\'}"><SegmentedButton id="{= ID.generate([ ${converterContext>filterBarId}, \'LayoutToggle\']) }" selectedKey="{converterContext>/filterInitialLayout}"><items><SegmentedButtonItem tooltip="{sap.fe.i18n>T_SEGMENTED_BUTTON_TOOLTIP_COMPACT}" key="compact" icon="sap-icon://filter-fields"/><SegmentedButtonItem tooltip="{sap.fe.i18n>T_SEGMENTED_BUTTON_TOOLTIP_VISUAL}" key="visual" icon="sap-icon://filter-analytics"/></items></SegmentedButton></template:if><macro:Share id="fe::Share" shortCutExists="true" visible="{= ${fclhelper>/} ? ${fclhelper>/showShareIcon} : true }"/></f:actions></f:DynamicPageTitle></f:title><f:header><template:with path="converterContext>filterBar" var="filterBarContext"><f:DynamicPageHeader pinnable="{converterContext>showPinnableToggle}"><VBox><macroInternal:FilterBar unittest:id="listReportFilterBarTest" id="{converterContext>filterBarId}" contextPath="{entityType>}" variantBackreference="{= CORE.getVariantBackReference(${viewData>}, ${converterContext>} )}" selectionFields="{filterBarContext>selectionFields}" filtersChanged=".handlers.onFiltersChanged" filterConditions="{parts:[{path:\'converterContext>filterConditions\'},{path:\'entitySet>\'}],formatter:\'FILTER.getFilterConditions\'}" search=".handlers.onSearch" hideBasicSearch="{filterBarContext>hideBasicSearch}" liveMode="{viewData>/liveMode}" showAdaptFiltersButton="true" p13nMode="Item,Value" useSemanticDateRange="{converterContext>useSemanticDateRange}" suspendSelection="true" toggleControlId="{= ${converterContext>/filterLayout} === \'compactvisual\' ? ID.generate([ ${converterContext>filterBarId}, \'LayoutToggle\']) : undefined }" initialLayout="{= ${converterContext>/filterLayout} === \'compactvisual\' ? ${converterContext>/filterInitialLayout} : undefined }"/></VBox></f:DynamicPageHeader></template:with></f:header><f:content><template:if test="{= ${converterContext>views}.length > 0}"><template:if test="{= ${converterContext>views}.length > 1 && !${converterContext>hasMultiVisualizations} }"><template:then><core:Fragment fragmentName="sap.fe.templates.ListReport.view.fragments.MultipleMode" type="XML"/></template:then><template:elseif test="{= ${converterContext>views}.length === 1 && !${converterContext>hasMultiVisualizations} }"><template:with path="converterContext>views/0/presentation" var="presentationContext"><core:Fragment fragmentName="sap.fe.templates.ListReport.view.fragments.CollectionVisualization" type="XML"/></template:with></template:elseif><template:else><core:Fragment fragmentName="sap.fe.templates.ListReport.view.fragments.CollectionVisualization" type="XML"/></template:else></template:if></template:if></f:content></f:DynamicPage></template:with></template:with></mvc:View>',
|
|
116
|
+
"sap/fe/templates/ListReport/manifest.json":'{"_version":"1.14.0","sap.app":{"id":"sap.fe.templates.ListReport","type":"component","applicationVersion":{"version":"1.94.0"},"title":"List Report","tags":{"keywords":["List Report"]},"ach":"CA-UI5-FE","embeddedBy":"../","offline":false,"resources":"resources.json"},"sap.ui5":{"services":{"templatedViewService":{"settings":{"converterType":"ListReport"}}},"handleValidation":true}}',
|
|
117
|
+
"sap/fe/templates/ListReport/view/fragments/CollectionVisualization.fragment.xml":'<core:FragmentDefinition xmlns="sap.fe.templates.controls" xmlns:m="sap.m" xmlns:core="sap.ui.core" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"><template:if test="{= ${converterContext>hasMultiVisualizations} }"><template:then><m:VBox fitContainer="true" alignItems="Stretch" alignContent="Stretch" justifyContent="Start" renderType="Div"><template:repeat list="{converterContext>views}" var="view"><template:with path="view>primaryVisualization" var="presentationContext"><template:repeat list="{presentationContext>visualizations}" var="visualizationDefinition"><core:Fragment fragmentName="sap.fe.templates.controls.{visualizationDefinition>type}" type="XML"/></template:repeat></template:with><template:with path="view>secondaryVisualization" var="presentationContext"><template:repeat list="{presentationContext>visualizations}" var="visualizationDefinition"><m:HBox height="100%" width="100%"><core:Fragment fragmentName="sap.fe.templates.controls.{visualizationDefinition>type}" type="XML"/></m:HBox></template:repeat></template:with></template:repeat></m:VBox></template:then><template:else><template:repeat list="{presentationContext>visualizations}" var="visualizationDefinition"><core:Fragment fragmentName="sap.fe.templates.controls.{visualizationDefinition>type}" type="XML"/></template:repeat></template:else></template:if></core:FragmentDefinition>',
|
|
118
|
+
"sap/fe/templates/ListReport/view/fragments/CustomView.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:core="sap.ui.core" xmlns:fpm="sap.fe.macros.fpm" template:require="{fpm:\'sap/fe/macros/fpm/fpm\'}"><fpm:CustomFragment id="{view>customTabId}" fragmentName="{view>fragment}"/></core:FragmentDefinition>',
|
|
119
|
+
"sap/fe/templates/ListReport/view/fragments/MultipleMode.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:customData="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1"><IconTabBar expandable="false" headerMode="Inline" id="fe::TabMultipleMode" select=".handlers.onTabMultiModeChange" stretchContentHeight="true" customData:showCounts="{converterContext>showTabCounts}"><items><template:repeat list="{converterContext>views}" var="view"><template:with path="view>presentation" var="presentationContext"><IconTabFilter text="{view>title}" key="{= ${view>tableControlId} || ${view>customTabId} }" customData:selectionVariant="{view>selectionVariantPath}"><content><template:if test="{= ${view>type} === \'Custom\'}"><template:then><core:Fragment fragmentName="sap.fe.templates.ListReport.view.fragments.CustomView" type="XML"/></template:then><template:else><MessageStrip text="{= \'{parts: [{path: \\\'internal>tabs/ignoredFields/\' + ${view>tableControlId} + \'\\\'}, {path: \\\'\\\', value: \\\'\' + ${view>title} + \'\\\' }], formatter: \\\'.formatters.setTabMessageStrip\\\'}\' }" type="Information" showIcon="true" showCloseButton="true" class="sapUiSmallMargin" visible="{= \'{= (${internal>tabs/ignoredFields/\' + ${view>tableControlId} + \'} || []).length>0 }\' }"/><core:Fragment fragmentName="sap.fe.templates.ListReport.view.fragments.CollectionVisualization" type="XML"/></template:else></template:if></content></IconTabFilter></template:with></template:repeat></items></IconTabBar></core:FragmentDefinition>',
|
|
120
|
+
"sap/fe/templates/ObjectPage/ObjectPage.view.xml":'<mvc:View xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:customdata="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core" xmlns:uxap="sap.uxap" xmlns="sap.m" xmlns:control="sap.fe.core.controls" xmlns:fe="sap.fe.templates.controls" xmlns:dt="sap.ui.dt" xmlns:macro="sap.fe.macros" controllerName="sap.fe.templates.ObjectPage.ObjectPageController" template:require="{MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',CONTACT:\'sap/fe/macros/ContactHelper\'}"><template:with path="entitySet>./" var="entityType"><template:with path="entityType>@com.sap.vocabularies.UI.v1.HeaderInfo" var="headerInfo"><uxap:ObjectPageLayout id="fe::ObjectPage" flexEnabled="true" unittest:id="objectPageLayoutTest" customdata:showRelatedApps="{viewData>/showRelatedApps}" customdata:ObjectPageTitle="{headerInfo>TypeName}" customdata:ObjectPageSubtitle="{headerInfo>Title/Value@@MODEL.value}" showHeaderContent="{= ${viewData>/editableHeaderContent} === false ? true : \'{= !(${ui>/editMode} === \\\'Editable\\\') }\' }" showFooter="true" busy="{ui>/busy}" busyIndicatorDelay="0" showAnchorBar="{converterContext>showAnchorBar}" upperCaseAnchorBar="false" useIconTabBar="{converterContext>useIconTabBar}" toggleHeaderOnTitleClick="{converterContext>showAnchorBar}" headerContentPinnable="{converterContext>showAnchorBar}" enableLazyLoading="true" navigate=".handlers.onNavigateChange"><uxap:dependents><control:CommandExecution execute="_executeTabShortCut" command="NextTab"/><control:CommandExecution execute="_executeTabShortCut" command="PreviousTab"/><control:CommandExecution execute="._editDocument(${$view>/getBindingContext})" enabled="{= OP.getEditCommandExecutionEnabled(${converterContext>headerActions}) }" visible="{= OP.getEditCommandExecutionVisible(${converterContext>headerActions}) }" command="Edit"/><control:CommandExecution execute=".editFlow.toggleDraftActive(${$view>/getBindingContext})" visible="{= OP.getSwitchToActiveVisibility(${entitySet>@}) }" command="SwitchToActiveObject"/><control:CommandExecution execute=".editFlow.toggleDraftActive(${$view>/getBindingContext})" visible="{= OP.getSwitchToDraftVisibility(${entitySet>@}) }" command="SwitchToDraftObject"/><control:CommandExecution execute="{= OP.getPressExpressionForDelete(${entitySet>@sapui.name}) }" visible="{= OP.getDeleteCommandExecutionVisible(${converterContext>headerActions}) }" enabled="{= OP.getDeleteCommandExecutionEnabled(${converterContext>headerActions}) }" command="DeleteObject"/><control:CommandExecution execute="._saveDocument(${$view>/getBindingContext})" visible="{= ${ui>/editMode} === \'Editable\' }" command="Save"/><control:CommandExecution execute="._cancelDocument(${$view>/getBindingContext},{cancelButton:\'fe::FooterBar::StandardAction::Cancel\'})" visible="{= ${ui>/editMode} === \'Editable\' }" command="Cancel"/></uxap:dependents><template:if test="{converterContext>showHeader}"><uxap:headerTitle><uxap:ObjectPageDynamicHeaderTitle primaryArea="Begin"><uxap:expandedHeading><FlexBox><FlexBox visible="{= ${viewData>/editableHeaderContent} ? \'{= (${ui>/editMode} === \\\'Editable\\\') }\' : false}"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderImage" type="XML"/></FlexBox><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.TitleAndSubtitle" type="XML"/></FlexBox></uxap:expandedHeading><uxap:snappedHeading><FlexBox><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderImage" type="XML"/><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.TitleAndSubtitle" type="XML"/></FlexBox></uxap:snappedHeading><uxap:content><template:if test="{entitySet>@com.sap.vocabularies.Common.v1.DraftRoot}"><macro:DraftIndicator DraftIndicatorType="IconOnly" class="sapUiTinyMarginBegin sapMTB sapMTBNewFlex" entitySet="{entitySet>}"/></template:if></uxap:content><uxap:navigationActions><template:if test="{= ${viewData>/viewLevel} > 1}"><fe:Paginator id="fe::Paginator" width="auto" navigate="._routing.navigateToContext(${$parameters>context} , { callExtension: true, oEvent: ${$parameters>oEvent} })"/></template:if><template:if test="{= ${viewData>/fclEnabled} }"><macro:FlexibleColumnLayoutActions/></template:if></uxap:navigationActions><uxap:actions><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.Actions" type="XML"/></uxap:actions><uxap:breadcrumbs><Breadcrumbs unittest:id="BreadcrumbsTest" visible="{= OP.getVisibleExpressionForBreadcrumbs(${viewData>/}) }" modelContextChange="._setBreadcrumbLinks(${$source>/})" id="fe::Breadcrumbs"/></uxap:breadcrumbs></uxap:ObjectPageDynamicHeaderTitle></uxap:headerTitle><uxap:headerContent><FlexBox id="fe::HeaderContentContainer" unittest:id="FlexBoxTest" dt:designtime="sap/fe/templates/ObjectPage/designtime/FlexBox.designtime" wrap="Wrap" fitContainer="true" alignItems="Stretch"><template:if test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/ImageUrl}"><template:then><Avatar unittest:id="AvatarImageUrlTest" class="sapUiSmallMarginEnd sapUiSmallMarginBottom" src="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/ImageUrl@@MODEL.value}" initials="{= CONTACT.getAvatarInitials(${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Initials@@MODEL.format})}" fallbackIcon="{= ${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/TypeImageUrl} !== undefined ? ${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/TypeImageUrl} : (${entityType>./@com.sap.vocabularies.Common.v1.IsNaturalPerson} ? \'sap-icon://person-placeholder\' : \'sap-icon://product\') }" displayShape="{= ${entityType>./@com.sap.vocabularies.Common.v1.IsNaturalPerson} ? \'Circle\' : \'Square\'}" displaySize="XL"/></template:then><template:elseif test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/TypeImageUrl}"><Avatar unittest:id="AvatarTypeImageUrlTest" class="sapUiSmallMarginEnd sapUiSmallMarginBottom" src="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/TypeImageUrl@@MODEL.value}" initials="{= CONTACT.getAvatarInitials(${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Initials@@MODEL.format})}" fallbackIcon="{= ${entityType>./@com.sap.vocabularies.Common.v1.IsNaturalPerson} ? \'sap-icon://person-placeholder\' : \'sap-icon://product\'}" displayShape="{= ${entityType>./@com.sap.vocabularies.Common.v1.IsNaturalPerson} ? \'Circle\' : \'Square\'}" displaySize="XL"/></template:elseif><template:elseif test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Initials}"><Avatar unittest:id="AvatarTypeInitialsTest" class="sapUiSmallMarginEnd sapUiSmallMarginBottom" initials="{= CONTACT.getAvatarInitials(${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Initials@@MODEL.format})}" displayShape="{= ${entityType>./@com.sap.vocabularies.Common.v1.IsNaturalPerson} ? \'Circle\' : \'Square\'}" displaySize="XL"/></template:elseif></template:if><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderContent" type="XML"/></FlexBox></uxap:headerContent></template:if><uxap:sections><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.Section" type="XML"/></uxap:sections><uxap:footer><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.FooterContent" type="XML"/></uxap:footer></uxap:ObjectPageLayout></template:with></template:with></mvc:View>',
|
|
121
|
+
"sap/fe/templates/ObjectPage/manifest.json":'{"_version":"1.14.0","sap.app":{"id":"sap.fe.templates.ObjectPage","type":"component","applicationVersion":{"version":"1.94.0"},"title":"Object Page","tags":{"keywords":["Object Page"]},"ach":"CA-UI5-FE","embeddedBy":"../","offline":false,"resources":"resources.json"},"sap.ui":{"technology":"UI5","deviceTypes":{"desktop":true,"tablet":true,"phone":true},"supportedThemes":["sap_fiori_3","sap_hcb","sap_bluecrystal","sap_belize","sap_belize_plus","sap_belize_hcw"]},"sap.ui5":{"config":{"sapFiori2Adaptation":{"style":true,"hierarchy":true}},"commands":{"Cancel":{"name":"Cancel","shortcut":"Escape"},"Create":{"name":"Create","shortcut":"Ctrl+Enter"},"DeleteEntry":{"name":"DeleteEntry","shortcut":"Ctrl+D"},"DeleteObject":{"name":"DeleteObject","shortcut":"Ctrl+Delete"},"Edit":{"name":"Edit","shortcut":"Ctrl+E"},"SwitchToActiveObject":{"name":"SwitchToActiveObject","shortcut":"Ctrl+Shift+A"},"SwitchToDraftObject":{"name":"SwitchToDraftObject","shortcut":"Ctrl+Shift+D"},"NextTab":{"name":"NextTab","shortcut":"Ctrl+F9"},"PreviousTab":{"name":"PreviousTab","shortcut":"Ctrl+Shift+F9"},"Save":{"name":"Save","shortcut":"Ctrl+S"},"TableSettings":{"name":"TableSettings","shortcut":"Ctrl+,"},"Share":{"name":"Share","shortcut":"Shift+Ctrl+S"}},"services":{"templatedViewService":{"factoryName":"sap.fe.core.services.TemplatedViewService","startup":"waitFor","settings":{"converterType":"ObjectPage","viewName":"sap.fe.templates.ObjectPage.ObjectPage"}},"asyncComponentService":{"factoryName":"sap.fe.core.services.AsyncComponentService","startup":"waitFor"}},"handleValidation":true,"dependencies":{"minUI5Version":"1.94.0","libs":{"sap.f":{},"sap.fe.macros":{"lazy":true},"sap.m":{},"sap.suite.ui.microchart":{"lazy":true},"sap.ui.core":{},"sap.ui.layout":{},"sap.ui.mdc":{},"sap.uxap":{},"sap.ui.fl":{}}},"contentDensities":{"compact":true,"cozy":true}}}',
|
|
122
|
+
"sap/fe/templates/ObjectPage/view/fragments/Actions.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:macrodata="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:macro="sap.fe.macros" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',CORE:\'sap/fe/core/AnnotationHelper\',UI:\'sap/fe/core/templating/UIFormatters\',CRIT:\'sap/fe/core/templating/CriticalityFormatters\',COMMON:\'sap/fe/macros/CommonHelper\',FIELD:\'sap/fe/macros/field/FieldHelper\'}"><template:if test="{converterContext>headerActions}"><template:repeat list="{converterContext>headerActions}" var="headerAction"><template:if test="{= CORE.isManifestAction(${headerAction>}) }"><template:then><template:if test="{= ${headerAction>type} === \'Menu\'}"><template:then><MenuButton text="{headerAction>text}" menuPosition="BeginBottom" id="{= ID.generate([\'fe\',${headerAction>id}])}" visible="{headerAction>visible}" enabled="{headerAction>enabled}"><menu><Menu><template:repeat list="{headerAction>menu}" var="menuItemAction"><template:with path="menuItemAction>annotationPath" var="dataField"><template:if test="{= ${menuItemAction>type} === \'ForAction\'}"><template:then><MenuItem id="{= ID.generate([\'fe\', ${dataField>}]) }" text="{dataField>Label}" press="{= OP.getPressExpressionForEdit(${dataField>}, ${entitySet>@sapui.name}, ${headerAction>}) }" visible="{menuItemAction>visible}" enabled="{menuItemAction>enabled}"/></template:then><template:elseif test="{= ${menuItemAction>type} === \'ForNavigation\'}"><MenuItem id="{= ID.generate([\'fe\', ${dataField>}]) }" text="{dataField>Label}" press="{menuItemAction>press}" enabled="{menuItemAction>enabled}" visible="{menuItemAction>visible}" macrodata:IBNData="{menuItemAction>customData}"/></template:elseif><template:else><MenuItem core:require="{FPM:\'sap/fe/core/helpers/FPMHelper\'}" id="{= ID.generate([\'fe\',${menuItemAction>id}])}" text="{menuItemAction>text}" press="{= CORE.buildActionWrapper(${menuItemAction>}, ${headerAction>})}" visible="{menuItemAction>visible}" enabled="{menuItemAction>enabled}"/></template:else></template:if></template:with></template:repeat></Menu></menu></MenuButton></template:then><template:else><Button unittest:id="ManifestActionTest" core:require="{FPM:\'sap/fe/core/helpers/FPMHelper\'}" id="{= ID.generate([\'fe\',${headerAction>id}])}" text="{headerAction>text}" press="{= CORE.buildActionWrapper(${headerAction>})}" type="Default" visible="{headerAction>visible}" enabled="{headerAction>enabled}"/></template:else></template:if></template:then><template:elseif test="{= ${headerAction>type} === \'Primary\'}"><template:with path="entitySet>" helper="OP.getEditAction" var="editAction"><template:with path="editAction>@Org.OData.Core.V1.OperationAvailable" var="operationAvailable"><template:if test="{= ${operationAvailable>} !== false }"><Button unittest:id="EditActionTest" id="fe::StandardAction::Edit" type="{path:\'entitySet>./@com.sap.vocabularies.UI.v1.Identification\',formatter:\'CORE.buildEmphasizedButtonExpression\'}" text="{sap.fe.i18n>C_COMMON_OBJECT_PAGE_EDIT}" enabled="{headerAction>enabled}" visible="{headerAction>visible}" press="cmd:Edit"><layoutData><OverflowToolbarLayoutData priority="NeverOverflow"/></layoutData></Button></template:if></template:with></template:with></template:elseif><template:elseif test="{= ${headerAction>type} === \'Secondary\'}"><Button unittest:id="DeleteActionTest" id="fe::StandardAction::Delete" type="Default" text="{sap.fe.i18n>C_COMMON_OBJECT_PAGE_DELETE}" visible="{headerAction>visible}" enabled="{headerAction>enabled}" press="cmd:DeleteObject" ariaHasPopup="Dialog"/></template:elseif><template:elseif test="{= ${headerAction>type} === \'SwitchToActiveObject\' && OP.checkDraftState(${entitySet>@}) }"><Button id="fe::StandardAction::SwitchToActiveObject" type="Default" text="{sap.fe.i18n>C_COMMON_OBJECT_PAGE_DISPLAY_SAVED_VERSION}" visible="{= OP.getSwitchToActiveVisibility(${entitySet>@}) }" press="cmd:SwitchToActiveObject"/></template:elseif><template:elseif test="{= ${headerAction>type} === \'SwitchToDraftObject\' && OP.checkDraftState(${entitySet>@}) }"><Button id="fe::StandardAction::SwitchToDraftObject" type="Default" text="{sap.fe.i18n>C_COMMON_OBJECT_PAGE_RETURN_TO_DRAFT}" visible="{= OP.getSwitchToDraftVisibility(${entitySet>@}) }" press="cmd:SwitchToDraftObject"/></template:elseif><template:elseif test="{= ${headerAction>type} === \'ForAction\'}"><template:with path="headerAction>annotationPath" var="dataField"><template:if test="{= ${dataField>$Type} === \'com.sap.vocabularies.UI.v1.DataFieldForAction\' && ${dataField>Determining} !== true }"><template:with path="dataField>Action" helper="COMMON.getActionContext" var="actionContext"><template:with path="dataField>Action" helper="COMMON.getPathToBoundActionOverload" var="isBound"><template:if test="{= !(${dataField>./@com.sap.vocabularies.UI.v1.Hidden} === true) && (${isBound>$IsBound} !== true || ${actionContext>@Org.OData.Core.V1.OperationAvailable} !== false) }"><Button id="{= ID.generate([\'fe\', ${dataField>}]) }" unittest:id="AnnotationActionTest" text="{dataField>Label}" press="{= OP.getPressExpressionForEdit(${dataField>}, ${entitySet>@sapui.name}, ${headerAction>}) }" visible="{headerAction>visible}" enabled="{headerAction>enabled}" type="{= CRIT.buildExpressionForCriticalityButtonType(${dataField>@@UI.getDataModelObjectPath}) }" ariaHasPopup="{actionContext>@@COMMON.isDialog}"/></template:if></template:with></template:with></template:if></template:with></template:elseif><template:elseif test="{= ${headerAction>type} === \'ForNavigation\'}"><template:with path="headerAction>annotationPath" var="dataField"><Button id="{= ID.generate([\'fe\', ${dataField>}]) }" text="{headerAction>text}" press="{headerAction>press}" enabled="{headerAction>enabled}" type="{headerAction>buttonType}" visible="{headerAction>visible}" macrodata:IBNData="{headerAction>customData}"/></template:with></template:elseif></template:if></template:repeat></template:if><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.RelatedApps" type="XML"/><macro:Share id="fe::Share" shortCutExists="true" visible="{= OP.getShareButtonVisibility(${viewData>/}) }"/></core:FragmentDefinition>',
|
|
123
|
+
"sap/fe/templates/ObjectPage/view/fragments/EditableHeaderFacet.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:f="sap.ui.layout.form" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:macro="sap.fe.macros" xmlns:internalMacro="sap.fe.macros.internal" xmlns:core="sap.ui.core" xmlns:dt="sap.ui.dt" xmlns:fl="sap.ui.fl" xmlns:fpm="sap.fe.macros.fpm" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:formdata="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" template:require="{OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',FIELD:\'sap/fe/macros/field/FieldHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\',COMMON:\'sap/fe/macros/CommonHelper\',FORM:\'sap/fe/macros/form/FormHelper\'}"><f:Form fl:delegate="{ "name": "sap/fe/macros/flexibility/FormDelegate", "delegateType": "writeonly" }" id="fe::EditableHeaderForm" editable="true" class="sapUxAPObjectPageSubSectionAlignContent" formdata:navigationPath="{= FORM.getNavigationPath(${entitySet>}) }" formdata:entitySet="{entitySet>@sapui.name}"><f:layout><f:ColumnLayout columnsM="2" columnsL="3" columnsXL="4" labelCellsLarge="12"/></f:layout><f:formContainers><f:FormContainer unittest:id="HeaderInfoFormContainerTest" id="fe::EditableHeaderForm::EditableHeaderInfo" title="{sap.fe.i18n>T_COMMON_OBJECT_PAGE_OBJECT_INFO}" visible="{= OP.getVisiblityOfHeaderFacet(${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Title/Value/$Path@},${entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Title/Value/$Path@@FIELD.fieldControl}) }"><f:dependents><macro:ValueHelp idPrefix="fe::EditableHeaderForm::EditableHeaderTitle::FieldValueHelp" property="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Title/Value}"/><macro:ValueHelp idPrefix="fe::EditableHeaderForm::EditableHeaderDescription::FieldValueHelp" property="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Description/Value}"/></f:dependents><f:formElements><f:FormElement id="fe::EditableHeaderForm::EditableHeaderTitle"><f:label><Label text="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Title/@@MODEL.label}"><layoutData><f:ColumnElementData cellsLarge="12"/></layoutData></Label></f:label><f:fields><internalMacro:Field idPrefix="fe::EditableHeaderForm::EditableHeaderTitle" vhIdPrefix="fe::EditableHeaderForm::EditableHeaderTitle::FieldValueHelp" entitySet="{entitySet>}" dataField="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Title}"><internalMacro:formatOptions textAlignMode="Form" showEmptyIndicator="true"/></internalMacro:Field></f:fields></f:FormElement><template:if test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Description}"><f:FormElement id="fe::EditableHeaderForm::EditableHeaderDescription"><f:label><Label text="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Description/@@MODEL.label}"><layoutData><f:ColumnElementData cellsLarge="12"/></layoutData></Label></f:label><f:fields><internalMacro:Field idPrefix="fe::EditableHeaderForm::EditableHeaderDescription" vhIdPrefix="fe::EditableHeaderForm::EditableHeaderDescription::FieldValueHelp" entitySet="{entitySet>}" dataField="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Description}"><internalMacro:formatOptions textAlignMode="Form" showEmptyIndicator="true"/></internalMacro:Field></f:fields></f:FormElement></template:if></f:formElements></f:FormContainer><template:if test="{headerSection>subSections}"><template:repeat list="{path:\'headerSection>subSections\',filters:[{path:\'type\',operator:\'EQ\',value1:\'Form\'},{path:\'type\',operator:\'EQ\',value1:\'XMLFragment\'}]}" var="subSection"><template:if test="{= !${subSection>stashed} }"><template:then><template:if test="{= !${subSection>template} }"><template:then><template:with path="subSection>annotationPath" var="facet"><template:repeat list="{path:\'subSection>formDefinition/formContainers\'}" var="formContainer"><template:if test="{= MODEL.getNavigationPath(${facet>Target/$AnnotationPath}) }"><template:then><template:with path="formContainer>entitySet" var="targetEntitySet"><macro:FormContainer id="{= ${formContainer>id} ? ID.generate([\'fe\', \'HeaderFacet\', \'FormContainer\', ${formContainer>id} ]) : undefined }" designtimeSettings="{= ${subSection>flexSettings/designtime} === \'Default\' ? \'sap/fe/macros/FormContainer.designtime\' : ${subSection>flexSettings/designtime}}" title="{facet>@@MODEL.label}" displayMode="Edit" entitySet="{targetEntitySet>}" navigationPath="{= MODEL.getNavigationPath(${facet>Target/$AnnotationPath}) ? MODEL.getNavigationPath(${facet>Target/$AnnotationPath}) : \'\'}" dataFieldCollection="{formContainer>formElements}" visibilityPath="{= ${subSection>./@com.sap.vocabularies.UI.v1.Hidden/$Path} ? ${subSection>./@com.sap.vocabularies.UI.v1.Hidden/$Path} : \'\' }"/></template:with></template:then><template:else><macro:FormContainer id="{= ${formContainer>id} ? ID.generate([\'fe\', \'HeaderFacet\', \'FormContainer\', ${formContainer>id} ]) : undefined }" designtimeSettings="{= ${subSection>flexSettings/designtime} === \'Default\' ? \'sap/fe/macros/FormContainer.designtime\' : ${subSection>flexSettings/designtime}}" title="{facet>@@MODEL.label}" displayMode="Edit" entitySet="{entitySet>}" dataFieldCollection="{formContainer>formElements}" visibilityPath="{= ${subSection>./@com.sap.vocabularies.UI.v1.Hidden/$Path} ? ${subSection>./@com.sap.vocabularies.UI.v1.Hidden/$Path} : \'\' }"/></template:else></template:if></template:repeat></template:with></template:then><template:else><f:FormContainer id="{= ${subSection>id} ? ID.generate([${subSection>id}, \'CustomFormContainer\', ${subSection>}]) : undefined }" title="{subSection>title}" visible="{subSection>visibile}" dt:designtime="{= ${subSection>flexSettings/designtime} === \'Default\' ? \'sap/ui/layout/designtime/form/FormContainer.designtime\' : ${subSection>flexSettings/designtime}}"><f:formElements><fpm:CustomFragment id="{= ${subSection>id} ? ID.generate([${subSection>id}, \'CustomFragment\', ${subSection>}]) : undefined }" fragmentName="{subSection>template}" contextPath="{entitySet>}"/></f:formElements></f:FormContainer></template:else></template:if></template:then></template:if></template:repeat></template:if></f:formContainers></f:Form></core:FragmentDefinition>',
|
|
124
|
+
"sap/fe/templates/ObjectPage/view/fragments/FooterContent.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:common="sap.fe.common" xmlns="sap.m" xmlns:core="sap.ui.core" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\',CORE:\'sap/fe/core/AnnotationHelper\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',COMMON:\'sap/fe/macros/CommonHelper\',UI:\'sap/fe/core/templating/UIFormatters\',CRIT:\'sap/fe/core/templating/CriticalityFormatters\',OPTemplating:\'sap/fe/templates/ObjectPage/templating/ObjectPageTemplating\'}"><OverflowToolbar unittest:id="OverflowToolbarTest" id="fe::FooterBar" asyncMode="true" visible="{= CORE.getFooterVisible(${converterContext>footerActions}, ${entityType>./@com.sap.vocabularies.UI.v1.Identification})}"><core:InvisibleText id="fe::FooterBar::MessageButton::AriaText" text="{sap.fe.i18n>C_COMMON_SAPFE_ERROR_MESSAGES_PAGE_BUTTON_ARIA_TEXT}"/><common:MessageButton id="fe::FooterBar::MessageButton" messageChange="_getFooterVisibility" ariaLabelledBy="fe::FooterBar::MessageButton::AriaText" type="Emphasized" ariaHasPopup="Dialog"/><ToolbarSpacer/><template:if test="{= ${entitySet>@com.sap.vocabularies.Common.v1.DraftRoot} || ${entitySet>@com.sap.vocabularies.Common.v1.DraftNode} || COMMON.isDraftParentEntityForContainment(${entitySet>$ContainsTarget}, undefined, ${converterContext>}) }"><DraftIndicator state="{ui>/draftStatus}"/></template:if><template:if test="{converterContext>footerActions}"><template:repeat list="{converterContext>footerActions}" var="footerAction"><template:if test="{= ${footerAction>type} === \'DefaultApply\'}"><template:then><Button unittest:id="ApplyActionTest" id="fe::FooterBar::StandardAction::Apply" text="{sap.fe.i18n>T_COMMON_OBJECT_PAGE_APPLY_DRAFT}" type="{path:\'entitySet>./@com.sap.vocabularies.UI.v1.Identification\',formatter:\'CORE.buildEmphasizedButtonExpression\'}" enabled="true" press="._applyDocument(${$view>/getBindingContext})" visible="{= ${ui>/editMode} === \'Editable\'}"/></template:then><template:elseif test="{= ${footerAction>type} === \'ForAction\'}"><template:with path="footerAction>annotationPath" var="dataField"><template:if test="{= !(${dataField>./@com.sap.vocabularies.UI.v1.Hidden} === true) }"><template:if test="{= ${dataField>$Type} === \'com.sap.vocabularies.UI.v1.DataFieldForAction\' && ${dataField>Determining} === true}"><template:with path="dataField>Action" helper="COMMON.getActionContext" var="actionContext"><template:with path="dataField>Action" helper="COMMON.getPathToBoundActionOverload" var="isBound"><template:if test="{= ${isBound>$IsBound} !== true || ${actionContext>@Org.OData.Core.V1.OperationAvailable} !== false }"><Button unittest:id="AnnotationActionTest" id="{= ID.generate([\'fe\', \'FooterBar\', ${dataField>}] )}" text="{dataField>Label}" ariaHasPopup="{actionContext>@@COMMON.isDialog}" press="{= OP.getPressExpressionForFooterAnnotationAction(${dataField>}, ${entitySet>@sapui.name}, ${footerAction>}) }" visible="{footerAction>visible}" enabled="{footerAction>enabled}" type="{= CRIT.buildExpressionForCriticalityButtonType(${dataField>@@UI.getDataModelObjectPath}) }"/></template:if></template:with></template:with></template:if></template:if></template:with></template:elseif><template:elseif test="{= ${footerAction>type} === \'Primary\'}"><Button unittest:id="PrimaryActionTest" id="fe::FooterBar::StandardAction::Save" text="{= OPTemplating.getExpressionForSaveButton(${viewData>}, ${fullContextPath>@@UI.getDataModelObjectPath})}" tooltip="{= COMMON.getTooltipForKeyboardShortcuts(${sap.fe.i18n>T_KEYBOARD_SHORTCUT_SAVE_WIN}, ${sap.fe.i18n>T_KEYBOARD_SHORTCUT_SAVE_MAC})}" type="{path:\'entitySet>./@com.sap.vocabularies.UI.v1.Identification\',formatter:\'CORE.buildEmphasizedButtonExpression\'}" visible="{= ${ui>/editMode} === \'Editable\' }" enabled="true" press="cmd:Save"/></template:elseif><template:elseif test="{= ${footerAction>type} === \'Secondary\'}"><Button unittest:id="SecondaryActionTest" id="fe::FooterBar::StandardAction::Cancel" text="{sap.fe.i18n>C_COMMON_OBJECT_PAGE_CANCEL}" press="cmd:Cancel" visible="{= ${ui>/editMode} === \'Editable\' }" ariaHasPopup="Dialog" enabled="true"/></template:elseif><template:elseif test="{= CORE.isManifestAction(${footerAction>}) }"><Button unittest:id="ManifestActionTest" core:require="{FPM:\'sap/fe/core/helpers/FPMHelper\'}" id="{= ID.generate([\'fe\',\'FooterBar\',${footerAction>id}])}" text="{footerAction>text}" press="{= CORE.buildActionWrapper(${footerAction>})}" type="Transparent" visible="{footerAction>visible}" enabled="{footerAction>enabled}"/></template:elseif></template:if></template:repeat></template:if></OverflowToolbar></core:FragmentDefinition>',
|
|
125
|
+
"sap/fe/templates/ObjectPage/view/fragments/FormActionButtons.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:macrodata="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" xmlns="sap.m" xmlns:core="sap.ui.core" template:require="{CORE:\'sap/fe/core/AnnotationHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\',COMMON:\'sap/fe/macros/CommonHelper\'}"><template:if test="{= ${action>type} === \'Menu\'}"><template:then><MenuButton text="{action>text}" menuPosition="BeginBottom" id="{= ID.generate([\'fe\',${action>id}])}" visible="{= COMMON.handleVisibilityOfMenuActions(${action>visible}) }" enabled="{action>enabled}" class="sapUiSmallMarginBegin"><menu><Menu><template:repeat list="{action>menu}" var="menuItemAction"><template:if test="{= ${menuItemAction>type} === \'Default\'}"><template:then><MenuItem core:require="{FPM:\'sap/fe/core/helpers/FPMHelper\'}" id="{= ID.generate([\'fe\',${menuItemAction>id}])}" text="{menuItemAction>text}" press="{= CORE.buildActionWrapper(${menuItemAction>})}" visible="{menuItemAction>visible}" enabled="{menuItemAction>enabled}"/></template:then><template:else><MenuItem id="{menuItemAction>id}" binding="{menuItemAction>binding}" text="{menuItemAction>text}" press="{menuItemAction>press}" ariaHasPopup="{menuItemAction>requiresDialog}" visible="{menuItemAction>visible}" enabled="{menuItemAction>enabled}" macrodata:IBNData="{menuItemAction>customData}"/></template:else></template:if></template:repeat></Menu></menu></MenuButton></template:then><template:elseif test="{= ${action>type} === \'Default\'}"><Button core:require="{FPM:\'sap/fe/core/helpers/FPMHelper\'}" id="{= ID.generate([\'fe\',${action>id}])}" text="{action>text}" press="{= CORE.buildActionWrapper(${action>})}" type="Transparent" visible="{action>visible}" enabled="{action>enabled}"/></template:elseif><template:else><Button id="{action>id}" binding="{action>binding}" text="{action>text}" press="{action>press}" type="{action>buttonType}" ariaHasPopup="{action>requiresDialog}" visible="{action>visible}" enabled="{action>enabled}" macrodata:IBNData="{action>customData}"/></template:else></template:if></core:FragmentDefinition>',
|
|
126
|
+
"sap/fe/templates/ObjectPage/view/fragments/FormActions.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:uxap="sap.uxap" template:require="{AH:\'sap/fe/templates/ObjectPage/AnnotationHelper\'}"><uxap:actions><template:repeat list="{subSection>actions}" var="action"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.FormActionButtons" type="XML"/></template:repeat></uxap:actions></core:FragmentDefinition>',
|
|
127
|
+
"sap/fe/templates/ObjectPage/view/fragments/HeaderContent.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:dt="sap.ui.dt" xmlns:fl="sap.ui.fl" xmlns:fe="sap.fe.templates.ObjectPage.controls" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{COMMON:\'sap/fe/macros/CommonHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\'}"><template:if test="{entityType>@com.sap.vocabularies.UI.v1.HeaderFacets}"><template:then><template:with path="converterContext>headerFacets" var="converterHeaderFacets"><template:repeat list="{converterHeaderFacets>}" var="converterHeaderFacet"><template:if test="{= ${converterHeaderFacet>type} === \'Annotation\'}"><template:then><template:with path="converterHeaderFacet>annotationPath" var="headerFacet"><template:with path="headerFacet>" var="collectionHeaderFacet"><template:if test="{= ${converterHeaderFacet>facetType} === \'Reference\' }"><template:then><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderFacet" type="XML"/></template:then><template:elseif test="{= ${converterHeaderFacet>facetType} === \'Collection\' }"><fe:StashableVBox id="{= ID.generate([\'fe\', \'HeaderCollectionFacetContainer\', { Facet: ${collectionHeaderFacet>} } ])}" dt:designtime="{= ${converterHeaderFacet>flexSettings/designtime} === \'Default\' ? \'sap/fe/templates/ObjectPage/designtime/StashableVBox.designtime\' : ${converterHeaderFacet>flexSettings/designtime}}" fl:flexibility="sap/fe/templates/ObjectPage/flexibility/StashableVBox.flexibility" stashed="{converterHeaderFacet>stashed}" displayInline="true"><template:repeat list="{converterHeaderFacet>facets}" var="converterHeaderFacet"><template:with path="converterHeaderFacet>annotationPath" var="headerFacet"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderFacet" type="XML"/></template:with></template:repeat></fe:StashableVBox></template:elseif></template:if></template:with></template:with></template:then><template:elseif test="{= ${converterHeaderFacet>fragmentName}}"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderFacetCustomContainer" type="XML"/></template:elseif></template:if></template:repeat></template:with></template:then></template:if></core:FragmentDefinition>',
|
|
128
|
+
"sap/fe/templates/ObjectPage/view/fragments/HeaderDataPoint.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:internalMacro="sap.fe.macros.internal" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',MESSAGE:\'sap/base/strings/formatMessage\',FIELD:\'sap/fe/macros/field/FieldHelper\',COMMON:\'sap/fe/macros/CommonHelper\',UI:\'sap/fe/core/templating/UIFormatters\'}"><VBox id="{= ID.generate([\'fe\', \'HeaderFacet\', ${converterHeaderFacet>headerDataPointData/type} !== \'Content\' ? ${converterHeaderFacet>headerDataPointData/type} : \'KeyFigure\', { Facet: ${headerFacet>} }]) }"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderDataPointTitle" type="XML"/><internalMacro:DataPoint metaPath="{dataPoint>}" contextPath="{entitySet>}"><internalMacro:formatOptions defaultDataPointStyle="ObjectNumber" showLabels="true" iconSize="1.375rem"/></internalMacro:DataPoint></VBox></core:FragmentDefinition>',
|
|
129
|
+
"sap/fe/templates/ObjectPage/view/fragments/HeaderDataPointTitle.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',COMMON:\'sap/fe/macros/CommonHelper\',FIELD:\'sap/fe/macros/field/FieldHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\'}"><template:if test="{= ${viewData>controlConfiguration}[${converterHeaderFacet>targetAnnotationValue}][\'navigation\'][\'targetOutbound\'][\'outbound\'] }"><template:then><core:InvisibleText text="{sap.fe.i18n>T_HEADER_DATAPOINT_TITLE_LINK_EXTERNAL_ARIA}" id="{= ID.generate([\'fe\', ${converterHeaderFacet>targetAnnotationValue}, \'AriaText\']) }"/><Link unittest:id="headerDataPointLinkTest" id="{= ID.generate([\'fe\', \'HeaderDPLink\', ${converterHeaderFacet>targetAnnotationValue}]) }" text="{dataPoint>Title@@MODEL.value}" visible="{= COMMON.getHeaderDataPointLinkVisibility(ID.generate([\'fe\', \'HeaderDPLink\', ${converterHeaderFacet>targetAnnotationValue}]), true, ${dataPoint>@@FIELD.isNotAlwaysHidden}) }" press="{= OP.getPressExpressionForLink(${viewData>controlConfiguration}[${converterHeaderFacet>targetAnnotationValue}][\'navigation\'], ${manifest>/sap.app/crossNavigation/outbounds})}" ariaDescribedBy="{= ID.generate([\'fe\', ${converterHeaderFacet>targetAnnotationValue}, \'AriaText\']) }" class="sapUiTinyMarginBottom"/><Title unittest:id="headerDataPointTitleTest" id="{= ID.generate([\'fe\', \'HeaderDPTitle\', ${headerFacet>Target/$AnnotationPath}]) }" level="H3" text="{dataPoint>Title@@MODEL.value}" class="sapUiTinyMarginBottom" visible="{= COMMON.getHeaderDataPointLinkVisibility(ID.generate([\'fe\', \'HeaderDPLink\', ${converterHeaderFacet>targetAnnotationValue}]), false, ${dataPoint>@@FIELD.isNotAlwaysHidden}) }"/></template:then><template:elseif test="{= ${viewData>controlConfiguration}[${converterHeaderFacet>targetAnnotationValue}][\'navigation\'][\'targetSections\'] }"><core:InvisibleText text="{sap.fe.i18n>T_COMMON_HEADERDP_TITLE_LINK_INPAGE_ARIA}" id="{= ID.generate([\'fe\', ${converterHeaderFacet>targetAnnotationValue}, \'AriaText\']) }"/><Link unittest:id="HeaderDataPointInternalLinkTest" id="{= ID.generate([\'fe\', \'HeaderDPLink\', ${headerFacet>Target/$AnnotationPath}]) }" text="{dataPoint>Title@@MODEL.value}" visible="{= !!${dataPoint>Title}}" press="{= OP.getPressExpressionForLink(${viewData>controlConfiguration}[${converterHeaderFacet>targetAnnotationValue}][\'navigation\']) }" ariaDescribedBy="{= ID.generate([\'fe\', ${converterHeaderFacet>targetAnnotationValue}, \'AriaText\']) }"/></template:elseif><template:else><Title id="{= ID.generate([\'fe\', \'HeaderDPTitle\', ${headerFacet>Target/$AnnotationPath}]) }" level="H3" text="{dataPoint>Title@@MODEL.value}" class="sapUiTinyMarginBottom" visible="{dataPoint>@@FIELD.isNotAlwaysHidden}"/></template:else></template:if></core:FragmentDefinition>',
|
|
130
|
+
"sap/fe/templates/ObjectPage/view/fragments/HeaderFacet.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:macro="sap.fe.macros" xmlns:internalMacro="sap.fe.macros.internal" xmlns:dt="sap.ui.dt" xmlns:fl="sap.ui.fl" xmlns:fe="sap.fe.templates.ObjectPage.controls" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',CORE:\'sap/fe/core/AnnotationHelper\',COMMON:\'sap/fe/macros/CommonHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\'}"><fe:StashableHBox id="{= ID.generate([\'fe\', \'HeaderFacetContainer\', { Facet: ${headerFacet>} }])}" dt:designtime="{= ${converterHeaderFacet>flexSettings/designtime} === \'Default\' ? \'sap/fe/templates/ObjectPage/designtime/StashableHBox.designtime\' : ${converterHeaderFacet>flexSettings/designtime}}" fl:flexibility="sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility" unittest:id="headerFacetContent" class="sapUiMediumMarginEnd sapUiSmallMarginBottom" visible="{converterHeaderFacet>visible}" binding="{= OP.getStashableHBoxBinding(${viewData>/controlConfiguration}, { Facet: ${converterHeaderFacet>} })}" stashed="{converterHeaderFacet>stashed}"><template:if test="{= ${converterHeaderFacet>targetAnnotationType} === \'DataPoint\'}"><template:then><template:with path="headerFacet>Target/$AnnotationPath/" var="dataPoint"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.HeaderDataPoint" type="XML"/></template:with></template:then><template:elseif test="{= ${converterHeaderFacet>targetAnnotationType} === \'Chart\'}"><template:with path="headerFacet>Target/$AnnotationPath" var="collection" helper="MODEL.resolve$Path"><template:with path="collection>" var="collection" helper="CORE.getNavigationContext"><internalMacro:MicroChart unittest:id="macroMicroChart" id="{= ID.generate([\'fe\', \'HeaderFacet\', \'MicroChart\', { Facet: ${headerFacet>} }]) }" batchGroupId="{= OP.getGroupIdFromConfig( ${viewData>/controlConfiguration}, ${headerFacet>Target/$AnnotationPath}, (((${headerFacet>Target/$AnnotationPath}.indexOf(\'/\') > 0) && ${collection>$isCollection}) ? \'$auto.Decoration\' : undefined) ) }" contextPath="{collection>}" metaPath="{headerFacet>Target/$AnnotationPath/}" navigationType="{= OP.getMicroChartTitleAsLink(${viewData>controlConfiguration}[${headerFacet>Target/$AnnotationPath}][\'navigation\'])}" onTitlePressed="{= OP.getExpressionForMicroChartTitlePress(${viewData>controlConfiguration}[${headerFacet>Target/$AnnotationPath}][\'navigation\'], ${manifest>/sap.app/crossNavigation/outbounds}, ${collection>@sapui.name})}"/></template:with></template:with></template:elseif><template:elseif test="{= ${converterHeaderFacet>targetAnnotationType} === \'Identification\'}"><template:with path="headerFacet>Target" var="form"><Text text="Identification in header facet"/></template:with></template:elseif><template:elseif test="{= ${converterHeaderFacet>targetAnnotationType} === \'Contact\'}"><template:with path="headerFacet>Target/$AnnotationPath" var="collection" helper="MODEL.resolve$Path"><template:with path="collection>" var="collection" helper="CORE.getNavigationContext"><VBox id="{= ID.generate([\'fe\', \'HeaderFacet\', \'Contact\', { Facet: ${headerFacet>} }]) }" displayInline="true"><template:if test="{headerFacet>@@MODEL.label}"><Title text="{headerFacet>@@MODEL.label}" class="sapUiSmallMarginBottom"/></template:if><template:with path="headerFacet>Target/$AnnotationPath" var="contact"><template:with path="headerFacet>Target/$AnnotationPath@@COMMON.getMetaPath" var="contactPath"><macro:Contact contact="{contact>}" visible="true"/></template:with></template:with></VBox></template:with></template:with></template:elseif><template:elseif test="{= ${converterHeaderFacet>targetAnnotationType} === \'Address\'}"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.ObjectPageHeaderAddress" type="XML"/></template:elseif><template:elseif test="{= ${converterHeaderFacet>targetAnnotationType} === \'FieldGroup\'}"><template:with path="headerFacet>" var="headerForm"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.ObjectPageHeaderForm" type="XML"/></template:with></template:elseif><template:else><VBox width="150px" class="sapUiSmallMargin"><Text text="Unsupported Facet Type: {converterHeaderFacet>targetAnnotationType}" visible="true" wrapping="true"/></VBox></template:else></template:if></fe:StashableHBox></core:FragmentDefinition>',
|
|
131
|
+
"sap/fe/templates/ObjectPage/view/fragments/HeaderFacetCustomContainer.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:fpm="sap.fe.macros.fpm" xmlns:fe="sap.fe.templates.ObjectPage.controls" xmlns:dt="sap.ui.dt" xmlns:fl="sap.ui.fl" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\',COMMON:\'sap/fe/macros/CommonHelper\',fpm:\'sap/fe/macros/fpm/fpm\'}"><fe:StashableHBox id="{converterHeaderFacet>containerId}" dt:designtime="{= ${converterHeaderFacet>flexSettings/designtime} === \'Default\' ? \'sap/fe/templates/ObjectPage/designtime/StashableHBox.designtime\' : ${converterHeaderFacet>flexSettings/designtime}}" fl:flexibility="sap/fe/templates/ObjectPage/flexibility/StashableHBox.flexibility" unittest:id="headerFacetContent" class="sapUiMediumMarginEnd sapUiSmallMarginBottom" visible="{converterHeaderFacet>visible}" binding="{converterHeaderFacet>binding}" stashed="{converterHeaderFacet>stashed}"><VBox displayInline="true"><template:if test="{= !!${converterHeaderFacet>title} && !!${converterHeaderFacet>subTitle} }"><template:then><Title level="H3" text="{converterHeaderFacet>title}"/><Text text="{converterHeaderFacet>subTitle}" class="sapUiSmallMarginBottom"/></template:then><template:elseif test="{= !!${converterHeaderFacet>title} }"><Title level="H3" text="{converterHeaderFacet>title}" class="sapUiSmallMarginBottom"/></template:elseif></template:if><fpm:CustomFragment id="{converterHeaderFacet>id}" fragmentName="{converterHeaderFacet>fragmentName}" contextPath="{entitySet>}"/></VBox></fe:StashableHBox></core:FragmentDefinition>',
|
|
132
|
+
"sap/fe/templates/ObjectPage/view/fragments/HeaderImage.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"><template:if test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/ImageUrl}"><template:then><Avatar class="sapUiSmallMarginEnd" src="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/ImageUrl@@MODEL.value}" displayShape="Square" displaySize="S"/></template:then><template:elseif test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/TypeImageUrl}"><Avatar class="sapUiSmallMarginEnd" src="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/TypeImageUrl@@MODEL.value}" displayShape="Square" displaySize="S"/></template:elseif></template:if></core:FragmentDefinition>',
|
|
133
|
+
"sap/fe/templates/ObjectPage/view/fragments/ObjectPageHeaderAddress.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:macro="sap.fe.macros" xmlns:dt="sap.ui.dt" xmlns:fl="sap.ui.fl" xmlns:fe="sap.fe.templates.ObjectPage.controls" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\'}"><template:with path="headerFacet>Target/$AnnotationPath/" var="addressPath"><VBox id="{= ${converterHeaderFacet>headerFormData/id} }" displayInline="true"><Title text="{headerFacet>Label}"/><Text unittest:id="ObjectPageHeaderAddressTest" renderWhitespace="true" class="sapMLabel" text="{addressPath>label@@MODEL.format}"/></VBox></template:with></core:FragmentDefinition>',
|
|
134
|
+
"sap/fe/templates/ObjectPage/view/fragments/ObjectPageHeaderForm.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns="sap.m" xmlns:internalMacro="sap.fe.macros.internal" xmlns:core="sap.ui.core" xmlns:l="sap.ui.layout" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1" template:require="{MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\'}"><VBox id="{= ${converterHeaderFacet>headerFormData/id} }" displayInline="true"><template:if test="{converterHeaderFacet>headerFormData/label}"><Title text="{converterHeaderFacet>headerFormData/label}" class="sapUiSmallMarginBottom"/></template:if><template:if test="{= OP.doesFieldGroupContainOnlyOneMultiLineDataField(${converterHeaderFacet>headerFormData/formElements})}"><template:then><template:with path="converterHeaderFacet>headerFormData/formElements/0/" var="dataField"><template:if test="{dataField>visible}"><layoutData><FlexItemData maxWidth="300px"/></layoutData><template:with path="dataField>annotationPath" var="annotationDataField"><Text text="{annotationDataField>Value@@MODEL.format}"/></template:with></template:if></template:with></template:then><template:else><template:repeat list="{converterHeaderFacet>headerFormData/formElements}" var="formElement"><template:if test="{= ${formElement>type} === \'Annotation\' }"><template:then><template:with path="formElement>annotationPath" var="dataField"><HBox unittest:id="ObjectPageHeaderHBoxTest" class="sapUiTinyMarginBottom" visible="{formElement>visible}"><Label unittest:id="ObjectPageHeaderLabelTest" id="{= ID.generate([ ${formElement>idPrefix}, \'Label\'])}" text="{formElement>label}:" visible="{= ${formElement>label} ? \'true\':\'false\'}" class="sapUiTinyMarginEnd" vAlign="{= ${formElement>isValueMultilineText} === true ? \'Middle\' : \'Bottom\' }"/><internalMacro:Field idPrefix="{formElement>idPrefix}" editMode="Display" entitySet="{entitySet>}" dataField="{dataField>}" ariaLabelledBy="{= ID.generate([ ${formElement>idPrefix}, \'Label\'])}"><internalMacro:formatOptions textAlignMode="Form" showEmptyIndicator="true"/></internalMacro:Field></HBox></template:with></template:then><template:elseif test="{= ${formElement>type} === \'Default\'}"><core:Fragment fragmentName="sap.fe.macros.fpm.CustomHeaderFieldElement" type="XML"/></template:elseif><template:else><VBox width="150px" class="sapUiSmallMargin"><Text text="Unsupported Facet Type: {formElement>type}" visible="true" wrapping="true"/></VBox></template:else></template:if></template:repeat></template:else></template:if></VBox></core:FragmentDefinition>',
|
|
135
|
+
"sap/fe/templates/ObjectPage/view/fragments/RelatedApps.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:customData="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1" xmlns:core="sap.ui.core"><MenuButton id="fe::RelatedApps" text="{sap.fe.i18n>T_OP_RELATED_APPS}" binding="{internal>relatedApps}" visible="{internal>visibility}"><menu><Menu items="{path:\'internal>items\',sorter:{path:\'text\'}}"><items><MenuItem text="{internal>text}" customData:targetSemObject="{internal>targetSemObject}" customData:targetAction="{internal>targetAction}" press="._intentBasedNavigation.navigate(${internal>targetSemObject}, ${internal>targetAction})"/></items></Menu></menu></MenuButton></core:FragmentDefinition>',
|
|
136
|
+
"sap/fe/templates/ObjectPage/view/fragments/Section.fragment.xml":'<core:FragmentDefinition xmlns:uxap="sap.uxap" xmlns:core="sap.ui.core" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:fpm="sap.fe.macros.fpm" xmlns:macro="sap.fe.macros" xmlns:dt="sap.ui.dt" xmlns="sap.m" xmlns:opcontrol="sap.fe.templates.ObjectPage.controls" template:require="{fpm:\'sap/fe/macros/fpm/fpm\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',COMMON:\'sap/fe/macros/CommonHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\'}"><template:with path="converterContext>headerSection" var="headerSection"><template:if test="{viewData>/editableHeaderContent}"><uxap:ObjectPageSection id="{headerSection>id}" title="{headerSection>title}" visible="{headerSection>visible}" titleUppercase="false"><uxap:subSections><uxap:ObjectPageSubSection id="fe::EditableHeaderSubSection"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.EditableHeaderFacet" type="XML"/></uxap:ObjectPageSubSection></uxap:subSections></uxap:ObjectPageSection></template:if></template:with><template:with path="converterContext>sections" var="sections"><template:repeat list="{sections>}" var="section"><uxap:ObjectPageSection dt:designtime="not-adaptable-visibility" id="{section>id}" title="{section>title}" showTitle="{section>showTitle}" titleUppercase="false" visible="{section>visible}"><uxap:subSections><template:repeat list="{section>subSections}" var="subSection"><uxap:ObjectPageSubSection dt:designtime="not-adaptable-visibility" id="{subSection>id}" title="{subSection>title}" showTitle="{subSection>showTitle}" visible="{subSection>visible}"><uxap:customData><core:CustomData key="strategyForVisibilityChange" value="lazyLoading"/></uxap:customData><template:if test="{= ${subSection>type} === \'Mixed\'}"><template:then><template:repeat list="{subSection>content}" var="subSection"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionContent" type="XML"/></template:repeat></template:then><template:else><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionContent" type="XML"/></template:else></template:if></uxap:ObjectPageSubSection></template:repeat></uxap:subSections></uxap:ObjectPageSection></template:repeat></template:with></core:FragmentDefinition>',
|
|
137
|
+
"sap/fe/templates/ObjectPage/view/fragments/SectionContent.fragment.xml":'<core:FragmentDefinition xmlns:uxap="sap.uxap" xmlns:core="sap.ui.core" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns:fpm="sap.fe.macros.fpm" xmlns:macro="sap.fe.macros" xmlns:layout="sap.ui.layout" xmlns:dt="sap.ui.dt" xmlns="sap.m" xmlns:opcontrol="sap.fe.templates.ObjectPage.controls" template:require="{fpm:\'sap/fe/macros/fpm/fpm\',MODEL:\'sap/ui/model/odata/v4/AnnotationHelper\',OP:\'sap/fe/templates/ObjectPage/AnnotationHelper\',COMMON:\'sap/fe/macros/CommonHelper\',ID:\'sap/fe/core/helpers/StableIdHelper\'}"><template:if test="{subSection>visible}"><template:if test="{= ${subSection>type} === \'XMLFragment\'}"><template:then><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.FormActions" type="XML"/><uxap:blocks><opcontrol:SubSectionBlock><opcontrol:content><template:if test="{= ${subSection>sideContent} !== undefined}"><template:then><layout:DynamicSideContent id="{= ID.generate([\'fe\', ${subSection>key}, \'SideContentLayout\'])}" showMainContent="true" showSideContent="{subSection>sideContent/visible}" sideContentFallDown="BelowM" containerQuery="true" equalSplit="{subSection>sideContent/equalSplit}"><layout:mainContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionCustomSection" type="XML"/></layout:mainContent><layout:sideContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SideContentCustomContainer" type="XML"/></layout:sideContent></layout:DynamicSideContent></template:then><template:else><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionCustomSection" type="XML"/></template:else></template:if></opcontrol:content></opcontrol:SubSectionBlock></uxap:blocks></template:then><template:elseif test="{= ${subSection>type} === \'Form\'}"><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.FormActions" type="XML"/><uxap:blocks><opcontrol:SubSectionBlock><opcontrol:content><template:if test="{= ${subSection>sideContent} !== undefined}"><template:then><layout:DynamicSideContent id="{= ID.generate([\'fe\', ${subSection>key}, \'SideContentLayout\'])}" showMainContent="true" showSideContent="{subSection>sideContent/visible}" sideContentFallDown="BelowM" containerQuery="true" equalSplit="{subSection>sideContent/equalSplit}"><layout:mainContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionFormContent" type="XML"/></layout:mainContent><layout:sideContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SideContentCustomContainer" type="XML"/></layout:sideContent></layout:DynamicSideContent></template:then><template:else><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionFormContent" type="XML"/></template:else></template:if></opcontrol:content></opcontrol:SubSectionBlock></uxap:blocks><template:if test="{subSection>formDefinition/hasFacetsNotPartOfPreview}"><template:then><uxap:moreBlocks><template:if test="{= ${subSection>level} === 2}"><Title text="{subSection>title}"/></template:if><opcontrol:SubSectionBlock><opcontrol:content><template:if test="{= ${subSection>sideContent} !== undefined}"><template:then><layout:DynamicSideContent id="{= ID.generate([\'fe\', ${subSection>key}, \'MoreSideContentLayout\'])}" showMainContent="true" showSideContent="{subSection>sideContent/visible}" sideContentFallDown="BelowM" containerQuery="true" equalSplit="{subSection>sideContent/equalSplit}"><layout:mainContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionMoreFormContent" type="XML"/></layout:mainContent><layout:sideContent/></layout:DynamicSideContent></template:then><template:else><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionMoreFormContent" type="XML"/></template:else></template:if></opcontrol:content></opcontrol:SubSectionBlock></uxap:moreBlocks></template:then></template:if></template:elseif><template:elseif test="{= ${subSection>type} === \'DataVisualization\'}"><uxap:blocks><template:if test="{= ${subSection>level} === 2}"><Title text="{subSection>title}" visible="{= ${subSection>visible} && ${subSection>title} !==\'undefined\' && ${subSection>showTitle} ? true : false}"/></template:if><opcontrol:SubSectionBlock visible="{subSection>visible}"><opcontrol:content><template:if test="{= ${subSection>sideContent} !== undefined}"><template:then><layout:DynamicSideContent id="{= ID.generate([\'fe\', ${subSection>key}, \'SideContentLayout\'])}" showMainContent="true" showSideContent="{subSection>sideContent/visible}" sideContentFallDown="BelowM" containerQuery="true" equalSplit="{subSection>sideContent/equalSplit}"><layout:mainContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionPresentationVisualization" type="XML"/></layout:mainContent><layout:sideContent><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SideContentCustomContainer" type="XML"/></layout:sideContent></layout:DynamicSideContent></template:then><template:else><core:Fragment fragmentName="sap.fe.templates.ObjectPage.view.fragments.SectionPresentationVisualization" type="XML"/></template:else></template:if></opcontrol:content></opcontrol:SubSectionBlock></uxap:blocks></template:elseif><template:elseif test="{= ${subSection>type} === \'Unknown\'}"><Text text="{subSection>text}"/></template:elseif><template:else/></template:if></template:if></core:FragmentDefinition>',
|
|
138
|
+
"sap/fe/templates/ObjectPage/view/fragments/SectionCustomSection.fragment.xml":'<core:FragmentDefinition xmlns:core="sap.ui.core" xmlns="sap.m" xmlns:fpm="sap.fe.macros.fpm" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\'}"><fpm:CustomSection id="{subSection>id}" contextPath="{entitySet>}" section="{subSection>}" editMode="{ui>/editMode}" fragmentName="{subSection>template}" fragmentType="XML"/></core:FragmentDefinition>',
|
|
139
|
+
"sap/fe/templates/ObjectPage/view/fragments/SectionFormContent.fragment.xml":'<core:FragmentDefinition xmlns:core="sap.ui.core" xmlns:macro="sap.fe.macros" xmlns="sap.m" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\'}"><macro:Form id="{= ID.generate([${subSection>formDefinition/id}, \'Content\']) }" facet="{subSection>annotationPath}" entitySet="{entitySet>}" useFormContainerLabels="{= ${subSection>formDefinition/useFormContainerLabels}}" partOfPreview="true" formContainers="{subSection>formDefinition/formContainers}"/></core:FragmentDefinition>',
|
|
140
|
+
"sap/fe/templates/ObjectPage/view/fragments/SectionMoreFormContent.fragment.xml":'<core:FragmentDefinition xmlns:core="sap.ui.core" xmlns="sap.m" xmlns:macro="sap.fe.macros" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\'}"><macro:Form id="{= ID.generate([${subSection>formDefinition/id}, \'MoreContent\']) }" facet="{subSection>annotationPath}" entitySet="{entitySet>}" useFormContainerLabels="{= ${subSection>formDefinition/useFormContainerLabels}}" partOfPreview="false" formContainers="{subSection>formDefinition/formContainers}"/></core:FragmentDefinition>',
|
|
141
|
+
"sap/fe/templates/ObjectPage/view/fragments/SectionPresentationVisualization.fragment.xml":'<core:FragmentDefinition xmlns:core="sap.ui.core" xmlns="sap.m" xmlns:macro="sap.fe.macros" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\'}"><template:with path="subSection>presentation" var="presentationContext"><template:with path="subSection>presentation" var="primaryVisualization"><template:repeat list="{presentationContext>visualizations}" var="visualizationDefinition"><core:Fragment fragmentName="sap.fe.templates.controls.{visualizationDefinition>type}" type="XML"/></template:repeat></template:with></template:with></core:FragmentDefinition>',
|
|
142
|
+
"sap/fe/templates/ObjectPage/view/fragments/SideContentCustomContainer.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:fpm="sap.fe.macros.fpm" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" template:require="{ID:\'sap/fe/core/helpers/StableIdHelper\',COMMON:\'sap/fe/macros/CommonHelper\',fpm:\'sap/fe/macros/fpm/fpm\'}"><template:with path="subSection>sideContent" var="sideContent"><template:if test="{= ${subSection>sideContent} !== undefined }"><HBox class="sapUiSmallMarginBegin"><fpm:CustomFragment id="{sideContent>id}" fragmentName="{sideContent>template}"/></HBox></template:if></template:with></core:FragmentDefinition>',
|
|
143
|
+
"sap/fe/templates/ObjectPage/view/fragments/TitleAndSubtitle.fragment.xml":'<core:FragmentDefinition xmlns:core="sap.ui.core" xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns="sap.m" template:require="{OPTemplating:\'sap/fe/templates/ObjectPage/templating/ObjectPageTemplating\',UI:\'sap/fe/core/templating/UIFormatters\'}"><template:with path="entityType>@com.sap.vocabularies.UI.v1.HeaderInfo" var="headerInfo"><VBox><Title text="{= OPTemplating.getExpressionForTitle(${headerInfo>@@UI.getConverterContext}, ${viewData>}, ${fullContextPath>@@UI.getDataModelObjectPath})}" wrapping="true"/><template:if test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Description}"><Label text="{= OPTemplating.getExpressionForDescription(${headerInfo>@@UI.getConverterContext}, ${fullContextPath>@@UI.getDataModelObjectPath})}" wrapping="true"/></template:if></VBox></template:with></core:FragmentDefinition>',
|
|
144
|
+
"sap/fe/templates/RootContainer/view/Fcl.view.xml":'<mvc:View xmlns="sap.f" xmlns:mvc="sap.ui.core.mvc" displayBlock="true" height="100%" controllerName="sap.fe.templates.RootContainer.controller.Fcl"><FlexibleColumnLayout id="appContent" backgroundDesign="Transparent" layout="{fcl>/layout}" stateChange="onStateChanged" afterEndColumnNavigate="onStateChanged"/></mvc:View>',
|
|
145
|
+
"sap/fe/templates/RootContainer/view/NavContainer.view.xml":'<mvc:View xmlns="sap.m" xmlns:mvc="sap.ui.core.mvc" displayBlock="true" height="100%" controllerName="sap.fe.templates.RootContainer.controller.NavContainer"><NavContainer id="appContent"/></mvc:View>',
|
|
146
|
+
"sap/fe/templates/RootContainer/view/PlaceholderLR.view.xml":'<mvc:View xmlns:mvc="sap.ui.core.mvc" displayBlock="true" height="100%" controllerName="sap.fe.templates.RootContainer.controller.Placeholder" xmlns="http://www.w3.org/1999/xhtml"><style>\n\n\n\n\t\t.plPlaceholderContainer{\n\t\t\t/*background: var(--sapContent_Placeholderloading_Background);*/\n\t\t\tbackground-color: #FFFFFF;\n\t\t\tposition: absolute;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n\t\t}\n\n\t\t.plResponsivePadding{\n\t\t\twidth: calc(100% - 6rem);\n\t\t\tpadding-left: 3rem;\n\t\t\tpadding-right: 3rem;\n\t\t}\n\n\t\t.plCols4 > *{\n\t\t\twidth:calc(25% - 2rem);\n\t\t}\n\n\t\t.plPaddingTop{\n\t\t\tpadding-top: 1rem;\n\t\t}\n\n\n\n\n\t\t.plTextAlignStart{\n\t\t\ttext-align: start;\n\t\t}\n\t\t.plTextAlignCenter{\n\t\t\ttext-align: center;\n\t\t}\n\t\t.plTextAlignEnd{\n\t\t\ttext-align: end;\n\t\t}\n\n\t\t.plVerticalAlignTop{\n\t\t\tvertical-align: top;\n\t\t}\n\t\t.plVerticalAlignMiddle{\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t.plVerticalAlignBottom{\n\t\t\tvertical-align: bottom;\n\t\t}\n\n\n\n\t\t.plHorizontalContent > *{\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t\t.plHorizontalContent > *:not(:last-child){\n\t\t\tmargin-left: 0;\n\t\t}\n\t\t.plHorizontalContent > *:not(:last-child){\n\t\t\tmargin-right: 2rem;\n\t\t}\n\t\t.plHorizontalContent.plTextAlignEnd > *:not(:last-child){\n\t\t\tmargin-right: 0;\n\t\t}\n\t\t.plHorizontalContent.plTextAlignEnd > *:not(:first-child){\n\t\t\tmargin-left: 2rem;\n\t\t}\n\n\n\n\t\t.plVerticalContent > *{\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.plVerticalContent > *:not(:last-child){\n\t\t\tmargin-bottom: 1rem;\n\t\t}\n\n\t\t.plVerticalContent.plVerticalAlignBottom > *:not(:first-child){\n\t\t\tmargin-top: 1rem;\n\t\t}\n\n\n\n\t\t.plText{\n\t\t\tborder-radius: 0.25rem;\n\t\t}\n\t\t.plTextWeightS{\n\t\t\theight: 0.5rem;\n\t\t}\n\t\t.plTextWeightM{\n\t\t\theight: 0.75rem;\n\t\t}\n\t\t.plTextWeightL{\n\t\t\theight: 0.875rem;\n\t\t}\n\t\t.plTextWidthS{\n\t\t\twidth: 75px;\n\t\t}\n\t\t.plTextWidthM{\n\t\t\twidth: 120px;\n\t\t}\n\t\t.plTextWidthL{\n\t\t\twidth: 225px;\n\t\t}\n\t\t.plTextWidthXL{\n\t\t\twidth: 275px;\n\t\t}\n\n\t\t.plAction{\n\t\t\twidth:1.5rem;\n\t\t\theight:1.5rem;\n\t\t\tborder-radius: 50%;\n\t\t}\n\t\t.plAvatarSizeS{\n\t\t\twidth:2rem;\n\t\t\theight:2rem;\n\t\t}\n\t\t.plAvatarSizeM{\n\t\t\twidth:5rem;\n\t\t\theight:5rem;\n\t\t}\n\t\t.plAvatarShapeCircle{\n\t\t\tborder-radius: 50%;\n\t\t}\n\n\n\t\t.plShellBar{\n\t\t\tbackground: #354a5f;\n\t\t\theight: 3rem;\n\t\t\tline-height: 2.825rem;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: space-between;\n\t\t}\n\n\t\t.plShellBar > * > *{\n\t\t\tvertical-align: middle;\n\t\t}\n\n\n\t\t.plShellBar .plLogo{\n\t\t\twidth: 3.5rem;\n\t\t\theight: 1.75rem;\n\t\t\toverflow: hidden;\n\t\t\tbackground: linear-gradient(135deg, #E0E0E0 0%, #E0E0E0 65%, transparent 66%, transparent 100%);\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t.plHeader{\n\t\t\tpadding-top: 1rem;\n\t\t\tpadding-bottom: 2rem;\n\t\t\tbackground: #fff;\n\t\t}\n\n\t\t/*.plHeader .plText,*/\n\t\t/*.plHeader .plAction,*/\n\t\t/*.plHeader .plAvatar{*/\n\t\t/*\tbackground: var(--sapContent_ImagePlaceholderBackground2);*/\n\t\t/*}*/\n\n\t\t.plHeaderTitle{\n\t\t\theight: 3rem;\n\t\t\tline-height: 2.825rem;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: space-between;\n\t\t}\n\t\t.plHeaderTitle > * > *{\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: middle;\n\t\t}\n\n\t\t.plHeaderContent{\n\t\t\tpadding-top: 2rem;\n\t\t\tpadding-bottom: 2rem;\n\t\t}\n\n\t\t.plAnchorBar{\n\t\t\tpadding-top: 1rem;\n\t\t\tpadding-bottom: 1px;\n\t\t}\n\n\t\t.plContent{\n\t\t\tbackground: #fff;\n\t\t}\n\n\t\t.plObjectPageSection{\n\t\t\tpadding-top: 1rem;\n\t\t\tposition: relative;\n\t\t}\n\n\t\t.plVerticalContent > *:not(:last-child).plObjectPageSectionTitle{\n\t\t\tmargin-bottom: 3rem;\n\t\t}\n\n\t\t.plObjectPageSectionTitle:after{\n\t\t\tcontent: ".";\n\t\t\tcolor:transparent;\n\t\t\tposition: absolute;\n\t\t\ttop: 3rem;\n\t\t\tleft:-1rem;\n\t\t\tright:-1rem;\n\t\t\theight:2px;\n\t\t\tbackground: #f2f2f2;\n\t\t}\n\n\n\n\n\t\t.plTable{\n\t\t\tpadding: 2rem 0;\n\t\t}\n\t\t.plTableTitle{\n\t\t\tbackground: #e0e0e0;\n\t\t\topacity:0.66;\n\t\t}\n\t\t.plTableColmnHeaderRow{\n\t\t\tbackground: #f2f2f2;\n\t\t\tmargin-left: -1rem;\n\t\t\tmargin-right: -1rem;\n\t\t\tpadding-left: 1rem;\n\t\t\tpadding-right: 1rem;\n\t\t}\n\t\t.plTableCell{\n\t\t\theight: 2rem;\n\t\t\tline-height: 2rem;\n\t\t\twidth:calc(100% / 8);\n\t\t}\n\t\t.plTableColmnHeaderCell{\n\t\t\theight: 2.5rem;\n\t\t\tline-height: 2.5rem;\n\t\t\twidth:calc(100% / 8);\n\t\t}\n\t\t.plTableText{\n\t\t\tdisplay: inline-block;\n\t\t}\n\t\t.plHorizontalContent > *:not(:last-child).plTableColmnHeaderCell,\n\t\t.plHorizontalContent > *:not(:last-child).plTableCell{\n\t\t\tmargin: 0\n\t\t}\n\n\n\t\t.plText,\n\t\t.plAction,\n\t\t.plAvatar{\n\t\t\t-webkit-animation-duration: 2s;\n\t\t\t-webkit-animation-fill-mode: forwards;\n\t\t\t-webkit-animation-iteration-count: infinite;\n\t\t\t-webkit-animation-name: placeHolderShimmer;\n\t\t\t-webkit-animation-timing-function: linear;\n\t\t\tbackground-image: linear-gradient(to right, #E0E0E0 0%, #E0E0E0 35%, #D3D3D3 50%, #E0E0E0 65%, #E0E0E0 100%);\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: 900px 104px;\n\t\t}\n\t\t@keyframes placeHolderShimmer{\n\t\t\t0% {\n\t\t\t\tbackground-position-x: 100%;\n\t\t\t}\n\t\t\t100% {\n\t\t\t\tbackground-position-x: 0%;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: 2560px) and (max-width: 3839px) {\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc((100% / 3) - 2rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:nth-child(4){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:calc(100% / 6);\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:nth-child(8),\n\t\t\t.plTableColmnHeaderCell:nth-child(7),\n\t\t\t.plTableCell:nth-child(8),\n\t\t\t.plTableCell:nth-child(7){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: 1024px) and (max-width: 2559px) {\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc((100% / 2) - 2rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:nth-child(4),\n\t\t\t.plCols4 > *:nth-child(3){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:calc(100% / 4);\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:nth-child(8),\n\t\t\t.plTableColmnHeaderCell:nth-child(7),\n\t\t\t.plTableColmnHeaderCell:nth-child(6),\n\t\t\t.plTableColmnHeaderCell:nth-child(5),\n\t\t\t.plTableCell:nth-child(8),\n\t\t\t.plTableCell:nth-child(7),\n\t\t\t.plTableCell:nth-child(6),\n\t\t\t.plTableCell:nth-child(5){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: 600px) and (max-width: 1023px) {\n\t\t\t.plResponsivePadding{\n\t\t\t\twidth: calc(100% - 4rem);\n\t\t\t\tpadding-left: 2rem;\n\t\t\t\tpadding-right: 2rem;\n\t\t\t}\n\n\t\t\t.plPageHeader .plHeaderContent > * > *{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plPageHeader .plHeaderContent > * > *:first-child,\n\t\t\t.plPageHeader .plHeaderContent > * > *:nth-child(2),\n\t\t\t.plPageHeader .plHeaderContent > * > *:nth-child(3){\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc((100% / 2) - 2rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:nth-child(4),\n\t\t\t.plCols4 > *:nth-child(3){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:calc(100% / 3);\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:nth-child(8),\n\t\t\t.plTableColmnHeaderCell:nth-child(7),\n\t\t\t.plTableColmnHeaderCell:nth-child(6),\n\t\t\t.plTableColmnHeaderCell:nth-child(5),\n\t\t\t.plTableColmnHeaderCell:nth-child(4),\n\t\t\t.plTableCell:nth-child(8),\n\t\t\t.plTableCell:nth-child(7),\n\t\t\t.plTableCell:nth-child(6),\n\t\t\t.plTableCell:nth-child(5),\n\t\t\t.plTableCell:nth-child(4){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: 599px) {\n\n\t\t\t.plResponsivePadding{\n\t\t\t\twidth: calc(100% - 2rem);\n\t\t\t\tpadding-left: 1rem;\n\t\t\t\tpadding-right: 1rem;\n\t\t\t}\n\n\t\t\t.plShellBar .plLogo{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plShellBar .plAction{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plHeaderTitleActions{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plObjectPageHeader .plHeaderContent > * > *,\n\t\t\t.plPageHeader .plHeaderContent > * > *{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plObjectPageHeader .plHeaderContent > * > *:first-child,\n\t\t\t.plPageHeader .plHeaderContent > * > *:first-child{\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.plObjectPageHeader .plHeaderContent > * > *:nth-child(2){\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.plAnchorBar:not(:first-child){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc(100% - 1rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:not(:first-child){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:100%\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:not(:first-child),\n\t\t\t.plTableCell:not(:first-child){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t</style><div class="plPlaceholderContainer">\n\n\n\t<div class="plHeader plResponsivePadding plPageHeader"><div class="plHeaderTitle"><div class="plHeaderTitleTextContainer"><div class="plHeaderTitleText plText plTextWeightL plTextWidthL"/></div><div class="plHeaderTitleActions"><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div><div class="plHeaderContent"><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div></div></div>\n\n\n\t<div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plContent plResponsivePadding"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTable plTable4Cols"><div class="plText plTextWeightL plTextWidthXL plTableTitle"/><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div></div></div>\n\n</div></mvc:View>',
|
|
147
|
+
"sap/fe/templates/RootContainer/view/PlaceholderOP.view.xml":'<mvc:View xmlns:mvc="sap.ui.core.mvc" displayBlock="true" height="100%" controllerName="sap.fe.templates.RootContainer.controller.Placeholder" xmlns="http://www.w3.org/1999/xhtml"><style>\n\t\t.plPlaceholderContainer{\n\t\t\t/*background: var(--sapContent_Placeholderloading_Background);*/\n background-color: #FFFFFF;\n \t\t\tposition: absolute;\n\t\t\twidth: 100%;\n\t\t\theight: 100%;\n }\n\t\t\n\n\t\t.plResponsivePadding{\n\t\t\twidth: calc(100% - 6rem);\n\t\t\tpadding-left: 3rem;\n\t\t\tpadding-right: 3rem;\n\t\t}\n\n\t\t.plCols4 > *{\n\t\t\twidth:calc(25% - 2rem);\n\t\t}\n\n\t\t.plPaddingTop{\n\t\t\tpadding-top: 1rem;\n\t\t}\n\n\n\n\n\t\t.plTextAlignStart{\n\t\t\ttext-align: start;\n\t\t}\n\t\t.plTextAlignCenter{\n\t\t\ttext-align: center;\n\t\t}\n\t\t.plTextAlignEnd{\n\t\t\ttext-align: end;\n\t\t}\n\n\t\t.plVerticalAlignTop{\n\t\t\tvertical-align: top;\n\t\t}\n\t\t.plVerticalAlignMiddle{\n\t\t\tvertical-align: middle;\n\t\t}\n\t\t.plVerticalAlignBottom{\n\t\t\tvertical-align: bottom;\n\t\t}\n\n\n\n\t\t.plHorizontalContent > *{\n\t\t\tdisplay: inline-block;\n\t\t}\n\n\t\t.plHorizontalContent > *:not(:last-child){\n\t\t\tmargin-left: 0;\n\t\t}\n\t\t.plHorizontalContent > *:not(:last-child){\n\t\t\tmargin-right: 2rem;\n\t\t}\n\t\t.plHorizontalContent.plTextAlignEnd > *:not(:last-child){\n\t\t\tmargin-right: 0;\n\t\t}\n\t\t.plHorizontalContent.plTextAlignEnd > *:not(:first-child){\n\t\t\tmargin-left: 2rem;\n\t\t}\n\n\n\n\t\t.plVerticalContent > *{\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t.plVerticalContent > *:not(:last-child){\n\t\t\tmargin-bottom: 1rem;\n\t\t}\n\n\t\t.plVerticalContent.plVerticalAlignBottom > *:not(:first-child){\n\t\t\tmargin-top: 1rem;\n\t\t}\n\n\n\n\t\t.plText{\n\t\t\tborder-radius: 0.25rem;\n\t\t}\n\t\t.plTextWeightS{\n\t\t\theight: 0.5rem;\n\t\t}\n\t\t.plTextWeightM{\n\t\t\theight: 0.75rem;\n\t\t}\n\t\t.plTextWeightL{\n\t\t\theight: 0.875rem;\n\t\t}\n\t\t.plTextWidthS{\n\t\t\twidth: 75px;\n\t\t}\n\t\t.plTextWidthM{\n\t\t\twidth: 120px;\n\t\t}\n\t\t.plTextWidthL{\n\t\t\twidth: 225px;\n\t\t}\n\t\t.plTextWidthXL{\n\t\t\twidth: 275px;\n\t\t}\n\n\t\t.plAction{\n\t\t\twidth:1.5rem;\n\t\t\theight:1.5rem;\n\t\t\tborder-radius: 50%;\n\t\t}\n\t\t.plAvatarSizeS{\n\t\t\twidth:2rem;\n\t\t\theight:2rem;\n\t\t}\n\t\t.plAvatarSizeM{\n\t\t\twidth:5rem;\n\t\t\theight:5rem;\n\t\t}\n\t\t.plAvatarShapeCircle{\n\t\t\tborder-radius: 50%;\n\t\t}\n\n\n\t\t.plShellBar{\n\t\t\tbackground: #354a5f;\n\t\t\theight: 3rem;\n\t\t\tline-height: 2.825rem;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: space-between;\n\t\t}\n\n\t\t.plShellBar > * > *{\n\t\t\tvertical-align: middle;\n\t\t}\n\n\n\t\t.plShellBar .plLogo{\n\t\t\twidth: 3.5rem;\n\t\t\theight: 1.75rem;\n\t\t\toverflow: hidden;\n\t\t\tbackground: linear-gradient(135deg, #E0E0E0 0%, #E0E0E0 65%, transparent 66%, transparent 100%);\n\t\t\tbackground-repeat: no-repeat;\n\t\t}\n\n\t\t.plHeader{\n\t\t\tpadding-top: 1rem;\n\t\t\tpadding-bottom: 2rem;\n\t\t\tbackground: #fff;\n\t\t}\n\n\t\t/*.plHeader .plText,*/\n\t\t/*.plHeader .plAction,*/\n\t\t/*.plHeader .plAvatar{*/\n\t\t/*\tbackground: var(--sapContent_ImagePlaceholderBackground2);*/\n\t\t/*}*/\n\n\t\t.plHeaderTitle{\n\t\t\theight: 3rem;\n\t\t\tline-height: 2.825rem;\n\t\t\tdisplay: flex;\n\t\t\tjustify-content: space-between;\n\t\t}\n\t\t.plHeaderTitle > * > *{\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: middle;\n\t\t}\n\n\t\t.plHeaderContent{\n\t\t\tpadding-top: 2rem;\n\t\t\tpadding-bottom: 2rem;\n\t\t}\n\n\t\t.plAnchorBar{\n\t\t\tpadding-top: 1rem;\n\t\t\tpadding-bottom: 1px;\n\t\t}\n\n\t\t.plContent{\n\t\t\tbackground: #fff;\n\t\t}\n\n\t\t.plObjectPageSection{\n\t\t\tpadding-top: 1rem;\n\t\t\tposition: relative;\n\t\t}\n\n\t\t.plVerticalContent > *:not(:last-child).plObjectPageSectionTitle{\n\t\t\tmargin-bottom: 3rem;\n\t\t}\n\n\t\t.plObjectPageSectionTitle:after{\n\t\t\tcontent: ".";\n\t\t\tcolor:transparent;\n\t\t\tposition: absolute;\n\t\t\ttop: 3rem;\n\t\t\tleft:-1rem;\n\t\t\tright:-1rem;\n\t\t\theight:2px;\n\t\t\tbackground: #f2f2f2;\n\t\t}\n\n\n\n\n\t\t.plTable{\n\t\t\tpadding: 2rem 0;\n\t\t}\n\t\t.plTableTitle{\n\t\t\tbackground: #e0e0e0;\n\t\t\topacity:0.66;\n\t\t}\n\t\t.plTableColmnHeaderRow{\n\t\t\tbackground: #f2f2f2;\n\t\t\tmargin-left: -1rem;\n\t\t\tmargin-right: -1rem;\n\t\t\tpadding-left: 1rem;\n\t\t\tpadding-right: 1rem;\n\t\t}\n\t\t.plTableCell{\n\t\t\theight: 2rem;\n\t\t\tline-height: 2rem;\n\t\t\twidth:calc(100% / 8);\n\t\t}\n\t\t.plTableColmnHeaderCell{\n\t\t\theight: 2.5rem;\n\t\t\tline-height: 2.5rem;\n\t\t\twidth:calc(100% / 8);\n\t\t}\n\t\t.plTableText{\n\t\t\tdisplay: inline-block;\n\t\t}\n\t\t.plHorizontalContent > *:not(:last-child).plTableColmnHeaderCell,\n\t\t.plHorizontalContent > *:not(:last-child).plTableCell{\n\t\t\tmargin: 0\n\t\t}\n\n\n\t\t.plText,\n\t\t.plAction,\n\t\t.plAvatar{\n\t\t\t-webkit-animation-duration: 2s;\n\t\t\t-webkit-animation-fill-mode: forwards;\n\t\t\t-webkit-animation-iteration-count: infinite;\n\t\t\t-webkit-animation-name: placeHolderShimmer;\n\t\t\t-webkit-animation-timing-function: linear;\n\t\t\tbackground-image: linear-gradient(to right, #E0E0E0 0%, #E0E0E0 35%, #D3D3D3 50%, #E0E0E0 65%, #E0E0E0 100%);\n\t\t\tbackground-repeat: no-repeat;\n\t\t\tbackground-size: 900px 104px;\n\t\t}\n\t\t@keyframes placeHolderShimmer{\n\t\t\t0% {\n\t\t\t\tbackground-position-x: 100%;\n\t\t\t}\n\t\t\t100% {\n\t\t\t\tbackground-position-x: 0%;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: 2560px) and (max-width: 3839px) {\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc((100% / 3) - 2rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:nth-child(4){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:calc(100% / 6);\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:nth-child(8),\n\t\t\t.plTableColmnHeaderCell:nth-child(7),\n\t\t\t.plTableCell:nth-child(8),\n\t\t\t.plTableCell:nth-child(7){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: 1024px) and (max-width: 2559px) {\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc((100% / 2) - 2rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:nth-child(4),\n\t\t\t.plCols4 > *:nth-child(3){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:calc(100% / 4);\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:nth-child(8),\n\t\t\t.plTableColmnHeaderCell:nth-child(7),\n\t\t\t.plTableColmnHeaderCell:nth-child(6),\n\t\t\t.plTableColmnHeaderCell:nth-child(5),\n\t\t\t.plTableCell:nth-child(8),\n\t\t\t.plTableCell:nth-child(7),\n\t\t\t.plTableCell:nth-child(6),\n\t\t\t.plTableCell:nth-child(5){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (min-width: 600px) and (max-width: 1023px) {\n\t\t\t.plResponsivePadding{\n\t\t\t\twidth: calc(100% - 4rem);\n\t\t\t\tpadding-left: 2rem;\n\t\t\t\tpadding-right: 2rem;\n\t\t\t}\n\n\t\t\t.plPageHeader .plHeaderContent > * > *{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plPageHeader .plHeaderContent > * > *:first-child,\n\t\t\t.plPageHeader .plHeaderContent > * > *:nth-child(2),\n\t\t\t.plPageHeader .plHeaderContent > * > *:nth-child(3){\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc((100% / 2) - 2rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:nth-child(4),\n\t\t\t.plCols4 > *:nth-child(3){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:calc(100% / 3);\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:nth-child(8),\n\t\t\t.plTableColmnHeaderCell:nth-child(7),\n\t\t\t.plTableColmnHeaderCell:nth-child(6),\n\t\t\t.plTableColmnHeaderCell:nth-child(5),\n\t\t\t.plTableColmnHeaderCell:nth-child(4),\n\t\t\t.plTableCell:nth-child(8),\n\t\t\t.plTableCell:nth-child(7),\n\t\t\t.plTableCell:nth-child(6),\n\t\t\t.plTableCell:nth-child(5),\n\t\t\t.plTableCell:nth-child(4){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t\t@media (max-width: 599px) {\n\n\t\t\t.plResponsivePadding{\n\t\t\t\twidth: calc(100% - 2rem);\n\t\t\t\tpadding-left: 1rem;\n\t\t\t\tpadding-right: 1rem;\n\t\t\t}\n\n\t\t\t.plShellBar .plLogo{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plShellBar .plAction{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plHeaderTitleActions{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plObjectPageHeader .plHeaderContent > * > *,\n\t\t\t.plPageHeader .plHeaderContent > * > *{\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plObjectPageHeader .plHeaderContent > * > *:first-child,\n\t\t\t.plPageHeader .plHeaderContent > * > *:first-child{\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.plObjectPageHeader .plHeaderContent > * > *:nth-child(2){\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\n\t\t\t.plAnchorBar:not(:first-child){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plCols4 > *{\n\t\t\t\twidth:calc(100% - 1rem);\n\t\t\t}\n\n\t\t\t.plCols4 > *:not(:first-child){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell,\n\t\t\t.plTableCell{\n\t\t\t\twidth:100%\n\t\t\t}\n\n\t\t\t.plTableColmnHeaderCell:not(:first-child),\n\t\t\t.plTableCell:not(:first-child){\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t}\n\n\t</style><div class="plPlaceholderContainer">\n\n\n\n\t<div class="plHeader plResponsivePadding plObjectPageHeader"><div class="plHeaderTitle"><div class="plHeaderTitleTextContainer"><div class="plHeaderTitleText plText plTextWeightL plTextWidthL"/></div><div class="plHeaderTitleActions"><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div><div class="plHeaderContent"><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop"><div class="plAvatar plAvatarSizeM plAvatarShapeSquare"/><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div></div><div class="plAnchorBar plHorizontalContent"><div class="plText plTextWeightL plTextWidthM plAnchorBarItem"/><div class="plText plTextWeightL plTextWidthM plAnchorBarItem"/><div class="plText plTextWeightL plTextWidthM plAnchorBarItem"/></div></div>\n\n\n\t<div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plContent plResponsivePadding"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plObjectPageSection"><div class="plText plTextWeightL plTextWidthXL plObjectPageSectionTitle"/><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plCols4"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightL plTextWidthL"/><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightL plTextWidthL"/><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightL plTextWidthL"/><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop"><div class="plText plTextWeightL plTextWidthL"/><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plPaddingTop"><div class="plText plTextWeightS plTextWidthM plHeaderTitleAction"/><div class="plText plTextWeightS plTextWidthS plHeaderTitleAction"/></div></div></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTable plTable4Cols"><div class="plText plTextWeightL plTextWidthXL plTableTitle"/><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableColmnHeaderCell plTableCell"><div class="plText plTextWeightM plTextWidthM plTableColmnHeaderText plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div><div class="plHorizontalLayout plHorizontalContent plTextAlignStart plVerticalAlignTop plTableRow"><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div><div class="plVerticalLayout plVerticalContent plTextAlignStart plVerticalAlignTop plTableCell"><div class="plText plTextWeightM plTextWidthM plTableText"/></div></div></div></div></div>\n\n\t</div></mvc:View>',
|
|
148
|
+
"sap/fe/templates/controls/Chart.fragment.xml":'<core:FragmentDefinition xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1" xmlns="sap.m" xmlns:macro="sap.fe.macros.internal" xmlns:core="sap.ui.core"><macro:Chart id="{visualizationDefinition>id}" contextPath="{visualizationDefinition>collection}" metaPath="{presentationContext>annotationPath}" chartDefinition="{visualizationDefinition>}" selectionMode="Multiple" personalization="{visualizationDefinition>personalization}" chartDelegate="{= \'{name: \\\'sap/fe/templates/AnalyticalListPage/chart/FEChartDelegate\\\', payload: { contextPath: \\\'\' + (${viewData>contextPath} ? ${viewData>contextPath} : (\'\\/\' + ${visualizationDefinition>entityName})) + \'\\\' } }\' }" dataPointsSelected=".handlers.onChartSelectionChanged" noDataText="{= ${converterContext>template} === \'ObjectPage\' ? undefined : ${sap.fe.i18n>T_OP_TABLE_AND_CHART_NO_DATA_TEXT} }"/></core:FragmentDefinition>',
|
|
149
|
+
"sap/fe/templates/controls/Paginator.control.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:uxap="sap.uxap"><HBox displayInline="true"><uxap:ObjectPageHeaderActionButton icon="sap-icon://navigation-up-arrow" visible="{= ${buttonEnablement>/navUpEnabled} || ${buttonEnablement>/navDownEnabled} }" enabled="{buttonEnablement>/navUpEnabled}" tooltip="{sap.fe.i18n>T_PAGINATOR_CONTROL_PAGINATOR_TOOLTIP_UP}" press=".handleShowPrevObject" type="Transparent" importance="High" id="previousItem"/><uxap:ObjectPageHeaderActionButton icon="sap-icon://navigation-down-arrow" visible="{= ${buttonEnablement>/navUpEnabled} || ${buttonEnablement>/navDownEnabled} }" enabled="{buttonEnablement>/navDownEnabled}" tooltip="{sap.fe.i18n>T_PAGINATOR_CONTROL_PAGINATOR_TOOLTIP_DOWN}" press=".handleShowNextObject" type="Transparent" importance="High" id="nextItem"/></HBox></core:FragmentDefinition>',
|
|
150
|
+
"sap/fe/templates/controls/Table.fragment.xml":'<core:FragmentDefinition xmlns="sap.m" xmlns:macro="sap.fe.macros.internal" xmlns:core="sap.ui.core" xmlns:unittest="http://schemas.sap.com/sapui5/preprocessorextension/sap.fe.unittesting/1"><macro:Table unittest:id="TablePropertyExpressionTest" metaPath="{presentationContext>annotationPath}" tableDefinition="{visualizationDefinition>}" contextPath="{fullContextPath>}" filterBarId="{= ${converterContext>filterBarId} ? ${converterContext>filterBarId} : undefined}" noDataText="{= ${converterContext>template} === \'ObjectPage\' ? undefined : ${sap.fe.i18n>T_OP_TABLE_AND_CHART_NO_DATA_TEXT} }" busy="{= ${converterContext>template} === "ObjectPage" ? "{ui>/busyLocal/"+${visualizationDefinition>annotation/id}+"}" : "{ui>/busy}"}" onContextChange="{= ${converterContext>template} === \'ObjectPage\' ? \'.handlers.onTableContextChange\' : null }" variantSelected=".handlers.onVariantSelected" variantSaved=".handlers.onVariantSaved" isAlp="{converterContext>hasMultiVisualizations}" onSegmentedButtonPressed="{= ${converterContext>hasMultiVisualizations} ? \'.handlers.onSegmentedButtonPressed\' : undefined }" visible="{= ${converterContext>hasMultiVisualizations} ? \'{= ${pageInternal>alpContentView} !== \\\'Chart\\\'}\' : \'true\' }"/></core:FragmentDefinition>',
|
|
151
|
+
"sap/fe/templates/manifest.json":'{"_version":"1.21.0","sap.app":{"id":"sap.fe.templates","type":"library","embeds":["ObjectPage","ListReport","AnalyticalListPage"],"applicationVersion":{"version":"1.94.0"},"title":"UI5 library: sap.fe.templates","description":"UI5 library: sap.fe.templates","ach":"CA-UI5-FE","resources":"resources.json","offline":true},"sap.ui":{"technology":"UI5","supportedThemes":[]},"sap.ui5":{"dependencies":{"minUI5Version":"1.94","libs":{"sap.f":{"minVersion":"1.94.0"},"sap.fe.core":{"minVersion":"1.94.0"},"sap.m":{"minVersion":"1.94.0"},"sap.fe.macros":{"minVersion":"1.94.0"},"sap.suite.ui.microchart":{"minVersion":"1.94.0","lazy":true},"sap.ui.core":{"minVersion":"1.94.0"},"sap.ui.layout":{"minVersion":"1.94.0","lazy":true},"sap.ui.mdc":{"minVersion":"1.94.0","lazy":false},"sap.uxap":{"minVersion":"1.94.0","lazy":true},"sap.ui.fl":{"minVersion":"1.94.0"},"sap.collaboration":{"minVersion":"@version@"},"sap.fe.common":{"minVersion":"1.94.0"}}},"library":{"i18n":{"bundleUrl":"messagebundle.properties","supportedLocales":["","ar","bg","ca","cs","cy","da","de","el","en","en-GB","en-US-sappsd","en-US-saprigi","en-US-saptrc","es","es-MX","et","fi","fr","fr-CA","hi","hr","hu","id","it","iw","ja","kk","ko","lt","lv","ms","nl","no","pl","pt","pt-PT","ro","ru","sh","sk","sl","sv","th","tr","uk","vi","zh-CN","zh-TW"]},"css":false,"content":{"controls":[],"elements":[],"types":["sap.fe.templates.ObjectPage.SectionLayout"],"interfaces":[]}}}}'
|
|
152
|
+
},"sap/fe/templates/library-preload"
|
|
153
|
+
);
|
|
154
|
+
//# sourceMappingURL=library-preload.js.map
|