@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
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={6442:(e,t)=>{var n;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"}(n=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${n.generic}/settings`},3404:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(6442)),o(n(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"},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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(7093)),o(n(8452)),o(n(9734)),o(n(8554)),o(n(4685))},5877:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(
|
|
1
|
+
(()=>{"use strict";var e={6442:(e,t)=>{var n;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"}(n=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${n.generic}/settings`},3404:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(6442)),o(n(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"},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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(7093)),o(n(8452)),o(n(9734)),o(n(8554)),o(n(4685))},5877:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(7005)),o(n(1709)),o(n(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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(8999)),o(n(5759))},5113:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}(n(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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(8778)),o(n(8741)),o(n(3404)),o(n(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 n=function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}(5877);module.exports=n})();
|
package/dist/src/apiTypes.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { SchemaType } from './specification/schemaAccess';
|
|
|
2
2
|
import { FioriElementsVersion } from './specification/common/page';
|
|
3
3
|
import { Page as PageV2 } from './specification/v2/page';
|
|
4
4
|
import { Page as PageV4 } from './specification/v4/page';
|
|
5
|
-
import { FileData, File, ExportResults
|
|
5
|
+
import { FileData, File, ExportResults } from './sync/common/types';
|
|
6
6
|
import { ApplicationV2, ObjectPageConfig as ObjectPageConfigV2, ListReportConfig as ListReportConfigV2, OverviewPageConfig as OverviewPageConfigV2, AnalyticalListPageConfig as AnalyticalListPageConfigV2, Manifest as ManifestV2, FlexChangeLayer } from './v2';
|
|
7
7
|
import { ApplicationV4, ObjectPageConfig as ObjectPageConfigV4, ListReportConfig as ListReportConfigV4, Manifest as ManifestV4 } from './v4';
|
|
8
8
|
import { ConverterOutput } from '@sap-ux/vocabularies-types';
|
|
@@ -36,7 +36,6 @@ export declare type GenerateObjectPageV2 = {
|
|
|
36
36
|
entitySet: string;
|
|
37
37
|
annotations: FileData[];
|
|
38
38
|
manifest: object;
|
|
39
|
-
service: ServiceMetadata;
|
|
40
39
|
fragments: FileData[];
|
|
41
40
|
logger?: ExtensionLogger;
|
|
42
41
|
};
|
|
@@ -70,6 +69,7 @@ export declare type GenerateListReportV4 = {
|
|
|
70
69
|
entitySet: string;
|
|
71
70
|
annotations: FileData[];
|
|
72
71
|
logger?: ExtensionLogger;
|
|
72
|
+
manifest?: object;
|
|
73
73
|
};
|
|
74
74
|
};
|
|
75
75
|
export declare type GenerateObjectPageV4 = {
|
|
@@ -87,6 +87,7 @@ export declare type GenerateAnalyticalListPageV4 = {
|
|
|
87
87
|
entitySet: string;
|
|
88
88
|
annotations: FileData[];
|
|
89
89
|
logger?: ExtensionLogger;
|
|
90
|
+
manifest?: object;
|
|
90
91
|
};
|
|
91
92
|
};
|
|
92
93
|
export declare type GenerateSchemaV4Type = GenerateListReportV4 | GenerateObjectPageV4 | GenerateAnalyticalListPageV4;
|
|
@@ -152,6 +153,7 @@ export declare type ExportListReportV4Parameters = {
|
|
|
152
153
|
manifest: object;
|
|
153
154
|
jsonSchema: object;
|
|
154
155
|
logger?: ExtensionLogger;
|
|
156
|
+
appRootPath?: string;
|
|
155
157
|
};
|
|
156
158
|
export declare type ExportListReportV4 = {
|
|
157
159
|
[SchemaType.ListReport]: ExportListReportV4Parameters;
|
|
@@ -162,6 +164,7 @@ export declare type ExportObjectPageV4Parameters = {
|
|
|
162
164
|
manifest: object;
|
|
163
165
|
jsonSchema: object;
|
|
164
166
|
logger?: ExtensionLogger;
|
|
167
|
+
appRootPath?: string;
|
|
165
168
|
};
|
|
166
169
|
export declare type ExportObjectPageV4 = {
|
|
167
170
|
[SchemaType.ObjectPage]: ExportObjectPageV4Parameters;
|
|
@@ -307,6 +310,7 @@ export declare const FPMWriterMap: Map<CustomExtensionType, (basePath: string, d
|
|
|
307
310
|
*/
|
|
308
311
|
export interface ApiVersion {
|
|
309
312
|
version?: string;
|
|
313
|
+
fpmWriter?: string;
|
|
310
314
|
}
|
|
311
315
|
/**
|
|
312
316
|
* API interface
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
/// <reference types="@sapui5/ts-types" />
|
|
2
|
+
/**
|
|
3
|
+
* Actions
|
|
4
|
+
* @isViewNode true
|
|
5
|
+
*/
|
|
6
|
+
export interface Actions {
|
|
7
|
+
[key: string]: Action;
|
|
8
|
+
}
|
|
2
9
|
/**
|
|
3
10
|
* Action
|
|
4
11
|
* @isViewNode true
|
|
@@ -10,11 +17,11 @@ export interface Action {
|
|
|
10
17
|
*/
|
|
11
18
|
tooltip?: string;
|
|
12
19
|
/**
|
|
13
|
-
* Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.
|
|
20
|
+
* Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.
|
|
14
21
|
*/
|
|
15
22
|
icon?: sap.ui.core.URI;
|
|
16
23
|
/**
|
|
17
|
-
* Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.
|
|
24
|
+
* Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.
|
|
18
25
|
*/
|
|
19
26
|
activeIcon?: sap.ui.core.URI;
|
|
20
27
|
/**
|
|
@@ -52,3 +59,13 @@ export interface ObjectPageToolBarAction extends Action {
|
|
|
52
59
|
*/
|
|
53
60
|
visible?: boolean;
|
|
54
61
|
}
|
|
62
|
+
/**
|
|
63
|
+
* Footer Action
|
|
64
|
+
* @isViewNode true
|
|
65
|
+
*/
|
|
66
|
+
export interface ObjectPageFooterAction extends Action {
|
|
67
|
+
/**
|
|
68
|
+
* Whether the button should be visible on the screen.
|
|
69
|
+
*/
|
|
70
|
+
visible?: boolean;
|
|
71
|
+
}
|
|
@@ -48,6 +48,68 @@ export declare const enum DateRangeType {
|
|
|
48
48
|
QUARTER4 = "QUARTER4",
|
|
49
49
|
TODAYFROMTO = "TODAYFROMTO"
|
|
50
50
|
}
|
|
51
|
+
export declare const enum DefaultDateRangeValueType {
|
|
52
|
+
YESTERDAY = "YESTERDAY",
|
|
53
|
+
TODAY = "TODAY",
|
|
54
|
+
THISWEEK = "THISWEEK",
|
|
55
|
+
LASTWEEK = "LASTWEEK",
|
|
56
|
+
THISMONTH = "THISMONTH",
|
|
57
|
+
TOMORROW = "TOMORROW",
|
|
58
|
+
LASTMONTH = "LASTMONTH",
|
|
59
|
+
THISQUARTER = "THISQUARTER",
|
|
60
|
+
LASTQUARTER = "LASTQUARTER",
|
|
61
|
+
THISYEAR = "THISYEAR",
|
|
62
|
+
LASTYEAR = "LASTYEAR",
|
|
63
|
+
LAST2WEEKS = "LAST2WEEKS",
|
|
64
|
+
LAST3WEEKS = "LAST3WEEKS",
|
|
65
|
+
LAST4WEEKS = "LAST4WEEKS",
|
|
66
|
+
LAST5WEEKS = "LAST5WEEKS",
|
|
67
|
+
YEARTODATE = "YEARTODATE",
|
|
68
|
+
QUARTER1 = "QUARTER1",
|
|
69
|
+
QUARTER2 = "QUARTER2",
|
|
70
|
+
QUARTER3 = "QUARTER3",
|
|
71
|
+
QUARTER4 = "QUARTER4",
|
|
72
|
+
DATETOYEAR = "DATETOYEAR"
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Filter Field
|
|
76
|
+
* @isViewNode true
|
|
77
|
+
*/
|
|
78
|
+
export declare type SelectionField = {} | SelectionFieldDateSettings;
|
|
79
|
+
/**
|
|
80
|
+
* Filter Field for Date Settings
|
|
81
|
+
* @isViewNode true
|
|
82
|
+
*/
|
|
83
|
+
export interface SelectionFieldDateSettings {
|
|
84
|
+
/**
|
|
85
|
+
* The selectedValues property is a set of standard date range values that you want to include or exclude.
|
|
86
|
+
*/
|
|
87
|
+
selectedValues?: DateRangeType[];
|
|
88
|
+
/**
|
|
89
|
+
* The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters.
|
|
90
|
+
*/
|
|
91
|
+
exclude?: boolean;
|
|
92
|
+
/**
|
|
93
|
+
* This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.
|
|
94
|
+
* The customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types.
|
|
95
|
+
*/
|
|
96
|
+
customDateRangeImplementation?: string;
|
|
97
|
+
/**
|
|
98
|
+
* You can use the filter settings to include and exclude specific date range values.
|
|
99
|
+
*/
|
|
100
|
+
filter?: FilterType[];
|
|
101
|
+
/**
|
|
102
|
+
* You can set a default value for semantic date range.
|
|
103
|
+
*/
|
|
104
|
+
defaultValue?: DefaultDateRange;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Filter Fields
|
|
108
|
+
* @isViewNode true
|
|
109
|
+
*/
|
|
110
|
+
export interface SelectionFields {
|
|
111
|
+
[key: string]: SelectionField;
|
|
112
|
+
}
|
|
51
113
|
export declare type FilterTypeCategory = {
|
|
52
114
|
/**
|
|
53
115
|
* Choose 'key' to define filter values for single values of the date range type, or 'category' to filter by a whole subset.
|
|
@@ -85,24 +147,11 @@ export declare type FilterTypeKey = {
|
|
|
85
147
|
exclude?: boolean;
|
|
86
148
|
};
|
|
87
149
|
export declare type FilterType = FilterTypeKey | FilterTypeCategory;
|
|
88
|
-
export interface
|
|
89
|
-
/**
|
|
90
|
-
* The selectedValues property is a set of standard date range values that you want to include or exclude.
|
|
91
|
-
*/
|
|
92
|
-
selectedValues?: DateRangeType[];
|
|
150
|
+
export interface DefaultDateRange {
|
|
93
151
|
/**
|
|
94
|
-
* The
|
|
152
|
+
* The operation property is the value that will be set for semantic date range.
|
|
95
153
|
*/
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.
|
|
99
|
-
* The customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types.
|
|
100
|
-
*/
|
|
101
|
-
customDateRangeImplementation?: string;
|
|
102
|
-
/**
|
|
103
|
-
* You can use the filter settings to include and exclude specific date range values.
|
|
104
|
-
*/
|
|
105
|
-
filter?: FilterType[];
|
|
154
|
+
operation: DefaultDateRangeValueType;
|
|
106
155
|
}
|
|
107
156
|
export interface DateRange {
|
|
108
157
|
/**
|
|
@@ -117,12 +166,6 @@ export interface DateRange {
|
|
|
117
166
|
* The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters.
|
|
118
167
|
*/
|
|
119
168
|
exclude?: boolean;
|
|
120
|
-
/**
|
|
121
|
-
* For a fields' list you can define the set of standard date range values separately.
|
|
122
|
-
*/
|
|
123
|
-
fields?: {
|
|
124
|
-
[field: string]: SelectedValues;
|
|
125
|
-
};
|
|
126
169
|
}
|
|
127
170
|
export interface CommonFilterBar {
|
|
128
171
|
/**
|
|
@@ -159,6 +202,11 @@ export interface CommonFilterBar {
|
|
|
159
202
|
* Handles visibility of the Restore button on the FilterBar.
|
|
160
203
|
*/
|
|
161
204
|
showRestoreOnFB?: boolean;
|
|
205
|
+
/**
|
|
206
|
+
* @isViewNode true
|
|
207
|
+
* Selection Fields
|
|
208
|
+
*/
|
|
209
|
+
selectionFields?: SelectionFields;
|
|
162
210
|
}
|
|
163
211
|
/**
|
|
164
212
|
* Filter Bar
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ObjectPageFooterAction } from './Action';
|
|
2
|
+
import { Actions } from '.';
|
|
3
|
+
interface ObjectPageFooterActions {
|
|
4
|
+
[id: string]: ObjectPageFooterAction;
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Footer
|
|
8
|
+
* @isViewNode true
|
|
9
|
+
*/
|
|
10
|
+
export interface GenericFooter {
|
|
11
|
+
actions?: Actions;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Footer
|
|
15
|
+
* @isViewNode true
|
|
16
|
+
*/
|
|
17
|
+
export interface ObjectPageFooter<ACT = ObjectPageFooterActions> {
|
|
18
|
+
actions?: ACT;
|
|
19
|
+
}
|
|
20
|
+
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="@sapui5/ts-types" />
|
|
2
2
|
import { SAPUI5_FRAGMENT_CLASS } from '../../common/webapp/manifest/sapUi5';
|
|
3
3
|
import { ToolBar } from './ToolBar';
|
|
4
|
+
import { Action } from './Action';
|
|
4
5
|
/**
|
|
5
6
|
* Column
|
|
6
7
|
* @isViewNode true
|
|
@@ -15,6 +16,12 @@ export interface TableColumn {
|
|
|
15
16
|
*/
|
|
16
17
|
hAlign?: sap.ui.core.TextAlign;
|
|
17
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* Column Action
|
|
21
|
+
* @isViewNode true
|
|
22
|
+
*/
|
|
23
|
+
export interface TableColumnAction extends Action, TableColumn {
|
|
24
|
+
}
|
|
18
25
|
/**
|
|
19
26
|
* Custom Column
|
|
20
27
|
* @isViewNode true
|
|
@@ -83,7 +90,7 @@ export declare enum TableColumnExtensionTypeV2 {
|
|
|
83
90
|
*/
|
|
84
91
|
export declare type TableCustomColumns = Array<TableCustomColumn>;
|
|
85
92
|
export interface GenericColumns {
|
|
86
|
-
[key: string]: TableColumn | TableCustomColumns;
|
|
93
|
+
[key: string]: TableColumn | TableCustomColumns | TableColumnAction;
|
|
87
94
|
}
|
|
88
95
|
export interface QuickVariant {
|
|
89
96
|
/**
|
|
@@ -5,10 +5,9 @@ export * from './Field';
|
|
|
5
5
|
export * from './FilterBar';
|
|
6
6
|
export * from './Table';
|
|
7
7
|
export * from './ToolBar';
|
|
8
|
+
export * from './Footer';
|
|
8
9
|
export * from './AnalyticalListPageChart';
|
|
9
10
|
export * from './ObjectPageHeader';
|
|
10
|
-
export * from './ObjectPageFooter';
|
|
11
|
-
export * from './ObjectPageFooterAction';
|
|
12
11
|
export * from './ObjectPageLayout';
|
|
13
12
|
export * from './ObjectPageSection';
|
|
14
13
|
export * from './ObjectPageChart';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnalyticalListPageFilterBar, ALPAnalyticalTable, ALPGridTable, ALPResponsiveTable } from '../controls';
|
|
1
|
+
import { AnalyticalListPageFilterBar, ALPAnalyticalTable, ALPGridTable, ALPResponsiveTable, GenericFooter } from '../controls';
|
|
2
2
|
import { PageConfig } from '../../common/page';
|
|
3
3
|
import { ChartSettings } from '../../../specification/v2/controls';
|
|
4
4
|
import { KPISettings } from '../../../specification/v2/controls/AnalyticalListPageKPI';
|
|
@@ -10,6 +10,7 @@ export interface AnalyticalListPageConfig extends PageConfig {
|
|
|
10
10
|
table?: ALPResponsiveTable | ALPGridTable | ALPAnalyticalTable;
|
|
11
11
|
filterBar?: AnalyticalListPageFilterBar;
|
|
12
12
|
chart?: ChartSettings;
|
|
13
|
+
footer?: GenericFooter;
|
|
13
14
|
/**
|
|
14
15
|
* Key Performance Indicators
|
|
15
16
|
* @isViewNode true
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TreeTable, ListReportFilterBar, AnalyticalTable, GridTable, ResponsiveTableWithInlineDelete, ResponsiveTableWithMultiSelect } from '../controls';
|
|
1
|
+
import { TreeTable, ListReportFilterBar, GenericFooter, AnalyticalTable, GridTable, ResponsiveTableWithInlineDelete, ResponsiveTableWithMultiSelect } from '../controls';
|
|
2
2
|
import { PageConfig } from '../../common/page';
|
|
3
3
|
export declare type ListReportTableTypeV2 = ResponsiveTableWithMultiSelect | ResponsiveTableWithInlineDelete | TreeTable | AnalyticalTable | GridTable;
|
|
4
4
|
export interface ListReportConfig extends PageConfig {
|
|
@@ -8,4 +8,5 @@ export interface ListReportConfig extends PageConfig {
|
|
|
8
8
|
fitContent?: boolean;
|
|
9
9
|
table?: ListReportTableTypeV2;
|
|
10
10
|
filterBar?: ListReportFilterBar;
|
|
11
|
+
footer?: GenericFooter;
|
|
11
12
|
}
|
|
@@ -4,12 +4,46 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { PageConfig } from '../../common/page';
|
|
6
6
|
import { ListCard, AnalyticalCard, StackCard, LinklistCard, TableCard, CustomCard } from '../controls/Card';
|
|
7
|
-
import { DateRange } from '../controls/FilterBar';
|
|
7
|
+
import { DateRange, DateRangeType, DefaultDateRange, FilterType } from '../controls/FilterBar';
|
|
8
|
+
/**
|
|
9
|
+
* @isViewNode false
|
|
10
|
+
*/
|
|
11
|
+
export interface SelectedValues {
|
|
12
|
+
/**
|
|
13
|
+
* The selectedValues property is a set of standard date range values that you want to include or exclude.
|
|
14
|
+
*/
|
|
15
|
+
selectedValues?: DateRangeType[];
|
|
16
|
+
/**
|
|
17
|
+
* The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters.
|
|
18
|
+
*/
|
|
19
|
+
exclude?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.
|
|
22
|
+
* The customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types.
|
|
23
|
+
*/
|
|
24
|
+
customDateRangeImplementation?: string;
|
|
25
|
+
/**
|
|
26
|
+
* You can use the filter settings to include and exclude specific date range values.
|
|
27
|
+
*/
|
|
28
|
+
filter?: FilterType[];
|
|
29
|
+
/**
|
|
30
|
+
* You can set a default value for semantic date range.
|
|
31
|
+
*/
|
|
32
|
+
defaultValue?: DefaultDateRange;
|
|
33
|
+
}
|
|
34
|
+
export interface DateRangeOVP extends DateRange {
|
|
35
|
+
/**
|
|
36
|
+
* For a fields' list you can define the set of standard date range values separately.
|
|
37
|
+
*/
|
|
38
|
+
fields?: {
|
|
39
|
+
[field: string]: SelectedValues;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
8
42
|
export declare type FilterSettingsType = {
|
|
9
43
|
/**
|
|
10
44
|
* You can define date ranges, such as lastYear or nextQuarter on the Smart Filter Bar
|
|
11
45
|
*/
|
|
12
|
-
dateSettings?:
|
|
46
|
+
dateSettings?: DateRangeOVP;
|
|
13
47
|
};
|
|
14
48
|
export declare enum ContainerLayoutType {
|
|
15
49
|
fixed = "fixed",
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export declare type FooterActionV4 = object;
|
|
2
|
-
export interface
|
|
2
|
+
export interface ObjectPageFooterActions {
|
|
3
3
|
[id: string]: FooterActionV4;
|
|
4
4
|
}
|
|
5
5
|
/**
|
|
6
6
|
* Footer
|
|
7
7
|
* @isViewNode true
|
|
8
8
|
*/
|
|
9
|
-
export interface ObjectPageFooter<ACT =
|
|
9
|
+
export interface ObjectPageFooter<ACT = ObjectPageFooterActions> {
|
|
10
10
|
actions?: ACT;
|
|
11
11
|
}
|
|
@@ -21,20 +21,6 @@ export interface ObjectPageHeaderSectionForm extends CommonHeaderFacetSettings {
|
|
|
21
21
|
*/
|
|
22
22
|
form?: object;
|
|
23
23
|
}
|
|
24
|
-
export interface ObjectPageHeaderSectionChart extends CommonHeaderFacetSettings {
|
|
25
|
-
/**
|
|
26
|
-
* Chart
|
|
27
|
-
* @isViewNode true
|
|
28
|
-
*/
|
|
29
|
-
chart?: object;
|
|
30
|
-
}
|
|
31
|
-
export interface ObjectPageHeaderSectionDataPoint extends CommonHeaderFacetSettings {
|
|
32
|
-
/**
|
|
33
|
-
* Data Point
|
|
34
|
-
* @isViewNode true
|
|
35
|
-
*/
|
|
36
|
-
dataPoint?: object;
|
|
37
|
-
}
|
|
38
24
|
export interface ObjectPageHeaderSectionContact extends CommonHeaderFacetSettings {
|
|
39
25
|
/**
|
|
40
26
|
* Contact
|
|
@@ -49,6 +35,8 @@ export interface ObjectPageHeaderSectionAddress extends CommonHeaderFacetSetting
|
|
|
49
35
|
*/
|
|
50
36
|
address?: object;
|
|
51
37
|
}
|
|
38
|
+
export declare type ObjectPageHeaderSectionChart = CommonHeaderFacetSettings;
|
|
39
|
+
export declare type ObjectPageHeaderSectionDataPoint = CommonHeaderFacetSettings;
|
|
52
40
|
/**
|
|
53
41
|
* Header Sections
|
|
54
42
|
* @isViewNode true
|
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
import { ObjectPageSectionTableV4 } from '../controls/ObjectPageTable';
|
|
2
2
|
import { SAPUI5_FRAGMENT_CLASS } from '../../common/webapp/manifest/sapUi5';
|
|
3
|
-
/**
|
|
4
|
-
* Subsections
|
|
5
|
-
* @isViewNode true
|
|
6
|
-
*/
|
|
7
|
-
export interface ObjectPageSubSections {
|
|
8
|
-
subsections: GenericSections;
|
|
9
|
-
}
|
|
10
3
|
export interface ObjectPageSectionForm {
|
|
11
4
|
/**
|
|
12
5
|
* Form
|
|
@@ -38,6 +31,13 @@ export interface ObjectPageSectionAddress {
|
|
|
38
31
|
export interface GenericSections {
|
|
39
32
|
[key: string]: ObjectPageSectionTableV4 | ObjectPageSectionForm | ObjectPageSectionDataPoint | ObjectPageSectionContact | ObjectPageSectionAddress;
|
|
40
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Subsections
|
|
36
|
+
* @isViewNode true
|
|
37
|
+
*/
|
|
38
|
+
export interface ObjectPageSubSections {
|
|
39
|
+
subsections: GenericSections;
|
|
40
|
+
}
|
|
41
41
|
export declare enum SectionPosition {
|
|
42
42
|
After = "After",
|
|
43
43
|
Before = "Before"
|
|
@@ -1,6 +1,22 @@
|
|
|
1
|
-
import { AnnotationPathAsObject, TableCreationModeType,
|
|
2
|
-
import { ObjectPageTableColumnAction,
|
|
1
|
+
import { AnnotationPathAsObject, TableCreationModeType, TableSettings } from '../controls';
|
|
2
|
+
import { Placement, ObjectPageTableColumn as ObjectPageTableColumnIF, ObjectPageTableColumnAction, TableCustomColumn } from '../webapp/manifest/ManifestSettings';
|
|
3
3
|
import { ObjectPageToolBar } from './ObjectPageToolBar';
|
|
4
|
+
export interface PositionOP {
|
|
5
|
+
/**
|
|
6
|
+
* The key of another column to be used as placement anchor.
|
|
7
|
+
*/
|
|
8
|
+
anchor?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Define the placement, either before or after the anchor column.
|
|
11
|
+
*/
|
|
12
|
+
placement: Placement;
|
|
13
|
+
}
|
|
14
|
+
export interface TableCustomColumnOP extends TableCustomColumn {
|
|
15
|
+
/**
|
|
16
|
+
* Defines the position of the column relative to other columns.
|
|
17
|
+
*/
|
|
18
|
+
position?: PositionOP;
|
|
19
|
+
}
|
|
4
20
|
/**
|
|
5
21
|
* Table
|
|
6
22
|
* @isViewNode true
|
|
@@ -68,8 +84,8 @@ export interface QuickVariantSelectionV4OP {
|
|
|
68
84
|
*/
|
|
69
85
|
showCounts?: boolean;
|
|
70
86
|
}
|
|
71
|
-
interface
|
|
72
|
-
[key: string]:
|
|
87
|
+
export interface GenericColumnsOP {
|
|
88
|
+
[key: string]: ObjectPageTableColumnIF | ObjectPageTableColumnAction | TableCustomColumnOP;
|
|
73
89
|
}
|
|
74
90
|
export interface TableSettingsOP extends TableSettings {
|
|
75
91
|
/**
|
|
@@ -86,6 +102,5 @@ export interface TableSettingsOP extends TableSettings {
|
|
|
86
102
|
* With quickVariantSelection you can switch on the multiple view feature (single table mode). It links to SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) you must have added to your annotations beforehand.
|
|
87
103
|
*/
|
|
88
104
|
quickVariantSelection?: QuickVariantSelectionV4OP;
|
|
89
|
-
columns?:
|
|
105
|
+
columns?: GenericColumnsOP;
|
|
90
106
|
}
|
|
91
|
-
export {};
|
|
@@ -81,13 +81,8 @@ export interface MultiTableModeV4 {
|
|
|
81
81
|
*/
|
|
82
82
|
showCounts?: boolean;
|
|
83
83
|
}
|
|
84
|
-
/**
|
|
85
|
-
* Custom Columns
|
|
86
|
-
* @isViewNode true
|
|
87
|
-
*/
|
|
88
|
-
export declare type TableCustomColumns = Array<TableCustomColumn>;
|
|
89
84
|
export interface GenericColumns {
|
|
90
|
-
[key: string]: TableColumn | TableColumnAction |
|
|
85
|
+
[key: string]: TableColumn | TableColumnAction | TableCustomColumn;
|
|
91
86
|
}
|
|
92
87
|
export interface TableSettings<COLS = GenericColumns> {
|
|
93
88
|
/**
|
|
@@ -3,7 +3,7 @@ export declare enum Placement {
|
|
|
3
3
|
Before = "Before",
|
|
4
4
|
End = "End"
|
|
5
5
|
}
|
|
6
|
-
export
|
|
6
|
+
export interface Position {
|
|
7
7
|
/**
|
|
8
8
|
* The key of another column to be used as placement anchor.
|
|
9
9
|
*/
|
|
@@ -12,7 +12,7 @@ export declare type Position = {
|
|
|
12
12
|
* Define the placement, either before or after the anchor column.
|
|
13
13
|
*/
|
|
14
14
|
placement: Placement;
|
|
15
|
-
}
|
|
15
|
+
}
|
|
16
16
|
export declare type Positionable = {
|
|
17
17
|
/**
|
|
18
18
|
* Defines the position of the column relative to other columns.
|
|
@@ -44,11 +44,16 @@ export declare enum Availability {
|
|
|
44
44
|
'Adaptation' = "Adaptation",
|
|
45
45
|
'Hidden' = "Hidden"
|
|
46
46
|
}
|
|
47
|
+
export declare enum HorizontalAlign {
|
|
48
|
+
'Begin' = "Begin",
|
|
49
|
+
'Center' = "Center",
|
|
50
|
+
'End' = "End"
|
|
51
|
+
}
|
|
47
52
|
/**
|
|
48
53
|
* Table Column
|
|
49
54
|
* @isViewNode true
|
|
50
55
|
*/
|
|
51
|
-
export
|
|
56
|
+
export interface TableColumn {
|
|
52
57
|
/**
|
|
53
58
|
* A string type that represents CSS size values.
|
|
54
59
|
* Refer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.
|
|
@@ -61,29 +66,58 @@ export declare type TableColumn = {
|
|
|
61
66
|
* Hidden: the column is neither available in the table nor in adaptation.
|
|
62
67
|
*/
|
|
63
68
|
availability?: Availability;
|
|
64
|
-
}
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Table Column
|
|
72
|
+
* @isViewNode true
|
|
73
|
+
*/
|
|
74
|
+
export interface ObjectPageTableColumn {
|
|
75
|
+
/**
|
|
76
|
+
* A string type that represents CSS size values.
|
|
77
|
+
* Refer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.
|
|
78
|
+
*/
|
|
79
|
+
width?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Defines where the column should be shown.
|
|
82
|
+
* Default: it will be shown by default in the table.
|
|
83
|
+
* Adaptation: it will initially not shown in the table but be available via end user adaptation.
|
|
84
|
+
* Hidden: the column is neither available in the table nor in adaptation.
|
|
85
|
+
*/
|
|
86
|
+
availability?: Availability;
|
|
87
|
+
}
|
|
65
88
|
/**
|
|
66
89
|
* Inline Action
|
|
67
90
|
* @isViewNode true
|
|
68
91
|
*/
|
|
69
|
-
export
|
|
92
|
+
export interface TableColumnAction extends TableColumn {
|
|
70
93
|
/**
|
|
71
94
|
* Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)
|
|
72
95
|
*/
|
|
73
96
|
afterExecution?: ActionAfterExecutionConfiguration;
|
|
74
|
-
}
|
|
97
|
+
}
|
|
98
|
+
export declare type ColumnPropertiesType = string[];
|
|
75
99
|
/**
|
|
76
100
|
* Inline Action for Object Page
|
|
77
101
|
* @isViewNode true
|
|
78
102
|
*/
|
|
79
|
-
export
|
|
103
|
+
export interface ObjectPageTableColumnAction extends TableColumn {
|
|
104
|
+
/**
|
|
105
|
+
* Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)
|
|
106
|
+
*/
|
|
107
|
+
afterExecution?: ActionAfterExecutionConfigurationOP;
|
|
108
|
+
}
|
|
80
109
|
/**
|
|
81
110
|
* Custom Column
|
|
82
111
|
* @isViewNode true
|
|
83
112
|
*/
|
|
84
|
-
export
|
|
113
|
+
export interface TableCustomColumn {
|
|
114
|
+
/**
|
|
115
|
+
* Defines the position of the column relative to other columns.
|
|
116
|
+
*/
|
|
117
|
+
position?: Position;
|
|
85
118
|
/**
|
|
86
119
|
* The header is shown on the table as header, as well as in the add/remove dialog.
|
|
120
|
+
* @i18nClassification COL: Custom column header text
|
|
87
121
|
*/
|
|
88
122
|
header: string;
|
|
89
123
|
/**
|
|
@@ -94,5 +128,20 @@ export declare type TableCustomColumn = Positionable & {
|
|
|
94
128
|
/**
|
|
95
129
|
* Relevant for extension columns; allows the definition of a target fragment.
|
|
96
130
|
*/
|
|
97
|
-
template
|
|
98
|
-
|
|
131
|
+
template: string;
|
|
132
|
+
/**
|
|
133
|
+
* Aligns the header as well as the content horizontally.
|
|
134
|
+
*/
|
|
135
|
+
horizontalAlign?: HorizontalAlign;
|
|
136
|
+
/**
|
|
137
|
+
* Defines where the column should be shown.
|
|
138
|
+
* - Default: it will be shown by default in the table.
|
|
139
|
+
* - Adaptation: it will initially not shown in the table but be available via end user adaptation
|
|
140
|
+
* - Hidden: the column is neither available in the table nor in adaptation
|
|
141
|
+
*/
|
|
142
|
+
availability?: Availability;
|
|
143
|
+
/**
|
|
144
|
+
* 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.
|
|
145
|
+
*/
|
|
146
|
+
properties?: ColumnPropertiesType;
|
|
147
|
+
}
|