@sap/ux-specification 1.96.3 → 1.96.6
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/CHANGELOG.md +75 -4
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +7 -14
- package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
- package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
- package/dist/documentation/v2/v2-ListReport.html +1 -1
- package/dist/documentation/v2/v2-ObjectPage.html +1 -1
- package/dist/documentation/v2/v2-OverviewPage.html +1 -1
- package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
- package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
- package/dist/documentation/v4/v4-ListReport.html +1 -1
- package/dist/documentation/v4/v4-ObjectPage.html +1 -1
- package/dist/index-min.js +1 -1
- package/dist/index-min.js.LICENSE.txt +0 -71
- package/dist/schemas/v2/AnalyticalListPageConfig.json +149 -15
- package/dist/schemas/v2/ListReportConfig.json +149 -15
- package/dist/schemas/v2/ObjectPageConfig.json +89 -33
- package/dist/schemas/v2/OverviewPageConfig.json +57 -16
- package/dist/schemas/v4/AnalyticalListPageConfig.json +122 -76
- package/dist/schemas/v4/ListReportConfig.json +122 -76
- package/dist/schemas/v4/ObjectPageConfig.json +150 -102
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/apiTypes.d.ts +6 -2
- package/dist/src/specification/v2/controls/Action.d.ts +19 -2
- package/dist/src/specification/v2/controls/FilterBar.d.ts +70 -22
- package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
- package/dist/src/specification/v2/controls/Table.d.ts +8 -1
- package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
- package/dist/src/specification/v2/controls/index.d.ts +1 -2
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +36 -2
- package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
- package/dist/src/specification/v4/controls/ObjectPageHeaderSection.d.ts +2 -14
- package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
- package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +21 -6
- package/dist/src/specification/v4/controls/Table.d.ts +1 -6
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +59 -10
- package/dist/src/sync/common/decoration/control.d.ts +11 -1
- package/dist/src/sync/common/generate/objectPage.d.ts +9 -0
- package/dist/src/sync/common/generate/utils.d.ts +36 -1
- package/dist/src/sync/common/import/utils.d.ts +8 -1
- package/dist/src/sync/common/types.d.ts +30 -16
- package/dist/src/sync/common/utils.d.ts +11 -3
- package/dist/src/sync/v2/export/controls/Action.d.ts +15 -0
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +18 -6
- package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +5 -5
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/ListReport.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +2 -1
- package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
- package/dist/src/sync/v2/generate/objectPage.d.ts +1 -5
- package/dist/src/sync/v2/generate/utils.d.ts +22 -11
- package/dist/src/sync/v2/import/common/index.d.ts +22 -4
- package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
- package/dist/src/sync/v2/import/utils.d.ts +4 -6
- package/dist/src/sync/v2/types.d.ts +8 -1
- package/dist/src/sync/v4/application.d.ts +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +13 -4
- package/dist/src/sync/v4/export/controls/TableColumn.d.ts +10 -2
- package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
- package/dist/src/sync/v4/export/exportCustomColumn.d.ts +13 -0
- package/dist/src/sync/v4/export/manifest.d.ts +1 -1
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ListReport.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
- package/dist/src/sync/v4/export/types.d.ts +3 -0
- package/dist/src/sync/v4/generate/generate.d.ts +4 -2
- package/dist/src/sync/v4/generate/listReport.d.ts +7 -6
- package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/listReport.d.ts +3 -3
- package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
- package/dist/src/sync/v4/utils/utils.d.ts +32 -1
- package/dist/test/unit/utils.test.d.ts +1 -1
- package/package.json +15 -16
- package/dist/scripts/extractDocu.js +0 -488
- package/dist/scripts/extractDocu.js.map +0 -1
- package/dist/scripts/runDocu.js +0 -577
- package/dist/scripts/runDocu.js.map +0 -1
- package/dist/scripts/spec.js +0 -114
- package/dist/scripts/spec.js.map +0 -1
- package/dist/scripts/to-json-schema.js +0 -130
- package/dist/scripts/to-json-schema.js.map +0 -1
- package/dist/src/api.js +0 -184
- package/dist/src/api.js.map +0 -1
- package/dist/src/apiTypes.js +0 -17
- package/dist/src/apiTypes.js.map +0 -1
- package/dist/src/extensionLogger.js +0 -39
- package/dist/src/extensionLogger.js.map +0 -1
- package/dist/src/i18n/i18n.js +0 -25
- package/dist/src/i18n/i18n.js.map +0 -1
- package/dist/src/index.js +0 -13
- package/dist/src/index.js.map +0 -1
- package/dist/src/project.js +0 -143
- package/dist/src/project.js.map +0 -1
- package/dist/src/specification/common/Application.js +0 -3
- package/dist/src/specification/common/Application.js.map +0 -1
- package/dist/src/specification/common/i18n.json +0 -1
- package/dist/src/specification/common/index.js +0 -10
- package/dist/src/specification/common/index.js.map +0 -1
- package/dist/src/specification/common/page.js +0 -33
- package/dist/src/specification/common/page.js.map +0 -1
- package/dist/src/specification/common/types.js +0 -20
- package/dist/src/specification/common/types.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/Manifest.js +0 -17
- package/dist/src/specification/common/webapp/manifest/Manifest.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/index.js +0 -8
- package/dist/src/specification/common/webapp/manifest/index.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/sapOvp.js +0 -9
- package/dist/src/specification/common/webapp/manifest/sapOvp.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/sapUi5.js +0 -14
- package/dist/src/specification/common/webapp/manifest/sapUi5.js.map +0 -1
- package/dist/src/specification/schemaAccess.js +0 -65
- package/dist/src/specification/schemaAccess.js.map +0 -1
- package/dist/src/specification/v2/ApplicationV2.js +0 -18
- package/dist/src/specification/v2/ApplicationV2.js.map +0 -1
- package/dist/src/specification/v2/controls/Action.js +0 -3
- package/dist/src/specification/v2/controls/Action.js.map +0 -1
- package/dist/src/specification/v2/controls/AnalyticalListPageChart.js +0 -36
- package/dist/src/specification/v2/controls/AnalyticalListPageChart.js.map +0 -1
- package/dist/src/specification/v2/controls/AnalyticalListPageKPI.js +0 -3
- package/dist/src/specification/v2/controls/AnalyticalListPageKPI.js.map +0 -1
- package/dist/src/specification/v2/controls/Card.js +0 -72
- package/dist/src/specification/v2/controls/Card.js.map +0 -1
- package/dist/src/specification/v2/controls/Facets.js +0 -3
- package/dist/src/specification/v2/controls/Facets.js.map +0 -1
- package/dist/src/specification/v2/controls/Field.js +0 -3
- package/dist/src/specification/v2/controls/Field.js.map +0 -1
- package/dist/src/specification/v2/controls/FilterBar.js +0 -54
- package/dist/src/specification/v2/controls/FilterBar.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageChart.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageChart.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
- package/dist/src/specification/v2/controls/ObjectPageFooter.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.d.ts +0 -28
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageForm.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageForm.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageLayout.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageSection.js +0 -13
- package/dist/src/specification/v2/controls/ObjectPageSection.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageTable.js +0 -7
- package/dist/src/specification/v2/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageToolBar.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageToolBar.js.map +0 -1
- package/dist/src/specification/v2/controls/Table.js +0 -42
- package/dist/src/specification/v2/controls/Table.js.map +0 -1
- package/dist/src/specification/v2/controls/ToolBar.js +0 -3
- package/dist/src/specification/v2/controls/ToolBar.js.map +0 -1
- package/dist/src/specification/v2/controls/index.js +0 -12
- package/dist/src/specification/v2/controls/index.js.map +0 -1
- package/dist/src/specification/v2/index.js +0 -10
- package/dist/src/specification/v2/index.js.map +0 -1
- package/dist/src/specification/v2/page.js +0 -3
- package/dist/src/specification/v2/page.js.map +0 -1
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.js +0 -3
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/ListReportConfig.js +0 -3
- package/dist/src/specification/v2/pages/ListReportConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/ObjectPageConfig.js +0 -3
- package/dist/src/specification/v2/pages/ObjectPageConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/OverviewPageConfig.js +0 -8
- package/dist/src/specification/v2/pages/OverviewPageConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/index.js +0 -7
- package/dist/src/specification/v2/pages/index.js.map +0 -1
- package/dist/src/specification/v2/webapp/index.js +0 -7
- package/dist/src/specification/v2/webapp/index.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/index.js +0 -8
- package/dist/src/specification/v2/webapp/manifest/index.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/sapUi.js +0 -3
- package/dist/src/specification/v2/webapp/manifest/sapUi.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/sapUi5.js +0 -10
- package/dist/src/specification/v2/webapp/manifest/sapUi5.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.js +0 -7
- package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.js.map +0 -1
- package/dist/src/specification/v4/ApplicationV4.js +0 -3
- package/dist/src/specification/v4/ApplicationV4.js.map +0 -1
- package/dist/src/specification/v4/controls/FilterBar.js +0 -3
- package/dist/src/specification/v4/controls/FilterBar.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageFooter.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageHeader.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageHeaderSection.js +0 -7
- package/dist/src/specification/v4/controls/ObjectPageHeaderSection.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageLayout.js +0 -8
- package/dist/src/specification/v4/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageSection.js +0 -12
- package/dist/src/specification/v4/controls/ObjectPageSection.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageTable.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageToolBar.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageToolBar.js.map +0 -1
- package/dist/src/specification/v4/controls/Table.js +0 -30
- package/dist/src/specification/v4/controls/Table.js.map +0 -1
- package/dist/src/specification/v4/controls/ToolBar.js +0 -8
- package/dist/src/specification/v4/controls/ToolBar.js.map +0 -1
- package/dist/src/specification/v4/controls/index.js +0 -11
- package/dist/src/specification/v4/controls/index.js.map +0 -1
- package/dist/src/specification/v4/index.js +0 -9
- package/dist/src/specification/v4/index.js.map +0 -1
- package/dist/src/specification/v4/page.js +0 -3
- package/dist/src/specification/v4/page.js.map +0 -1
- package/dist/src/specification/v4/pages/AnalyticalListPageConfig.js +0 -3
- package/dist/src/specification/v4/pages/AnalyticalListPageConfig.js.map +0 -1
- package/dist/src/specification/v4/pages/ListReportConfig.js +0 -9
- package/dist/src/specification/v4/pages/ListReportConfig.js.map +0 -1
- package/dist/src/specification/v4/pages/ObjectPageConfig.js +0 -8
- package/dist/src/specification/v4/pages/ObjectPageConfig.js.map +0 -1
- package/dist/src/specification/v4/pages/index.js +0 -8
- package/dist/src/specification/v4/pages/index.js.map +0 -1
- package/dist/src/specification/v4/webapp/index.js +0 -7
- package/dist/src/specification/v4/webapp/index.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +0 -16
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/index.js +0 -10
- package/dist/src/specification/v4/webapp/manifest/index.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/sapUi5.js +0 -11
- package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js +0 -14
- package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js.map +0 -1
- package/dist/src/sync/common/appProvider.js +0 -57
- package/dist/src/sync/common/appProvider.js.map +0 -1
- package/dist/src/sync/common/decoration/control.js +0 -180
- package/dist/src/sync/common/decoration/control.js.map +0 -1
- package/dist/src/sync/common/decoration/decorators.js +0 -43
- package/dist/src/sync/common/decoration/decorators.js.map +0 -1
- package/dist/src/sync/common/decoration/factory.js +0 -50
- package/dist/src/sync/common/decoration/factory.js.map +0 -1
- package/dist/src/sync/common/decoration/flex.js +0 -8
- package/dist/src/sync/common/decoration/flex.js.map +0 -1
- package/dist/src/sync/common/decoration/index.js +0 -9
- package/dist/src/sync/common/decoration/index.js.map +0 -1
- package/dist/src/sync/common/flexUtils.js +0 -95
- package/dist/src/sync/common/flexUtils.js.map +0 -1
- package/dist/src/sync/common/generate/index.js +0 -8
- package/dist/src/sync/common/generate/index.js.map +0 -1
- package/dist/src/sync/common/generate/objectPage.js +0 -336
- package/dist/src/sync/common/generate/objectPage.js.map +0 -1
- package/dist/src/sync/common/generate/utils.js +0 -205
- package/dist/src/sync/common/generate/utils.js.map +0 -1
- package/dist/src/sync/common/i18n.json +0 -21
- package/dist/src/sync/common/import/utils.js +0 -75
- package/dist/src/sync/common/import/utils.js.map +0 -1
- package/dist/src/sync/common/importProject.js +0 -351
- package/dist/src/sync/common/importProject.js.map +0 -1
- package/dist/src/sync/common/index.js +0 -15
- package/dist/src/sync/common/index.js.map +0 -1
- package/dist/src/sync/common/types.js +0 -82
- package/dist/src/sync/common/types.js.map +0 -1
- package/dist/src/sync/common/utils.js +0 -1056
- package/dist/src/sync/common/utils.js.map +0 -1
- package/dist/src/sync/i18n.js +0 -15
- package/dist/src/sync/i18n.js.map +0 -1
- package/dist/src/sync/v2/application.js +0 -190
- package/dist/src/sync/v2/application.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Action.js +0 -74
- package/dist/src/sync/v2/export/controls/Action.js.map +0 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js +0 -72
- package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js.map +0 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js +0 -56
- package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Card.js +0 -655
- package/dist/src/sync/v2/export/controls/Card.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Field.js +0 -32
- package/dist/src/sync/v2/export/controls/Field.js.map +0 -1
- package/dist/src/sync/v2/export/controls/FilterBar.js +0 -245
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +0 -1
- package/dist/src/sync/v2/export/controls/FormAction.js +0 -95
- package/dist/src/sync/v2/export/controls/FormAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Fragment.js +0 -401
- package/dist/src/sync/v2/export/controls/Fragment.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageChart.js +0 -37
- package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js +0 -110
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +0 -62
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js +0 -60
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +0 -62
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageLayout.js +0 -59
- package/dist/src/sync/v2/export/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +0 -144
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +0 -335
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +0 -59
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Table.js +0 -679
- package/dist/src/sync/v2/export/controls/Table.js.map +0 -1
- package/dist/src/sync/v2/export/controls/TableColumn.js +0 -41
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ToolBar.js +0 -6
- package/dist/src/sync/v2/export/controls/ToolBar.js.map +0 -1
- package/dist/src/sync/v2/export/controls/index.js +0 -26
- package/dist/src/sync/v2/export/controls/index.js.map +0 -1
- package/dist/src/sync/v2/export/export.js +0 -592
- package/dist/src/sync/v2/export/export.js.map +0 -1
- package/dist/src/sync/v2/export/exportPage.js +0 -312
- package/dist/src/sync/v2/export/exportPage.js.map +0 -1
- package/dist/src/sync/v2/export/factory.js +0 -59
- package/dist/src/sync/v2/export/factory.js.map +0 -1
- package/dist/src/sync/v2/export/manifest.js +0 -117
- package/dist/src/sync/v2/export/manifest.js.map +0 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +0 -41
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +0 -1
- package/dist/src/sync/v2/export/pages/ListReport.js +0 -38
- package/dist/src/sync/v2/export/pages/ListReport.js.map +0 -1
- package/dist/src/sync/v2/export/pages/ObjectPage.js +0 -100
- package/dist/src/sync/v2/export/pages/ObjectPage.js.map +0 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.js +0 -178
- package/dist/src/sync/v2/export/pages/OverviewPage.js.map +0 -1
- package/dist/src/sync/v2/export/pages/index.js +0 -10
- package/dist/src/sync/v2/export/pages/index.js.map +0 -1
- package/dist/src/sync/v2/export/view-controller-generator.js +0 -157
- package/dist/src/sync/v2/export/view-controller-generator.js.map +0 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +0 -87
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +0 -1
- package/dist/src/sync/v2/generate/generate.js +0 -96
- package/dist/src/sync/v2/generate/generate.js.map +0 -1
- package/dist/src/sync/v2/generate/index.js +0 -14
- package/dist/src/sync/v2/generate/index.js.map +0 -1
- package/dist/src/sync/v2/generate/listReport.js +0 -113
- package/dist/src/sync/v2/generate/listReport.js.map +0 -1
- package/dist/src/sync/v2/generate/objectPage.js +0 -556
- package/dist/src/sync/v2/generate/objectPage.js.map +0 -1
- package/dist/src/sync/v2/generate/overviewPage.js +0 -73
- package/dist/src/sync/v2/generate/overviewPage.js.map +0 -1
- package/dist/src/sync/v2/generate/utils.js +0 -347
- package/dist/src/sync/v2/generate/utils.js.map +0 -1
- package/dist/src/sync/v2/import/app/appProvider.js +0 -122
- package/dist/src/sync/v2/import/app/appProvider.js.map +0 -1
- package/dist/src/sync/v2/import/app/ovpProvider.js +0 -33
- package/dist/src/sync/v2/import/app/ovpProvider.js.map +0 -1
- package/dist/src/sync/v2/import/common/index.js +0 -213
- package/dist/src/sync/v2/import/common/index.js.map +0 -1
- package/dist/src/sync/v2/import/controls/table.js +0 -31
- package/dist/src/sync/v2/import/controls/table.js.map +0 -1
- package/dist/src/sync/v2/import/getPageType.js +0 -1
- package/dist/src/sync/v2/import/getPageType.js.map +0 -1
- package/dist/src/sync/v2/import/index.js +0 -11
- package/dist/src/sync/v2/import/index.js.map +0 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +0 -104
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +0 -1
- package/dist/src/sync/v2/import/pages/listReport.js +0 -234
- package/dist/src/sync/v2/import/pages/listReport.js.map +0 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +0 -620
- package/dist/src/sync/v2/import/pages/objectPage.js.map +0 -1
- package/dist/src/sync/v2/import/pages/overviewPage.js +0 -113
- package/dist/src/sync/v2/import/pages/overviewPage.js.map +0 -1
- package/dist/src/sync/v2/import/utils.js +0 -103
- package/dist/src/sync/v2/import/utils.js.map +0 -1
- package/dist/src/sync/v2/types.js +0 -26
- package/dist/src/sync/v2/types.js.map +0 -1
- package/dist/src/sync/v4/application.js +0 -80
- package/dist/src/sync/v4/application.js.map +0 -1
- package/dist/src/sync/v4/export/controls/FilterBar.js +0 -6
- package/dist/src/sync/v4/export/controls/FilterBar.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js +0 -136
- package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageHeader.js +0 -55
- package/dist/src/sync/v4/export/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js +0 -65
- package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageLayout.js +0 -24
- package/dist/src/sync/v4/export/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js +0 -245
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +0 -87
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.js +0 -21
- package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.js.map +0 -1
- package/dist/src/sync/v4/export/controls/Table.js +0 -318
- package/dist/src/sync/v4/export/controls/Table.js.map +0 -1
- package/dist/src/sync/v4/export/controls/TableColumn.js +0 -97
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ToolBar.js +0 -6
- package/dist/src/sync/v4/export/controls/ToolBar.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ToolBarAction.js +0 -21
- package/dist/src/sync/v4/export/controls/ToolBarAction.js.map +0 -1
- package/dist/src/sync/v4/export/controls/index.js +0 -18
- package/dist/src/sync/v4/export/controls/index.js.map +0 -1
- package/dist/src/sync/v4/export/export.js +0 -418
- package/dist/src/sync/v4/export/export.js.map +0 -1
- package/dist/src/sync/v4/export/factory.js +0 -44
- package/dist/src/sync/v4/export/factory.js.map +0 -1
- package/dist/src/sync/v4/export/flexibleColumnLayout.js +0 -114
- package/dist/src/sync/v4/export/flexibleColumnLayout.js.map +0 -1
- package/dist/src/sync/v4/export/manifest.js +0 -208
- package/dist/src/sync/v4/export/manifest.js.map +0 -1
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.js +0 -38
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.js.map +0 -1
- package/dist/src/sync/v4/export/pages/ListReport.js +0 -33
- package/dist/src/sync/v4/export/pages/ListReport.js.map +0 -1
- package/dist/src/sync/v4/export/pages/ObjectPage.js +0 -39
- package/dist/src/sync/v4/export/pages/ObjectPage.js.map +0 -1
- package/dist/src/sync/v4/export/pages/index.js +0 -9
- package/dist/src/sync/v4/export/pages/index.js.map +0 -1
- package/dist/src/sync/v4/export/types.js +0 -3
- package/dist/src/sync/v4/export/types.js.map +0 -1
- package/dist/src/sync/v4/export/utils.js +0 -26
- package/dist/src/sync/v4/export/utils.js.map +0 -1
- package/dist/src/sync/v4/generate/generate.js +0 -47
- package/dist/src/sync/v4/generate/generate.js.map +0 -1
- package/dist/src/sync/v4/generate/index.js +0 -10
- package/dist/src/sync/v4/generate/index.js.map +0 -1
- package/dist/src/sync/v4/generate/listReport.js +0 -96
- package/dist/src/sync/v4/generate/listReport.js.map +0 -1
- package/dist/src/sync/v4/generate/objectPage.js +0 -395
- package/dist/src/sync/v4/generate/objectPage.js.map +0 -1
- package/dist/src/sync/v4/import/app/appProvider.js +0 -313
- package/dist/src/sync/v4/import/app/appProvider.js.map +0 -1
- package/dist/src/sync/v4/import/fragment.js +0 -130
- package/dist/src/sync/v4/import/fragment.js.map +0 -1
- package/dist/src/sync/v4/import/index.js +0 -9
- package/dist/src/sync/v4/import/index.js.map +0 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -61
- package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +0 -1
- package/dist/src/sync/v4/import/pages/listReport.js +0 -124
- package/dist/src/sync/v4/import/pages/listReport.js.map +0 -1
- package/dist/src/sync/v4/import/pages/objectPage.js +0 -231
- package/dist/src/sync/v4/import/pages/objectPage.js.map +0 -1
- package/dist/src/sync/v4/import/utils.js +0 -33
- package/dist/src/sync/v4/import/utils.js.map +0 -1
- package/dist/src/sync/v4/types.js +0 -3
- package/dist/src/sync/v4/types.js.map +0 -1
- package/dist/src/sync/v4/utils/StableIdHelper.js +0 -153
- package/dist/src/sync/v4/utils/StableIdHelper.js.map +0 -1
- package/dist/src/sync/v4/utils/utils.js +0 -94
- package/dist/src/sync/v4/utils/utils.js.map +0 -1
- package/dist/src/v2.js +0 -8
- package/dist/src/v2.js.map +0 -1
- package/dist/src/v4.js +0 -8
- package/dist/src/v4.js.map +0 -1
- package/dist/test/test-utils/metadataParser.d.ts +0 -19
|
@@ -285,90 +285,35 @@
|
|
|
285
285
|
"additionalProperties": {
|
|
286
286
|
"anyOf": [
|
|
287
287
|
{
|
|
288
|
-
"
|
|
289
|
-
"isViewNode": true,
|
|
290
|
-
"type": "object",
|
|
291
|
-
"properties": {
|
|
292
|
-
"width": {
|
|
293
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
294
|
-
"type": "string"
|
|
295
|
-
},
|
|
296
|
-
"availability": {
|
|
297
|
-
"$ref": "#/definitions/Availability",
|
|
298
|
-
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
|
|
299
|
-
}
|
|
300
|
-
},
|
|
301
|
-
"additionalProperties": false
|
|
288
|
+
"$ref": "#/definitions/TableColumn"
|
|
302
289
|
},
|
|
303
290
|
{
|
|
304
|
-
"
|
|
305
|
-
"isViewNode": true,
|
|
306
|
-
"additionalProperties": false,
|
|
307
|
-
"type": "object",
|
|
308
|
-
"properties": {
|
|
309
|
-
"width": {
|
|
310
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
311
|
-
"type": "string"
|
|
312
|
-
},
|
|
313
|
-
"availability": {
|
|
314
|
-
"$ref": "#/definitions/Availability",
|
|
315
|
-
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
|
|
316
|
-
},
|
|
317
|
-
"afterExecution": {
|
|
318
|
-
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
319
|
-
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
|
|
320
|
-
}
|
|
321
|
-
}
|
|
291
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
322
292
|
},
|
|
323
293
|
{
|
|
324
|
-
"
|
|
325
|
-
"isViewNode": true,
|
|
326
|
-
"type": "array",
|
|
327
|
-
"items": {
|
|
328
|
-
"description": "Custom Column",
|
|
329
|
-
"isViewNode": true,
|
|
330
|
-
"additionalProperties": false,
|
|
331
|
-
"type": "object",
|
|
332
|
-
"properties": {
|
|
333
|
-
"position": {
|
|
334
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
335
|
-
"type": "object",
|
|
336
|
-
"properties": {
|
|
337
|
-
"anchor": {
|
|
338
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
339
|
-
"type": "string"
|
|
340
|
-
},
|
|
341
|
-
"placement": {
|
|
342
|
-
"$ref": "#/definitions/Placement",
|
|
343
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
344
|
-
}
|
|
345
|
-
},
|
|
346
|
-
"additionalProperties": false,
|
|
347
|
-
"required": [
|
|
348
|
-
"placement"
|
|
349
|
-
]
|
|
350
|
-
},
|
|
351
|
-
"header": {
|
|
352
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
353
|
-
"type": "string"
|
|
354
|
-
},
|
|
355
|
-
"width": {
|
|
356
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
357
|
-
"type": "string"
|
|
358
|
-
},
|
|
359
|
-
"template": {
|
|
360
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
361
|
-
"type": "string"
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
|
-
"required": [
|
|
365
|
-
"header"
|
|
366
|
-
]
|
|
367
|
-
}
|
|
294
|
+
"$ref": "#/definitions/TableCustomColumn"
|
|
368
295
|
}
|
|
369
296
|
]
|
|
370
297
|
}
|
|
371
298
|
},
|
|
299
|
+
"TableColumn": {
|
|
300
|
+
"description": "Table Column",
|
|
301
|
+
"isViewNode": true,
|
|
302
|
+
"type": "object",
|
|
303
|
+
"properties": {
|
|
304
|
+
"width": {
|
|
305
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
306
|
+
"type": "string",
|
|
307
|
+
"artifactType": "Manifest"
|
|
308
|
+
},
|
|
309
|
+
"availability": {
|
|
310
|
+
"$ref": "#/definitions/Availability",
|
|
311
|
+
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
|
|
312
|
+
"artifactType": "Manifest"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"additionalProperties": false
|
|
316
|
+
},
|
|
372
317
|
"Availability": {
|
|
373
318
|
"enum": [
|
|
374
319
|
"Adaptation",
|
|
@@ -377,6 +322,29 @@
|
|
|
377
322
|
],
|
|
378
323
|
"type": "string"
|
|
379
324
|
},
|
|
325
|
+
"TableColumnAction": {
|
|
326
|
+
"description": "Inline Action",
|
|
327
|
+
"isViewNode": true,
|
|
328
|
+
"type": "object",
|
|
329
|
+
"properties": {
|
|
330
|
+
"afterExecution": {
|
|
331
|
+
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
332
|
+
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
|
|
333
|
+
"artifactType": "Manifest"
|
|
334
|
+
},
|
|
335
|
+
"width": {
|
|
336
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
337
|
+
"type": "string",
|
|
338
|
+
"artifactType": "Manifest"
|
|
339
|
+
},
|
|
340
|
+
"availability": {
|
|
341
|
+
"$ref": "#/definitions/Availability",
|
|
342
|
+
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
|
|
343
|
+
"artifactType": "Manifest"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
"additionalProperties": false
|
|
347
|
+
},
|
|
380
348
|
"ActionAfterExecutionConfiguration": {
|
|
381
349
|
"type": "object",
|
|
382
350
|
"properties": {
|
|
@@ -393,6 +361,76 @@
|
|
|
393
361
|
},
|
|
394
362
|
"additionalProperties": false
|
|
395
363
|
},
|
|
364
|
+
"TableCustomColumn": {
|
|
365
|
+
"description": "Custom Column",
|
|
366
|
+
"isViewNode": true,
|
|
367
|
+
"type": "object",
|
|
368
|
+
"properties": {
|
|
369
|
+
"position": {
|
|
370
|
+
"$ref": "#/definitions/Position",
|
|
371
|
+
"description": "Defines the position of the column relative to other columns.",
|
|
372
|
+
"artifactType": "Manifest"
|
|
373
|
+
},
|
|
374
|
+
"header": {
|
|
375
|
+
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
376
|
+
"i18nClassification": "COL: Custom column header text",
|
|
377
|
+
"type": "string",
|
|
378
|
+
"artifactType": "Manifest"
|
|
379
|
+
},
|
|
380
|
+
"width": {
|
|
381
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
382
|
+
"type": "string",
|
|
383
|
+
"artifactType": "Manifest"
|
|
384
|
+
},
|
|
385
|
+
"template": {
|
|
386
|
+
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
387
|
+
"type": "string",
|
|
388
|
+
"artifactType": "Manifest"
|
|
389
|
+
},
|
|
390
|
+
"horizontalAlign": {
|
|
391
|
+
"$ref": "#/definitions/HorizontalAlign",
|
|
392
|
+
"description": "Aligns the header as well as the content horizontally.",
|
|
393
|
+
"artifactType": "Manifest"
|
|
394
|
+
},
|
|
395
|
+
"availability": {
|
|
396
|
+
"$ref": "#/definitions/Availability",
|
|
397
|
+
"description": "Defines where the column should be shown.\n- Default: it will be shown by default in the table.\n- Adaptation: it will initially not shown in the table but be available via end user adaptation\n- Hidden: the column is neither available in the table nor in adaptation",
|
|
398
|
+
"artifactType": "Manifest"
|
|
399
|
+
},
|
|
400
|
+
"properties": {
|
|
401
|
+
"description": "If provided and sorting is enabled for the table the custom column header can be clicked. This will lead to a list of properties (or one) that can be sorted by, they are displayed as the labels of the properties, corresponding to their definition in the annotations.",
|
|
402
|
+
"type": "array",
|
|
403
|
+
"items": {
|
|
404
|
+
"type": "string"
|
|
405
|
+
},
|
|
406
|
+
"artifactType": "Manifest"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"additionalProperties": false,
|
|
410
|
+
"required": [
|
|
411
|
+
"header",
|
|
412
|
+
"template"
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
"Position": {
|
|
416
|
+
"type": "object",
|
|
417
|
+
"properties": {
|
|
418
|
+
"anchor": {
|
|
419
|
+
"description": "The key of another column to be used as placement anchor.",
|
|
420
|
+
"type": "string",
|
|
421
|
+
"artifactType": "Manifest"
|
|
422
|
+
},
|
|
423
|
+
"placement": {
|
|
424
|
+
"$ref": "#/definitions/Placement",
|
|
425
|
+
"description": "Define the placement, either before or after the anchor column.",
|
|
426
|
+
"artifactType": "Manifest"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"additionalProperties": false,
|
|
430
|
+
"required": [
|
|
431
|
+
"placement"
|
|
432
|
+
]
|
|
433
|
+
},
|
|
396
434
|
"Placement": {
|
|
397
435
|
"enum": [
|
|
398
436
|
"After",
|
|
@@ -401,6 +439,14 @@
|
|
|
401
439
|
],
|
|
402
440
|
"type": "string"
|
|
403
441
|
},
|
|
442
|
+
"HorizontalAlign": {
|
|
443
|
+
"enum": [
|
|
444
|
+
"Begin",
|
|
445
|
+
"Center",
|
|
446
|
+
"End"
|
|
447
|
+
],
|
|
448
|
+
"type": "string"
|
|
449
|
+
},
|
|
404
450
|
"VariantManagementTypeListReport": {
|
|
405
451
|
"enum": [
|
|
406
452
|
"Control",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
25
|
"footer": {
|
|
26
|
-
"$ref": "#/definitions/ObjectPageFooter<
|
|
26
|
+
"$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
|
|
27
27
|
},
|
|
28
28
|
"$schema": {
|
|
29
29
|
"type": "string"
|
|
@@ -80,13 +80,10 @@
|
|
|
80
80
|
"additionalProperties": {
|
|
81
81
|
"anyOf": [
|
|
82
82
|
{
|
|
83
|
-
"$ref": "#/definitions/
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"$ref": "#/definitions/ObjectPageHeaderSectionChart"
|
|
83
|
+
"$ref": "#/definitions/CommonHeaderFacetSettings"
|
|
87
84
|
},
|
|
88
85
|
{
|
|
89
|
-
"$ref": "#/definitions/
|
|
86
|
+
"$ref": "#/definitions/ObjectPageHeaderSectionForm"
|
|
90
87
|
},
|
|
91
88
|
{
|
|
92
89
|
"$ref": "#/definitions/ObjectPageHeaderSectionContact"
|
|
@@ -97,16 +94,9 @@
|
|
|
97
94
|
]
|
|
98
95
|
}
|
|
99
96
|
},
|
|
100
|
-
"
|
|
97
|
+
"CommonHeaderFacetSettings": {
|
|
101
98
|
"type": "object",
|
|
102
99
|
"properties": {
|
|
103
|
-
"form": {
|
|
104
|
-
"description": "Form",
|
|
105
|
-
"isViewNode": true,
|
|
106
|
-
"type": "object",
|
|
107
|
-
"properties": {},
|
|
108
|
-
"additionalProperties": true
|
|
109
|
-
},
|
|
110
100
|
"stashed": {
|
|
111
101
|
"description": "Header facets marked as stashed are initially not visible on the UI. Key users can add these header facets via key user adaptation.",
|
|
112
102
|
"type": "boolean",
|
|
@@ -133,33 +123,11 @@
|
|
|
133
123
|
},
|
|
134
124
|
"additionalProperties": false
|
|
135
125
|
},
|
|
136
|
-
"
|
|
137
|
-
"type": "object",
|
|
138
|
-
"properties": {
|
|
139
|
-
"chart": {
|
|
140
|
-
"description": "Chart",
|
|
141
|
-
"isViewNode": true,
|
|
142
|
-
"type": "object",
|
|
143
|
-
"properties": {},
|
|
144
|
-
"additionalProperties": true
|
|
145
|
-
},
|
|
146
|
-
"stashed": {
|
|
147
|
-
"description": "Header facets marked as stashed are initially not visible on the UI. Key users can add these header facets via key user adaptation.",
|
|
148
|
-
"type": "boolean",
|
|
149
|
-
"artifactType": "Manifest"
|
|
150
|
-
},
|
|
151
|
-
"flexSettings": {
|
|
152
|
-
"$ref": "#/definitions/FlexSettings",
|
|
153
|
-
"artifactType": "Manifest"
|
|
154
|
-
}
|
|
155
|
-
},
|
|
156
|
-
"additionalProperties": false
|
|
157
|
-
},
|
|
158
|
-
"ObjectPageHeaderSectionDataPoint": {
|
|
126
|
+
"ObjectPageHeaderSectionForm": {
|
|
159
127
|
"type": "object",
|
|
160
128
|
"properties": {
|
|
161
|
-
"
|
|
162
|
-
"description": "
|
|
129
|
+
"form": {
|
|
130
|
+
"description": "Form",
|
|
163
131
|
"isViewNode": true,
|
|
164
132
|
"type": "object",
|
|
165
133
|
"properties": {},
|
|
@@ -316,7 +284,7 @@
|
|
|
316
284
|
"artifactType": "Manifest"
|
|
317
285
|
},
|
|
318
286
|
"columns": {
|
|
319
|
-
"$ref": "#/definitions/
|
|
287
|
+
"$ref": "#/definitions/GenericColumnsOP"
|
|
320
288
|
},
|
|
321
289
|
"type": {
|
|
322
290
|
"$ref": "#/definitions/TableTypeV4",
|
|
@@ -477,75 +445,40 @@
|
|
|
477
445
|
"annotationPath"
|
|
478
446
|
]
|
|
479
447
|
},
|
|
480
|
-
"
|
|
448
|
+
"GenericColumnsOP": {
|
|
481
449
|
"type": "object",
|
|
482
450
|
"additionalProperties": {
|
|
483
451
|
"anyOf": [
|
|
484
452
|
{
|
|
485
|
-
"
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
"
|
|
489
|
-
"width": {
|
|
490
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
491
|
-
"type": "string"
|
|
492
|
-
},
|
|
493
|
-
"availability": {
|
|
494
|
-
"$ref": "#/definitions/Availability",
|
|
495
|
-
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
|
|
496
|
-
}
|
|
497
|
-
},
|
|
498
|
-
"additionalProperties": false
|
|
453
|
+
"$ref": "#/definitions/ObjectPageTableColumn"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"$ref": "#/definitions/ObjectPageTableColumnAction"
|
|
499
457
|
},
|
|
500
458
|
{
|
|
501
|
-
"
|
|
502
|
-
"isViewNode": true,
|
|
503
|
-
"type": "array",
|
|
504
|
-
"items": {
|
|
505
|
-
"description": "Custom Column",
|
|
506
|
-
"isViewNode": true,
|
|
507
|
-
"additionalProperties": false,
|
|
508
|
-
"type": "object",
|
|
509
|
-
"properties": {
|
|
510
|
-
"position": {
|
|
511
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
512
|
-
"type": "object",
|
|
513
|
-
"properties": {
|
|
514
|
-
"anchor": {
|
|
515
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
516
|
-
"type": "string"
|
|
517
|
-
},
|
|
518
|
-
"placement": {
|
|
519
|
-
"$ref": "#/definitions/Placement",
|
|
520
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
|
-
"additionalProperties": false,
|
|
524
|
-
"required": [
|
|
525
|
-
"placement"
|
|
526
|
-
]
|
|
527
|
-
},
|
|
528
|
-
"header": {
|
|
529
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
530
|
-
"type": "string"
|
|
531
|
-
},
|
|
532
|
-
"width": {
|
|
533
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
534
|
-
"type": "string"
|
|
535
|
-
},
|
|
536
|
-
"template": {
|
|
537
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
538
|
-
"type": "string"
|
|
539
|
-
}
|
|
540
|
-
},
|
|
541
|
-
"required": [
|
|
542
|
-
"header"
|
|
543
|
-
]
|
|
544
|
-
}
|
|
459
|
+
"$ref": "#/definitions/TableCustomColumnOP"
|
|
545
460
|
}
|
|
546
461
|
]
|
|
547
462
|
}
|
|
548
463
|
},
|
|
464
|
+
"ObjectPageTableColumn": {
|
|
465
|
+
"description": "Table Column",
|
|
466
|
+
"isViewNode": true,
|
|
467
|
+
"type": "object",
|
|
468
|
+
"properties": {
|
|
469
|
+
"width": {
|
|
470
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
471
|
+
"type": "string",
|
|
472
|
+
"artifactType": "Manifest"
|
|
473
|
+
},
|
|
474
|
+
"availability": {
|
|
475
|
+
"$ref": "#/definitions/Availability",
|
|
476
|
+
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
|
|
477
|
+
"artifactType": "Manifest"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"additionalProperties": false
|
|
481
|
+
},
|
|
549
482
|
"Availability": {
|
|
550
483
|
"enum": [
|
|
551
484
|
"Adaptation",
|
|
@@ -554,6 +487,113 @@
|
|
|
554
487
|
],
|
|
555
488
|
"type": "string"
|
|
556
489
|
},
|
|
490
|
+
"ObjectPageTableColumnAction": {
|
|
491
|
+
"description": "Inline Action for Object Page",
|
|
492
|
+
"isViewNode": true,
|
|
493
|
+
"type": "object",
|
|
494
|
+
"properties": {
|
|
495
|
+
"afterExecution": {
|
|
496
|
+
"$ref": "#/definitions/ActionAfterExecutionConfigurationOP",
|
|
497
|
+
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
|
|
498
|
+
"artifactType": "Manifest"
|
|
499
|
+
},
|
|
500
|
+
"width": {
|
|
501
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
502
|
+
"type": "string",
|
|
503
|
+
"artifactType": "Manifest"
|
|
504
|
+
},
|
|
505
|
+
"availability": {
|
|
506
|
+
"$ref": "#/definitions/Availability",
|
|
507
|
+
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
|
|
508
|
+
"artifactType": "Manifest"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"additionalProperties": false
|
|
512
|
+
},
|
|
513
|
+
"ActionAfterExecutionConfigurationOP": {
|
|
514
|
+
"type": "object",
|
|
515
|
+
"properties": {
|
|
516
|
+
"navigateToInstance": {
|
|
517
|
+
"description": "By default, a navigation is automatically triggered after an action execution. If applications want to disable the navigation, they can do so using the manifest setting “navigateToInstance”.",
|
|
518
|
+
"type": "boolean",
|
|
519
|
+
"artifactType": "Manifest"
|
|
520
|
+
},
|
|
521
|
+
"enableAutoScroll": {
|
|
522
|
+
"description": "The \"enableAutoScroll\" allows you to scroll to the newly created or change item after execution of an action",
|
|
523
|
+
"type": "boolean",
|
|
524
|
+
"artifactType": "Manifest"
|
|
525
|
+
}
|
|
526
|
+
},
|
|
527
|
+
"additionalProperties": false
|
|
528
|
+
},
|
|
529
|
+
"TableCustomColumnOP": {
|
|
530
|
+
"type": "object",
|
|
531
|
+
"properties": {
|
|
532
|
+
"position": {
|
|
533
|
+
"$ref": "#/definitions/PositionOP",
|
|
534
|
+
"description": "Defines the position of the column relative to other columns.",
|
|
535
|
+
"artifactType": "Manifest"
|
|
536
|
+
},
|
|
537
|
+
"header": {
|
|
538
|
+
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
539
|
+
"i18nClassification": "COL: Custom column header text",
|
|
540
|
+
"type": "string",
|
|
541
|
+
"artifactType": "Manifest"
|
|
542
|
+
},
|
|
543
|
+
"width": {
|
|
544
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
545
|
+
"type": "string",
|
|
546
|
+
"artifactType": "Manifest"
|
|
547
|
+
},
|
|
548
|
+
"template": {
|
|
549
|
+
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
550
|
+
"type": "string",
|
|
551
|
+
"artifactType": "Manifest"
|
|
552
|
+
},
|
|
553
|
+
"horizontalAlign": {
|
|
554
|
+
"$ref": "#/definitions/HorizontalAlign",
|
|
555
|
+
"description": "Aligns the header as well as the content horizontally.",
|
|
556
|
+
"artifactType": "Manifest"
|
|
557
|
+
},
|
|
558
|
+
"availability": {
|
|
559
|
+
"$ref": "#/definitions/Availability",
|
|
560
|
+
"description": "Defines where the column should be shown.\n- Default: it will be shown by default in the table.\n- Adaptation: it will initially not shown in the table but be available via end user adaptation\n- Hidden: the column is neither available in the table nor in adaptation",
|
|
561
|
+
"artifactType": "Manifest"
|
|
562
|
+
},
|
|
563
|
+
"properties": {
|
|
564
|
+
"description": "If provided and sorting is enabled for the table the custom column header can be clicked. This will lead to a list of properties (or one) that can be sorted by, they are displayed as the labels of the properties, corresponding to their definition in the annotations.",
|
|
565
|
+
"type": "array",
|
|
566
|
+
"items": {
|
|
567
|
+
"type": "string"
|
|
568
|
+
},
|
|
569
|
+
"artifactType": "Manifest"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"additionalProperties": false,
|
|
573
|
+
"required": [
|
|
574
|
+
"header",
|
|
575
|
+
"template"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
"PositionOP": {
|
|
579
|
+
"type": "object",
|
|
580
|
+
"properties": {
|
|
581
|
+
"anchor": {
|
|
582
|
+
"description": "The key of another column to be used as placement anchor.",
|
|
583
|
+
"type": "string",
|
|
584
|
+
"artifactType": "Manifest"
|
|
585
|
+
},
|
|
586
|
+
"placement": {
|
|
587
|
+
"$ref": "#/definitions/Placement",
|
|
588
|
+
"description": "Define the placement, either before or after the anchor column.",
|
|
589
|
+
"artifactType": "Manifest"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"additionalProperties": false,
|
|
593
|
+
"required": [
|
|
594
|
+
"placement"
|
|
595
|
+
]
|
|
596
|
+
},
|
|
557
597
|
"Placement": {
|
|
558
598
|
"enum": [
|
|
559
599
|
"After",
|
|
@@ -562,6 +602,14 @@
|
|
|
562
602
|
],
|
|
563
603
|
"type": "string"
|
|
564
604
|
},
|
|
605
|
+
"HorizontalAlign": {
|
|
606
|
+
"enum": [
|
|
607
|
+
"Begin",
|
|
608
|
+
"Center",
|
|
609
|
+
"End"
|
|
610
|
+
],
|
|
611
|
+
"type": "string"
|
|
612
|
+
},
|
|
565
613
|
"TableTypeV4": {
|
|
566
614
|
"enum": [
|
|
567
615
|
"AnalyticalTable",
|
|
@@ -700,18 +748,18 @@
|
|
|
700
748
|
],
|
|
701
749
|
"type": "string"
|
|
702
750
|
},
|
|
703
|
-
"ObjectPageFooter<
|
|
751
|
+
"ObjectPageFooter<ObjectPageFooterActions>": {
|
|
704
752
|
"description": "Footer",
|
|
705
753
|
"isViewNode": true,
|
|
706
754
|
"type": "object",
|
|
707
755
|
"properties": {
|
|
708
756
|
"actions": {
|
|
709
|
-
"$ref": "#/definitions/
|
|
757
|
+
"$ref": "#/definitions/ObjectPageFooterActions"
|
|
710
758
|
}
|
|
711
759
|
},
|
|
712
760
|
"additionalProperties": false
|
|
713
761
|
},
|
|
714
|
-
"
|
|
762
|
+
"ObjectPageFooterActions": {
|
|
715
763
|
"type": "object",
|
|
716
764
|
"additionalProperties": {
|
|
717
765
|
"type": "object",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={6442:(e,t)=>{var a;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(t.DataSourceType||(t.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(a=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${a.generic}/settings`},3404:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6442)),n(a(5281))},5281:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",t.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(t.ViewTypes||(t.ViewTypes={})),t.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",t.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(t.TableColumnVerticalAlignment||(t.TableColumnVerticalAlignment={})),function(e){e.persistence="persistence",e.discovery="discovery"}(t.StatePreservationMode||(t.StatePreservationMode={})),function(e){e.restricted="restricted"}(t.DraftDiscardEnabledSettings||(t.DraftDiscardEnabledSettings={}))},2387:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(t.ChartType||(t.ChartType={}))},6745:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(t.ChartCardType||(t.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(t.CardTemplateType||(t.CardTemplateType={})),t.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(t.CardSettingsType||(t.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(t.MeasureAggregateValues||(t.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(t.ListFlavorType||(t.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(t.ListTypeType||(t.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(t.SortOrderType||(t.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(t.LinkListFlavorType||(t.LinkListFlavorType={}))},2922:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(t.DateRangeType||(t.DateRangeType={}))},7876:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.ExtensionFragmentTypes||(t.ExtensionFragmentTypes={}))},9649:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.inline="inline"}(t.CreateMode||(t.CreateMode={}))},2906:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.XML="XML"}(t.customColumnViewTypes||(t.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(t.TableTypeV2||(t.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(t.TableColumnExtensionTypeV2||(t.TableColumnExtensionTypeV2={})),function(e){e.extension="extension"}(t.Strategy||(t.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(t.DefaultContentView||(t.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(t.DefaultFilterMode||(t.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(t.LoadDataOnAppLaunchSettings||(t.LoadDataOnAppLaunchSettings={}))},6402:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6745)),n(a(2922)),n(a(2906)),n(a(2387)),n(a(7876)),n(a(9649))},390:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(3800)),n(a(6402)),n(a(9809)),n(a(3846))},2505:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(t.ContainerLayoutType||(t.ContainerLayoutType={}))},3800:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(2505))},9809:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(7900))},7900:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(4867)),n(a(1374))},1374:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0});a(5877);t.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",t.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",t.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",t.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",t.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V2="sap.suite.ui.generic.template",t.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",t.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",t.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(t.DesigntimeValues||(t.DesigntimeValues={}))},8554:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(t.SectionLayoutType||(t.SectionLayoutType={}))},4685:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.CustomSectionViewTypesV4||(t.CustomSectionViewTypesV4={}))},7093:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(t.SelectionMode||(t.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(t.TableTypeV4||(t.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(t.TableCreationModeType||(t.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(t.InitialLoadType||(t.InitialLoadType={}))},8452:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(t.SelectType||(t.SelectType={}))},1709:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7093)),n(a(8452)),n(a(9734)),n(a(8554)),n(a(4685))},5877:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(2616)),n(a(1709)),n(a(5113))},5759:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(t.VariantManagementTypeListReport||(t.VariantManagementTypeListReport={}))},8999:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(t.VariantManagementTypeObjectPage||(t.VariantManagementTypeObjectPage={}))},2616:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8999)),n(a(5759))},5113:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(6568))},5817:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(t.Placement||(t.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(t.Availability||(t.Availability={}))},6568:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8778)),n(a(8741)),n(a(3404)),n(a(5817))},8741:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(t.FlexibleColumnLayoutAggregations||(t.FlexibleColumnLayoutAggregations={})),t.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V4="sap.fe.templates",t.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",t.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",t.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",t.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",t.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(t.SectionPositionV4||(t.SectionPositionV4={}))}},t={};var a=function a(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,a),o.exports}(390);module.exports=a})();
|
|
1
|
+
(()=>{"use strict";var e={6442:(e,t)=>{var a;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(t.DataSourceType||(t.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(a=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${a.generic}/settings`},3404:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6442)),n(a(5281))},5281:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",t.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(t.ViewTypes||(t.ViewTypes={})),t.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",t.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(t.TableColumnVerticalAlignment||(t.TableColumnVerticalAlignment={})),function(e){e.persistence="persistence",e.discovery="discovery"}(t.StatePreservationMode||(t.StatePreservationMode={})),function(e){e.restricted="restricted"}(t.DraftDiscardEnabledSettings||(t.DraftDiscardEnabledSettings={}))},2387:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(t.ChartType||(t.ChartType={}))},6745:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(t.ChartCardType||(t.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(t.CardTemplateType||(t.CardTemplateType={})),t.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(t.CardSettingsType||(t.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(t.MeasureAggregateValues||(t.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(t.ListFlavorType||(t.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(t.ListTypeType||(t.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(t.SortOrderType||(t.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(t.LinkListFlavorType||(t.LinkListFlavorType={}))},2922:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(t.DateRangeType||(t.DateRangeType={})),function(e){e.YESTERDAY="YESTERDAY",e.TODAY="TODAY",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.THISMONTH="THISMONTH",e.TOMORROW="TOMORROW",e.LASTMONTH="LASTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.THISYEAR="THISYEAR",e.LASTYEAR="LASTYEAR",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.YEARTODATE="YEARTODATE",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.DATETOYEAR="DATETOYEAR"}(t.DefaultDateRangeValueType||(t.DefaultDateRangeValueType={}))},7876:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.ExtensionFragmentTypes||(t.ExtensionFragmentTypes={}))},9649:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.inline="inline"}(t.CreateMode||(t.CreateMode={}))},2906:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.XML="XML"}(t.customColumnViewTypes||(t.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(t.TableTypeV2||(t.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(t.TableColumnExtensionTypeV2||(t.TableColumnExtensionTypeV2={})),function(e){e.extension="extension"}(t.Strategy||(t.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(t.DefaultContentView||(t.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(t.DefaultFilterMode||(t.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(t.LoadDataOnAppLaunchSettings||(t.LoadDataOnAppLaunchSettings={}))},6402:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6745)),n(a(2922)),n(a(2906)),n(a(2387)),n(a(7876)),n(a(9649))},390:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(3800)),n(a(6402)),n(a(9809)),n(a(3846))},2505:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(t.ContainerLayoutType||(t.ContainerLayoutType={}))},3800:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(2505))},9809:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(4149))},4149:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(4867)),n(a(1374))},1374:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0});a(5877);t.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",t.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",t.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",t.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",t.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V2="sap.suite.ui.generic.template",t.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",t.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",t.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(t.DesigntimeValues||(t.DesigntimeValues={}))},8554:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(t.SectionLayoutType||(t.SectionLayoutType={}))},4685:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.CustomSectionViewTypesV4||(t.CustomSectionViewTypesV4={}))},7093:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(t.SelectionMode||(t.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(t.TableTypeV4||(t.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(t.TableCreationModeType||(t.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(t.InitialLoadType||(t.InitialLoadType={}))},8452:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(t.SelectType||(t.SelectType={}))},1709:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7093)),n(a(8452)),n(a(9734)),n(a(8554)),n(a(4685))},5877:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7005)),n(a(1709)),n(a(5113))},5759:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(t.VariantManagementTypeListReport||(t.VariantManagementTypeListReport={}))},8999:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(t.VariantManagementTypeObjectPage||(t.VariantManagementTypeObjectPage={}))},7005:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8999)),n(a(5759))},5113:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(6568))},5817:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(t.Placement||(t.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(t.Availability||(t.Availability={})),function(e){e.Begin="Begin",e.Center="Center",e.End="End"}(t.HorizontalAlign||(t.HorizontalAlign={}))},6568:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8778)),n(a(8741)),n(a(3404)),n(a(5817))},8741:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(t.FlexibleColumnLayoutAggregations||(t.FlexibleColumnLayoutAggregations={})),t.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V4="sap.fe.templates",t.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",t.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",t.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",t.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",t.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(t.SectionPositionV4||(t.SectionPositionV4={}))}},t={};var a=function a(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,a),o.exports}(390);module.exports=a})();
|