@sap/ux-specification 1.84.26 → 1.84.30
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 +92 -9
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +4 -5
- 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/schemas/v2/AnalyticalListPageConfig.json +103 -40
- package/dist/schemas/v2/ListReportConfig.json +112 -32
- package/dist/schemas/v2/ObjectPageConfig.json +247 -56
- package/dist/schemas/v2/OverviewPageConfig.json +258 -196
- package/dist/schemas/v4/AnalyticalListPageConfig.json +48 -93
- package/dist/schemas/v4/ListReportConfig.json +48 -93
- package/dist/schemas/v4/ObjectPageConfig.json +51 -104
- package/dist/scripts/extractDocu.js +18 -8
- package/dist/scripts/extractDocu.js.map +1 -1
- package/dist/scripts/runDocu.js +105 -89
- package/dist/scripts/runDocu.js.map +1 -1
- package/dist/scripts/to-json-schema.js +32 -37
- package/dist/scripts/to-json-schema.js.map +1 -1
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/api.js +9 -9
- package/dist/src/api.js.map +1 -1
- package/dist/src/apiTypes.d.ts +5 -2
- package/dist/src/specification/schemaAccess.js +1 -3
- package/dist/src/specification/schemaAccess.js.map +1 -1
- package/dist/src/specification/v2/controls/Action.d.ts +87 -0
- package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
- package/dist/src/specification/v2/controls/Action.js.map +1 -0
- package/dist/src/specification/v2/controls/Card.d.ts +20 -72
- package/dist/src/specification/v2/controls/Card.js.map +1 -1
- package/dist/src/specification/v2/controls/FilterBar.d.ts +6 -2
- package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
- package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
- package/dist/src/specification/v2/controls/Footer.js.map +1 -0
- package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
- package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
- package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +5 -0
- package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
- package/dist/src/specification/v2/controls/Table.d.ts +14 -10
- package/dist/src/specification/v2/controls/Table.js.map +1 -1
- package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
- package/dist/src/specification/v2/controls/index.d.ts +8 -10
- package/dist/src/specification/v2/controls/index.js +3 -3
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/ListReportConfig.d.ts +3 -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 +6 -13
- package/dist/src/specification/v4/controls/Table.d.ts +4 -10
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +51 -13
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +6 -0
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +1 -1
- package/dist/src/sync/common/appProvider.js.map +1 -1
- package/dist/src/sync/common/decoration/control.d.ts +11 -1
- package/dist/src/sync/common/decoration/control.js +29 -3
- package/dist/src/sync/common/decoration/control.js.map +1 -1
- package/dist/src/sync/common/decoration/factory.js +2 -4
- package/dist/src/sync/common/decoration/factory.js.map +1 -1
- package/dist/src/sync/common/generate/index.d.ts +1 -0
- package/dist/src/sync/common/generate/index.js +1 -0
- package/dist/src/sync/common/generate/index.js.map +1 -1
- package/dist/src/sync/common/generate/objectPage.d.ts +8 -0
- package/dist/src/sync/common/generate/objectPage.js +28 -12
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +60 -0
- package/dist/src/sync/common/generate/utils.js +208 -0
- package/dist/src/sync/common/generate/utils.js.map +1 -0
- package/dist/src/sync/common/i18n.json +2 -0
- package/dist/src/sync/common/import/utils.d.ts +8 -1
- package/dist/src/sync/common/import/utils.js +14 -3
- package/dist/src/sync/common/import/utils.js.map +1 -1
- package/dist/src/sync/common/importProject.js +19 -28
- package/dist/src/sync/common/importProject.js.map +1 -1
- package/dist/src/sync/common/types.d.ts +29 -15
- package/dist/src/sync/common/types.js +25 -1
- package/dist/src/sync/common/types.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +6 -33
- package/dist/src/sync/common/utils.js +25 -131
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Action.d.ts +28 -0
- package/dist/src/sync/v2/export/controls/Action.js +127 -0
- package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
- package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
- package/dist/src/sync/v2/export/controls/Card.js +15 -43
- package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +4 -3
- package/dist/src/sync/v2/export/controls/FilterBar.js +23 -22
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
- package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.js +244 -168
- package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +8 -0
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +4 -4
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +4 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +15 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +8 -0
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +61 -0
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/Table.d.ts +5 -4
- package/dist/src/sync/v2/export/controls/Table.js +16 -21
- package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
- package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
- package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
- package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
- package/dist/src/sync/v2/export/controls/index.d.ts +12 -8
- package/dist/src/sync/v2/export/controls/index.js +12 -8
- package/dist/src/sync/v2/export/controls/index.js.map +1 -1
- package/dist/src/sync/v2/export/export.js +134 -111
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/export/exportPage.js +3 -2
- package/dist/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/src/sync/v2/export/manifest.js +2 -5
- package/dist/src/sync/v2/export/manifest.js.map +1 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/export/pages/ListReport.d.ts +3 -2
- package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
- package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
- package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
- package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
- package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +16 -8
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
- package/dist/src/sync/v2/generate/listReport.js +25 -6
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts +1 -6
- package/dist/src/sync/v2/generate/objectPage.js +208 -126
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +16 -12
- package/dist/src/sync/v2/generate/utils.js +235 -98
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.d.ts +29 -4
- package/dist/src/sync/v2/import/common/index.js +330 -56
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/controls/table.js +3 -2
- package/dist/src/sync/v2/import/controls/table.js.map +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +27 -5
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
- package/dist/src/sync/v2/import/pages/listReport.js +21 -100
- package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +443 -303
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/import/utils.d.ts +4 -6
- package/dist/src/sync/v2/import/utils.js +32 -11
- package/dist/src/sync/v2/import/utils.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +28 -2
- package/dist/src/sync/v2/types.js +14 -0
- package/dist/src/sync/v2/types.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTable.d.ts +2 -8
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js +3 -68
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +4 -7
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +3 -33
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/Table.d.ts +1 -8
- package/dist/src/sync/v4/export/controls/Table.js +2 -75
- package/dist/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v4/export/controls/TableColumn.d.ts +3 -6
- package/dist/src/sync/v4/export/controls/TableColumn.js +3 -33
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
- package/dist/src/sync/v4/export/controls/ToolBar.js +3 -0
- package/dist/src/sync/v4/export/controls/ToolBar.js.map +1 -1
- package/dist/src/sync/v4/export/export.js +36 -25
- package/dist/src/sync/v4/export/export.js.map +1 -1
- package/dist/src/sync/v4/export/manifest.js.map +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 +4 -0
- package/dist/src/sync/v4/generate/generate.d.ts +4 -2
- package/dist/src/sync/v4/generate/generate.js +15 -6
- package/dist/src/sync/v4/generate/generate.js.map +1 -1
- package/dist/src/sync/v4/generate/listReport.d.ts +9 -7
- package/dist/src/sync/v4/generate/listReport.js +93 -22
- package/dist/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.js +111 -81
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/app/appProvider.js +2 -2
- package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v4/import/pages/listReport.d.ts +4 -6
- package/dist/src/sync/v4/import/pages/listReport.js +57 -36
- package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/objectPage.js +21 -18
- package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/utils.js +6 -5
- package/dist/src/sync/v4/import/utils.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +15 -2
- package/dist/src/sync/v4/utils/utils.js +65 -26
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/test/unit/utils.test.d.ts +1 -1
- package/package.json +13 -11
- package/dist/src/specification/v2/controls/FormAction.d.ts +0 -43
- package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
- package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +0 -27
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +0 -1
- package/dist/test/test-utils/metadataParser.d.ts +0 -19
|
@@ -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,
|
|
@@ -86,11 +89,6 @@
|
|
|
86
89
|
"type": "boolean",
|
|
87
90
|
"artifactType": "Manifest"
|
|
88
91
|
},
|
|
89
|
-
"filterDefaultsFromSelectionVariant": {
|
|
90
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
91
|
-
"type": "boolean",
|
|
92
|
-
"artifactType": "Manifest"
|
|
93
|
-
},
|
|
94
92
|
"allFiltersAsInParameters": {
|
|
95
93
|
"description": "All filter fields will be set as in parameter",
|
|
96
94
|
"type": "boolean",
|
|
@@ -128,6 +126,12 @@
|
|
|
128
126
|
"artifactType": "FlexChange",
|
|
129
127
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
130
128
|
},
|
|
129
|
+
"exportType": {
|
|
130
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
131
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
132
|
+
"artifactType": "FlexChange",
|
|
133
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
134
|
+
},
|
|
131
135
|
"fitContainer": {
|
|
132
136
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
133
137
|
"type": "boolean",
|
|
@@ -217,6 +221,9 @@
|
|
|
217
221
|
"path"
|
|
218
222
|
]
|
|
219
223
|
},
|
|
224
|
+
"sap.ui.comp.smarttable.ExportType": {
|
|
225
|
+
"description": "Provides the type of services available for export in the `SmartTable` control."
|
|
226
|
+
},
|
|
220
227
|
"QuickVariantSelection": {
|
|
221
228
|
"type": "object",
|
|
222
229
|
"properties": {
|
|
@@ -384,28 +391,29 @@
|
|
|
384
391
|
"isViewNode": true,
|
|
385
392
|
"type": "object",
|
|
386
393
|
"additionalProperties": {
|
|
387
|
-
"$ref": "#/definitions/
|
|
394
|
+
"$ref": "#/definitions/Action"
|
|
388
395
|
}
|
|
389
396
|
},
|
|
390
|
-
"
|
|
397
|
+
"Action": {
|
|
391
398
|
"description": "Action",
|
|
392
399
|
"isViewNode": true,
|
|
393
400
|
"type": "object",
|
|
394
401
|
"properties": {
|
|
395
402
|
"tooltip": {
|
|
396
|
-
"description": "
|
|
403
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
404
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
397
405
|
"type": "string",
|
|
398
406
|
"artifactType": "FlexChange",
|
|
399
407
|
"controlType": "sap.m.Button"
|
|
400
408
|
},
|
|
401
409
|
"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.",
|
|
410
|
+
"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
411
|
"type": "string",
|
|
404
412
|
"artifactType": "FlexChange",
|
|
405
413
|
"controlType": "sap.m.Button"
|
|
406
414
|
},
|
|
407
415
|
"activeIcon": {
|
|
408
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
416
|
+
"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
417
|
"type": "string",
|
|
410
418
|
"artifactType": "FlexChange",
|
|
411
419
|
"controlType": "sap.m.Button"
|
|
@@ -415,25 +423,6 @@
|
|
|
415
423
|
"description": "Defines the Button type.",
|
|
416
424
|
"artifactType": "FlexChange",
|
|
417
425
|
"controlType": "sap.m.Button"
|
|
418
|
-
},
|
|
419
|
-
"visible": {
|
|
420
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
421
|
-
"anyOf": [
|
|
422
|
-
{
|
|
423
|
-
"enum": [
|
|
424
|
-
false,
|
|
425
|
-
true,
|
|
426
|
-
"{ui>/editable}",
|
|
427
|
-
"{= !${ui>/editable}}"
|
|
428
|
-
]
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
"type": "string"
|
|
432
|
-
}
|
|
433
|
-
],
|
|
434
|
-
"description": "Whether the button should be visible on the screen.",
|
|
435
|
-
"artifactType": "FlexChange",
|
|
436
|
-
"controlType": "sap.m.Button"
|
|
437
426
|
}
|
|
438
427
|
},
|
|
439
428
|
"additionalProperties": false
|
|
@@ -464,6 +453,9 @@
|
|
|
464
453
|
{
|
|
465
454
|
"$ref": "#/definitions/TableColumn"
|
|
466
455
|
},
|
|
456
|
+
{
|
|
457
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
458
|
+
},
|
|
467
459
|
{
|
|
468
460
|
"description": "Custom Columns",
|
|
469
461
|
"isViewNode": true,
|
|
@@ -514,6 +506,59 @@
|
|
|
514
506
|
],
|
|
515
507
|
"type": "string"
|
|
516
508
|
},
|
|
509
|
+
"TableColumnAction": {
|
|
510
|
+
"description": "Column Action",
|
|
511
|
+
"isViewNode": true,
|
|
512
|
+
"type": "object",
|
|
513
|
+
"properties": {
|
|
514
|
+
"tooltip": {
|
|
515
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
516
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
517
|
+
"type": "string",
|
|
518
|
+
"artifactType": "FlexChange",
|
|
519
|
+
"controlType": "sap.m.Button"
|
|
520
|
+
},
|
|
521
|
+
"icon": {
|
|
522
|
+
"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.",
|
|
523
|
+
"type": "string",
|
|
524
|
+
"artifactType": "FlexChange",
|
|
525
|
+
"controlType": "sap.m.Button"
|
|
526
|
+
},
|
|
527
|
+
"activeIcon": {
|
|
528
|
+
"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.",
|
|
529
|
+
"type": "string",
|
|
530
|
+
"artifactType": "FlexChange",
|
|
531
|
+
"controlType": "sap.m.Button"
|
|
532
|
+
},
|
|
533
|
+
"type": {
|
|
534
|
+
"$ref": "#/definitions/ButtonType",
|
|
535
|
+
"description": "Defines the Button type.",
|
|
536
|
+
"artifactType": "FlexChange",
|
|
537
|
+
"controlType": "sap.m.Button"
|
|
538
|
+
},
|
|
539
|
+
"width": {
|
|
540
|
+
"description": "The width property defines the width of the column.",
|
|
541
|
+
"type": "string",
|
|
542
|
+
"artifactType": "FlexChange",
|
|
543
|
+
"controlType": "sap.m.Column"
|
|
544
|
+
},
|
|
545
|
+
"hAlign": {
|
|
546
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
547
|
+
"anyOf": [
|
|
548
|
+
{
|
|
549
|
+
"$ref": "#/definitions/HAlign"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "string"
|
|
553
|
+
}
|
|
554
|
+
],
|
|
555
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
556
|
+
"artifactType": "FlexChange",
|
|
557
|
+
"controlType": "sap.m.Column"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"additionalProperties": false
|
|
561
|
+
},
|
|
517
562
|
"TableCustomColumn": {
|
|
518
563
|
"description": "Custom Column",
|
|
519
564
|
"isViewNode": true,
|
|
@@ -524,7 +569,7 @@
|
|
|
524
569
|
"type": "string"
|
|
525
570
|
},
|
|
526
571
|
"text": {
|
|
527
|
-
"description": "The label of the custom column,
|
|
572
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
528
573
|
"i18nClassification": "COL: Custom column header text",
|
|
529
574
|
"type": "string"
|
|
530
575
|
},
|
|
@@ -621,11 +666,6 @@
|
|
|
621
666
|
"type": "boolean",
|
|
622
667
|
"artifactType": "Manifest"
|
|
623
668
|
},
|
|
624
|
-
"filterDefaultsFromSelectionVariant": {
|
|
625
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
626
|
-
"type": "boolean",
|
|
627
|
-
"artifactType": "Manifest"
|
|
628
|
-
},
|
|
629
669
|
"allFiltersAsInParameters": {
|
|
630
670
|
"description": "All filter fields will be set as in parameter",
|
|
631
671
|
"type": "boolean",
|
|
@@ -663,6 +703,12 @@
|
|
|
663
703
|
"artifactType": "FlexChange",
|
|
664
704
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
665
705
|
},
|
|
706
|
+
"exportType": {
|
|
707
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
708
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
709
|
+
"artifactType": "FlexChange",
|
|
710
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
711
|
+
},
|
|
666
712
|
"fitContainer": {
|
|
667
713
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
668
714
|
"type": "boolean",
|
|
@@ -745,11 +791,6 @@
|
|
|
745
791
|
"type": "boolean",
|
|
746
792
|
"artifactType": "Manifest"
|
|
747
793
|
},
|
|
748
|
-
"filterDefaultsFromSelectionVariant": {
|
|
749
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
750
|
-
"type": "boolean",
|
|
751
|
-
"artifactType": "Manifest"
|
|
752
|
-
},
|
|
753
794
|
"allFiltersAsInParameters": {
|
|
754
795
|
"description": "All filter fields will be set as in parameter",
|
|
755
796
|
"type": "boolean",
|
|
@@ -787,6 +828,12 @@
|
|
|
787
828
|
"artifactType": "FlexChange",
|
|
788
829
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
789
830
|
},
|
|
831
|
+
"exportType": {
|
|
832
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
833
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
834
|
+
"artifactType": "FlexChange",
|
|
835
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
836
|
+
},
|
|
790
837
|
"fitContainer": {
|
|
791
838
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
792
839
|
"type": "boolean",
|
|
@@ -839,6 +886,11 @@
|
|
|
839
886
|
"type": "boolean",
|
|
840
887
|
"artifactType": "Manifest"
|
|
841
888
|
},
|
|
889
|
+
"filterDefaultsFromSelectionVariant": {
|
|
890
|
+
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
891
|
+
"type": "boolean",
|
|
892
|
+
"artifactType": "Manifest"
|
|
893
|
+
},
|
|
842
894
|
"smartVariantManagement": {
|
|
843
895
|
"description": "Controls whether smart variant management is active. Default is true.",
|
|
844
896
|
"type": "boolean",
|
|
@@ -1282,6 +1334,17 @@
|
|
|
1282
1334
|
},
|
|
1283
1335
|
"additionalProperties": false
|
|
1284
1336
|
},
|
|
1337
|
+
"GenericFooter": {
|
|
1338
|
+
"description": "Footer",
|
|
1339
|
+
"isViewNode": true,
|
|
1340
|
+
"type": "object",
|
|
1341
|
+
"properties": {
|
|
1342
|
+
"actions": {
|
|
1343
|
+
"$ref": "#/definitions/Actions"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"additionalProperties": false
|
|
1347
|
+
},
|
|
1285
1348
|
"KPISettings": {
|
|
1286
1349
|
"description": "KPI Settings",
|
|
1287
1350
|
"isViewNode": true,
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
]
|
|
28
28
|
},
|
|
29
29
|
"filterBar": {
|
|
30
|
-
"$ref": "#/definitions/
|
|
30
|
+
"$ref": "#/definitions/ListReportFilterBar"
|
|
31
|
+
},
|
|
32
|
+
"footer": {
|
|
33
|
+
"$ref": "#/definitions/GenericFooter"
|
|
31
34
|
},
|
|
32
35
|
"$schema": {
|
|
33
36
|
"type": "string"
|
|
@@ -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,9 @@
|
|
|
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
|
+
},
|
|
219
231
|
"QuickVariantSelection": {
|
|
220
232
|
"type": "object",
|
|
221
233
|
"properties": {
|
|
@@ -383,28 +395,29 @@
|
|
|
383
395
|
"isViewNode": true,
|
|
384
396
|
"type": "object",
|
|
385
397
|
"additionalProperties": {
|
|
386
|
-
"$ref": "#/definitions/
|
|
398
|
+
"$ref": "#/definitions/Action"
|
|
387
399
|
}
|
|
388
400
|
},
|
|
389
|
-
"
|
|
401
|
+
"Action": {
|
|
390
402
|
"description": "Action",
|
|
391
403
|
"isViewNode": true,
|
|
392
404
|
"type": "object",
|
|
393
405
|
"properties": {
|
|
394
406
|
"tooltip": {
|
|
395
|
-
"description": "
|
|
407
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
408
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
396
409
|
"type": "string",
|
|
397
410
|
"artifactType": "FlexChange",
|
|
398
411
|
"controlType": "sap.m.Button"
|
|
399
412
|
},
|
|
400
413
|
"icon": {
|
|
401
|
-
"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.",
|
|
414
|
+
"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.",
|
|
402
415
|
"type": "string",
|
|
403
416
|
"artifactType": "FlexChange",
|
|
404
417
|
"controlType": "sap.m.Button"
|
|
405
418
|
},
|
|
406
419
|
"activeIcon": {
|
|
407
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
420
|
+
"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.",
|
|
408
421
|
"type": "string",
|
|
409
422
|
"artifactType": "FlexChange",
|
|
410
423
|
"controlType": "sap.m.Button"
|
|
@@ -414,25 +427,6 @@
|
|
|
414
427
|
"description": "Defines the Button type.",
|
|
415
428
|
"artifactType": "FlexChange",
|
|
416
429
|
"controlType": "sap.m.Button"
|
|
417
|
-
},
|
|
418
|
-
"visible": {
|
|
419
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
420
|
-
"anyOf": [
|
|
421
|
-
{
|
|
422
|
-
"enum": [
|
|
423
|
-
false,
|
|
424
|
-
true,
|
|
425
|
-
"{ui>/editable}",
|
|
426
|
-
"{= !${ui>/editable}}"
|
|
427
|
-
]
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"type": "string"
|
|
431
|
-
}
|
|
432
|
-
],
|
|
433
|
-
"description": "Whether the button should be visible on the screen.",
|
|
434
|
-
"artifactType": "FlexChange",
|
|
435
|
-
"controlType": "sap.m.Button"
|
|
436
430
|
}
|
|
437
431
|
},
|
|
438
432
|
"additionalProperties": false
|
|
@@ -463,6 +457,9 @@
|
|
|
463
457
|
{
|
|
464
458
|
"$ref": "#/definitions/TableColumn"
|
|
465
459
|
},
|
|
460
|
+
{
|
|
461
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
462
|
+
},
|
|
466
463
|
{
|
|
467
464
|
"description": "Custom Columns",
|
|
468
465
|
"isViewNode": true,
|
|
@@ -513,6 +510,59 @@
|
|
|
513
510
|
],
|
|
514
511
|
"type": "string"
|
|
515
512
|
},
|
|
513
|
+
"TableColumnAction": {
|
|
514
|
+
"description": "Column Action",
|
|
515
|
+
"isViewNode": true,
|
|
516
|
+
"type": "object",
|
|
517
|
+
"properties": {
|
|
518
|
+
"tooltip": {
|
|
519
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
520
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
521
|
+
"type": "string",
|
|
522
|
+
"artifactType": "FlexChange",
|
|
523
|
+
"controlType": "sap.m.Button"
|
|
524
|
+
},
|
|
525
|
+
"icon": {
|
|
526
|
+
"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.",
|
|
527
|
+
"type": "string",
|
|
528
|
+
"artifactType": "FlexChange",
|
|
529
|
+
"controlType": "sap.m.Button"
|
|
530
|
+
},
|
|
531
|
+
"activeIcon": {
|
|
532
|
+
"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.",
|
|
533
|
+
"type": "string",
|
|
534
|
+
"artifactType": "FlexChange",
|
|
535
|
+
"controlType": "sap.m.Button"
|
|
536
|
+
},
|
|
537
|
+
"type": {
|
|
538
|
+
"$ref": "#/definitions/ButtonType",
|
|
539
|
+
"description": "Defines the Button type.",
|
|
540
|
+
"artifactType": "FlexChange",
|
|
541
|
+
"controlType": "sap.m.Button"
|
|
542
|
+
},
|
|
543
|
+
"width": {
|
|
544
|
+
"description": "The width property defines the width of the column.",
|
|
545
|
+
"type": "string",
|
|
546
|
+
"artifactType": "FlexChange",
|
|
547
|
+
"controlType": "sap.m.Column"
|
|
548
|
+
},
|
|
549
|
+
"hAlign": {
|
|
550
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
551
|
+
"anyOf": [
|
|
552
|
+
{
|
|
553
|
+
"$ref": "#/definitions/HAlign"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"type": "string"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
560
|
+
"artifactType": "FlexChange",
|
|
561
|
+
"controlType": "sap.m.Column"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"additionalProperties": false
|
|
565
|
+
},
|
|
516
566
|
"TableCustomColumn": {
|
|
517
567
|
"description": "Custom Column",
|
|
518
568
|
"isViewNode": true,
|
|
@@ -523,7 +573,7 @@
|
|
|
523
573
|
"type": "string"
|
|
524
574
|
},
|
|
525
575
|
"text": {
|
|
526
|
-
"description": "The label of the custom column,
|
|
576
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
527
577
|
"i18nClassification": "COL: Custom column header text",
|
|
528
578
|
"type": "string"
|
|
529
579
|
},
|
|
@@ -662,6 +712,12 @@
|
|
|
662
712
|
"artifactType": "FlexChange",
|
|
663
713
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
664
714
|
},
|
|
715
|
+
"exportType": {
|
|
716
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
717
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
718
|
+
"artifactType": "FlexChange",
|
|
719
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
720
|
+
},
|
|
665
721
|
"fitContainer": {
|
|
666
722
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
667
723
|
"type": "boolean",
|
|
@@ -755,6 +811,12 @@
|
|
|
755
811
|
"artifactType": "FlexChange",
|
|
756
812
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
757
813
|
},
|
|
814
|
+
"exportType": {
|
|
815
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
816
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
817
|
+
"artifactType": "FlexChange",
|
|
818
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
819
|
+
},
|
|
758
820
|
"fitContainer": {
|
|
759
821
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
760
822
|
"type": "boolean",
|
|
@@ -832,11 +894,6 @@
|
|
|
832
894
|
"type": "string",
|
|
833
895
|
"artifactType": "Manifest"
|
|
834
896
|
},
|
|
835
|
-
"filterDefaultsFromSelectionVariant": {
|
|
836
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
837
|
-
"type": "boolean",
|
|
838
|
-
"artifactType": "Manifest"
|
|
839
|
-
},
|
|
840
897
|
"allFiltersAsInParameters": {
|
|
841
898
|
"description": "All filter fields will be set as in parameter",
|
|
842
899
|
"type": "boolean",
|
|
@@ -884,6 +941,12 @@
|
|
|
884
941
|
"artifactType": "FlexChange",
|
|
885
942
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
886
943
|
},
|
|
944
|
+
"exportType": {
|
|
945
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
946
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
947
|
+
"artifactType": "FlexChange",
|
|
948
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
949
|
+
},
|
|
887
950
|
"fitContainer": {
|
|
888
951
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
889
952
|
"type": "boolean",
|
|
@@ -997,6 +1060,12 @@
|
|
|
997
1060
|
"artifactType": "FlexChange",
|
|
998
1061
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
999
1062
|
},
|
|
1063
|
+
"exportType": {
|
|
1064
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1065
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1066
|
+
"artifactType": "FlexChange",
|
|
1067
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1068
|
+
},
|
|
1000
1069
|
"fitContainer": {
|
|
1001
1070
|
"description": "Set to false if the table does not occupy the entire space available in the container.",
|
|
1002
1071
|
"type": "boolean",
|
|
@@ -1039,7 +1108,7 @@
|
|
|
1039
1108
|
},
|
|
1040
1109
|
"additionalProperties": false
|
|
1041
1110
|
},
|
|
1042
|
-
"
|
|
1111
|
+
"ListReportFilterBar": {
|
|
1043
1112
|
"description": "Filter Bar",
|
|
1044
1113
|
"isViewNode": true,
|
|
1045
1114
|
"type": "object",
|
|
@@ -1414,6 +1483,17 @@
|
|
|
1414
1483
|
}
|
|
1415
1484
|
},
|
|
1416
1485
|
"additionalProperties": false
|
|
1486
|
+
},
|
|
1487
|
+
"GenericFooter": {
|
|
1488
|
+
"description": "Footer",
|
|
1489
|
+
"isViewNode": true,
|
|
1490
|
+
"type": "object",
|
|
1491
|
+
"properties": {
|
|
1492
|
+
"actions": {
|
|
1493
|
+
"$ref": "#/definitions/Actions"
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"additionalProperties": false
|
|
1417
1497
|
}
|
|
1418
1498
|
},
|
|
1419
1499
|
"$schema": "http://json-schema.org/draft-07/schema#"
|