@sap/ux-specification 1.71.44 → 1.71.48

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 (121) hide show
  1. package/CHANGELOG.md +77 -3
  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 +19 -40
  11. package/dist/schemas/v2/ListReportConfig.json +14 -30
  12. package/dist/schemas/v2/ObjectPageConfig.json +150 -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/v2/controls/{FormAction.d.ts → Action.d.ts} +29 -2
  22. package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
  23. package/dist/src/specification/v2/controls/Action.js.map +1 -0
  24. package/dist/src/specification/v2/controls/Card.d.ts +20 -72
  25. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  26. package/dist/src/specification/v2/controls/FilterBar.d.ts +4 -0
  27. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +2 -2
  28. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.d.ts → ObjectPageFooterAction.d.ts} +4 -3
  29. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.js → ObjectPageFooterAction.js} +1 -1
  30. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +1 -0
  31. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
  32. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
  33. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
  34. package/dist/src/specification/v2/controls/Table.d.ts +5 -9
  35. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  36. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -2
  37. package/dist/src/specification/v2/controls/index.d.ts +8 -9
  38. package/dist/src/specification/v2/controls/index.js +3 -3
  39. package/dist/src/specification/v2/controls/index.js.map +1 -1
  40. package/dist/src/sync/common/generate/index.d.ts +1 -0
  41. package/dist/src/sync/common/generate/index.js +1 -0
  42. package/dist/src/sync/common/generate/index.js.map +1 -1
  43. package/dist/src/sync/common/generate/objectPage.js +29 -24
  44. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  45. package/dist/src/sync/common/generate/utils.d.ts +59 -0
  46. package/dist/src/sync/common/generate/utils.js +192 -0
  47. package/dist/src/sync/common/generate/utils.js.map +1 -0
  48. package/dist/src/sync/common/importProject.js +5 -5
  49. package/dist/src/sync/common/importProject.js.map +1 -1
  50. package/dist/src/sync/common/types.d.ts +3 -2
  51. package/dist/src/sync/common/types.js +1 -0
  52. package/dist/src/sync/common/types.js.map +1 -1
  53. package/dist/src/sync/common/utils.d.ts +3 -23
  54. package/dist/src/sync/common/utils.js +24 -92
  55. package/dist/src/sync/common/utils.js.map +1 -1
  56. package/dist/src/sync/v2/export/controls/Action.d.ts +13 -0
  57. package/dist/src/sync/v2/export/controls/Action.js +74 -0
  58. package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
  59. package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
  60. package/dist/src/sync/v2/export/controls/Card.js +15 -43
  61. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  62. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -0
  63. package/dist/src/sync/v2/export/controls/FilterBar.js +10 -0
  64. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  65. package/dist/src/sync/v2/export/controls/Fragment.js +5 -4
  66. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  67. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +8 -0
  68. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
  69. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
  70. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
  71. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  72. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +3 -1
  73. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +14 -2
  74. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  75. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +8 -0
  76. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +59 -0
  77. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
  78. package/dist/src/sync/v2/export/controls/Table.d.ts +10 -4
  79. package/dist/src/sync/v2/export/controls/Table.js +72 -33
  80. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  81. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
  82. package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
  83. package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
  84. package/dist/src/sync/v2/export/controls/index.d.ts +11 -7
  85. package/dist/src/sync/v2/export/controls/index.js +11 -7
  86. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  87. package/dist/src/sync/v2/export/export.js +15 -9
  88. package/dist/src/sync/v2/export/export.js.map +1 -1
  89. package/dist/src/sync/v2/export/exportPage.js +3 -2
  90. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  91. package/dist/src/sync/v2/generate/analyticalListReport.js +7 -3
  92. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  93. package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
  94. package/dist/src/sync/v2/generate/listReport.js +18 -4
  95. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  96. package/dist/src/sync/v2/generate/objectPage.d.ts +0 -1
  97. package/dist/src/sync/v2/generate/objectPage.js +200 -107
  98. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  99. package/dist/src/sync/v2/generate/utils.d.ts +3 -3
  100. package/dist/src/sync/v2/generate/utils.js +24 -16
  101. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  102. package/dist/src/sync/v2/import/common/index.d.ts +8 -1
  103. package/dist/src/sync/v2/import/common/index.js +107 -43
  104. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  105. package/dist/src/sync/v2/import/pages/listReport.js +31 -0
  106. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  107. package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
  108. package/dist/src/sync/v2/import/pages/objectPage.js +302 -235
  109. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  110. package/dist/src/sync/v2/import/utils.d.ts +1 -1
  111. package/dist/src/sync/v2/import/utils.js +2 -2
  112. package/dist/src/sync/v2/import/utils.js.map +1 -1
  113. package/dist/src/sync/v2/types.d.ts +23 -2
  114. package/dist/src/sync/v2/types.js +7 -0
  115. package/dist/src/sync/v2/types.js.map +1 -1
  116. package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -3
  117. package/dist/src/sync/v4/utils/StableIdHelper.js +9 -11
  118. package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
  119. package/package.json +4 -3
  120. package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
  121. 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",
@@ -222,6 +217,11 @@
222
217
  "QuickVariantSelectionX": {
223
218
  "type": "object",
224
219
  "properties": {
220
+ "enableAutoBinding": {
221
+ "description": "When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property.",
222
+ "type": "boolean",
223
+ "artifactType": "Manifest"
224
+ },
225
225
  "variants": {
226
226
  "description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
227
227
  "type": "object",
@@ -230,11 +230,13 @@
230
230
  "^[0-9]+$": {
231
231
  "$ref": "#/definitions/QuickVariantX"
232
232
  }
233
- }
233
+ },
234
+ "artifactType": "Manifest"
234
235
  },
235
236
  "showCounts": {
236
237
  "description": "To show the number of records available, set showCounts to true.",
237
- "type": "boolean"
238
+ "type": "boolean",
239
+ "artifactType": "Manifest"
238
240
  }
239
241
  },
240
242
  "additionalProperties": false,
@@ -288,16 +290,17 @@
288
290
  "isViewNode": true,
289
291
  "type": "object",
290
292
  "additionalProperties": {
291
- "$ref": "#/definitions/FormAction"
293
+ "$ref": "#/definitions/Action"
292
294
  }
293
295
  },
294
- "FormAction": {
296
+ "Action": {
295
297
  "description": "Action",
296
298
  "isViewNode": true,
297
299
  "type": "object",
298
300
  "properties": {
299
301
  "tooltip": {
300
- "description": "Text for tooltip of button",
302
+ "description": "The text of the button tooltip, preferably as an i18n key.",
303
+ "i18nClassification": "ACT: Text for tooltip of button.",
301
304
  "type": "string",
302
305
  "artifactType": "FlexChange",
303
306
  "controlType": "sap.m.Button"
@@ -319,25 +322,6 @@
319
322
  "description": "Defines the Button type.",
320
323
  "artifactType": "FlexChange",
321
324
  "controlType": "sap.m.Button"
322
- },
323
- "visible": {
324
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
325
- "anyOf": [
326
- {
327
- "enum": [
328
- false,
329
- true,
330
- "{ui>/editable}",
331
- "{= !${ui>/editable}}"
332
- ]
333
- },
334
- {
335
- "type": "string"
336
- }
337
- ],
338
- "description": "Whether the button should be visible on the screen.",
339
- "artifactType": "FlexChange",
340
- "controlType": "sap.m.Button"
341
325
  }
342
326
  },
343
327
  "additionalProperties": false
@@ -423,7 +407,7 @@
423
407
  "type": "string"
424
408
  },
425
409
  "text": {
426
- "description": "The label of the custom column, preferrable as an i18n key.",
410
+ "description": "The label of the custom column, preferably as an i18n key.",
427
411
  "i18nClassification": "COL: Custom column header text",
428
412
  "type": "string"
429
413
  },
@@ -520,11 +504,6 @@
520
504
  "type": "boolean",
521
505
  "artifactType": "Manifest"
522
506
  },
523
- "filterDefaultsFromSelectionVariant": {
524
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
525
- "type": "boolean",
526
- "artifactType": "Manifest"
527
- },
528
507
  "multiSelect": {
529
508
  "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
530
509
  "type": "boolean",
@@ -635,11 +614,6 @@
635
614
  "type": "boolean",
636
615
  "artifactType": "Manifest"
637
616
  },
638
- "filterDefaultsFromSelectionVariant": {
639
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
640
- "type": "boolean",
641
- "artifactType": "Manifest"
642
- },
643
617
  "multiSelect": {
644
618
  "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
645
619
  "type": "boolean",
@@ -720,6 +694,11 @@
720
694
  "type": "boolean",
721
695
  "artifactType": "Manifest"
722
696
  },
697
+ "filterDefaultsFromSelectionVariant": {
698
+ "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
699
+ "type": "boolean",
700
+ "artifactType": "Manifest"
701
+ },
723
702
  "smartVariantManagement": {
724
703
  "description": "Controls whether smart variant management is active. Default is true.",
725
704
  "type": "boolean",
@@ -221,6 +221,11 @@
221
221
  "QuickVariantSelectionX": {
222
222
  "type": "object",
223
223
  "properties": {
224
+ "enableAutoBinding": {
225
+ "description": "When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property.",
226
+ "type": "boolean",
227
+ "artifactType": "Manifest"
228
+ },
224
229
  "variants": {
225
230
  "description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
226
231
  "type": "object",
@@ -229,11 +234,13 @@
229
234
  "^[0-9]+$": {
230
235
  "$ref": "#/definitions/QuickVariantX"
231
236
  }
232
- }
237
+ },
238
+ "artifactType": "Manifest"
233
239
  },
234
240
  "showCounts": {
235
241
  "description": "To show the number of records available, set showCounts to true.",
236
- "type": "boolean"
242
+ "type": "boolean",
243
+ "artifactType": "Manifest"
237
244
  }
238
245
  },
239
246
  "additionalProperties": false,
@@ -287,16 +294,17 @@
287
294
  "isViewNode": true,
288
295
  "type": "object",
289
296
  "additionalProperties": {
290
- "$ref": "#/definitions/FormAction"
297
+ "$ref": "#/definitions/Action"
291
298
  }
292
299
  },
293
- "FormAction": {
300
+ "Action": {
294
301
  "description": "Action",
295
302
  "isViewNode": true,
296
303
  "type": "object",
297
304
  "properties": {
298
305
  "tooltip": {
299
- "description": "Text for tooltip of button",
306
+ "description": "The text of the button tooltip, preferably as an i18n key.",
307
+ "i18nClassification": "ACT: Text for tooltip of button.",
300
308
  "type": "string",
301
309
  "artifactType": "FlexChange",
302
310
  "controlType": "sap.m.Button"
@@ -318,25 +326,6 @@
318
326
  "description": "Defines the Button type.",
319
327
  "artifactType": "FlexChange",
320
328
  "controlType": "sap.m.Button"
321
- },
322
- "visible": {
323
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
324
- "anyOf": [
325
- {
326
- "enum": [
327
- false,
328
- true,
329
- "{ui>/editable}",
330
- "{= !${ui>/editable}}"
331
- ]
332
- },
333
- {
334
- "type": "string"
335
- }
336
- ],
337
- "description": "Whether the button should be visible on the screen.",
338
- "artifactType": "FlexChange",
339
- "controlType": "sap.m.Button"
340
329
  }
341
330
  },
342
331
  "additionalProperties": false
@@ -422,7 +411,7 @@
422
411
  "type": "string"
423
412
  },
424
413
  "text": {
425
- "description": "The label of the custom column, preferrable as an i18n key.",
414
+ "description": "The label of the custom column, preferably as an i18n key.",
426
415
  "i18nClassification": "COL: Custom column header text",
427
416
  "type": "string"
428
417
  },
@@ -603,11 +592,6 @@
603
592
  "type": "string",
604
593
  "artifactType": "Manifest"
605
594
  },
606
- "filterDefaultsFromSelectionVariant": {
607
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
608
- "type": "boolean",
609
- "artifactType": "Manifest"
610
- },
611
595
  "createWithFilters": {
612
596
  "$ref": "#/definitions/CreateWithFilters",
613
597
  "description": "createWithFilters adds a new create action that uses the filter settings as input.",
@@ -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
@@ -554,11 +556,61 @@
554
556
  "isViewNode": true,
555
557
  "type": "object",
556
558
  "additionalProperties": {
557
- "type": "object",
558
- "properties": {},
559
- "additionalProperties": true
559
+ "$ref": "#/definitions/ObjectPageToolBarAction"
560
560
  }
561
561
  },
562
+ "ObjectPageToolBarAction": {
563
+ "description": "ToolBar Action",
564
+ "isViewNode": true,
565
+ "type": "object",
566
+ "properties": {
567
+ "visible": {
568
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
569
+ "anyOf": [
570
+ {
571
+ "enum": [
572
+ false,
573
+ true,
574
+ "{ui>/editable}",
575
+ "{= !${ui>/editable}}"
576
+ ]
577
+ },
578
+ {
579
+ "type": "string"
580
+ }
581
+ ],
582
+ "description": "Whether the button should be visible on the screen.",
583
+ "artifactType": "FlexChange",
584
+ "controlType": "sap.m.Button"
585
+ },
586
+ "tooltip": {
587
+ "description": "The text of the button tooltip, preferably as an i18n key.",
588
+ "i18nClassification": "ACT: Text for tooltip of button.",
589
+ "type": "string",
590
+ "artifactType": "FlexChange",
591
+ "controlType": "sap.m.Button"
592
+ },
593
+ "icon": {
594
+ "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.",
595
+ "type": "string",
596
+ "artifactType": "FlexChange",
597
+ "controlType": "sap.m.Button"
598
+ },
599
+ "activeIcon": {
600
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
601
+ "type": "string",
602
+ "artifactType": "FlexChange",
603
+ "controlType": "sap.m.Button"
604
+ },
605
+ "type": {
606
+ "$ref": "#/definitions/ButtonType",
607
+ "description": "Defines the Button type.",
608
+ "artifactType": "FlexChange",
609
+ "controlType": "sap.m.Button"
610
+ }
611
+ },
612
+ "additionalProperties": false
613
+ },
562
614
  "GenericColumns": {
563
615
  "type": "object",
564
616
  "additionalProperties": {
@@ -626,7 +678,7 @@
626
678
  "type": "string"
627
679
  },
628
680
  "text": {
629
- "description": "The label of the custom column, preferrable as an i18n key.",
681
+ "description": "The label of the custom column, preferably as an i18n key.",
630
682
  "i18nClassification": "COL: Custom column header text",
631
683
  "type": "string"
632
684
  },
@@ -1073,10 +1125,60 @@
1073
1125
  "GenericFooterActions": {
1074
1126
  "type": "object",
1075
1127
  "additionalProperties": {
1076
- "type": "object",
1077
- "properties": {},
1078
- "additionalProperties": true
1128
+ "$ref": "#/definitions/FooterAction"
1079
1129
  }
1130
+ },
1131
+ "FooterAction": {
1132
+ "description": "Footer Action",
1133
+ "isViewNode": true,
1134
+ "type": "object",
1135
+ "properties": {
1136
+ "tooltip": {
1137
+ "description": "The text of the button tooltip, preferably as an i18n key.",
1138
+ "i18nClassification": "ACT: Text for tooltip of button.",
1139
+ "type": "string",
1140
+ "artifactType": "FlexChange",
1141
+ "controlType": "sap.m.Button"
1142
+ },
1143
+ "icon": {
1144
+ "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.",
1145
+ "type": "string",
1146
+ "artifactType": "FlexChange",
1147
+ "controlType": "sap.m.Button"
1148
+ },
1149
+ "activeIcon": {
1150
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
1151
+ "type": "string",
1152
+ "artifactType": "FlexChange",
1153
+ "controlType": "sap.m.Button"
1154
+ },
1155
+ "type": {
1156
+ "$ref": "#/definitions/ButtonType",
1157
+ "description": "Defines the Button type.",
1158
+ "artifactType": "FlexChange",
1159
+ "controlType": "sap.m.Button"
1160
+ },
1161
+ "visible": {
1162
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1163
+ "anyOf": [
1164
+ {
1165
+ "enum": [
1166
+ false,
1167
+ true,
1168
+ "{ui>/editable}",
1169
+ "{= !${ui>/editable}}"
1170
+ ]
1171
+ },
1172
+ {
1173
+ "type": "string"
1174
+ }
1175
+ ],
1176
+ "description": "Whether the button should be visible on the screen.",
1177
+ "artifactType": "FlexChange",
1178
+ "controlType": "sap.m.Button"
1179
+ }
1180
+ },
1181
+ "additionalProperties": false
1080
1182
  }
1081
1183
  },
1082
1184
  "$schema": "http://json-schema.org/draft-07/schema#"