@sap/ux-specification 1.120.53 → 1.120.55

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 (215) hide show
  1. package/CHANGELOG.md +66 -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-ListReportNew.html +2 -2
  6. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  7. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  8. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  9. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  10. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  11. package/dist/documentation/v4/v4-ListReport.html +2 -2
  12. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  13. package/dist/index-min.js +278 -269
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v2/ListReportNewConfig.json +202 -7
  16. package/dist/schemas/v4/BuildingBlocksConfig.json +73 -2
  17. package/dist/specification/package.json +10 -10
  18. package/dist/specification/scripts/macros/corrections.d.ts +1 -0
  19. package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
  20. package/dist/specification/scripts/macros/corrections.js +94 -2
  21. package/dist/specification/scripts/macros/corrections.js.map +1 -1
  22. package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
  23. package/dist/specification/scripts/macros/schema.js +36 -10
  24. package/dist/specification/scripts/macros/schema.js.map +1 -1
  25. package/dist/specification/scripts/schema/to-json-schema.js +1 -1
  26. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  27. package/dist/specification/src/api.d.ts.map +1 -1
  28. package/dist/specification/src/api.js +39 -3
  29. package/dist/specification/src/api.js.map +1 -1
  30. package/dist/specification/src/ftfs/ftfs.d.ts +8 -0
  31. package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
  32. package/dist/specification/src/ftfs/ftfs.js +1 -0
  33. package/dist/specification/src/ftfs/ftfs.js.map +1 -1
  34. package/dist/specification/src/ftfs/index.d.ts +1 -1
  35. package/dist/specification/src/ftfs/index.d.ts.map +1 -1
  36. package/dist/specification/src/ftfs/index.js +2 -1
  37. package/dist/specification/src/ftfs/index.js.map +1 -1
  38. package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -1
  39. package/dist/specification/src/ftfs/parser/model/TreeModel.js +3 -1
  40. package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -1
  41. package/dist/specification/src/i18n/i18n.d.ts.map +1 -1
  42. package/dist/specification/src/i18n/i18n.js +2 -1
  43. package/dist/specification/src/i18n/i18n.js.map +1 -1
  44. package/dist/specification/src/sync/common/decoration/Decorator.d.ts +91 -0
  45. package/dist/specification/src/sync/common/decoration/Decorator.d.ts.map +1 -0
  46. package/dist/specification/src/sync/common/decoration/Decorator.js +139 -0
  47. package/dist/specification/src/sync/common/decoration/Decorator.js.map +1 -0
  48. package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts +95 -0
  49. package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts.map +1 -0
  50. package/dist/specification/src/sync/common/decoration/condition-evaluator.js +210 -0
  51. package/dist/specification/src/sync/common/decoration/condition-evaluator.js.map +1 -0
  52. package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +5 -22
  53. package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -1
  54. package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -1
  55. package/dist/specification/src/sync/common/decoration/decorators.d.ts +6 -48
  56. package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
  57. package/dist/specification/src/sync/common/decoration/decorators.js +26 -106
  58. package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
  59. package/dist/specification/src/sync/common/decoration/index.d.ts +4 -0
  60. package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
  61. package/dist/specification/src/sync/common/decoration/index.js +4 -0
  62. package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
  63. package/dist/specification/src/sync/common/decoration/interfaces.d.ts +38 -0
  64. package/dist/specification/src/sync/common/decoration/interfaces.d.ts.map +1 -0
  65. package/dist/specification/src/sync/common/decoration/interfaces.js +3 -0
  66. package/dist/specification/src/sync/common/decoration/interfaces.js.map +1 -0
  67. package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts +18 -0
  68. package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts.map +1 -0
  69. package/dist/specification/src/sync/common/decoration/steps/Enums.js +50 -0
  70. package/dist/specification/src/sync/common/decoration/steps/Enums.js.map +1 -0
  71. package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts +18 -0
  72. package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts.map +1 -0
  73. package/dist/specification/src/sync/common/decoration/steps/Hide.js +46 -0
  74. package/dist/specification/src/sync/common/decoration/steps/Hide.js.map +1 -0
  75. package/dist/specification/src/sync/common/decoration/steps/Message.d.ts +26 -0
  76. package/dist/specification/src/sync/common/decoration/steps/Message.d.ts.map +1 -0
  77. package/dist/specification/src/sync/common/decoration/steps/Message.js +77 -0
  78. package/dist/specification/src/sync/common/decoration/steps/Message.js.map +1 -0
  79. package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts +18 -0
  80. package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts.map +1 -0
  81. package/dist/specification/src/sync/common/decoration/steps/Readonly.js +43 -0
  82. package/dist/specification/src/sync/common/decoration/steps/Readonly.js.map +1 -0
  83. package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts +18 -0
  84. package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts.map +1 -0
  85. package/dist/specification/src/sync/common/decoration/steps/Validity.js +68 -0
  86. package/dist/specification/src/sync/common/decoration/steps/Validity.js.map +1 -0
  87. package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts +19 -0
  88. package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts.map +1 -0
  89. package/dist/specification/src/sync/common/decoration/steps/enum-utils.js +48 -0
  90. package/dist/specification/src/sync/common/decoration/steps/enum-utils.js.map +1 -0
  91. package/dist/specification/src/sync/common/decoration/steps/index.d.ts +6 -0
  92. package/dist/specification/src/sync/common/decoration/steps/index.d.ts.map +1 -0
  93. package/dist/specification/src/sync/common/decoration/steps/index.js +14 -0
  94. package/dist/specification/src/sync/common/decoration/steps/index.js.map +1 -0
  95. package/dist/specification/src/sync/common/i18n.json +22 -0
  96. package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts +4 -5
  97. package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts.map +1 -1
  98. package/dist/specification/src/sync/v2/export/controls/Fragment.js +29 -20
  99. package/dist/specification/src/sync/v2/export/controls/Fragment.js.map +1 -1
  100. package/dist/specification/src/sync/v2/export/export.d.ts.map +1 -1
  101. package/dist/specification/src/sync/v2/export/export.js +3 -2
  102. package/dist/specification/src/sync/v2/export/export.js.map +1 -1
  103. package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
  104. package/dist/specification/src/sync/v2/export/exportPage.js +48 -19
  105. package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
  106. package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts +2 -0
  107. package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
  108. package/dist/specification/src/sync/v2/export/exportPageGeneric.js +17 -6
  109. package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
  110. package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts +54 -6
  111. package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts.map +1 -1
  112. package/dist/specification/src/sync/v2/export/view-controller-generator.js +106 -12
  113. package/dist/specification/src/sync/v2/export/view-controller-generator.js.map +1 -1
  114. package/dist/specification/src/sync/v2/generate/analyticalListReport.js +7 -7
  115. package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  116. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  117. package/dist/specification/src/sync/v2/generate/objectPage.js +56 -2
  118. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  119. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -2
  120. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
  121. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +4 -4
  122. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts +12 -0
  123. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts.map +1 -0
  124. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js +167 -0
  125. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js.map +1 -0
  126. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +3 -3
  127. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -1
  128. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +59 -2
  129. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
  130. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +582 -7
  131. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
  132. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
  133. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
  134. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
  135. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
  136. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts.map +1 -1
  137. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js +29 -6
  138. package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js.map +1 -1
  139. package/dist/specification/src/sync/v2/types.d.ts +2 -0
  140. package/dist/specification/src/sync/v2/types.d.ts.map +1 -1
  141. package/dist/specification/src/sync/v2/types.js.map +1 -1
  142. package/dist/specification/src/sync/v2/utils.d.ts +25 -0
  143. package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
  144. package/dist/specification/src/sync/v2/utils.js +28 -4
  145. package/dist/specification/src/sync/v2/utils.js.map +1 -1
  146. package/dist/specification/src/sync/v4/application.d.ts +11 -0
  147. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  148. package/dist/specification/src/sync/v4/application.js +16 -1
  149. package/dist/specification/src/sync/v4/application.js.map +1 -1
  150. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +3 -1
  151. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
  152. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +10 -7
  153. package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
  154. package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +1 -0
  155. package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
  156. package/dist/specification/src/sync/v4/export/fpmCustomPage.js +212 -46
  157. package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
  158. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +13 -0
  159. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
  160. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +93 -13
  161. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  162. package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts.map +1 -1
  163. package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js +4 -3
  164. package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js.map +1 -1
  165. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
  166. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +29 -27
  167. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
  168. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
  169. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +12 -3
  170. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
  171. package/dist/specification/src/sync/v4/generate/objectPage.js +17 -23
  172. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  173. package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.d.ts.map +1 -1
  174. package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js +20 -0
  175. package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js.map +1 -1
  176. package/dist/specification/src/sync/v4/sync-rules/App.d.ts +2 -4
  177. package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
  178. package/dist/specification/src/sync/v4/sync-rules/App.js +2 -1
  179. package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
  180. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -1
  181. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
  182. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +3 -1
  183. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
  184. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +119 -127
  185. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
  186. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +171 -170
  187. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
  188. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +5 -0
  189. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
  190. package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
  191. package/dist/specification/src/sync/v4/utils/macros.d.ts +19 -0
  192. package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
  193. package/dist/specification/src/sync/v4/utils/macros.js +34 -0
  194. package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
  195. package/dist/specification/test/test-utils/utils.d.ts.map +1 -1
  196. package/dist/specification/test/test-utils/utils.js +4 -0
  197. package/dist/specification/test/test-utils/utils.js.map +1 -1
  198. package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +2 -2
  199. package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -1
  200. package/dist/specification/test/unit/decorators/validity-test-utils.js +6 -6
  201. package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -1
  202. package/dist/templates/AnalyticalTableColumnsExtension.xml +3 -3
  203. package/dist/templates/GridTableColumnsExtension.xml +3 -3
  204. package/dist/templates/ResponsiveTableColumnsExtension.xml +2 -2
  205. package/dist/templates/TreeTableColumnsExtension.xml +4 -4
  206. package/dist/templates/fragment.xml +3 -3
  207. package/dist/templates/view.xml +3 -3
  208. package/dist/types/src/apiTypes.d.ts +15 -5
  209. package/dist/types/src/apiTypes.d.ts.map +1 -1
  210. package/dist/types/src/apiTypes.js +1 -0
  211. package/dist/types/src/apiTypes.js.map +1 -1
  212. package/dist/types/src/common/types.d.ts +1 -0
  213. package/dist/types/src/common/types.d.ts.map +1 -1
  214. package/dist/types/src/common/types.js.map +1 -1
  215. package/package.json +11 -11
@@ -74,7 +74,7 @@
74
74
  "description": "Specify a SelectionVariant (in order to set default values for the filter bar), a PresentationVariant (in order to define the layout of the table), or a SelectionPresentationVariant (combining both)",
75
75
  "type": "string",
76
76
  "artifactType": "Manifest",
77
- "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/49a6ba5b8d6946208322a9f7e16837c2"
77
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/22e32b7241e843c1a84fee142e9d8ef0"
78
78
  },
79
79
  "liveMode": {
80
80
  "description": "If liveMode is set, the search will be automatically triggered when a filter value is set.",
@@ -86,20 +86,20 @@
86
86
  "description": "Controls whether smart variant management is active. Default is true.",
87
87
  "type": "boolean",
88
88
  "artifactType": "Manifest",
89
- "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/094fe8c8d8ac4f0eb4724b1a52d2ad61"
89
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/e3b12f41d70c442f9d4cc2e7722bbb17"
90
90
  },
91
91
  "variantManagementHidden": {
92
92
  "description": "If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf the flag is false or undefined, the standard variant management is available and can be enabled or disabled.",
93
93
  "type": "boolean",
94
94
  "artifactType": "Manifest",
95
- "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/094fe8c8d8ac4f0eb4724b1a52d2ad61"
95
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/e3b12f41d70c442f9d4cc2e7722bbb17"
96
96
  },
97
97
  "subTitleIfVariantMgmtHidden": {
98
98
  "description": "You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property.",
99
99
  "i18nClassification": "TIT: Subtitle if variant management is hidden",
100
100
  "type": "string",
101
101
  "artifactType": "Manifest",
102
- "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/094fe8c8d8ac4f0eb4724b1a52d2ad61"
102
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/e3b12f41d70c442f9d4cc2e7722bbb17"
103
103
  },
104
104
  "showClearOnFB": {
105
105
  "description": "Handles the visibility of the Clear button on the filter bar.",
@@ -431,13 +431,13 @@
431
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
432
  "type": "string",
433
433
  "artifactType": "Manifest",
434
- "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b6b59e4a4c3548cf83ff9c3b955d3ba3"
434
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/6698b80fc1a543ebb5c07e0781e9b93e"
435
435
  },
436
436
  "annotationPath": {
437
437
  "description": "Specify a SelectionVariant or SelectionPresentationVariant annotation for the entity set to configure the table or chart",
438
438
  "type": "string",
439
439
  "artifactType": "Manifest",
440
- "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/37aeed74e17a42caa2cba3123f0c15fc"
440
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/97dfeea4a8c346368cea6bf7a3e85478"
441
441
  },
442
442
  "showItemNavigationOnChart": {
443
443
  "description": "To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest.",
@@ -464,10 +464,108 @@
464
464
  "controlType": "sap.ui.comp.smarttable.SmartTable"
465
465
  },
466
466
  "useExportToExcel": {
467
- "description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
467
+ "description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example, Microsoft Excel.",
468
468
  "type": "boolean",
469
469
  "artifactType": "FlexChange",
470
470
  "controlType": "sap.ui.comp.smarttable.SmartTable"
471
+ },
472
+ "growingThreshold": {
473
+ "description": "Defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true.",
474
+ "type": "number",
475
+ "artifactType": "FlexChange",
476
+ "controlType": "sap.m.Table"
477
+ },
478
+ "popinLayout": {
479
+ "pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
480
+ "anyOf": [
481
+ {
482
+ "$ref": "#/definitions/PopinLayout"
483
+ },
484
+ {
485
+ "type": "string"
486
+ }
487
+ ],
488
+ "description": "Defines the layout in which the table pop-in rows are rendered.",
489
+ "artifactType": "FlexChange",
490
+ "controlType": "sap.m.Table"
491
+ },
492
+ "includeItemInSelection": {
493
+ "description": "Set this property to true if you want items to be selectable when they are clicked rather than after the selection control has been set.",
494
+ "type": "boolean",
495
+ "artifactType": "FlexChange",
496
+ "controlType": "sap.m.Table"
497
+ },
498
+ "tableType": {
499
+ "$ref": "#/definitions/TableTypeV2Enum",
500
+ "description": "Obsolete property for specifying the type of the table. Use the 'type' property instead.",
501
+ "artifactType": "Manifest"
502
+ },
503
+ "type": {
504
+ "$ref": "#/definitions/TableTypeV2Enum",
505
+ "description": "Specifies the type of the table.",
506
+ "artifactType": "Manifest",
507
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/5d270547f113468e83e06dd7ee408a45"
508
+ },
509
+ "condensedTableLayout": {
510
+ "description": "Sets a condensed table layout for analytical tables, grid tables, and tree tables.",
511
+ "type": "boolean",
512
+ "artifactType": "Manifest"
513
+ },
514
+ "enableTableFilterInPageVariant": {
515
+ "description": "If you have enabled harmonized variant management, by default, business users cannot set a filter in the table personalization settings.\nTo enable filtering for business users, you must set the enableTableFilterInPageVariant property to true.",
516
+ "type": "boolean",
517
+ "artifactType": "Manifest"
518
+ },
519
+ "inlineDelete": {
520
+ "description": "Used to enable inline deletion in a responsive table.",
521
+ "type": "boolean",
522
+ "artifactType": "Manifest"
523
+ },
524
+ "multiSelect": {
525
+ "description": "When this setting is enabled, the table switches from single to multi selection.",
526
+ "type": "boolean",
527
+ "artifactType": "Manifest",
528
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/402fac73b4794a31983609ebdde580d2"
529
+ },
530
+ "selectAll": {
531
+ "description": "This property can be used to decide whether the 'Select All' checkbox or the 'Clear All' button is shown in the top-left corner of the table.",
532
+ "type": "boolean",
533
+ "artifactType": "Manifest"
534
+ },
535
+ "selectionLimit": {
536
+ "description": "When new data is loaded from the back-end system, the number of lines is restricted to the specified limit. The default value is 200.",
537
+ "type": "number",
538
+ "artifactType": "Manifest",
539
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/116b5d82e8c545e2a56e1b51b8b0a9bd?q=selectionLimit"
540
+ },
541
+ "copy": {
542
+ "description": "If copy is set to true, the 'Copy to Clipboard' button is shown in the table toolbar.\nBy default, the 'Copy to Clipboard' button is displayed in the table toolbar if the selection mode is configured for the corresponding table.",
543
+ "type": "boolean",
544
+ "artifactType": "Manifest",
545
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/c0f6592a592e47f9bb6d09900de47412"
546
+ },
547
+ "dataLoadSettings": {
548
+ "$ref": "#/definitions/DataLoadSettings",
549
+ "description": "Change the default behavior for autoloading of data."
550
+ },
551
+ "createWithFilters": {
552
+ "$ref": "#/definitions/CreateWithFilters",
553
+ "description": "Adds a new create action that uses the filter settings as input."
554
+ },
555
+ "createWithParameterDialog": {
556
+ "$ref": "#/definitions/Fields4CreateWithParametersDialog",
557
+ "description": "Enables the creation of objects that have a maximum of eight data fields through a dialog in the list report page.",
558
+ "artifactType": "Manifest",
559
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/2d04f60da84a49f6bb8617fbf1d3d2aa"
560
+ },
561
+ "multiEdit": {
562
+ "$ref": "#/definitions/MultiEdit",
563
+ "description": "Allows you to edit multiple objects using a dialog.",
564
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/7cc4f04364c540c397130ff92f84c3ca"
565
+ },
566
+ "toolbar": {
567
+ "$ref": "#/definitions/Toolbar",
568
+ "description": "Tool Bar"
471
569
  }
472
570
  },
473
571
  "additionalProperties": false
@@ -554,6 +652,103 @@
554
652
  ],
555
653
  "type": "string"
556
654
  },
655
+ "PopinLayout": {
656
+ "description": "Defines the layout options of the table popins.",
657
+ "enum": [
658
+ "Block",
659
+ "GridLarge",
660
+ "GridSmall"
661
+ ],
662
+ "type": "string"
663
+ },
664
+ "TableTypeV2Enum": {
665
+ "enum": [
666
+ "AnalyticalTable",
667
+ "GridTable",
668
+ "ResponsiveTable",
669
+ "TreeTable"
670
+ ],
671
+ "type": "string"
672
+ },
673
+ "DataLoadSettings": {
674
+ "type": "object",
675
+ "properties": {
676
+ "loadDataOnAppLaunch": {
677
+ "$ref": "#/definitions/LoadDataOnAppLaunchSettingsEnum",
678
+ "description": "Changes the default behavior for autoloading data.",
679
+ "artifactType": "Manifest",
680
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b736ab6ae3654789ba1f9630e5720af3?q=loadDataOnAppLaunch"
681
+ }
682
+ },
683
+ "additionalProperties": false,
684
+ "required": [
685
+ "loadDataOnAppLaunch"
686
+ ]
687
+ },
688
+ "LoadDataOnAppLaunchSettingsEnum": {
689
+ "enum": [
690
+ "always",
691
+ "ifAnyFilterExist",
692
+ "never"
693
+ ],
694
+ "type": "string"
695
+ },
696
+ "CreateWithFilters": {
697
+ "type": "object",
698
+ "properties": {
699
+ "strategy": {
700
+ "description": "For the create action to use the filter settings as input, set this property to extension and implement the extension function as mentioned in help.sap.com for SAP S/4HANA, section \"Prefilling Fields When Creating a New Entity Using an Extension Point\".",
701
+ "type": "string",
702
+ "const": "extension",
703
+ "artifactType": "Manifest",
704
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/189e2d8a59f04a2693a4fde7f4a91a65?q=createWithFilters"
705
+ }
706
+ },
707
+ "additionalProperties": false,
708
+ "required": [
709
+ "strategy"
710
+ ]
711
+ },
712
+ "Fields4CreateWithParametersDialog": {
713
+ "type": "object",
714
+ "properties": {
715
+ "fields": {
716
+ "type": "array",
717
+ "items": {
718
+ "type": "string"
719
+ }
720
+ }
721
+ },
722
+ "additionalProperties": false,
723
+ "required": [
724
+ "fields"
725
+ ]
726
+ },
727
+ "MultiEdit": {
728
+ "type": "object",
729
+ "properties": {
730
+ "enabled": {
731
+ "description": "When multiEdit is enabled, by default the dialog displays editable fields corresponding to the columns that are displayed in the table.",
732
+ "type": "boolean",
733
+ "artifactType": "Manifest"
734
+ },
735
+ "annotationPath": {
736
+ "description": "Use annotationPath to define a mass edit dialog that points to a FieldGroup annotation with a qualifier.",
737
+ "type": "string",
738
+ "artifactType": "Manifest"
739
+ },
740
+ "ignoredFields": {
741
+ "description": "Determines which fields are hidden in key user adaptation and restricts them from being added to the mass edit dialog.",
742
+ "type": "array",
743
+ "items": {
744
+ "type": "string",
745
+ "const": "GENERICPROPERTY"
746
+ },
747
+ "artifactType": "Manifest"
748
+ }
749
+ },
750
+ "additionalProperties": false
751
+ },
557
752
  "Toolbar": {
558
753
  "description": "Toolbar",
559
754
  "isViewNode": true,
@@ -411,12 +411,25 @@
411
411
  "metadata": {
412
412
  "type": "Property"
413
413
  }
414
+ },
415
+ "fields": {
416
+ "type": "object",
417
+ "additionalProperties": {
418
+ "$ref": "#/definitions/sap.fe.macros.FormElement"
419
+ },
420
+ "isViewNode": true,
421
+ "metadata": {
422
+ "path": [],
423
+ "type": "Aggregation",
424
+ "aggregationCardinality": "Multiple"
425
+ }
414
426
  }
415
427
  },
416
428
  "additionalProperties": false,
417
429
  "metadata": {
418
430
  "path": [],
419
- "type": "Control"
431
+ "type": "Control",
432
+ "defaultAggregation": "fields"
420
433
  }
421
434
  },
422
435
  "sap.fe.macros.FormElement": {
@@ -475,7 +488,8 @@
475
488
  "path": [],
476
489
  "type": "Aggregation",
477
490
  "aggregationCardinality": "Single"
478
- }
491
+ },
492
+ "description": "Optional aggregation of controls that should be displayed inside the FormElement.\nIf not set, a default Field building block will be rendered"
479
493
  }
480
494
  },
481
495
  "additionalProperties": false,
@@ -1039,6 +1053,19 @@
1039
1053
  "aggregationCardinality": "Multiple"
1040
1054
  }
1041
1055
  },
1056
+ "massEdit": {
1057
+ "type": "object",
1058
+ "additionalProperties": {
1059
+ "$ref": "#/definitions/sap.fe.macros.MassEdit"
1060
+ },
1061
+ "isViewNode": false,
1062
+ "metadata": {
1063
+ "path": [],
1064
+ "type": "Aggregation",
1065
+ "aggregationCardinality": "Single"
1066
+ },
1067
+ "description": "Aggregate mass edit of the table."
1068
+ },
1042
1069
  "rowPress": {
1043
1070
  "type": "string",
1044
1071
  "description": "An event is triggered when the user chooses a row; the event contains information about which row is chosen.\nYou can set this in order to handle the navigation manually.\n",
@@ -1241,6 +1268,50 @@
1241
1268
  "type": "Control"
1242
1269
  }
1243
1270
  },
1271
+ "sap.fe.macros.MassEdit": {
1272
+ "description": "Definition of the mass edit to be used inside the table.",
1273
+ "isViewNode": true,
1274
+ "type": "object",
1275
+ "properties": {
1276
+ "ignoredFields": {
1277
+ "$ref": "#/definitions/string[]",
1278
+ "description": "Defines the list of fields that should be ignored in the mass edit dialog",
1279
+ "artifactType": "XMLProperty",
1280
+ "metadata": {
1281
+ "type": "Property"
1282
+ }
1283
+ },
1284
+ "operationGroupingMode": {
1285
+ "type": "string",
1286
+ "description": "Defines the mode of the operation grouping to save the new values\nAllowed values are `ChangeSet` and `Isolated`",
1287
+ "artifactType": "XMLProperty",
1288
+ "metadata": {
1289
+ "type": "Property"
1290
+ }
1291
+ },
1292
+ "visibleFields": {
1293
+ "$ref": "#/definitions/string[]",
1294
+ "description": "Defines the list of fields that should be visible in the mass edit dialog",
1295
+ "artifactType": "XMLProperty",
1296
+ "metadata": {
1297
+ "type": "Property"
1298
+ }
1299
+ },
1300
+ "id": {
1301
+ "type": "string",
1302
+ "description": "Unique id of control",
1303
+ "artifactType": "XMLProperty",
1304
+ "metadata": {
1305
+ "type": "Property"
1306
+ }
1307
+ }
1308
+ },
1309
+ "additionalProperties": false,
1310
+ "metadata": {
1311
+ "path": [],
1312
+ "type": "Control"
1313
+ }
1314
+ },
1244
1315
  "sap.fe.macros.chart.Action": {
1245
1316
  "description": "Definition of a custom action to be used in the chart toolbar",
1246
1317
  "isViewNode": true,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/ux-specification",
3
- "version": "1.120.53",
3
+ "version": "1.120.55",
4
4
  "displayName": "SAP Fiori tools - Specification",
5
5
  "description": "SAP Fiori tools - Specification",
6
6
  "files": [
@@ -27,8 +27,8 @@
27
27
  "build:schemas": "npm-run-all -l -s create-json-schemas copy-json-schemas",
28
28
  "build:snap": "yarn build:dev && yarn update-snapshots",
29
29
  "create-json-schemas": "ts-node ./scripts/schema/index.ts ",
30
- "copy-json-schemas": "copyfiles \"./schemas/**\" ./dist",
31
- "copy-templates": "copyfiles --flat src/sync/v2/export/templates/** dist/templates",
30
+ "copy-json-schemas": "cpy \"schemas/**\" dist/schemas",
31
+ "copy-templates": "cpy \"src/sync/v2/export/templates/**\" dist/templates --flat",
32
32
  "deleteSnapshots": "rimraf **/_file_snapshots_",
33
33
  "docuV2": "ts-node ./scripts/extractDocu.ts --version=v2 format=excel",
34
34
  "docuV4": "ts-node ./scripts/extractDocu.ts --version=v4 format=excel",
@@ -42,7 +42,7 @@
42
42
  "lint:report:jslint": "eslint . -o reports/lint/eslint.jslint.xml -f jslint-xml",
43
43
  "macros": "ts-node ./scripts/macros/index.ts",
44
44
  "test": "jest && node ../../scripts/scov.js reports/test/unit/coverage/lcov.info",
45
- "test:ci": "jest --ci --forceExit --detectOpenHandles && node ../../scripts/scov.js reports/test/unit/coverage/lcov.info",
45
+ "test:ci": "node --max-old-space-size=4096 ./node_modules/.bin/jest --ci --forceExit --detectOpenHandles && node ../../scripts/scov.js reports/test/unit/coverage/lcov.info",
46
46
  "update-snapshots": "jest --updateSnapshot",
47
47
  "watch": "npm-run-all -l -s clean:before -p compile create-json-schemas macros copy-templates -p copy-json-schemas -s bundle:watch",
48
48
  "watch:doc": "npm-run-all -l -s clean:doc -s compile -s htmlV2 htmlV4 -s bundle:watch"
@@ -50,14 +50,14 @@
50
50
  "publisher": "SAPSE",
51
51
  "license": "SEE LICENSE IN LICENSE",
52
52
  "dependencies": {
53
- "@sap-ux/fe-fpm-writer": "0.43.7",
53
+ "@sap-ux/fe-fpm-writer": "0.43.21",
54
54
  "@sap-ux/vocabularies-types": "0.15.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@sap-ux/annotation-converter": "0.10.21",
58
58
  "@sap-ux/edmx-parser": "0.10.0",
59
- "@sap-ux/project-access": "1.35.10",
60
- "@sap/ux-specification-types": "1.120.53",
59
+ "@sap-ux/project-access": "1.35.20",
60
+ "@sap/ux-specification-types": "1.120.55",
61
61
  "@sapui5/types": "latest-1.120",
62
62
  "@types/d3": "7.4.3",
63
63
  "@types/jquery": "3.5.34",
@@ -67,14 +67,14 @@
67
67
  "@ui5/flexibility-utils": "0.1.3",
68
68
  "@xml-tools/ast": "5.0.5",
69
69
  "@xml-tools/parser": "1.0.11",
70
- "axios": "1.13.6",
71
- "copyfiles": "2.4.1",
70
+ "axios": "1.15.0",
71
+ "cpy-cli": "7.0.0",
72
72
  "d3": "7.9.0",
73
73
  "deepmerge": "4.3.1",
74
74
  "ejs": "3.1.10",
75
75
  "eslint-formatter-checkstyle": "9.0.1",
76
76
  "excel4node": "1.8.2",
77
- "i18next": "25.8.13",
77
+ "i18next": "25.8.18",
78
78
  "jquery": "3.7.1",
79
79
  "jsdom": "25.0.1",
80
80
  "jsonpath-plus": "10.4.0",
@@ -7,6 +7,7 @@ interface APICorrection {
7
7
  extend: true;
8
8
  })>;
9
9
  metadata?: Partial<UI5Symbol>;
10
+ description?: string;
10
11
  }
11
12
  /**
12
13
  * Describes a map of enum entries that may depend on another property.
@@ -1 +1 @@
1
- {"version":3,"file":"corrections.d.ts","sourceRoot":"","sources":["../../../../scripts/macros/corrections.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,SAAS,EAA8B,WAAW,EAAE,MAAM,SAAS,CAAC;AAG7G,UAAU,aAAa;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,YAAY,CAAC,EAAE,cAAc,EAAE,CAAC;IAChC,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC9B,UAAU,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG;QAAE,MAAM,EAAE,IAAI,CAAA;KAAE,CAAC,CAAC,CAAC;IAC5E,QAAQ,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;CACjC;AAED;;GAEG;AACH,UAAU,oBAAoB;IAC1B;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,MAAM,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;CACvC;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,uBAAuB,EAAE;IAClC,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,oBAAoB,CAAA;KAAE,CAAC;CAmB1D,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAgB,qBAAqB,CACjC,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,MAAM,GACxB,MAAM,EAAE,GAAG,SAAS,CAiBtB;AAED,eAAO,MAAM,gBAAgB,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;CAkQ5D,CAAC;AAyLF;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,SAAS,GAAG,IAAI,CAuBrD"}
1
+ {"version":3,"file":"corrections.d.ts","sourceRoot":"","sources":["../../../../scripts/macros/corrections.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,SAAS,EAA8B,WAAW,EAAE,MAAM,SAAS,CAAC;AAG7G,UAAU,aAAa;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,YAAY,CAAC,EAAE,cAAc,EAAE,CAAC;IAChC,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC9B,UAAU,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG;QAAE,MAAM,EAAE,IAAI,CAAA;KAAE,CAAC,CAAC,CAAC;IAC5E,QAAQ,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,UAAU,oBAAoB;IAC1B;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,MAAM,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;CACvC;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,uBAAuB,EAAE;IAClC,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,oBAAoB,CAAA;KAAE,CAAC;CAmB1D,CAAC;AAEF;;;;;;;;;;GAUG;AACH,wBAAgB,qBAAqB,CACjC,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,MAAM,GACxB,MAAM,EAAE,GAAG,SAAS,CAiBtB;AAED,eAAO,MAAM,gBAAgB,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;CAgW5D,CAAC;AAyLF;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,SAAS,GAAG,IAAI,CAuBrD"}
@@ -67,7 +67,21 @@ exports.macrosCorrection = {
67
67
  },
68
68
  'sap.fe.macros.Table': {
69
69
  defaultAggregation: 'columns',
70
- removeAggregations: ['noData']
70
+ removeAggregations: ['noData'],
71
+ aggregations: [
72
+ {
73
+ name: 'massEdit',
74
+ singularName: 'massEdit',
75
+ bindable: true,
76
+ cardinality: '0..1',
77
+ description: '<p>Aggregate mass edit of the table.</p>',
78
+ methods: [],
79
+ type: 'sap.fe.macros.MassEdit',
80
+ altTypes: [],
81
+ visibility: types_1.UI5Visibility.public,
82
+ linkEnabled: true
83
+ }
84
+ ]
71
85
  },
72
86
  'sap.fe.macros.table.Table': {
73
87
  removeAggregations: ['noData']
@@ -81,6 +95,21 @@ exports.macrosCorrection = {
81
95
  'sap.fe.macros.table.TreeTable': {
82
96
  removeAggregations: ['noData']
83
97
  },
98
+ 'sap.fe.macros.Form': {
99
+ defaultAggregation: 'fields',
100
+ aggregations: [
101
+ {
102
+ name: 'fields',
103
+ singularName: 'field',
104
+ type: 'sap.fe.macros.FormElement',
105
+ cardinality: '0..n',
106
+ visibility: types_1.UI5Visibility.public,
107
+ description: 'Form fields',
108
+ methods: [],
109
+ linkEnabled: true
110
+ }
111
+ ]
112
+ },
84
113
  'sap.fe.macros.ActionGroup': {
85
114
  defaultAggregation: 'actions',
86
115
  aggregations: [
@@ -316,6 +345,69 @@ exports.macrosCorrection = {
316
345
  displayName: 'sap.fe.macros.richtexteditor',
317
346
  kind: types_1.SYMBOL_KIND_NAMESPACE
318
347
  }
348
+ },
349
+ 'sap.fe.macros.MassEdit': {
350
+ description: '<p>Definition of the mass edit to be used inside the table.</p>',
351
+ metadata: {
352
+ kind: types_1.SYMBOL_KIND_CLASS,
353
+ name: 'sap.fe.macros.MassEdit',
354
+ basename: 'MassEdit',
355
+ resource: '',
356
+ module: '',
357
+ static: true,
358
+ visibility: types_1.UI5Visibility.public,
359
+ description: '<p>Definition of the mass edit to be used inside the table.</p>',
360
+ displayName: 'sap.fe.macros.MassEdit',
361
+ title: 'class sap.fe.macros.MassEdit',
362
+ subTitle: ''
363
+ },
364
+ properties: [
365
+ {
366
+ name: 'ignoredFields',
367
+ bindable: false,
368
+ description: '<p>Defines the list of fields that should be ignored in the mass edit dialog</p>',
369
+ group: 'Misc',
370
+ methods: [],
371
+ type: 'string[]',
372
+ visibility: types_1.UI5Visibility.public,
373
+ types: [
374
+ {
375
+ value: 'string[]'
376
+ }
377
+ ],
378
+ defaultValue: ''
379
+ },
380
+ {
381
+ name: 'operationGroupingMode',
382
+ bindable: false,
383
+ description: '<p>Defines the mode of the operation grouping to save the new values\nAllowed values are `ChangeSet` and `Isolated`</p>',
384
+ group: 'Misc',
385
+ methods: [],
386
+ type: 'string',
387
+ visibility: types_1.UI5Visibility.public,
388
+ types: [
389
+ {
390
+ value: 'string'
391
+ }
392
+ ],
393
+ defaultValue: ''
394
+ },
395
+ {
396
+ name: 'visibleFields',
397
+ bindable: false,
398
+ description: '<p>Defines the list of fields that should be visible in the mass edit dialog</p>',
399
+ group: 'Misc',
400
+ methods: [],
401
+ type: 'string[]',
402
+ visibility: types_1.UI5Visibility.public,
403
+ types: [
404
+ {
405
+ value: 'string[]'
406
+ }
407
+ ],
408
+ defaultValue: ''
409
+ }
410
+ ]
319
411
  }
320
412
  };
321
413
  const placementEnum = [ux_specification_types_1.v4.Placement.After, ux_specification_types_1.v4.Placement.Before];
@@ -403,7 +495,7 @@ function applyCorrectionForNode(node, correction) {
403
495
  for (const aggregation of correction.removeAggregations || []) {
404
496
  const aggregationIndex = node.aggregations.findIndex((existingAggregation) => existingAggregation.name === aggregation);
405
497
  if (aggregationIndex !== -1) {
406
- node.aggregations.splice(aggregationIndex);
498
+ node.aggregations.splice(aggregationIndex, 1);
407
499
  }
408
500
  }
409
501
  for (const property of correction.properties || []) {
@@ -1 +1 @@
1
- {"version":3,"file":"corrections.js","sourceRoot":"","sources":["../../../../scripts/macros/corrections.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"corrections.js","sourceRoot":"","sources":["../../../../scripts/macros/corrections.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../scripts/macros/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAGpE,OAAO,KAAK,EACR,SAAS,EAOZ,MAAM,SAAS,CAAC;AASjB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAGvD,eAAO,MAAM,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,mBAAmB,CAAgC,CAAC;AAC1G;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;CAE9B,CAAC;AAkTF;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,SAAS,GAAG,gBAAgB,CAkD/D"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../scripts/macros/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC;AAGpE,OAAO,KAAK,EACR,SAAS,EAOZ,MAAM,SAAS,CAAC;AASjB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAavD,eAAO,MAAM,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,mBAAmB,CAAgC,CAAC;AAC1G;;;GAGG;AACH,eAAO,MAAM,kBAAkB;;CAE9B,CAAC;AAsUF;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,SAAS,GAAG,gBAAgB,CAoD/D"}