@sap/ux-specification 1.96.2 → 1.96.5
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 +66 -3
- 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 +175 -15
- package/dist/schemas/v2/ApplicationV2.json +31 -0
- package/dist/schemas/v2/ListReportConfig.json +187 -15
- package/dist/schemas/v2/ObjectPageConfig.json +127 -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 +144 -64
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/apiTypes.d.ts +5 -2
- package/dist/src/specification/v2/ApplicationV2.d.ts +21 -0
- 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/ObjectPageTable.d.ts +4 -0
- package/dist/src/specification/v2/controls/Table.d.ts +12 -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/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 +30 -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 +4 -3
- package/dist/src/sync/v2/application.d.ts +3 -1
- 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 +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/Table.d.ts +1 -0
- 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/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/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 +19 -17
- 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 -9
- 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 -170
- 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 -323
- 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 -667
- 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
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"type": "object",
|
|
74
74
|
"properties": {
|
|
75
75
|
"dateSettings": {
|
|
76
|
-
"$ref": "#/definitions/
|
|
76
|
+
"$ref": "#/definitions/DateRangeOVP",
|
|
77
77
|
"description": "You can define date ranges, such as lastYear or nextQuarter on the Smart Filter Bar"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -135,13 +135,19 @@
|
|
|
135
135
|
],
|
|
136
136
|
"type": "string"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"DateRangeOVP": {
|
|
139
139
|
"type": "object",
|
|
140
140
|
"properties": {
|
|
141
|
+
"fields": {
|
|
142
|
+
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
143
|
+
"type": "object",
|
|
144
|
+
"additionalProperties": {
|
|
145
|
+
"$ref": "#/definitions/SelectedValues"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
141
148
|
"useDateRange": {
|
|
142
149
|
"description": "If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters.",
|
|
143
|
-
"type": "boolean"
|
|
144
|
-
"artifactType": "Manifest"
|
|
150
|
+
"type": "boolean"
|
|
145
151
|
},
|
|
146
152
|
"selectedValues": {
|
|
147
153
|
"description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
|
|
@@ -198,26 +204,17 @@
|
|
|
198
204
|
"YESTERDAY"
|
|
199
205
|
],
|
|
200
206
|
"type": "string"
|
|
201
|
-
}
|
|
202
|
-
"artifactType": "Manifest"
|
|
207
|
+
}
|
|
203
208
|
},
|
|
204
209
|
"exclude": {
|
|
205
210
|
"description": "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.",
|
|
206
|
-
"type": "boolean"
|
|
207
|
-
"artifactType": "Manifest"
|
|
208
|
-
},
|
|
209
|
-
"fields": {
|
|
210
|
-
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
211
|
-
"type": "object",
|
|
212
|
-
"additionalProperties": {
|
|
213
|
-
"$ref": "#/definitions/SelectedValues"
|
|
214
|
-
},
|
|
215
|
-
"artifactType": "Manifest"
|
|
211
|
+
"type": "boolean"
|
|
216
212
|
}
|
|
217
213
|
},
|
|
218
214
|
"additionalProperties": false
|
|
219
215
|
},
|
|
220
216
|
"SelectedValues": {
|
|
217
|
+
"isViewNode": false,
|
|
221
218
|
"type": "object",
|
|
222
219
|
"properties": {
|
|
223
220
|
"selectedValues": {
|
|
@@ -454,10 +451,54 @@
|
|
|
454
451
|
}
|
|
455
452
|
]
|
|
456
453
|
}
|
|
454
|
+
},
|
|
455
|
+
"defaultValue": {
|
|
456
|
+
"$ref": "#/definitions/DefaultDateRange",
|
|
457
|
+
"description": "You can set a default value for semantic date range."
|
|
457
458
|
}
|
|
458
459
|
},
|
|
459
460
|
"additionalProperties": false
|
|
460
461
|
},
|
|
462
|
+
"DefaultDateRange": {
|
|
463
|
+
"type": "object",
|
|
464
|
+
"properties": {
|
|
465
|
+
"operation": {
|
|
466
|
+
"$ref": "#/definitions/DefaultDateRangeValueType",
|
|
467
|
+
"description": "The operation property is the value that will be set for semantic date range.",
|
|
468
|
+
"artifactType": "Manifest"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"additionalProperties": false,
|
|
472
|
+
"required": [
|
|
473
|
+
"operation"
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
"DefaultDateRangeValueType": {
|
|
477
|
+
"enum": [
|
|
478
|
+
"DATETOYEAR",
|
|
479
|
+
"LAST2WEEKS",
|
|
480
|
+
"LAST3WEEKS",
|
|
481
|
+
"LAST4WEEKS",
|
|
482
|
+
"LAST5WEEKS",
|
|
483
|
+
"LASTMONTH",
|
|
484
|
+
"LASTQUARTER",
|
|
485
|
+
"LASTWEEK",
|
|
486
|
+
"LASTYEAR",
|
|
487
|
+
"QUARTER1",
|
|
488
|
+
"QUARTER2",
|
|
489
|
+
"QUARTER3",
|
|
490
|
+
"QUARTER4",
|
|
491
|
+
"THISMONTH",
|
|
492
|
+
"THISQUARTER",
|
|
493
|
+
"THISWEEK",
|
|
494
|
+
"THISYEAR",
|
|
495
|
+
"TODAY",
|
|
496
|
+
"TOMORROW",
|
|
497
|
+
"YEARTODATE",
|
|
498
|
+
"YESTERDAY"
|
|
499
|
+
],
|
|
500
|
+
"type": "string"
|
|
501
|
+
},
|
|
461
502
|
"CustomCard": {
|
|
462
503
|
"description": "Custom Card",
|
|
463
504
|
"isViewNode": true,
|
|
@@ -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",
|
|
@@ -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",
|