@sap/ux-specification 1.120.30 → 1.120.32

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.
Files changed (50) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  6. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  7. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  8. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  9. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  10. package/dist/documentation/v4/v4-ListReport.html +2 -2
  11. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  12. package/dist/index-min.js +98 -98
  13. package/dist/index-min.js.map +3 -3
  14. package/dist/schemas/v4/ObjectPageConfig.json +321 -16
  15. package/dist/specification/package.json +5 -5
  16. package/dist/specification/scripts/to-json-schema.d.ts.map +1 -1
  17. package/dist/specification/scripts/to-json-schema.js +1 -0
  18. package/dist/specification/scripts/to-json-schema.js.map +1 -1
  19. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  20. package/dist/specification/src/sync/common/utils.js +16 -2
  21. package/dist/specification/src/sync/common/utils.js.map +1 -1
  22. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +16 -0
  23. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
  24. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +76 -1
  25. package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  26. package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
  27. package/dist/specification/src/sync/v4/export/export.js +4 -1
  28. package/dist/specification/src/sync/v4/export/export.js.map +1 -1
  29. package/dist/specification/src/sync/v4/export/factory.d.ts.map +1 -1
  30. package/dist/specification/src/sync/v4/export/factory.js +4 -1
  31. package/dist/specification/src/sync/v4/export/factory.js.map +1 -1
  32. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  33. package/dist/specification/src/sync/v4/generate/objectPage.js +68 -28
  34. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  35. package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts +1 -1
  36. package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
  37. package/dist/specification/src/sync/v4/import/pages/objectPage.js +21 -2
  38. package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
  39. package/dist/types/src/common/types.d.ts +4 -0
  40. package/dist/types/src/common/types.d.ts.map +1 -1
  41. package/dist/types/src/common/types.js +4 -0
  42. package/dist/types/src/common/types.js.map +1 -1
  43. package/dist/types/src/v4/controls/ObjectPageTable.d.ts +49 -2
  44. package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
  45. package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
  46. package/dist/types/src/v4/controls/Table.d.ts +20 -0
  47. package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
  48. package/dist/types/src/v4/controls/Table.js +6 -1
  49. package/dist/types/src/v4/controls/Table.js.map +1 -1
  50. package/package.json +5 -5
@@ -556,16 +556,36 @@
556
556
  "type": "object",
557
557
  "properties": {
558
558
  "table": {
559
- "$ref": "#/definitions/ObjectPageTable"
559
+ "anyOf": [
560
+ {
561
+ "$ref": "#/definitions/ObjectPageAnalyticalTableV4"
562
+ },
563
+ {
564
+ "$ref": "#/definitions/ObjectPageGridTableV4"
565
+ },
566
+ {
567
+ "$ref": "#/definitions/ObjectPageResponsiveTableV4"
568
+ },
569
+ {
570
+ "$ref": "#/definitions/ObjectPageTreeTableV4"
571
+ }
572
+ ]
560
573
  }
561
574
  },
562
575
  "additionalProperties": false
563
576
  },
564
- "ObjectPageTable": {
577
+ "ObjectPageAnalyticalTableV4": {
565
578
  "description": "Table",
566
579
  "isViewNode": true,
580
+ "controlProperty": "type",
567
581
  "type": "object",
568
582
  "properties": {
583
+ "type": {
584
+ "description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
585
+ "type": "string",
586
+ "const": "AnalyticalTable",
587
+ "artifactType": "Manifest"
588
+ },
569
589
  "enableFullScreen": {
570
590
  "description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
571
591
  "type": "boolean",
@@ -598,11 +618,6 @@
598
618
  "columns": {
599
619
  "$ref": "#/definitions/GenericColumnsOP"
600
620
  },
601
- "type": {
602
- "$ref": "#/definitions/TableTypeV4",
603
- "description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
604
- "artifactType": "Manifest"
605
- },
606
621
  "selectionMode": {
607
622
  "$ref": "#/definitions/SelectionMode",
608
623
  "description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
@@ -641,6 +656,17 @@
641
656
  "type": "boolean",
642
657
  "artifactType": "Manifest",
643
658
  "descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
659
+ },
660
+ "rowCountMode": {
661
+ "$ref": "#/definitions/RowCountMode",
662
+ "description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.",
663
+ "artifactType": "Manifest"
664
+ },
665
+ "rowCount": {
666
+ "description": "Number of rows to be displayed in the table.",
667
+ "minimum": 0,
668
+ "type": "number",
669
+ "artifactType": "Manifest"
644
670
  }
645
671
  },
646
672
  "additionalProperties": false
@@ -1027,15 +1053,6 @@
1027
1053
  ],
1028
1054
  "type": "string"
1029
1055
  },
1030
- "TableTypeV4": {
1031
- "enum": [
1032
- "AnalyticalTable",
1033
- "GridTable",
1034
- "ResponsiveTable",
1035
- "TreeTable"
1036
- ],
1037
- "type": "string"
1038
- },
1039
1056
  "SelectionMode": {
1040
1057
  "enum": [
1041
1058
  "Auto",
@@ -1045,6 +1062,294 @@
1045
1062
  ],
1046
1063
  "type": "string"
1047
1064
  },
1065
+ "RowCountMode": {
1066
+ "enum": [
1067
+ "Auto",
1068
+ "Fixed"
1069
+ ],
1070
+ "type": "string"
1071
+ },
1072
+ "ObjectPageGridTableV4": {
1073
+ "description": "Table",
1074
+ "isViewNode": true,
1075
+ "controlProperty": "type",
1076
+ "type": "object",
1077
+ "properties": {
1078
+ "type": {
1079
+ "description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
1080
+ "type": "string",
1081
+ "const": "GridTable",
1082
+ "artifactType": "Manifest"
1083
+ },
1084
+ "enableFullScreen": {
1085
+ "description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
1086
+ "type": "boolean",
1087
+ "artifactType": "Manifest"
1088
+ },
1089
+ "enablePaste": {
1090
+ "description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
1091
+ "type": "boolean",
1092
+ "artifactType": "Manifest"
1093
+ },
1094
+ "toolBar": {
1095
+ "$ref": "#/definitions/ObjectPageToolBar",
1096
+ "description": "Tool Bar"
1097
+ },
1098
+ "creationMode": {
1099
+ "$ref": "#/definitions/TableCreationModeOP",
1100
+ "description": "Defines the page behavior when a new record is created.",
1101
+ "artifactType": "Manifest"
1102
+ },
1103
+ "personalization": {
1104
+ "$ref": "#/definitions/PersonalizationTypeOP",
1105
+ "description": "Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties \"Column\", \"Sort\" and \"Filter\" accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
1106
+ "artifactType": "Manifest"
1107
+ },
1108
+ "quickVariantSelection": {
1109
+ "$ref": "#/definitions/QuickVariantSelectionV4OP",
1110
+ "description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
1111
+ "artifactType": "Manifest"
1112
+ },
1113
+ "columns": {
1114
+ "$ref": "#/definitions/GenericColumnsOP"
1115
+ },
1116
+ "selectionMode": {
1117
+ "$ref": "#/definitions/SelectionMode",
1118
+ "description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
1119
+ "artifactType": "Manifest"
1120
+ },
1121
+ "selectAll": {
1122
+ "description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
1123
+ "type": "boolean",
1124
+ "artifactType": "Manifest"
1125
+ },
1126
+ "selectionLimit": {
1127
+ "description": "You can define how many items can be selected at a time using the selectionLimit.",
1128
+ "type": "number",
1129
+ "artifactType": "Manifest"
1130
+ },
1131
+ "enableExport": {
1132
+ "description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
1133
+ "type": "boolean",
1134
+ "artifactType": "Manifest",
1135
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
1136
+ },
1137
+ "condensedTableLayout": {
1138
+ "description": "Determines whether the content density for ui.table is condensed.",
1139
+ "type": "boolean",
1140
+ "artifactType": "Manifest",
1141
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
1142
+ },
1143
+ "hierarchyQualifier": {
1144
+ "description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
1145
+ "type": "string",
1146
+ "artifactType": "Manifest",
1147
+ "descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
1148
+ },
1149
+ "widthIncludingColumnHeader": {
1150
+ "description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
1151
+ "type": "boolean",
1152
+ "artifactType": "Manifest",
1153
+ "descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
1154
+ },
1155
+ "rowCountMode": {
1156
+ "$ref": "#/definitions/RowCountMode",
1157
+ "description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.",
1158
+ "artifactType": "Manifest"
1159
+ },
1160
+ "rowCount": {
1161
+ "description": "Number of rows to be displayed in the table.",
1162
+ "minimum": 0,
1163
+ "type": "number",
1164
+ "artifactType": "Manifest"
1165
+ }
1166
+ },
1167
+ "additionalProperties": false
1168
+ },
1169
+ "ObjectPageResponsiveTableV4": {
1170
+ "description": "Table",
1171
+ "isViewNode": true,
1172
+ "controlProperty": "type",
1173
+ "defaultControlProperty": true,
1174
+ "type": "object",
1175
+ "properties": {
1176
+ "type": {
1177
+ "description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
1178
+ "type": "string",
1179
+ "const": "ResponsiveTable",
1180
+ "artifactType": "Manifest"
1181
+ },
1182
+ "enableFullScreen": {
1183
+ "description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
1184
+ "type": "boolean",
1185
+ "artifactType": "Manifest"
1186
+ },
1187
+ "enablePaste": {
1188
+ "description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
1189
+ "type": "boolean",
1190
+ "artifactType": "Manifest"
1191
+ },
1192
+ "toolBar": {
1193
+ "$ref": "#/definitions/ObjectPageToolBar",
1194
+ "description": "Tool Bar"
1195
+ },
1196
+ "creationMode": {
1197
+ "$ref": "#/definitions/TableCreationModeOP",
1198
+ "description": "Defines the page behavior when a new record is created.",
1199
+ "artifactType": "Manifest"
1200
+ },
1201
+ "personalization": {
1202
+ "$ref": "#/definitions/PersonalizationTypeOP",
1203
+ "description": "Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties \"Column\", \"Sort\" and \"Filter\" accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
1204
+ "artifactType": "Manifest"
1205
+ },
1206
+ "quickVariantSelection": {
1207
+ "$ref": "#/definitions/QuickVariantSelectionV4OP",
1208
+ "description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
1209
+ "artifactType": "Manifest"
1210
+ },
1211
+ "columns": {
1212
+ "$ref": "#/definitions/GenericColumnsOP"
1213
+ },
1214
+ "selectionMode": {
1215
+ "$ref": "#/definitions/SelectionMode",
1216
+ "description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
1217
+ "artifactType": "Manifest"
1218
+ },
1219
+ "selectAll": {
1220
+ "description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
1221
+ "type": "boolean",
1222
+ "artifactType": "Manifest"
1223
+ },
1224
+ "selectionLimit": {
1225
+ "description": "You can define how many items can be selected at a time using the selectionLimit.",
1226
+ "type": "number",
1227
+ "artifactType": "Manifest"
1228
+ },
1229
+ "enableExport": {
1230
+ "description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
1231
+ "type": "boolean",
1232
+ "artifactType": "Manifest",
1233
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
1234
+ },
1235
+ "condensedTableLayout": {
1236
+ "description": "Determines whether the content density for ui.table is condensed.",
1237
+ "type": "boolean",
1238
+ "artifactType": "Manifest",
1239
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
1240
+ },
1241
+ "hierarchyQualifier": {
1242
+ "description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
1243
+ "type": "string",
1244
+ "artifactType": "Manifest",
1245
+ "descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
1246
+ },
1247
+ "widthIncludingColumnHeader": {
1248
+ "description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
1249
+ "type": "boolean",
1250
+ "artifactType": "Manifest",
1251
+ "descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
1252
+ }
1253
+ },
1254
+ "additionalProperties": false
1255
+ },
1256
+ "ObjectPageTreeTableV4": {
1257
+ "description": "Table",
1258
+ "isViewNode": true,
1259
+ "controlProperty": "type",
1260
+ "type": "object",
1261
+ "properties": {
1262
+ "type": {
1263
+ "description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
1264
+ "type": "string",
1265
+ "const": "TreeTable",
1266
+ "artifactType": "Manifest"
1267
+ },
1268
+ "enableFullScreen": {
1269
+ "description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
1270
+ "type": "boolean",
1271
+ "artifactType": "Manifest"
1272
+ },
1273
+ "enablePaste": {
1274
+ "description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
1275
+ "type": "boolean",
1276
+ "artifactType": "Manifest"
1277
+ },
1278
+ "toolBar": {
1279
+ "$ref": "#/definitions/ObjectPageToolBar",
1280
+ "description": "Tool Bar"
1281
+ },
1282
+ "creationMode": {
1283
+ "$ref": "#/definitions/TableCreationModeOP",
1284
+ "description": "Defines the page behavior when a new record is created.",
1285
+ "artifactType": "Manifest"
1286
+ },
1287
+ "personalization": {
1288
+ "$ref": "#/definitions/PersonalizationTypeOP",
1289
+ "description": "Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties \"Column\", \"Sort\" and \"Filter\" accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
1290
+ "artifactType": "Manifest"
1291
+ },
1292
+ "quickVariantSelection": {
1293
+ "$ref": "#/definitions/QuickVariantSelectionV4OP",
1294
+ "description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
1295
+ "artifactType": "Manifest"
1296
+ },
1297
+ "columns": {
1298
+ "$ref": "#/definitions/GenericColumnsOP"
1299
+ },
1300
+ "selectionMode": {
1301
+ "$ref": "#/definitions/SelectionMode",
1302
+ "description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
1303
+ "artifactType": "Manifest"
1304
+ },
1305
+ "selectAll": {
1306
+ "description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
1307
+ "type": "boolean",
1308
+ "artifactType": "Manifest"
1309
+ },
1310
+ "selectionLimit": {
1311
+ "description": "You can define how many items can be selected at a time using the selectionLimit.",
1312
+ "type": "number",
1313
+ "artifactType": "Manifest"
1314
+ },
1315
+ "enableExport": {
1316
+ "description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
1317
+ "type": "boolean",
1318
+ "artifactType": "Manifest",
1319
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
1320
+ },
1321
+ "condensedTableLayout": {
1322
+ "description": "Determines whether the content density for ui.table is condensed.",
1323
+ "type": "boolean",
1324
+ "artifactType": "Manifest",
1325
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
1326
+ },
1327
+ "hierarchyQualifier": {
1328
+ "description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
1329
+ "type": "string",
1330
+ "artifactType": "Manifest",
1331
+ "descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
1332
+ },
1333
+ "widthIncludingColumnHeader": {
1334
+ "description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
1335
+ "type": "boolean",
1336
+ "artifactType": "Manifest",
1337
+ "descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
1338
+ },
1339
+ "rowCountMode": {
1340
+ "$ref": "#/definitions/RowCountMode",
1341
+ "description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.",
1342
+ "artifactType": "Manifest"
1343
+ },
1344
+ "rowCount": {
1345
+ "description": "Number of rows to be displayed in the table.",
1346
+ "minimum": 0,
1347
+ "type": "number",
1348
+ "artifactType": "Manifest"
1349
+ }
1350
+ },
1351
+ "additionalProperties": false
1352
+ },
1048
1353
  "ObjectPageSectionForm": {
1049
1354
  "type": "object",
1050
1355
  "properties": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/ux-specification",
3
- "version": "1.120.30",
3
+ "version": "1.120.32",
4
4
  "displayName": "SAP Fiori tools - Specification",
5
5
  "description": "SAP Fiori tools - Specification",
6
6
  "files": [
@@ -49,13 +49,13 @@
49
49
  "publisher": "SAPSE",
50
50
  "license": "SEE LICENSE IN LICENSE",
51
51
  "dependencies": {
52
- "@sap-ux/fe-fpm-writer": "0.33.14",
52
+ "@sap-ux/fe-fpm-writer": "0.33.19",
53
53
  "@sap-ux/vocabularies-types": "0.12.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@sap-ux/annotation-converter": "0.9.11",
56
+ "@sap-ux/annotation-converter": "0.10.3",
57
57
  "@sap-ux/edmx-parser": "0.8.2",
58
- "@sap/ux-specification-types": "1.120.30",
58
+ "@sap/ux-specification-types": "1.120.32",
59
59
  "@sapui5/types": "latest-1.120",
60
60
  "@types/d3": "7.4.3",
61
61
  "@types/jquery": "3.5.32",
@@ -63,7 +63,7 @@
63
63
  "@ui5/flexibility-utils": "0.1.3",
64
64
  "@xml-tools/ast": "5.0.5",
65
65
  "@xml-tools/parser": "1.0.11",
66
- "axios": "1.8.1",
66
+ "axios": "1.8.4",
67
67
  "copyfiles": "2.4.1",
68
68
  "d3": "7.9.0",
69
69
  "deepmerge": "4.3.1",
@@ -1 +1 @@
1
- {"version":3,"file":"to-json-schema.d.ts","sourceRoot":"","sources":["../../../scripts/to-json-schema.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAGnE,MAAM,MAAM,MAAM,GAAG;IAAE,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;AA4BhD;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,oBAAoB,GAAG,MAAM,EAAE,CA4BxG"}
1
+ {"version":3,"file":"to-json-schema.d.ts","sourceRoot":"","sources":["../../../scripts/to-json-schema.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAGnE,MAAM,MAAM,MAAM,GAAG;IAAE,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,CAAC;AA6BhD;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,oBAAoB,GAAG,MAAM,EAAE,CA4BxG"}
@@ -56,6 +56,7 @@ const generatorSettings = {
56
56
  'i18nClassification',
57
57
  'isViewNode',
58
58
  'displayName',
59
+ 'defaultControlProperty',
59
60
  'controlProperty',
60
61
  'hidden',
61
62
  'minimum',
@@ -1 +1 @@
1
- {"version":3,"file":"to-json-schema.js","sourceRoot":"","sources":["../../../scripts/to-json-schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"to-json-schema.js","sourceRoot":"","sources":["../../../scripts/to-json-schema.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/sync/common/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC;AACtE,OAAO,KAAK,EACR,QAAQ,EACR,eAAe,EACf,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,QAAQ,EACR,cAAc,EACd,aAAa,EAChB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAMH,YAAY,EAIZ,EAAE,EAGF,oBAAoB,EAEpB,YAAY,EACZ,UAAU,EAEV,UAAU,EACV,UAAU,EAGb,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EACR,SAAS,EACT,sBAAsB,EAEtB,UAAU,EAEb,MAAM,4CAA4C,CAAC;AACpD,OAAO,KAAK,EACR,iBAAiB,EACjB,UAAU,EAEV,YAAY,EACZ,uBAAuB,EAC1B,MAAM,4BAA4B,CAAC;AASpC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mDAAmD,CAAC;AAE7F,eAAO,MAAM,sBAAsB,mBAAmB,CAAC;AAEvD,eAAO,MAAM,YAAY,UAKxB,CAAC;AACF,eAAO,MAAM,OAAO,UAAsC,CAAC;AAE3D,eAAO,MAAM,aAAa,GAAI,KAAK,MAAM,EAAE,EAAE,QAAQ,MAAM,EAAE,YAAyC,CAAC;AAEvG;;;;;;GAMG;AACH,eAAO,MAAM,oBAAoB,GAAI,gBAAgB,MAAM,EAAE,MAAM,MAAM,EAAE,YAAY,MAAM,KAAG,MAAM,GAAG,SASxG,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,uBAAuB,CAAC,eAAe,EAAE,QAAQ,EAAE,EAAE,MAAM,EAAE,eAAe,GAAG,iBAAiB,CA2B/G;AAED,eAAO,MAAM,0BAA0B,GAAI,oBAAoB,SAAS,CAAC,OAAO,CAAC,KAAG,MAC3B,CAAC;AAE1D;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,WAAW,EAAE,mBAAmB,EAAE,UAAU,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAgBnH;AAED;;;;;GAKG;AACH,wBAAgB,uBAAuB,CAAC,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,UAAU,GAAG,MAAM,CAMlG;AAED;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,sBAAsB,EAAE,UAAU,EAAE,UAAU,GAAG,MAAM,CAsBlG;AAoCD;;;;GAIG;AACH,wBAAgB,uBAAuB,CAAC,iBAAiB,EAAE,sBAAsB,EAAE,UAAU,EAAE,UAAU,GAAG,MAAM,CAwDjH;AAED;;;;GAIG;AAEH,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,uBAAuB,CAAC,MAAM,CAAC,GAAG,MAAM,CAErF;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,UAAU,GAAG,SAAS,CAKlE;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,EAAE,CAAC,cAAc,GAAG,EAAE,CAAC,+BAA+B,GAAG,UAAU,GAAG,SAAS,CAYnH;AASD;;;;;GAKG;AACH,wBAAgB,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,eAAe,EAAE,iBAAiB,GAAG,MAAM,GAAG,SAAS,CAqBnG;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAElE;AA6ED;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAC3B,eAAe,EAAE,UAAU,EAC3B,gBAAgB,EAAE,UAAU,EAC5B,eAAe,EAAE,iBAAiB,EAClC,MAAM,CAAC,EAAE,eAAe,EACxB,YAAY,uBAA0B,EACtC,sBAAsB,UAAQ,GAC/B,YAAY,GAAG,SAAS,CAmD1B;AAuBD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,GAAI,OAAO,MAAM,KAAG,KAAK,CAAC,OAAO,CAAC,GAAG,MAKpE,CAAC;AAmDF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,0BAA0B,GACnC,UAAU,MAAM,EAChB,MAAM,MAAM,EACZ,mBAAmB,MAAM,EACzB,0BAA0B,MAAM,EAChC,kBAAgB,KACjB,MAAM,GAAG,SAEX,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,0BAA0B,GACnC,UAAU,MAAM,EAChB,MAAM,MAAM,EACZ,OAAO,OAAO,EACd,mBAAmB,MAAM,EACzB,0BAA0B,MAAM,KACjC,IAEF,CAAC;AAEF,wBAAgB,4BAA4B,CAAC,cAAc,EAAE,sBAAsB,GAAG,MAAM,CAiD3F;AAgLD;;;;;GAKG;AACH,wBAAgB,wCAAwC,CAAC,UAAU,EAAE,UAAU,EAAE,kBAAkB,EAAE,MAAM,GAAG,MAAM,CAEnH;AAuED;;;;;;GAMG;AACH,wBAAgB,yBAAyB,CACrC,UAAU,EAAE,UAAU,EACtB,eAAe,EAAE,iBAAiB,EAClC,YAAY,uBAA0B,EACtC,MAAM,CAAC,EAAE,eAAe,GACzB,YAAY,GAAG,SAAS,CAiB1B;AAED;;;;;;GAMG;AACH,wBAAgB,mBAAmB,CAC/B,UAAU,EAAE,UAAU,EACtB,eAAe,EAAE,iBAAiB,EAClC,YAAY,uBAA0B,EACtC,MAAM,CAAC,EAAE,eAAe,GACzB,YAAY,GAAG,SAAS,CAiB1B;AAED;;;;GAIG;AACH,wBAAgB,wBAAwB,CAAC,QAAQ,EAAE,QAAQ,GAAG,oBAAoB,GAAG,SAAS,CAqB7F;AAED;;;;;;;GAOG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,GAAG,SAAS,CAQrE;AAED;;;;GAIG;AACH,wBAAgB,2BAA2B,CAAC,QAAQ,EAAE,QAAQ,GAAG,YAAY,CAO5E;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,GAAG,YAAY,GAAG,SAAS,CAsCzG;AAED;;;;GAIG;AACH,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,EAAE,CAAC,cAAc,GAAG,YAAY,GAAG,SAAS,CAmB/F;AAmBD;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,GAAG,YAAY,GAAG,SAAS,CA6BzG;AAED;;;;;;GAMG;AACH,wBAAgB,2BAA2B,CACvC,QAAQ,EAAE,QAAQ,EAClB,oBAAoB,EAAE,oBAAoB,EAC1C,MAAM,EAAE,eAAe,GACxB,YAAY,GAAG,SAAS,CAU1B;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAQ/F;AAED;;;;;GAKG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAQrG;AAED;;;;;GAKG;AACH,wBAAgB,mCAAmC,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAanH;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,UAAU,GAAG,IAAI,CAI7E;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,UAAU,EAAE,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,GAAG,UAAU,CAU5G;AAED;;;;;;;;GAQG;AACH,wBAAgB,yBAAyB,CACrC,UAAU,EAAE,UAAU,EACtB,eAAe,EAAE,iBAAiB,EAClC,MAAM,CAAC,EAAE,eAAe,EACxB,YAAY,uBAA0B,EACtC,uBAAuB,UAAQ,GAChC,YAAY,EAAE,CA2BhB;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,oBAAoB,GAC7B,UAAU,MAAM,EAChB,MAAM,MAAM,EACZ,iBAAiB,OAAO,EACxB,kBAAkB,MAAM,EAAE,EAC1B,mBAAmB,MAAM,EACzB,0BAA0B,MAAM,KACjC,IA0CF,CAAC;AAkBF;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,GAC1B,YAAY,UAAU,GAAG,UAAU,GAAG,UAAU,EAChD,SAAS,MAAM,EACf,SAAS,MAAM,KAChB,cA4CF,CAAC;AAEF;;;;;;;;GAQG;AAEH,wBAAgB,cAAc,CAC1B,QAAQ,EAAE,UAAU,GAAG,UAAU,EACjC,SAAS,EAAE,MAAM,EACjB,MAAM,CAAC,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,MAAM,GAClB,MAAM,CAaR;AAED,MAAM,MAAM,cAAc,GAAG;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;;;;;GAMG;AACH,wBAAgB,sCAAsC,CAClD,SAAS,EAAE,UAAU,EACrB,oBAAoB,EAAE,UAAU,EAChC,YAAY,EAAE,MAAM,GACrB,MAAM,EAAE,CA0BV;AAgJD;;;;;;;;;GASG;AACH,wBAAgB,uBAAuB,CACnC,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,mBAAmB,EAAE,MAAM,EAC3B,kBAAkB,EAAE,MAAM,EAC1B,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,yBAAyB,EAClC,QAAQ,EAAE,UAAU,GAAG,UAAU,GAClC,cAAc,CA6BhB;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,GAAI,WAAM,EAAE,WAAM,EAAE,YAAO,KAAG,MAAM,EAYjE,CAAC;AAEF;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,eAAe,KAAA,EAAE,UAAU,KAAA,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI,CAK/E;AAED;;;;GAIG;AACH,wBAAgB,0BAA0B,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAKnE;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAErD;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAErD;AAED;;;;;GAKG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,KAAK,GAAG,OAAO,GAAG,MAAM,CAE9D;AAED;;;;;;GAMG;AACH,wBAAgB,kBAAkB,CAAC,cAAc,CAAC,EAAE,aAAa,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,OAAO,CAErG;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAM/E;AAED;;;;;GAKG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,GAAG,OAAO,CAczF;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAIpD;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAIrD"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/sync/common/utils.ts"],"names":[],"mappings":"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"}
@@ -59,6 +59,8 @@ exports.V4_TEMPLATES = [
59
59
  ux_specification_types_1.v4.FE_TEMPLATE_V4_CUSTOM_PAGE
60
60
  ];
61
61
  exports.V4_LIBS = ['sap.fe.core', 'sap.fe.templates'];
62
+ const CONTROL_PROPERTY = 'controlProperty';
63
+ const DEFAULT_CONTROL_PROPERTY = 'defaultControlProperty';
62
64
  const arrayIncludes = (arr, target) => target.every((v) => arr.includes(v));
63
65
  exports.arrayIncludes = arrayIncludes;
64
66
  /**
@@ -1340,6 +1342,15 @@ function findMatchingKeysByAdditionalProperties(appSchema, additionalProperties,
1340
1342
  }
1341
1343
  return result;
1342
1344
  }
1345
+ /**
1346
+ * Populates a given array with definitions from an application's schema that match certain conditions defined by the current configuration object and element reference.
1347
+ *
1348
+ * @param {Definition} element - The element containing a reference ($ref) to a specific definition within the application schema.
1349
+ * @param {Definition} appSchema - The application's schema object containing all definitions.
1350
+ * @param {object} currentConfigObject - The current configuration object which is evaluated against the schema definitions.
1351
+ * @param {any[]} definitionArray - The array to which matching definitions are added based on the evaluation.
1352
+ * @return {void} This function does not return any value but modifies the definitionArray parameter by adding appropriate definitions.
1353
+ */
1343
1354
  function fillArrayFromAnyOfReference(element, appSchema, currentConfigObject, definitionArray) {
1344
1355
  const $ref = element.$ref;
1345
1356
  if (!$ref) {
@@ -1348,11 +1359,14 @@ function fillArrayFromAnyOfReference(element, appSchema, currentConfigObject, de
1348
1359
  const definitionKey = $ref.split(exports.DEFINITION_LINK_PREFIX)[1];
1349
1360
  const innerDefinition = appSchema.definitions[definitionKey];
1350
1361
  if (typeof innerDefinition === 'object' && typeof currentConfigObject === 'object') {
1351
- const controlProperty = innerDefinition['controlProperty'];
1362
+ const controlProperty = innerDefinition[CONTROL_PROPERTY];
1352
1363
  if (controlProperty) {
1353
1364
  if ($ref.includes(currentConfigObject[controlProperty])) {
1354
1365
  definitionArray.push(definitionKey);
1355
1366
  }
1367
+ if (currentConfigObject[controlProperty] === undefined && innerDefinition[DEFAULT_CONTROL_PROPERTY]) {
1368
+ definitionArray.push(definitionKey);
1369
+ }
1356
1370
  }
1357
1371
  else if (typeof innerDefinition.additionalProperties === 'object') {
1358
1372
  // Check if potential object already exists in schema properties
@@ -1432,7 +1446,7 @@ function determineNextDefinitionFromDefinitionArray(definitionArray, appSchema,
1432
1446
  : title;
1433
1447
  const factoryKey = lastDefinition?.split('<')[0];
1434
1448
  const targetObject = currentConfigObject ? currentConfigObject : {};
1435
- nextDefinition.configObject = factory.createInstance(pageType, factoryKey, targetObject, nextDefinition?.targetDefinition?.['controlProperty']);
1449
+ nextDefinition.configObject = factory.createInstance(pageType, factoryKey, targetObject, nextDefinition?.targetDefinition?.[CONTROL_PROPERTY]);
1436
1450
  }
1437
1451
  else {
1438
1452
  //e.g. sections ==> loop over all properties = subsections or other