@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
|
@@ -29,6 +29,9 @@
|
|
|
29
29
|
"filterBar": {
|
|
30
30
|
"$ref": "#/definitions/ListReportFilterBar"
|
|
31
31
|
},
|
|
32
|
+
"footer": {
|
|
33
|
+
"$ref": "#/definitions/GenericFooter"
|
|
34
|
+
},
|
|
32
35
|
"$schema": {
|
|
33
36
|
"type": "string"
|
|
34
37
|
}
|
|
@@ -117,6 +120,12 @@
|
|
|
117
120
|
"artifactType": "FlexChange",
|
|
118
121
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
119
122
|
},
|
|
123
|
+
"exportType": {
|
|
124
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
125
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
126
|
+
"artifactType": "FlexChange",
|
|
127
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
128
|
+
},
|
|
120
129
|
"fitContainer": {
|
|
121
130
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
122
131
|
"type": "boolean",
|
|
@@ -216,6 +225,14 @@
|
|
|
216
225
|
"path"
|
|
217
226
|
]
|
|
218
227
|
},
|
|
228
|
+
"sap.ui.comp.smarttable.ExportType": {
|
|
229
|
+
"description": "Provides the type of services available for export in the `SmartTable` control.",
|
|
230
|
+
"enum": [
|
|
231
|
+
"GW",
|
|
232
|
+
"UI5Client"
|
|
233
|
+
],
|
|
234
|
+
"type": "string"
|
|
235
|
+
},
|
|
219
236
|
"QuickVariantSelection": {
|
|
220
237
|
"type": "object",
|
|
221
238
|
"properties": {
|
|
@@ -399,13 +416,13 @@
|
|
|
399
416
|
"controlType": "sap.m.Button"
|
|
400
417
|
},
|
|
401
418
|
"icon": {
|
|
402
|
-
"description": "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.",
|
|
419
|
+
"description": "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.",
|
|
403
420
|
"type": "string",
|
|
404
421
|
"artifactType": "FlexChange",
|
|
405
422
|
"controlType": "sap.m.Button"
|
|
406
423
|
},
|
|
407
424
|
"activeIcon": {
|
|
408
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
425
|
+
"description": "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.",
|
|
409
426
|
"type": "string",
|
|
410
427
|
"artifactType": "FlexChange",
|
|
411
428
|
"controlType": "sap.m.Button"
|
|
@@ -446,6 +463,9 @@
|
|
|
446
463
|
{
|
|
447
464
|
"$ref": "#/definitions/TableColumn"
|
|
448
465
|
},
|
|
466
|
+
{
|
|
467
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
468
|
+
},
|
|
449
469
|
{
|
|
450
470
|
"description": "Custom Columns",
|
|
451
471
|
"isViewNode": true,
|
|
@@ -497,6 +517,59 @@
|
|
|
497
517
|
],
|
|
498
518
|
"type": "string"
|
|
499
519
|
},
|
|
520
|
+
"TableColumnAction": {
|
|
521
|
+
"description": "Column Action",
|
|
522
|
+
"isViewNode": true,
|
|
523
|
+
"type": "object",
|
|
524
|
+
"properties": {
|
|
525
|
+
"tooltip": {
|
|
526
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
527
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
528
|
+
"type": "string",
|
|
529
|
+
"artifactType": "FlexChange",
|
|
530
|
+
"controlType": "sap.m.Button"
|
|
531
|
+
},
|
|
532
|
+
"icon": {
|
|
533
|
+
"description": "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.",
|
|
534
|
+
"type": "string",
|
|
535
|
+
"artifactType": "FlexChange",
|
|
536
|
+
"controlType": "sap.m.Button"
|
|
537
|
+
},
|
|
538
|
+
"activeIcon": {
|
|
539
|
+
"description": "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.",
|
|
540
|
+
"type": "string",
|
|
541
|
+
"artifactType": "FlexChange",
|
|
542
|
+
"controlType": "sap.m.Button"
|
|
543
|
+
},
|
|
544
|
+
"type": {
|
|
545
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
546
|
+
"description": "Defines the Button type.",
|
|
547
|
+
"artifactType": "FlexChange",
|
|
548
|
+
"controlType": "sap.m.Button"
|
|
549
|
+
},
|
|
550
|
+
"width": {
|
|
551
|
+
"description": "The width property defines the width of the column.",
|
|
552
|
+
"type": "string",
|
|
553
|
+
"artifactType": "FlexChange",
|
|
554
|
+
"controlType": "sap.m.Column"
|
|
555
|
+
},
|
|
556
|
+
"hAlign": {
|
|
557
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
558
|
+
"anyOf": [
|
|
559
|
+
{
|
|
560
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"type": "string"
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
567
|
+
"artifactType": "FlexChange",
|
|
568
|
+
"controlType": "sap.m.Column"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"additionalProperties": false
|
|
572
|
+
},
|
|
500
573
|
"TableCustomColumn": {
|
|
501
574
|
"description": "Custom Column",
|
|
502
575
|
"isViewNode": true,
|
|
@@ -646,6 +719,12 @@
|
|
|
646
719
|
"artifactType": "FlexChange",
|
|
647
720
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
648
721
|
},
|
|
722
|
+
"exportType": {
|
|
723
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
724
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
725
|
+
"artifactType": "FlexChange",
|
|
726
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
727
|
+
},
|
|
649
728
|
"fitContainer": {
|
|
650
729
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
651
730
|
"type": "boolean",
|
|
@@ -739,6 +818,12 @@
|
|
|
739
818
|
"artifactType": "FlexChange",
|
|
740
819
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
741
820
|
},
|
|
821
|
+
"exportType": {
|
|
822
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
823
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
824
|
+
"artifactType": "FlexChange",
|
|
825
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
826
|
+
},
|
|
742
827
|
"fitContainer": {
|
|
743
828
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
744
829
|
"type": "boolean",
|
|
@@ -863,6 +948,12 @@
|
|
|
863
948
|
"artifactType": "FlexChange",
|
|
864
949
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
865
950
|
},
|
|
951
|
+
"exportType": {
|
|
952
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
953
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
954
|
+
"artifactType": "FlexChange",
|
|
955
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
956
|
+
},
|
|
866
957
|
"fitContainer": {
|
|
867
958
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
868
959
|
"type": "boolean",
|
|
@@ -976,6 +1067,12 @@
|
|
|
976
1067
|
"artifactType": "FlexChange",
|
|
977
1068
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
978
1069
|
},
|
|
1070
|
+
"exportType": {
|
|
1071
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1072
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1073
|
+
"artifactType": "FlexChange",
|
|
1074
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1075
|
+
},
|
|
979
1076
|
"fitContainer": {
|
|
980
1077
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
981
1078
|
"type": "boolean",
|
|
@@ -1072,6 +1169,9 @@
|
|
|
1072
1169
|
"type": "boolean",
|
|
1073
1170
|
"artifactType": "FlexChange",
|
|
1074
1171
|
"controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
|
|
1172
|
+
},
|
|
1173
|
+
"selectionFields": {
|
|
1174
|
+
"$ref": "#/definitions/SelectionFields"
|
|
1075
1175
|
}
|
|
1076
1176
|
},
|
|
1077
1177
|
"additionalProperties": false
|
|
@@ -1146,19 +1246,31 @@
|
|
|
1146
1246
|
"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.",
|
|
1147
1247
|
"type": "boolean",
|
|
1148
1248
|
"artifactType": "Manifest"
|
|
1149
|
-
},
|
|
1150
|
-
"fields": {
|
|
1151
|
-
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
1152
|
-
"type": "object",
|
|
1153
|
-
"additionalProperties": {
|
|
1154
|
-
"$ref": "#/definitions/SelectedValues"
|
|
1155
|
-
},
|
|
1156
|
-
"artifactType": "Manifest"
|
|
1157
1249
|
}
|
|
1158
1250
|
},
|
|
1159
1251
|
"additionalProperties": false
|
|
1160
1252
|
},
|
|
1161
|
-
"
|
|
1253
|
+
"SelectionFields": {
|
|
1254
|
+
"description": "Filter Fields",
|
|
1255
|
+
"isViewNode": true,
|
|
1256
|
+
"type": "object",
|
|
1257
|
+
"additionalProperties": {
|
|
1258
|
+
"description": "Filter Field",
|
|
1259
|
+
"isViewNode": true,
|
|
1260
|
+
"anyOf": [
|
|
1261
|
+
{
|
|
1262
|
+
"type": "object",
|
|
1263
|
+
"properties": {}
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
"$ref": "#/definitions/SelectionFieldDateSettings"
|
|
1267
|
+
}
|
|
1268
|
+
]
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"SelectionFieldDateSettings": {
|
|
1272
|
+
"description": "Filter Field for Date Settings",
|
|
1273
|
+
"isViewNode": true,
|
|
1162
1274
|
"type": "object",
|
|
1163
1275
|
"properties": {
|
|
1164
1276
|
"selectedValues": {
|
|
@@ -1216,15 +1328,18 @@
|
|
|
1216
1328
|
"YESTERDAY"
|
|
1217
1329
|
],
|
|
1218
1330
|
"type": "string"
|
|
1219
|
-
}
|
|
1331
|
+
},
|
|
1332
|
+
"artifactType": "Manifest"
|
|
1220
1333
|
},
|
|
1221
1334
|
"exclude": {
|
|
1222
1335
|
"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.",
|
|
1223
|
-
"type": "boolean"
|
|
1336
|
+
"type": "boolean",
|
|
1337
|
+
"artifactType": "Manifest"
|
|
1224
1338
|
},
|
|
1225
1339
|
"customDateRangeImplementation": {
|
|
1226
1340
|
"description": "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.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types.",
|
|
1227
|
-
"type": "string"
|
|
1341
|
+
"type": "string",
|
|
1342
|
+
"artifactType": "Manifest"
|
|
1228
1343
|
},
|
|
1229
1344
|
"filter": {
|
|
1230
1345
|
"description": "You can use the filter settings to include and exclude specific date range values.",
|
|
@@ -1394,7 +1509,64 @@
|
|
|
1394
1509
|
]
|
|
1395
1510
|
}
|
|
1396
1511
|
]
|
|
1397
|
-
}
|
|
1512
|
+
},
|
|
1513
|
+
"artifactType": "Manifest"
|
|
1514
|
+
},
|
|
1515
|
+
"defaultValue": {
|
|
1516
|
+
"$ref": "#/definitions/DefaultDateRange",
|
|
1517
|
+
"description": "You can set a default value for semantic date range.",
|
|
1518
|
+
"artifactType": "Manifest"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"additionalProperties": false
|
|
1522
|
+
},
|
|
1523
|
+
"DefaultDateRange": {
|
|
1524
|
+
"type": "object",
|
|
1525
|
+
"properties": {
|
|
1526
|
+
"operation": {
|
|
1527
|
+
"$ref": "#/definitions/DefaultDateRangeValueType",
|
|
1528
|
+
"description": "The operation property is the value that will be set for semantic date range.",
|
|
1529
|
+
"artifactType": "Manifest"
|
|
1530
|
+
}
|
|
1531
|
+
},
|
|
1532
|
+
"additionalProperties": false,
|
|
1533
|
+
"required": [
|
|
1534
|
+
"operation"
|
|
1535
|
+
]
|
|
1536
|
+
},
|
|
1537
|
+
"DefaultDateRangeValueType": {
|
|
1538
|
+
"enum": [
|
|
1539
|
+
"DATETOYEAR",
|
|
1540
|
+
"LAST2WEEKS",
|
|
1541
|
+
"LAST3WEEKS",
|
|
1542
|
+
"LAST4WEEKS",
|
|
1543
|
+
"LAST5WEEKS",
|
|
1544
|
+
"LASTMONTH",
|
|
1545
|
+
"LASTQUARTER",
|
|
1546
|
+
"LASTWEEK",
|
|
1547
|
+
"LASTYEAR",
|
|
1548
|
+
"QUARTER1",
|
|
1549
|
+
"QUARTER2",
|
|
1550
|
+
"QUARTER3",
|
|
1551
|
+
"QUARTER4",
|
|
1552
|
+
"THISMONTH",
|
|
1553
|
+
"THISQUARTER",
|
|
1554
|
+
"THISWEEK",
|
|
1555
|
+
"THISYEAR",
|
|
1556
|
+
"TODAY",
|
|
1557
|
+
"TOMORROW",
|
|
1558
|
+
"YEARTODATE",
|
|
1559
|
+
"YESTERDAY"
|
|
1560
|
+
],
|
|
1561
|
+
"type": "string"
|
|
1562
|
+
},
|
|
1563
|
+
"GenericFooter": {
|
|
1564
|
+
"description": "Footer",
|
|
1565
|
+
"isViewNode": true,
|
|
1566
|
+
"type": "object",
|
|
1567
|
+
"properties": {
|
|
1568
|
+
"actions": {
|
|
1569
|
+
"$ref": "#/definitions/Actions"
|
|
1398
1570
|
}
|
|
1399
1571
|
},
|
|
1400
1572
|
"additionalProperties": false
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
]
|
|
52
52
|
},
|
|
53
53
|
"footer": {
|
|
54
|
-
"$ref": "#/definitions/ObjectPageFooter<
|
|
54
|
+
"$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
|
|
55
55
|
},
|
|
56
56
|
"$schema": {
|
|
57
57
|
"type": "string"
|
|
@@ -156,13 +156,13 @@
|
|
|
156
156
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
157
157
|
},
|
|
158
158
|
"icon": {
|
|
159
|
-
"description": "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.",
|
|
159
|
+
"description": "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.",
|
|
160
160
|
"type": "string",
|
|
161
161
|
"artifactType": "FlexChange",
|
|
162
162
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
163
163
|
},
|
|
164
164
|
"activeIcon": {
|
|
165
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
165
|
+
"description": "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.",
|
|
166
166
|
"type": "string",
|
|
167
167
|
"artifactType": "FlexChange",
|
|
168
168
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
@@ -362,13 +362,13 @@
|
|
|
362
362
|
"controlType": "sap.m.Button"
|
|
363
363
|
},
|
|
364
364
|
"icon": {
|
|
365
|
-
"description": "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.",
|
|
365
|
+
"description": "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.",
|
|
366
366
|
"type": "string",
|
|
367
367
|
"artifactType": "FlexChange",
|
|
368
368
|
"controlType": "sap.m.Button"
|
|
369
369
|
},
|
|
370
370
|
"activeIcon": {
|
|
371
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
371
|
+
"description": "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.",
|
|
372
372
|
"type": "string",
|
|
373
373
|
"artifactType": "FlexChange",
|
|
374
374
|
"controlType": "sap.m.Button"
|
|
@@ -505,6 +505,12 @@
|
|
|
505
505
|
"artifactType": "FlexChange",
|
|
506
506
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
507
507
|
},
|
|
508
|
+
"exportType": {
|
|
509
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
510
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
511
|
+
"artifactType": "FlexChange",
|
|
512
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
513
|
+
},
|
|
508
514
|
"createMode": {
|
|
509
515
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
510
516
|
"type": "string",
|
|
@@ -617,6 +623,14 @@
|
|
|
617
623
|
"key"
|
|
618
624
|
]
|
|
619
625
|
},
|
|
626
|
+
"sap.ui.comp.smarttable.ExportType": {
|
|
627
|
+
"description": "Provides the type of services available for export in the `SmartTable` control.",
|
|
628
|
+
"enum": [
|
|
629
|
+
"GW",
|
|
630
|
+
"UI5Client"
|
|
631
|
+
],
|
|
632
|
+
"type": "string"
|
|
633
|
+
},
|
|
620
634
|
"ObjectPageToolBar": {
|
|
621
635
|
"description": "Toolbar",
|
|
622
636
|
"isViewNode": true,
|
|
@@ -671,13 +685,13 @@
|
|
|
671
685
|
"controlType": "sap.m.Button"
|
|
672
686
|
},
|
|
673
687
|
"icon": {
|
|
674
|
-
"description": "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.",
|
|
688
|
+
"description": "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.",
|
|
675
689
|
"type": "string",
|
|
676
690
|
"artifactType": "FlexChange",
|
|
677
691
|
"controlType": "sap.m.Button"
|
|
678
692
|
},
|
|
679
693
|
"activeIcon": {
|
|
680
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
694
|
+
"description": "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.",
|
|
681
695
|
"type": "string",
|
|
682
696
|
"artifactType": "FlexChange",
|
|
683
697
|
"controlType": "sap.m.Button"
|
|
@@ -698,6 +712,9 @@
|
|
|
698
712
|
{
|
|
699
713
|
"$ref": "#/definitions/TableColumn"
|
|
700
714
|
},
|
|
715
|
+
{
|
|
716
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
717
|
+
},
|
|
701
718
|
{
|
|
702
719
|
"description": "Custom Columns",
|
|
703
720
|
"isViewNode": true,
|
|
@@ -749,6 +766,59 @@
|
|
|
749
766
|
],
|
|
750
767
|
"type": "string"
|
|
751
768
|
},
|
|
769
|
+
"TableColumnAction": {
|
|
770
|
+
"description": "Column Action",
|
|
771
|
+
"isViewNode": true,
|
|
772
|
+
"type": "object",
|
|
773
|
+
"properties": {
|
|
774
|
+
"tooltip": {
|
|
775
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
776
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
777
|
+
"type": "string",
|
|
778
|
+
"artifactType": "FlexChange",
|
|
779
|
+
"controlType": "sap.m.Button"
|
|
780
|
+
},
|
|
781
|
+
"icon": {
|
|
782
|
+
"description": "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.",
|
|
783
|
+
"type": "string",
|
|
784
|
+
"artifactType": "FlexChange",
|
|
785
|
+
"controlType": "sap.m.Button"
|
|
786
|
+
},
|
|
787
|
+
"activeIcon": {
|
|
788
|
+
"description": "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.",
|
|
789
|
+
"type": "string",
|
|
790
|
+
"artifactType": "FlexChange",
|
|
791
|
+
"controlType": "sap.m.Button"
|
|
792
|
+
},
|
|
793
|
+
"type": {
|
|
794
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
795
|
+
"description": "Defines the Button type.",
|
|
796
|
+
"artifactType": "FlexChange",
|
|
797
|
+
"controlType": "sap.m.Button"
|
|
798
|
+
},
|
|
799
|
+
"width": {
|
|
800
|
+
"description": "The width property defines the width of the column.",
|
|
801
|
+
"type": "string",
|
|
802
|
+
"artifactType": "FlexChange",
|
|
803
|
+
"controlType": "sap.m.Column"
|
|
804
|
+
},
|
|
805
|
+
"hAlign": {
|
|
806
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
807
|
+
"anyOf": [
|
|
808
|
+
{
|
|
809
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"type": "string"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
816
|
+
"artifactType": "FlexChange",
|
|
817
|
+
"controlType": "sap.m.Column"
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
"additionalProperties": false
|
|
821
|
+
},
|
|
752
822
|
"TableCustomColumn": {
|
|
753
823
|
"description": "Custom Column",
|
|
754
824
|
"isViewNode": true,
|
|
@@ -893,6 +963,12 @@
|
|
|
893
963
|
"artifactType": "FlexChange",
|
|
894
964
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
895
965
|
},
|
|
966
|
+
"exportType": {
|
|
967
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
968
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
969
|
+
"artifactType": "FlexChange",
|
|
970
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
971
|
+
},
|
|
896
972
|
"createMode": {
|
|
897
973
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
898
974
|
"type": "string",
|
|
@@ -978,6 +1054,12 @@
|
|
|
978
1054
|
"artifactType": "FlexChange",
|
|
979
1055
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
980
1056
|
},
|
|
1057
|
+
"exportType": {
|
|
1058
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1059
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1060
|
+
"artifactType": "FlexChange",
|
|
1061
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1062
|
+
},
|
|
981
1063
|
"createMode": {
|
|
982
1064
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
983
1065
|
"type": "string",
|
|
@@ -1063,6 +1145,12 @@
|
|
|
1063
1145
|
"artifactType": "FlexChange",
|
|
1064
1146
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1065
1147
|
},
|
|
1148
|
+
"exportType": {
|
|
1149
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1150
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1151
|
+
"artifactType": "FlexChange",
|
|
1152
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1153
|
+
},
|
|
1066
1154
|
"createMode": {
|
|
1067
1155
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
1068
1156
|
"type": "string",
|
|
@@ -1148,6 +1236,12 @@
|
|
|
1148
1236
|
"artifactType": "FlexChange",
|
|
1149
1237
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1150
1238
|
},
|
|
1239
|
+
"exportType": {
|
|
1240
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1241
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1242
|
+
"artifactType": "FlexChange",
|
|
1243
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1244
|
+
},
|
|
1151
1245
|
"createMode": {
|
|
1152
1246
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
1153
1247
|
"type": "string",
|
|
@@ -1371,28 +1465,47 @@
|
|
|
1371
1465
|
"type"
|
|
1372
1466
|
]
|
|
1373
1467
|
},
|
|
1374
|
-
"ObjectPageFooter<
|
|
1468
|
+
"ObjectPageFooter<ObjectPageFooterActions>": {
|
|
1375
1469
|
"description": "Footer",
|
|
1376
1470
|
"isViewNode": true,
|
|
1377
1471
|
"type": "object",
|
|
1378
1472
|
"properties": {
|
|
1379
1473
|
"actions": {
|
|
1380
|
-
"$ref": "#/definitions/
|
|
1474
|
+
"$ref": "#/definitions/ObjectPageFooterActions"
|
|
1381
1475
|
}
|
|
1382
1476
|
},
|
|
1383
1477
|
"additionalProperties": false
|
|
1384
1478
|
},
|
|
1385
|
-
"
|
|
1479
|
+
"ObjectPageFooterActions": {
|
|
1386
1480
|
"type": "object",
|
|
1387
1481
|
"additionalProperties": {
|
|
1388
|
-
"$ref": "#/definitions/
|
|
1482
|
+
"$ref": "#/definitions/ObjectPageFooterAction"
|
|
1389
1483
|
}
|
|
1390
1484
|
},
|
|
1391
|
-
"
|
|
1485
|
+
"ObjectPageFooterAction": {
|
|
1392
1486
|
"description": "Footer Action",
|
|
1393
1487
|
"isViewNode": true,
|
|
1394
1488
|
"type": "object",
|
|
1395
1489
|
"properties": {
|
|
1490
|
+
"visible": {
|
|
1491
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1492
|
+
"anyOf": [
|
|
1493
|
+
{
|
|
1494
|
+
"enum": [
|
|
1495
|
+
false,
|
|
1496
|
+
true,
|
|
1497
|
+
"{ui>/editable}",
|
|
1498
|
+
"{= !${ui>/editable}}"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"type": "string"
|
|
1503
|
+
}
|
|
1504
|
+
],
|
|
1505
|
+
"description": "Whether the button should be visible on the screen.",
|
|
1506
|
+
"artifactType": "FlexChange",
|
|
1507
|
+
"controlType": "sap.m.Button"
|
|
1508
|
+
},
|
|
1396
1509
|
"tooltip": {
|
|
1397
1510
|
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
1398
1511
|
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
@@ -1401,13 +1514,13 @@
|
|
|
1401
1514
|
"controlType": "sap.m.Button"
|
|
1402
1515
|
},
|
|
1403
1516
|
"icon": {
|
|
1404
|
-
"description": "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.",
|
|
1517
|
+
"description": "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.",
|
|
1405
1518
|
"type": "string",
|
|
1406
1519
|
"artifactType": "FlexChange",
|
|
1407
1520
|
"controlType": "sap.m.Button"
|
|
1408
1521
|
},
|
|
1409
1522
|
"activeIcon": {
|
|
1410
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
1523
|
+
"description": "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.",
|
|
1411
1524
|
"type": "string",
|
|
1412
1525
|
"artifactType": "FlexChange",
|
|
1413
1526
|
"controlType": "sap.m.Button"
|
|
@@ -1417,25 +1530,6 @@
|
|
|
1417
1530
|
"description": "Defines the Button type.",
|
|
1418
1531
|
"artifactType": "FlexChange",
|
|
1419
1532
|
"controlType": "sap.m.Button"
|
|
1420
|
-
},
|
|
1421
|
-
"visible": {
|
|
1422
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1423
|
-
"anyOf": [
|
|
1424
|
-
{
|
|
1425
|
-
"enum": [
|
|
1426
|
-
false,
|
|
1427
|
-
true,
|
|
1428
|
-
"{ui>/editable}",
|
|
1429
|
-
"{= !${ui>/editable}}"
|
|
1430
|
-
]
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
"type": "string"
|
|
1434
|
-
}
|
|
1435
|
-
],
|
|
1436
|
-
"description": "Whether the button should be visible on the screen.",
|
|
1437
|
-
"artifactType": "FlexChange",
|
|
1438
|
-
"controlType": "sap.m.Button"
|
|
1439
1533
|
}
|
|
1440
1534
|
},
|
|
1441
1535
|
"additionalProperties": false
|