@sap/ux-specification 1.71.45 → 1.71.49

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 (120) hide show
  1. package/CHANGELOG.md +77 -7
  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/index-min.js +1 -1
  10. package/dist/schemas/v2/AnalyticalListPageConfig.json +35 -38
  11. package/dist/schemas/v2/ListReportConfig.json +36 -28
  12. package/dist/schemas/v2/ObjectPageConfig.json +181 -48
  13. package/dist/schemas/v2/OverviewPageConfig.json +236 -190
  14. package/dist/scripts/extractDocu.js +18 -8
  15. package/dist/scripts/extractDocu.js.map +1 -1
  16. package/dist/scripts/runDocu.js +105 -89
  17. package/dist/scripts/runDocu.js.map +1 -1
  18. package/dist/scripts/to-json-schema.js +9 -1
  19. package/dist/scripts/to-json-schema.js.map +1 -1
  20. package/dist/specification/v2/index-min.js +1 -1
  21. package/dist/src/specification/common/types.d.ts +4 -0
  22. package/dist/src/specification/common/types.js +5 -0
  23. package/dist/src/specification/common/types.js.map +1 -1
  24. package/dist/src/specification/v2/controls/{FormAction.d.ts → Action.d.ts} +29 -2
  25. package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
  26. package/dist/src/specification/v2/controls/Action.js.map +1 -0
  27. package/dist/src/specification/v2/controls/Card.d.ts +20 -72
  28. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  29. package/dist/src/specification/v2/controls/FilterBar.d.ts +4 -0
  30. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +2 -2
  31. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.d.ts → ObjectPageFooterAction.d.ts} +4 -3
  32. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.js → ObjectPageFooterAction.js} +1 -1
  33. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +1 -0
  34. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
  35. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
  36. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +5 -0
  37. package/dist/src/specification/v2/controls/ObjectPageTable.js.map +1 -1
  38. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
  39. package/dist/src/specification/v2/controls/Table.d.ts +6 -9
  40. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  41. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -2
  42. package/dist/src/specification/v2/controls/index.d.ts +8 -9
  43. package/dist/src/specification/v2/controls/index.js +3 -3
  44. package/dist/src/specification/v2/controls/index.js.map +1 -1
  45. package/dist/src/sync/common/generate/index.d.ts +1 -0
  46. package/dist/src/sync/common/generate/index.js +1 -0
  47. package/dist/src/sync/common/generate/index.js.map +1 -1
  48. package/dist/src/sync/common/generate/objectPage.js +22 -17
  49. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  50. package/dist/src/sync/common/generate/utils.d.ts +59 -0
  51. package/dist/src/sync/common/generate/utils.js +192 -0
  52. package/dist/src/sync/common/generate/utils.js.map +1 -0
  53. package/dist/src/sync/common/importProject.js +3 -3
  54. package/dist/src/sync/common/importProject.js.map +1 -1
  55. package/dist/src/sync/common/utils.d.ts +3 -23
  56. package/dist/src/sync/common/utils.js +15 -83
  57. package/dist/src/sync/common/utils.js.map +1 -1
  58. package/dist/src/sync/v2/export/controls/Action.d.ts +13 -0
  59. package/dist/src/sync/v2/export/controls/Action.js +74 -0
  60. package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
  61. package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
  62. package/dist/src/sync/v2/export/controls/Card.js +15 -43
  63. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  64. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -0
  65. package/dist/src/sync/v2/export/controls/FilterBar.js +10 -0
  66. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  67. package/dist/src/sync/v2/export/controls/Fragment.js +5 -4
  68. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  69. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +8 -0
  70. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
  71. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
  72. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
  73. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  74. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +5 -1
  75. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +25 -0
  76. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  77. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +8 -0
  78. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +59 -0
  79. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
  80. package/dist/src/sync/v2/export/controls/Table.d.ts +5 -4
  81. package/dist/src/sync/v2/export/controls/Table.js +16 -21
  82. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  83. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
  84. package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
  85. package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
  86. package/dist/src/sync/v2/export/controls/index.d.ts +11 -7
  87. package/dist/src/sync/v2/export/controls/index.js +11 -7
  88. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  89. package/dist/src/sync/v2/export/export.js +1 -1
  90. package/dist/src/sync/v2/export/export.js.map +1 -1
  91. package/dist/src/sync/v2/export/exportPage.js +3 -2
  92. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  93. package/dist/src/sync/v2/generate/analyticalListReport.js +6 -3
  94. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  95. package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
  96. package/dist/src/sync/v2/generate/listReport.js +18 -4
  97. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  98. package/dist/src/sync/v2/generate/objectPage.d.ts +0 -1
  99. package/dist/src/sync/v2/generate/objectPage.js +199 -106
  100. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  101. package/dist/src/sync/v2/generate/utils.d.ts +3 -3
  102. package/dist/src/sync/v2/generate/utils.js +22 -14
  103. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  104. package/dist/src/sync/v2/import/common/index.d.ts +8 -1
  105. package/dist/src/sync/v2/import/common/index.js +107 -43
  106. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  107. package/dist/src/sync/v2/import/pages/listReport.js +31 -0
  108. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  109. package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
  110. package/dist/src/sync/v2/import/pages/objectPage.js +302 -235
  111. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  112. package/dist/src/sync/v2/import/utils.d.ts +1 -1
  113. package/dist/src/sync/v2/import/utils.js +2 -2
  114. package/dist/src/sync/v2/import/utils.js.map +1 -1
  115. package/dist/src/sync/v2/types.d.ts +21 -2
  116. package/dist/src/sync/v2/types.js +7 -0
  117. package/dist/src/sync/v2/types.js.map +1 -1
  118. package/package.json +6 -4
  119. package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
  120. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +0 -1
@@ -86,11 +86,6 @@
86
86
  "type": "boolean",
87
87
  "artifactType": "Manifest"
88
88
  },
89
- "filterDefaultsFromSelectionVariant": {
90
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
91
- "type": "boolean",
92
- "artifactType": "Manifest"
93
- },
94
89
  "multiSelect": {
95
90
  "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
96
91
  "type": "boolean",
@@ -118,6 +113,12 @@
118
113
  "artifactType": "FlexChange",
119
114
  "controlType": "sap.ui.comp.smarttable.SmartTable"
120
115
  },
116
+ "exportType": {
117
+ "$ref": "#/definitions/ExportType",
118
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
119
+ "artifactType": "FlexChange",
120
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
121
+ },
121
122
  "fitContainer": {
122
123
  "description": "Set to false if the table does not occupy the entire space available in the container.",
123
124
  "type": "boolean",
@@ -176,6 +177,13 @@
176
177
  ],
177
178
  "type": "string"
178
179
  },
180
+ "ExportType": {
181
+ "enum": [
182
+ "GW",
183
+ "UI5Client"
184
+ ],
185
+ "type": "string"
186
+ },
179
187
  "QuickVariantSelection": {
180
188
  "type": "object",
181
189
  "properties": {
@@ -295,16 +303,17 @@
295
303
  "isViewNode": true,
296
304
  "type": "object",
297
305
  "additionalProperties": {
298
- "$ref": "#/definitions/FormAction"
306
+ "$ref": "#/definitions/Action"
299
307
  }
300
308
  },
301
- "FormAction": {
309
+ "Action": {
302
310
  "description": "Action",
303
311
  "isViewNode": true,
304
312
  "type": "object",
305
313
  "properties": {
306
314
  "tooltip": {
307
- "description": "Text for tooltip of button",
315
+ "description": "The text of the button tooltip, preferably as an i18n key.",
316
+ "i18nClassification": "ACT: Text for tooltip of button.",
308
317
  "type": "string",
309
318
  "artifactType": "FlexChange",
310
319
  "controlType": "sap.m.Button"
@@ -326,25 +335,6 @@
326
335
  "description": "Defines the Button type.",
327
336
  "artifactType": "FlexChange",
328
337
  "controlType": "sap.m.Button"
329
- },
330
- "visible": {
331
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
332
- "anyOf": [
333
- {
334
- "enum": [
335
- false,
336
- true,
337
- "{ui>/editable}",
338
- "{= !${ui>/editable}}"
339
- ]
340
- },
341
- {
342
- "type": "string"
343
- }
344
- ],
345
- "description": "Whether the button should be visible on the screen.",
346
- "artifactType": "FlexChange",
347
- "controlType": "sap.m.Button"
348
338
  }
349
339
  },
350
340
  "additionalProperties": false
@@ -430,7 +420,7 @@
430
420
  "type": "string"
431
421
  },
432
422
  "text": {
433
- "description": "The label of the custom column, preferrable as an i18n key.",
423
+ "description": "The label of the custom column, preferably as an i18n key.",
434
424
  "i18nClassification": "COL: Custom column header text",
435
425
  "type": "string"
436
426
  },
@@ -527,11 +517,6 @@
527
517
  "type": "boolean",
528
518
  "artifactType": "Manifest"
529
519
  },
530
- "filterDefaultsFromSelectionVariant": {
531
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
532
- "type": "boolean",
533
- "artifactType": "Manifest"
534
- },
535
520
  "multiSelect": {
536
521
  "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
537
522
  "type": "boolean",
@@ -559,6 +544,12 @@
559
544
  "artifactType": "FlexChange",
560
545
  "controlType": "sap.ui.comp.smarttable.SmartTable"
561
546
  },
547
+ "exportType": {
548
+ "$ref": "#/definitions/ExportType",
549
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
550
+ "artifactType": "FlexChange",
551
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
552
+ },
562
553
  "fitContainer": {
563
554
  "description": "Set to false if the table does not occupy the entire space available in the container.",
564
555
  "type": "boolean",
@@ -642,11 +633,6 @@
642
633
  "type": "boolean",
643
634
  "artifactType": "Manifest"
644
635
  },
645
- "filterDefaultsFromSelectionVariant": {
646
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
647
- "type": "boolean",
648
- "artifactType": "Manifest"
649
- },
650
636
  "multiSelect": {
651
637
  "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
652
638
  "type": "boolean",
@@ -674,6 +660,12 @@
674
660
  "artifactType": "FlexChange",
675
661
  "controlType": "sap.ui.comp.smarttable.SmartTable"
676
662
  },
663
+ "exportType": {
664
+ "$ref": "#/definitions/ExportType",
665
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
666
+ "artifactType": "FlexChange",
667
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
668
+ },
677
669
  "fitContainer": {
678
670
  "description": "Set to false if the table does not occupy the entire space available in the container.",
679
671
  "type": "boolean",
@@ -727,6 +719,11 @@
727
719
  "type": "boolean",
728
720
  "artifactType": "Manifest"
729
721
  },
722
+ "filterDefaultsFromSelectionVariant": {
723
+ "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
724
+ "type": "boolean",
725
+ "artifactType": "Manifest"
726
+ },
730
727
  "smartVariantManagement": {
731
728
  "description": "Controls whether smart variant management is active. Default is true.",
732
729
  "type": "boolean",
@@ -107,6 +107,12 @@
107
107
  "artifactType": "FlexChange",
108
108
  "controlType": "sap.ui.comp.smarttable.SmartTable"
109
109
  },
110
+ "exportType": {
111
+ "$ref": "#/definitions/ExportType",
112
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
113
+ "artifactType": "FlexChange",
114
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
115
+ },
110
116
  "fitContainer": {
111
117
  "description": "Set to false if the table does not occupy the entire space available in the container.",
112
118
  "type": "boolean",
@@ -175,6 +181,13 @@
175
181
  "strategy"
176
182
  ]
177
183
  },
184
+ "ExportType": {
185
+ "enum": [
186
+ "GW",
187
+ "UI5Client"
188
+ ],
189
+ "type": "string"
190
+ },
178
191
  "QuickVariantSelection": {
179
192
  "type": "object",
180
193
  "properties": {
@@ -294,16 +307,17 @@
294
307
  "isViewNode": true,
295
308
  "type": "object",
296
309
  "additionalProperties": {
297
- "$ref": "#/definitions/FormAction"
310
+ "$ref": "#/definitions/Action"
298
311
  }
299
312
  },
300
- "FormAction": {
313
+ "Action": {
301
314
  "description": "Action",
302
315
  "isViewNode": true,
303
316
  "type": "object",
304
317
  "properties": {
305
318
  "tooltip": {
306
- "description": "Text for tooltip of button",
319
+ "description": "The text of the button tooltip, preferably as an i18n key.",
320
+ "i18nClassification": "ACT: Text for tooltip of button.",
307
321
  "type": "string",
308
322
  "artifactType": "FlexChange",
309
323
  "controlType": "sap.m.Button"
@@ -325,25 +339,6 @@
325
339
  "description": "Defines the Button type.",
326
340
  "artifactType": "FlexChange",
327
341
  "controlType": "sap.m.Button"
328
- },
329
- "visible": {
330
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
331
- "anyOf": [
332
- {
333
- "enum": [
334
- false,
335
- true,
336
- "{ui>/editable}",
337
- "{= !${ui>/editable}}"
338
- ]
339
- },
340
- {
341
- "type": "string"
342
- }
343
- ],
344
- "description": "Whether the button should be visible on the screen.",
345
- "artifactType": "FlexChange",
346
- "controlType": "sap.m.Button"
347
342
  }
348
343
  },
349
344
  "additionalProperties": false
@@ -429,7 +424,7 @@
429
424
  "type": "string"
430
425
  },
431
426
  "text": {
432
- "description": "The label of the custom column, preferrable as an i18n key.",
427
+ "description": "The label of the custom column, preferably as an i18n key.",
433
428
  "i18nClassification": "COL: Custom column header text",
434
429
  "type": "string"
435
430
  },
@@ -532,6 +527,12 @@
532
527
  "artifactType": "FlexChange",
533
528
  "controlType": "sap.ui.comp.smarttable.SmartTable"
534
529
  },
530
+ "exportType": {
531
+ "$ref": "#/definitions/ExportType",
532
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
533
+ "artifactType": "FlexChange",
534
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
535
+ },
535
536
  "fitContainer": {
536
537
  "description": "Set to false if the table does not occupy the entire space available in the container.",
537
538
  "type": "boolean",
@@ -610,11 +611,6 @@
610
611
  "type": "string",
611
612
  "artifactType": "Manifest"
612
613
  },
613
- "filterDefaultsFromSelectionVariant": {
614
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
615
- "type": "boolean",
616
- "artifactType": "Manifest"
617
- },
618
614
  "createWithFilters": {
619
615
  "$ref": "#/definitions/CreateWithFilters",
620
616
  "description": "createWithFilters adds a new create action that uses the filter settings as input.",
@@ -652,6 +648,12 @@
652
648
  "artifactType": "FlexChange",
653
649
  "controlType": "sap.ui.comp.smarttable.SmartTable"
654
650
  },
651
+ "exportType": {
652
+ "$ref": "#/definitions/ExportType",
653
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
654
+ "artifactType": "FlexChange",
655
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
656
+ },
655
657
  "fitContainer": {
656
658
  "description": "Set to false if the table does not occupy the entire space available in the container.",
657
659
  "type": "boolean",
@@ -761,6 +763,12 @@
761
763
  "artifactType": "FlexChange",
762
764
  "controlType": "sap.ui.comp.smarttable.SmartTable"
763
765
  },
766
+ "exportType": {
767
+ "$ref": "#/definitions/ExportType",
768
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
769
+ "artifactType": "FlexChange",
770
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
771
+ },
764
772
  "fitContainer": {
765
773
  "description": "Set to false if the table does not occupy the entire space available in the container.",
766
774
  "type": "boolean",
@@ -105,8 +105,28 @@
105
105
  "isViewNode": true,
106
106
  "type": "object",
107
107
  "properties": {
108
+ "visible": {
109
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
110
+ "anyOf": [
111
+ {
112
+ "enum": [
113
+ false,
114
+ true,
115
+ "{ui>/editable}",
116
+ "{= !${ui>/editable}}"
117
+ ]
118
+ },
119
+ {
120
+ "type": "string"
121
+ }
122
+ ],
123
+ "description": "Whether the button should be visible on the screen.",
124
+ "artifactType": "FlexChange",
125
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
126
+ },
108
127
  "tooltip": {
109
- "description": "Text for tooltip of button",
128
+ "description": "The text of the button tooltip, preferably as an i18n key.",
129
+ "i18nClassification": "ACT: Text for tooltip of button.",
110
130
  "type": "string",
111
131
  "artifactType": "FlexChange",
112
132
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
@@ -128,25 +148,6 @@
128
148
  "description": "Defines the Button type.",
129
149
  "artifactType": "FlexChange",
130
150
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
131
- },
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
151
  }
151
152
  },
152
153
  "additionalProperties": false
@@ -297,12 +298,32 @@
297
298
  }
298
299
  },
299
300
  "FormAction": {
300
- "description": "Action",
301
+ "description": "Form Action",
301
302
  "isViewNode": true,
302
303
  "type": "object",
303
304
  "properties": {
305
+ "visible": {
306
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
307
+ "anyOf": [
308
+ {
309
+ "enum": [
310
+ false,
311
+ true,
312
+ "{ui>/editable}",
313
+ "{= !${ui>/editable}}"
314
+ ]
315
+ },
316
+ {
317
+ "type": "string"
318
+ }
319
+ ],
320
+ "description": "Whether the button should be visible on the screen.",
321
+ "artifactType": "FlexChange",
322
+ "controlType": "sap.m.Button"
323
+ },
304
324
  "tooltip": {
305
- "description": "Text for tooltip of button",
325
+ "description": "The text of the button tooltip, preferably as an i18n key.",
326
+ "i18nClassification": "ACT: Text for tooltip of button.",
306
327
  "type": "string",
307
328
  "artifactType": "FlexChange",
308
329
  "controlType": "sap.m.Button"
@@ -324,25 +345,6 @@
324
345
  "description": "Defines the Button type.",
325
346
  "artifactType": "FlexChange",
326
347
  "controlType": "sap.m.Button"
327
- },
328
- "visible": {
329
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
330
- "anyOf": [
331
- {
332
- "enum": [
333
- false,
334
- true,
335
- "{ui>/editable}",
336
- "{= !${ui>/editable}}"
337
- ]
338
- },
339
- {
340
- "type": "string"
341
- }
342
- ],
343
- "description": "Whether the button should be visible on the screen.",
344
- "artifactType": "FlexChange",
345
- "controlType": "sap.m.Button"
346
348
  }
347
349
  },
348
350
  "additionalProperties": false
@@ -460,6 +462,12 @@
460
462
  "artifactType": "FlexChange",
461
463
  "controlType": "sap.ui.comp.smarttable.SmartTable"
462
464
  },
465
+ "exportType": {
466
+ "$ref": "#/definitions/ExportType",
467
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
468
+ "artifactType": "FlexChange",
469
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
470
+ },
463
471
  "createMode": {
464
472
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
465
473
  "type": "string",
@@ -535,6 +543,13 @@
535
543
  "key"
536
544
  ]
537
545
  },
546
+ "ExportType": {
547
+ "enum": [
548
+ "GW",
549
+ "UI5Client"
550
+ ],
551
+ "type": "string"
552
+ },
538
553
  "ObjectPageToolBar": {
539
554
  "description": "Toolbar",
540
555
  "isViewNode": true,
@@ -554,11 +569,61 @@
554
569
  "isViewNode": true,
555
570
  "type": "object",
556
571
  "additionalProperties": {
557
- "type": "object",
558
- "properties": {},
559
- "additionalProperties": true
572
+ "$ref": "#/definitions/ObjectPageToolBarAction"
560
573
  }
561
574
  },
575
+ "ObjectPageToolBarAction": {
576
+ "description": "ToolBar Action",
577
+ "isViewNode": true,
578
+ "type": "object",
579
+ "properties": {
580
+ "visible": {
581
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
582
+ "anyOf": [
583
+ {
584
+ "enum": [
585
+ false,
586
+ true,
587
+ "{ui>/editable}",
588
+ "{= !${ui>/editable}}"
589
+ ]
590
+ },
591
+ {
592
+ "type": "string"
593
+ }
594
+ ],
595
+ "description": "Whether the button should be visible on the screen.",
596
+ "artifactType": "FlexChange",
597
+ "controlType": "sap.m.Button"
598
+ },
599
+ "tooltip": {
600
+ "description": "The text of the button tooltip, preferably as an i18n key.",
601
+ "i18nClassification": "ACT: Text for tooltip of button.",
602
+ "type": "string",
603
+ "artifactType": "FlexChange",
604
+ "controlType": "sap.m.Button"
605
+ },
606
+ "icon": {
607
+ "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.",
608
+ "type": "string",
609
+ "artifactType": "FlexChange",
610
+ "controlType": "sap.m.Button"
611
+ },
612
+ "activeIcon": {
613
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
614
+ "type": "string",
615
+ "artifactType": "FlexChange",
616
+ "controlType": "sap.m.Button"
617
+ },
618
+ "type": {
619
+ "$ref": "#/definitions/ButtonType",
620
+ "description": "Defines the Button type.",
621
+ "artifactType": "FlexChange",
622
+ "controlType": "sap.m.Button"
623
+ }
624
+ },
625
+ "additionalProperties": false
626
+ },
562
627
  "GenericColumns": {
563
628
  "type": "object",
564
629
  "additionalProperties": {
@@ -626,7 +691,7 @@
626
691
  "type": "string"
627
692
  },
628
693
  "text": {
629
- "description": "The label of the custom column, preferrable as an i18n key.",
694
+ "description": "The label of the custom column, preferably as an i18n key.",
630
695
  "i18nClassification": "COL: Custom column header text",
631
696
  "type": "string"
632
697
  },
@@ -734,6 +799,12 @@
734
799
  "artifactType": "FlexChange",
735
800
  "controlType": "sap.ui.comp.smarttable.SmartTable"
736
801
  },
802
+ "exportType": {
803
+ "$ref": "#/definitions/ExportType",
804
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
805
+ "artifactType": "FlexChange",
806
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
807
+ },
737
808
  "createMode": {
738
809
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
739
810
  "type": "string",
@@ -809,6 +880,12 @@
809
880
  "artifactType": "FlexChange",
810
881
  "controlType": "sap.ui.comp.smarttable.SmartTable"
811
882
  },
883
+ "exportType": {
884
+ "$ref": "#/definitions/ExportType",
885
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
886
+ "artifactType": "FlexChange",
887
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
888
+ },
812
889
  "createMode": {
813
890
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
814
891
  "type": "string",
@@ -884,6 +961,12 @@
884
961
  "artifactType": "FlexChange",
885
962
  "controlType": "sap.ui.comp.smarttable.SmartTable"
886
963
  },
964
+ "exportType": {
965
+ "$ref": "#/definitions/ExportType",
966
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
967
+ "artifactType": "FlexChange",
968
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
969
+ },
887
970
  "createMode": {
888
971
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
889
972
  "type": "string",
@@ -1073,10 +1156,60 @@
1073
1156
  "GenericFooterActions": {
1074
1157
  "type": "object",
1075
1158
  "additionalProperties": {
1076
- "type": "object",
1077
- "properties": {},
1078
- "additionalProperties": true
1159
+ "$ref": "#/definitions/FooterAction"
1079
1160
  }
1161
+ },
1162
+ "FooterAction": {
1163
+ "description": "Footer Action",
1164
+ "isViewNode": true,
1165
+ "type": "object",
1166
+ "properties": {
1167
+ "tooltip": {
1168
+ "description": "The text of the button tooltip, preferably as an i18n key.",
1169
+ "i18nClassification": "ACT: Text for tooltip of button.",
1170
+ "type": "string",
1171
+ "artifactType": "FlexChange",
1172
+ "controlType": "sap.m.Button"
1173
+ },
1174
+ "icon": {
1175
+ "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.",
1176
+ "type": "string",
1177
+ "artifactType": "FlexChange",
1178
+ "controlType": "sap.m.Button"
1179
+ },
1180
+ "activeIcon": {
1181
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
1182
+ "type": "string",
1183
+ "artifactType": "FlexChange",
1184
+ "controlType": "sap.m.Button"
1185
+ },
1186
+ "type": {
1187
+ "$ref": "#/definitions/ButtonType",
1188
+ "description": "Defines the Button type.",
1189
+ "artifactType": "FlexChange",
1190
+ "controlType": "sap.m.Button"
1191
+ },
1192
+ "visible": {
1193
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1194
+ "anyOf": [
1195
+ {
1196
+ "enum": [
1197
+ false,
1198
+ true,
1199
+ "{ui>/editable}",
1200
+ "{= !${ui>/editable}}"
1201
+ ]
1202
+ },
1203
+ {
1204
+ "type": "string"
1205
+ }
1206
+ ],
1207
+ "description": "Whether the button should be visible on the screen.",
1208
+ "artifactType": "FlexChange",
1209
+ "controlType": "sap.m.Button"
1210
+ }
1211
+ },
1212
+ "additionalProperties": false
1080
1213
  }
1081
1214
  },
1082
1215
  "$schema": "http://json-schema.org/draft-07/schema#"