@sap/ux-specification 1.96.0 → 1.96.2
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 +45 -4
- 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/documentation/v4/v4-AnalyticalListPage.html +1 -1
- package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
- package/dist/documentation/v4/v4-ListReport.html +1 -1
- package/dist/documentation/v4/v4-ObjectPage.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 +258 -196
- package/dist/schemas/v4/AnalyticalListPageConfig.json +18 -2
- package/dist/schemas/v4/ListReportConfig.json +18 -2
- package/dist/schemas/v4/ObjectPageConfig.json +0 -20
- 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/apiTypes.d.ts +4 -3
- package/dist/src/apiTypes.js +3 -1
- package/dist/src/apiTypes.js.map +1 -1
- package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.d.ts → Action.d.ts} +30 -3
- 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/{FormAction.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 +2 -2
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +2 -2
- package/dist/src/specification/v4/controls/Table.d.ts +2 -2
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +8 -19
- package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.d.ts +2 -1
- package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.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 +14 -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 +9 -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 +2 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +3 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +9 -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 +12 -8
- package/dist/src/sync/v2/export/controls/index.js +12 -8
- 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 +188 -111
- 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 +303 -238
- 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/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js +5 -1
- package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js +2 -2
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -2
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +3 -10
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/Table.js +1 -1
- package/dist/src/sync/v4/export/controls/TableColumn.d.ts +3 -1
- package/dist/src/sync/v4/export/controls/TableColumn.js +5 -2
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/export.js +3 -0
- package/dist/src/sync/v4/export/export.js.map +1 -1
- package/dist/src/sync/v4/import/pages/listReport.d.ts +1 -3
- package/dist/src/sync/v4/import/pages/listReport.js +27 -17
- package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v4/import/pages/objectPage.js +10 -12
- package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.js +5 -1
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/package.json +6 -8
- 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
|
"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/
|
|
382
|
+
"$ref": "#/definitions/Action"
|
|
388
383
|
}
|
|
389
384
|
},
|
|
390
|
-
"
|
|
385
|
+
"Action": {
|
|
391
386
|
"description": "Action",
|
|
392
387
|
"isViewNode": true,
|
|
393
388
|
"type": "object",
|
|
394
389
|
"properties": {
|
|
395
390
|
"tooltip": {
|
|
396
|
-
"description": "
|
|
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"
|
|
@@ -415,25 +411,6 @@
|
|
|
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
|
|
@@ -526,7 +503,7 @@
|
|
|
526
503
|
"type": "string"
|
|
527
504
|
},
|
|
528
505
|
"text": {
|
|
529
|
-
"description": "The label of the custom column,
|
|
506
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
530
507
|
"i18nClassification": "COL: Custom column header text",
|
|
531
508
|
"type": "string"
|
|
532
509
|
},
|
|
@@ -623,11 +600,6 @@
|
|
|
623
600
|
"type": "boolean",
|
|
624
601
|
"artifactType": "Manifest"
|
|
625
602
|
},
|
|
626
|
-
"filterDefaultsFromSelectionVariant": {
|
|
627
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
628
|
-
"type": "boolean",
|
|
629
|
-
"artifactType": "Manifest"
|
|
630
|
-
},
|
|
631
603
|
"allFiltersAsInParameters": {
|
|
632
604
|
"description": "All filter fields will be set as in parameter",
|
|
633
605
|
"type": "boolean",
|
|
@@ -747,11 +719,6 @@
|
|
|
747
719
|
"type": "boolean",
|
|
748
720
|
"artifactType": "Manifest"
|
|
749
721
|
},
|
|
750
|
-
"filterDefaultsFromSelectionVariant": {
|
|
751
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
752
|
-
"type": "boolean",
|
|
753
|
-
"artifactType": "Manifest"
|
|
754
|
-
},
|
|
755
722
|
"allFiltersAsInParameters": {
|
|
756
723
|
"description": "All filter fields will be set as in parameter",
|
|
757
724
|
"type": "boolean",
|
|
@@ -841,6 +808,11 @@
|
|
|
841
808
|
"type": "boolean",
|
|
842
809
|
"artifactType": "Manifest"
|
|
843
810
|
},
|
|
811
|
+
"filterDefaultsFromSelectionVariant": {
|
|
812
|
+
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
813
|
+
"type": "boolean",
|
|
814
|
+
"artifactType": "Manifest"
|
|
815
|
+
},
|
|
844
816
|
"smartVariantManagement": {
|
|
845
817
|
"description": "Controls whether smart variant management is active. Default is true.",
|
|
846
818
|
"type": "boolean",
|
|
@@ -383,16 +383,17 @@
|
|
|
383
383
|
"isViewNode": true,
|
|
384
384
|
"type": "object",
|
|
385
385
|
"additionalProperties": {
|
|
386
|
-
"$ref": "#/definitions/
|
|
386
|
+
"$ref": "#/definitions/Action"
|
|
387
387
|
}
|
|
388
388
|
},
|
|
389
|
-
"
|
|
389
|
+
"Action": {
|
|
390
390
|
"description": "Action",
|
|
391
391
|
"isViewNode": true,
|
|
392
392
|
"type": "object",
|
|
393
393
|
"properties": {
|
|
394
394
|
"tooltip": {
|
|
395
|
-
"description": "
|
|
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"
|
|
@@ -414,25 +415,6 @@
|
|
|
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
|
|
@@ -525,7 +507,7 @@
|
|
|
525
507
|
"type": "string"
|
|
526
508
|
},
|
|
527
509
|
"text": {
|
|
528
|
-
"description": "The label of the custom column,
|
|
510
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
529
511
|
"i18nClassification": "COL: Custom column header text",
|
|
530
512
|
"type": "string"
|
|
531
513
|
},
|
|
@@ -834,11 +816,6 @@
|
|
|
834
816
|
"type": "string",
|
|
835
817
|
"artifactType": "Manifest"
|
|
836
818
|
},
|
|
837
|
-
"filterDefaultsFromSelectionVariant": {
|
|
838
|
-
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
839
|
-
"type": "boolean",
|
|
840
|
-
"artifactType": "Manifest"
|
|
841
|
-
},
|
|
842
819
|
"allFiltersAsInParameters": {
|
|
843
820
|
"description": "All filter fields will be set as in parameter",
|
|
844
821
|
"type": "boolean",
|
|
@@ -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": "
|
|
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"
|
|
@@ -152,25 +172,6 @@
|
|
|
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
|
|
@@ -330,12 +331,32 @@
|
|
|
330
331
|
}
|
|
331
332
|
},
|
|
332
333
|
"FormAction": {
|
|
333
|
-
"description": "Action",
|
|
334
|
+
"description": "Form Action",
|
|
334
335
|
"isViewNode": true,
|
|
335
336
|
"type": "object",
|
|
336
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
|
+
},
|
|
337
357
|
"tooltip": {
|
|
338
|
-
"description": "
|
|
358
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
359
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
339
360
|
"type": "string",
|
|
340
361
|
"artifactType": "FlexChange",
|
|
341
362
|
"controlType": "sap.m.Button"
|
|
@@ -357,25 +378,6 @@
|
|
|
357
378
|
"description": "Defines the Button type.",
|
|
358
379
|
"artifactType": "FlexChange",
|
|
359
380
|
"controlType": "sap.m.Button"
|
|
360
|
-
},
|
|
361
|
-
"visible": {
|
|
362
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
363
|
-
"anyOf": [
|
|
364
|
-
{
|
|
365
|
-
"enum": [
|
|
366
|
-
false,
|
|
367
|
-
true,
|
|
368
|
-
"{ui>/editable}",
|
|
369
|
-
"{= !${ui>/editable}}"
|
|
370
|
-
]
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
"type": "string"
|
|
374
|
-
}
|
|
375
|
-
],
|
|
376
|
-
"description": "Whether the button should be visible on the screen.",
|
|
377
|
-
"artifactType": "FlexChange",
|
|
378
|
-
"controlType": "sap.m.Button"
|
|
379
381
|
}
|
|
380
382
|
},
|
|
381
383
|
"additionalProperties": false
|
|
@@ -634,11 +636,61 @@
|
|
|
634
636
|
"isViewNode": true,
|
|
635
637
|
"type": "object",
|
|
636
638
|
"additionalProperties": {
|
|
637
|
-
"
|
|
638
|
-
"properties": {},
|
|
639
|
-
"additionalProperties": true
|
|
639
|
+
"$ref": "#/definitions/ObjectPageToolBarAction"
|
|
640
640
|
}
|
|
641
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
|
+
},
|
|
642
694
|
"GenericColumns": {
|
|
643
695
|
"type": "object",
|
|
644
696
|
"additionalProperties": {
|
|
@@ -707,7 +759,7 @@
|
|
|
707
759
|
"type": "string"
|
|
708
760
|
},
|
|
709
761
|
"text": {
|
|
710
|
-
"description": "The label of the custom column,
|
|
762
|
+
"description": "The label of the custom column, preferably as an i18n key.",
|
|
711
763
|
"i18nClassification": "COL: Custom column header text",
|
|
712
764
|
"type": "string"
|
|
713
765
|
},
|
|
@@ -1333,10 +1385,60 @@
|
|
|
1333
1385
|
"GenericFooterActions": {
|
|
1334
1386
|
"type": "object",
|
|
1335
1387
|
"additionalProperties": {
|
|
1336
|
-
"
|
|
1337
|
-
"properties": {},
|
|
1338
|
-
"additionalProperties": true
|
|
1388
|
+
"$ref": "#/definitions/FooterAction"
|
|
1339
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
|
|
1340
1442
|
}
|
|
1341
1443
|
},
|
|
1342
1444
|
"$schema": "http://json-schema.org/draft-07/schema#"
|