@sap/ux-specification 1.84.26 → 1.84.30

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 (229) hide show
  1. package/CHANGELOG.md +92 -9
  2. package/dist/documentation/runDocu-min.js +1 -1
  3. package/dist/documentation/styleDocu.css +4 -5
  4. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  5. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  6. package/dist/documentation/v2/v2-ListReport.html +1 -1
  7. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  8. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  9. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  10. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  11. package/dist/documentation/v4/v4-ListReport.html +1 -1
  12. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  13. package/dist/index-min.js +1 -1
  14. package/dist/schemas/v2/AnalyticalListPageConfig.json +103 -40
  15. package/dist/schemas/v2/ListReportConfig.json +112 -32
  16. package/dist/schemas/v2/ObjectPageConfig.json +247 -56
  17. package/dist/schemas/v2/OverviewPageConfig.json +258 -196
  18. package/dist/schemas/v4/AnalyticalListPageConfig.json +48 -93
  19. package/dist/schemas/v4/ListReportConfig.json +48 -93
  20. package/dist/schemas/v4/ObjectPageConfig.json +51 -104
  21. package/dist/scripts/extractDocu.js +18 -8
  22. package/dist/scripts/extractDocu.js.map +1 -1
  23. package/dist/scripts/runDocu.js +105 -89
  24. package/dist/scripts/runDocu.js.map +1 -1
  25. package/dist/scripts/to-json-schema.js +32 -37
  26. package/dist/scripts/to-json-schema.js.map +1 -1
  27. package/dist/specification/v2/index-min.js +1 -1
  28. package/dist/specification/v4/index-min.js +1 -1
  29. package/dist/src/api.js +9 -9
  30. package/dist/src/api.js.map +1 -1
  31. package/dist/src/apiTypes.d.ts +5 -2
  32. package/dist/src/specification/schemaAccess.js +1 -3
  33. package/dist/src/specification/schemaAccess.js.map +1 -1
  34. package/dist/src/specification/v2/controls/Action.d.ts +87 -0
  35. package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
  36. package/dist/src/specification/v2/controls/Action.js.map +1 -0
  37. package/dist/src/specification/v2/controls/Card.d.ts +20 -72
  38. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  39. package/dist/src/specification/v2/controls/FilterBar.d.ts +6 -2
  40. package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
  41. package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
  42. package/dist/src/specification/v2/controls/Footer.js.map +1 -0
  43. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
  44. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
  45. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +5 -0
  46. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
  47. package/dist/src/specification/v2/controls/Table.d.ts +14 -10
  48. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  49. package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
  50. package/dist/src/specification/v2/controls/index.d.ts +8 -10
  51. package/dist/src/specification/v2/controls/index.js +3 -3
  52. package/dist/src/specification/v2/controls/index.js.map +1 -1
  53. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
  54. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +3 -2
  55. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
  56. package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
  57. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +6 -13
  58. package/dist/src/specification/v4/controls/Table.d.ts +4 -10
  59. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +51 -13
  60. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +6 -0
  61. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +1 -1
  62. package/dist/src/sync/common/appProvider.js.map +1 -1
  63. package/dist/src/sync/common/decoration/control.d.ts +11 -1
  64. package/dist/src/sync/common/decoration/control.js +29 -3
  65. package/dist/src/sync/common/decoration/control.js.map +1 -1
  66. package/dist/src/sync/common/decoration/factory.js +2 -4
  67. package/dist/src/sync/common/decoration/factory.js.map +1 -1
  68. package/dist/src/sync/common/generate/index.d.ts +1 -0
  69. package/dist/src/sync/common/generate/index.js +1 -0
  70. package/dist/src/sync/common/generate/index.js.map +1 -1
  71. package/dist/src/sync/common/generate/objectPage.d.ts +8 -0
  72. package/dist/src/sync/common/generate/objectPage.js +28 -12
  73. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  74. package/dist/src/sync/common/generate/utils.d.ts +60 -0
  75. package/dist/src/sync/common/generate/utils.js +208 -0
  76. package/dist/src/sync/common/generate/utils.js.map +1 -0
  77. package/dist/src/sync/common/i18n.json +2 -0
  78. package/dist/src/sync/common/import/utils.d.ts +8 -1
  79. package/dist/src/sync/common/import/utils.js +14 -3
  80. package/dist/src/sync/common/import/utils.js.map +1 -1
  81. package/dist/src/sync/common/importProject.js +19 -28
  82. package/dist/src/sync/common/importProject.js.map +1 -1
  83. package/dist/src/sync/common/types.d.ts +29 -15
  84. package/dist/src/sync/common/types.js +25 -1
  85. package/dist/src/sync/common/types.js.map +1 -1
  86. package/dist/src/sync/common/utils.d.ts +6 -33
  87. package/dist/src/sync/common/utils.js +25 -131
  88. package/dist/src/sync/common/utils.js.map +1 -1
  89. package/dist/src/sync/v2/export/controls/Action.d.ts +28 -0
  90. package/dist/src/sync/v2/export/controls/Action.js +127 -0
  91. package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
  92. package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
  93. package/dist/src/sync/v2/export/controls/Card.js +15 -43
  94. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  95. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +4 -3
  96. package/dist/src/sync/v2/export/controls/FilterBar.js +23 -22
  97. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  98. package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
  99. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
  100. package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
  101. package/dist/src/sync/v2/export/controls/Fragment.js +244 -168
  102. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  103. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +8 -0
  104. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
  105. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
  106. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
  107. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  108. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +2 -2
  109. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +4 -4
  110. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
  111. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +4 -1
  112. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +15 -0
  113. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  114. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +8 -0
  115. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +61 -0
  116. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
  117. package/dist/src/sync/v2/export/controls/Table.d.ts +5 -4
  118. package/dist/src/sync/v2/export/controls/Table.js +16 -21
  119. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  120. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
  121. package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
  122. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  123. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
  124. package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
  125. package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
  126. package/dist/src/sync/v2/export/controls/index.d.ts +12 -8
  127. package/dist/src/sync/v2/export/controls/index.js +12 -8
  128. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  129. package/dist/src/sync/v2/export/export.js +134 -111
  130. package/dist/src/sync/v2/export/export.js.map +1 -1
  131. package/dist/src/sync/v2/export/exportPage.js +3 -2
  132. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  133. package/dist/src/sync/v2/export/manifest.js +2 -5
  134. package/dist/src/sync/v2/export/manifest.js.map +1 -1
  135. package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
  136. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
  137. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
  138. package/dist/src/sync/v2/export/pages/ListReport.d.ts +3 -2
  139. package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
  140. package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
  141. package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
  142. package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
  143. package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
  144. package/dist/src/sync/v2/generate/analyticalListReport.js +16 -8
  145. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  146. package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
  147. package/dist/src/sync/v2/generate/listReport.js +25 -6
  148. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  149. package/dist/src/sync/v2/generate/objectPage.d.ts +1 -6
  150. package/dist/src/sync/v2/generate/objectPage.js +208 -126
  151. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  152. package/dist/src/sync/v2/generate/utils.d.ts +16 -12
  153. package/dist/src/sync/v2/generate/utils.js +235 -98
  154. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  155. package/dist/src/sync/v2/import/common/index.d.ts +29 -4
  156. package/dist/src/sync/v2/import/common/index.js +330 -56
  157. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  158. package/dist/src/sync/v2/import/controls/table.js +3 -2
  159. package/dist/src/sync/v2/import/controls/table.js.map +1 -1
  160. package/dist/src/sync/v2/import/pages/analyticalListPage.js +27 -5
  161. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  162. package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
  163. package/dist/src/sync/v2/import/pages/listReport.js +21 -100
  164. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  165. package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
  166. package/dist/src/sync/v2/import/pages/objectPage.js +443 -303
  167. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  168. package/dist/src/sync/v2/import/utils.d.ts +4 -6
  169. package/dist/src/sync/v2/import/utils.js +32 -11
  170. package/dist/src/sync/v2/import/utils.js.map +1 -1
  171. package/dist/src/sync/v2/types.d.ts +28 -2
  172. package/dist/src/sync/v2/types.js +14 -0
  173. package/dist/src/sync/v2/types.js.map +1 -1
  174. package/dist/src/sync/v4/export/controls/ObjectPageTable.d.ts +2 -8
  175. package/dist/src/sync/v4/export/controls/ObjectPageTable.js +3 -68
  176. package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  177. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +4 -7
  178. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +3 -33
  179. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  180. package/dist/src/sync/v4/export/controls/Table.d.ts +1 -8
  181. package/dist/src/sync/v4/export/controls/Table.js +2 -75
  182. package/dist/src/sync/v4/export/controls/Table.js.map +1 -1
  183. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +3 -6
  184. package/dist/src/sync/v4/export/controls/TableColumn.js +3 -33
  185. package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  186. package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
  187. package/dist/src/sync/v4/export/controls/ToolBar.js +3 -0
  188. package/dist/src/sync/v4/export/controls/ToolBar.js.map +1 -1
  189. package/dist/src/sync/v4/export/export.js +36 -25
  190. package/dist/src/sync/v4/export/export.js.map +1 -1
  191. package/dist/src/sync/v4/export/manifest.js.map +1 -1
  192. package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +2 -2
  193. package/dist/src/sync/v4/export/pages/ListReport.d.ts +2 -2
  194. package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
  195. package/dist/src/sync/v4/export/types.d.ts +4 -0
  196. package/dist/src/sync/v4/generate/generate.d.ts +4 -2
  197. package/dist/src/sync/v4/generate/generate.js +15 -6
  198. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  199. package/dist/src/sync/v4/generate/listReport.d.ts +9 -7
  200. package/dist/src/sync/v4/generate/listReport.js +93 -22
  201. package/dist/src/sync/v4/generate/listReport.js.map +1 -1
  202. package/dist/src/sync/v4/generate/objectPage.js +111 -81
  203. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  204. package/dist/src/sync/v4/import/app/appProvider.js +2 -2
  205. package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
  206. package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
  207. package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -1
  208. package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +1 -1
  209. package/dist/src/sync/v4/import/pages/listReport.d.ts +4 -6
  210. package/dist/src/sync/v4/import/pages/listReport.js +57 -36
  211. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  212. package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
  213. package/dist/src/sync/v4/import/pages/objectPage.js +21 -18
  214. package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
  215. package/dist/src/sync/v4/import/utils.js +6 -5
  216. package/dist/src/sync/v4/import/utils.js.map +1 -1
  217. package/dist/src/sync/v4/utils/utils.d.ts +15 -2
  218. package/dist/src/sync/v4/utils/utils.js +65 -26
  219. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  220. package/dist/test/unit/utils.test.d.ts +1 -1
  221. package/package.json +13 -11
  222. package/dist/src/specification/v2/controls/FormAction.d.ts +0 -43
  223. package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
  224. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
  225. package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
  226. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +0 -27
  227. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js +0 -3
  228. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +0 -1
  229. package/dist/test/test-utils/metadataParser.d.ts +0 -19
@@ -51,7 +51,7 @@
51
51
  ]
52
52
  },
53
53
  "footer": {
54
- "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
54
+ "$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
55
55
  },
56
56
  "$schema": {
57
57
  "type": "string"
@@ -129,20 +129,40 @@
129
129
  "isViewNode": true,
130
130
  "type": "object",
131
131
  "properties": {
132
+ "visible": {
133
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
134
+ "anyOf": [
135
+ {
136
+ "enum": [
137
+ false,
138
+ true,
139
+ "{ui>/editable}",
140
+ "{= !${ui>/editable}}"
141
+ ]
142
+ },
143
+ {
144
+ "type": "string"
145
+ }
146
+ ],
147
+ "description": "Whether the button should be visible on the screen.",
148
+ "artifactType": "FlexChange",
149
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
150
+ },
132
151
  "tooltip": {
133
- "description": "Text for tooltip of button",
152
+ "description": "The text of the button tooltip, preferably as an i18n key.",
153
+ "i18nClassification": "ACT: Text for tooltip of button.",
134
154
  "type": "string",
135
155
  "artifactType": "FlexChange",
136
156
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
137
157
  },
138
158
  "icon": {
139
- "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.",
159
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
140
160
  "type": "string",
141
161
  "artifactType": "FlexChange",
142
162
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
143
163
  },
144
164
  "activeIcon": {
145
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
165
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
146
166
  "type": "string",
147
167
  "artifactType": "FlexChange",
148
168
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
@@ -152,25 +172,6 @@
152
172
  "description": "Defines the Button type.",
153
173
  "artifactType": "FlexChange",
154
174
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
155
- },
156
- "visible": {
157
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
158
- "anyOf": [
159
- {
160
- "enum": [
161
- false,
162
- true,
163
- "{ui>/editable}",
164
- "{= !${ui>/editable}}"
165
- ]
166
- },
167
- {
168
- "type": "string"
169
- }
170
- ],
171
- "description": "Whether the button should be visible on the screen.",
172
- "artifactType": "FlexChange",
173
- "controlType": "sap.uxap.ObjectPageHeaderActionButton"
174
175
  }
175
176
  },
176
177
  "additionalProperties": false
@@ -329,24 +330,44 @@
329
330
  }
330
331
  },
331
332
  "FormAction": {
332
- "description": "Action",
333
+ "description": "Form Action",
333
334
  "isViewNode": true,
334
335
  "type": "object",
335
336
  "properties": {
337
+ "visible": {
338
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
339
+ "anyOf": [
340
+ {
341
+ "enum": [
342
+ false,
343
+ true,
344
+ "{ui>/editable}",
345
+ "{= !${ui>/editable}}"
346
+ ]
347
+ },
348
+ {
349
+ "type": "string"
350
+ }
351
+ ],
352
+ "description": "Whether the button should be visible on the screen.",
353
+ "artifactType": "FlexChange",
354
+ "controlType": "sap.m.Button"
355
+ },
336
356
  "tooltip": {
337
- "description": "Text for tooltip of button",
357
+ "description": "The text of the button tooltip, preferably as an i18n key.",
358
+ "i18nClassification": "ACT: Text for tooltip of button.",
338
359
  "type": "string",
339
360
  "artifactType": "FlexChange",
340
361
  "controlType": "sap.m.Button"
341
362
  },
342
363
  "icon": {
343
- "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.",
364
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
344
365
  "type": "string",
345
366
  "artifactType": "FlexChange",
346
367
  "controlType": "sap.m.Button"
347
368
  },
348
369
  "activeIcon": {
349
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
370
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
350
371
  "type": "string",
351
372
  "artifactType": "FlexChange",
352
373
  "controlType": "sap.m.Button"
@@ -356,25 +377,6 @@
356
377
  "description": "Defines the Button type.",
357
378
  "artifactType": "FlexChange",
358
379
  "controlType": "sap.m.Button"
359
- },
360
- "visible": {
361
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
362
- "anyOf": [
363
- {
364
- "enum": [
365
- false,
366
- true,
367
- "{ui>/editable}",
368
- "{= !${ui>/editable}}"
369
- ]
370
- },
371
- {
372
- "type": "string"
373
- }
374
- ],
375
- "description": "Whether the button should be visible on the screen.",
376
- "artifactType": "FlexChange",
377
- "controlType": "sap.m.Button"
378
380
  }
379
381
  },
380
382
  "additionalProperties": false
@@ -502,6 +504,12 @@
502
504
  "artifactType": "FlexChange",
503
505
  "controlType": "sap.ui.comp.smarttable.SmartTable"
504
506
  },
507
+ "exportType": {
508
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
509
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
510
+ "artifactType": "FlexChange",
511
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
512
+ },
505
513
  "createMode": {
506
514
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
507
515
  "type": "string",
@@ -614,6 +622,9 @@
614
622
  "key"
615
623
  ]
616
624
  },
625
+ "sap.ui.comp.smarttable.ExportType": {
626
+ "description": "Provides the type of services available for export in the `SmartTable` control."
627
+ },
617
628
  "ObjectPageToolBar": {
618
629
  "description": "Toolbar",
619
630
  "isViewNode": true,
@@ -633,11 +644,61 @@
633
644
  "isViewNode": true,
634
645
  "type": "object",
635
646
  "additionalProperties": {
636
- "type": "object",
637
- "properties": {},
638
- "additionalProperties": true
647
+ "$ref": "#/definitions/ObjectPageToolBarAction"
639
648
  }
640
649
  },
650
+ "ObjectPageToolBarAction": {
651
+ "description": "ToolBar Action",
652
+ "isViewNode": true,
653
+ "type": "object",
654
+ "properties": {
655
+ "visible": {
656
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
657
+ "anyOf": [
658
+ {
659
+ "enum": [
660
+ false,
661
+ true,
662
+ "{ui>/editable}",
663
+ "{= !${ui>/editable}}"
664
+ ]
665
+ },
666
+ {
667
+ "type": "string"
668
+ }
669
+ ],
670
+ "description": "Whether the button should be visible on the screen.",
671
+ "artifactType": "FlexChange",
672
+ "controlType": "sap.m.Button"
673
+ },
674
+ "tooltip": {
675
+ "description": "The text of the button tooltip, preferably as an i18n key.",
676
+ "i18nClassification": "ACT: Text for tooltip of button.",
677
+ "type": "string",
678
+ "artifactType": "FlexChange",
679
+ "controlType": "sap.m.Button"
680
+ },
681
+ "icon": {
682
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
683
+ "type": "string",
684
+ "artifactType": "FlexChange",
685
+ "controlType": "sap.m.Button"
686
+ },
687
+ "activeIcon": {
688
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
689
+ "type": "string",
690
+ "artifactType": "FlexChange",
691
+ "controlType": "sap.m.Button"
692
+ },
693
+ "type": {
694
+ "$ref": "#/definitions/ButtonType",
695
+ "description": "Defines the Button type.",
696
+ "artifactType": "FlexChange",
697
+ "controlType": "sap.m.Button"
698
+ }
699
+ },
700
+ "additionalProperties": false
701
+ },
641
702
  "GenericColumns": {
642
703
  "type": "object",
643
704
  "additionalProperties": {
@@ -645,6 +706,9 @@
645
706
  {
646
707
  "$ref": "#/definitions/TableColumn"
647
708
  },
709
+ {
710
+ "$ref": "#/definitions/TableColumnAction"
711
+ },
648
712
  {
649
713
  "description": "Custom Columns",
650
714
  "isViewNode": true,
@@ -695,6 +759,59 @@
695
759
  ],
696
760
  "type": "string"
697
761
  },
762
+ "TableColumnAction": {
763
+ "description": "Column Action",
764
+ "isViewNode": true,
765
+ "type": "object",
766
+ "properties": {
767
+ "tooltip": {
768
+ "description": "The text of the button tooltip, preferably as an i18n key.",
769
+ "i18nClassification": "ACT: Text for tooltip of button.",
770
+ "type": "string",
771
+ "artifactType": "FlexChange",
772
+ "controlType": "sap.m.Button"
773
+ },
774
+ "icon": {
775
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
776
+ "type": "string",
777
+ "artifactType": "FlexChange",
778
+ "controlType": "sap.m.Button"
779
+ },
780
+ "activeIcon": {
781
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
782
+ "type": "string",
783
+ "artifactType": "FlexChange",
784
+ "controlType": "sap.m.Button"
785
+ },
786
+ "type": {
787
+ "$ref": "#/definitions/ButtonType",
788
+ "description": "Defines the Button type.",
789
+ "artifactType": "FlexChange",
790
+ "controlType": "sap.m.Button"
791
+ },
792
+ "width": {
793
+ "description": "The width property defines the width of the column.",
794
+ "type": "string",
795
+ "artifactType": "FlexChange",
796
+ "controlType": "sap.m.Column"
797
+ },
798
+ "hAlign": {
799
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
800
+ "anyOf": [
801
+ {
802
+ "$ref": "#/definitions/HAlign"
803
+ },
804
+ {
805
+ "type": "string"
806
+ }
807
+ ],
808
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
809
+ "artifactType": "FlexChange",
810
+ "controlType": "sap.m.Column"
811
+ }
812
+ },
813
+ "additionalProperties": false
814
+ },
698
815
  "TableCustomColumn": {
699
816
  "description": "Custom Column",
700
817
  "isViewNode": true,
@@ -705,7 +822,7 @@
705
822
  "type": "string"
706
823
  },
707
824
  "text": {
708
- "description": "The label of the custom column, preferrable as an i18n key.",
825
+ "description": "The label of the custom column, preferably as an i18n key.",
709
826
  "i18nClassification": "COL: Custom column header text",
710
827
  "type": "string"
711
828
  },
@@ -839,6 +956,12 @@
839
956
  "artifactType": "FlexChange",
840
957
  "controlType": "sap.ui.comp.smarttable.SmartTable"
841
958
  },
959
+ "exportType": {
960
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
961
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
962
+ "artifactType": "FlexChange",
963
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
964
+ },
842
965
  "createMode": {
843
966
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
844
967
  "type": "string",
@@ -924,6 +1047,12 @@
924
1047
  "artifactType": "FlexChange",
925
1048
  "controlType": "sap.ui.comp.smarttable.SmartTable"
926
1049
  },
1050
+ "exportType": {
1051
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1052
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1053
+ "artifactType": "FlexChange",
1054
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1055
+ },
927
1056
  "createMode": {
928
1057
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
929
1058
  "type": "string",
@@ -1009,6 +1138,12 @@
1009
1138
  "artifactType": "FlexChange",
1010
1139
  "controlType": "sap.ui.comp.smarttable.SmartTable"
1011
1140
  },
1141
+ "exportType": {
1142
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1143
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1144
+ "artifactType": "FlexChange",
1145
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1146
+ },
1012
1147
  "createMode": {
1013
1148
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
1014
1149
  "type": "string",
@@ -1094,6 +1229,12 @@
1094
1229
  "artifactType": "FlexChange",
1095
1230
  "controlType": "sap.ui.comp.smarttable.SmartTable"
1096
1231
  },
1232
+ "exportType": {
1233
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1234
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1235
+ "artifactType": "FlexChange",
1236
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1237
+ },
1097
1238
  "createMode": {
1098
1239
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
1099
1240
  "type": "string",
@@ -1317,24 +1458,74 @@
1317
1458
  "type"
1318
1459
  ]
1319
1460
  },
1320
- "ObjectPageFooter<GenericFooterActions>": {
1461
+ "ObjectPageFooter<ObjectPageFooterActions>": {
1321
1462
  "description": "Footer",
1322
1463
  "isViewNode": true,
1323
1464
  "type": "object",
1324
1465
  "properties": {
1325
1466
  "actions": {
1326
- "$ref": "#/definitions/GenericFooterActions"
1467
+ "$ref": "#/definitions/ObjectPageFooterActions"
1327
1468
  }
1328
1469
  },
1329
1470
  "additionalProperties": false
1330
1471
  },
1331
- "GenericFooterActions": {
1472
+ "ObjectPageFooterActions": {
1332
1473
  "type": "object",
1333
1474
  "additionalProperties": {
1334
- "type": "object",
1335
- "properties": {},
1336
- "additionalProperties": true
1475
+ "$ref": "#/definitions/ObjectPageFooterAction"
1337
1476
  }
1477
+ },
1478
+ "ObjectPageFooterAction": {
1479
+ "description": "Footer Action",
1480
+ "isViewNode": true,
1481
+ "type": "object",
1482
+ "properties": {
1483
+ "visible": {
1484
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1485
+ "anyOf": [
1486
+ {
1487
+ "enum": [
1488
+ false,
1489
+ true,
1490
+ "{ui>/editable}",
1491
+ "{= !${ui>/editable}}"
1492
+ ]
1493
+ },
1494
+ {
1495
+ "type": "string"
1496
+ }
1497
+ ],
1498
+ "description": "Whether the button should be visible on the screen.",
1499
+ "artifactType": "FlexChange",
1500
+ "controlType": "sap.m.Button"
1501
+ },
1502
+ "tooltip": {
1503
+ "description": "The text of the button tooltip, preferably as an i18n key.",
1504
+ "i18nClassification": "ACT: Text for tooltip of button.",
1505
+ "type": "string",
1506
+ "artifactType": "FlexChange",
1507
+ "controlType": "sap.m.Button"
1508
+ },
1509
+ "icon": {
1510
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
1511
+ "type": "string",
1512
+ "artifactType": "FlexChange",
1513
+ "controlType": "sap.m.Button"
1514
+ },
1515
+ "activeIcon": {
1516
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
1517
+ "type": "string",
1518
+ "artifactType": "FlexChange",
1519
+ "controlType": "sap.m.Button"
1520
+ },
1521
+ "type": {
1522
+ "$ref": "#/definitions/ButtonType",
1523
+ "description": "Defines the Button type.",
1524
+ "artifactType": "FlexChange",
1525
+ "controlType": "sap.m.Button"
1526
+ }
1527
+ },
1528
+ "additionalProperties": false
1338
1529
  }
1339
1530
  },
1340
1531
  "$schema": "http://json-schema.org/draft-07/schema#"