@sap/ux-specification 1.142.0 → 1.142.2
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 +71 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ListReportNew.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +261 -262
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ApplicationV2.json +28 -3
- package/dist/schemas/v2/ListReportNewConfig.json +45 -0
- package/dist/schemas/v2/ObjectPageConfig.json +11 -5
- package/dist/schemas/v4/ApplicationV4.json +18 -12
- package/dist/schemas/v4/BuildingBlocksConfig.json +84 -41
- package/dist/schemas/v4/ListReportConfig.json +358 -52
- package/dist/schemas/v4/ObjectPageConfig.json +511 -196
- package/dist/specification/package.json +17 -17
- package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
- package/dist/specification/scripts/macros/corrections.js +17 -1
- package/dist/specification/scripts/macros/corrections.js.map +1 -1
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +10 -1
- package/dist/specification/scripts/macros/schema.js.map +1 -1
- package/dist/specification/scripts/macros/types.d.ts +1 -0
- package/dist/specification/scripts/macros/types.d.ts.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +23 -13
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +2 -1
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/sync/common/DataFieldStrategy.d.ts +38 -8
- package/dist/specification/src/sync/common/DataFieldStrategy.d.ts.map +1 -1
- package/dist/specification/src/sync/common/DataFieldStrategy.js +64 -11
- package/dist/specification/src/sync/common/DataFieldStrategy.js.map +1 -1
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts +0 -4
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +0 -3
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
- package/dist/specification/src/sync/common/appProvider.d.ts +0 -1
- package/dist/specification/src/sync/common/appProvider.d.ts.map +1 -1
- package/dist/specification/src/sync/common/appProvider.js +0 -1
- package/dist/specification/src/sync/common/appProvider.js.map +1 -1
- package/dist/specification/src/sync/common/generate/objectPage.d.ts +0 -1
- package/dist/specification/src/sync/common/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/common/generate/objectPage.js +0 -3
- package/dist/specification/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/common/generate/utils.d.ts +9 -2
- package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/generate/utils.js +30 -18
- package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
- package/dist/specification/src/sync/common/i18n.json +5 -3
- package/dist/specification/src/sync/common/import/utils.d.ts +0 -1
- package/dist/specification/src/sync/common/import/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/import/utils.js +0 -1
- package/dist/specification/src/sync/common/import/utils.js.map +1 -1
- package/dist/specification/src/sync/common/rules.js +0 -1
- package/dist/specification/src/sync/common/rules.js.map +1 -1
- package/dist/specification/src/sync/common/utils.d.ts +52 -2
- package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/utils.js +176 -5
- package/dist/specification/src/sync/common/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/application.d.ts +1 -0
- package/dist/specification/src/sync/v2/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/application.js +18 -0
- package/dist/specification/src/sync/v2/application.js.map +1 -1
- package/dist/specification/src/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.js +15 -4
- package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js +8 -15
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
- package/dist/specification/src/sync/v2/export/factory.d.ts +26 -0
- package/dist/specification/src/sync/v2/export/factory.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/factory.js +3 -3
- package/dist/specification/src/sync/v2/export/factory.js.map +1 -1
- package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts +1 -0
- package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/pages/ObjectPage.js +11 -0
- package/dist/specification/src/sync/v2/export/pages/ObjectPage.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/analyticalListReport.js +46 -0
- package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/listReport.js +46 -1
- package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/objectPage.js +63 -13
- package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +28 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts +22 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js +124 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +4 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/import/importPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/importPage.js +5 -6
- package/dist/specification/src/sync/v2/import/importPage.js.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js +4 -0
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +17 -1
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +57 -0
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/application.d.ts +1 -1
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +1 -1
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/actions.d.ts +39 -0
- package/dist/specification/src/sync/v4/export/actions.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/export/actions.js +99 -0
- package/dist/specification/src/sync/v4/export/actions.js.map +1 -0
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -2
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.js +14 -2
- package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +2 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +7 -2
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.d.ts +2 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageForm.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.d.ts +2 -6
- package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.js +2 -44
- package/dist/specification/src/sync/v4/export/controls/ObjectPageFormAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeader.d.ts +2 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeader.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeader.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.d.ts +14 -3
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.js +54 -11
- package/dist/specification/src/sync/v4/export/controls/ObjectPageHeaderAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +4 -0
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js +30 -0
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +15 -3
- package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.js +55 -12
- package/dist/specification/src/sync/v4/export/controls/ObjectPageToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +0 -3
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +0 -3
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts +7 -0
- package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/TableColumn.js +60 -0
- package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBar.d.ts +9 -2
- package/dist/specification/src/sync/v4/export/controls/ToolBar.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBar.js +39 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBar.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +17 -4
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +80 -23
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/export.d.ts +7 -0
- package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/export.js +100 -11
- package/dist/specification/src/sync/v4/export/export.js.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js +2 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
- package/dist/specification/src/sync/v4/export/types.d.ts +2 -0
- package/dist/specification/src/sync/v4/export/types.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts +107 -0
- package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/ListReportUtils.js +394 -0
- package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/actions.d.ts +35 -0
- package/dist/specification/src/sync/v4/generate/actions.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/actions.js +112 -0
- package/dist/specification/src/sync/v4/generate/actions.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +3 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +10 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js +3 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +9 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +2 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/listReport.d.ts +129 -4
- package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/listReport.js +170 -356
- package/dist/specification/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts +0 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +14 -20
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.js +16 -3
- package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/utils.d.ts +0 -1
- package/dist/specification/src/sync/v4/import/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/utils.js +0 -1
- package/dist/specification/src/sync/v4/import/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +2 -2
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/utils.js +2 -2
- package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts +105 -50
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +356 -117
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/types/src/apiTypes.d.ts +3 -2
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js +1 -0
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/types.d.ts +40 -1
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +39 -1
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/common/webapp/manifest/Manifest.d.ts +1 -1
- package/dist/types/src/common/webapp/manifest/Manifest.d.ts.map +1 -1
- package/dist/types/src/v2/application.d.ts +18 -0
- package/dist/types/src/v2/application.d.ts.map +1 -1
- package/dist/types/src/v2/controls/ObjectPageHeaderSection.d.ts.map +1 -1
- package/dist/types/src/v2/controls/ObjectPageTable.d.ts +4 -4
- package/dist/types/src/v2/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/types/src/v2/controls/Table.d.ts.map +1 -1
- package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts +10 -1
- package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts.map +1 -1
- package/dist/types/src/v4/application.d.ts +6 -6
- package/dist/types/src/v4/controls/Action.d.ts +3 -2
- package/dist/types/src/v4/controls/Action.d.ts.map +1 -1
- package/dist/types/src/v4/controls/CustomAction.d.ts +133 -19
- package/dist/types/src/v4/controls/CustomAction.d.ts.map +1 -1
- package/dist/types/src/v4/controls/CustomAction.js.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageForm.d.ts +2 -2
- package/dist/types/src/v4/controls/ObjectPageForm.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageHeader.d.ts +22 -3
- package/dist/types/src/v4/controls/ObjectPageHeader.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageHeaderSection.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageSection.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageToolBar.d.ts +2 -2
- package/dist/types/src/v4/controls/ObjectPageToolBar.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ToolBar.d.ts +10 -3
- package/dist/types/src/v4/controls/ToolBar.d.ts.map +1 -1
- package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts +59 -0
- package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts.map +1 -1
- package/dist/types/src/v4/webapp/manifest/ManifestSettings.js.map +1 -1
- package/package.json +17 -17
|
@@ -76,6 +76,9 @@
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
"$ref": "#/definitions/ObjectPageHeaderActionGroup"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"$ref": "#/definitions/ObjectPageHeaderCustomActionMenu"
|
|
79
82
|
}
|
|
80
83
|
]
|
|
81
84
|
}
|
|
@@ -85,17 +88,27 @@
|
|
|
85
88
|
"properties": {
|
|
86
89
|
"position": {
|
|
87
90
|
"$ref": "#/definitions/CustomHeaderActionPositionOP",
|
|
88
|
-
"description": "Defines the position of the action relative to the anchor action.",
|
|
91
|
+
"description": "Defines the position of the action relative to the anchor action or action menu.",
|
|
89
92
|
"artifactType": "Manifest"
|
|
90
93
|
},
|
|
91
|
-
"
|
|
92
|
-
"description": "
|
|
93
|
-
"i18nClassification": "COL: Custom action text",
|
|
94
|
+
"press": {
|
|
95
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
94
96
|
"artifactType": "Manifest",
|
|
95
97
|
"type": "string"
|
|
96
98
|
},
|
|
97
|
-
"
|
|
98
|
-
"description": "
|
|
99
|
+
"menu": {
|
|
100
|
+
"description": "List of action names from the manifest.",
|
|
101
|
+
"hidden": true,
|
|
102
|
+
"isViewNode": false,
|
|
103
|
+
"type": "array",
|
|
104
|
+
"items": {
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
"artifactType": "Manifest"
|
|
108
|
+
},
|
|
109
|
+
"text": {
|
|
110
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
111
|
+
"i18nClassification": "COL: Custom action text",
|
|
99
112
|
"artifactType": "Manifest",
|
|
100
113
|
"type": "string"
|
|
101
114
|
},
|
|
@@ -114,7 +127,7 @@
|
|
|
114
127
|
"type": "string"
|
|
115
128
|
}
|
|
116
129
|
],
|
|
117
|
-
"description": "
|
|
130
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
118
131
|
"artifactType": "Manifest"
|
|
119
132
|
},
|
|
120
133
|
"enabled": {
|
|
@@ -132,17 +145,17 @@
|
|
|
132
145
|
"type": "string"
|
|
133
146
|
}
|
|
134
147
|
],
|
|
135
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
148
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
136
149
|
"artifactType": "Manifest"
|
|
137
150
|
},
|
|
138
151
|
"overflowGroup": {
|
|
139
|
-
"description": "
|
|
152
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
140
153
|
"artifactType": "Manifest",
|
|
141
154
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
142
|
-
"type": "
|
|
155
|
+
"type": "integer"
|
|
143
156
|
},
|
|
144
157
|
"priority": {
|
|
145
|
-
"description": "
|
|
158
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
146
159
|
"artifactType": "Manifest",
|
|
147
160
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
148
161
|
"enum": [
|
|
@@ -164,13 +177,13 @@
|
|
|
164
177
|
"type": "object",
|
|
165
178
|
"properties": {
|
|
166
179
|
"anchor": {
|
|
167
|
-
"description": "The key of another action to be used as placement anchor.",
|
|
180
|
+
"description": "The key of another action or action menu to be used as a placement anchor.",
|
|
168
181
|
"artifactType": "Manifest",
|
|
169
182
|
"type": "string"
|
|
170
183
|
},
|
|
171
184
|
"placement": {
|
|
172
185
|
"$ref": "#/definitions/ActionPlacement",
|
|
173
|
-
"description": "
|
|
186
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
174
187
|
"artifactType": "Manifest"
|
|
175
188
|
}
|
|
176
189
|
},
|
|
@@ -195,13 +208,13 @@
|
|
|
195
208
|
"artifactType": "Manifest"
|
|
196
209
|
},
|
|
197
210
|
"overflowGroup": {
|
|
198
|
-
"description": "
|
|
211
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
199
212
|
"artifactType": "Manifest",
|
|
200
213
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
201
|
-
"type": "
|
|
214
|
+
"type": "integer"
|
|
202
215
|
},
|
|
203
216
|
"priority": {
|
|
204
|
-
"description": "
|
|
217
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
205
218
|
"artifactType": "Manifest",
|
|
206
219
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
207
220
|
"enum": [
|
|
@@ -242,7 +255,7 @@
|
|
|
242
255
|
},
|
|
243
256
|
"additionalSemanticObjects": {
|
|
244
257
|
"$ref": "#/definitions/AdditionalSemanticObjects",
|
|
245
|
-
"description": "Additional Semantic Objects
|
|
258
|
+
"description": "Additional Semantic Objects",
|
|
246
259
|
"artifactType": "Manifest"
|
|
247
260
|
}
|
|
248
261
|
},
|
|
@@ -319,13 +332,13 @@
|
|
|
319
332
|
},
|
|
320
333
|
"properties": {
|
|
321
334
|
"overflowGroup": {
|
|
322
|
-
"description": "
|
|
335
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
323
336
|
"artifactType": "Manifest",
|
|
324
337
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
325
|
-
"type": "
|
|
338
|
+
"type": "integer"
|
|
326
339
|
},
|
|
327
340
|
"priority": {
|
|
328
|
-
"description": "
|
|
341
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
329
342
|
"artifactType": "Manifest",
|
|
330
343
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
331
344
|
"enum": [
|
|
@@ -349,6 +362,123 @@
|
|
|
349
362
|
},
|
|
350
363
|
"additionalProperties": false
|
|
351
364
|
},
|
|
365
|
+
"ObjectPageHeaderCustomActionMenu": {
|
|
366
|
+
"isViewNode": true,
|
|
367
|
+
"type": "object",
|
|
368
|
+
"properties": {
|
|
369
|
+
"actions": {
|
|
370
|
+
"$ref": "#/definitions/ObjectPageHeaderCustomActionMenuActions",
|
|
371
|
+
"description": "List of actions.",
|
|
372
|
+
"artifactType": "Manifest"
|
|
373
|
+
},
|
|
374
|
+
"position": {
|
|
375
|
+
"$ref": "#/definitions/CustomHeaderActionPositionOP",
|
|
376
|
+
"description": "Defines the position of the action relative to other actions or action menus.",
|
|
377
|
+
"artifactType": "Manifest"
|
|
378
|
+
},
|
|
379
|
+
"menu": {
|
|
380
|
+
"description": "List of action names from the manifest.",
|
|
381
|
+
"hidden": true,
|
|
382
|
+
"isViewNode": false,
|
|
383
|
+
"type": "array",
|
|
384
|
+
"items": {
|
|
385
|
+
"type": "string"
|
|
386
|
+
},
|
|
387
|
+
"artifactType": "Manifest"
|
|
388
|
+
},
|
|
389
|
+
"defaultAction": {
|
|
390
|
+
"description": "The default action for a menu button.",
|
|
391
|
+
"isViewNode": false,
|
|
392
|
+
"type": "string",
|
|
393
|
+
"artifactType": "Manifest"
|
|
394
|
+
},
|
|
395
|
+
"text": {
|
|
396
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
397
|
+
"i18nClassification": "COL: Custom action text",
|
|
398
|
+
"artifactType": "Manifest",
|
|
399
|
+
"type": "string"
|
|
400
|
+
},
|
|
401
|
+
"visible": {
|
|
402
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
403
|
+
"anyOf": [
|
|
404
|
+
{
|
|
405
|
+
"enum": [
|
|
406
|
+
false,
|
|
407
|
+
true,
|
|
408
|
+
"{ui>/isEditable}",
|
|
409
|
+
"{= !${ui>/isEditable}}"
|
|
410
|
+
]
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"type": "string"
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
417
|
+
"artifactType": "Manifest"
|
|
418
|
+
},
|
|
419
|
+
"enabled": {
|
|
420
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
421
|
+
"anyOf": [
|
|
422
|
+
{
|
|
423
|
+
"enum": [
|
|
424
|
+
false,
|
|
425
|
+
true,
|
|
426
|
+
"{ui>/isEditable}",
|
|
427
|
+
"{= !${ui>/isEditable}}"
|
|
428
|
+
]
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"type": "string"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
435
|
+
"artifactType": "Manifest"
|
|
436
|
+
},
|
|
437
|
+
"overflowGroup": {
|
|
438
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
439
|
+
"artifactType": "Manifest",
|
|
440
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
441
|
+
"type": "integer"
|
|
442
|
+
},
|
|
443
|
+
"priority": {
|
|
444
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
445
|
+
"artifactType": "Manifest",
|
|
446
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
447
|
+
"enum": [
|
|
448
|
+
"AlwaysOverflow",
|
|
449
|
+
"High",
|
|
450
|
+
"Low",
|
|
451
|
+
"NeverOverflow"
|
|
452
|
+
],
|
|
453
|
+
"type": "string"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"additionalProperties": false,
|
|
457
|
+
"required": [
|
|
458
|
+
"menu",
|
|
459
|
+
"text"
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
"ObjectPageHeaderCustomActionMenuActions": {
|
|
463
|
+
"isViewNode": false,
|
|
464
|
+
"type": "object",
|
|
465
|
+
"additionalProperties": {
|
|
466
|
+
"anyOf": [
|
|
467
|
+
{
|
|
468
|
+
"$ref": "#/definitions/CustomHeaderActionOP"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"$ref": "#/definitions/ObjectPageHeaderAction"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"$ref": "#/definitions/RelatedApps"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"$ref": "#/definitions/ObjectPageHeaderActionGroup"
|
|
478
|
+
}
|
|
479
|
+
]
|
|
480
|
+
}
|
|
481
|
+
},
|
|
352
482
|
"HeaderSections": {
|
|
353
483
|
"description": "Header Sections",
|
|
354
484
|
"isViewNode": true,
|
|
@@ -846,6 +976,9 @@
|
|
|
846
976
|
},
|
|
847
977
|
{
|
|
848
978
|
"$ref": "#/definitions/ObjectPageToolBarActionGroup"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"$ref": "#/definitions/ObjectPageCustomActionMenu"
|
|
849
982
|
}
|
|
850
983
|
]
|
|
851
984
|
}
|
|
@@ -861,13 +994,13 @@
|
|
|
861
994
|
"artifactType": "Manifest"
|
|
862
995
|
},
|
|
863
996
|
"overflowGroup": {
|
|
864
|
-
"description": "
|
|
997
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
865
998
|
"artifactType": "Manifest",
|
|
866
999
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
867
|
-
"type": "
|
|
1000
|
+
"type": "integer"
|
|
868
1001
|
},
|
|
869
1002
|
"priority": {
|
|
870
|
-
"description": "
|
|
1003
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
871
1004
|
"artifactType": "Manifest",
|
|
872
1005
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
873
1006
|
"enum": [
|
|
@@ -901,14 +1034,24 @@
|
|
|
901
1034
|
"artifactType": "Manifest",
|
|
902
1035
|
"type": "boolean"
|
|
903
1036
|
},
|
|
904
|
-
"
|
|
905
|
-
"description": "
|
|
906
|
-
"i18nClassification": "COL: Custom action text",
|
|
1037
|
+
"press": {
|
|
1038
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
907
1039
|
"artifactType": "Manifest",
|
|
908
1040
|
"type": "string"
|
|
909
1041
|
},
|
|
910
|
-
"
|
|
911
|
-
"description": "
|
|
1042
|
+
"menu": {
|
|
1043
|
+
"description": "List of action names from the manifest.",
|
|
1044
|
+
"hidden": true,
|
|
1045
|
+
"isViewNode": false,
|
|
1046
|
+
"type": "array",
|
|
1047
|
+
"items": {
|
|
1048
|
+
"type": "string"
|
|
1049
|
+
},
|
|
1050
|
+
"artifactType": "Manifest"
|
|
1051
|
+
},
|
|
1052
|
+
"text": {
|
|
1053
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
1054
|
+
"i18nClassification": "COL: Custom action text",
|
|
912
1055
|
"artifactType": "Manifest",
|
|
913
1056
|
"type": "string"
|
|
914
1057
|
},
|
|
@@ -927,7 +1070,7 @@
|
|
|
927
1070
|
"type": "string"
|
|
928
1071
|
}
|
|
929
1072
|
],
|
|
930
|
-
"description": "
|
|
1073
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
931
1074
|
"artifactType": "Manifest"
|
|
932
1075
|
},
|
|
933
1076
|
"enabled": {
|
|
@@ -945,17 +1088,17 @@
|
|
|
945
1088
|
"type": "string"
|
|
946
1089
|
}
|
|
947
1090
|
],
|
|
948
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
1091
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
949
1092
|
"artifactType": "Manifest"
|
|
950
1093
|
},
|
|
951
1094
|
"overflowGroup": {
|
|
952
|
-
"description": "
|
|
1095
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
953
1096
|
"artifactType": "Manifest",
|
|
954
1097
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
955
|
-
"type": "
|
|
1098
|
+
"type": "integer"
|
|
956
1099
|
},
|
|
957
1100
|
"priority": {
|
|
958
|
-
"description": "
|
|
1101
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
959
1102
|
"artifactType": "Manifest",
|
|
960
1103
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
961
1104
|
"enum": [
|
|
@@ -977,13 +1120,13 @@
|
|
|
977
1120
|
"type": "object",
|
|
978
1121
|
"properties": {
|
|
979
1122
|
"anchor": {
|
|
980
|
-
"description": "The key of another action to be used as placement anchor.",
|
|
1123
|
+
"description": "The key of another action or action menu to be used as a placement anchor.",
|
|
981
1124
|
"artifactType": "Manifest",
|
|
982
1125
|
"type": "string"
|
|
983
1126
|
},
|
|
984
1127
|
"placement": {
|
|
985
1128
|
"$ref": "#/definitions/ActionPlacement",
|
|
986
|
-
"description": "
|
|
1129
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
987
1130
|
"artifactType": "Manifest"
|
|
988
1131
|
}
|
|
989
1132
|
},
|
|
@@ -1015,13 +1158,13 @@
|
|
|
1015
1158
|
},
|
|
1016
1159
|
"properties": {
|
|
1017
1160
|
"overflowGroup": {
|
|
1018
|
-
"description": "
|
|
1161
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
1019
1162
|
"artifactType": "Manifest",
|
|
1020
1163
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1021
|
-
"type": "
|
|
1164
|
+
"type": "integer"
|
|
1022
1165
|
},
|
|
1023
1166
|
"priority": {
|
|
1024
|
-
"description": "
|
|
1167
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
1025
1168
|
"artifactType": "Manifest",
|
|
1026
1169
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1027
1170
|
"enum": [
|
|
@@ -1045,6 +1188,259 @@
|
|
|
1045
1188
|
},
|
|
1046
1189
|
"additionalProperties": false
|
|
1047
1190
|
},
|
|
1191
|
+
"ObjectPageCustomActionMenu": {
|
|
1192
|
+
"isViewNode": true,
|
|
1193
|
+
"type": "object",
|
|
1194
|
+
"properties": {
|
|
1195
|
+
"actions": {
|
|
1196
|
+
"$ref": "#/definitions/ObjectPageCustomActionMenuActions",
|
|
1197
|
+
"description": "List of actions.",
|
|
1198
|
+
"artifactType": "Manifest"
|
|
1199
|
+
},
|
|
1200
|
+
"menu": {
|
|
1201
|
+
"description": "List of action names from the manifest.",
|
|
1202
|
+
"hidden": true,
|
|
1203
|
+
"isViewNode": false,
|
|
1204
|
+
"type": "array",
|
|
1205
|
+
"items": {
|
|
1206
|
+
"type": "string"
|
|
1207
|
+
},
|
|
1208
|
+
"artifactType": "Manifest"
|
|
1209
|
+
},
|
|
1210
|
+
"defaultAction": {
|
|
1211
|
+
"description": "The default action for a menu button.",
|
|
1212
|
+
"isViewNode": false,
|
|
1213
|
+
"type": "string",
|
|
1214
|
+
"artifactType": "Manifest"
|
|
1215
|
+
},
|
|
1216
|
+
"position": {
|
|
1217
|
+
"$ref": "#/definitions/CustomActionPositionOP",
|
|
1218
|
+
"description": "Defines the position of the action relative to other actions or action menus.",
|
|
1219
|
+
"artifactType": "Manifest"
|
|
1220
|
+
},
|
|
1221
|
+
"text": {
|
|
1222
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
1223
|
+
"i18nClassification": "COL: Custom action text",
|
|
1224
|
+
"artifactType": "Manifest",
|
|
1225
|
+
"type": "string"
|
|
1226
|
+
},
|
|
1227
|
+
"visible": {
|
|
1228
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
1229
|
+
"anyOf": [
|
|
1230
|
+
{
|
|
1231
|
+
"enum": [
|
|
1232
|
+
false,
|
|
1233
|
+
true,
|
|
1234
|
+
"{ui>/isEditable}",
|
|
1235
|
+
"{= !${ui>/isEditable}}"
|
|
1236
|
+
]
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"type": "string"
|
|
1240
|
+
}
|
|
1241
|
+
],
|
|
1242
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
1243
|
+
"artifactType": "Manifest"
|
|
1244
|
+
},
|
|
1245
|
+
"enabled": {
|
|
1246
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
1247
|
+
"anyOf": [
|
|
1248
|
+
{
|
|
1249
|
+
"enum": [
|
|
1250
|
+
false,
|
|
1251
|
+
true,
|
|
1252
|
+
"{ui>/isEditable}",
|
|
1253
|
+
"{= !${ui>/isEditable}}"
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"type": "string"
|
|
1258
|
+
}
|
|
1259
|
+
],
|
|
1260
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
1261
|
+
"artifactType": "Manifest"
|
|
1262
|
+
},
|
|
1263
|
+
"overflowGroup": {
|
|
1264
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
1265
|
+
"artifactType": "Manifest",
|
|
1266
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1267
|
+
"type": "integer"
|
|
1268
|
+
},
|
|
1269
|
+
"priority": {
|
|
1270
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
1271
|
+
"artifactType": "Manifest",
|
|
1272
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1273
|
+
"enum": [
|
|
1274
|
+
"AlwaysOverflow",
|
|
1275
|
+
"High",
|
|
1276
|
+
"Low",
|
|
1277
|
+
"NeverOverflow"
|
|
1278
|
+
],
|
|
1279
|
+
"type": "string"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
"additionalProperties": false,
|
|
1283
|
+
"required": [
|
|
1284
|
+
"menu",
|
|
1285
|
+
"text"
|
|
1286
|
+
]
|
|
1287
|
+
},
|
|
1288
|
+
"ObjectPageCustomActionMenuActions": {
|
|
1289
|
+
"isViewNode": false,
|
|
1290
|
+
"type": "object",
|
|
1291
|
+
"additionalProperties": {
|
|
1292
|
+
"anyOf": [
|
|
1293
|
+
{
|
|
1294
|
+
"$ref": "#/definitions/ObjectPageToolBarAction"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"$ref": "#/definitions/CustomTableActionOP"
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"$ref": "#/definitions/CustomFormActionOP"
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"$ref": "#/definitions/FormAction"
|
|
1304
|
+
}
|
|
1305
|
+
]
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
"CustomFormActionOP": {
|
|
1309
|
+
"type": "object",
|
|
1310
|
+
"properties": {
|
|
1311
|
+
"position": {
|
|
1312
|
+
"$ref": "#/definitions/CustomActionPositionOP",
|
|
1313
|
+
"description": "Defines the position of the action relative to the anchor action or action menu.",
|
|
1314
|
+
"artifactType": "Manifest"
|
|
1315
|
+
},
|
|
1316
|
+
"press": {
|
|
1317
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
1318
|
+
"artifactType": "Manifest",
|
|
1319
|
+
"type": "string"
|
|
1320
|
+
},
|
|
1321
|
+
"menu": {
|
|
1322
|
+
"description": "List of action names from the manifest.",
|
|
1323
|
+
"hidden": true,
|
|
1324
|
+
"isViewNode": false,
|
|
1325
|
+
"type": "array",
|
|
1326
|
+
"items": {
|
|
1327
|
+
"type": "string"
|
|
1328
|
+
},
|
|
1329
|
+
"artifactType": "Manifest"
|
|
1330
|
+
},
|
|
1331
|
+
"text": {
|
|
1332
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
1333
|
+
"i18nClassification": "COL: Custom action text",
|
|
1334
|
+
"artifactType": "Manifest",
|
|
1335
|
+
"type": "string"
|
|
1336
|
+
},
|
|
1337
|
+
"visible": {
|
|
1338
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
1339
|
+
"anyOf": [
|
|
1340
|
+
{
|
|
1341
|
+
"enum": [
|
|
1342
|
+
false,
|
|
1343
|
+
true,
|
|
1344
|
+
"{ui>/isEditable}",
|
|
1345
|
+
"{= !${ui>/isEditable}}"
|
|
1346
|
+
]
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"type": "string"
|
|
1350
|
+
}
|
|
1351
|
+
],
|
|
1352
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
1353
|
+
"artifactType": "Manifest"
|
|
1354
|
+
},
|
|
1355
|
+
"enabled": {
|
|
1356
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
1357
|
+
"anyOf": [
|
|
1358
|
+
{
|
|
1359
|
+
"enum": [
|
|
1360
|
+
false,
|
|
1361
|
+
true,
|
|
1362
|
+
"{ui>/isEditable}",
|
|
1363
|
+
"{= !${ui>/isEditable}}"
|
|
1364
|
+
]
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"type": "string"
|
|
1368
|
+
}
|
|
1369
|
+
],
|
|
1370
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
1371
|
+
"artifactType": "Manifest"
|
|
1372
|
+
},
|
|
1373
|
+
"overflowGroup": {
|
|
1374
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
1375
|
+
"artifactType": "Manifest",
|
|
1376
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1377
|
+
"type": "integer"
|
|
1378
|
+
},
|
|
1379
|
+
"priority": {
|
|
1380
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
1381
|
+
"artifactType": "Manifest",
|
|
1382
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1383
|
+
"enum": [
|
|
1384
|
+
"AlwaysOverflow",
|
|
1385
|
+
"High",
|
|
1386
|
+
"Low",
|
|
1387
|
+
"NeverOverflow"
|
|
1388
|
+
],
|
|
1389
|
+
"type": "string"
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1392
|
+
"additionalProperties": false,
|
|
1393
|
+
"required": [
|
|
1394
|
+
"press",
|
|
1395
|
+
"text"
|
|
1396
|
+
]
|
|
1397
|
+
},
|
|
1398
|
+
"FormAction": {
|
|
1399
|
+
"type": "object",
|
|
1400
|
+
"properties": {
|
|
1401
|
+
"afterExecution": {
|
|
1402
|
+
"$ref": "#/definitions/ActionAfterExecutionConfigurationForm",
|
|
1403
|
+
"description": "Settings that control the behavior after creating a new entry.",
|
|
1404
|
+
"artifactType": "Manifest"
|
|
1405
|
+
},
|
|
1406
|
+
"overflowGroup": {
|
|
1407
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
1408
|
+
"artifactType": "Manifest",
|
|
1409
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1410
|
+
"type": "integer"
|
|
1411
|
+
},
|
|
1412
|
+
"priority": {
|
|
1413
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
1414
|
+
"artifactType": "Manifest",
|
|
1415
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1416
|
+
"enum": [
|
|
1417
|
+
"AlwaysOverflow",
|
|
1418
|
+
"High",
|
|
1419
|
+
"Low",
|
|
1420
|
+
"NeverOverflow"
|
|
1421
|
+
],
|
|
1422
|
+
"type": "string"
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"additionalProperties": false
|
|
1426
|
+
},
|
|
1427
|
+
"ActionAfterExecutionConfigurationForm": {
|
|
1428
|
+
"type": "object",
|
|
1429
|
+
"properties": {
|
|
1430
|
+
"navigateToInstance": {
|
|
1431
|
+
"description": "Allows you to disable the navigation. By default, navigation is automatically triggered after you have performed an action.",
|
|
1432
|
+
"type": "boolean",
|
|
1433
|
+
"artifactType": "Manifest",
|
|
1434
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/2c65f07f44094012a511d6bd83f50f2d"
|
|
1435
|
+
},
|
|
1436
|
+
"enableAutoScroll": {
|
|
1437
|
+
"description": "Allows you to scroll to the newly created or changed item after you have performed an action.",
|
|
1438
|
+
"type": "boolean",
|
|
1439
|
+
"artifactType": "Manifest"
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"additionalProperties": false
|
|
1443
|
+
},
|
|
1048
1444
|
"PersonalizationTypeOP": {
|
|
1049
1445
|
"type": "object",
|
|
1050
1446
|
"properties": {
|
|
@@ -1221,6 +1617,30 @@
|
|
|
1221
1617
|
"items": {
|
|
1222
1618
|
"type": "string"
|
|
1223
1619
|
}
|
|
1620
|
+
},
|
|
1621
|
+
"required": {
|
|
1622
|
+
"description": "Determines whether a custom column is required.\nIf set to true, an asterisk is displayed in the column header.",
|
|
1623
|
+
"artifactType": "Manifest",
|
|
1624
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
1625
|
+
"type": "boolean"
|
|
1626
|
+
},
|
|
1627
|
+
"importance": {
|
|
1628
|
+
"description": "The responsive table provides a feature where the table automatically moves columns to the pop-in area in the following order based on their importance:\n- Columns with \"Low\" importance are hidden first.\n- Columns with \"Medium\" importance are hidden next.\n- Columns with \"High\" importance are always displayed.",
|
|
1629
|
+
"artifactType": "Manifest",
|
|
1630
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
1631
|
+
"enum": [
|
|
1632
|
+
"High",
|
|
1633
|
+
"Low",
|
|
1634
|
+
"Medium"
|
|
1635
|
+
],
|
|
1636
|
+
"type": "string"
|
|
1637
|
+
},
|
|
1638
|
+
"tooltip": {
|
|
1639
|
+
"description": "The tooltip is shown on the header of a custom column when a user hovers over it.",
|
|
1640
|
+
"i18nClassification": "COL: Custom column tooltip text",
|
|
1641
|
+
"artifactType": "Manifest",
|
|
1642
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
1643
|
+
"type": "string"
|
|
1224
1644
|
}
|
|
1225
1645
|
},
|
|
1226
1646
|
"additionalProperties": false,
|
|
@@ -2052,6 +2472,9 @@
|
|
|
2052
2472
|
"type": "object",
|
|
2053
2473
|
"additionalProperties": {
|
|
2054
2474
|
"anyOf": [
|
|
2475
|
+
{
|
|
2476
|
+
"$ref": "#/definitions/ObjectPageCustomActionMenu"
|
|
2477
|
+
},
|
|
2055
2478
|
{
|
|
2056
2479
|
"$ref": "#/definitions/CustomFormActionOP"
|
|
2057
2480
|
},
|
|
@@ -2064,132 +2487,6 @@
|
|
|
2064
2487
|
]
|
|
2065
2488
|
}
|
|
2066
2489
|
},
|
|
2067
|
-
"CustomFormActionOP": {
|
|
2068
|
-
"type": "object",
|
|
2069
|
-
"properties": {
|
|
2070
|
-
"position": {
|
|
2071
|
-
"$ref": "#/definitions/CustomActionPositionOP",
|
|
2072
|
-
"description": "Defines the position of the action relative to the anchor action.",
|
|
2073
|
-
"artifactType": "Manifest"
|
|
2074
|
-
},
|
|
2075
|
-
"text": {
|
|
2076
|
-
"description": "The text that is displayed on the button (typically a binding to an i18n entry).",
|
|
2077
|
-
"i18nClassification": "COL: Custom action text",
|
|
2078
|
-
"artifactType": "Manifest",
|
|
2079
|
-
"type": "string"
|
|
2080
|
-
},
|
|
2081
|
-
"press": {
|
|
2082
|
-
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
2083
|
-
"artifactType": "Manifest",
|
|
2084
|
-
"type": "string"
|
|
2085
|
-
},
|
|
2086
|
-
"visible": {
|
|
2087
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
2088
|
-
"anyOf": [
|
|
2089
|
-
{
|
|
2090
|
-
"enum": [
|
|
2091
|
-
false,
|
|
2092
|
-
true,
|
|
2093
|
-
"{ui>/isEditable}",
|
|
2094
|
-
"{= !${ui>/isEditable}}"
|
|
2095
|
-
]
|
|
2096
|
-
},
|
|
2097
|
-
{
|
|
2098
|
-
"type": "string"
|
|
2099
|
-
}
|
|
2100
|
-
],
|
|
2101
|
-
"description": "Defines if the action button is visible.",
|
|
2102
|
-
"artifactType": "Manifest"
|
|
2103
|
-
},
|
|
2104
|
-
"enabled": {
|
|
2105
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
2106
|
-
"anyOf": [
|
|
2107
|
-
{
|
|
2108
|
-
"enum": [
|
|
2109
|
-
false,
|
|
2110
|
-
true,
|
|
2111
|
-
"{ui>/isEditable}",
|
|
2112
|
-
"{= !${ui>/isEditable}}"
|
|
2113
|
-
]
|
|
2114
|
-
},
|
|
2115
|
-
{
|
|
2116
|
-
"type": "string"
|
|
2117
|
-
}
|
|
2118
|
-
],
|
|
2119
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
2120
|
-
"artifactType": "Manifest"
|
|
2121
|
-
},
|
|
2122
|
-
"overflowGroup": {
|
|
2123
|
-
"description": "Defines a group of actions. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
2124
|
-
"artifactType": "Manifest",
|
|
2125
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2126
|
-
"type": "number"
|
|
2127
|
-
},
|
|
2128
|
-
"priority": {
|
|
2129
|
-
"description": "Defines the priority of the action. This determines ordering and whether the action is moved into overflow.",
|
|
2130
|
-
"artifactType": "Manifest",
|
|
2131
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2132
|
-
"enum": [
|
|
2133
|
-
"AlwaysOverflow",
|
|
2134
|
-
"High",
|
|
2135
|
-
"Low",
|
|
2136
|
-
"NeverOverflow"
|
|
2137
|
-
],
|
|
2138
|
-
"type": "string"
|
|
2139
|
-
}
|
|
2140
|
-
},
|
|
2141
|
-
"additionalProperties": false,
|
|
2142
|
-
"required": [
|
|
2143
|
-
"press",
|
|
2144
|
-
"text"
|
|
2145
|
-
]
|
|
2146
|
-
},
|
|
2147
|
-
"FormAction": {
|
|
2148
|
-
"type": "object",
|
|
2149
|
-
"properties": {
|
|
2150
|
-
"afterExecution": {
|
|
2151
|
-
"$ref": "#/definitions/ActionAfterExecutionConfigurationForm",
|
|
2152
|
-
"description": "Settings that control the behavior after creating a new entry.",
|
|
2153
|
-
"artifactType": "Manifest"
|
|
2154
|
-
},
|
|
2155
|
-
"overflowGroup": {
|
|
2156
|
-
"description": "Defines a group of actions. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
2157
|
-
"artifactType": "Manifest",
|
|
2158
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2159
|
-
"type": "number"
|
|
2160
|
-
},
|
|
2161
|
-
"priority": {
|
|
2162
|
-
"description": "Defines the priority of the action. This determines ordering and whether the action is moved into overflow.",
|
|
2163
|
-
"artifactType": "Manifest",
|
|
2164
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2165
|
-
"enum": [
|
|
2166
|
-
"AlwaysOverflow",
|
|
2167
|
-
"High",
|
|
2168
|
-
"Low",
|
|
2169
|
-
"NeverOverflow"
|
|
2170
|
-
],
|
|
2171
|
-
"type": "string"
|
|
2172
|
-
}
|
|
2173
|
-
},
|
|
2174
|
-
"additionalProperties": false
|
|
2175
|
-
},
|
|
2176
|
-
"ActionAfterExecutionConfigurationForm": {
|
|
2177
|
-
"type": "object",
|
|
2178
|
-
"properties": {
|
|
2179
|
-
"navigateToInstance": {
|
|
2180
|
-
"description": "Allows you to disable the navigation. By default, navigation is automatically triggered after you have performed an action.",
|
|
2181
|
-
"type": "boolean",
|
|
2182
|
-
"artifactType": "Manifest",
|
|
2183
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/2c65f07f44094012a511d6bd83f50f2d"
|
|
2184
|
-
},
|
|
2185
|
-
"enableAutoScroll": {
|
|
2186
|
-
"description": "Allows you to scroll to the newly created or changed item after you have performed an action.",
|
|
2187
|
-
"type": "boolean",
|
|
2188
|
-
"artifactType": "Manifest"
|
|
2189
|
-
}
|
|
2190
|
-
},
|
|
2191
|
-
"additionalProperties": false
|
|
2192
|
-
},
|
|
2193
2490
|
"ObjectPageFormActionGroup": {
|
|
2194
2491
|
"type": "object",
|
|
2195
2492
|
"additionalProperties": {
|
|
@@ -2213,13 +2510,13 @@
|
|
|
2213
2510
|
},
|
|
2214
2511
|
"properties": {
|
|
2215
2512
|
"overflowGroup": {
|
|
2216
|
-
"description": "
|
|
2513
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
2217
2514
|
"artifactType": "Manifest",
|
|
2218
2515
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2219
|
-
"type": "
|
|
2516
|
+
"type": "integer"
|
|
2220
2517
|
},
|
|
2221
2518
|
"priority": {
|
|
2222
|
-
"description": "
|
|
2519
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
2223
2520
|
"artifactType": "Manifest",
|
|
2224
2521
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2225
2522
|
"enum": [
|
|
@@ -2452,17 +2749,26 @@
|
|
|
2452
2749
|
"properties": {
|
|
2453
2750
|
"position": {
|
|
2454
2751
|
"$ref": "#/definitions/CustomSectionActionPositionOP",
|
|
2455
|
-
"description": "Defines the position of the action relative to the anchor action.",
|
|
2752
|
+
"description": "Defines the position of the action relative to the anchor action or action menu.",
|
|
2456
2753
|
"artifactType": "Manifest"
|
|
2457
2754
|
},
|
|
2458
|
-
"
|
|
2459
|
-
"description": "
|
|
2460
|
-
"i18nClassification": "COL: Custom action text",
|
|
2755
|
+
"press": {
|
|
2756
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
2461
2757
|
"artifactType": "Manifest",
|
|
2462
2758
|
"type": "string"
|
|
2463
2759
|
},
|
|
2464
|
-
"
|
|
2465
|
-
"description": "
|
|
2760
|
+
"menu": {
|
|
2761
|
+
"description": "List of action names from the manifest.",
|
|
2762
|
+
"hidden": true,
|
|
2763
|
+
"isViewNode": false,
|
|
2764
|
+
"type": "array",
|
|
2765
|
+
"items": {
|
|
2766
|
+
"type": "string"
|
|
2767
|
+
}
|
|
2768
|
+
},
|
|
2769
|
+
"text": {
|
|
2770
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
2771
|
+
"i18nClassification": "COL: Custom action text",
|
|
2466
2772
|
"artifactType": "Manifest",
|
|
2467
2773
|
"type": "string"
|
|
2468
2774
|
},
|
|
@@ -2481,7 +2787,7 @@
|
|
|
2481
2787
|
"type": "string"
|
|
2482
2788
|
}
|
|
2483
2789
|
],
|
|
2484
|
-
"description": "
|
|
2790
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
2485
2791
|
"artifactType": "Manifest"
|
|
2486
2792
|
},
|
|
2487
2793
|
"enabled": {
|
|
@@ -2499,17 +2805,17 @@
|
|
|
2499
2805
|
"type": "string"
|
|
2500
2806
|
}
|
|
2501
2807
|
],
|
|
2502
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
2808
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
2503
2809
|
"artifactType": "Manifest"
|
|
2504
2810
|
},
|
|
2505
2811
|
"overflowGroup": {
|
|
2506
|
-
"description": "
|
|
2812
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
2507
2813
|
"artifactType": "Manifest",
|
|
2508
2814
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2509
|
-
"type": "
|
|
2815
|
+
"type": "integer"
|
|
2510
2816
|
},
|
|
2511
2817
|
"priority": {
|
|
2512
|
-
"description": "
|
|
2818
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
2513
2819
|
"artifactType": "Manifest",
|
|
2514
2820
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2515
2821
|
"enum": [
|
|
@@ -2531,13 +2837,13 @@
|
|
|
2531
2837
|
"type": "object",
|
|
2532
2838
|
"properties": {
|
|
2533
2839
|
"anchor": {
|
|
2534
|
-
"description": "The key of another action to be used as placement anchor.",
|
|
2840
|
+
"description": "The key of another action or action menu to be used as a placement anchor.",
|
|
2535
2841
|
"artifactType": "Manifest",
|
|
2536
2842
|
"type": "string"
|
|
2537
2843
|
},
|
|
2538
2844
|
"placement": {
|
|
2539
2845
|
"$ref": "#/definitions/ActionPlacement",
|
|
2540
|
-
"description": "
|
|
2846
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
2541
2847
|
"artifactType": "Manifest"
|
|
2542
2848
|
}
|
|
2543
2849
|
},
|
|
@@ -2575,17 +2881,26 @@
|
|
|
2575
2881
|
"properties": {
|
|
2576
2882
|
"position": {
|
|
2577
2883
|
"$ref": "#/definitions/CustomFooterActionPositionOP",
|
|
2578
|
-
"description": "Defines the position of the action relative to the anchor action.",
|
|
2884
|
+
"description": "Defines the position of the action relative to the anchor action or action menu.",
|
|
2579
2885
|
"artifactType": "Manifest"
|
|
2580
2886
|
},
|
|
2581
|
-
"
|
|
2582
|
-
"description": "
|
|
2583
|
-
"i18nClassification": "COL: Custom action text",
|
|
2887
|
+
"press": {
|
|
2888
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
2584
2889
|
"artifactType": "Manifest",
|
|
2585
2890
|
"type": "string"
|
|
2586
2891
|
},
|
|
2587
|
-
"
|
|
2588
|
-
"description": "
|
|
2892
|
+
"menu": {
|
|
2893
|
+
"description": "List of action names from the manifest.",
|
|
2894
|
+
"hidden": true,
|
|
2895
|
+
"isViewNode": false,
|
|
2896
|
+
"type": "array",
|
|
2897
|
+
"items": {
|
|
2898
|
+
"type": "string"
|
|
2899
|
+
}
|
|
2900
|
+
},
|
|
2901
|
+
"text": {
|
|
2902
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
2903
|
+
"i18nClassification": "COL: Custom action text",
|
|
2589
2904
|
"artifactType": "Manifest",
|
|
2590
2905
|
"type": "string"
|
|
2591
2906
|
},
|
|
@@ -2604,7 +2919,7 @@
|
|
|
2604
2919
|
"type": "string"
|
|
2605
2920
|
}
|
|
2606
2921
|
],
|
|
2607
|
-
"description": "
|
|
2922
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
2608
2923
|
"artifactType": "Manifest"
|
|
2609
2924
|
},
|
|
2610
2925
|
"enabled": {
|
|
@@ -2622,17 +2937,17 @@
|
|
|
2622
2937
|
"type": "string"
|
|
2623
2938
|
}
|
|
2624
2939
|
],
|
|
2625
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
2940
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
2626
2941
|
"artifactType": "Manifest"
|
|
2627
2942
|
},
|
|
2628
2943
|
"overflowGroup": {
|
|
2629
|
-
"description": "
|
|
2944
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
2630
2945
|
"artifactType": "Manifest",
|
|
2631
2946
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2632
|
-
"type": "
|
|
2947
|
+
"type": "integer"
|
|
2633
2948
|
},
|
|
2634
2949
|
"priority": {
|
|
2635
|
-
"description": "
|
|
2950
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
2636
2951
|
"artifactType": "Manifest",
|
|
2637
2952
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2638
2953
|
"enum": [
|
|
@@ -2654,13 +2969,13 @@
|
|
|
2654
2969
|
"type": "object",
|
|
2655
2970
|
"properties": {
|
|
2656
2971
|
"anchor": {
|
|
2657
|
-
"description": "The key of another action to be used as placement anchor.",
|
|
2972
|
+
"description": "The key of another action or action menu to be used as a placement anchor.",
|
|
2658
2973
|
"artifactType": "Manifest",
|
|
2659
2974
|
"type": "string"
|
|
2660
2975
|
},
|
|
2661
2976
|
"placement": {
|
|
2662
2977
|
"$ref": "#/definitions/ActionPlacement",
|
|
2663
|
-
"description": "
|
|
2978
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
2664
2979
|
"artifactType": "Manifest"
|
|
2665
2980
|
}
|
|
2666
2981
|
},
|
|
@@ -2678,13 +2993,13 @@
|
|
|
2678
2993
|
"artifactType": "Manifest"
|
|
2679
2994
|
},
|
|
2680
2995
|
"overflowGroup": {
|
|
2681
|
-
"description": "
|
|
2996
|
+
"description": "Allows users to set the group for the action or action menu. When there's not enough space to display all grouped actions, they are moved together into overflow.",
|
|
2682
2997
|
"artifactType": "Manifest",
|
|
2683
2998
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2684
|
-
"type": "
|
|
2999
|
+
"type": "integer"
|
|
2685
3000
|
},
|
|
2686
3001
|
"priority": {
|
|
2687
|
-
"description": "
|
|
3002
|
+
"description": "Allows users to set the priority of the action or action menu. This determines ordering and whether the action or action menu is moved into overflow.",
|
|
2688
3003
|
"artifactType": "Manifest",
|
|
2689
3004
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
2690
3005
|
"enum": [
|