@sap/ux-specification 1.71.48 → 1.71.51

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 (140) hide show
  1. package/CHANGELOG.md +49 -2
  2. package/dist/documentation/runDocu-min.js +1 -1
  3. package/dist/documentation/styleDocu.css +7 -14
  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 +111 -2
  11. package/dist/schemas/v2/ListReportConfig.json +119 -4
  12. package/dist/schemas/v2/ObjectPageConfig.json +120 -33
  13. package/dist/scripts/runDocu.js +30 -7
  14. package/dist/scripts/runDocu.js.map +1 -1
  15. package/dist/scripts/to-json-schema.js +27 -32
  16. package/dist/scripts/to-json-schema.js.map +1 -1
  17. package/dist/specification/v2/index-min.js +1 -1
  18. package/dist/src/api.js +3 -3
  19. package/dist/src/api.js.map +1 -1
  20. package/dist/src/apiTypes.d.ts +1 -2
  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/schemaAccess.js +1 -3
  25. package/dist/src/specification/schemaAccess.js.map +1 -1
  26. package/dist/src/specification/v2/controls/Action.d.ts +19 -2
  27. package/dist/src/specification/v2/controls/FilterBar.d.ts +19 -2
  28. package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
  29. package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
  30. package/dist/src/specification/v2/controls/Footer.js.map +1 -0
  31. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +5 -0
  32. package/dist/src/specification/v2/controls/ObjectPageTable.js.map +1 -1
  33. package/dist/src/specification/v2/controls/Table.d.ts +13 -1
  34. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  35. package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
  36. package/dist/src/specification/v2/controls/index.d.ts +1 -2
  37. package/dist/src/specification/v2/controls/index.js.map +1 -1
  38. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
  39. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +3 -2
  40. package/dist/src/sync/common/appProvider.js.map +1 -1
  41. package/dist/src/sync/common/decoration/control.d.ts +11 -1
  42. package/dist/src/sync/common/decoration/control.js +29 -3
  43. package/dist/src/sync/common/decoration/control.js.map +1 -1
  44. package/dist/src/sync/common/decoration/factory.js +2 -4
  45. package/dist/src/sync/common/decoration/factory.js.map +1 -1
  46. package/dist/src/sync/common/generate/objectPage.d.ts +9 -0
  47. package/dist/src/sync/common/generate/objectPage.js +87 -20
  48. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  49. package/dist/src/sync/common/generate/utils.d.ts +27 -0
  50. package/dist/src/sync/common/generate/utils.js +118 -3
  51. package/dist/src/sync/common/generate/utils.js.map +1 -1
  52. package/dist/src/sync/common/i18n.json +2 -0
  53. package/dist/src/sync/common/import/utils.d.ts +8 -1
  54. package/dist/src/sync/common/import/utils.js +15 -4
  55. package/dist/src/sync/common/import/utils.js.map +1 -1
  56. package/dist/src/sync/common/importProject.js +10 -17
  57. package/dist/src/sync/common/importProject.js.map +1 -1
  58. package/dist/src/sync/common/types.d.ts +31 -17
  59. package/dist/src/sync/common/types.js +25 -1
  60. package/dist/src/sync/common/types.js.map +1 -1
  61. package/dist/src/sync/common/utils.d.ts +10 -1
  62. package/dist/src/sync/common/utils.js +25 -22
  63. package/dist/src/sync/common/utils.js.map +1 -1
  64. package/dist/src/sync/v2/export/controls/Action.d.ts +15 -0
  65. package/dist/src/sync/v2/export/controls/Action.js +68 -15
  66. package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
  67. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +3 -3
  68. package/dist/src/sync/v2/export/controls/FilterBar.js +20 -27
  69. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  70. package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
  71. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
  72. package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
  73. package/dist/src/sync/v2/export/controls/Fragment.js +239 -164
  74. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  75. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +2 -2
  76. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +9 -9
  77. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -1
  78. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +1 -1
  79. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +2 -2
  80. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
  81. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +2 -0
  82. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +12 -0
  83. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  84. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +6 -4
  85. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -1
  86. package/dist/src/sync/v2/export/controls/Table.d.ts +2 -0
  87. package/dist/src/sync/v2/export/controls/Table.js +12 -0
  88. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  89. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
  90. package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
  91. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  92. package/dist/src/sync/v2/export/export.js +137 -111
  93. package/dist/src/sync/v2/export/export.js.map +1 -1
  94. package/dist/src/sync/v2/export/manifest.js +2 -5
  95. package/dist/src/sync/v2/export/manifest.js.map +1 -1
  96. package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
  97. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
  98. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
  99. package/dist/src/sync/v2/export/pages/ListReport.d.ts +3 -2
  100. package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
  101. package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
  102. package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
  103. package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
  104. package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
  105. package/dist/src/sync/v2/generate/analyticalListReport.js +14 -6
  106. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  107. package/dist/src/sync/v2/generate/listReport.js +12 -3
  108. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  109. package/dist/src/sync/v2/generate/objectPage.d.ts +1 -5
  110. package/dist/src/sync/v2/generate/objectPage.js +10 -10
  111. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  112. package/dist/src/sync/v2/generate/utils.d.ts +22 -11
  113. package/dist/src/sync/v2/generate/utils.js +277 -110
  114. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  115. package/dist/src/sync/v2/import/common/index.d.ts +22 -4
  116. package/dist/src/sync/v2/import/common/index.js +237 -17
  117. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  118. package/dist/src/sync/v2/import/controls/table.js +3 -2
  119. package/dist/src/sync/v2/import/controls/table.js.map +1 -1
  120. package/dist/src/sync/v2/import/pages/analyticalListPage.js +27 -5
  121. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  122. package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
  123. package/dist/src/sync/v2/import/pages/listReport.js +14 -124
  124. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  125. package/dist/src/sync/v2/import/pages/objectPage.js +182 -107
  126. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  127. package/dist/src/sync/v2/import/utils.d.ts +4 -6
  128. package/dist/src/sync/v2/import/utils.js +43 -11
  129. package/dist/src/sync/v2/import/utils.js.map +1 -1
  130. package/dist/src/sync/v2/types.d.ts +8 -1
  131. package/dist/src/sync/v2/types.js +8 -1
  132. package/dist/src/sync/v2/types.js.map +1 -1
  133. package/dist/test/unit/utils.test.d.ts +1 -1
  134. package/package.json +9 -10
  135. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
  136. package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
  137. package/dist/src/specification/v2/controls/ObjectPageFooterAction.d.ts +0 -28
  138. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js +0 -3
  139. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +0 -1
  140. package/dist/test/test-utils/metadataParser.d.ts +0 -19
@@ -26,6 +26,9 @@
26
26
  "chart": {
27
27
  "$ref": "#/definitions/ChartSettings"
28
28
  },
29
+ "footer": {
30
+ "$ref": "#/definitions/GenericFooter"
31
+ },
29
32
  "keyPerformanceIndicators": {
30
33
  "description": "Key Performance Indicators",
31
34
  "isViewNode": true,
@@ -113,6 +116,12 @@
113
116
  "artifactType": "FlexChange",
114
117
  "controlType": "sap.ui.comp.smarttable.SmartTable"
115
118
  },
119
+ "exportType": {
120
+ "$ref": "#/definitions/ExportType",
121
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
122
+ "artifactType": "FlexChange",
123
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
124
+ },
116
125
  "fitContainer": {
117
126
  "description": "Set to false if the table does not occupy the entire space available in the container.",
118
127
  "type": "boolean",
@@ -171,6 +180,13 @@
171
180
  ],
172
181
  "type": "string"
173
182
  },
183
+ "ExportType": {
184
+ "enum": [
185
+ "GW",
186
+ "UI5Client"
187
+ ],
188
+ "type": "string"
189
+ },
174
190
  "QuickVariantSelection": {
175
191
  "type": "object",
176
192
  "properties": {
@@ -306,13 +322,13 @@
306
322
  "controlType": "sap.m.Button"
307
323
  },
308
324
  "icon": {
309
- "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.",
325
+ "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.",
310
326
  "type": "string",
311
327
  "artifactType": "FlexChange",
312
328
  "controlType": "sap.m.Button"
313
329
  },
314
330
  "activeIcon": {
315
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
331
+ "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.",
316
332
  "type": "string",
317
333
  "artifactType": "FlexChange",
318
334
  "controlType": "sap.m.Button"
@@ -347,6 +363,9 @@
347
363
  {
348
364
  "$ref": "#/definitions/TableColumn"
349
365
  },
366
+ {
367
+ "$ref": "#/definitions/TableColumnAction"
368
+ },
350
369
  {
351
370
  "description": "Custom Columns",
352
371
  "isViewNode": true,
@@ -397,6 +416,59 @@
397
416
  ],
398
417
  "type": "string"
399
418
  },
419
+ "TableColumnAction": {
420
+ "description": "Column Action",
421
+ "isViewNode": true,
422
+ "type": "object",
423
+ "properties": {
424
+ "tooltip": {
425
+ "description": "The text of the button tooltip, preferably as an i18n key.",
426
+ "i18nClassification": "ACT: Text for tooltip of button.",
427
+ "type": "string",
428
+ "artifactType": "FlexChange",
429
+ "controlType": "sap.m.Button"
430
+ },
431
+ "icon": {
432
+ "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.",
433
+ "type": "string",
434
+ "artifactType": "FlexChange",
435
+ "controlType": "sap.m.Button"
436
+ },
437
+ "activeIcon": {
438
+ "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.",
439
+ "type": "string",
440
+ "artifactType": "FlexChange",
441
+ "controlType": "sap.m.Button"
442
+ },
443
+ "type": {
444
+ "$ref": "#/definitions/ButtonType",
445
+ "description": "Defines the Button type.",
446
+ "artifactType": "FlexChange",
447
+ "controlType": "sap.m.Button"
448
+ },
449
+ "width": {
450
+ "description": "The width property defines the width of the column.",
451
+ "type": "string",
452
+ "artifactType": "FlexChange",
453
+ "controlType": "sap.m.Column"
454
+ },
455
+ "hAlign": {
456
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
457
+ "anyOf": [
458
+ {
459
+ "$ref": "#/definitions/HAlign"
460
+ },
461
+ {
462
+ "type": "string"
463
+ }
464
+ ],
465
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
466
+ "artifactType": "FlexChange",
467
+ "controlType": "sap.m.Column"
468
+ }
469
+ },
470
+ "additionalProperties": false
471
+ },
400
472
  "TableCustomColumn": {
401
473
  "description": "Custom Column",
402
474
  "isViewNode": true,
@@ -531,6 +603,12 @@
531
603
  "artifactType": "FlexChange",
532
604
  "controlType": "sap.ui.comp.smarttable.SmartTable"
533
605
  },
606
+ "exportType": {
607
+ "$ref": "#/definitions/ExportType",
608
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
609
+ "artifactType": "FlexChange",
610
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
611
+ },
534
612
  "fitContainer": {
535
613
  "description": "Set to false if the table does not occupy the entire space available in the container.",
536
614
  "type": "boolean",
@@ -641,6 +719,12 @@
641
719
  "artifactType": "FlexChange",
642
720
  "controlType": "sap.ui.comp.smarttable.SmartTable"
643
721
  },
722
+ "exportType": {
723
+ "$ref": "#/definitions/ExportType",
724
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
725
+ "artifactType": "FlexChange",
726
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
727
+ },
644
728
  "fitContainer": {
645
729
  "description": "Set to false if the table does not occupy the entire space available in the container.",
646
730
  "type": "boolean",
@@ -738,10 +822,24 @@
738
822
  "type": "boolean",
739
823
  "artifactType": "FlexChange",
740
824
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
825
+ },
826
+ "selectionFields": {
827
+ "$ref": "#/definitions/SelectionFields"
741
828
  }
742
829
  },
743
830
  "additionalProperties": false
744
831
  },
832
+ "SelectionFields": {
833
+ "description": "Filter Fields",
834
+ "isViewNode": true,
835
+ "type": "object",
836
+ "additionalProperties": {
837
+ "description": "Filter Field",
838
+ "isViewNode": true,
839
+ "type": "object",
840
+ "properties": {}
841
+ }
842
+ },
745
843
  "ChartSettings": {
746
844
  "description": "Chart",
747
845
  "isViewNode": true,
@@ -809,6 +907,17 @@
809
907
  },
810
908
  "additionalProperties": false
811
909
  },
910
+ "GenericFooter": {
911
+ "description": "Footer",
912
+ "isViewNode": true,
913
+ "type": "object",
914
+ "properties": {
915
+ "actions": {
916
+ "$ref": "#/definitions/Actions"
917
+ }
918
+ },
919
+ "additionalProperties": false
920
+ },
812
921
  "KPISettings": {
813
922
  "description": "KPI Settings",
814
923
  "isViewNode": true,
@@ -24,7 +24,10 @@
24
24
  ]
25
25
  },
26
26
  "filterBar": {
27
- "$ref": "#/definitions/FilterBar"
27
+ "$ref": "#/definitions/ListReportFilterBar"
28
+ },
29
+ "footer": {
30
+ "$ref": "#/definitions/GenericFooter"
28
31
  },
29
32
  "$schema": {
30
33
  "type": "string"
@@ -107,6 +110,12 @@
107
110
  "artifactType": "FlexChange",
108
111
  "controlType": "sap.ui.comp.smarttable.SmartTable"
109
112
  },
113
+ "exportType": {
114
+ "$ref": "#/definitions/ExportType",
115
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
116
+ "artifactType": "FlexChange",
117
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
118
+ },
110
119
  "fitContainer": {
111
120
  "description": "Set to false if the table does not occupy the entire space available in the container.",
112
121
  "type": "boolean",
@@ -175,6 +184,13 @@
175
184
  "strategy"
176
185
  ]
177
186
  },
187
+ "ExportType": {
188
+ "enum": [
189
+ "GW",
190
+ "UI5Client"
191
+ ],
192
+ "type": "string"
193
+ },
178
194
  "QuickVariantSelection": {
179
195
  "type": "object",
180
196
  "properties": {
@@ -310,13 +326,13 @@
310
326
  "controlType": "sap.m.Button"
311
327
  },
312
328
  "icon": {
313
- "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.",
329
+ "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.",
314
330
  "type": "string",
315
331
  "artifactType": "FlexChange",
316
332
  "controlType": "sap.m.Button"
317
333
  },
318
334
  "activeIcon": {
319
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
335
+ "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.",
320
336
  "type": "string",
321
337
  "artifactType": "FlexChange",
322
338
  "controlType": "sap.m.Button"
@@ -351,6 +367,9 @@
351
367
  {
352
368
  "$ref": "#/definitions/TableColumn"
353
369
  },
370
+ {
371
+ "$ref": "#/definitions/TableColumnAction"
372
+ },
354
373
  {
355
374
  "description": "Custom Columns",
356
375
  "isViewNode": true,
@@ -401,6 +420,59 @@
401
420
  ],
402
421
  "type": "string"
403
422
  },
423
+ "TableColumnAction": {
424
+ "description": "Column Action",
425
+ "isViewNode": true,
426
+ "type": "object",
427
+ "properties": {
428
+ "tooltip": {
429
+ "description": "The text of the button tooltip, preferably as an i18n key.",
430
+ "i18nClassification": "ACT: Text for tooltip of button.",
431
+ "type": "string",
432
+ "artifactType": "FlexChange",
433
+ "controlType": "sap.m.Button"
434
+ },
435
+ "icon": {
436
+ "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.",
437
+ "type": "string",
438
+ "artifactType": "FlexChange",
439
+ "controlType": "sap.m.Button"
440
+ },
441
+ "activeIcon": {
442
+ "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.",
443
+ "type": "string",
444
+ "artifactType": "FlexChange",
445
+ "controlType": "sap.m.Button"
446
+ },
447
+ "type": {
448
+ "$ref": "#/definitions/ButtonType",
449
+ "description": "Defines the Button type.",
450
+ "artifactType": "FlexChange",
451
+ "controlType": "sap.m.Button"
452
+ },
453
+ "width": {
454
+ "description": "The width property defines the width of the column.",
455
+ "type": "string",
456
+ "artifactType": "FlexChange",
457
+ "controlType": "sap.m.Column"
458
+ },
459
+ "hAlign": {
460
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
461
+ "anyOf": [
462
+ {
463
+ "$ref": "#/definitions/HAlign"
464
+ },
465
+ {
466
+ "type": "string"
467
+ }
468
+ ],
469
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
470
+ "artifactType": "FlexChange",
471
+ "controlType": "sap.m.Column"
472
+ }
473
+ },
474
+ "additionalProperties": false
475
+ },
404
476
  "TableCustomColumn": {
405
477
  "description": "Custom Column",
406
478
  "isViewNode": true,
@@ -514,6 +586,12 @@
514
586
  "artifactType": "FlexChange",
515
587
  "controlType": "sap.ui.comp.smarttable.SmartTable"
516
588
  },
589
+ "exportType": {
590
+ "$ref": "#/definitions/ExportType",
591
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
592
+ "artifactType": "FlexChange",
593
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
594
+ },
517
595
  "fitContainer": {
518
596
  "description": "Set to false if the table does not occupy the entire space available in the container.",
519
597
  "type": "boolean",
@@ -629,6 +707,12 @@
629
707
  "artifactType": "FlexChange",
630
708
  "controlType": "sap.ui.comp.smarttable.SmartTable"
631
709
  },
710
+ "exportType": {
711
+ "$ref": "#/definitions/ExportType",
712
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
713
+ "artifactType": "FlexChange",
714
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
715
+ },
632
716
  "fitContainer": {
633
717
  "description": "Set to false if the table does not occupy the entire space available in the container.",
634
718
  "type": "boolean",
@@ -738,6 +822,12 @@
738
822
  "artifactType": "FlexChange",
739
823
  "controlType": "sap.ui.comp.smarttable.SmartTable"
740
824
  },
825
+ "exportType": {
826
+ "$ref": "#/definitions/ExportType",
827
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
828
+ "artifactType": "FlexChange",
829
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
830
+ },
741
831
  "fitContainer": {
742
832
  "description": "Set to false if the table does not occupy the entire space available in the container.",
743
833
  "type": "boolean",
@@ -781,7 +871,7 @@
781
871
  },
782
872
  "additionalProperties": false
783
873
  },
784
- "FilterBar": {
874
+ "ListReportFilterBar": {
785
875
  "description": "Filter Bar",
786
876
  "isViewNode": true,
787
877
  "type": "object",
@@ -825,6 +915,31 @@
825
915
  "type": "boolean",
826
916
  "artifactType": "FlexChange",
827
917
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
918
+ },
919
+ "selectionFields": {
920
+ "$ref": "#/definitions/SelectionFields"
921
+ }
922
+ },
923
+ "additionalProperties": false
924
+ },
925
+ "SelectionFields": {
926
+ "description": "Filter Fields",
927
+ "isViewNode": true,
928
+ "type": "object",
929
+ "additionalProperties": {
930
+ "description": "Filter Field",
931
+ "isViewNode": true,
932
+ "type": "object",
933
+ "properties": {}
934
+ }
935
+ },
936
+ "GenericFooter": {
937
+ "description": "Footer",
938
+ "isViewNode": true,
939
+ "type": "object",
940
+ "properties": {
941
+ "actions": {
942
+ "$ref": "#/definitions/Actions"
828
943
  }
829
944
  },
830
945
  "additionalProperties": false