@sap/ux-specification 1.124.14 → 1.124.16
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 +45 -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-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 +54 -54
- package/dist/index-min.js.map +3 -3
- package/dist/schemas/v4/BuildingBlocksConfig.json +821 -197
- package/dist/specification/package.json +5 -5
- package/dist/specification/scripts/schema/index.d.ts +2 -0
- package/dist/specification/scripts/schema/index.d.ts.map +1 -0
- package/dist/specification/scripts/schema/index.js +45 -0
- package/dist/specification/scripts/schema/index.js.map +1 -0
- package/dist/specification/scripts/schema/to-json-schema.d.ts +24 -0
- package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -0
- package/dist/specification/scripts/{to-json-schema.js → schema/to-json-schema.js} +17 -13
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +8 -1
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +14 -0
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/utils.d.ts +7 -0
- package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/utils.js +13 -0
- package/dist/specification/src/sync/common/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/overviewPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/overviewPage.js +43 -0
- package/dist/specification/src/sync/v2/generate/overviewPage.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts +59 -0
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +360 -0
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -0
- package/dist/specification/src/sync/v2/generate/utils.d.ts +12 -8
- package/dist/specification/src/sync/v2/generate/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/utils.js +29 -11
- package/dist/specification/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/import/importPage.d.ts +56 -0
- package/dist/specification/src/sync/v2/import/importPage.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/import/importPage.js +289 -0
- package/dist/specification/src/sync/v2/import/importPage.js.map +1 -0
- package/dist/specification/src/sync/v2/utils.d.ts +26 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/utils.js +64 -0
- package/dist/specification/src/sync/v2/utils.js.map +1 -0
- package/dist/types/src/common/types.d.ts +164 -2
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +30 -0
- package/dist/types/src/common/types.js.map +1 -1
- package/package.json +5 -5
- package/dist/specification/scripts/to-json-schema.d.ts +0 -11
- package/dist/specification/scripts/to-json-schema.d.ts.map +0 -1
- package/dist/specification/scripts/to-json-schema.js.map +0 -1
|
@@ -156,6 +156,101 @@
|
|
|
156
156
|
"type": "Control"
|
|
157
157
|
}
|
|
158
158
|
},
|
|
159
|
+
"sap.fe.macros.Field": {
|
|
160
|
+
"description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\n<macros:Field id=\"MyField\" metaPath=\"MyProperty\" />\n\nOverview of Building Blocks\n",
|
|
161
|
+
"isViewNode": true,
|
|
162
|
+
"type": "object",
|
|
163
|
+
"properties": {
|
|
164
|
+
"contextPath": {
|
|
165
|
+
"type": "string",
|
|
166
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
167
|
+
"artifactType": "XMLProperty",
|
|
168
|
+
"metadata": {
|
|
169
|
+
"type": "Property"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"description": {
|
|
173
|
+
"type": "string",
|
|
174
|
+
"description": "This is used to optionally provide an external description that comes from a different model than the oData model.\nThis should be used in conjunction with the value property.",
|
|
175
|
+
"artifactType": "XMLProperty",
|
|
176
|
+
"metadata": {
|
|
177
|
+
"type": "Property"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"metaPath": {
|
|
181
|
+
"type": "string",
|
|
182
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
183
|
+
"artifactType": "XMLProperty",
|
|
184
|
+
"metadata": {
|
|
185
|
+
"type": "Property"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"readOnly": {
|
|
189
|
+
"type": "boolean",
|
|
190
|
+
"description": "An expression that allows you to control the read-only state of the field.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
191
|
+
"artifactType": "XMLProperty",
|
|
192
|
+
"metadata": {
|
|
193
|
+
"type": "Property"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"semanticObject": {
|
|
197
|
+
"type": "string",
|
|
198
|
+
"description": "Option to add semantic objects for a field.\nThis parameter overwrites the semantic objects defined through annotations.\nValid options are either a single semantic object, a stringified array of semantic objects,\na formatter or a single binding expression returning either a single semantic object or an array of semantic objects.",
|
|
199
|
+
"artifactType": "XMLProperty",
|
|
200
|
+
"metadata": {
|
|
201
|
+
"type": "Property"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
"value": {
|
|
205
|
+
"type": "string",
|
|
206
|
+
"description": "This is used to optionally provide an external value that comes from a different model than the oData model.\nIt is designed to work with a field with value help, and without support for complex value help (currency / unit).",
|
|
207
|
+
"artifactType": "XMLProperty",
|
|
208
|
+
"metadata": {
|
|
209
|
+
"type": "Property"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"id": {
|
|
213
|
+
"type": "string",
|
|
214
|
+
"description": "Unique id of control",
|
|
215
|
+
"artifactType": "XMLProperty",
|
|
216
|
+
"metadata": {
|
|
217
|
+
"type": "Property"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"formatOptions": {
|
|
221
|
+
"type": "object",
|
|
222
|
+
"additionalProperties": {
|
|
223
|
+
"$ref": "#/definitions/sap.fe.macros.field.FieldFormatOptions"
|
|
224
|
+
},
|
|
225
|
+
"isViewNode": true,
|
|
226
|
+
"metadata": {
|
|
227
|
+
"path": [],
|
|
228
|
+
"type": "Aggregation"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"change": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"description": "An event containing details is triggered when the value of the field is changed.",
|
|
234
|
+
"artifactType": "XMLProperty",
|
|
235
|
+
"metadata": {
|
|
236
|
+
"type": "Event"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"liveChange": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"description": "An event containing details is triggered when the value of the field is live changed.",
|
|
242
|
+
"artifactType": "XMLProperty",
|
|
243
|
+
"metadata": {
|
|
244
|
+
"type": "Event"
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"additionalProperties": false,
|
|
249
|
+
"metadata": {
|
|
250
|
+
"path": [],
|
|
251
|
+
"type": "Control"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
159
254
|
"sap.fe.macros.KPITag": {
|
|
160
255
|
"description": "Building block used to create a KPI tag.",
|
|
161
256
|
"isViewNode": true,
|
|
@@ -460,6 +555,37 @@
|
|
|
460
555
|
"type": "Control"
|
|
461
556
|
}
|
|
462
557
|
},
|
|
558
|
+
"sap.fe.macros.Share": {
|
|
559
|
+
"description": "Building block used to create the ‘Share’ functionality.\n\nPlease note that the 'Share in SAP Jam' option is only available on platforms that are integrated with SAP Jam.\n\nIf you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then the 'Save as Tile' option is not visible.\nUsage example:\n\n<macros:Share\nid=\"someID\"\nvisible=\"true\"\n/>\n\nOverview of Building Blocks\n\t\t\t\n",
|
|
560
|
+
"isViewNode": true,
|
|
561
|
+
"type": "object",
|
|
562
|
+
"properties": {
|
|
563
|
+
"id": {
|
|
564
|
+
"type": "string",
|
|
565
|
+
"description": "Unique id of control",
|
|
566
|
+
"artifactType": "XMLProperty",
|
|
567
|
+
"metadata": {
|
|
568
|
+
"type": "Property"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"shareOptions": {
|
|
572
|
+
"type": "object",
|
|
573
|
+
"additionalProperties": {
|
|
574
|
+
"$ref": "#/definitions/sap.fe.macros.share.ShareOptions"
|
|
575
|
+
},
|
|
576
|
+
"isViewNode": true,
|
|
577
|
+
"metadata": {
|
|
578
|
+
"path": [],
|
|
579
|
+
"type": "Aggregation"
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"additionalProperties": false,
|
|
584
|
+
"metadata": {
|
|
585
|
+
"path": [],
|
|
586
|
+
"type": "Control"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
463
589
|
"sap.fe.macros.VariantManagement": {
|
|
464
590
|
"description": "Building block used to create a Variant Management based on the metadata provided by OData V4.\nUsage example:\n\n<macro:VariantManagement\nid=\"SomeUniqueIdentifier\"\nfor=\"{listOfControlIds>}\"\n/>\n\nOverview of Building Blocks\n\t\t\t\n",
|
|
465
591
|
"isViewNode": true,
|
|
@@ -918,101 +1044,6 @@
|
|
|
918
1044
|
"type": "Control"
|
|
919
1045
|
}
|
|
920
1046
|
},
|
|
921
|
-
"sap.fe.macros.Field": {
|
|
922
|
-
"description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\n<macros:Field id=\"MyField\" metaPath=\"MyProperty\" />\n\nOverview of Building Blocks\n",
|
|
923
|
-
"isViewNode": true,
|
|
924
|
-
"type": "object",
|
|
925
|
-
"properties": {
|
|
926
|
-
"contextPath": {
|
|
927
|
-
"type": "string",
|
|
928
|
-
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
929
|
-
"artifactType": "XMLProperty",
|
|
930
|
-
"metadata": {
|
|
931
|
-
"type": "Property"
|
|
932
|
-
}
|
|
933
|
-
},
|
|
934
|
-
"description": {
|
|
935
|
-
"type": "string",
|
|
936
|
-
"description": "This is used to optionally provide an external description that comes from a different model than the oData model.\nThis should be used in conjunction with the value property.",
|
|
937
|
-
"artifactType": "XMLProperty",
|
|
938
|
-
"metadata": {
|
|
939
|
-
"type": "Property"
|
|
940
|
-
}
|
|
941
|
-
},
|
|
942
|
-
"metaPath": {
|
|
943
|
-
"type": "string",
|
|
944
|
-
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
945
|
-
"artifactType": "XMLProperty",
|
|
946
|
-
"metadata": {
|
|
947
|
-
"type": "Property"
|
|
948
|
-
}
|
|
949
|
-
},
|
|
950
|
-
"readOnly": {
|
|
951
|
-
"type": "boolean",
|
|
952
|
-
"description": "An expression that allows you to control the read-only state of the field.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
953
|
-
"artifactType": "XMLProperty",
|
|
954
|
-
"metadata": {
|
|
955
|
-
"type": "Property"
|
|
956
|
-
}
|
|
957
|
-
},
|
|
958
|
-
"semanticObject": {
|
|
959
|
-
"type": "string",
|
|
960
|
-
"description": "Option to add semantic objects for a field.\nThis parameter overwrites the semantic objects defined through annotations.\nValid options are either a single semantic object, a stringified array of semantic objects,\na formatter or a single binding expression returning either a single semantic object or an array of semantic objects.",
|
|
961
|
-
"artifactType": "XMLProperty",
|
|
962
|
-
"metadata": {
|
|
963
|
-
"type": "Property"
|
|
964
|
-
}
|
|
965
|
-
},
|
|
966
|
-
"value": {
|
|
967
|
-
"type": "string",
|
|
968
|
-
"description": "This is used to optionally provide an external value that comes from a different model than the oData model.\nIt is designed to work with a field with value help, and without support for complex value help (currency / unit).",
|
|
969
|
-
"artifactType": "XMLProperty",
|
|
970
|
-
"metadata": {
|
|
971
|
-
"type": "Property"
|
|
972
|
-
}
|
|
973
|
-
},
|
|
974
|
-
"id": {
|
|
975
|
-
"type": "string",
|
|
976
|
-
"description": "Unique id of control",
|
|
977
|
-
"artifactType": "XMLProperty",
|
|
978
|
-
"metadata": {
|
|
979
|
-
"type": "Property"
|
|
980
|
-
}
|
|
981
|
-
},
|
|
982
|
-
"formatOptions": {
|
|
983
|
-
"type": "object",
|
|
984
|
-
"additionalProperties": {
|
|
985
|
-
"$ref": "#/definitions/sap.fe.macros.field.FieldFormatOptions"
|
|
986
|
-
},
|
|
987
|
-
"isViewNode": true,
|
|
988
|
-
"metadata": {
|
|
989
|
-
"path": [],
|
|
990
|
-
"type": "Aggregation"
|
|
991
|
-
}
|
|
992
|
-
},
|
|
993
|
-
"change": {
|
|
994
|
-
"type": "string",
|
|
995
|
-
"description": "An event containing details is triggered when the value of the field is changed.",
|
|
996
|
-
"artifactType": "XMLProperty",
|
|
997
|
-
"metadata": {
|
|
998
|
-
"type": "Event"
|
|
999
|
-
}
|
|
1000
|
-
},
|
|
1001
|
-
"liveChange": {
|
|
1002
|
-
"type": "string",
|
|
1003
|
-
"description": "An event containing details is triggered when the value of the field is live changed.",
|
|
1004
|
-
"artifactType": "XMLProperty",
|
|
1005
|
-
"metadata": {
|
|
1006
|
-
"type": "Event"
|
|
1007
|
-
}
|
|
1008
|
-
}
|
|
1009
|
-
},
|
|
1010
|
-
"additionalProperties": false,
|
|
1011
|
-
"metadata": {
|
|
1012
|
-
"path": [],
|
|
1013
|
-
"type": "Control"
|
|
1014
|
-
}
|
|
1015
|
-
},
|
|
1016
1047
|
"sap.fe.macros.field.FieldFormatOptions": {
|
|
1017
1048
|
"description": "Additional format options for the field.",
|
|
1018
1049
|
"isViewNode": true,
|
|
@@ -1435,7 +1466,7 @@
|
|
|
1435
1466
|
},
|
|
1436
1467
|
"showMessages": {
|
|
1437
1468
|
"type": "boolean",
|
|
1438
|
-
"description": "
|
|
1469
|
+
"description": "This property is not required at filter field level. To achieve the desired behavior, specify the showMessages property in the FilterBar building block.",
|
|
1439
1470
|
"artifactType": "XMLProperty",
|
|
1440
1471
|
"metadata": {
|
|
1441
1472
|
"type": "Property"
|
|
@@ -1764,27 +1795,11 @@
|
|
|
1764
1795
|
"type": "Control"
|
|
1765
1796
|
}
|
|
1766
1797
|
},
|
|
1767
|
-
"sap.fe.macros.
|
|
1768
|
-
"description": "
|
|
1798
|
+
"sap.fe.macros.share.ShareOptions": {
|
|
1799
|
+
"description": "Share Options.",
|
|
1769
1800
|
"isViewNode": true,
|
|
1770
1801
|
"type": "object",
|
|
1771
1802
|
"properties": {
|
|
1772
|
-
"shareOptions": {
|
|
1773
|
-
"type": "object",
|
|
1774
|
-
"description": "Supported Share options sap.fe.macros.share.ShareOptions.",
|
|
1775
|
-
"artifactType": "XMLProperty",
|
|
1776
|
-
"metadata": {
|
|
1777
|
-
"type": "Property"
|
|
1778
|
-
}
|
|
1779
|
-
},
|
|
1780
|
-
"visible": {
|
|
1781
|
-
"type": "boolean",
|
|
1782
|
-
"description": "Whether the share control should be visible on the screen.",
|
|
1783
|
-
"artifactType": "XMLProperty",
|
|
1784
|
-
"metadata": {
|
|
1785
|
-
"type": "Property"
|
|
1786
|
-
}
|
|
1787
|
-
},
|
|
1788
1803
|
"id": {
|
|
1789
1804
|
"type": "string",
|
|
1790
1805
|
"description": "Unique id of control",
|
|
@@ -1813,6 +1828,26 @@
|
|
|
1813
1828
|
"type": "Property"
|
|
1814
1829
|
}
|
|
1815
1830
|
},
|
|
1831
|
+
"command": {
|
|
1832
|
+
"type": "string",
|
|
1833
|
+
"description": "Determines the shortcut combination to trigger the action",
|
|
1834
|
+
"artifactType": "XMLProperty",
|
|
1835
|
+
"metadata": {
|
|
1836
|
+
"type": "Property"
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
"enableOnSelect": {
|
|
1840
|
+
"type": "string",
|
|
1841
|
+
"description": "Determines whether the action requires selecting one item or multiple items.\nAllowed values are `single` and `multi`",
|
|
1842
|
+
"artifactType": "XMLProperty",
|
|
1843
|
+
"metadata": {
|
|
1844
|
+
"type": "Property"
|
|
1845
|
+
},
|
|
1846
|
+
"enum": [
|
|
1847
|
+
"multi",
|
|
1848
|
+
"single"
|
|
1849
|
+
]
|
|
1850
|
+
},
|
|
1816
1851
|
"enabled": {
|
|
1817
1852
|
"type": "boolean",
|
|
1818
1853
|
"description": "Enables or disables the action",
|
|
@@ -1857,14 +1892,435 @@
|
|
|
1857
1892
|
"type": "Property"
|
|
1858
1893
|
}
|
|
1859
1894
|
},
|
|
1860
|
-
"text": {
|
|
1861
|
-
"type": "string",
|
|
1862
|
-
"description": "The text that will be displayed for this action",
|
|
1895
|
+
"text": {
|
|
1896
|
+
"type": "string",
|
|
1897
|
+
"description": "The text that will be displayed for this action",
|
|
1898
|
+
"artifactType": "XMLProperty",
|
|
1899
|
+
"metadata": {
|
|
1900
|
+
"type": "Property"
|
|
1901
|
+
},
|
|
1902
|
+
"i18nClassification": "BUT: Text of the action button"
|
|
1903
|
+
},
|
|
1904
|
+
"visible": {
|
|
1905
|
+
"type": "boolean",
|
|
1906
|
+
"description": "Determines whether the action is visible.",
|
|
1907
|
+
"artifactType": "XMLProperty",
|
|
1908
|
+
"metadata": {
|
|
1909
|
+
"type": "Property"
|
|
1910
|
+
}
|
|
1911
|
+
},
|
|
1912
|
+
"id": {
|
|
1913
|
+
"type": "string",
|
|
1914
|
+
"description": "Unique id of control",
|
|
1915
|
+
"artifactType": "XMLProperty",
|
|
1916
|
+
"metadata": {
|
|
1917
|
+
"type": "Property"
|
|
1918
|
+
}
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
"additionalProperties": false,
|
|
1922
|
+
"metadata": {
|
|
1923
|
+
"path": [],
|
|
1924
|
+
"type": "Control"
|
|
1925
|
+
}
|
|
1926
|
+
},
|
|
1927
|
+
"sap.fe.macros.table.ActionGroup": {
|
|
1928
|
+
"description": "Definition of a custom ActionGroup to be used inside the table toolbar",
|
|
1929
|
+
"isViewNode": true,
|
|
1930
|
+
"type": "object",
|
|
1931
|
+
"properties": {
|
|
1932
|
+
"anchor": {
|
|
1933
|
+
"type": "string",
|
|
1934
|
+
"description": "Reference to the key of another action or action group already displayed in the toolbar to properly place this one",
|
|
1935
|
+
"artifactType": "XMLProperty",
|
|
1936
|
+
"metadata": {
|
|
1937
|
+
"type": "Property"
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"defaultAction": {
|
|
1941
|
+
"type": "string",
|
|
1942
|
+
"description": "Determines the default action to be executed on the action group.",
|
|
1943
|
+
"artifactType": "XMLProperty",
|
|
1944
|
+
"metadata": {
|
|
1945
|
+
"type": "Property"
|
|
1946
|
+
}
|
|
1947
|
+
},
|
|
1948
|
+
"key": {
|
|
1949
|
+
"type": "string",
|
|
1950
|
+
"description": "Unique identifier of the ActionGroup",
|
|
1951
|
+
"artifactType": "XMLProperty",
|
|
1952
|
+
"metadata": {
|
|
1953
|
+
"type": "Property"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
"placement": {
|
|
1957
|
+
"type": "string",
|
|
1958
|
+
"description": "Determines where this action group should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
1959
|
+
"artifactType": "XMLProperty",
|
|
1960
|
+
"metadata": {
|
|
1961
|
+
"type": "Property"
|
|
1962
|
+
},
|
|
1963
|
+
"enum": [
|
|
1964
|
+
"After",
|
|
1965
|
+
"Before"
|
|
1966
|
+
]
|
|
1967
|
+
},
|
|
1968
|
+
"text": {
|
|
1969
|
+
"type": "string",
|
|
1970
|
+
"description": "The text that will be displayed for this action group",
|
|
1971
|
+
"artifactType": "XMLProperty",
|
|
1972
|
+
"metadata": {
|
|
1973
|
+
"type": "Property"
|
|
1974
|
+
},
|
|
1975
|
+
"i18nClassification": "BUT: Text of the action group button"
|
|
1976
|
+
},
|
|
1977
|
+
"id": {
|
|
1978
|
+
"type": "string",
|
|
1979
|
+
"description": "Unique id of control",
|
|
1980
|
+
"artifactType": "XMLProperty",
|
|
1981
|
+
"metadata": {
|
|
1982
|
+
"type": "Property"
|
|
1983
|
+
}
|
|
1984
|
+
},
|
|
1985
|
+
"actions": {
|
|
1986
|
+
"type": "object",
|
|
1987
|
+
"additionalProperties": {
|
|
1988
|
+
"$ref": "#/definitions/sap.fe.macros.table.Action"
|
|
1989
|
+
},
|
|
1990
|
+
"isViewNode": true,
|
|
1991
|
+
"metadata": {
|
|
1992
|
+
"path": [],
|
|
1993
|
+
"type": "Aggregation"
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1996
|
+
},
|
|
1997
|
+
"additionalProperties": false,
|
|
1998
|
+
"metadata": {
|
|
1999
|
+
"path": [],
|
|
2000
|
+
"type": "Control"
|
|
2001
|
+
}
|
|
2002
|
+
},
|
|
2003
|
+
"sap.fe.macros.table.ActionGroupOverride": {
|
|
2004
|
+
"description": "Definition of an action group override to be used inside the Table building block.",
|
|
2005
|
+
"isViewNode": true,
|
|
2006
|
+
"type": "object",
|
|
2007
|
+
"properties": {
|
|
2008
|
+
"anchor": {
|
|
2009
|
+
"type": "string",
|
|
2010
|
+
"description": "Reference to the key of another action or action group already displayed in the toolbar to properly place this one",
|
|
2011
|
+
"artifactType": "XMLProperty",
|
|
2012
|
+
"metadata": {
|
|
2013
|
+
"type": "Property"
|
|
2014
|
+
}
|
|
2015
|
+
},
|
|
2016
|
+
"key": {
|
|
2017
|
+
"type": "string",
|
|
2018
|
+
"description": "Unique identifier of the ActionGroup to overridden.",
|
|
2019
|
+
"artifactType": "XMLProperty",
|
|
2020
|
+
"metadata": {
|
|
2021
|
+
"type": "Property"
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
"placement": {
|
|
2025
|
+
"type": "string",
|
|
2026
|
+
"description": "Determines where this action group should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
2027
|
+
"artifactType": "XMLProperty",
|
|
2028
|
+
"metadata": {
|
|
2029
|
+
"type": "Property"
|
|
2030
|
+
},
|
|
2031
|
+
"enum": [
|
|
2032
|
+
"After",
|
|
2033
|
+
"Before"
|
|
2034
|
+
]
|
|
2035
|
+
},
|
|
2036
|
+
"id": {
|
|
2037
|
+
"type": "string",
|
|
2038
|
+
"description": "Unique id of control",
|
|
2039
|
+
"artifactType": "XMLProperty",
|
|
2040
|
+
"metadata": {
|
|
2041
|
+
"type": "Property"
|
|
2042
|
+
}
|
|
2043
|
+
},
|
|
2044
|
+
"actions": {
|
|
2045
|
+
"type": "object",
|
|
2046
|
+
"additionalProperties": {
|
|
2047
|
+
"$ref": "#/definitions/sap.fe.macros.table.Action"
|
|
2048
|
+
},
|
|
2049
|
+
"isViewNode": true,
|
|
2050
|
+
"metadata": {
|
|
2051
|
+
"path": [],
|
|
2052
|
+
"type": "Aggregation"
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"additionalProperties": false,
|
|
2057
|
+
"metadata": {
|
|
2058
|
+
"path": [],
|
|
2059
|
+
"type": "Control"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"sap.fe.macros.table.ActionOverride": {
|
|
2063
|
+
"description": "Definition of an override for the action to be used inside the Table building block.",
|
|
2064
|
+
"isViewNode": true,
|
|
2065
|
+
"type": "object",
|
|
2066
|
+
"properties": {
|
|
2067
|
+
"anchor": {
|
|
2068
|
+
"type": "string",
|
|
2069
|
+
"description": "Reference to the key of another action already displayed in the toolbar to properly place this one",
|
|
2070
|
+
"artifactType": "XMLProperty",
|
|
2071
|
+
"metadata": {
|
|
2072
|
+
"type": "Property"
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
"command": {
|
|
2076
|
+
"type": "string",
|
|
2077
|
+
"description": "Determines the shortcut combination to trigger the action",
|
|
2078
|
+
"artifactType": "XMLProperty",
|
|
2079
|
+
"metadata": {
|
|
2080
|
+
"type": "Property"
|
|
2081
|
+
}
|
|
2082
|
+
},
|
|
2083
|
+
"defaultValuesFunction": {
|
|
2084
|
+
"type": "string",
|
|
2085
|
+
"description": "Determines the function to get the default values of the action.",
|
|
2086
|
+
"artifactType": "XMLProperty",
|
|
2087
|
+
"metadata": {
|
|
2088
|
+
"type": "Property"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
"enableAutoScroll": {
|
|
2092
|
+
"type": "boolean",
|
|
2093
|
+
"description": "Determines if the auto scroll is enabled after executing the action.",
|
|
2094
|
+
"artifactType": "XMLProperty",
|
|
2095
|
+
"metadata": {
|
|
2096
|
+
"type": "Property"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"enableOnSelect": {
|
|
2100
|
+
"type": "string",
|
|
2101
|
+
"description": "Determines whether the action requires selecting one item or multiple items.\nAllowed values are `single` and `multi`",
|
|
2102
|
+
"artifactType": "XMLProperty",
|
|
2103
|
+
"metadata": {
|
|
2104
|
+
"type": "Property"
|
|
2105
|
+
},
|
|
2106
|
+
"enum": [
|
|
2107
|
+
"multi",
|
|
2108
|
+
"single"
|
|
2109
|
+
]
|
|
2110
|
+
},
|
|
2111
|
+
"enabled": {
|
|
2112
|
+
"type": "boolean",
|
|
2113
|
+
"description": "Enables or disables the action",
|
|
2114
|
+
"artifactType": "XMLProperty",
|
|
2115
|
+
"metadata": {
|
|
2116
|
+
"type": "Property"
|
|
2117
|
+
}
|
|
2118
|
+
},
|
|
2119
|
+
"key": {
|
|
2120
|
+
"type": "string",
|
|
2121
|
+
"description": "Unique identifier of the action to overridden.",
|
|
2122
|
+
"artifactType": "XMLProperty",
|
|
2123
|
+
"metadata": {
|
|
2124
|
+
"type": "Property"
|
|
2125
|
+
}
|
|
2126
|
+
},
|
|
2127
|
+
"navigateToInstance": {
|
|
2128
|
+
"type": "boolean",
|
|
2129
|
+
"description": "Determines whether there is a navigation after executing the action.",
|
|
2130
|
+
"artifactType": "XMLProperty",
|
|
2131
|
+
"metadata": {
|
|
2132
|
+
"type": "Property"
|
|
2133
|
+
}
|
|
2134
|
+
},
|
|
2135
|
+
"placement": {
|
|
2136
|
+
"type": "string",
|
|
2137
|
+
"description": "Defines where this action should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
2138
|
+
"artifactType": "XMLProperty",
|
|
2139
|
+
"metadata": {
|
|
2140
|
+
"type": "Property"
|
|
2141
|
+
},
|
|
2142
|
+
"enum": [
|
|
2143
|
+
"After",
|
|
2144
|
+
"Before"
|
|
2145
|
+
]
|
|
2146
|
+
},
|
|
2147
|
+
"visible": {
|
|
2148
|
+
"type": "boolean",
|
|
2149
|
+
"description": "Determines whether the action is visible.",
|
|
2150
|
+
"artifactType": "XMLProperty",
|
|
2151
|
+
"metadata": {
|
|
2152
|
+
"type": "Property"
|
|
2153
|
+
}
|
|
2154
|
+
},
|
|
2155
|
+
"id": {
|
|
2156
|
+
"type": "string",
|
|
2157
|
+
"description": "Unique id of control",
|
|
2158
|
+
"artifactType": "XMLProperty",
|
|
2159
|
+
"metadata": {
|
|
2160
|
+
"type": "Property"
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
},
|
|
2164
|
+
"additionalProperties": false,
|
|
2165
|
+
"metadata": {
|
|
2166
|
+
"path": [],
|
|
2167
|
+
"type": "Control"
|
|
2168
|
+
}
|
|
2169
|
+
},
|
|
2170
|
+
"sap.fe.macros.table.Column": {
|
|
2171
|
+
"description": "Definition of a custom column to be used inside the table.\nThe template for the column has to be provided as the default aggregation\n",
|
|
2172
|
+
"isViewNode": true,
|
|
2173
|
+
"type": "object",
|
|
2174
|
+
"properties": {
|
|
2175
|
+
"anchor": {
|
|
2176
|
+
"type": "string",
|
|
2177
|
+
"description": "Reference to the key of another column already displayed in the table to properly place this one",
|
|
2178
|
+
"artifactType": "XMLProperty",
|
|
2179
|
+
"metadata": {
|
|
2180
|
+
"type": "Property"
|
|
2181
|
+
}
|
|
2182
|
+
},
|
|
2183
|
+
"header": {
|
|
2184
|
+
"type": "string",
|
|
2185
|
+
"description": "The text that will be displayed for this column header",
|
|
2186
|
+
"artifactType": "XMLProperty",
|
|
2187
|
+
"metadata": {
|
|
2188
|
+
"type": "Property"
|
|
2189
|
+
},
|
|
2190
|
+
"i18nClassification": "COL: Header of the column"
|
|
2191
|
+
},
|
|
2192
|
+
"horizontalAlign": {
|
|
2193
|
+
"type": "string",
|
|
2194
|
+
"description": "Aligns the header as well as the content horizontally",
|
|
2195
|
+
"artifactType": "XMLProperty",
|
|
2196
|
+
"metadata": {
|
|
2197
|
+
"type": "Property"
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2200
|
+
"importance": {
|
|
2201
|
+
"type": "string",
|
|
2202
|
+
"description": "Defines the column importance.\nYou can define which columns should be automatically moved to the pop-in area based on their importance\n",
|
|
2203
|
+
"artifactType": "XMLProperty",
|
|
2204
|
+
"metadata": {
|
|
2205
|
+
"type": "Property"
|
|
2206
|
+
}
|
|
2207
|
+
},
|
|
2208
|
+
"key": {
|
|
2209
|
+
"type": "string",
|
|
2210
|
+
"description": "Unique identifier of the column",
|
|
2211
|
+
"artifactType": "XMLProperty",
|
|
2212
|
+
"metadata": {
|
|
2213
|
+
"type": "Property"
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
"placement": {
|
|
2217
|
+
"type": "string",
|
|
2218
|
+
"description": "Determines where this column should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
2219
|
+
"artifactType": "XMLProperty",
|
|
2220
|
+
"metadata": {
|
|
2221
|
+
"type": "Property"
|
|
2222
|
+
},
|
|
2223
|
+
"enum": [
|
|
2224
|
+
"After",
|
|
2225
|
+
"Before"
|
|
2226
|
+
]
|
|
2227
|
+
},
|
|
2228
|
+
"properties": {
|
|
2229
|
+
"$ref": "#/definitions/string[]",
|
|
2230
|
+
"description": "properties",
|
|
2231
|
+
"artifactType": "XMLProperty",
|
|
2232
|
+
"isViewNode": true,
|
|
2233
|
+
"metadata": {
|
|
2234
|
+
"type": "Property"
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
2237
|
+
"width": {
|
|
2238
|
+
"type": "string",
|
|
2239
|
+
"description": "Determines the column's width.\nAllowed values are 'auto', 'value', and 'inherit', according to sap.ui.core.CSSSize\n",
|
|
2240
|
+
"artifactType": "XMLProperty",
|
|
2241
|
+
"metadata": {
|
|
2242
|
+
"type": "Property"
|
|
2243
|
+
}
|
|
2244
|
+
},
|
|
2245
|
+
"widthIncludingColumnHeader": {
|
|
2246
|
+
"type": "boolean",
|
|
2247
|
+
"description": "Indicates if the column header should be a part of the width calculation.",
|
|
2248
|
+
"artifactType": "XMLProperty",
|
|
2249
|
+
"metadata": {
|
|
2250
|
+
"type": "Property"
|
|
2251
|
+
}
|
|
2252
|
+
},
|
|
2253
|
+
"id": {
|
|
2254
|
+
"type": "string",
|
|
2255
|
+
"description": "Unique id of control",
|
|
2256
|
+
"artifactType": "XMLProperty",
|
|
2257
|
+
"metadata": {
|
|
2258
|
+
"type": "Property"
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
2261
|
+
"exportSettings": {
|
|
2262
|
+
"type": "object",
|
|
2263
|
+
"additionalProperties": {
|
|
2264
|
+
"$ref": "#/definitions/sap.fe.macros.table.ColumnExportSettings"
|
|
2265
|
+
},
|
|
2266
|
+
"isViewNode": true,
|
|
2267
|
+
"metadata": {
|
|
2268
|
+
"path": [],
|
|
2269
|
+
"type": "Aggregation"
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
},
|
|
2273
|
+
"additionalProperties": false,
|
|
2274
|
+
"metadata": {
|
|
2275
|
+
"path": [],
|
|
2276
|
+
"type": "Control"
|
|
2277
|
+
}
|
|
2278
|
+
},
|
|
2279
|
+
"sap.fe.macros.table.ColumnExportSettings": {
|
|
2280
|
+
"description": "Definition of the export settings applied to a column within the table.",
|
|
2281
|
+
"isViewNode": true,
|
|
2282
|
+
"type": "object",
|
|
2283
|
+
"properties": {
|
|
2284
|
+
"property": {
|
|
2285
|
+
"$ref": "#/definitions/string[]",
|
|
2286
|
+
"description": "property",
|
|
2287
|
+
"artifactType": "XMLProperty",
|
|
2288
|
+
"isViewNode": true,
|
|
2289
|
+
"metadata": {
|
|
2290
|
+
"type": "Property"
|
|
2291
|
+
}
|
|
2292
|
+
},
|
|
2293
|
+
"template": {
|
|
2294
|
+
"type": "string",
|
|
2295
|
+
"description": "Determines a formatting template that supports indexed placeholders within curly brackets.",
|
|
2296
|
+
"artifactType": "XMLProperty",
|
|
2297
|
+
"metadata": {
|
|
2298
|
+
"type": "Property"
|
|
2299
|
+
}
|
|
2300
|
+
},
|
|
2301
|
+
"type": {
|
|
2302
|
+
"type": "string",
|
|
2303
|
+
"description": "Determines the data type of the field",
|
|
2304
|
+
"artifactType": "XMLProperty",
|
|
2305
|
+
"metadata": {
|
|
2306
|
+
"type": "Property"
|
|
2307
|
+
}
|
|
2308
|
+
},
|
|
2309
|
+
"width": {
|
|
2310
|
+
"type": "number",
|
|
2311
|
+
"description": "Determines the width of the column in characters",
|
|
2312
|
+
"artifactType": "XMLProperty",
|
|
2313
|
+
"metadata": {
|
|
2314
|
+
"type": "Property"
|
|
2315
|
+
}
|
|
2316
|
+
},
|
|
2317
|
+
"wrap": {
|
|
2318
|
+
"type": "boolean",
|
|
2319
|
+
"description": "Determines if the content needs to be wrapped.",
|
|
1863
2320
|
"artifactType": "XMLProperty",
|
|
1864
2321
|
"metadata": {
|
|
1865
2322
|
"type": "Property"
|
|
1866
|
-
}
|
|
1867
|
-
"i18nClassification": "BUT: Text of the action button"
|
|
2323
|
+
}
|
|
1868
2324
|
},
|
|
1869
2325
|
"id": {
|
|
1870
2326
|
"type": "string",
|
|
@@ -1881,47 +2337,50 @@
|
|
|
1881
2337
|
"type": "Control"
|
|
1882
2338
|
}
|
|
1883
2339
|
},
|
|
1884
|
-
"sap.fe.macros.table.
|
|
1885
|
-
"description": "Definition of
|
|
2340
|
+
"sap.fe.macros.table.ColumnOverride": {
|
|
2341
|
+
"description": "Definition of an override for the column to be used inside the Table building block.",
|
|
1886
2342
|
"isViewNode": true,
|
|
1887
2343
|
"type": "object",
|
|
1888
2344
|
"properties": {
|
|
1889
|
-
"
|
|
2345
|
+
"horizontalAlign": {
|
|
1890
2346
|
"type": "string",
|
|
1891
|
-
"description": "
|
|
2347
|
+
"description": "Aligns the header as well as the content horizontally",
|
|
1892
2348
|
"artifactType": "XMLProperty",
|
|
1893
2349
|
"metadata": {
|
|
1894
2350
|
"type": "Property"
|
|
1895
2351
|
}
|
|
1896
2352
|
},
|
|
1897
|
-
"
|
|
2353
|
+
"importance": {
|
|
1898
2354
|
"type": "string",
|
|
1899
|
-
"description": "
|
|
2355
|
+
"description": "Defines the importance of the column.\nYou can define which columns should be automatically moved to the pop-in area based on their importance\n",
|
|
1900
2356
|
"artifactType": "XMLProperty",
|
|
1901
2357
|
"metadata": {
|
|
1902
2358
|
"type": "Property"
|
|
1903
2359
|
}
|
|
1904
2360
|
},
|
|
1905
|
-
"
|
|
2361
|
+
"key": {
|
|
1906
2362
|
"type": "string",
|
|
1907
|
-
"description": "
|
|
2363
|
+
"description": "Unique identifier of the column to overridden.",
|
|
1908
2364
|
"artifactType": "XMLProperty",
|
|
1909
2365
|
"metadata": {
|
|
1910
2366
|
"type": "Property"
|
|
1911
|
-
}
|
|
1912
|
-
"enum": [
|
|
1913
|
-
"After",
|
|
1914
|
-
"Before"
|
|
1915
|
-
]
|
|
2367
|
+
}
|
|
1916
2368
|
},
|
|
1917
|
-
"
|
|
2369
|
+
"width": {
|
|
1918
2370
|
"type": "string",
|
|
1919
|
-
"description": "
|
|
2371
|
+
"description": "Determines the column's width.\nAllowed values are 'auto', 'value', and 'inherit', according to sap.ui.core.CSSSize\n",
|
|
1920
2372
|
"artifactType": "XMLProperty",
|
|
1921
2373
|
"metadata": {
|
|
1922
2374
|
"type": "Property"
|
|
1923
|
-
}
|
|
1924
|
-
|
|
2375
|
+
}
|
|
2376
|
+
},
|
|
2377
|
+
"widthIncludingColumnHeader": {
|
|
2378
|
+
"type": "boolean",
|
|
2379
|
+
"description": "Indicates if the column header should be a part of the width calculation.",
|
|
2380
|
+
"artifactType": "XMLProperty",
|
|
2381
|
+
"metadata": {
|
|
2382
|
+
"type": "Property"
|
|
2383
|
+
}
|
|
1925
2384
|
},
|
|
1926
2385
|
"id": {
|
|
1927
2386
|
"type": "string",
|
|
@@ -1931,10 +2390,10 @@
|
|
|
1931
2390
|
"type": "Property"
|
|
1932
2391
|
}
|
|
1933
2392
|
},
|
|
1934
|
-
"
|
|
2393
|
+
"exportSettings": {
|
|
1935
2394
|
"type": "object",
|
|
1936
2395
|
"additionalProperties": {
|
|
1937
|
-
"$ref": "#/definitions/sap.fe.macros.table.
|
|
2396
|
+
"$ref": "#/definitions/sap.fe.macros.table.ColumnExportSettings"
|
|
1938
2397
|
},
|
|
1939
2398
|
"isViewNode": true,
|
|
1940
2399
|
"metadata": {
|
|
@@ -1949,84 +2408,84 @@
|
|
|
1949
2408
|
"type": "Control"
|
|
1950
2409
|
}
|
|
1951
2410
|
},
|
|
1952
|
-
"sap.fe.macros.table.
|
|
1953
|
-
"description": "Definition of
|
|
2411
|
+
"sap.fe.macros.table.MassEdit": {
|
|
2412
|
+
"description": "Definition of the mass edit to be used inside the table.",
|
|
1954
2413
|
"isViewNode": true,
|
|
1955
2414
|
"type": "object",
|
|
1956
2415
|
"properties": {
|
|
1957
|
-
"
|
|
1958
|
-
"
|
|
1959
|
-
"description": "
|
|
2416
|
+
"ignoredFields": {
|
|
2417
|
+
"$ref": "#/definitions/string[]",
|
|
2418
|
+
"description": "ignoredFields",
|
|
1960
2419
|
"artifactType": "XMLProperty",
|
|
2420
|
+
"isViewNode": true,
|
|
1961
2421
|
"metadata": {
|
|
1962
2422
|
"type": "Property"
|
|
1963
2423
|
}
|
|
1964
2424
|
},
|
|
1965
|
-
"
|
|
2425
|
+
"operationGroupingMode": {
|
|
1966
2426
|
"type": "string",
|
|
1967
|
-
"description": "
|
|
2427
|
+
"description": "Defines the mode of the operation grouping to save the new values\nAllowed values are `ChangeSet` and `Isolated`",
|
|
1968
2428
|
"artifactType": "XMLProperty",
|
|
1969
2429
|
"metadata": {
|
|
1970
2430
|
"type": "Property"
|
|
1971
2431
|
},
|
|
1972
|
-
"
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
"description": "Aligns the header as well as the content horizontally",
|
|
1977
|
-
"artifactType": "XMLProperty",
|
|
1978
|
-
"metadata": {
|
|
1979
|
-
"type": "Property"
|
|
1980
|
-
}
|
|
2432
|
+
"enum": [
|
|
2433
|
+
"ChangeSet",
|
|
2434
|
+
"Isolated"
|
|
2435
|
+
]
|
|
1981
2436
|
},
|
|
1982
|
-
"
|
|
1983
|
-
"
|
|
1984
|
-
"description": "
|
|
2437
|
+
"visibleFields": {
|
|
2438
|
+
"$ref": "#/definitions/string[]",
|
|
2439
|
+
"description": "visibleFields",
|
|
1985
2440
|
"artifactType": "XMLProperty",
|
|
2441
|
+
"isViewNode": true,
|
|
1986
2442
|
"metadata": {
|
|
1987
2443
|
"type": "Property"
|
|
1988
2444
|
}
|
|
1989
2445
|
},
|
|
1990
|
-
"
|
|
2446
|
+
"id": {
|
|
1991
2447
|
"type": "string",
|
|
1992
|
-
"description": "Unique
|
|
2448
|
+
"description": "Unique id of control",
|
|
1993
2449
|
"artifactType": "XMLProperty",
|
|
1994
2450
|
"metadata": {
|
|
1995
2451
|
"type": "Property"
|
|
1996
2452
|
}
|
|
1997
2453
|
},
|
|
1998
|
-
"
|
|
1999
|
-
"type": "
|
|
2000
|
-
"
|
|
2001
|
-
|
|
2002
|
-
"metadata": {
|
|
2003
|
-
"type": "Property"
|
|
2454
|
+
"customContent": {
|
|
2455
|
+
"type": "object",
|
|
2456
|
+
"additionalProperties": {
|
|
2457
|
+
"$ref": "#/definitions/sap.ui.layout.form.FormContainer"
|
|
2004
2458
|
},
|
|
2005
|
-
"enum": [
|
|
2006
|
-
"After",
|
|
2007
|
-
"Before"
|
|
2008
|
-
]
|
|
2009
|
-
},
|
|
2010
|
-
"properties": {
|
|
2011
|
-
"$ref": "#/definitions/string[]",
|
|
2012
|
-
"description": "properties",
|
|
2013
|
-
"artifactType": "XMLProperty",
|
|
2014
2459
|
"isViewNode": true,
|
|
2015
2460
|
"metadata": {
|
|
2016
|
-
"
|
|
2461
|
+
"path": [],
|
|
2462
|
+
"type": "Aggregation"
|
|
2017
2463
|
}
|
|
2018
|
-
}
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2464
|
+
}
|
|
2465
|
+
},
|
|
2466
|
+
"additionalProperties": false,
|
|
2467
|
+
"metadata": {
|
|
2468
|
+
"path": [],
|
|
2469
|
+
"type": "Control"
|
|
2470
|
+
}
|
|
2471
|
+
},
|
|
2472
|
+
"sap.fe.macros.table.QuickVariantSelection": {
|
|
2473
|
+
"description": "Definition of the quickVariantSelection to be used inside the table.",
|
|
2474
|
+
"isViewNode": true,
|
|
2475
|
+
"type": "object",
|
|
2476
|
+
"properties": {
|
|
2477
|
+
"paths": {
|
|
2478
|
+
"$ref": "#/definitions/string[]",
|
|
2479
|
+
"description": "paths",
|
|
2022
2480
|
"artifactType": "XMLProperty",
|
|
2481
|
+
"isViewNode": true,
|
|
2023
2482
|
"metadata": {
|
|
2024
2483
|
"type": "Property"
|
|
2025
2484
|
}
|
|
2026
2485
|
},
|
|
2027
|
-
"
|
|
2486
|
+
"showCounts": {
|
|
2028
2487
|
"type": "boolean",
|
|
2029
|
-
"description": "
|
|
2488
|
+
"description": "Defines whether the counts should be displayed next to the text",
|
|
2030
2489
|
"artifactType": "XMLProperty",
|
|
2031
2490
|
"metadata": {
|
|
2032
2491
|
"type": "Property"
|
|
@@ -2048,7 +2507,7 @@
|
|
|
2048
2507
|
}
|
|
2049
2508
|
},
|
|
2050
2509
|
"sap.fe.macros.Table": {
|
|
2051
|
-
"description": "Building block used to create a table based on the metadata provided by OData V4.\n\nUsually, a LineItem, PresentationVariant or SelectionPresentationVariant annotation is expected, but the Table building block can also be used to display an EntitySet.\n\nIf a PresentationVariant is specified, then it must have UI.LineItem as the first property of the Visualizations.\n\nIf a SelectionPresentationVariant is specified, then it must contain a valid PresentationVariant that also has a UI.LineItem as the first property of the Visualizations.\nUsage example:\n\n<macros:Table id=\"MyTable\" metaPath=\"@com.sap.vocabularies.UI.v1.LineItem\" />\n\nOverview of Table Building Blocks\n\t\t\t\n",
|
|
2510
|
+
"description": "Building block used to create a table based on the metadata provided by OData V4.\n\nUsually, a LineItem, PresentationVariant, or SelectionPresentationVariant annotation is expected, but the Table building block can also be used to display an EntitySet.\n\nIf a PresentationVariant is specified, then it must have UI.LineItem as the first property of the Visualizations.\n\nIf a SelectionPresentationVariant is specified, then it must contain a valid PresentationVariant that also has a UI.LineItem as the first property of the Visualizations.\nUsage example:\n\n<macros:Table id=\"MyTable\" metaPath=\"@com.sap.vocabularies.UI.v1.LineItem\" />\n\nOverview of Table Building Blocks\n\t\t\t\n",
|
|
2052
2511
|
"isViewNode": true,
|
|
2053
2512
|
"type": "object",
|
|
2054
2513
|
"properties": {
|
|
@@ -2060,6 +2519,14 @@
|
|
|
2060
2519
|
"type": "Property"
|
|
2061
2520
|
}
|
|
2062
2521
|
},
|
|
2522
|
+
"condensedTableLayout": {
|
|
2523
|
+
"type": "boolean",
|
|
2524
|
+
"description": "Determines whether the table adapts to the condensed layout.",
|
|
2525
|
+
"artifactType": "XMLProperty",
|
|
2526
|
+
"metadata": {
|
|
2527
|
+
"type": "Property"
|
|
2528
|
+
}
|
|
2529
|
+
},
|
|
2063
2530
|
"contextPath": {
|
|
2064
2531
|
"type": "string",
|
|
2065
2532
|
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
@@ -2117,6 +2584,22 @@
|
|
|
2117
2584
|
"type": "Property"
|
|
2118
2585
|
}
|
|
2119
2586
|
},
|
|
2587
|
+
"enablePastingOfComputedProperties": {
|
|
2588
|
+
"type": "boolean",
|
|
2589
|
+
"description": "Determine whether the data copied to the computed columns is sent to the back end.",
|
|
2590
|
+
"artifactType": "XMLProperty",
|
|
2591
|
+
"metadata": {
|
|
2592
|
+
"type": "Property"
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"enableSelectAll": {
|
|
2596
|
+
"type": "boolean",
|
|
2597
|
+
"description": "Determines whether the Clear All button is enabled by default.\nTo enable the Clear All button by default, you must set this property to false.",
|
|
2598
|
+
"artifactType": "XMLProperty",
|
|
2599
|
+
"metadata": {
|
|
2600
|
+
"type": "Property"
|
|
2601
|
+
}
|
|
2602
|
+
},
|
|
2120
2603
|
"exportRequestSize": {
|
|
2121
2604
|
"$ref": "#/definitions/int",
|
|
2122
2605
|
"description": "exportRequestSize",
|
|
@@ -2240,6 +2723,15 @@
|
|
|
2240
2723
|
]
|
|
2241
2724
|
},
|
|
2242
2725
|
"scrollThreshold": {
|
|
2726
|
+
"$ref": "#/definitions/int",
|
|
2727
|
+
"description": "scrollThreshold",
|
|
2728
|
+
"artifactType": "XMLProperty",
|
|
2729
|
+
"isViewNode": true,
|
|
2730
|
+
"metadata": {
|
|
2731
|
+
"type": "Property"
|
|
2732
|
+
}
|
|
2733
|
+
},
|
|
2734
|
+
"selectionLimit": {
|
|
2243
2735
|
"anyOf": [
|
|
2244
2736
|
{
|
|
2245
2737
|
"type": "number"
|
|
@@ -2249,7 +2741,7 @@
|
|
|
2249
2741
|
"pattern": "^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$"
|
|
2250
2742
|
}
|
|
2251
2743
|
],
|
|
2252
|
-
"description": "Defines
|
|
2744
|
+
"description": "Defines the maximum number of rows that can be selected at once in the table.\nThis property does not apply to responsive tables.",
|
|
2253
2745
|
"artifactType": "XMLProperty",
|
|
2254
2746
|
"metadata": {
|
|
2255
2747
|
"type": "Property"
|
|
@@ -2335,6 +2827,17 @@
|
|
|
2335
2827
|
"type": "Aggregation"
|
|
2336
2828
|
}
|
|
2337
2829
|
},
|
|
2830
|
+
"massEdit": {
|
|
2831
|
+
"type": "object",
|
|
2832
|
+
"additionalProperties": {
|
|
2833
|
+
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
2834
|
+
},
|
|
2835
|
+
"isViewNode": true,
|
|
2836
|
+
"metadata": {
|
|
2837
|
+
"path": [],
|
|
2838
|
+
"type": "Aggregation"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2338
2841
|
"beforeRebindTable": {
|
|
2339
2842
|
"type": "string",
|
|
2340
2843
|
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
@@ -2380,6 +2883,14 @@
|
|
|
2380
2883
|
"type": "Property"
|
|
2381
2884
|
}
|
|
2382
2885
|
},
|
|
2886
|
+
"condensedTableLayout": {
|
|
2887
|
+
"type": "boolean",
|
|
2888
|
+
"description": "Determines whether the table adapts to the condensed layout.",
|
|
2889
|
+
"artifactType": "XMLProperty",
|
|
2890
|
+
"metadata": {
|
|
2891
|
+
"type": "Property"
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2383
2894
|
"contextPath": {
|
|
2384
2895
|
"type": "string",
|
|
2385
2896
|
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
@@ -2437,6 +2948,22 @@
|
|
|
2437
2948
|
"type": "Property"
|
|
2438
2949
|
}
|
|
2439
2950
|
},
|
|
2951
|
+
"enablePastingOfComputedProperties": {
|
|
2952
|
+
"type": "boolean",
|
|
2953
|
+
"description": "Determine whether the data copied to the computed columns is sent to the back end.",
|
|
2954
|
+
"artifactType": "XMLProperty",
|
|
2955
|
+
"metadata": {
|
|
2956
|
+
"type": "Property"
|
|
2957
|
+
}
|
|
2958
|
+
},
|
|
2959
|
+
"enableSelectAll": {
|
|
2960
|
+
"type": "boolean",
|
|
2961
|
+
"description": "Determines whether the Clear All button is enabled by default.\nTo enable the Clear All button by default, you must set this property to false.",
|
|
2962
|
+
"artifactType": "XMLProperty",
|
|
2963
|
+
"metadata": {
|
|
2964
|
+
"type": "Property"
|
|
2965
|
+
}
|
|
2966
|
+
},
|
|
2440
2967
|
"exportRequestSize": {
|
|
2441
2968
|
"$ref": "#/definitions/int",
|
|
2442
2969
|
"description": "exportRequestSize",
|
|
@@ -2559,6 +3086,15 @@
|
|
|
2559
3086
|
]
|
|
2560
3087
|
},
|
|
2561
3088
|
"scrollThreshold": {
|
|
3089
|
+
"$ref": "#/definitions/int",
|
|
3090
|
+
"description": "scrollThreshold",
|
|
3091
|
+
"artifactType": "XMLProperty",
|
|
3092
|
+
"isViewNode": true,
|
|
3093
|
+
"metadata": {
|
|
3094
|
+
"type": "Property"
|
|
3095
|
+
}
|
|
3096
|
+
},
|
|
3097
|
+
"selectionLimit": {
|
|
2562
3098
|
"anyOf": [
|
|
2563
3099
|
{
|
|
2564
3100
|
"type": "number"
|
|
@@ -2568,7 +3104,7 @@
|
|
|
2568
3104
|
"pattern": "^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$"
|
|
2569
3105
|
}
|
|
2570
3106
|
],
|
|
2571
|
-
"description": "Defines
|
|
3107
|
+
"description": "Defines the maximum number of rows that can be selected at once in the table.\nThis property does not apply to responsive tables.",
|
|
2572
3108
|
"artifactType": "XMLProperty",
|
|
2573
3109
|
"metadata": {
|
|
2574
3110
|
"type": "Property"
|
|
@@ -2650,6 +3186,17 @@
|
|
|
2650
3186
|
"type": "Aggregation"
|
|
2651
3187
|
}
|
|
2652
3188
|
},
|
|
3189
|
+
"massEdit": {
|
|
3190
|
+
"type": "object",
|
|
3191
|
+
"additionalProperties": {
|
|
3192
|
+
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
3193
|
+
},
|
|
3194
|
+
"isViewNode": true,
|
|
3195
|
+
"metadata": {
|
|
3196
|
+
"path": [],
|
|
3197
|
+
"type": "Aggregation"
|
|
3198
|
+
}
|
|
3199
|
+
},
|
|
2653
3200
|
"beforeRebindTable": {
|
|
2654
3201
|
"type": "string",
|
|
2655
3202
|
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
@@ -2761,6 +3308,14 @@
|
|
|
2761
3308
|
"type": "Property"
|
|
2762
3309
|
}
|
|
2763
3310
|
},
|
|
3311
|
+
"condensedTableLayout": {
|
|
3312
|
+
"type": "boolean",
|
|
3313
|
+
"description": "Determines whether the table adapts to the condensed layout.",
|
|
3314
|
+
"artifactType": "XMLProperty",
|
|
3315
|
+
"metadata": {
|
|
3316
|
+
"type": "Property"
|
|
3317
|
+
}
|
|
3318
|
+
},
|
|
2764
3319
|
"contextPath": {
|
|
2765
3320
|
"type": "string",
|
|
2766
3321
|
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
@@ -2818,6 +3373,22 @@
|
|
|
2818
3373
|
"type": "Property"
|
|
2819
3374
|
}
|
|
2820
3375
|
},
|
|
3376
|
+
"enablePastingOfComputedProperties": {
|
|
3377
|
+
"type": "boolean",
|
|
3378
|
+
"description": "Determine whether the data copied to the computed columns is sent to the back end.",
|
|
3379
|
+
"artifactType": "XMLProperty",
|
|
3380
|
+
"metadata": {
|
|
3381
|
+
"type": "Property"
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
"enableSelectAll": {
|
|
3385
|
+
"type": "boolean",
|
|
3386
|
+
"description": "Determines whether the Clear All button is enabled by default.\nTo enable the Clear All button by default, you must set this property to false.",
|
|
3387
|
+
"artifactType": "XMLProperty",
|
|
3388
|
+
"metadata": {
|
|
3389
|
+
"type": "Property"
|
|
3390
|
+
}
|
|
3391
|
+
},
|
|
2821
3392
|
"exportRequestSize": {
|
|
2822
3393
|
"$ref": "#/definitions/int",
|
|
2823
3394
|
"description": "exportRequestSize",
|
|
@@ -2964,6 +3535,15 @@
|
|
|
2964
3535
|
]
|
|
2965
3536
|
},
|
|
2966
3537
|
"scrollThreshold": {
|
|
3538
|
+
"$ref": "#/definitions/int",
|
|
3539
|
+
"description": "scrollThreshold",
|
|
3540
|
+
"artifactType": "XMLProperty",
|
|
3541
|
+
"isViewNode": true,
|
|
3542
|
+
"metadata": {
|
|
3543
|
+
"type": "Property"
|
|
3544
|
+
}
|
|
3545
|
+
},
|
|
3546
|
+
"selectionLimit": {
|
|
2967
3547
|
"anyOf": [
|
|
2968
3548
|
{
|
|
2969
3549
|
"type": "number"
|
|
@@ -2973,7 +3553,7 @@
|
|
|
2973
3553
|
"pattern": "^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$"
|
|
2974
3554
|
}
|
|
2975
3555
|
],
|
|
2976
|
-
"description": "Defines
|
|
3556
|
+
"description": "Defines the maximum number of rows that can be selected at once in the table.\nThis property does not apply to responsive tables.",
|
|
2977
3557
|
"artifactType": "XMLProperty",
|
|
2978
3558
|
"metadata": {
|
|
2979
3559
|
"type": "Property"
|
|
@@ -3051,6 +3631,17 @@
|
|
|
3051
3631
|
"type": "Aggregation"
|
|
3052
3632
|
}
|
|
3053
3633
|
},
|
|
3634
|
+
"massEdit": {
|
|
3635
|
+
"type": "object",
|
|
3636
|
+
"additionalProperties": {
|
|
3637
|
+
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
3638
|
+
},
|
|
3639
|
+
"isViewNode": true,
|
|
3640
|
+
"metadata": {
|
|
3641
|
+
"path": [],
|
|
3642
|
+
"type": "Aggregation"
|
|
3643
|
+
}
|
|
3644
|
+
},
|
|
3054
3645
|
"beforeRebindTable": {
|
|
3055
3646
|
"type": "string",
|
|
3056
3647
|
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
@@ -3095,6 +3686,14 @@
|
|
|
3095
3686
|
"type": "Property"
|
|
3096
3687
|
}
|
|
3097
3688
|
},
|
|
3689
|
+
"condensedTableLayout": {
|
|
3690
|
+
"type": "boolean",
|
|
3691
|
+
"description": "Determines whether the table adapts to the condensed layout.",
|
|
3692
|
+
"artifactType": "XMLProperty",
|
|
3693
|
+
"metadata": {
|
|
3694
|
+
"type": "Property"
|
|
3695
|
+
}
|
|
3696
|
+
},
|
|
3098
3697
|
"contextPath": {
|
|
3099
3698
|
"type": "string",
|
|
3100
3699
|
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
@@ -3152,6 +3751,22 @@
|
|
|
3152
3751
|
"type": "Property"
|
|
3153
3752
|
}
|
|
3154
3753
|
},
|
|
3754
|
+
"enablePastingOfComputedProperties": {
|
|
3755
|
+
"type": "boolean",
|
|
3756
|
+
"description": "Determine whether the data copied to the computed columns is sent to the back end.",
|
|
3757
|
+
"artifactType": "XMLProperty",
|
|
3758
|
+
"metadata": {
|
|
3759
|
+
"type": "Property"
|
|
3760
|
+
}
|
|
3761
|
+
},
|
|
3762
|
+
"enableSelectAll": {
|
|
3763
|
+
"type": "boolean",
|
|
3764
|
+
"description": "Determines whether the Clear All button is enabled by default.\nTo enable the Clear All button by default, you must set this property to false.",
|
|
3765
|
+
"artifactType": "XMLProperty",
|
|
3766
|
+
"metadata": {
|
|
3767
|
+
"type": "Property"
|
|
3768
|
+
}
|
|
3769
|
+
},
|
|
3155
3770
|
"exportRequestSize": {
|
|
3156
3771
|
"$ref": "#/definitions/int",
|
|
3157
3772
|
"description": "exportRequestSize",
|
|
@@ -3298,6 +3913,15 @@
|
|
|
3298
3913
|
]
|
|
3299
3914
|
},
|
|
3300
3915
|
"scrollThreshold": {
|
|
3916
|
+
"$ref": "#/definitions/int",
|
|
3917
|
+
"description": "scrollThreshold",
|
|
3918
|
+
"artifactType": "XMLProperty",
|
|
3919
|
+
"isViewNode": true,
|
|
3920
|
+
"metadata": {
|
|
3921
|
+
"type": "Property"
|
|
3922
|
+
}
|
|
3923
|
+
},
|
|
3924
|
+
"selectionLimit": {
|
|
3301
3925
|
"anyOf": [
|
|
3302
3926
|
{
|
|
3303
3927
|
"type": "number"
|
|
@@ -3307,7 +3931,7 @@
|
|
|
3307
3931
|
"pattern": "^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$"
|
|
3308
3932
|
}
|
|
3309
3933
|
],
|
|
3310
|
-
"description": "Defines
|
|
3934
|
+
"description": "Defines the maximum number of rows that can be selected at once in the table.\nThis property does not apply to responsive tables.",
|
|
3311
3935
|
"artifactType": "XMLProperty",
|
|
3312
3936
|
"metadata": {
|
|
3313
3937
|
"type": "Property"
|
|
@@ -3385,6 +4009,17 @@
|
|
|
3385
4009
|
"type": "Aggregation"
|
|
3386
4010
|
}
|
|
3387
4011
|
},
|
|
4012
|
+
"massEdit": {
|
|
4013
|
+
"type": "object",
|
|
4014
|
+
"additionalProperties": {
|
|
4015
|
+
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
4016
|
+
},
|
|
4017
|
+
"isViewNode": true,
|
|
4018
|
+
"metadata": {
|
|
4019
|
+
"path": [],
|
|
4020
|
+
"type": "Aggregation"
|
|
4021
|
+
}
|
|
4022
|
+
},
|
|
3388
4023
|
"beforeRebindTable": {
|
|
3389
4024
|
"type": "string",
|
|
3390
4025
|
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
@@ -3546,17 +4181,6 @@
|
|
|
3546
4181
|
"defaultAggregation": "actions"
|
|
3547
4182
|
}
|
|
3548
4183
|
},
|
|
3549
|
-
"sap.fe.macros.share.ShareOptions": {
|
|
3550
|
-
"description": "Share Options.",
|
|
3551
|
-
"isViewNode": true,
|
|
3552
|
-
"type": "object",
|
|
3553
|
-
"properties": {},
|
|
3554
|
-
"additionalProperties": false,
|
|
3555
|
-
"metadata": {
|
|
3556
|
-
"path": [],
|
|
3557
|
-
"type": "Control"
|
|
3558
|
-
}
|
|
3559
|
-
},
|
|
3560
4184
|
"sap.fe.macros.controls.section.ISingleSectionContributor.ConsumerData": {
|
|
3561
4185
|
"description": "Definition of data consumer by section from single control",
|
|
3562
4186
|
"isViewNode": true,
|