@sap/ux-specification 1.90.13 → 1.90.17

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 (175) hide show
  1. package/CHANGELOG.md +96 -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 +16 -42
  15. package/dist/schemas/v2/ListReportConfig.json +21 -37
  16. package/dist/schemas/v2/ObjectPageConfig.json +162 -58
  17. package/dist/schemas/v2/OverviewPageConfig.json +258 -196
  18. package/dist/schemas/v4/AnalyticalListPageConfig.json +21 -2
  19. package/dist/schemas/v4/ListReportConfig.json +21 -2
  20. package/dist/schemas/v4/ObjectPageConfig.json +0 -20
  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 +11 -2
  26. package/dist/scripts/to-json-schema.js.map +1 -1
  27. package/dist/specification/v2/index-min.js +1 -1
  28. package/dist/src/specification/v2/controls/Action.d.ts +54 -0
  29. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.js → Action.js} +1 -1
  30. package/dist/src/specification/v2/controls/Action.js.map +1 -0
  31. package/dist/src/specification/v2/controls/Card.d.ts +20 -72
  32. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  33. package/dist/src/specification/v2/controls/FilterBar.d.ts +16 -6
  34. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +2 -2
  35. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.d.ts → ObjectPageFooterAction.d.ts} +8 -7
  36. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js +3 -0
  37. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +1 -0
  38. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
  39. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +3 -6
  40. package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -5
  41. package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +1 -1
  42. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +3 -2
  43. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
  44. package/dist/src/specification/v2/controls/Table.d.ts +4 -24
  45. package/dist/src/specification/v2/controls/Table.js +0 -15
  46. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  47. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -2
  48. package/dist/src/specification/v2/controls/index.d.ts +8 -9
  49. package/dist/src/specification/v2/controls/index.js +2 -4
  50. package/dist/src/specification/v2/controls/index.js.map +1 -1
  51. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -2
  52. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +2 -2
  53. package/dist/src/specification/v4/controls/Table.d.ts +3 -2
  54. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +8 -19
  55. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.d.ts +2 -1
  56. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js.map +1 -1
  57. package/dist/src/sync/common/generate/index.d.ts +1 -0
  58. package/dist/src/sync/common/generate/index.js +1 -0
  59. package/dist/src/sync/common/generate/index.js.map +1 -1
  60. package/dist/src/sync/common/generate/objectPage.js +33 -28
  61. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  62. package/dist/src/sync/common/generate/utils.d.ts +66 -0
  63. package/dist/src/sync/common/generate/utils.js +205 -0
  64. package/dist/src/sync/common/generate/utils.js.map +1 -0
  65. package/dist/src/sync/common/importProject.js +10 -10
  66. package/dist/src/sync/common/importProject.js.map +1 -1
  67. package/dist/src/sync/common/utils.d.ts +3 -30
  68. package/dist/src/sync/common/utils.js +24 -122
  69. package/dist/src/sync/common/utils.js.map +1 -1
  70. package/dist/src/sync/v2/export/controls/Action.d.ts +14 -0
  71. package/dist/src/sync/v2/export/controls/Action.js +74 -0
  72. package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
  73. package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
  74. package/dist/src/sync/v2/export/controls/Card.js +15 -43
  75. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  76. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +7 -3
  77. package/dist/src/sync/v2/export/controls/FilterBar.js +34 -11
  78. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  79. package/dist/src/sync/v2/export/controls/FormAction.d.ts +8 -7
  80. package/dist/src/sync/v2/export/controls/FormAction.js +15 -53
  81. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
  82. package/dist/src/sync/v2/export/controls/Fragment.js +5 -4
  83. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  84. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +9 -0
  85. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
  86. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
  87. package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +3 -2
  88. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
  89. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +5 -4
  90. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
  91. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  92. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +4 -2
  93. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +3 -0
  94. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  95. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +9 -0
  96. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +59 -0
  97. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
  98. package/dist/src/sync/v2/export/controls/Table.d.ts +5 -5
  99. package/dist/src/sync/v2/export/controls/Table.js +4 -21
  100. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  101. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +3 -2
  102. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  103. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
  104. package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
  105. package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
  106. package/dist/src/sync/v2/export/controls/index.d.ts +12 -8
  107. package/dist/src/sync/v2/export/controls/index.js +12 -8
  108. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  109. package/dist/src/sync/v2/export/export.js +1 -1
  110. package/dist/src/sync/v2/export/export.js.map +1 -1
  111. package/dist/src/sync/v2/export/exportPage.js +3 -2
  112. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  113. package/dist/src/sync/v2/export/pages/ListReport.d.ts +2 -2
  114. package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
  115. package/dist/src/sync/v2/generate/analyticalListReport.js +6 -3
  116. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  117. package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
  118. package/dist/src/sync/v2/generate/listReport.js +18 -3
  119. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  120. package/dist/src/sync/v2/generate/objectPage.d.ts +0 -1
  121. package/dist/src/sync/v2/generate/objectPage.js +205 -123
  122. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  123. package/dist/src/sync/v2/generate/utils.d.ts +3 -3
  124. package/dist/src/sync/v2/generate/utils.js +24 -16
  125. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  126. package/dist/src/sync/v2/import/common/index.d.ts +8 -1
  127. package/dist/src/sync/v2/import/common/index.js +107 -43
  128. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  129. package/dist/src/sync/v2/import/pages/listReport.js +33 -2
  130. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  131. package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
  132. package/dist/src/sync/v2/import/pages/objectPage.js +305 -240
  133. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  134. package/dist/src/sync/v2/import/utils.d.ts +1 -1
  135. package/dist/src/sync/v2/import/utils.js +2 -2
  136. package/dist/src/sync/v2/import/utils.js.map +1 -1
  137. package/dist/src/sync/v2/types.d.ts +21 -2
  138. package/dist/src/sync/v2/types.js +7 -0
  139. package/dist/src/sync/v2/types.js.map +1 -1
  140. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js +5 -1
  141. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
  142. package/dist/src/sync/v4/export/controls/ObjectPageTable.js +2 -2
  143. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -2
  144. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +3 -10
  145. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  146. package/dist/src/sync/v4/export/controls/Table.js +1 -1
  147. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +3 -1
  148. package/dist/src/sync/v4/export/controls/TableColumn.js +5 -2
  149. package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  150. package/dist/src/sync/v4/export/export.js +21 -14
  151. package/dist/src/sync/v4/export/export.js.map +1 -1
  152. package/dist/src/sync/v4/export/types.d.ts +1 -0
  153. package/dist/src/sync/v4/generate/listReport.d.ts +2 -1
  154. package/dist/src/sync/v4/generate/listReport.js +47 -1
  155. package/dist/src/sync/v4/generate/listReport.js.map +1 -1
  156. package/dist/src/sync/v4/generate/objectPage.js +102 -52
  157. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  158. package/dist/src/sync/v4/import/app/appProvider.js +2 -2
  159. package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
  160. package/dist/src/sync/v4/import/pages/listReport.d.ts +1 -3
  161. package/dist/src/sync/v4/import/pages/listReport.js +27 -17
  162. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  163. package/dist/src/sync/v4/import/pages/objectPage.js +10 -12
  164. package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
  165. package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -3
  166. package/dist/src/sync/v4/utils/StableIdHelper.js +9 -11
  167. package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
  168. package/dist/src/sync/v4/utils/utils.d.ts +1 -8
  169. package/dist/src/sync/v4/utils/utils.js +32 -54
  170. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  171. package/package.json +17 -16
  172. package/dist/src/specification/v2/controls/FormAction.d.ts +0 -43
  173. package/dist/src/specification/v2/controls/FormAction.js +0 -20
  174. package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
  175. 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
  "allFiltersAsInParameters": {
95
90
  "description": "All filter fields will be set as in parameter",
96
91
  "type": "boolean",
@@ -384,16 +379,17 @@
384
379
  "isViewNode": true,
385
380
  "type": "object",
386
381
  "additionalProperties": {
387
- "$ref": "#/definitions/FormAction"
382
+ "$ref": "#/definitions/Action"
388
383
  }
389
384
  },
390
- "FormAction": {
385
+ "Action": {
391
386
  "description": "Action",
392
387
  "isViewNode": true,
393
388
  "type": "object",
394
389
  "properties": {
395
390
  "tooltip": {
396
- "description": "Text for tooltip of button",
391
+ "description": "The text of the button tooltip, preferably as an i18n key.",
392
+ "i18nClassification": "ACT: Text for tooltip of button.",
397
393
  "type": "string",
398
394
  "artifactType": "FlexChange",
399
395
  "controlType": "sap.m.Button"
@@ -411,34 +407,16 @@
411
407
  "controlType": "sap.m.Button"
412
408
  },
413
409
  "type": {
414
- "$ref": "#/definitions/ButtonType",
410
+ "$ref": "#/definitions/sap.m.ButtonType",
415
411
  "description": "Defines the Button type.",
416
412
  "artifactType": "FlexChange",
417
413
  "controlType": "sap.m.Button"
418
- },
419
- "visible": {
420
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
421
- "anyOf": [
422
- {
423
- "enum": [
424
- false,
425
- true,
426
- "{ui>/editable}",
427
- "{= !${ui>/editable}}"
428
- ]
429
- },
430
- {
431
- "type": "string"
432
- }
433
- ],
434
- "description": "Whether the button should be visible on the screen.",
435
- "artifactType": "FlexChange",
436
- "controlType": "sap.m.Button"
437
414
  }
438
415
  },
439
416
  "additionalProperties": false
440
417
  },
441
- "ButtonType": {
418
+ "sap.m.ButtonType": {
419
+ "description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
442
420
  "enum": [
443
421
  "Accept",
444
422
  "Attention",
@@ -490,7 +468,7 @@
490
468
  "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
491
469
  "anyOf": [
492
470
  {
493
- "$ref": "#/definitions/HAlign"
471
+ "$ref": "#/definitions/sap.ui.core.TextAlign"
494
472
  },
495
473
  {
496
474
  "type": "string"
@@ -503,7 +481,8 @@
503
481
  },
504
482
  "additionalProperties": false
505
483
  },
506
- "HAlign": {
484
+ "sap.ui.core.TextAlign": {
485
+ "description": "Configuration options for text alignments.",
507
486
  "enum": [
508
487
  "Begin",
509
488
  "Center",
@@ -524,7 +503,7 @@
524
503
  "type": "string"
525
504
  },
526
505
  "text": {
527
- "description": "The label of the custom column, preferrable as an i18n key.",
506
+ "description": "The label of the custom column, preferably as an i18n key.",
528
507
  "i18nClassification": "COL: Custom column header text",
529
508
  "type": "string"
530
509
  },
@@ -621,11 +600,6 @@
621
600
  "type": "boolean",
622
601
  "artifactType": "Manifest"
623
602
  },
624
- "filterDefaultsFromSelectionVariant": {
625
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
626
- "type": "boolean",
627
- "artifactType": "Manifest"
628
- },
629
603
  "allFiltersAsInParameters": {
630
604
  "description": "All filter fields will be set as in parameter",
631
605
  "type": "boolean",
@@ -745,11 +719,6 @@
745
719
  "type": "boolean",
746
720
  "artifactType": "Manifest"
747
721
  },
748
- "filterDefaultsFromSelectionVariant": {
749
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
750
- "type": "boolean",
751
- "artifactType": "Manifest"
752
- },
753
722
  "allFiltersAsInParameters": {
754
723
  "description": "All filter fields will be set as in parameter",
755
724
  "type": "boolean",
@@ -839,6 +808,11 @@
839
808
  "type": "boolean",
840
809
  "artifactType": "Manifest"
841
810
  },
811
+ "filterDefaultsFromSelectionVariant": {
812
+ "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
813
+ "type": "boolean",
814
+ "artifactType": "Manifest"
815
+ },
842
816
  "smartVariantManagement": {
843
817
  "description": "Controls whether smart variant management is active. Default is true.",
844
818
  "type": "boolean",
@@ -27,7 +27,7 @@
27
27
  ]
28
28
  },
29
29
  "filterBar": {
30
- "$ref": "#/definitions/FilterBar"
30
+ "$ref": "#/definitions/ListReportFilterBar"
31
31
  },
32
32
  "$schema": {
33
33
  "type": "string"
@@ -64,7 +64,7 @@
64
64
  "pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
65
65
  "anyOf": [
66
66
  {
67
- "$ref": "#/definitions/PopinLayout"
67
+ "$ref": "#/definitions/sap.m.PopinLayout"
68
68
  },
69
69
  {
70
70
  "type": "string"
@@ -159,7 +159,7 @@
159
159
  },
160
160
  "additionalProperties": false
161
161
  },
162
- "PopinLayout": {
162
+ "sap.m.PopinLayout": {
163
163
  "enum": [
164
164
  "Block",
165
165
  "GridLarge",
@@ -383,16 +383,17 @@
383
383
  "isViewNode": true,
384
384
  "type": "object",
385
385
  "additionalProperties": {
386
- "$ref": "#/definitions/FormAction"
386
+ "$ref": "#/definitions/Action"
387
387
  }
388
388
  },
389
- "FormAction": {
389
+ "Action": {
390
390
  "description": "Action",
391
391
  "isViewNode": true,
392
392
  "type": "object",
393
393
  "properties": {
394
394
  "tooltip": {
395
- "description": "Text for tooltip of button",
395
+ "description": "The text of the button tooltip, preferably as an i18n key.",
396
+ "i18nClassification": "ACT: Text for tooltip of button.",
396
397
  "type": "string",
397
398
  "artifactType": "FlexChange",
398
399
  "controlType": "sap.m.Button"
@@ -410,34 +411,16 @@
410
411
  "controlType": "sap.m.Button"
411
412
  },
412
413
  "type": {
413
- "$ref": "#/definitions/ButtonType",
414
+ "$ref": "#/definitions/sap.m.ButtonType",
414
415
  "description": "Defines the Button type.",
415
416
  "artifactType": "FlexChange",
416
417
  "controlType": "sap.m.Button"
417
- },
418
- "visible": {
419
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
420
- "anyOf": [
421
- {
422
- "enum": [
423
- false,
424
- true,
425
- "{ui>/editable}",
426
- "{= !${ui>/editable}}"
427
- ]
428
- },
429
- {
430
- "type": "string"
431
- }
432
- ],
433
- "description": "Whether the button should be visible on the screen.",
434
- "artifactType": "FlexChange",
435
- "controlType": "sap.m.Button"
436
418
  }
437
419
  },
438
420
  "additionalProperties": false
439
421
  },
440
- "ButtonType": {
422
+ "sap.m.ButtonType": {
423
+ "description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
441
424
  "enum": [
442
425
  "Accept",
443
426
  "Attention",
@@ -489,7 +472,7 @@
489
472
  "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
490
473
  "anyOf": [
491
474
  {
492
- "$ref": "#/definitions/HAlign"
475
+ "$ref": "#/definitions/sap.ui.core.TextAlign"
493
476
  },
494
477
  {
495
478
  "type": "string"
@@ -502,7 +485,8 @@
502
485
  },
503
486
  "additionalProperties": false
504
487
  },
505
- "HAlign": {
488
+ "sap.ui.core.TextAlign": {
489
+ "description": "Configuration options for text alignments.",
506
490
  "enum": [
507
491
  "Begin",
508
492
  "Center",
@@ -523,7 +507,7 @@
523
507
  "type": "string"
524
508
  },
525
509
  "text": {
526
- "description": "The label of the custom column, preferrable as an i18n key.",
510
+ "description": "The label of the custom column, preferably as an i18n key.",
527
511
  "i18nClassification": "COL: Custom column header text",
528
512
  "type": "string"
529
513
  },
@@ -609,7 +593,7 @@
609
593
  "pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
610
594
  "anyOf": [
611
595
  {
612
- "$ref": "#/definitions/PopinLayout"
596
+ "$ref": "#/definitions/sap.m.PopinLayout"
613
597
  },
614
598
  {
615
599
  "type": "string"
@@ -832,11 +816,6 @@
832
816
  "type": "string",
833
817
  "artifactType": "Manifest"
834
818
  },
835
- "filterDefaultsFromSelectionVariant": {
836
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
837
- "type": "boolean",
838
- "artifactType": "Manifest"
839
- },
840
819
  "allFiltersAsInParameters": {
841
820
  "description": "All filter fields will be set as in parameter",
842
821
  "type": "boolean",
@@ -1039,11 +1018,16 @@
1039
1018
  },
1040
1019
  "additionalProperties": false
1041
1020
  },
1042
- "FilterBar": {
1021
+ "ListReportFilterBar": {
1043
1022
  "description": "Filter Bar",
1044
1023
  "isViewNode": true,
1045
1024
  "type": "object",
1046
1025
  "properties": {
1026
+ "annotationPath": {
1027
+ "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
1028
+ "type": "string",
1029
+ "artifactType": "Manifest"
1030
+ },
1047
1031
  "smartVariantManagement": {
1048
1032
  "description": "Controls whether smart variant management is active. Default is true.",
1049
1033
  "type": "boolean",
@@ -94,7 +94,7 @@
94
94
  "pattern": "^(Circle|Square)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
95
95
  "anyOf": [
96
96
  {
97
- "$ref": "#/definitions/AvatarShape"
97
+ "$ref": "#/definitions/sap.m.AvatarShape"
98
98
  },
99
99
  {
100
100
  "type": "string"
@@ -111,7 +111,7 @@
111
111
  },
112
112
  "additionalProperties": false
113
113
  },
114
- "AvatarShape": {
114
+ "sap.m.AvatarShape": {
115
115
  "enum": [
116
116
  "Circle",
117
117
  "Square"
@@ -129,8 +129,28 @@
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"
@@ -148,34 +168,16 @@
148
168
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
149
169
  },
150
170
  "type": {
151
- "$ref": "#/definitions/ButtonType",
171
+ "$ref": "#/definitions/sap.m.ButtonType",
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
177
178
  },
178
- "ButtonType": {
179
+ "sap.m.ButtonType": {
180
+ "description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
179
181
  "enum": [
180
182
  "Accept",
181
183
  "Attention",
@@ -329,12 +331,32 @@
329
331
  }
330
332
  },
331
333
  "FormAction": {
332
- "description": "Action",
334
+ "description": "Form Action",
333
335
  "isViewNode": true,
334
336
  "type": "object",
335
337
  "properties": {
338
+ "visible": {
339
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
340
+ "anyOf": [
341
+ {
342
+ "enum": [
343
+ false,
344
+ true,
345
+ "{ui>/editable}",
346
+ "{= !${ui>/editable}}"
347
+ ]
348
+ },
349
+ {
350
+ "type": "string"
351
+ }
352
+ ],
353
+ "description": "Whether the button should be visible on the screen.",
354
+ "artifactType": "FlexChange",
355
+ "controlType": "sap.m.Button"
356
+ },
336
357
  "tooltip": {
337
- "description": "Text for tooltip of button",
358
+ "description": "The text of the button tooltip, preferably as an i18n key.",
359
+ "i18nClassification": "ACT: Text for tooltip of button.",
338
360
  "type": "string",
339
361
  "artifactType": "FlexChange",
340
362
  "controlType": "sap.m.Button"
@@ -352,29 +374,10 @@
352
374
  "controlType": "sap.m.Button"
353
375
  },
354
376
  "type": {
355
- "$ref": "#/definitions/ButtonType",
377
+ "$ref": "#/definitions/sap.m.ButtonType",
356
378
  "description": "Defines the Button type.",
357
379
  "artifactType": "FlexChange",
358
380
  "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
381
  }
379
382
  },
380
383
  "additionalProperties": false
@@ -454,7 +457,7 @@
454
457
  "pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
455
458
  "anyOf": [
456
459
  {
457
- "$ref": "#/definitions/PopinLayout"
460
+ "$ref": "#/definitions/sap.m.PopinLayout"
458
461
  },
459
462
  {
460
463
  "type": "string"
@@ -531,7 +534,7 @@
531
534
  },
532
535
  "additionalProperties": false
533
536
  },
534
- "PopinLayout": {
537
+ "sap.m.PopinLayout": {
535
538
  "enum": [
536
539
  "Block",
537
540
  "GridLarge",
@@ -633,11 +636,61 @@
633
636
  "isViewNode": true,
634
637
  "type": "object",
635
638
  "additionalProperties": {
636
- "type": "object",
637
- "properties": {},
638
- "additionalProperties": true
639
+ "$ref": "#/definitions/ObjectPageToolBarAction"
639
640
  }
640
641
  },
642
+ "ObjectPageToolBarAction": {
643
+ "description": "ToolBar Action",
644
+ "isViewNode": true,
645
+ "type": "object",
646
+ "properties": {
647
+ "visible": {
648
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
649
+ "anyOf": [
650
+ {
651
+ "enum": [
652
+ false,
653
+ true,
654
+ "{ui>/editable}",
655
+ "{= !${ui>/editable}}"
656
+ ]
657
+ },
658
+ {
659
+ "type": "string"
660
+ }
661
+ ],
662
+ "description": "Whether the button should be visible on the screen.",
663
+ "artifactType": "FlexChange",
664
+ "controlType": "sap.m.Button"
665
+ },
666
+ "tooltip": {
667
+ "description": "The text of the button tooltip, preferably as an i18n key.",
668
+ "i18nClassification": "ACT: Text for tooltip of button.",
669
+ "type": "string",
670
+ "artifactType": "FlexChange",
671
+ "controlType": "sap.m.Button"
672
+ },
673
+ "icon": {
674
+ "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.",
675
+ "type": "string",
676
+ "artifactType": "FlexChange",
677
+ "controlType": "sap.m.Button"
678
+ },
679
+ "activeIcon": {
680
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
681
+ "type": "string",
682
+ "artifactType": "FlexChange",
683
+ "controlType": "sap.m.Button"
684
+ },
685
+ "type": {
686
+ "$ref": "#/definitions/sap.m.ButtonType",
687
+ "description": "Defines the Button type.",
688
+ "artifactType": "FlexChange",
689
+ "controlType": "sap.m.Button"
690
+ }
691
+ },
692
+ "additionalProperties": false
693
+ },
641
694
  "GenericColumns": {
642
695
  "type": "object",
643
696
  "additionalProperties": {
@@ -671,7 +724,7 @@
671
724
  "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
672
725
  "anyOf": [
673
726
  {
674
- "$ref": "#/definitions/HAlign"
727
+ "$ref": "#/definitions/sap.ui.core.TextAlign"
675
728
  },
676
729
  {
677
730
  "type": "string"
@@ -684,7 +737,8 @@
684
737
  },
685
738
  "additionalProperties": false
686
739
  },
687
- "HAlign": {
740
+ "sap.ui.core.TextAlign": {
741
+ "description": "Configuration options for text alignments.",
688
742
  "enum": [
689
743
  "Begin",
690
744
  "Center",
@@ -705,7 +759,7 @@
705
759
  "type": "string"
706
760
  },
707
761
  "text": {
708
- "description": "The label of the custom column, preferrable as an i18n key.",
762
+ "description": "The label of the custom column, preferably as an i18n key.",
709
763
  "i18nClassification": "COL: Custom column header text",
710
764
  "type": "string"
711
765
  },
@@ -791,7 +845,7 @@
791
845
  "pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
792
846
  "anyOf": [
793
847
  {
794
- "$ref": "#/definitions/PopinLayout"
848
+ "$ref": "#/definitions/sap.m.PopinLayout"
795
849
  },
796
850
  {
797
851
  "type": "string"
@@ -1331,10 +1385,60 @@
1331
1385
  "GenericFooterActions": {
1332
1386
  "type": "object",
1333
1387
  "additionalProperties": {
1334
- "type": "object",
1335
- "properties": {},
1336
- "additionalProperties": true
1388
+ "$ref": "#/definitions/FooterAction"
1337
1389
  }
1390
+ },
1391
+ "FooterAction": {
1392
+ "description": "Footer Action",
1393
+ "isViewNode": true,
1394
+ "type": "object",
1395
+ "properties": {
1396
+ "tooltip": {
1397
+ "description": "The text of the button tooltip, preferably as an i18n key.",
1398
+ "i18nClassification": "ACT: Text for tooltip of button.",
1399
+ "type": "string",
1400
+ "artifactType": "FlexChange",
1401
+ "controlType": "sap.m.Button"
1402
+ },
1403
+ "icon": {
1404
+ "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.",
1405
+ "type": "string",
1406
+ "artifactType": "FlexChange",
1407
+ "controlType": "sap.m.Button"
1408
+ },
1409
+ "activeIcon": {
1410
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
1411
+ "type": "string",
1412
+ "artifactType": "FlexChange",
1413
+ "controlType": "sap.m.Button"
1414
+ },
1415
+ "type": {
1416
+ "$ref": "#/definitions/sap.m.ButtonType",
1417
+ "description": "Defines the Button type.",
1418
+ "artifactType": "FlexChange",
1419
+ "controlType": "sap.m.Button"
1420
+ },
1421
+ "visible": {
1422
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1423
+ "anyOf": [
1424
+ {
1425
+ "enum": [
1426
+ false,
1427
+ true,
1428
+ "{ui>/editable}",
1429
+ "{= !${ui>/editable}}"
1430
+ ]
1431
+ },
1432
+ {
1433
+ "type": "string"
1434
+ }
1435
+ ],
1436
+ "description": "Whether the button should be visible on the screen.",
1437
+ "artifactType": "FlexChange",
1438
+ "controlType": "sap.m.Button"
1439
+ }
1440
+ },
1441
+ "additionalProperties": false
1338
1442
  }
1339
1443
  },
1340
1444
  "$schema": "http://json-schema.org/draft-07/schema#"