@sap/ux-specification 1.71.47 → 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.
- package/CHANGELOG.md +38 -7
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +4 -5
- package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
- package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
- package/dist/documentation/v2/v2-ListReport.html +1 -1
- package/dist/documentation/v2/v2-ObjectPage.html +1 -1
- package/dist/documentation/v2/v2-OverviewPage.html +1 -1
- package/dist/index-min.js +1 -1
- package/dist/schemas/v2/AnalyticalListPageConfig.json +10 -38
- package/dist/schemas/v2/ListReportConfig.json +5 -28
- package/dist/schemas/v2/ObjectPageConfig.json +150 -48
- package/dist/schemas/v2/OverviewPageConfig.json +236 -190
- package/dist/scripts/extractDocu.js +18 -8
- package/dist/scripts/extractDocu.js.map +1 -1
- package/dist/scripts/runDocu.js +105 -89
- package/dist/scripts/runDocu.js.map +1 -1
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/src/specification/v2/controls/{FormAction.d.ts → Action.d.ts} +29 -2
- package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
- package/dist/src/specification/v2/controls/Action.js.map +1 -0
- package/dist/src/specification/v2/controls/Card.d.ts +20 -72
- package/dist/src/specification/v2/controls/Card.js.map +1 -1
- package/dist/src/specification/v2/controls/FilterBar.d.ts +4 -0
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +2 -2
- package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.d.ts → ObjectPageFooterAction.d.ts} +4 -3
- package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.js → ObjectPageFooterAction.js} +1 -1
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +1 -0
- package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
- package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
- package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
- package/dist/src/specification/v2/controls/Table.d.ts +1 -9
- package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -2
- package/dist/src/specification/v2/controls/index.d.ts +8 -9
- package/dist/src/specification/v2/controls/index.js +3 -3
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/sync/common/generate/objectPage.js +12 -8
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +1 -1
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Action.d.ts +13 -0
- package/dist/src/sync/v2/export/controls/Action.js +74 -0
- package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
- package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
- package/dist/src/sync/v2/export/controls/Card.js +15 -43
- package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/FilterBar.js +10 -0
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.js +5 -4
- package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +8 -0
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +3 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +13 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +8 -0
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +59 -0
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/Table.d.ts +3 -4
- package/dist/src/sync/v2/export/controls/Table.js +4 -21
- package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
- package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
- package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
- package/dist/src/sync/v2/export/controls/index.d.ts +11 -7
- package/dist/src/sync/v2/export/controls/index.js +11 -7
- package/dist/src/sync/v2/export/controls/index.js.map +1 -1
- package/dist/src/sync/v2/export/export.js +1 -1
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts +0 -1
- package/dist/src/sync/v2/generate/objectPage.js +183 -95
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +3 -3
- package/dist/src/sync/v2/generate/utils.js +22 -14
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.d.ts +8 -1
- package/dist/src/sync/v2/import/common/index.js +107 -43
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.js +31 -0
- package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +300 -233
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/import/utils.d.ts +1 -1
- package/dist/src/sync/v2/import/utils.js +2 -2
- package/dist/src/sync/v2/import/utils.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +21 -2
- package/dist/src/sync/v2/types.js +7 -0
- package/dist/src/sync/v2/types.js.map +1 -1
- package/package.json +3 -3
- package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
- 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",
|
|
@@ -295,16 +290,17 @@
|
|
|
295
290
|
"isViewNode": true,
|
|
296
291
|
"type": "object",
|
|
297
292
|
"additionalProperties": {
|
|
298
|
-
"$ref": "#/definitions/
|
|
293
|
+
"$ref": "#/definitions/Action"
|
|
299
294
|
}
|
|
300
295
|
},
|
|
301
|
-
"
|
|
296
|
+
"Action": {
|
|
302
297
|
"description": "Action",
|
|
303
298
|
"isViewNode": true,
|
|
304
299
|
"type": "object",
|
|
305
300
|
"properties": {
|
|
306
301
|
"tooltip": {
|
|
307
|
-
"description": "
|
|
302
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
303
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
308
304
|
"type": "string",
|
|
309
305
|
"artifactType": "FlexChange",
|
|
310
306
|
"controlType": "sap.m.Button"
|
|
@@ -326,25 +322,6 @@
|
|
|
326
322
|
"description": "Defines the Button type.",
|
|
327
323
|
"artifactType": "FlexChange",
|
|
328
324
|
"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
325
|
}
|
|
349
326
|
},
|
|
350
327
|
"additionalProperties": false
|
|
@@ -430,7 +407,7 @@
|
|
|
430
407
|
"type": "string"
|
|
431
408
|
},
|
|
432
409
|
"text": {
|
|
433
|
-
"description": "The label of the custom column,
|
|
410
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
434
411
|
"i18nClassification": "COL: Custom column header text",
|
|
435
412
|
"type": "string"
|
|
436
413
|
},
|
|
@@ -527,11 +504,6 @@
|
|
|
527
504
|
"type": "boolean",
|
|
528
505
|
"artifactType": "Manifest"
|
|
529
506
|
},
|
|
530
|
-
"filterDefaultsFromSelectionVariant": {
|
|
531
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
532
|
-
"type": "boolean",
|
|
533
|
-
"artifactType": "Manifest"
|
|
534
|
-
},
|
|
535
507
|
"multiSelect": {
|
|
536
508
|
"description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
|
|
537
509
|
"type": "boolean",
|
|
@@ -642,11 +614,6 @@
|
|
|
642
614
|
"type": "boolean",
|
|
643
615
|
"artifactType": "Manifest"
|
|
644
616
|
},
|
|
645
|
-
"filterDefaultsFromSelectionVariant": {
|
|
646
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
647
|
-
"type": "boolean",
|
|
648
|
-
"artifactType": "Manifest"
|
|
649
|
-
},
|
|
650
617
|
"multiSelect": {
|
|
651
618
|
"description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
|
|
652
619
|
"type": "boolean",
|
|
@@ -727,6 +694,11 @@
|
|
|
727
694
|
"type": "boolean",
|
|
728
695
|
"artifactType": "Manifest"
|
|
729
696
|
},
|
|
697
|
+
"filterDefaultsFromSelectionVariant": {
|
|
698
|
+
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
699
|
+
"type": "boolean",
|
|
700
|
+
"artifactType": "Manifest"
|
|
701
|
+
},
|
|
730
702
|
"smartVariantManagement": {
|
|
731
703
|
"description": "Controls whether smart variant management is active. Default is true.",
|
|
732
704
|
"type": "boolean",
|
|
@@ -294,16 +294,17 @@
|
|
|
294
294
|
"isViewNode": true,
|
|
295
295
|
"type": "object",
|
|
296
296
|
"additionalProperties": {
|
|
297
|
-
"$ref": "#/definitions/
|
|
297
|
+
"$ref": "#/definitions/Action"
|
|
298
298
|
}
|
|
299
299
|
},
|
|
300
|
-
"
|
|
300
|
+
"Action": {
|
|
301
301
|
"description": "Action",
|
|
302
302
|
"isViewNode": true,
|
|
303
303
|
"type": "object",
|
|
304
304
|
"properties": {
|
|
305
305
|
"tooltip": {
|
|
306
|
-
"description": "
|
|
306
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
307
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
307
308
|
"type": "string",
|
|
308
309
|
"artifactType": "FlexChange",
|
|
309
310
|
"controlType": "sap.m.Button"
|
|
@@ -325,25 +326,6 @@
|
|
|
325
326
|
"description": "Defines the Button type.",
|
|
326
327
|
"artifactType": "FlexChange",
|
|
327
328
|
"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
329
|
}
|
|
348
330
|
},
|
|
349
331
|
"additionalProperties": false
|
|
@@ -429,7 +411,7 @@
|
|
|
429
411
|
"type": "string"
|
|
430
412
|
},
|
|
431
413
|
"text": {
|
|
432
|
-
"description": "The label of the custom column,
|
|
414
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
433
415
|
"i18nClassification": "COL: Custom column header text",
|
|
434
416
|
"type": "string"
|
|
435
417
|
},
|
|
@@ -610,11 +592,6 @@
|
|
|
610
592
|
"type": "string",
|
|
611
593
|
"artifactType": "Manifest"
|
|
612
594
|
},
|
|
613
|
-
"filterDefaultsFromSelectionVariant": {
|
|
614
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
615
|
-
"type": "boolean",
|
|
616
|
-
"artifactType": "Manifest"
|
|
617
|
-
},
|
|
618
595
|
"createWithFilters": {
|
|
619
596
|
"$ref": "#/definitions/CreateWithFilters",
|
|
620
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": "
|
|
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": "
|
|
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
|
-
"
|
|
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,
|
|
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
|
-
"
|
|
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#"
|