@sap/ux-specification 1.124.32 → 1.124.34

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 (193) hide show
  1. package/CHANGELOG.md +73 -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 +249 -250
  14. package/dist/index-min.js.map +4 -4
  15. package/dist/schemas/v2/ApplicationV2.json +28 -3
  16. package/dist/schemas/v2/ListReportNewConfig.json +45 -0
  17. package/dist/schemas/v2/ObjectPageConfig.json +11 -5
  18. package/dist/schemas/v4/ApplicationV4.json +12 -6
  19. package/dist/schemas/v4/BuildingBlocksConfig.json +34 -16
  20. package/dist/schemas/v4/ListReportConfig.json +34 -0
  21. package/dist/schemas/v4/ObjectPageConfig.json +18 -1
  22. package/dist/specification/package.json +18 -18
  23. package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
  24. package/dist/specification/scripts/macros/corrections.js +17 -1
  25. package/dist/specification/scripts/macros/corrections.js.map +1 -1
  26. package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
  27. package/dist/specification/scripts/macros/schema.js +10 -1
  28. package/dist/specification/scripts/macros/schema.js.map +1 -1
  29. package/dist/specification/scripts/macros/types.d.ts +1 -0
  30. package/dist/specification/scripts/macros/types.d.ts.map +1 -1
  31. package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
  32. package/dist/specification/scripts/schema/to-json-schema.js +23 -13
  33. package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
  34. package/dist/specification/src/api.js +1 -1
  35. package/dist/specification/src/sync/common/decoration/decorators.d.ts +65 -4
  36. package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
  37. package/dist/specification/src/sync/common/decoration/decorators.js +138 -8
  38. package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
  39. package/dist/specification/src/sync/common/distTagEvaluator.d.ts +10 -3
  40. package/dist/specification/src/sync/common/distTagEvaluator.d.ts.map +1 -1
  41. package/dist/specification/src/sync/common/distTagEvaluator.js +14 -4
  42. package/dist/specification/src/sync/common/distTagEvaluator.js.map +1 -1
  43. package/dist/specification/src/sync/common/generate/objectPage.js +3 -1
  44. package/dist/specification/src/sync/common/generate/objectPage.js.map +1 -1
  45. package/dist/specification/src/sync/common/generate/utils.d.ts +13 -4
  46. package/dist/specification/src/sync/common/generate/utils.d.ts.map +1 -1
  47. package/dist/specification/src/sync/common/generate/utils.js +35 -20
  48. package/dist/specification/src/sync/common/generate/utils.js.map +1 -1
  49. package/dist/specification/src/sync/common/i18n.json +5 -3
  50. package/dist/specification/src/sync/common/utils.d.ts +52 -1
  51. package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
  52. package/dist/specification/src/sync/common/utils.js +176 -4
  53. package/dist/specification/src/sync/common/utils.js.map +1 -1
  54. package/dist/specification/src/sync/v2/application.d.ts +1 -0
  55. package/dist/specification/src/sync/v2/application.d.ts.map +1 -1
  56. package/dist/specification/src/sync/v2/application.js +18 -0
  57. package/dist/specification/src/sync/v2/application.js.map +1 -1
  58. package/dist/specification/src/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -1
  59. package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
  60. package/dist/specification/src/sync/v2/export/exportPage.js +15 -4
  61. package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
  62. package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
  63. package/dist/specification/src/sync/v2/export/exportPageGeneric.js +8 -15
  64. package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
  65. package/dist/specification/src/sync/v2/export/factory.d.ts +26 -0
  66. package/dist/specification/src/sync/v2/export/factory.d.ts.map +1 -1
  67. package/dist/specification/src/sync/v2/export/factory.js +3 -3
  68. package/dist/specification/src/sync/v2/export/factory.js.map +1 -1
  69. package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts +1 -0
  70. package/dist/specification/src/sync/v2/export/pages/ObjectPage.d.ts.map +1 -1
  71. package/dist/specification/src/sync/v2/export/pages/ObjectPage.js +11 -0
  72. package/dist/specification/src/sync/v2/export/pages/ObjectPage.js.map +1 -1
  73. package/dist/specification/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  74. package/dist/specification/src/sync/v2/generate/analyticalListReport.js +46 -0
  75. package/dist/specification/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  76. package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
  77. package/dist/specification/src/sync/v2/generate/listReport.js +46 -1
  78. package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
  79. package/dist/specification/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  80. package/dist/specification/src/sync/v2/generate/objectPage.js +63 -13
  81. package/dist/specification/src/sync/v2/generate/objectPage.js.map +1 -1
  82. package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
  83. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +28 -1
  84. package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
  85. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts +22 -0
  86. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.d.ts.map +1 -0
  87. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js +124 -0
  88. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiViewSingleTable.js.map +1 -0
  89. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +1 -0
  90. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
  91. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +4 -0
  92. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
  93. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
  94. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
  95. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
  96. package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
  97. package/dist/specification/src/sync/v2/import/importPage.d.ts.map +1 -1
  98. package/dist/specification/src/sync/v2/import/importPage.js +5 -6
  99. package/dist/specification/src/sync/v2/import/importPage.js.map +1 -1
  100. package/dist/specification/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
  101. package/dist/specification/src/sync/v2/import/pages/overviewPage.js +4 -0
  102. package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
  103. package/dist/specification/src/sync/v2/utils.d.ts +17 -1
  104. package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
  105. package/dist/specification/src/sync/v2/utils.js +57 -0
  106. package/dist/specification/src/sync/v2/utils.js.map +1 -1
  107. package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -2
  108. package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
  109. package/dist/specification/src/sync/v4/export/controls/Header.js +14 -2
  110. package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
  111. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +2 -1
  112. package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
  113. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +7 -2
  114. package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
  115. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -0
  116. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts.map +1 -1
  117. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js +20 -0
  118. package/dist/specification/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  119. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts +5 -0
  120. package/dist/specification/src/sync/v4/export/controls/TableColumn.d.ts.map +1 -1
  121. package/dist/specification/src/sync/v4/export/controls/TableColumn.js +40 -0
  122. package/dist/specification/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  123. package/dist/specification/src/sync/v4/export/export.d.ts.map +1 -1
  124. package/dist/specification/src/sync/v4/export/export.js +11 -3
  125. package/dist/specification/src/sync/v4/export/export.js.map +1 -1
  126. package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts.map +1 -1
  127. package/dist/specification/src/sync/v4/export/pages/ListReport.js +2 -1
  128. package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
  129. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts +107 -0
  130. package/dist/specification/src/sync/v4/generate/ListReportUtils.d.ts.map +1 -0
  131. package/dist/specification/src/sync/v4/generate/ListReportUtils.js +374 -0
  132. package/dist/specification/src/sync/v4/generate/ListReportUtils.js.map +1 -0
  133. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +3 -3
  134. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
  135. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +10 -2
  136. package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  137. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
  138. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +9 -2
  139. package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
  140. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +2 -2
  141. package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
  142. package/dist/specification/src/sync/v4/generate/listReport.d.ts +100 -2
  143. package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +1 -1
  144. package/dist/specification/src/sync/v4/generate/listReport.js +119 -100
  145. package/dist/specification/src/sync/v4/generate/listReport.js.map +1 -1
  146. package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  147. package/dist/specification/src/sync/v4/generate/objectPage.js +7 -7
  148. package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
  149. package/dist/specification/src/sync/v4/sync-rules/App.d.ts +141 -0
  150. package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -0
  151. package/dist/specification/src/sync/v4/sync-rules/App.js +208 -0
  152. package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -0
  153. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +193 -0
  154. package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -0
  155. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +384 -0
  156. package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -0
  157. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +172 -0
  158. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -0
  159. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +410 -0
  160. package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -0
  161. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +70 -0
  162. package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -0
  163. package/dist/specification/src/sync/v4/sync-rules/Page.js +73 -0
  164. package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -0
  165. package/dist/specification/src/sync/v4/sync-rules/utils.d.ts +9 -0
  166. package/dist/specification/src/sync/v4/sync-rules/utils.d.ts.map +1 -0
  167. package/dist/specification/src/sync/v4/sync-rules/utils.js +43 -0
  168. package/dist/specification/src/sync/v4/sync-rules/utils.js.map +1 -0
  169. package/dist/specification/src/sync/v4/utils/utils.d.ts +6 -28
  170. package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
  171. package/dist/specification/src/sync/v4/utils/utils.js +8 -55
  172. package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
  173. package/dist/types/src/common/types.d.ts +122 -1
  174. package/dist/types/src/common/types.d.ts.map +1 -1
  175. package/dist/types/src/common/types.js +16 -1
  176. package/dist/types/src/common/types.js.map +1 -1
  177. package/dist/types/src/common/webapp/manifest/Manifest.d.ts +1 -1
  178. package/dist/types/src/common/webapp/manifest/Manifest.d.ts.map +1 -1
  179. package/dist/types/src/v2/application.d.ts +18 -0
  180. package/dist/types/src/v2/application.d.ts.map +1 -1
  181. package/dist/types/src/v2/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  182. package/dist/types/src/v2/controls/ObjectPageTable.d.ts +4 -4
  183. package/dist/types/src/v2/controls/ObjectPageTable.d.ts.map +1 -1
  184. package/dist/types/src/v2/controls/Table.d.ts.map +1 -1
  185. package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts +10 -1
  186. package/dist/types/src/v2/pages/ObjectPageConfigV2.d.ts.map +1 -1
  187. package/dist/types/src/v4/controls/ObjectPageHeader.d.ts +1 -1
  188. package/dist/types/src/v4/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  189. package/dist/types/src/v4/controls/ObjectPageSection.d.ts.map +1 -1
  190. package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts +41 -0
  191. package/dist/types/src/v4/webapp/manifest/ManifestSettings.d.ts.map +1 -1
  192. package/dist/types/src/v4/webapp/manifest/ManifestSettings.js.map +1 -1
  193. package/package.json +18 -18
@@ -50,6 +50,11 @@
50
50
  "description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases.",
51
51
  "manifestPath": "$[\"sap.ui.generic.app\"].settings.statePreservationMode"
52
52
  },
53
+ "globalTableSettings": {
54
+ "$ref": "#/definitions/GlobalApplicationTableSettings",
55
+ "description": "Settings for all tables.",
56
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.tableSettings"
57
+ },
53
58
  "title": {
54
59
  "description": "Defines the title for the application.",
55
60
  "i18nClassification": "TIT: Title of the application",
@@ -81,10 +86,12 @@
81
86
  "type": "object",
82
87
  "properties": {
83
88
  "defaultTwoColumnLayoutType": {
84
- "$ref": "#/definitions/FlexibleColumnLayoutType"
89
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
90
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout.defaultTwoColumnLayoutType"
85
91
  },
86
92
  "defaultThreeColumnLayoutType": {
87
- "$ref": "#/definitions/FlexibleColumnLayoutType"
93
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
94
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.flexibleColumnLayout.defaultThreeColumnLayoutType"
88
95
  }
89
96
  },
90
97
  "additionalProperties": false
@@ -117,7 +124,8 @@
117
124
  "enabled": {
118
125
  "description": "Allows applications to turn off the discard draft confirmation popup in various scenarios.",
119
126
  "type": "string",
120
- "const": "restricted"
127
+ "const": "restricted",
128
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.draftDiscardConfirmationSettings.enabled"
121
129
  }
122
130
  },
123
131
  "additionalProperties": false,
@@ -132,6 +140,23 @@
132
140
  ],
133
141
  "type": "string"
134
142
  },
143
+ "GlobalApplicationTableSettings": {
144
+ "type": "object",
145
+ "properties": {
146
+ "createMode": {
147
+ "description": "This property acts as a global default for all pages and tables in the application. Page-level or table-level definitions override this setting.\nYou can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
148
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b",
149
+ "enum": [
150
+ "creationRows",
151
+ "creationRowsHiddenInEditMode",
152
+ "inline"
153
+ ],
154
+ "type": "string",
155
+ "manifestPath": "$[\"sap.ui.generic.app\"].settings.tableSettings.createMode"
156
+ }
157
+ },
158
+ "additionalProperties": false
159
+ },
135
160
  "CloudDevAdaptationStatus": {
136
161
  "internal": true,
137
162
  "enum": [
@@ -447,6 +447,10 @@
447
447
  "views": {
448
448
  "$ref": "#/definitions/MultiViewsDefinition"
449
449
  },
450
+ "quickVariantSelection": {
451
+ "$ref": "#/definitions/MultiViewsOnTable",
452
+ "description": "With quickVariantSelection, you can switch to multiple views (single table mode).\nEach view links to a variant you have added to your annotations."
453
+ },
450
454
  "showTablePersonalisation": {
451
455
  "description": "The showTablePersonalisation attribute can be set to false to hide the table personalization button.",
452
456
  "type": "boolean",
@@ -500,6 +504,47 @@
500
504
  "$ref": "#/definitions/Table"
501
505
  }
502
506
  },
507
+ "MultiViewsOnTable": {
508
+ "type": "object",
509
+ "properties": {
510
+ "showCounts": {
511
+ "description": "To show the number of available records, set showCounts to true.",
512
+ "type": "boolean",
513
+ "artifactType": "Manifest"
514
+ },
515
+ "variants": {
516
+ "description": "The variants section contains a set of entries that point to a SelectionVariant or SelectionPresentationVariant annotation.",
517
+ "type": "object",
518
+ "additionalProperties": {
519
+ "$ref": "#/definitions/ViewOnTable"
520
+ },
521
+ "artifactType": "Manifest"
522
+ }
523
+ },
524
+ "additionalProperties": false,
525
+ "required": [
526
+ "variants"
527
+ ]
528
+ },
529
+ "ViewOnTable": {
530
+ "type": "object",
531
+ "properties": {
532
+ "key": {
533
+ "description": "The key property is mandatory. It is used for initializing the corresponding SegmentedButton item.",
534
+ "type": "string"
535
+ },
536
+ "annotationPath": {
537
+ "description": "Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation.",
538
+ "type": "string",
539
+ "artifactType": "Manifest"
540
+ }
541
+ },
542
+ "additionalProperties": false,
543
+ "required": [
544
+ "annotationPath",
545
+ "key"
546
+ ]
547
+ },
503
548
  "smarttable.ExportType": {
504
549
  "description": "Provides the type of services available for export in the `SmartTable` control.\n\nThis enum is part of the 'sap/ui/comp/library' module export and must be accessed by the property 'smarttable.ExportType'.",
505
550
  "enum": [
@@ -56,6 +56,12 @@
56
56
  "footer": {
57
57
  "$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
58
58
  },
59
+ "createMode": {
60
+ "$ref": "#/definitions/CreateMode",
61
+ "description": "This property applies to all tables within the page. Individual tables can override this setting by defining the property explicitly at table level.\nYou can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
62
+ "artifactType": "Manifest",
63
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
64
+ },
59
65
  "$schema": {
60
66
  "type": "string"
61
67
  }
@@ -727,7 +733,7 @@
727
733
  },
728
734
  "createMode": {
729
735
  "$ref": "#/definitions/CreateMode",
730
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
736
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
731
737
  "artifactType": "Manifest",
732
738
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
733
739
  },
@@ -1198,7 +1204,7 @@
1198
1204
  },
1199
1205
  "createMode": {
1200
1206
  "$ref": "#/definitions/CreateMode",
1201
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1207
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1202
1208
  "artifactType": "Manifest",
1203
1209
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1204
1210
  },
@@ -1298,7 +1304,7 @@
1298
1304
  },
1299
1305
  "createMode": {
1300
1306
  "$ref": "#/definitions/CreateMode",
1301
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1307
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1302
1308
  "artifactType": "Manifest",
1303
1309
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1304
1310
  },
@@ -1398,7 +1404,7 @@
1398
1404
  },
1399
1405
  "createMode": {
1400
1406
  "$ref": "#/definitions/CreateMode",
1401
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1407
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1402
1408
  "artifactType": "Manifest",
1403
1409
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1404
1410
  },
@@ -1498,7 +1504,7 @@
1498
1504
  },
1499
1505
  "createMode": {
1500
1506
  "$ref": "#/definitions/CreateMode",
1501
- "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create or edit mode an empty row is added to the table.\n- creationRowsHiddenInEditMode: Like \"creationRows\", but in edit mode the empty row will only be shown when the user clicks the Create button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create or edit mode, the users can use the Create button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default no empty row is provided and the Create button automatically navigates to the item's object page for the newly created entry.",
1507
+ "description": "You can set the following values for this property:\n- creationRows: Used to enable empty rows mode. In create and edit mode, an empty row is added to the table.\n- creationRowsHiddenInEditMode: Similar to \"creationRows\", but in edit mode, the empty row is only displayed when the user clicks the \"Create\" button. This option is available starting with SAPUI5 version 1.110.\n- inline: In create and edit mode, users can use the \"Create\" button to add new entries to the table. We recommend to use \"creationRows\" instead.\nBy default, an empty row is not provided and the \"Create\" button automatically navigates to the item's object page for the newly created entry.",
1502
1508
  "artifactType": "Manifest",
1503
1509
  "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
1504
1510
  },
@@ -82,13 +82,16 @@
82
82
  "properties": {
83
83
  "limitFCLToTwoColumns": {
84
84
  "description": "Determines whether the Flexible Column Layout is limited to two columns. If set to true, the third level will be displayed in full screen mode rather than a third column.",
85
- "type": "boolean"
85
+ "type": "boolean",
86
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.limitFCLToTwoColumns"
86
87
  },
87
88
  "defaultTwoColumnLayoutType": {
88
- "$ref": "#/definitions/FlexibleColumnLayoutType"
89
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
90
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.defaultTwoColumnLayoutType"
89
91
  },
90
92
  "defaultThreeColumnLayoutType": {
91
- "$ref": "#/definitions/FlexibleColumnLayoutType"
93
+ "$ref": "#/definitions/FlexibleColumnLayoutType",
94
+ "manifestPath": "$[\"sap.ui5\"].routing.config.flexibleColumnLayout.defaultThreeColumnLayoutType"
92
95
  }
93
96
  },
94
97
  "additionalProperties": false
@@ -151,21 +154,24 @@
151
154
  {
152
155
  "type": "string"
153
156
  }
154
- ]
157
+ ],
158
+ "manifestPath": "$[\"sap.ui5\"].dependencies.minUI5Version"
155
159
  },
156
160
  "libs": {
157
161
  "description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
158
162
  "type": "object",
159
163
  "additionalProperties": {
160
164
  "$ref": "#/definitions/Lib"
161
- }
165
+ },
166
+ "manifestPath": "$[\"sap.ui5\"].dependencies.libs"
162
167
  },
163
168
  "components": {
164
169
  "description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
165
170
  "type": "object",
166
171
  "additionalProperties": {
167
172
  "$ref": "#/definitions/Component"
168
- }
173
+ },
174
+ "manifestPath": "$[\"sap.ui5\"].dependencies.components"
169
175
  }
170
176
  },
171
177
  "additionalProperties": false,
@@ -134,7 +134,8 @@
134
134
  "isViewNode": true,
135
135
  "metadata": {
136
136
  "path": [],
137
- "type": "Aggregation"
137
+ "type": "Aggregation",
138
+ "aggregationCardinality": "Multiple"
138
139
  }
139
140
  },
140
141
  "plugins": {
@@ -145,7 +146,8 @@
145
146
  "isViewNode": false,
146
147
  "metadata": {
147
148
  "path": [],
148
- "type": "Aggregation"
149
+ "type": "Aggregation",
150
+ "aggregationCardinality": "Multiple"
149
151
  }
150
152
  }
151
153
  },
@@ -294,7 +296,8 @@
294
296
  "isViewNode": true,
295
297
  "metadata": {
296
298
  "path": [],
297
- "type": "Aggregation"
299
+ "type": "Aggregation",
300
+ "aggregationCardinality": "Multiple"
298
301
  }
299
302
  }
300
303
  },
@@ -395,7 +398,8 @@
395
398
  "isViewNode": true,
396
399
  "metadata": {
397
400
  "path": [],
398
- "type": "Aggregation"
401
+ "type": "Aggregation",
402
+ "aggregationCardinality": "Multiple"
399
403
  }
400
404
  },
401
405
  "selectionChange": {
@@ -505,7 +509,8 @@
505
509
  "isViewNode": true,
506
510
  "metadata": {
507
511
  "path": [],
508
- "type": "Aggregation"
512
+ "type": "Aggregation",
513
+ "aggregationCardinality": "Multiple"
509
514
  }
510
515
  },
511
516
  "selectionChange": {
@@ -820,7 +825,8 @@
820
825
  "isViewNode": true,
821
826
  "metadata": {
822
827
  "path": [],
823
- "type": "Aggregation"
828
+ "type": "Aggregation",
829
+ "aggregationCardinality": "Multiple"
824
830
  }
825
831
  },
826
832
  "afterClear": {
@@ -923,7 +929,8 @@
923
929
  "isViewNode": true,
924
930
  "metadata": {
925
931
  "path": [],
926
- "type": "Aggregation"
932
+ "type": "Aggregation",
933
+ "aggregationCardinality": "Multiple"
927
934
  }
928
935
  },
929
936
  "afterClear": {
@@ -1120,7 +1127,8 @@
1120
1127
  "isViewNode": false,
1121
1128
  "metadata": {
1122
1129
  "path": [],
1123
- "type": "Aggregation"
1130
+ "type": "Aggregation",
1131
+ "aggregationCardinality": "Single"
1124
1132
  }
1125
1133
  }
1126
1134
  },
@@ -1360,6 +1368,7 @@
1360
1368
  "type": "string",
1361
1369
  "description": "The name of the group.",
1362
1370
  "artifactType": "XMLProperty",
1371
+ "disabled": true,
1363
1372
  "metadata": {
1364
1373
  "type": "Property"
1365
1374
  }
@@ -1384,6 +1393,7 @@
1384
1393
  "type": "string",
1385
1394
  "description": "Unique id of control",
1386
1395
  "artifactType": "XMLProperty",
1396
+ "hidden": true,
1387
1397
  "metadata": {
1388
1398
  "type": "Property"
1389
1399
  }
@@ -1674,7 +1684,8 @@
1674
1684
  "isViewNode": true,
1675
1685
  "metadata": {
1676
1686
  "path": [],
1677
- "type": "Aggregation"
1687
+ "type": "Aggregation",
1688
+ "aggregationCardinality": "Multiple"
1678
1689
  }
1679
1690
  }
1680
1691
  },
@@ -2009,7 +2020,8 @@
2009
2020
  "isViewNode": true,
2010
2021
  "metadata": {
2011
2022
  "path": [],
2012
- "type": "Aggregation"
2023
+ "type": "Aggregation",
2024
+ "aggregationCardinality": "Multiple"
2013
2025
  }
2014
2026
  },
2015
2027
  "columns": {
@@ -2020,7 +2032,8 @@
2020
2032
  "isViewNode": true,
2021
2033
  "metadata": {
2022
2034
  "path": [],
2023
- "type": "Aggregation"
2035
+ "type": "Aggregation",
2036
+ "aggregationCardinality": "Multiple"
2024
2037
  }
2025
2038
  },
2026
2039
  "beforeRebindTable": {
@@ -2286,7 +2299,8 @@
2286
2299
  "isViewNode": true,
2287
2300
  "metadata": {
2288
2301
  "path": [],
2289
- "type": "Aggregation"
2302
+ "type": "Aggregation",
2303
+ "aggregationCardinality": "Multiple"
2290
2304
  }
2291
2305
  },
2292
2306
  "columns": {
@@ -2297,7 +2311,8 @@
2297
2311
  "isViewNode": true,
2298
2312
  "metadata": {
2299
2313
  "path": [],
2300
- "type": "Aggregation"
2314
+ "type": "Aggregation",
2315
+ "aggregationCardinality": "Multiple"
2301
2316
  }
2302
2317
  },
2303
2318
  "beforeRebindTable": {
@@ -2640,7 +2655,8 @@
2640
2655
  "isViewNode": true,
2641
2656
  "metadata": {
2642
2657
  "path": [],
2643
- "type": "Aggregation"
2658
+ "type": "Aggregation",
2659
+ "aggregationCardinality": "Multiple"
2644
2660
  }
2645
2661
  },
2646
2662
  "columns": {
@@ -2651,7 +2667,8 @@
2651
2667
  "isViewNode": true,
2652
2668
  "metadata": {
2653
2669
  "path": [],
2654
- "type": "Aggregation"
2670
+ "type": "Aggregation",
2671
+ "aggregationCardinality": "Multiple"
2655
2672
  }
2656
2673
  },
2657
2674
  "beforeRebindTable": {
@@ -2787,7 +2804,8 @@
2787
2804
  "isViewNode": true,
2788
2805
  "metadata": {
2789
2806
  "path": [],
2790
- "type": "Aggregation"
2807
+ "type": "Aggregation",
2808
+ "aggregationCardinality": "Multiple"
2791
2809
  }
2792
2810
  }
2793
2811
  },
@@ -911,6 +911,23 @@
911
911
  "items": {
912
912
  "type": "string"
913
913
  }
914
+ },
915
+ "required": {
916
+ "description": "Determines whether a custom column is required.\nIf set to true, an asterisk is displayed in the column header.",
917
+ "artifactType": "Manifest",
918
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
919
+ "type": "boolean"
920
+ },
921
+ "importance": {
922
+ "description": "The responsive table provides a feature where the table automatically moves columns to the pop-in area in the following order based on their importance:\n- Columns with \"Low\" importance are hidden first.\n- Columns with \"Medium\" importance are hidden next.\n- Columns with \"High\" importance are always displayed.",
923
+ "artifactType": "Manifest",
924
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
925
+ "enum": [
926
+ "High",
927
+ "Low",
928
+ "Medium"
929
+ ],
930
+ "type": "string"
914
931
  }
915
932
  },
916
933
  "additionalProperties": false,
@@ -1493,6 +1510,23 @@
1493
1510
  "items": {
1494
1511
  "type": "string"
1495
1512
  }
1513
+ },
1514
+ "required": {
1515
+ "description": "Determines whether a custom column is required.\nIf set to true, an asterisk is displayed in the column header.",
1516
+ "artifactType": "Manifest",
1517
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
1518
+ "type": "boolean"
1519
+ },
1520
+ "importance": {
1521
+ "description": "The responsive table provides a feature where the table automatically moves columns to the pop-in area in the following order based on their importance:\n- Columns with \"Low\" importance are hidden first.\n- Columns with \"Medium\" importance are hidden next.\n- Columns with \"High\" importance are always displayed.",
1522
+ "artifactType": "Manifest",
1523
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
1524
+ "enum": [
1525
+ "High",
1526
+ "Low",
1527
+ "Medium"
1528
+ ],
1529
+ "type": "string"
1496
1530
  }
1497
1531
  },
1498
1532
  "additionalProperties": false,
@@ -206,7 +206,7 @@
206
206
  },
207
207
  "additionalSemanticObjects": {
208
208
  "$ref": "#/definitions/AdditionalSemanticObjects",
209
- "description": "Additional Semantic Objects.",
209
+ "description": "Additional Semantic Objects",
210
210
  "artifactType": "Manifest"
211
211
  }
212
212
  },
@@ -1035,6 +1035,23 @@
1035
1035
  "items": {
1036
1036
  "type": "string"
1037
1037
  }
1038
+ },
1039
+ "required": {
1040
+ "description": "Determines whether a custom column is required.\nIf set to true, an asterisk is displayed in the column header.",
1041
+ "artifactType": "Manifest",
1042
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
1043
+ "type": "boolean"
1044
+ },
1045
+ "importance": {
1046
+ "description": "The responsive table provides a feature where the table automatically moves columns to the pop-in area in the following order based on their importance:\n- Columns with \"Low\" importance are hidden first.\n- Columns with \"Medium\" importance are hidden next.\n- Columns with \"High\" importance are always displayed.",
1047
+ "artifactType": "Manifest",
1048
+ "descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/d525522c1bf54672ae4e02d66b38e60c",
1049
+ "enum": [
1050
+ "High",
1051
+ "Low",
1052
+ "Medium"
1053
+ ],
1054
+ "type": "string"
1038
1055
  }
1039
1056
  },
1040
1057
  "additionalProperties": false,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/ux-specification",
3
- "version": "1.124.32",
3
+ "version": "1.124.34",
4
4
  "displayName": "SAP Fiori tools - Specification",
5
5
  "description": "SAP Fiori tools - Specification",
6
6
  "files": [
@@ -34,11 +34,11 @@
34
34
  "docuV4": "ts-node ./scripts/extractDocu.ts --version=v4 format=excel",
35
35
  "htmlV2": "ts-node ./scripts/extractDocu.ts --version=v2 --format=html",
36
36
  "htmlV4": "ts-node ./scripts/extractDocu.ts --version=v4 --format=html",
37
- "lint": "eslint . --ext .ts",
38
- "lint:summary": "eslint . --ext .ts -f summary",
39
- "lint:fix": "eslint . --ext .ts --fix",
40
- "lint:report": "eslint . --ext .ts -f multiple",
41
- "lint:report:jslint": "eslint . --ext .ts -o reports/lint/eslint.jslint.xml -f jslint-xml",
37
+ "lint": "eslint .",
38
+ "lint:summary": "eslint . -f summary",
39
+ "lint:fix": "eslint . --fix",
40
+ "lint:report": "eslint . -f multiple",
41
+ "lint:report:jslint": "eslint . -o reports/lint/eslint.jslint.xml -f jslint-xml",
42
42
  "macros": "ts-node ./scripts/macros/index.ts",
43
43
  "test": "jest && node ../../scripts/scov.js reports/test/unit/coverage/lcov.info",
44
44
  "test:ci": "jest --ci --forceExit --detectOpenHandles && node ../../scripts/scov.js reports/test/unit/coverage/lcov.info",
@@ -49,39 +49,39 @@
49
49
  "publisher": "SAPSE",
50
50
  "license": "SEE LICENSE IN LICENSE",
51
51
  "dependencies": {
52
- "@sap-ux/fe-fpm-writer": "0.40.2",
53
- "@sap-ux/vocabularies-types": "0.13.2"
52
+ "@sap-ux/fe-fpm-writer": "0.42.6",
53
+ "@sap-ux/vocabularies-types": "0.14.6"
54
54
  },
55
55
  "devDependencies": {
56
- "@sap-ux/annotation-converter": "0.10.9",
57
- "@sap-ux/edmx-parser": "0.9.6",
58
- "@sap-ux/project-access": "1.33.0",
59
- "@sap/ux-specification-types": "1.124.32",
60
- "@sapui5/types": "latest-1.124",
56
+ "@sap-ux/annotation-converter": "0.10.20",
57
+ "@sap-ux/edmx-parser": "0.9.8",
58
+ "@sap-ux/project-access": "1.35.2",
59
+ "@sap/ux-specification-types": "1.124.34",
60
+ "@sapui5/types": "latest-1.136",
61
61
  "@types/d3": "7.4.3",
62
62
  "@types/jquery": "3.5.33",
63
+ "@types/json-schema": "7.0.15",
63
64
  "@types/mem-fs": "1.1.5",
64
65
  "@types/mem-fs-editor": "7.0.1",
65
- "@types/json-schema": "7.0.5",
66
66
  "@ui5/flexibility-utils": "0.1.3",
67
67
  "@xml-tools/ast": "5.0.5",
68
68
  "@xml-tools/parser": "1.0.11",
69
- "axios": "1.13.2",
69
+ "axios": "1.13.5",
70
70
  "copyfiles": "2.4.1",
71
71
  "d3": "7.9.0",
72
72
  "deepmerge": "4.3.1",
73
73
  "ejs": "3.1.10",
74
+ "eslint-formatter-checkstyle": "9.0.1",
74
75
  "excel4node": "1.8.2",
75
- "i18next": "25.7.3",
76
+ "i18next": "25.8.0",
76
77
  "jquery": "3.7.1",
77
78
  "jsdom": "25.0.1",
78
- "lodash.unset": "4.5.2",
79
79
  "mem-fs": "2.1.0",
80
80
  "mem-fs-editor": "9.7.0",
81
81
  "path": "0.12.7",
82
82
  "reflect-metadata": "0.2.2",
83
83
  "semver": "7.7.3",
84
- "typescript-json-schema": "0.65.1",
84
+ "typescript-json-schema": "0.67.1",
85
85
  "xml-js": "1.6.11"
86
86
  },
87
87
  "husky": {
@@ -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,SAAS,CAAC;CACxB;AAED,eAAO,MAAM,gBAAgB,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;CAiH5D,CAAC;AAgJF;;;;;;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,SAAS,CAAC;CACxB;AAED,eAAO,MAAM,gBAAgB,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;CA6H5D,CAAC;AAmJF;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,GAAG,EAAE,SAAS,GAAG,IAAI,CAuBrD"}
@@ -113,6 +113,18 @@ exports.macrosCorrection = {
113
113
  extend: true,
114
114
  // Correct from string to boolean while fix is not applied from fe team
115
115
  type: 'boolean'
116
+ },
117
+ {
118
+ name: 'name',
119
+ extend: true,
120
+ type: 'string',
121
+ disabled: true
122
+ },
123
+ {
124
+ name: 'id',
125
+ extend: true,
126
+ type: 'string',
127
+ visibility: types_1.UI5Visibility.hidden
116
128
  }
117
129
  ]
118
130
  }
@@ -238,11 +250,12 @@ function applyCorrectionForIds(api) {
238
250
  }
239
251
  const properties = symbol[types_1.CLASS_SYMBOL_METADATA_PROPERTY].properties;
240
252
  const id = properties.find((property) => property.name === 'id');
253
+ const description = 'Unique id of control';
241
254
  if (!id) {
242
255
  properties.push({
243
256
  name: 'id',
244
257
  bindable: true,
245
- description: 'Unique id of control',
258
+ description,
246
259
  group: 'Misc',
247
260
  methods: [],
248
261
  type: 'string',
@@ -250,6 +263,9 @@ function applyCorrectionForIds(api) {
250
263
  defaultValue: ''
251
264
  });
252
265
  }
266
+ else if (!id.description) {
267
+ id.description = description;
268
+ }
253
269
  }
254
270
  }
255
271
  /**