@sap/ux-specification 1.124.31 → 1.124.33
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 +60 -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 +250 -250
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ApplicationV2.json +46 -12
- package/dist/schemas/v2/ListReportNewConfig.json +136 -0
- package/dist/schemas/v2/ObjectPageConfig.json +11 -5
- package/dist/schemas/v4/ApplicationV4.json +30 -15
- package/dist/schemas/v4/BuildingBlocksConfig.json +20 -34
- package/dist/schemas/v4/ListReportConfig.json +34 -0
- package/dist/schemas/v4/ObjectPageConfig.json +17 -0
- package/dist/specification/package.json +16 -16
- package/dist/specification/scripts/macros/schema.d.ts +7 -0
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +61 -14
- 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 +63 -7
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +65 -4
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +138 -8
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/distTagEvaluator.d.ts +10 -3
- package/dist/specification/src/sync/common/distTagEvaluator.d.ts.map +1 -1
- package/dist/specification/src/sync/common/distTagEvaluator.js +14 -4
- package/dist/specification/src/sync/common/distTagEvaluator.js.map +1 -1
- package/dist/specification/src/sync/common/dist_tag.json +9 -5
- package/dist/specification/src/sync/common/generate/objectPage.js +3 -1
- package/dist/specification/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/common/generate/utils.d.ts +13 -4
- package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/generate/utils.js +35 -20
- package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
- package/dist/specification/src/sync/common/i18n.json +13 -1
- package/dist/specification/src/sync/common/utils.d.ts +64 -0
- package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/utils.js +147 -1
- 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 +6 -12
- 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/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/manifestPropertyUtils.d.ts +1 -2
- package/dist/specification/src/sync/v2/generate/manifestPropertyUtils.d.ts.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 +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +4 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +8 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/stableIdUtils.js +1 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +3 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts +78 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +454 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -0
- 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 +55 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +152 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +3 -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 +3 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +4 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +61 -23
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.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 +32 -13
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +23 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +67 -0
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- 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/ObjectPageTableColumn.d.ts +3 -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 +20 -0
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts +5 -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 +40 -0
- package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +13 -3
- package/dist/specification/src/sync/v4/export/fpmCustomPage.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/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 +374 -0
- package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/listReport.d.ts +100 -2
- package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/listReport.js +169 -104
- package/dist/specification/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +62 -12
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts +141 -0
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/App.js +208 -0
- package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +193 -0
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +384 -0
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +172 -0
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +410 -0
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +70 -0
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/Page.js +73 -0
- package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/utils.d.ts +9 -0
- package/dist/specification/src/sync/v4/sync-rules/utils.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/sync-rules/utils.js +43 -0
- package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -0
- package/dist/specification/src/sync/v4/utils/utils.d.ts +15 -4
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +54 -6
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/types/src/common/types.d.ts +110 -1
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +6 -0
- 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/controls/ObjectPageHeaderSection.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageSection.d.ts.map +1 -1
- package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts +41 -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 +16 -16
|
@@ -27,42 +27,56 @@
|
|
|
27
27
|
"properties": {
|
|
28
28
|
"forceGlobalRefresh": {
|
|
29
29
|
"description": "If forceGlobalRefresh is not explicitly set to false, a global model refresh is triggered when the annotated side effects are executed.",
|
|
30
|
-
"type": "boolean"
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.forceGlobalRefresh"
|
|
31
32
|
},
|
|
32
33
|
"flexibleColumnLayout": {
|
|
33
34
|
"$ref": "#/definitions/FlexibleColumnLayout",
|
|
34
|
-
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas."
|
|
35
|
+
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas.",
|
|
36
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout"
|
|
35
37
|
},
|
|
36
38
|
"tableColumnVerticalAlignment": {
|
|
37
39
|
"$ref": "#/definitions/TableColumnVerticalAlignment",
|
|
38
|
-
"description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table."
|
|
40
|
+
"description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table.",
|
|
41
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.tableColumnVerticalAlignment"
|
|
39
42
|
},
|
|
40
43
|
"draftDiscardConfirmationSettings": {
|
|
41
44
|
"$ref": "#/definitions/DraftDiscardConfirmationSettings",
|
|
42
|
-
"description": "Allows applications to configure confirmation popups in various scenarios."
|
|
45
|
+
"description": "Allows applications to configure confirmation popups in various scenarios.",
|
|
46
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.draftDiscardConfirmationSettings"
|
|
43
47
|
},
|
|
44
48
|
"statePreservationMode": {
|
|
45
49
|
"$ref": "#/definitions/StatePreservationMode",
|
|
46
|
-
"description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases."
|
|
50
|
+
"description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases.",
|
|
51
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.statePreservationMode"
|
|
52
|
+
},
|
|
53
|
+
"globalTableSettings": {
|
|
54
|
+
"$ref": "#/definitions/GlobalApplicationTableSettings",
|
|
55
|
+
"description": "Settings for all tables.",
|
|
56
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.tableSettings"
|
|
47
57
|
},
|
|
48
58
|
"title": {
|
|
49
59
|
"description": "Defines the title for the application.",
|
|
50
60
|
"i18nClassification": "TIT: Title of the application",
|
|
51
|
-
"type": "string"
|
|
61
|
+
"type": "string",
|
|
62
|
+
"manifestPath": "$[\"sap.app\"].title"
|
|
52
63
|
},
|
|
53
64
|
"description": {
|
|
54
65
|
"description": "Defines the description for the application.",
|
|
55
66
|
"i18nClassification": "TIT: Description of the application",
|
|
56
|
-
"type": "string"
|
|
67
|
+
"type": "string",
|
|
68
|
+
"manifestPath": "$[\"sap.app\"].description"
|
|
57
69
|
},
|
|
58
70
|
"flexEnabled": {
|
|
59
71
|
"description": "Enables key user adaptation for an application.",
|
|
60
72
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ccd45ba3f0b446a0901b2c9d42b8ad53",
|
|
61
|
-
"type": "boolean"
|
|
73
|
+
"type": "boolean",
|
|
74
|
+
"manifestPath": "$[\"sap.ui5\"].flexEnabled"
|
|
62
75
|
},
|
|
63
76
|
"cloudDevAdaptationStatus": {
|
|
64
77
|
"$ref": "#/definitions/CloudDevAdaptationStatus",
|
|
65
|
-
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released."
|
|
78
|
+
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released.",
|
|
79
|
+
"manifestPath": "$[\"sap.fiori\"].cloudDevAdaptationStatus"
|
|
66
80
|
}
|
|
67
81
|
},
|
|
68
82
|
"additionalProperties": false
|
|
@@ -72,10 +86,12 @@
|
|
|
72
86
|
"type": "object",
|
|
73
87
|
"properties": {
|
|
74
88
|
"defaultTwoColumnLayoutType": {
|
|
75
|
-
"$ref": "#/definitions/FlexibleColumnLayoutType"
|
|
89
|
+
"$ref": "#/definitions/FlexibleColumnLayoutType",
|
|
90
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout.defaultTwoColumnLayoutType"
|
|
76
91
|
},
|
|
77
92
|
"defaultThreeColumnLayoutType": {
|
|
78
|
-
"$ref": "#/definitions/FlexibleColumnLayoutType"
|
|
93
|
+
"$ref": "#/definitions/FlexibleColumnLayoutType",
|
|
94
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout.defaultThreeColumnLayoutType"
|
|
79
95
|
}
|
|
80
96
|
},
|
|
81
97
|
"additionalProperties": false
|
|
@@ -108,7 +124,8 @@
|
|
|
108
124
|
"enabled": {
|
|
109
125
|
"description": "Allows applications to turn off the discard draft confirmation popup in various scenarios.",
|
|
110
126
|
"type": "string",
|
|
111
|
-
"const": "restricted"
|
|
127
|
+
"const": "restricted",
|
|
128
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.draftDiscardConfirmationSettings.enabled"
|
|
112
129
|
}
|
|
113
130
|
},
|
|
114
131
|
"additionalProperties": false,
|
|
@@ -123,6 +140,23 @@
|
|
|
123
140
|
],
|
|
124
141
|
"type": "string"
|
|
125
142
|
},
|
|
143
|
+
"GlobalApplicationTableSettings": {
|
|
144
|
+
"type": "object",
|
|
145
|
+
"properties": {
|
|
146
|
+
"createMode": {
|
|
147
|
+
"description": "This property acts as a global default for all pages and tables in the application. Page-level or table-level definitions override this setting.\nYou can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
148
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b",
|
|
149
|
+
"enum": [
|
|
150
|
+
"creationRows",
|
|
151
|
+
"creationRowsHiddenInEditMode",
|
|
152
|
+
"inline"
|
|
153
|
+
],
|
|
154
|
+
"type": "string",
|
|
155
|
+
"manifestPath": "$[\"sap.ui.generic.app\"].settings.tableSettings.createMode"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"additionalProperties": false
|
|
159
|
+
},
|
|
126
160
|
"CloudDevAdaptationStatus": {
|
|
127
161
|
"internal": true,
|
|
128
162
|
"enum": [
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"$ref": "#/definitions/ListReportFilterBar",
|
|
16
16
|
"description": "Filter Bar"
|
|
17
17
|
},
|
|
18
|
+
"table": {
|
|
19
|
+
"$ref": "#/definitions/Table",
|
|
20
|
+
"description": "Table"
|
|
21
|
+
},
|
|
18
22
|
"footer": {
|
|
19
23
|
"$ref": "#/definitions/Toolbar",
|
|
20
24
|
"description": "Footer"
|
|
@@ -418,6 +422,138 @@
|
|
|
418
422
|
],
|
|
419
423
|
"type": "string"
|
|
420
424
|
},
|
|
425
|
+
"Table": {
|
|
426
|
+
"description": "Table",
|
|
427
|
+
"isViewNode": true,
|
|
428
|
+
"type": "object",
|
|
429
|
+
"properties": {
|
|
430
|
+
"entitySet": {
|
|
431
|
+
"description": "This property can be used to indicate that a table or chart should be based on a different entity set than the main entity set",
|
|
432
|
+
"type": "string",
|
|
433
|
+
"artifactType": "Manifest",
|
|
434
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b6b59e4a4c3548cf83ff9c3b955d3ba3"
|
|
435
|
+
},
|
|
436
|
+
"annotationPath": {
|
|
437
|
+
"description": "Specify a SelectionVariant or SelectionPresentationVariant annotation for the entity set to configure the table or chart",
|
|
438
|
+
"type": "string",
|
|
439
|
+
"artifactType": "Manifest",
|
|
440
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/37aeed74e17a42caa2cba3123f0c15fc"
|
|
441
|
+
},
|
|
442
|
+
"showItemNavigationOnChart": {
|
|
443
|
+
"description": "To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest.",
|
|
444
|
+
"type": "boolean",
|
|
445
|
+
"artifactType": "Manifest"
|
|
446
|
+
},
|
|
447
|
+
"views": {
|
|
448
|
+
"$ref": "#/definitions/MultiViewsDefinition"
|
|
449
|
+
},
|
|
450
|
+
"quickVariantSelection": {
|
|
451
|
+
"$ref": "#/definitions/MultiViewsOnTable",
|
|
452
|
+
"description": "With quickVariantSelection, you can switch to multiple views (single table mode).\nEach view links to a variant you have added to your annotations."
|
|
453
|
+
},
|
|
454
|
+
"showTablePersonalisation": {
|
|
455
|
+
"description": "The showTablePersonalisation attribute can be set to false to hide the table personalization button.",
|
|
456
|
+
"type": "boolean",
|
|
457
|
+
"artifactType": "FlexChange",
|
|
458
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
459
|
+
},
|
|
460
|
+
"exportType": {
|
|
461
|
+
"$ref": "#/definitions/smarttable.ExportType",
|
|
462
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
463
|
+
"artifactType": "FlexChange",
|
|
464
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
465
|
+
},
|
|
466
|
+
"useExportToExcel": {
|
|
467
|
+
"description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
|
|
468
|
+
"type": "boolean",
|
|
469
|
+
"artifactType": "FlexChange",
|
|
470
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"additionalProperties": false
|
|
474
|
+
},
|
|
475
|
+
"MultiViewsDefinition": {
|
|
476
|
+
"description": "Views",
|
|
477
|
+
"isViewNode": true,
|
|
478
|
+
"type": "object",
|
|
479
|
+
"properties": {
|
|
480
|
+
"enableAutoBinding": {
|
|
481
|
+
"description": "Use this property to ensure that data are automatically loaded when the page is opened.",
|
|
482
|
+
"type": "boolean",
|
|
483
|
+
"artifactType": "Manifest"
|
|
484
|
+
},
|
|
485
|
+
"showCounts": {
|
|
486
|
+
"description": "You can show the counts of entries of each view. To do so, add the showCounts option and set it to true.",
|
|
487
|
+
"type": "boolean",
|
|
488
|
+
"artifactType": "Manifest"
|
|
489
|
+
},
|
|
490
|
+
"variants": {
|
|
491
|
+
"$ref": "#/definitions/MultiViewsVariants",
|
|
492
|
+
"description": "List of views"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"additionalProperties": false,
|
|
496
|
+
"required": [
|
|
497
|
+
"variants"
|
|
498
|
+
]
|
|
499
|
+
},
|
|
500
|
+
"MultiViewsVariants": {
|
|
501
|
+
"isViewNode": false,
|
|
502
|
+
"type": "object",
|
|
503
|
+
"additionalProperties": {
|
|
504
|
+
"$ref": "#/definitions/Table"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"MultiViewsOnTable": {
|
|
508
|
+
"type": "object",
|
|
509
|
+
"properties": {
|
|
510
|
+
"showCounts": {
|
|
511
|
+
"description": "To show the number of available records, set showCounts to true.",
|
|
512
|
+
"type": "boolean",
|
|
513
|
+
"artifactType": "Manifest"
|
|
514
|
+
},
|
|
515
|
+
"variants": {
|
|
516
|
+
"description": "The variants section contains a set of entries that point to a SelectionVariant or SelectionPresentationVariant annotation.",
|
|
517
|
+
"type": "object",
|
|
518
|
+
"additionalProperties": {
|
|
519
|
+
"$ref": "#/definitions/ViewOnTable"
|
|
520
|
+
},
|
|
521
|
+
"artifactType": "Manifest"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"additionalProperties": false,
|
|
525
|
+
"required": [
|
|
526
|
+
"variants"
|
|
527
|
+
]
|
|
528
|
+
},
|
|
529
|
+
"ViewOnTable": {
|
|
530
|
+
"type": "object",
|
|
531
|
+
"properties": {
|
|
532
|
+
"key": {
|
|
533
|
+
"description": "The key property is mandatory. It is used for initializing the corresponding SegmentedButton item.",
|
|
534
|
+
"type": "string"
|
|
535
|
+
},
|
|
536
|
+
"annotationPath": {
|
|
537
|
+
"description": "Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation.",
|
|
538
|
+
"type": "string",
|
|
539
|
+
"artifactType": "Manifest"
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"additionalProperties": false,
|
|
543
|
+
"required": [
|
|
544
|
+
"annotationPath",
|
|
545
|
+
"key"
|
|
546
|
+
]
|
|
547
|
+
},
|
|
548
|
+
"smarttable.ExportType": {
|
|
549
|
+
"description": "Provides the type of services available for export in the `SmartTable` control.\n\nThis enum is part of the 'sap/ui/comp/library' module export and must be accessed by the property 'smarttable.ExportType'.",
|
|
550
|
+
"enum": [
|
|
551
|
+
"GW",
|
|
552
|
+
"UI5Client",
|
|
553
|
+
"UI5ClientPDF"
|
|
554
|
+
],
|
|
555
|
+
"type": "string"
|
|
556
|
+
},
|
|
421
557
|
"Toolbar": {
|
|
422
558
|
"description": "Toolbar",
|
|
423
559
|
"isViewNode": true,
|
|
@@ -56,6 +56,12 @@
|
|
|
56
56
|
"footer": {
|
|
57
57
|
"$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
|
|
58
58
|
},
|
|
59
|
+
"createMode": {
|
|
60
|
+
"$ref": "#/definitions/CreateMode",
|
|
61
|
+
"description": "This property applies to all tables within the page. Individual tables can override this setting by defining the property explicitly at table level.\nYou can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
62
|
+
"artifactType": "Manifest",
|
|
63
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
64
|
+
},
|
|
59
65
|
"$schema": {
|
|
60
66
|
"type": "string"
|
|
61
67
|
}
|
|
@@ -727,7 +733,7 @@
|
|
|
727
733
|
},
|
|
728
734
|
"createMode": {
|
|
729
735
|
"$ref": "#/definitions/CreateMode",
|
|
730
|
-
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create
|
|
736
|
+
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
731
737
|
"artifactType": "Manifest",
|
|
732
738
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
733
739
|
},
|
|
@@ -1198,7 +1204,7 @@
|
|
|
1198
1204
|
},
|
|
1199
1205
|
"createMode": {
|
|
1200
1206
|
"$ref": "#/definitions/CreateMode",
|
|
1201
|
-
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create
|
|
1207
|
+
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
1202
1208
|
"artifactType": "Manifest",
|
|
1203
1209
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1204
1210
|
},
|
|
@@ -1298,7 +1304,7 @@
|
|
|
1298
1304
|
},
|
|
1299
1305
|
"createMode": {
|
|
1300
1306
|
"$ref": "#/definitions/CreateMode",
|
|
1301
|
-
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create
|
|
1307
|
+
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
1302
1308
|
"artifactType": "Manifest",
|
|
1303
1309
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1304
1310
|
},
|
|
@@ -1398,7 +1404,7 @@
|
|
|
1398
1404
|
},
|
|
1399
1405
|
"createMode": {
|
|
1400
1406
|
"$ref": "#/definitions/CreateMode",
|
|
1401
|
-
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create
|
|
1407
|
+
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
1402
1408
|
"artifactType": "Manifest",
|
|
1403
1409
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1404
1410
|
},
|
|
@@ -1498,7 +1504,7 @@
|
|
|
1498
1504
|
},
|
|
1499
1505
|
"createMode": {
|
|
1500
1506
|
"$ref": "#/definitions/CreateMode",
|
|
1501
|
-
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create
|
|
1507
|
+
"description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
|
|
1502
1508
|
"artifactType": "Manifest",
|
|
1503
1509
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1504
1510
|
},
|
|
@@ -27,42 +27,51 @@
|
|
|
27
27
|
"properties": {
|
|
28
28
|
"flexibleColumnLayout": {
|
|
29
29
|
"$ref": "#/definitions/FlexibleColumnLayoutV4",
|
|
30
|
-
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas."
|
|
30
|
+
"description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas.",
|
|
31
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout"
|
|
31
32
|
},
|
|
32
33
|
"path": {
|
|
33
34
|
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
34
|
-
"type": "string"
|
|
35
|
+
"type": "string",
|
|
36
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.path"
|
|
35
37
|
},
|
|
36
38
|
"viewType": {
|
|
37
39
|
"$ref": "#/definitions/ViewTypes",
|
|
38
|
-
"description": "standard view type of views"
|
|
40
|
+
"description": "standard view type of views",
|
|
41
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.viewType"
|
|
39
42
|
},
|
|
40
43
|
"controllerExtensions": {
|
|
41
44
|
"$ref": "#/definitions/ControllerExtensions",
|
|
42
|
-
"description": "Controller extensions allow users to extensiate default behaviour with custom controllers code."
|
|
45
|
+
"description": "Controller extensions allow users to extensiate default behaviour with custom controllers code.",
|
|
46
|
+
"manifestPath": "$[\"sap.ui5\"].extends.extensions[\"sap.ui.controllerExtensions\"].controllerExtensions"
|
|
43
47
|
},
|
|
44
48
|
"dependencies": {
|
|
45
49
|
"$ref": "#/definitions/Dependencies",
|
|
46
|
-
"description": "Dependencies of the application."
|
|
50
|
+
"description": "Dependencies of the application.",
|
|
51
|
+
"manifestPath": "$[\"sap.ui5\"].dependencies"
|
|
47
52
|
},
|
|
48
53
|
"title": {
|
|
49
54
|
"description": "Defines the title for the application.",
|
|
50
55
|
"i18nClassification": "TIT: Title of the application",
|
|
51
|
-
"type": "string"
|
|
56
|
+
"type": "string",
|
|
57
|
+
"manifestPath": "$[\"sap.app\"].title"
|
|
52
58
|
},
|
|
53
59
|
"description": {
|
|
54
60
|
"description": "Defines the description for the application.",
|
|
55
61
|
"i18nClassification": "TIT: Description of the application",
|
|
56
|
-
"type": "string"
|
|
62
|
+
"type": "string",
|
|
63
|
+
"manifestPath": "$[\"sap.app\"].description"
|
|
57
64
|
},
|
|
58
65
|
"flexEnabled": {
|
|
59
66
|
"description": "Enables key user adaptation for an application.",
|
|
60
67
|
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/ccd45ba3f0b446a0901b2c9d42b8ad53",
|
|
61
|
-
"type": "boolean"
|
|
68
|
+
"type": "boolean",
|
|
69
|
+
"manifestPath": "$[\"sap.ui5\"].flexEnabled"
|
|
62
70
|
},
|
|
63
71
|
"cloudDevAdaptationStatus": {
|
|
64
72
|
"$ref": "#/definitions/CloudDevAdaptationStatus",
|
|
65
|
-
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released."
|
|
73
|
+
"description": "Represents the release status for the developer adaptation in the cloud (relevant for SAP internal only). The supported types are released, deprecated, obsolete, no value means not released.",
|
|
74
|
+
"manifestPath": "$[\"sap.fiori\"].cloudDevAdaptationStatus"
|
|
66
75
|
}
|
|
67
76
|
},
|
|
68
77
|
"additionalProperties": false
|
|
@@ -73,13 +82,16 @@
|
|
|
73
82
|
"properties": {
|
|
74
83
|
"limitFCLToTwoColumns": {
|
|
75
84
|
"description": "Determines whether the Flexible Column Layout is limited to two columns. If set to true, the third level will be displayed in full screen mode rather than a third column.",
|
|
76
|
-
"type": "boolean"
|
|
85
|
+
"type": "boolean",
|
|
86
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.limitFCLToTwoColumns"
|
|
77
87
|
},
|
|
78
88
|
"defaultTwoColumnLayoutType": {
|
|
79
|
-
"$ref": "#/definitions/FlexibleColumnLayoutType"
|
|
89
|
+
"$ref": "#/definitions/FlexibleColumnLayoutType",
|
|
90
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.defaultTwoColumnLayoutType"
|
|
80
91
|
},
|
|
81
92
|
"defaultThreeColumnLayoutType": {
|
|
82
|
-
"$ref": "#/definitions/FlexibleColumnLayoutType"
|
|
93
|
+
"$ref": "#/definitions/FlexibleColumnLayoutType",
|
|
94
|
+
"manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.defaultThreeColumnLayoutType"
|
|
83
95
|
}
|
|
84
96
|
},
|
|
85
97
|
"additionalProperties": false
|
|
@@ -142,21 +154,24 @@
|
|
|
142
154
|
{
|
|
143
155
|
"type": "string"
|
|
144
156
|
}
|
|
145
|
-
]
|
|
157
|
+
],
|
|
158
|
+
"manifestPath": "$[\"sap.ui5\"].dependencies.minUI5Version"
|
|
146
159
|
},
|
|
147
160
|
"libs": {
|
|
148
161
|
"description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
|
|
149
162
|
"type": "object",
|
|
150
163
|
"additionalProperties": {
|
|
151
164
|
"$ref": "#/definitions/Lib"
|
|
152
|
-
}
|
|
165
|
+
},
|
|
166
|
+
"manifestPath": "$[\"sap.ui5\"].dependencies.libs"
|
|
153
167
|
},
|
|
154
168
|
"components": {
|
|
155
169
|
"description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
|
|
156
170
|
"type": "object",
|
|
157
171
|
"additionalProperties": {
|
|
158
172
|
"$ref": "#/definitions/Component"
|
|
159
|
-
}
|
|
173
|
+
},
|
|
174
|
+
"manifestPath": "$[\"sap.ui5\"].dependencies.components"
|
|
160
175
|
}
|
|
161
176
|
},
|
|
162
177
|
"additionalProperties": false,
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"additionalProperties": {
|
|
143
143
|
"$ref": "#/definitions/sap.fe.macros.richtexteditor.Plugin"
|
|
144
144
|
},
|
|
145
|
-
"isViewNode":
|
|
145
|
+
"isViewNode": false,
|
|
146
146
|
"metadata": {
|
|
147
147
|
"path": [],
|
|
148
148
|
"type": "Aggregation"
|
|
@@ -598,9 +598,8 @@
|
|
|
598
598
|
},
|
|
599
599
|
"formatOptions": {
|
|
600
600
|
"$ref": "#/definitions/sap.fe.macros.FieldFormatOptions",
|
|
601
|
-
"description": "
|
|
601
|
+
"description": "A set of options that can be configured.",
|
|
602
602
|
"artifactType": "XMLProperty",
|
|
603
|
-
"isViewNode": true,
|
|
604
603
|
"metadata": {
|
|
605
604
|
"type": "Property"
|
|
606
605
|
}
|
|
@@ -683,9 +682,8 @@
|
|
|
683
682
|
},
|
|
684
683
|
"formatOptions": {
|
|
685
684
|
"$ref": "#/definitions/sap.fe.macros.FieldFormatOptions",
|
|
686
|
-
"description": "
|
|
685
|
+
"description": "A set of options that can be configured.",
|
|
687
686
|
"artifactType": "XMLProperty",
|
|
688
|
-
"isViewNode": true,
|
|
689
687
|
"metadata": {
|
|
690
688
|
"type": "Property"
|
|
691
689
|
}
|
|
@@ -1030,18 +1028,16 @@
|
|
|
1030
1028
|
"properties": {
|
|
1031
1029
|
"contextPath": {
|
|
1032
1030
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1033
|
-
"description": "
|
|
1031
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1034
1032
|
"artifactType": "XMLProperty",
|
|
1035
|
-
"isViewNode": true,
|
|
1036
1033
|
"metadata": {
|
|
1037
1034
|
"type": "Property"
|
|
1038
1035
|
}
|
|
1039
1036
|
},
|
|
1040
1037
|
"metaPath": {
|
|
1041
1038
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1042
|
-
"description": "
|
|
1039
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
1043
1040
|
"artifactType": "XMLProperty",
|
|
1044
|
-
"isViewNode": true,
|
|
1045
1041
|
"metadata": {
|
|
1046
1042
|
"type": "Property"
|
|
1047
1043
|
}
|
|
@@ -1077,9 +1073,8 @@
|
|
|
1077
1073
|
"properties": {
|
|
1078
1074
|
"contextPath": {
|
|
1079
1075
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1080
|
-
"description": "
|
|
1076
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1081
1077
|
"artifactType": "XMLProperty",
|
|
1082
|
-
"isViewNode": true,
|
|
1083
1078
|
"metadata": {
|
|
1084
1079
|
"type": "Property"
|
|
1085
1080
|
}
|
|
@@ -1095,9 +1090,8 @@
|
|
|
1095
1090
|
},
|
|
1096
1091
|
"metaPath": {
|
|
1097
1092
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1098
|
-
"description": "
|
|
1093
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
1099
1094
|
"artifactType": "XMLProperty",
|
|
1100
|
-
"isViewNode": true,
|
|
1101
1095
|
"metadata": {
|
|
1102
1096
|
"type": "Property"
|
|
1103
1097
|
}
|
|
@@ -1123,7 +1117,7 @@
|
|
|
1123
1117
|
"additionalProperties": {
|
|
1124
1118
|
"$ref": "#/definitions/sap.ui.core.Control"
|
|
1125
1119
|
},
|
|
1126
|
-
"isViewNode":
|
|
1120
|
+
"isViewNode": false,
|
|
1127
1121
|
"metadata": {
|
|
1128
1122
|
"path": [],
|
|
1129
1123
|
"type": "Aggregation"
|
|
@@ -1276,18 +1270,16 @@
|
|
|
1276
1270
|
"properties": {
|
|
1277
1271
|
"contextPath": {
|
|
1278
1272
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1279
|
-
"description": "
|
|
1273
|
+
"description": "The context path provided for the MultiValueField",
|
|
1280
1274
|
"artifactType": "XMLProperty",
|
|
1281
|
-
"isViewNode": true,
|
|
1282
1275
|
"metadata": {
|
|
1283
1276
|
"type": "Property"
|
|
1284
1277
|
}
|
|
1285
1278
|
},
|
|
1286
1279
|
"metaPath": {
|
|
1287
1280
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1288
|
-
"description": "metaPath",
|
|
1281
|
+
"description": "Defines the relative Metadata path to the MultiValueField.\nThe metaPath should point to a Property or DataField.",
|
|
1289
1282
|
"artifactType": "XMLProperty",
|
|
1290
|
-
"isViewNode": true,
|
|
1291
1283
|
"metadata": {
|
|
1292
1284
|
"type": "Property"
|
|
1293
1285
|
}
|
|
@@ -1446,9 +1438,8 @@
|
|
|
1446
1438
|
},
|
|
1447
1439
|
"contextPath": {
|
|
1448
1440
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1449
|
-
"description": "
|
|
1441
|
+
"description": "The context path of the property displayed",
|
|
1450
1442
|
"artifactType": "XMLProperty",
|
|
1451
|
-
"isViewNode": true,
|
|
1452
1443
|
"metadata": {
|
|
1453
1444
|
"type": "Property"
|
|
1454
1445
|
}
|
|
@@ -1463,9 +1454,8 @@
|
|
|
1463
1454
|
},
|
|
1464
1455
|
"metaPath": {
|
|
1465
1456
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1466
|
-
"description": "metaPath",
|
|
1457
|
+
"description": "The metaPath of the displayed property",
|
|
1467
1458
|
"artifactType": "XMLProperty",
|
|
1468
|
-
"isViewNode": true,
|
|
1469
1459
|
"metadata": {
|
|
1470
1460
|
"type": "Property"
|
|
1471
1461
|
}
|
|
@@ -1806,9 +1796,8 @@
|
|
|
1806
1796
|
},
|
|
1807
1797
|
"creationMode": {
|
|
1808
1798
|
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
1809
|
-
"description": "
|
|
1799
|
+
"description": "A set of options that can be configured.",
|
|
1810
1800
|
"artifactType": "XMLProperty",
|
|
1811
|
-
"isViewNode": true,
|
|
1812
1801
|
"metadata": {
|
|
1813
1802
|
"type": "Property"
|
|
1814
1803
|
}
|
|
@@ -2089,9 +2078,8 @@
|
|
|
2089
2078
|
},
|
|
2090
2079
|
"creationMode": {
|
|
2091
2080
|
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
2092
|
-
"description": "
|
|
2081
|
+
"description": "A set of options that can be configured.",
|
|
2093
2082
|
"artifactType": "XMLProperty",
|
|
2094
|
-
"isViewNode": true,
|
|
2095
2083
|
"metadata": {
|
|
2096
2084
|
"type": "Property"
|
|
2097
2085
|
}
|
|
@@ -2345,7 +2333,7 @@
|
|
|
2345
2333
|
},
|
|
2346
2334
|
"sap.fe.macros.table.TableCreationOptions": {
|
|
2347
2335
|
"description": "Create options for the table.",
|
|
2348
|
-
"isViewNode":
|
|
2336
|
+
"isViewNode": false,
|
|
2349
2337
|
"type": "object",
|
|
2350
2338
|
"properties": {
|
|
2351
2339
|
"createAtEnd": {
|
|
@@ -2424,9 +2412,8 @@
|
|
|
2424
2412
|
},
|
|
2425
2413
|
"creationMode": {
|
|
2426
2414
|
"$ref": "#/definitions/sap.fe.macros.table.TreeTableCreationOptions",
|
|
2427
|
-
"description": "
|
|
2415
|
+
"description": "A set of options that can be configured.",
|
|
2428
2416
|
"artifactType": "XMLProperty",
|
|
2429
|
-
"isViewNode": true,
|
|
2430
2417
|
"metadata": {
|
|
2431
2418
|
"type": "Property"
|
|
2432
2419
|
}
|
|
@@ -2700,7 +2687,7 @@
|
|
|
2700
2687
|
},
|
|
2701
2688
|
"sap.fe.macros.table.TreeTableCreationOptions": {
|
|
2702
2689
|
"description": "Create options for the tree table.",
|
|
2703
|
-
"isViewNode":
|
|
2690
|
+
"isViewNode": false,
|
|
2704
2691
|
"type": "object",
|
|
2705
2692
|
"properties": {
|
|
2706
2693
|
"isCreateEnabled": {
|
|
@@ -2813,7 +2800,7 @@
|
|
|
2813
2800
|
},
|
|
2814
2801
|
"sap.fe.macros.FieldFormatOptions": {
|
|
2815
2802
|
"description": "Additional format options for the field.",
|
|
2816
|
-
"isViewNode":
|
|
2803
|
+
"isViewNode": false,
|
|
2817
2804
|
"type": "object",
|
|
2818
2805
|
"properties": {
|
|
2819
2806
|
"displayMode": {
|
|
@@ -2832,9 +2819,8 @@
|
|
|
2832
2819
|
},
|
|
2833
2820
|
"fieldEditStyle": {
|
|
2834
2821
|
"$ref": "#/definitions/sap.fe.macros.field.FieldAPI.FieldEditStyle",
|
|
2835
|
-
"description": "
|
|
2822
|
+
"description": "Determines how the field should be rendered, e.g. as radio buttons. \nIf not all prerequisites are met, the field will default back to the standard rendering.\n",
|
|
2836
2823
|
"artifactType": "XMLProperty",
|
|
2837
|
-
"isViewNode": true,
|
|
2838
2824
|
"metadata": {
|
|
2839
2825
|
"type": "Property"
|
|
2840
2826
|
}
|
|
@@ -2936,7 +2922,7 @@
|
|
|
2936
2922
|
},
|
|
2937
2923
|
"sap.fe.macros.share.ShareOptions": {
|
|
2938
2924
|
"description": "Share Options.",
|
|
2939
|
-
"isViewNode":
|
|
2925
|
+
"isViewNode": false,
|
|
2940
2926
|
"type": "object",
|
|
2941
2927
|
"properties": {},
|
|
2942
2928
|
"additionalProperties": false,
|