@sap/ux-specification 1.96.3 → 1.96.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +75 -4
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +7 -14
- package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
- package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
- package/dist/documentation/v2/v2-ListReport.html +1 -1
- package/dist/documentation/v2/v2-ObjectPage.html +1 -1
- package/dist/documentation/v2/v2-OverviewPage.html +1 -1
- package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
- package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
- package/dist/documentation/v4/v4-ListReport.html +1 -1
- package/dist/documentation/v4/v4-ObjectPage.html +1 -1
- package/dist/index-min.js +1 -1
- package/dist/index-min.js.LICENSE.txt +0 -71
- package/dist/schemas/v2/AnalyticalListPageConfig.json +149 -15
- package/dist/schemas/v2/ListReportConfig.json +149 -15
- package/dist/schemas/v2/ObjectPageConfig.json +89 -33
- package/dist/schemas/v2/OverviewPageConfig.json +57 -16
- package/dist/schemas/v4/AnalyticalListPageConfig.json +122 -76
- package/dist/schemas/v4/ListReportConfig.json +122 -76
- package/dist/schemas/v4/ObjectPageConfig.json +150 -102
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/apiTypes.d.ts +6 -2
- package/dist/src/specification/v2/controls/Action.d.ts +19 -2
- package/dist/src/specification/v2/controls/FilterBar.d.ts +70 -22
- package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
- package/dist/src/specification/v2/controls/Table.d.ts +8 -1
- package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
- package/dist/src/specification/v2/controls/index.d.ts +1 -2
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +36 -2
- package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
- package/dist/src/specification/v4/controls/ObjectPageHeaderSection.d.ts +2 -14
- package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
- package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +21 -6
- package/dist/src/specification/v4/controls/Table.d.ts +1 -6
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +59 -10
- package/dist/src/sync/common/decoration/control.d.ts +11 -1
- package/dist/src/sync/common/generate/objectPage.d.ts +9 -0
- package/dist/src/sync/common/generate/utils.d.ts +36 -1
- package/dist/src/sync/common/import/utils.d.ts +8 -1
- package/dist/src/sync/common/types.d.ts +30 -16
- package/dist/src/sync/common/utils.d.ts +11 -3
- package/dist/src/sync/v2/export/controls/Action.d.ts +15 -0
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +18 -6
- package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +5 -5
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/ListReport.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +2 -1
- package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
- package/dist/src/sync/v2/generate/objectPage.d.ts +1 -5
- package/dist/src/sync/v2/generate/utils.d.ts +22 -11
- package/dist/src/sync/v2/import/common/index.d.ts +22 -4
- package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
- package/dist/src/sync/v2/import/utils.d.ts +4 -6
- package/dist/src/sync/v2/types.d.ts +8 -1
- package/dist/src/sync/v4/application.d.ts +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +13 -4
- package/dist/src/sync/v4/export/controls/TableColumn.d.ts +10 -2
- package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
- package/dist/src/sync/v4/export/exportCustomColumn.d.ts +13 -0
- package/dist/src/sync/v4/export/manifest.d.ts +1 -1
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ListReport.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
- package/dist/src/sync/v4/export/types.d.ts +3 -0
- package/dist/src/sync/v4/generate/generate.d.ts +4 -2
- package/dist/src/sync/v4/generate/listReport.d.ts +7 -6
- package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/listReport.d.ts +3 -3
- package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
- package/dist/src/sync/v4/utils/utils.d.ts +32 -1
- package/dist/test/unit/utils.test.d.ts +1 -1
- package/package.json +15 -16
- package/dist/scripts/extractDocu.js +0 -488
- package/dist/scripts/extractDocu.js.map +0 -1
- package/dist/scripts/runDocu.js +0 -577
- package/dist/scripts/runDocu.js.map +0 -1
- package/dist/scripts/spec.js +0 -114
- package/dist/scripts/spec.js.map +0 -1
- package/dist/scripts/to-json-schema.js +0 -130
- package/dist/scripts/to-json-schema.js.map +0 -1
- package/dist/src/api.js +0 -184
- package/dist/src/api.js.map +0 -1
- package/dist/src/apiTypes.js +0 -17
- package/dist/src/apiTypes.js.map +0 -1
- package/dist/src/extensionLogger.js +0 -39
- package/dist/src/extensionLogger.js.map +0 -1
- package/dist/src/i18n/i18n.js +0 -25
- package/dist/src/i18n/i18n.js.map +0 -1
- package/dist/src/index.js +0 -13
- package/dist/src/index.js.map +0 -1
- package/dist/src/project.js +0 -143
- package/dist/src/project.js.map +0 -1
- package/dist/src/specification/common/Application.js +0 -3
- package/dist/src/specification/common/Application.js.map +0 -1
- package/dist/src/specification/common/i18n.json +0 -1
- package/dist/src/specification/common/index.js +0 -10
- package/dist/src/specification/common/index.js.map +0 -1
- package/dist/src/specification/common/page.js +0 -33
- package/dist/src/specification/common/page.js.map +0 -1
- package/dist/src/specification/common/types.js +0 -20
- package/dist/src/specification/common/types.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/Manifest.js +0 -17
- package/dist/src/specification/common/webapp/manifest/Manifest.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/index.js +0 -8
- package/dist/src/specification/common/webapp/manifest/index.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/sapOvp.js +0 -9
- package/dist/src/specification/common/webapp/manifest/sapOvp.js.map +0 -1
- package/dist/src/specification/common/webapp/manifest/sapUi5.js +0 -14
- package/dist/src/specification/common/webapp/manifest/sapUi5.js.map +0 -1
- package/dist/src/specification/schemaAccess.js +0 -65
- package/dist/src/specification/schemaAccess.js.map +0 -1
- package/dist/src/specification/v2/ApplicationV2.js +0 -18
- package/dist/src/specification/v2/ApplicationV2.js.map +0 -1
- package/dist/src/specification/v2/controls/Action.js +0 -3
- package/dist/src/specification/v2/controls/Action.js.map +0 -1
- package/dist/src/specification/v2/controls/AnalyticalListPageChart.js +0 -36
- package/dist/src/specification/v2/controls/AnalyticalListPageChart.js.map +0 -1
- package/dist/src/specification/v2/controls/AnalyticalListPageKPI.js +0 -3
- package/dist/src/specification/v2/controls/AnalyticalListPageKPI.js.map +0 -1
- package/dist/src/specification/v2/controls/Card.js +0 -72
- package/dist/src/specification/v2/controls/Card.js.map +0 -1
- package/dist/src/specification/v2/controls/Facets.js +0 -3
- package/dist/src/specification/v2/controls/Facets.js.map +0 -1
- package/dist/src/specification/v2/controls/Field.js +0 -3
- package/dist/src/specification/v2/controls/Field.js.map +0 -1
- package/dist/src/specification/v2/controls/FilterBar.js +0 -54
- package/dist/src/specification/v2/controls/FilterBar.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageChart.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageChart.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
- package/dist/src/specification/v2/controls/ObjectPageFooter.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.d.ts +0 -28
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageForm.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageForm.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageLayout.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageSection.js +0 -13
- package/dist/src/specification/v2/controls/ObjectPageSection.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageTable.js +0 -7
- package/dist/src/specification/v2/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageToolBar.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageToolBar.js.map +0 -1
- package/dist/src/specification/v2/controls/Table.js +0 -42
- package/dist/src/specification/v2/controls/Table.js.map +0 -1
- package/dist/src/specification/v2/controls/ToolBar.js +0 -3
- package/dist/src/specification/v2/controls/ToolBar.js.map +0 -1
- package/dist/src/specification/v2/controls/index.js +0 -12
- package/dist/src/specification/v2/controls/index.js.map +0 -1
- package/dist/src/specification/v2/index.js +0 -10
- package/dist/src/specification/v2/index.js.map +0 -1
- package/dist/src/specification/v2/page.js +0 -3
- package/dist/src/specification/v2/page.js.map +0 -1
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.js +0 -3
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/ListReportConfig.js +0 -3
- package/dist/src/specification/v2/pages/ListReportConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/ObjectPageConfig.js +0 -3
- package/dist/src/specification/v2/pages/ObjectPageConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/OverviewPageConfig.js +0 -8
- package/dist/src/specification/v2/pages/OverviewPageConfig.js.map +0 -1
- package/dist/src/specification/v2/pages/index.js +0 -7
- package/dist/src/specification/v2/pages/index.js.map +0 -1
- package/dist/src/specification/v2/webapp/index.js +0 -7
- package/dist/src/specification/v2/webapp/index.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/index.js +0 -8
- package/dist/src/specification/v2/webapp/manifest/index.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/sapUi.js +0 -3
- package/dist/src/specification/v2/webapp/manifest/sapUi.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/sapUi5.js +0 -10
- package/dist/src/specification/v2/webapp/manifest/sapUi5.js.map +0 -1
- package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.js +0 -7
- package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.js.map +0 -1
- package/dist/src/specification/v4/ApplicationV4.js +0 -3
- package/dist/src/specification/v4/ApplicationV4.js.map +0 -1
- package/dist/src/specification/v4/controls/FilterBar.js +0 -3
- package/dist/src/specification/v4/controls/FilterBar.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageFooter.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageHeader.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageHeaderSection.js +0 -7
- package/dist/src/specification/v4/controls/ObjectPageHeaderSection.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageLayout.js +0 -8
- package/dist/src/specification/v4/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageSection.js +0 -12
- package/dist/src/specification/v4/controls/ObjectPageSection.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageTable.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/specification/v4/controls/ObjectPageToolBar.js +0 -3
- package/dist/src/specification/v4/controls/ObjectPageToolBar.js.map +0 -1
- package/dist/src/specification/v4/controls/Table.js +0 -30
- package/dist/src/specification/v4/controls/Table.js.map +0 -1
- package/dist/src/specification/v4/controls/ToolBar.js +0 -8
- package/dist/src/specification/v4/controls/ToolBar.js.map +0 -1
- package/dist/src/specification/v4/controls/index.js +0 -11
- package/dist/src/specification/v4/controls/index.js.map +0 -1
- package/dist/src/specification/v4/index.js +0 -9
- package/dist/src/specification/v4/index.js.map +0 -1
- package/dist/src/specification/v4/page.js +0 -3
- package/dist/src/specification/v4/page.js.map +0 -1
- package/dist/src/specification/v4/pages/AnalyticalListPageConfig.js +0 -3
- package/dist/src/specification/v4/pages/AnalyticalListPageConfig.js.map +0 -1
- package/dist/src/specification/v4/pages/ListReportConfig.js +0 -9
- package/dist/src/specification/v4/pages/ListReportConfig.js.map +0 -1
- package/dist/src/specification/v4/pages/ObjectPageConfig.js +0 -8
- package/dist/src/specification/v4/pages/ObjectPageConfig.js.map +0 -1
- package/dist/src/specification/v4/pages/index.js +0 -8
- package/dist/src/specification/v4/pages/index.js.map +0 -1
- package/dist/src/specification/v4/webapp/index.js +0 -7
- package/dist/src/specification/v4/webapp/index.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +0 -16
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/index.js +0 -10
- package/dist/src/specification/v4/webapp/manifest/index.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/sapUi5.js +0 -11
- package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +0 -1
- package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js +0 -14
- package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js.map +0 -1
- package/dist/src/sync/common/appProvider.js +0 -57
- package/dist/src/sync/common/appProvider.js.map +0 -1
- package/dist/src/sync/common/decoration/control.js +0 -180
- package/dist/src/sync/common/decoration/control.js.map +0 -1
- package/dist/src/sync/common/decoration/decorators.js +0 -43
- package/dist/src/sync/common/decoration/decorators.js.map +0 -1
- package/dist/src/sync/common/decoration/factory.js +0 -50
- package/dist/src/sync/common/decoration/factory.js.map +0 -1
- package/dist/src/sync/common/decoration/flex.js +0 -8
- package/dist/src/sync/common/decoration/flex.js.map +0 -1
- package/dist/src/sync/common/decoration/index.js +0 -9
- package/dist/src/sync/common/decoration/index.js.map +0 -1
- package/dist/src/sync/common/flexUtils.js +0 -95
- package/dist/src/sync/common/flexUtils.js.map +0 -1
- package/dist/src/sync/common/generate/index.js +0 -8
- package/dist/src/sync/common/generate/index.js.map +0 -1
- package/dist/src/sync/common/generate/objectPage.js +0 -336
- package/dist/src/sync/common/generate/objectPage.js.map +0 -1
- package/dist/src/sync/common/generate/utils.js +0 -205
- package/dist/src/sync/common/generate/utils.js.map +0 -1
- package/dist/src/sync/common/i18n.json +0 -21
- package/dist/src/sync/common/import/utils.js +0 -75
- package/dist/src/sync/common/import/utils.js.map +0 -1
- package/dist/src/sync/common/importProject.js +0 -351
- package/dist/src/sync/common/importProject.js.map +0 -1
- package/dist/src/sync/common/index.js +0 -15
- package/dist/src/sync/common/index.js.map +0 -1
- package/dist/src/sync/common/types.js +0 -82
- package/dist/src/sync/common/types.js.map +0 -1
- package/dist/src/sync/common/utils.js +0 -1056
- package/dist/src/sync/common/utils.js.map +0 -1
- package/dist/src/sync/i18n.js +0 -15
- package/dist/src/sync/i18n.js.map +0 -1
- package/dist/src/sync/v2/application.js +0 -190
- package/dist/src/sync/v2/application.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Action.js +0 -74
- package/dist/src/sync/v2/export/controls/Action.js.map +0 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js +0 -72
- package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js.map +0 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js +0 -56
- package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Card.js +0 -655
- package/dist/src/sync/v2/export/controls/Card.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Field.js +0 -32
- package/dist/src/sync/v2/export/controls/Field.js.map +0 -1
- package/dist/src/sync/v2/export/controls/FilterBar.js +0 -245
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +0 -1
- package/dist/src/sync/v2/export/controls/FormAction.js +0 -95
- package/dist/src/sync/v2/export/controls/FormAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Fragment.js +0 -401
- package/dist/src/sync/v2/export/controls/Fragment.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageChart.js +0 -37
- package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js +0 -110
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +0 -62
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js +0 -60
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +0 -62
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageLayout.js +0 -59
- package/dist/src/sync/v2/export/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +0 -144
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +0 -335
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +0 -59
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +0 -1
- package/dist/src/sync/v2/export/controls/Table.js +0 -679
- package/dist/src/sync/v2/export/controls/Table.js.map +0 -1
- package/dist/src/sync/v2/export/controls/TableColumn.js +0 -41
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +0 -1
- package/dist/src/sync/v2/export/controls/ToolBar.js +0 -6
- package/dist/src/sync/v2/export/controls/ToolBar.js.map +0 -1
- package/dist/src/sync/v2/export/controls/index.js +0 -26
- package/dist/src/sync/v2/export/controls/index.js.map +0 -1
- package/dist/src/sync/v2/export/export.js +0 -592
- package/dist/src/sync/v2/export/export.js.map +0 -1
- package/dist/src/sync/v2/export/exportPage.js +0 -312
- package/dist/src/sync/v2/export/exportPage.js.map +0 -1
- package/dist/src/sync/v2/export/factory.js +0 -59
- package/dist/src/sync/v2/export/factory.js.map +0 -1
- package/dist/src/sync/v2/export/manifest.js +0 -117
- package/dist/src/sync/v2/export/manifest.js.map +0 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +0 -41
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +0 -1
- package/dist/src/sync/v2/export/pages/ListReport.js +0 -38
- package/dist/src/sync/v2/export/pages/ListReport.js.map +0 -1
- package/dist/src/sync/v2/export/pages/ObjectPage.js +0 -100
- package/dist/src/sync/v2/export/pages/ObjectPage.js.map +0 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.js +0 -178
- package/dist/src/sync/v2/export/pages/OverviewPage.js.map +0 -1
- package/dist/src/sync/v2/export/pages/index.js +0 -10
- package/dist/src/sync/v2/export/pages/index.js.map +0 -1
- package/dist/src/sync/v2/export/view-controller-generator.js +0 -157
- package/dist/src/sync/v2/export/view-controller-generator.js.map +0 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +0 -87
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +0 -1
- package/dist/src/sync/v2/generate/generate.js +0 -96
- package/dist/src/sync/v2/generate/generate.js.map +0 -1
- package/dist/src/sync/v2/generate/index.js +0 -14
- package/dist/src/sync/v2/generate/index.js.map +0 -1
- package/dist/src/sync/v2/generate/listReport.js +0 -113
- package/dist/src/sync/v2/generate/listReport.js.map +0 -1
- package/dist/src/sync/v2/generate/objectPage.js +0 -556
- package/dist/src/sync/v2/generate/objectPage.js.map +0 -1
- package/dist/src/sync/v2/generate/overviewPage.js +0 -73
- package/dist/src/sync/v2/generate/overviewPage.js.map +0 -1
- package/dist/src/sync/v2/generate/utils.js +0 -347
- package/dist/src/sync/v2/generate/utils.js.map +0 -1
- package/dist/src/sync/v2/import/app/appProvider.js +0 -122
- package/dist/src/sync/v2/import/app/appProvider.js.map +0 -1
- package/dist/src/sync/v2/import/app/ovpProvider.js +0 -33
- package/dist/src/sync/v2/import/app/ovpProvider.js.map +0 -1
- package/dist/src/sync/v2/import/common/index.js +0 -213
- package/dist/src/sync/v2/import/common/index.js.map +0 -1
- package/dist/src/sync/v2/import/controls/table.js +0 -31
- package/dist/src/sync/v2/import/controls/table.js.map +0 -1
- package/dist/src/sync/v2/import/getPageType.js +0 -1
- package/dist/src/sync/v2/import/getPageType.js.map +0 -1
- package/dist/src/sync/v2/import/index.js +0 -11
- package/dist/src/sync/v2/import/index.js.map +0 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +0 -104
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +0 -1
- package/dist/src/sync/v2/import/pages/listReport.js +0 -234
- package/dist/src/sync/v2/import/pages/listReport.js.map +0 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +0 -620
- package/dist/src/sync/v2/import/pages/objectPage.js.map +0 -1
- package/dist/src/sync/v2/import/pages/overviewPage.js +0 -113
- package/dist/src/sync/v2/import/pages/overviewPage.js.map +0 -1
- package/dist/src/sync/v2/import/utils.js +0 -103
- package/dist/src/sync/v2/import/utils.js.map +0 -1
- package/dist/src/sync/v2/types.js +0 -26
- package/dist/src/sync/v2/types.js.map +0 -1
- package/dist/src/sync/v4/application.js +0 -80
- package/dist/src/sync/v4/application.js.map +0 -1
- package/dist/src/sync/v4/export/controls/FilterBar.js +0 -6
- package/dist/src/sync/v4/export/controls/FilterBar.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js +0 -136
- package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageHeader.js +0 -55
- package/dist/src/sync/v4/export/controls/ObjectPageHeader.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js +0 -65
- package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageLayout.js +0 -24
- package/dist/src/sync/v4/export/controls/ObjectPageLayout.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js +0 -245
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +0 -87
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.js +0 -21
- package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.js.map +0 -1
- package/dist/src/sync/v4/export/controls/Table.js +0 -318
- package/dist/src/sync/v4/export/controls/Table.js.map +0 -1
- package/dist/src/sync/v4/export/controls/TableColumn.js +0 -97
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ToolBar.js +0 -6
- package/dist/src/sync/v4/export/controls/ToolBar.js.map +0 -1
- package/dist/src/sync/v4/export/controls/ToolBarAction.js +0 -21
- package/dist/src/sync/v4/export/controls/ToolBarAction.js.map +0 -1
- package/dist/src/sync/v4/export/controls/index.js +0 -18
- package/dist/src/sync/v4/export/controls/index.js.map +0 -1
- package/dist/src/sync/v4/export/export.js +0 -418
- package/dist/src/sync/v4/export/export.js.map +0 -1
- package/dist/src/sync/v4/export/factory.js +0 -44
- package/dist/src/sync/v4/export/factory.js.map +0 -1
- package/dist/src/sync/v4/export/flexibleColumnLayout.js +0 -114
- package/dist/src/sync/v4/export/flexibleColumnLayout.js.map +0 -1
- package/dist/src/sync/v4/export/manifest.js +0 -208
- package/dist/src/sync/v4/export/manifest.js.map +0 -1
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.js +0 -38
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.js.map +0 -1
- package/dist/src/sync/v4/export/pages/ListReport.js +0 -33
- package/dist/src/sync/v4/export/pages/ListReport.js.map +0 -1
- package/dist/src/sync/v4/export/pages/ObjectPage.js +0 -39
- package/dist/src/sync/v4/export/pages/ObjectPage.js.map +0 -1
- package/dist/src/sync/v4/export/pages/index.js +0 -9
- package/dist/src/sync/v4/export/pages/index.js.map +0 -1
- package/dist/src/sync/v4/export/types.js +0 -3
- package/dist/src/sync/v4/export/types.js.map +0 -1
- package/dist/src/sync/v4/export/utils.js +0 -26
- package/dist/src/sync/v4/export/utils.js.map +0 -1
- package/dist/src/sync/v4/generate/generate.js +0 -47
- package/dist/src/sync/v4/generate/generate.js.map +0 -1
- package/dist/src/sync/v4/generate/index.js +0 -10
- package/dist/src/sync/v4/generate/index.js.map +0 -1
- package/dist/src/sync/v4/generate/listReport.js +0 -96
- package/dist/src/sync/v4/generate/listReport.js.map +0 -1
- package/dist/src/sync/v4/generate/objectPage.js +0 -395
- package/dist/src/sync/v4/generate/objectPage.js.map +0 -1
- package/dist/src/sync/v4/import/app/appProvider.js +0 -313
- package/dist/src/sync/v4/import/app/appProvider.js.map +0 -1
- package/dist/src/sync/v4/import/fragment.js +0 -130
- package/dist/src/sync/v4/import/fragment.js.map +0 -1
- package/dist/src/sync/v4/import/index.js +0 -9
- package/dist/src/sync/v4/import/index.js.map +0 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -61
- package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +0 -1
- package/dist/src/sync/v4/import/pages/listReport.js +0 -124
- package/dist/src/sync/v4/import/pages/listReport.js.map +0 -1
- package/dist/src/sync/v4/import/pages/objectPage.js +0 -231
- package/dist/src/sync/v4/import/pages/objectPage.js.map +0 -1
- package/dist/src/sync/v4/import/utils.js +0 -33
- package/dist/src/sync/v4/import/utils.js.map +0 -1
- package/dist/src/sync/v4/types.js +0 -3
- package/dist/src/sync/v4/types.js.map +0 -1
- package/dist/src/sync/v4/utils/StableIdHelper.js +0 -153
- package/dist/src/sync/v4/utils/StableIdHelper.js.map +0 -1
- package/dist/src/sync/v4/utils/utils.js +0 -94
- package/dist/src/sync/v4/utils/utils.js.map +0 -1
- package/dist/src/v2.js +0 -8
- package/dist/src/v2.js.map +0 -1
- package/dist/src/v4.js +0 -8
- package/dist/src/v4.js.map +0 -1
- package/dist/test/test-utils/metadataParser.d.ts +0 -19
|
@@ -1,72 +1,3 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* @description Recursive object extending
|
|
3
|
-
* @author Viacheslav Lotsmanov <lotsmanov89@gmail.com>
|
|
4
|
-
* @license MIT
|
|
5
|
-
*
|
|
6
|
-
* The MIT License (MIT)
|
|
7
|
-
*
|
|
8
|
-
* Copyright (c) 2013-2018 Viacheslav Lotsmanov
|
|
9
|
-
*
|
|
10
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
11
|
-
* this software and associated documentation files (the "Software"), to deal in
|
|
12
|
-
* the Software without restriction, including without limitation the rights to
|
|
13
|
-
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
14
|
-
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
15
|
-
* subject to the following conditions:
|
|
16
|
-
*
|
|
17
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
18
|
-
* copies or substantial portions of the Software.
|
|
19
|
-
*
|
|
20
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
22
|
-
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
23
|
-
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
24
|
-
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
25
|
-
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
26
|
-
*/
|
|
27
|
-
|
|
28
|
-
/*!
|
|
29
|
-
* fill-range <https://github.com/jonschlinkert/fill-range>
|
|
30
|
-
*
|
|
31
|
-
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
32
|
-
* Licensed under the MIT License.
|
|
33
|
-
*/
|
|
34
|
-
|
|
35
|
-
/*!
|
|
36
|
-
* is-extglob <https://github.com/jonschlinkert/is-extglob>
|
|
37
|
-
*
|
|
38
|
-
* Copyright (c) 2014-2016, Jon Schlinkert.
|
|
39
|
-
* Licensed under the MIT License.
|
|
40
|
-
*/
|
|
41
|
-
|
|
42
|
-
/*!
|
|
43
|
-
* is-glob <https://github.com/jonschlinkert/is-glob>
|
|
44
|
-
*
|
|
45
|
-
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
46
|
-
* Released under the MIT License.
|
|
47
|
-
*/
|
|
48
|
-
|
|
49
|
-
/*!
|
|
50
|
-
* is-number <https://github.com/jonschlinkert/is-number>
|
|
51
|
-
*
|
|
52
|
-
* Copyright (c) 2014-present, Jon Schlinkert.
|
|
53
|
-
* Released under the MIT License.
|
|
54
|
-
*/
|
|
55
|
-
|
|
56
|
-
/*!
|
|
57
|
-
* normalize-path <https://github.com/jonschlinkert/normalize-path>
|
|
58
|
-
*
|
|
59
|
-
* Copyright (c) 2014-2018, Jon Schlinkert.
|
|
60
|
-
* Released under the MIT License.
|
|
61
|
-
*/
|
|
62
|
-
|
|
63
|
-
/*!
|
|
64
|
-
* to-regex-range <https://github.com/micromatch/to-regex-range>
|
|
65
|
-
*
|
|
66
|
-
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
67
|
-
* Released under the MIT License.
|
|
68
|
-
*/
|
|
69
|
-
|
|
70
1
|
/*! *****************************************************************************
|
|
71
2
|
Copyright (C) Microsoft. All rights reserved.
|
|
72
3
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
@@ -84,8 +15,6 @@ and limitations under the License.
|
|
|
84
15
|
|
|
85
16
|
/*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
|
|
86
17
|
|
|
87
|
-
/*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
88
|
-
|
|
89
18
|
/**
|
|
90
19
|
* @file Embedded JavaScript templating engine. {@link http://ejs.co}
|
|
91
20
|
* @author Matthew Eernisse <mde@fleegix.org>
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
"chart": {
|
|
27
27
|
"$ref": "#/definitions/ChartSettings"
|
|
28
28
|
},
|
|
29
|
+
"footer": {
|
|
30
|
+
"$ref": "#/definitions/GenericFooter"
|
|
31
|
+
},
|
|
29
32
|
"keyPerformanceIndicators": {
|
|
30
33
|
"description": "Key Performance Indicators",
|
|
31
34
|
"isViewNode": true,
|
|
@@ -409,13 +412,13 @@
|
|
|
409
412
|
"controlType": "sap.m.Button"
|
|
410
413
|
},
|
|
411
414
|
"icon": {
|
|
412
|
-
"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.",
|
|
415
|
+
"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.",
|
|
413
416
|
"type": "string",
|
|
414
417
|
"artifactType": "FlexChange",
|
|
415
418
|
"controlType": "sap.m.Button"
|
|
416
419
|
},
|
|
417
420
|
"activeIcon": {
|
|
418
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
421
|
+
"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.",
|
|
419
422
|
"type": "string",
|
|
420
423
|
"artifactType": "FlexChange",
|
|
421
424
|
"controlType": "sap.m.Button"
|
|
@@ -456,6 +459,9 @@
|
|
|
456
459
|
{
|
|
457
460
|
"$ref": "#/definitions/TableColumn"
|
|
458
461
|
},
|
|
462
|
+
{
|
|
463
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
464
|
+
},
|
|
459
465
|
{
|
|
460
466
|
"description": "Custom Columns",
|
|
461
467
|
"isViewNode": true,
|
|
@@ -507,6 +513,59 @@
|
|
|
507
513
|
],
|
|
508
514
|
"type": "string"
|
|
509
515
|
},
|
|
516
|
+
"TableColumnAction": {
|
|
517
|
+
"description": "Column Action",
|
|
518
|
+
"isViewNode": true,
|
|
519
|
+
"type": "object",
|
|
520
|
+
"properties": {
|
|
521
|
+
"tooltip": {
|
|
522
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
523
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
524
|
+
"type": "string",
|
|
525
|
+
"artifactType": "FlexChange",
|
|
526
|
+
"controlType": "sap.m.Button"
|
|
527
|
+
},
|
|
528
|
+
"icon": {
|
|
529
|
+
"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.",
|
|
530
|
+
"type": "string",
|
|
531
|
+
"artifactType": "FlexChange",
|
|
532
|
+
"controlType": "sap.m.Button"
|
|
533
|
+
},
|
|
534
|
+
"activeIcon": {
|
|
535
|
+
"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.",
|
|
536
|
+
"type": "string",
|
|
537
|
+
"artifactType": "FlexChange",
|
|
538
|
+
"controlType": "sap.m.Button"
|
|
539
|
+
},
|
|
540
|
+
"type": {
|
|
541
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
542
|
+
"description": "Defines the Button type.",
|
|
543
|
+
"artifactType": "FlexChange",
|
|
544
|
+
"controlType": "sap.m.Button"
|
|
545
|
+
},
|
|
546
|
+
"width": {
|
|
547
|
+
"description": "The width property defines the width of the column.",
|
|
548
|
+
"type": "string",
|
|
549
|
+
"artifactType": "FlexChange",
|
|
550
|
+
"controlType": "sap.m.Column"
|
|
551
|
+
},
|
|
552
|
+
"hAlign": {
|
|
553
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
554
|
+
"anyOf": [
|
|
555
|
+
{
|
|
556
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"type": "string"
|
|
560
|
+
}
|
|
561
|
+
],
|
|
562
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
563
|
+
"artifactType": "FlexChange",
|
|
564
|
+
"controlType": "sap.m.Column"
|
|
565
|
+
}
|
|
566
|
+
},
|
|
567
|
+
"additionalProperties": false
|
|
568
|
+
},
|
|
510
569
|
"TableCustomColumn": {
|
|
511
570
|
"description": "Custom Column",
|
|
512
571
|
"isViewNode": true,
|
|
@@ -883,6 +942,9 @@
|
|
|
883
942
|
"type": "boolean",
|
|
884
943
|
"artifactType": "FlexChange",
|
|
885
944
|
"controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
|
|
945
|
+
},
|
|
946
|
+
"selectionFields": {
|
|
947
|
+
"$ref": "#/definitions/SelectionFields"
|
|
886
948
|
}
|
|
887
949
|
},
|
|
888
950
|
"additionalProperties": false
|
|
@@ -957,19 +1019,31 @@
|
|
|
957
1019
|
"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.",
|
|
958
1020
|
"type": "boolean",
|
|
959
1021
|
"artifactType": "Manifest"
|
|
960
|
-
},
|
|
961
|
-
"fields": {
|
|
962
|
-
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
963
|
-
"type": "object",
|
|
964
|
-
"additionalProperties": {
|
|
965
|
-
"$ref": "#/definitions/SelectedValues"
|
|
966
|
-
},
|
|
967
|
-
"artifactType": "Manifest"
|
|
968
1022
|
}
|
|
969
1023
|
},
|
|
970
1024
|
"additionalProperties": false
|
|
971
1025
|
},
|
|
972
|
-
"
|
|
1026
|
+
"SelectionFields": {
|
|
1027
|
+
"description": "Filter Fields",
|
|
1028
|
+
"isViewNode": true,
|
|
1029
|
+
"type": "object",
|
|
1030
|
+
"additionalProperties": {
|
|
1031
|
+
"description": "Filter Field",
|
|
1032
|
+
"isViewNode": true,
|
|
1033
|
+
"anyOf": [
|
|
1034
|
+
{
|
|
1035
|
+
"type": "object",
|
|
1036
|
+
"properties": {}
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"$ref": "#/definitions/SelectionFieldDateSettings"
|
|
1040
|
+
}
|
|
1041
|
+
]
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
"SelectionFieldDateSettings": {
|
|
1045
|
+
"description": "Filter Field for Date Settings",
|
|
1046
|
+
"isViewNode": true,
|
|
973
1047
|
"type": "object",
|
|
974
1048
|
"properties": {
|
|
975
1049
|
"selectedValues": {
|
|
@@ -1027,15 +1101,18 @@
|
|
|
1027
1101
|
"YESTERDAY"
|
|
1028
1102
|
],
|
|
1029
1103
|
"type": "string"
|
|
1030
|
-
}
|
|
1104
|
+
},
|
|
1105
|
+
"artifactType": "Manifest"
|
|
1031
1106
|
},
|
|
1032
1107
|
"exclude": {
|
|
1033
1108
|
"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.",
|
|
1034
|
-
"type": "boolean"
|
|
1109
|
+
"type": "boolean",
|
|
1110
|
+
"artifactType": "Manifest"
|
|
1035
1111
|
},
|
|
1036
1112
|
"customDateRangeImplementation": {
|
|
1037
1113
|
"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.",
|
|
1038
|
-
"type": "string"
|
|
1114
|
+
"type": "string",
|
|
1115
|
+
"artifactType": "Manifest"
|
|
1039
1116
|
},
|
|
1040
1117
|
"filter": {
|
|
1041
1118
|
"description": "You can use the filter settings to include and exclude specific date range values.",
|
|
@@ -1205,11 +1282,57 @@
|
|
|
1205
1282
|
]
|
|
1206
1283
|
}
|
|
1207
1284
|
]
|
|
1208
|
-
}
|
|
1285
|
+
},
|
|
1286
|
+
"artifactType": "Manifest"
|
|
1287
|
+
},
|
|
1288
|
+
"defaultValue": {
|
|
1289
|
+
"$ref": "#/definitions/DefaultDateRange",
|
|
1290
|
+
"description": "You can set a default value for semantic date range.",
|
|
1291
|
+
"artifactType": "Manifest"
|
|
1209
1292
|
}
|
|
1210
1293
|
},
|
|
1211
1294
|
"additionalProperties": false
|
|
1212
1295
|
},
|
|
1296
|
+
"DefaultDateRange": {
|
|
1297
|
+
"type": "object",
|
|
1298
|
+
"properties": {
|
|
1299
|
+
"operation": {
|
|
1300
|
+
"$ref": "#/definitions/DefaultDateRangeValueType",
|
|
1301
|
+
"description": "The operation property is the value that will be set for semantic date range.",
|
|
1302
|
+
"artifactType": "Manifest"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"additionalProperties": false,
|
|
1306
|
+
"required": [
|
|
1307
|
+
"operation"
|
|
1308
|
+
]
|
|
1309
|
+
},
|
|
1310
|
+
"DefaultDateRangeValueType": {
|
|
1311
|
+
"enum": [
|
|
1312
|
+
"DATETOYEAR",
|
|
1313
|
+
"LAST2WEEKS",
|
|
1314
|
+
"LAST3WEEKS",
|
|
1315
|
+
"LAST4WEEKS",
|
|
1316
|
+
"LAST5WEEKS",
|
|
1317
|
+
"LASTMONTH",
|
|
1318
|
+
"LASTQUARTER",
|
|
1319
|
+
"LASTWEEK",
|
|
1320
|
+
"LASTYEAR",
|
|
1321
|
+
"QUARTER1",
|
|
1322
|
+
"QUARTER2",
|
|
1323
|
+
"QUARTER3",
|
|
1324
|
+
"QUARTER4",
|
|
1325
|
+
"THISMONTH",
|
|
1326
|
+
"THISQUARTER",
|
|
1327
|
+
"THISWEEK",
|
|
1328
|
+
"THISYEAR",
|
|
1329
|
+
"TODAY",
|
|
1330
|
+
"TOMORROW",
|
|
1331
|
+
"YEARTODATE",
|
|
1332
|
+
"YESTERDAY"
|
|
1333
|
+
],
|
|
1334
|
+
"type": "string"
|
|
1335
|
+
},
|
|
1213
1336
|
"ChartSettings": {
|
|
1214
1337
|
"description": "Chart",
|
|
1215
1338
|
"isViewNode": true,
|
|
@@ -1282,6 +1405,17 @@
|
|
|
1282
1405
|
},
|
|
1283
1406
|
"additionalProperties": false
|
|
1284
1407
|
},
|
|
1408
|
+
"GenericFooter": {
|
|
1409
|
+
"description": "Footer",
|
|
1410
|
+
"isViewNode": true,
|
|
1411
|
+
"type": "object",
|
|
1412
|
+
"properties": {
|
|
1413
|
+
"actions": {
|
|
1414
|
+
"$ref": "#/definitions/Actions"
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
"additionalProperties": false
|
|
1418
|
+
},
|
|
1285
1419
|
"KPISettings": {
|
|
1286
1420
|
"description": "KPI Settings",
|
|
1287
1421
|
"isViewNode": true,
|
|
@@ -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
|
}
|
|
@@ -413,13 +416,13 @@
|
|
|
413
416
|
"controlType": "sap.m.Button"
|
|
414
417
|
},
|
|
415
418
|
"icon": {
|
|
416
|
-
"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.",
|
|
417
420
|
"type": "string",
|
|
418
421
|
"artifactType": "FlexChange",
|
|
419
422
|
"controlType": "sap.m.Button"
|
|
420
423
|
},
|
|
421
424
|
"activeIcon": {
|
|
422
|
-
"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.",
|
|
423
426
|
"type": "string",
|
|
424
427
|
"artifactType": "FlexChange",
|
|
425
428
|
"controlType": "sap.m.Button"
|
|
@@ -460,6 +463,9 @@
|
|
|
460
463
|
{
|
|
461
464
|
"$ref": "#/definitions/TableColumn"
|
|
462
465
|
},
|
|
466
|
+
{
|
|
467
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
468
|
+
},
|
|
463
469
|
{
|
|
464
470
|
"description": "Custom Columns",
|
|
465
471
|
"isViewNode": true,
|
|
@@ -511,6 +517,59 @@
|
|
|
511
517
|
],
|
|
512
518
|
"type": "string"
|
|
513
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
|
+
},
|
|
514
573
|
"TableCustomColumn": {
|
|
515
574
|
"description": "Custom Column",
|
|
516
575
|
"isViewNode": true,
|
|
@@ -1110,6 +1169,9 @@
|
|
|
1110
1169
|
"type": "boolean",
|
|
1111
1170
|
"artifactType": "FlexChange",
|
|
1112
1171
|
"controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
|
|
1172
|
+
},
|
|
1173
|
+
"selectionFields": {
|
|
1174
|
+
"$ref": "#/definitions/SelectionFields"
|
|
1113
1175
|
}
|
|
1114
1176
|
},
|
|
1115
1177
|
"additionalProperties": false
|
|
@@ -1184,19 +1246,31 @@
|
|
|
1184
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.",
|
|
1185
1247
|
"type": "boolean",
|
|
1186
1248
|
"artifactType": "Manifest"
|
|
1187
|
-
},
|
|
1188
|
-
"fields": {
|
|
1189
|
-
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
1190
|
-
"type": "object",
|
|
1191
|
-
"additionalProperties": {
|
|
1192
|
-
"$ref": "#/definitions/SelectedValues"
|
|
1193
|
-
},
|
|
1194
|
-
"artifactType": "Manifest"
|
|
1195
1249
|
}
|
|
1196
1250
|
},
|
|
1197
1251
|
"additionalProperties": false
|
|
1198
1252
|
},
|
|
1199
|
-
"
|
|
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,
|
|
1200
1274
|
"type": "object",
|
|
1201
1275
|
"properties": {
|
|
1202
1276
|
"selectedValues": {
|
|
@@ -1254,15 +1328,18 @@
|
|
|
1254
1328
|
"YESTERDAY"
|
|
1255
1329
|
],
|
|
1256
1330
|
"type": "string"
|
|
1257
|
-
}
|
|
1331
|
+
},
|
|
1332
|
+
"artifactType": "Manifest"
|
|
1258
1333
|
},
|
|
1259
1334
|
"exclude": {
|
|
1260
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.",
|
|
1261
|
-
"type": "boolean"
|
|
1336
|
+
"type": "boolean",
|
|
1337
|
+
"artifactType": "Manifest"
|
|
1262
1338
|
},
|
|
1263
1339
|
"customDateRangeImplementation": {
|
|
1264
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.",
|
|
1265
|
-
"type": "string"
|
|
1341
|
+
"type": "string",
|
|
1342
|
+
"artifactType": "Manifest"
|
|
1266
1343
|
},
|
|
1267
1344
|
"filter": {
|
|
1268
1345
|
"description": "You can use the filter settings to include and exclude specific date range values.",
|
|
@@ -1432,7 +1509,64 @@
|
|
|
1432
1509
|
]
|
|
1433
1510
|
}
|
|
1434
1511
|
]
|
|
1435
|
-
}
|
|
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"
|
|
1436
1570
|
}
|
|
1437
1571
|
},
|
|
1438
1572
|
"additionalProperties": false
|