@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
|
@@ -77,17 +77,26 @@
|
|
|
77
77
|
"properties": {
|
|
78
78
|
"position": {
|
|
79
79
|
"$ref": "#/definitions/CustomHeaderActionPosition",
|
|
80
|
-
"description": "Defines the position of the action relative to other actions.",
|
|
80
|
+
"description": "Defines the position of the action relative to other actions or action menus.",
|
|
81
81
|
"artifactType": "Manifest"
|
|
82
82
|
},
|
|
83
|
-
"
|
|
84
|
-
"description": "
|
|
85
|
-
"i18nClassification": "COL: Custom action text",
|
|
83
|
+
"press": {
|
|
84
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
86
85
|
"artifactType": "Manifest",
|
|
87
86
|
"type": "string"
|
|
88
87
|
},
|
|
89
|
-
"
|
|
90
|
-
"description": "
|
|
88
|
+
"menu": {
|
|
89
|
+
"description": "List of action names from the manifest.",
|
|
90
|
+
"hidden": true,
|
|
91
|
+
"isViewNode": false,
|
|
92
|
+
"type": "array",
|
|
93
|
+
"items": {
|
|
94
|
+
"type": "string"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"text": {
|
|
98
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
99
|
+
"i18nClassification": "COL: Custom action text",
|
|
91
100
|
"artifactType": "Manifest",
|
|
92
101
|
"type": "string"
|
|
93
102
|
},
|
|
@@ -104,7 +113,7 @@
|
|
|
104
113
|
"type": "string"
|
|
105
114
|
}
|
|
106
115
|
],
|
|
107
|
-
"description": "
|
|
116
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
108
117
|
"artifactType": "Manifest"
|
|
109
118
|
},
|
|
110
119
|
"enabled": {
|
|
@@ -120,17 +129,17 @@
|
|
|
120
129
|
"type": "string"
|
|
121
130
|
}
|
|
122
131
|
],
|
|
123
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
132
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
124
133
|
"artifactType": "Manifest"
|
|
125
134
|
},
|
|
126
135
|
"overflowGroup": {
|
|
127
|
-
"description": "
|
|
136
|
+
"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.",
|
|
128
137
|
"artifactType": "Manifest",
|
|
129
138
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
130
|
-
"type": "
|
|
139
|
+
"type": "integer"
|
|
131
140
|
},
|
|
132
141
|
"priority": {
|
|
133
|
-
"description": "
|
|
142
|
+
"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.",
|
|
134
143
|
"artifactType": "Manifest",
|
|
135
144
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
136
145
|
"enum": [
|
|
@@ -152,13 +161,13 @@
|
|
|
152
161
|
"type": "object",
|
|
153
162
|
"properties": {
|
|
154
163
|
"anchor": {
|
|
155
|
-
"description": "The key of another action to be used as placement anchor.",
|
|
164
|
+
"description": "The key of another action or action menu to be used as a placement anchor.",
|
|
156
165
|
"artifactType": "Manifest",
|
|
157
166
|
"type": "string"
|
|
158
167
|
},
|
|
159
168
|
"placement": {
|
|
160
169
|
"$ref": "#/definitions/ActionPlacement",
|
|
161
|
-
"description": "
|
|
170
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
162
171
|
"artifactType": "Manifest"
|
|
163
172
|
}
|
|
164
173
|
},
|
|
@@ -404,6 +413,9 @@
|
|
|
404
413
|
},
|
|
405
414
|
{
|
|
406
415
|
"$ref": "#/definitions/ViewTableCustomAction"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"$ref": "#/definitions/ViewCustomActionMenu"
|
|
407
419
|
}
|
|
408
420
|
]
|
|
409
421
|
}
|
|
@@ -412,13 +424,13 @@
|
|
|
412
424
|
"type": "object",
|
|
413
425
|
"properties": {
|
|
414
426
|
"overflowGroup": {
|
|
415
|
-
"description": "
|
|
427
|
+
"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.",
|
|
416
428
|
"artifactType": "Manifest",
|
|
417
429
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
418
|
-
"type": "
|
|
430
|
+
"type": "integer"
|
|
419
431
|
},
|
|
420
432
|
"priority": {
|
|
421
|
-
"description": "
|
|
433
|
+
"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.",
|
|
422
434
|
"artifactType": "Manifest",
|
|
423
435
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
424
436
|
"enum": [
|
|
@@ -455,13 +467,13 @@
|
|
|
455
467
|
},
|
|
456
468
|
"properties": {
|
|
457
469
|
"overflowGroup": {
|
|
458
|
-
"description": "
|
|
470
|
+
"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.",
|
|
459
471
|
"artifactType": "Manifest",
|
|
460
472
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
461
|
-
"type": "
|
|
473
|
+
"type": "integer"
|
|
462
474
|
},
|
|
463
475
|
"priority": {
|
|
464
|
-
"description": "
|
|
476
|
+
"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.",
|
|
465
477
|
"artifactType": "Manifest",
|
|
466
478
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
467
479
|
"enum": [
|
|
@@ -530,13 +542,13 @@
|
|
|
530
542
|
"artifactType": "Manifest"
|
|
531
543
|
},
|
|
532
544
|
"overflowGroup": {
|
|
533
|
-
"description": "
|
|
545
|
+
"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.",
|
|
534
546
|
"artifactType": "Manifest",
|
|
535
547
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
536
|
-
"type": "
|
|
548
|
+
"type": "integer"
|
|
537
549
|
},
|
|
538
550
|
"priority": {
|
|
539
|
-
"description": "
|
|
551
|
+
"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.",
|
|
540
552
|
"artifactType": "Manifest",
|
|
541
553
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
542
554
|
"enum": [
|
|
@@ -563,14 +575,24 @@
|
|
|
563
575
|
"artifactType": "Manifest",
|
|
564
576
|
"type": "boolean"
|
|
565
577
|
},
|
|
566
|
-
"
|
|
567
|
-
"description": "
|
|
568
|
-
"i18nClassification": "COL: Custom action text",
|
|
578
|
+
"press": {
|
|
579
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
569
580
|
"artifactType": "Manifest",
|
|
570
581
|
"type": "string"
|
|
571
582
|
},
|
|
572
|
-
"
|
|
573
|
-
"description": "
|
|
583
|
+
"menu": {
|
|
584
|
+
"description": "List of action names from the manifest.",
|
|
585
|
+
"hidden": true,
|
|
586
|
+
"isViewNode": false,
|
|
587
|
+
"type": "array",
|
|
588
|
+
"items": {
|
|
589
|
+
"type": "string"
|
|
590
|
+
},
|
|
591
|
+
"artifactType": "Manifest"
|
|
592
|
+
},
|
|
593
|
+
"text": {
|
|
594
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
595
|
+
"i18nClassification": "COL: Custom action text",
|
|
574
596
|
"artifactType": "Manifest",
|
|
575
597
|
"type": "string"
|
|
576
598
|
},
|
|
@@ -587,7 +609,7 @@
|
|
|
587
609
|
"type": "string"
|
|
588
610
|
}
|
|
589
611
|
],
|
|
590
|
-
"description": "
|
|
612
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
591
613
|
"artifactType": "Manifest"
|
|
592
614
|
},
|
|
593
615
|
"enabled": {
|
|
@@ -603,17 +625,17 @@
|
|
|
603
625
|
"type": "string"
|
|
604
626
|
}
|
|
605
627
|
],
|
|
606
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
628
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
607
629
|
"artifactType": "Manifest"
|
|
608
630
|
},
|
|
609
631
|
"overflowGroup": {
|
|
610
|
-
"description": "
|
|
632
|
+
"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.",
|
|
611
633
|
"artifactType": "Manifest",
|
|
612
634
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
613
|
-
"type": "
|
|
635
|
+
"type": "integer"
|
|
614
636
|
},
|
|
615
637
|
"priority": {
|
|
616
|
-
"description": "
|
|
638
|
+
"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.",
|
|
617
639
|
"artifactType": "Manifest",
|
|
618
640
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
619
641
|
"enum": [
|
|
@@ -641,7 +663,7 @@
|
|
|
641
663
|
},
|
|
642
664
|
"placement": {
|
|
643
665
|
"$ref": "#/definitions/ActionPlacement",
|
|
644
|
-
"description": "
|
|
666
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
645
667
|
"artifactType": "Manifest"
|
|
646
668
|
}
|
|
647
669
|
},
|
|
@@ -650,6 +672,119 @@
|
|
|
650
672
|
"placement"
|
|
651
673
|
]
|
|
652
674
|
},
|
|
675
|
+
"ViewCustomActionMenu": {
|
|
676
|
+
"isViewNode": true,
|
|
677
|
+
"type": "object",
|
|
678
|
+
"properties": {
|
|
679
|
+
"menu": {
|
|
680
|
+
"description": "List of action names from the manifest.",
|
|
681
|
+
"hidden": true,
|
|
682
|
+
"isViewNode": false,
|
|
683
|
+
"type": "array",
|
|
684
|
+
"items": {
|
|
685
|
+
"type": "string"
|
|
686
|
+
},
|
|
687
|
+
"artifactType": "Manifest"
|
|
688
|
+
},
|
|
689
|
+
"actions": {
|
|
690
|
+
"$ref": "#/definitions/ViewCustomActionMenuActions",
|
|
691
|
+
"description": "List of actions.",
|
|
692
|
+
"artifactType": "Manifest"
|
|
693
|
+
},
|
|
694
|
+
"position": {
|
|
695
|
+
"$ref": "#/definitions/ViewCustomActionPosition",
|
|
696
|
+
"description": "Defines the position of the action relative to other actions or action menus.",
|
|
697
|
+
"artifactType": "Manifest"
|
|
698
|
+
},
|
|
699
|
+
"defaultAction": {
|
|
700
|
+
"description": "The default action for a menu button.",
|
|
701
|
+
"isViewNode": false,
|
|
702
|
+
"type": "string",
|
|
703
|
+
"artifactType": "Manifest"
|
|
704
|
+
},
|
|
705
|
+
"text": {
|
|
706
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
707
|
+
"i18nClassification": "COL: Custom action text",
|
|
708
|
+
"artifactType": "Manifest",
|
|
709
|
+
"type": "string"
|
|
710
|
+
},
|
|
711
|
+
"visible": {
|
|
712
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
713
|
+
"anyOf": [
|
|
714
|
+
{
|
|
715
|
+
"enum": [
|
|
716
|
+
false,
|
|
717
|
+
true
|
|
718
|
+
]
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"type": "string"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
725
|
+
"artifactType": "Manifest"
|
|
726
|
+
},
|
|
727
|
+
"enabled": {
|
|
728
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
729
|
+
"anyOf": [
|
|
730
|
+
{
|
|
731
|
+
"enum": [
|
|
732
|
+
false,
|
|
733
|
+
true
|
|
734
|
+
]
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"type": "string"
|
|
738
|
+
}
|
|
739
|
+
],
|
|
740
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
741
|
+
"artifactType": "Manifest"
|
|
742
|
+
},
|
|
743
|
+
"overflowGroup": {
|
|
744
|
+
"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.",
|
|
745
|
+
"artifactType": "Manifest",
|
|
746
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
747
|
+
"type": "integer"
|
|
748
|
+
},
|
|
749
|
+
"priority": {
|
|
750
|
+
"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.",
|
|
751
|
+
"artifactType": "Manifest",
|
|
752
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
753
|
+
"enum": [
|
|
754
|
+
"AlwaysOverflow",
|
|
755
|
+
"High",
|
|
756
|
+
"Low",
|
|
757
|
+
"NeverOverflow"
|
|
758
|
+
],
|
|
759
|
+
"type": "string"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
"additionalProperties": false,
|
|
763
|
+
"required": [
|
|
764
|
+
"menu",
|
|
765
|
+
"text"
|
|
766
|
+
]
|
|
767
|
+
},
|
|
768
|
+
"ViewCustomActionMenuActions": {
|
|
769
|
+
"isViewNode": false,
|
|
770
|
+
"type": "object",
|
|
771
|
+
"additionalProperties": {
|
|
772
|
+
"anyOf": [
|
|
773
|
+
{
|
|
774
|
+
"$ref": "#/definitions/GroupableAction"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"$ref": "#/definitions/ViewToolBarActionGroup"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"$ref": "#/definitions/ViewToolBarAction"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"$ref": "#/definitions/ViewTableCustomAction"
|
|
784
|
+
}
|
|
785
|
+
]
|
|
786
|
+
}
|
|
787
|
+
},
|
|
653
788
|
"ALPTableView": {
|
|
654
789
|
"description": "Table View",
|
|
655
790
|
"isViewNode": true,
|
|
@@ -840,6 +975,9 @@
|
|
|
840
975
|
},
|
|
841
976
|
{
|
|
842
977
|
"$ref": "#/definitions/CustomTableAction"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"$ref": "#/definitions/CustomActionMenu"
|
|
843
981
|
}
|
|
844
982
|
]
|
|
845
983
|
}
|
|
@@ -860,13 +998,13 @@
|
|
|
860
998
|
"artifactType": "Manifest"
|
|
861
999
|
},
|
|
862
1000
|
"overflowGroup": {
|
|
863
|
-
"description": "
|
|
1001
|
+
"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.",
|
|
864
1002
|
"artifactType": "Manifest",
|
|
865
1003
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
866
|
-
"type": "
|
|
1004
|
+
"type": "integer"
|
|
867
1005
|
},
|
|
868
1006
|
"priority": {
|
|
869
|
-
"description": "
|
|
1007
|
+
"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.",
|
|
870
1008
|
"artifactType": "Manifest",
|
|
871
1009
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
872
1010
|
"enum": [
|
|
@@ -903,13 +1041,13 @@
|
|
|
903
1041
|
},
|
|
904
1042
|
"properties": {
|
|
905
1043
|
"overflowGroup": {
|
|
906
|
-
"description": "
|
|
1044
|
+
"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.",
|
|
907
1045
|
"artifactType": "Manifest",
|
|
908
1046
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
909
|
-
"type": "
|
|
1047
|
+
"type": "integer"
|
|
910
1048
|
},
|
|
911
1049
|
"priority": {
|
|
912
|
-
"description": "
|
|
1050
|
+
"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.",
|
|
913
1051
|
"artifactType": "Manifest",
|
|
914
1052
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
915
1053
|
"enum": [
|
|
@@ -946,19 +1084,29 @@
|
|
|
946
1084
|
"artifactType": "Manifest",
|
|
947
1085
|
"type": "boolean"
|
|
948
1086
|
},
|
|
949
|
-
"
|
|
950
|
-
"description": "
|
|
951
|
-
"i18nClassification": "COL: Custom action text",
|
|
1087
|
+
"press": {
|
|
1088
|
+
"description": "Relevant for extension actions; allows the definition of a target action handler.",
|
|
952
1089
|
"artifactType": "Manifest",
|
|
953
1090
|
"type": "string"
|
|
954
1091
|
},
|
|
1092
|
+
"menu": {
|
|
1093
|
+
"description": "List of action names from the manifest.",
|
|
1094
|
+
"hidden": true,
|
|
1095
|
+
"isViewNode": false,
|
|
1096
|
+
"type": "array",
|
|
1097
|
+
"items": {
|
|
1098
|
+
"type": "string"
|
|
1099
|
+
},
|
|
1100
|
+
"artifactType": "Manifest"
|
|
1101
|
+
},
|
|
955
1102
|
"position": {
|
|
956
1103
|
"$ref": "#/definitions/CustomActionPosition",
|
|
957
|
-
"description": "Defines the position of the action relative to other actions.",
|
|
1104
|
+
"description": "Defines the position of the action relative to other actions or action menus.",
|
|
958
1105
|
"artifactType": "Manifest"
|
|
959
1106
|
},
|
|
960
|
-
"
|
|
961
|
-
"description": "
|
|
1107
|
+
"text": {
|
|
1108
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
1109
|
+
"i18nClassification": "COL: Custom action text",
|
|
962
1110
|
"artifactType": "Manifest",
|
|
963
1111
|
"type": "string"
|
|
964
1112
|
},
|
|
@@ -975,7 +1123,7 @@
|
|
|
975
1123
|
"type": "string"
|
|
976
1124
|
}
|
|
977
1125
|
],
|
|
978
|
-
"description": "
|
|
1126
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
979
1127
|
"artifactType": "Manifest"
|
|
980
1128
|
},
|
|
981
1129
|
"enabled": {
|
|
@@ -991,17 +1139,17 @@
|
|
|
991
1139
|
"type": "string"
|
|
992
1140
|
}
|
|
993
1141
|
],
|
|
994
|
-
"description": "Defines if the action is enabled. The default value is true.",
|
|
1142
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
995
1143
|
"artifactType": "Manifest"
|
|
996
1144
|
},
|
|
997
1145
|
"overflowGroup": {
|
|
998
|
-
"description": "
|
|
1146
|
+
"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.",
|
|
999
1147
|
"artifactType": "Manifest",
|
|
1000
1148
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1001
|
-
"type": "
|
|
1149
|
+
"type": "integer"
|
|
1002
1150
|
},
|
|
1003
1151
|
"priority": {
|
|
1004
|
-
"description": "
|
|
1152
|
+
"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.",
|
|
1005
1153
|
"artifactType": "Manifest",
|
|
1006
1154
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1007
1155
|
"enum": [
|
|
@@ -1023,13 +1171,13 @@
|
|
|
1023
1171
|
"type": "object",
|
|
1024
1172
|
"properties": {
|
|
1025
1173
|
"anchor": {
|
|
1026
|
-
"description": "The key of another action to be used as placement anchor.",
|
|
1174
|
+
"description": "The key of another action or action menu to be used as a placement anchor.",
|
|
1027
1175
|
"artifactType": "Manifest",
|
|
1028
1176
|
"type": "string"
|
|
1029
1177
|
},
|
|
1030
1178
|
"placement": {
|
|
1031
1179
|
"$ref": "#/definitions/ActionPlacement",
|
|
1032
|
-
"description": "
|
|
1180
|
+
"description": "Defines the placement of the action or action menu relative to the placement anchor.",
|
|
1033
1181
|
"artifactType": "Manifest"
|
|
1034
1182
|
}
|
|
1035
1183
|
},
|
|
@@ -1038,6 +1186,116 @@
|
|
|
1038
1186
|
"placement"
|
|
1039
1187
|
]
|
|
1040
1188
|
},
|
|
1189
|
+
"CustomActionMenu": {
|
|
1190
|
+
"isViewNode": true,
|
|
1191
|
+
"type": "object",
|
|
1192
|
+
"properties": {
|
|
1193
|
+
"menu": {
|
|
1194
|
+
"description": "List of action names from the manifest.",
|
|
1195
|
+
"hidden": true,
|
|
1196
|
+
"isViewNode": false,
|
|
1197
|
+
"type": "array",
|
|
1198
|
+
"items": {
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
},
|
|
1201
|
+
"artifactType": "Manifest"
|
|
1202
|
+
},
|
|
1203
|
+
"actions": {
|
|
1204
|
+
"$ref": "#/definitions/CustomActionMenuActions",
|
|
1205
|
+
"description": "List of actions.",
|
|
1206
|
+
"artifactType": "Manifest"
|
|
1207
|
+
},
|
|
1208
|
+
"position": {
|
|
1209
|
+
"$ref": "#/definitions/CustomActionPosition",
|
|
1210
|
+
"description": "Defines the position of the action relative to other actions or action menus.",
|
|
1211
|
+
"artifactType": "Manifest"
|
|
1212
|
+
},
|
|
1213
|
+
"defaultAction": {
|
|
1214
|
+
"description": "The default action for a menu button.",
|
|
1215
|
+
"isViewNode": false,
|
|
1216
|
+
"type": "string",
|
|
1217
|
+
"artifactType": "Manifest"
|
|
1218
|
+
},
|
|
1219
|
+
"text": {
|
|
1220
|
+
"description": "The text that is displayed on the button. This is typically a binding to an i18n entry.",
|
|
1221
|
+
"i18nClassification": "COL: Custom action text",
|
|
1222
|
+
"artifactType": "Manifest",
|
|
1223
|
+
"type": "string"
|
|
1224
|
+
},
|
|
1225
|
+
"visible": {
|
|
1226
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
1227
|
+
"anyOf": [
|
|
1228
|
+
{
|
|
1229
|
+
"enum": [
|
|
1230
|
+
false,
|
|
1231
|
+
true
|
|
1232
|
+
]
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"type": "string"
|
|
1236
|
+
}
|
|
1237
|
+
],
|
|
1238
|
+
"description": "Determines if the action or action menu button is visible.",
|
|
1239
|
+
"artifactType": "Manifest"
|
|
1240
|
+
},
|
|
1241
|
+
"enabled": {
|
|
1242
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
1243
|
+
"anyOf": [
|
|
1244
|
+
{
|
|
1245
|
+
"enum": [
|
|
1246
|
+
false,
|
|
1247
|
+
true
|
|
1248
|
+
]
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"type": "string"
|
|
1252
|
+
}
|
|
1253
|
+
],
|
|
1254
|
+
"description": "Defines if the action or action menu is enabled. The default value is true.",
|
|
1255
|
+
"artifactType": "Manifest"
|
|
1256
|
+
},
|
|
1257
|
+
"overflowGroup": {
|
|
1258
|
+
"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.",
|
|
1259
|
+
"artifactType": "Manifest",
|
|
1260
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1261
|
+
"type": "integer"
|
|
1262
|
+
},
|
|
1263
|
+
"priority": {
|
|
1264
|
+
"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.",
|
|
1265
|
+
"artifactType": "Manifest",
|
|
1266
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cbf16c599f2d4b8796e3702f7d4aae6c",
|
|
1267
|
+
"enum": [
|
|
1268
|
+
"AlwaysOverflow",
|
|
1269
|
+
"High",
|
|
1270
|
+
"Low",
|
|
1271
|
+
"NeverOverflow"
|
|
1272
|
+
],
|
|
1273
|
+
"type": "string"
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"additionalProperties": false,
|
|
1277
|
+
"required": [
|
|
1278
|
+
"menu",
|
|
1279
|
+
"text"
|
|
1280
|
+
]
|
|
1281
|
+
},
|
|
1282
|
+
"CustomActionMenuActions": {
|
|
1283
|
+
"isViewNode": false,
|
|
1284
|
+
"type": "object",
|
|
1285
|
+
"additionalProperties": {
|
|
1286
|
+
"anyOf": [
|
|
1287
|
+
{
|
|
1288
|
+
"$ref": "#/definitions/ToolBarAction"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"$ref": "#/definitions/ToolBarActionGroup"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"$ref": "#/definitions/CustomTableAction"
|
|
1295
|
+
}
|
|
1296
|
+
]
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1041
1299
|
"ViewColumns": {
|
|
1042
1300
|
"description": "View Columns",
|
|
1043
1301
|
"isViewNode": true,
|
|
@@ -1172,6 +1430,30 @@
|
|
|
1172
1430
|
"items": {
|
|
1173
1431
|
"type": "string"
|
|
1174
1432
|
}
|
|
1433
|
+
},
|
|
1434
|
+
"required": {
|
|
1435
|
+
"description": "Determines whether a custom column is required.\nIf set to true, an asterisk is displayed in the column header.",
|
|
1436
|
+
"artifactType": "Manifest",
|
|
1437
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
1438
|
+
"type": "boolean"
|
|
1439
|
+
},
|
|
1440
|
+
"importance": {
|
|
1441
|
+
"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.",
|
|
1442
|
+
"artifactType": "Manifest",
|
|
1443
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
1444
|
+
"enum": [
|
|
1445
|
+
"High",
|
|
1446
|
+
"Low",
|
|
1447
|
+
"Medium"
|
|
1448
|
+
],
|
|
1449
|
+
"type": "string"
|
|
1450
|
+
},
|
|
1451
|
+
"tooltip": {
|
|
1452
|
+
"description": "The tooltip is shown on the header of a custom column when a user hovers over it.",
|
|
1453
|
+
"i18nClassification": "COL: Custom column tooltip text",
|
|
1454
|
+
"artifactType": "Manifest",
|
|
1455
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
1456
|
+
"type": "string"
|
|
1175
1457
|
}
|
|
1176
1458
|
},
|
|
1177
1459
|
"additionalProperties": false,
|
|
@@ -1934,6 +2216,30 @@
|
|
|
1934
2216
|
"items": {
|
|
1935
2217
|
"type": "string"
|
|
1936
2218
|
}
|
|
2219
|
+
},
|
|
2220
|
+
"required": {
|
|
2221
|
+
"description": "Determines whether a custom column is required.\nIf set to true, an asterisk is displayed in the column header.",
|
|
2222
|
+
"artifactType": "Manifest",
|
|
2223
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
2224
|
+
"type": "boolean"
|
|
2225
|
+
},
|
|
2226
|
+
"importance": {
|
|
2227
|
+
"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.",
|
|
2228
|
+
"artifactType": "Manifest",
|
|
2229
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
2230
|
+
"enum": [
|
|
2231
|
+
"High",
|
|
2232
|
+
"Low",
|
|
2233
|
+
"Medium"
|
|
2234
|
+
],
|
|
2235
|
+
"type": "string"
|
|
2236
|
+
},
|
|
2237
|
+
"tooltip": {
|
|
2238
|
+
"description": "The tooltip is shown on the header of a custom column when a user hovers over it.",
|
|
2239
|
+
"i18nClassification": "COL: Custom column tooltip text",
|
|
2240
|
+
"artifactType": "Manifest",
|
|
2241
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
|
|
2242
|
+
"type": "string"
|
|
1937
2243
|
}
|
|
1938
2244
|
},
|
|
1939
2245
|
"additionalProperties": false,
|