@sap/ux-specification 1.84.29 → 1.84.30
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 +15 -2
- 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 +72 -2
- package/dist/schemas/v2/ListReportConfig.json +74 -4
- package/dist/schemas/v2/ObjectPageConfig.json +89 -33
- package/dist/schemas/v4/AnalyticalListPageConfig.json +43 -86
- package/dist/schemas/v4/ListReportConfig.json +43 -86
- package/dist/schemas/v4/ObjectPageConfig.json +64 -71
- package/dist/scripts/to-json-schema.js +31 -37
- package/dist/scripts/to-json-schema.js.map +1 -1
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/api.js +9 -9
- package/dist/src/api.js.map +1 -1
- package/dist/src/apiTypes.d.ts +5 -2
- package/dist/src/specification/schemaAccess.js +1 -3
- package/dist/src/specification/schemaAccess.js.map +1 -1
- package/dist/src/specification/v2/controls/Action.d.ts +19 -2
- package/dist/src/specification/v2/controls/FilterBar.d.ts +2 -2
- package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
- package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
- package/dist/src/specification/v2/controls/Footer.js.map +1 -0
- package/dist/src/specification/v2/controls/Table.d.ts +8 -1
- package/dist/src/specification/v2/controls/Table.js.map +1 -1
- package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
- package/dist/src/specification/v2/controls/index.d.ts +1 -2
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/ListReportConfig.d.ts +3 -2
- package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
- package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
- package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +5 -6
- package/dist/src/specification/v4/controls/Table.d.ts +2 -7
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +59 -10
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +6 -0
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +1 -1
- package/dist/src/sync/common/appProvider.js.map +1 -1
- package/dist/src/sync/common/decoration/control.d.ts +11 -1
- package/dist/src/sync/common/decoration/control.js +29 -3
- package/dist/src/sync/common/decoration/control.js.map +1 -1
- package/dist/src/sync/common/decoration/factory.js +2 -4
- package/dist/src/sync/common/decoration/factory.js.map +1 -1
- package/dist/src/sync/common/generate/objectPage.d.ts +8 -0
- package/dist/src/sync/common/generate/objectPage.js +18 -6
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +1 -0
- package/dist/src/sync/common/generate/utils.js +19 -3
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/common/i18n.json +2 -0
- package/dist/src/sync/common/import/utils.d.ts +8 -1
- package/dist/src/sync/common/import/utils.js +14 -3
- package/dist/src/sync/common/import/utils.js.map +1 -1
- package/dist/src/sync/common/importProject.js +13 -22
- package/dist/src/sync/common/importProject.js.map +1 -1
- package/dist/src/sync/common/types.d.ts +29 -15
- package/dist/src/sync/common/types.js +25 -1
- package/dist/src/sync/common/types.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +4 -3
- package/dist/src/sync/common/utils.js +15 -18
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Action.d.ts +15 -0
- package/dist/src/sync/v2/export/controls/Action.js +68 -15
- package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +3 -3
- package/dist/src/sync/v2/export/controls/FilterBar.js +13 -22
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
- package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.js +239 -164
- package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +9 -9
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +4 -4
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +6 -4
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
- package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v2/export/export.js +134 -111
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/export/manifest.js +2 -5
- package/dist/src/sync/v2/export/manifest.js.map +1 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/export/pages/ListReport.d.ts +3 -2
- package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
- package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
- package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
- package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
- package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +10 -5
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.js +8 -3
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts +1 -5
- package/dist/src/sync/v2/generate/objectPage.js +10 -10
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +15 -11
- package/dist/src/sync/v2/generate/utils.js +239 -110
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.d.ts +22 -4
- package/dist/src/sync/v2/import/common/index.js +238 -28
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/controls/table.js +3 -2
- package/dist/src/sync/v2/import/controls/table.js.map +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +27 -5
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
- package/dist/src/sync/v2/import/pages/listReport.js +14 -124
- package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +182 -107
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/import/utils.d.ts +4 -6
- package/dist/src/sync/v2/import/utils.js +32 -11
- package/dist/src/sync/v2/import/utils.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +8 -1
- package/dist/src/sync/v2/types.js +8 -1
- package/dist/src/sync/v2/types.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -7
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +2 -25
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/TableColumn.d.ts +1 -6
- package/dist/src/sync/v4/export/controls/TableColumn.js +0 -33
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
- package/dist/src/sync/v4/export/controls/ToolBar.js +3 -0
- package/dist/src/sync/v4/export/controls/ToolBar.js.map +1 -1
- package/dist/src/sync/v4/export/export.js +20 -16
- package/dist/src/sync/v4/export/export.js.map +1 -1
- package/dist/src/sync/v4/export/manifest.js.map +1 -1
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ListReport.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
- package/dist/src/sync/v4/export/types.d.ts +3 -0
- package/dist/src/sync/v4/generate/generate.d.ts +4 -2
- package/dist/src/sync/v4/generate/generate.js +15 -6
- package/dist/src/sync/v4/generate/generate.js.map +1 -1
- package/dist/src/sync/v4/generate/listReport.d.ts +7 -6
- package/dist/src/sync/v4/generate/listReport.js +48 -23
- package/dist/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.js +66 -85
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v4/import/pages/listReport.d.ts +3 -3
- package/dist/src/sync/v4/import/pages/listReport.js +34 -23
- package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/objectPage.js +21 -16
- package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/utils.js +6 -5
- package/dist/src/sync/v4/import/utils.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +22 -2
- package/dist/src/sync/v4/utils/utils.js +102 -26
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/test/unit/utils.test.d.ts +1 -1
- package/package.json +7 -8
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
- package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.d.ts +0 -28
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +0 -1
- package/dist/test/test-utils/metadataParser.d.ts +0 -19
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
"chart": {
|
|
27
27
|
"$ref": "#/definitions/ChartSettings"
|
|
28
28
|
},
|
|
29
|
+
"footer": {
|
|
30
|
+
"$ref": "#/definitions/GenericFooter"
|
|
31
|
+
},
|
|
29
32
|
"keyPerformanceIndicators": {
|
|
30
33
|
"description": "Key Performance Indicators",
|
|
31
34
|
"isViewNode": true,
|
|
@@ -404,13 +407,13 @@
|
|
|
404
407
|
"controlType": "sap.m.Button"
|
|
405
408
|
},
|
|
406
409
|
"icon": {
|
|
407
|
-
"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.",
|
|
410
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
408
411
|
"type": "string",
|
|
409
412
|
"artifactType": "FlexChange",
|
|
410
413
|
"controlType": "sap.m.Button"
|
|
411
414
|
},
|
|
412
415
|
"activeIcon": {
|
|
413
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
416
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
414
417
|
"type": "string",
|
|
415
418
|
"artifactType": "FlexChange",
|
|
416
419
|
"controlType": "sap.m.Button"
|
|
@@ -450,6 +453,9 @@
|
|
|
450
453
|
{
|
|
451
454
|
"$ref": "#/definitions/TableColumn"
|
|
452
455
|
},
|
|
456
|
+
{
|
|
457
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
458
|
+
},
|
|
453
459
|
{
|
|
454
460
|
"description": "Custom Columns",
|
|
455
461
|
"isViewNode": true,
|
|
@@ -500,6 +506,59 @@
|
|
|
500
506
|
],
|
|
501
507
|
"type": "string"
|
|
502
508
|
},
|
|
509
|
+
"TableColumnAction": {
|
|
510
|
+
"description": "Column Action",
|
|
511
|
+
"isViewNode": true,
|
|
512
|
+
"type": "object",
|
|
513
|
+
"properties": {
|
|
514
|
+
"tooltip": {
|
|
515
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
516
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
517
|
+
"type": "string",
|
|
518
|
+
"artifactType": "FlexChange",
|
|
519
|
+
"controlType": "sap.m.Button"
|
|
520
|
+
},
|
|
521
|
+
"icon": {
|
|
522
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
523
|
+
"type": "string",
|
|
524
|
+
"artifactType": "FlexChange",
|
|
525
|
+
"controlType": "sap.m.Button"
|
|
526
|
+
},
|
|
527
|
+
"activeIcon": {
|
|
528
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
529
|
+
"type": "string",
|
|
530
|
+
"artifactType": "FlexChange",
|
|
531
|
+
"controlType": "sap.m.Button"
|
|
532
|
+
},
|
|
533
|
+
"type": {
|
|
534
|
+
"$ref": "#/definitions/ButtonType",
|
|
535
|
+
"description": "Defines the Button type.",
|
|
536
|
+
"artifactType": "FlexChange",
|
|
537
|
+
"controlType": "sap.m.Button"
|
|
538
|
+
},
|
|
539
|
+
"width": {
|
|
540
|
+
"description": "The width property defines the width of the column.",
|
|
541
|
+
"type": "string",
|
|
542
|
+
"artifactType": "FlexChange",
|
|
543
|
+
"controlType": "sap.m.Column"
|
|
544
|
+
},
|
|
545
|
+
"hAlign": {
|
|
546
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
547
|
+
"anyOf": [
|
|
548
|
+
{
|
|
549
|
+
"$ref": "#/definitions/HAlign"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"type": "string"
|
|
553
|
+
}
|
|
554
|
+
],
|
|
555
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
556
|
+
"artifactType": "FlexChange",
|
|
557
|
+
"controlType": "sap.m.Column"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"additionalProperties": false
|
|
561
|
+
},
|
|
503
562
|
"TableCustomColumn": {
|
|
504
563
|
"description": "Custom Column",
|
|
505
564
|
"isViewNode": true,
|
|
@@ -1275,6 +1334,17 @@
|
|
|
1275
1334
|
},
|
|
1276
1335
|
"additionalProperties": false
|
|
1277
1336
|
},
|
|
1337
|
+
"GenericFooter": {
|
|
1338
|
+
"description": "Footer",
|
|
1339
|
+
"isViewNode": true,
|
|
1340
|
+
"type": "object",
|
|
1341
|
+
"properties": {
|
|
1342
|
+
"actions": {
|
|
1343
|
+
"$ref": "#/definitions/Actions"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"additionalProperties": false
|
|
1347
|
+
},
|
|
1278
1348
|
"KPISettings": {
|
|
1279
1349
|
"description": "KPI Settings",
|
|
1280
1350
|
"isViewNode": true,
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
]
|
|
28
28
|
},
|
|
29
29
|
"filterBar": {
|
|
30
|
-
"$ref": "#/definitions/
|
|
30
|
+
"$ref": "#/definitions/ListReportFilterBar"
|
|
31
|
+
},
|
|
32
|
+
"footer": {
|
|
33
|
+
"$ref": "#/definitions/GenericFooter"
|
|
31
34
|
},
|
|
32
35
|
"$schema": {
|
|
33
36
|
"type": "string"
|
|
@@ -408,13 +411,13 @@
|
|
|
408
411
|
"controlType": "sap.m.Button"
|
|
409
412
|
},
|
|
410
413
|
"icon": {
|
|
411
|
-
"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.",
|
|
414
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
412
415
|
"type": "string",
|
|
413
416
|
"artifactType": "FlexChange",
|
|
414
417
|
"controlType": "sap.m.Button"
|
|
415
418
|
},
|
|
416
419
|
"activeIcon": {
|
|
417
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
420
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
418
421
|
"type": "string",
|
|
419
422
|
"artifactType": "FlexChange",
|
|
420
423
|
"controlType": "sap.m.Button"
|
|
@@ -454,6 +457,9 @@
|
|
|
454
457
|
{
|
|
455
458
|
"$ref": "#/definitions/TableColumn"
|
|
456
459
|
},
|
|
460
|
+
{
|
|
461
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
462
|
+
},
|
|
457
463
|
{
|
|
458
464
|
"description": "Custom Columns",
|
|
459
465
|
"isViewNode": true,
|
|
@@ -504,6 +510,59 @@
|
|
|
504
510
|
],
|
|
505
511
|
"type": "string"
|
|
506
512
|
},
|
|
513
|
+
"TableColumnAction": {
|
|
514
|
+
"description": "Column Action",
|
|
515
|
+
"isViewNode": true,
|
|
516
|
+
"type": "object",
|
|
517
|
+
"properties": {
|
|
518
|
+
"tooltip": {
|
|
519
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
520
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
521
|
+
"type": "string",
|
|
522
|
+
"artifactType": "FlexChange",
|
|
523
|
+
"controlType": "sap.m.Button"
|
|
524
|
+
},
|
|
525
|
+
"icon": {
|
|
526
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
527
|
+
"type": "string",
|
|
528
|
+
"artifactType": "FlexChange",
|
|
529
|
+
"controlType": "sap.m.Button"
|
|
530
|
+
},
|
|
531
|
+
"activeIcon": {
|
|
532
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
533
|
+
"type": "string",
|
|
534
|
+
"artifactType": "FlexChange",
|
|
535
|
+
"controlType": "sap.m.Button"
|
|
536
|
+
},
|
|
537
|
+
"type": {
|
|
538
|
+
"$ref": "#/definitions/ButtonType",
|
|
539
|
+
"description": "Defines the Button type.",
|
|
540
|
+
"artifactType": "FlexChange",
|
|
541
|
+
"controlType": "sap.m.Button"
|
|
542
|
+
},
|
|
543
|
+
"width": {
|
|
544
|
+
"description": "The width property defines the width of the column.",
|
|
545
|
+
"type": "string",
|
|
546
|
+
"artifactType": "FlexChange",
|
|
547
|
+
"controlType": "sap.m.Column"
|
|
548
|
+
},
|
|
549
|
+
"hAlign": {
|
|
550
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
551
|
+
"anyOf": [
|
|
552
|
+
{
|
|
553
|
+
"$ref": "#/definitions/HAlign"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"type": "string"
|
|
557
|
+
}
|
|
558
|
+
],
|
|
559
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
560
|
+
"artifactType": "FlexChange",
|
|
561
|
+
"controlType": "sap.m.Column"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"additionalProperties": false
|
|
565
|
+
},
|
|
507
566
|
"TableCustomColumn": {
|
|
508
567
|
"description": "Custom Column",
|
|
509
568
|
"isViewNode": true,
|
|
@@ -1049,7 +1108,7 @@
|
|
|
1049
1108
|
},
|
|
1050
1109
|
"additionalProperties": false
|
|
1051
1110
|
},
|
|
1052
|
-
"
|
|
1111
|
+
"ListReportFilterBar": {
|
|
1053
1112
|
"description": "Filter Bar",
|
|
1054
1113
|
"isViewNode": true,
|
|
1055
1114
|
"type": "object",
|
|
@@ -1424,6 +1483,17 @@
|
|
|
1424
1483
|
}
|
|
1425
1484
|
},
|
|
1426
1485
|
"additionalProperties": false
|
|
1486
|
+
},
|
|
1487
|
+
"GenericFooter": {
|
|
1488
|
+
"description": "Footer",
|
|
1489
|
+
"isViewNode": true,
|
|
1490
|
+
"type": "object",
|
|
1491
|
+
"properties": {
|
|
1492
|
+
"actions": {
|
|
1493
|
+
"$ref": "#/definitions/Actions"
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"additionalProperties": false
|
|
1427
1497
|
}
|
|
1428
1498
|
},
|
|
1429
1499
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
]
|
|
52
52
|
},
|
|
53
53
|
"footer": {
|
|
54
|
-
"$ref": "#/definitions/ObjectPageFooter<
|
|
54
|
+
"$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
|
|
55
55
|
},
|
|
56
56
|
"$schema": {
|
|
57
57
|
"type": "string"
|
|
@@ -156,13 +156,13 @@
|
|
|
156
156
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
157
157
|
},
|
|
158
158
|
"icon": {
|
|
159
|
-
"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.",
|
|
159
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
160
160
|
"type": "string",
|
|
161
161
|
"artifactType": "FlexChange",
|
|
162
162
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
163
163
|
},
|
|
164
164
|
"activeIcon": {
|
|
165
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
165
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
166
166
|
"type": "string",
|
|
167
167
|
"artifactType": "FlexChange",
|
|
168
168
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
@@ -361,13 +361,13 @@
|
|
|
361
361
|
"controlType": "sap.m.Button"
|
|
362
362
|
},
|
|
363
363
|
"icon": {
|
|
364
|
-
"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.",
|
|
364
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
365
365
|
"type": "string",
|
|
366
366
|
"artifactType": "FlexChange",
|
|
367
367
|
"controlType": "sap.m.Button"
|
|
368
368
|
},
|
|
369
369
|
"activeIcon": {
|
|
370
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
370
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
371
371
|
"type": "string",
|
|
372
372
|
"artifactType": "FlexChange",
|
|
373
373
|
"controlType": "sap.m.Button"
|
|
@@ -679,13 +679,13 @@
|
|
|
679
679
|
"controlType": "sap.m.Button"
|
|
680
680
|
},
|
|
681
681
|
"icon": {
|
|
682
|
-
"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.",
|
|
682
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
683
683
|
"type": "string",
|
|
684
684
|
"artifactType": "FlexChange",
|
|
685
685
|
"controlType": "sap.m.Button"
|
|
686
686
|
},
|
|
687
687
|
"activeIcon": {
|
|
688
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
688
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
689
689
|
"type": "string",
|
|
690
690
|
"artifactType": "FlexChange",
|
|
691
691
|
"controlType": "sap.m.Button"
|
|
@@ -706,6 +706,9 @@
|
|
|
706
706
|
{
|
|
707
707
|
"$ref": "#/definitions/TableColumn"
|
|
708
708
|
},
|
|
709
|
+
{
|
|
710
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
711
|
+
},
|
|
709
712
|
{
|
|
710
713
|
"description": "Custom Columns",
|
|
711
714
|
"isViewNode": true,
|
|
@@ -756,6 +759,59 @@
|
|
|
756
759
|
],
|
|
757
760
|
"type": "string"
|
|
758
761
|
},
|
|
762
|
+
"TableColumnAction": {
|
|
763
|
+
"description": "Column Action",
|
|
764
|
+
"isViewNode": true,
|
|
765
|
+
"type": "object",
|
|
766
|
+
"properties": {
|
|
767
|
+
"tooltip": {
|
|
768
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
769
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
770
|
+
"type": "string",
|
|
771
|
+
"artifactType": "FlexChange",
|
|
772
|
+
"controlType": "sap.m.Button"
|
|
773
|
+
},
|
|
774
|
+
"icon": {
|
|
775
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
776
|
+
"type": "string",
|
|
777
|
+
"artifactType": "FlexChange",
|
|
778
|
+
"controlType": "sap.m.Button"
|
|
779
|
+
},
|
|
780
|
+
"activeIcon": {
|
|
781
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
782
|
+
"type": "string",
|
|
783
|
+
"artifactType": "FlexChange",
|
|
784
|
+
"controlType": "sap.m.Button"
|
|
785
|
+
},
|
|
786
|
+
"type": {
|
|
787
|
+
"$ref": "#/definitions/ButtonType",
|
|
788
|
+
"description": "Defines the Button type.",
|
|
789
|
+
"artifactType": "FlexChange",
|
|
790
|
+
"controlType": "sap.m.Button"
|
|
791
|
+
},
|
|
792
|
+
"width": {
|
|
793
|
+
"description": "The width property defines the width of the column.",
|
|
794
|
+
"type": "string",
|
|
795
|
+
"artifactType": "FlexChange",
|
|
796
|
+
"controlType": "sap.m.Column"
|
|
797
|
+
},
|
|
798
|
+
"hAlign": {
|
|
799
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
800
|
+
"anyOf": [
|
|
801
|
+
{
|
|
802
|
+
"$ref": "#/definitions/HAlign"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"type": "string"
|
|
806
|
+
}
|
|
807
|
+
],
|
|
808
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
809
|
+
"artifactType": "FlexChange",
|
|
810
|
+
"controlType": "sap.m.Column"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"additionalProperties": false
|
|
814
|
+
},
|
|
759
815
|
"TableCustomColumn": {
|
|
760
816
|
"description": "Custom Column",
|
|
761
817
|
"isViewNode": true,
|
|
@@ -1402,28 +1458,47 @@
|
|
|
1402
1458
|
"type"
|
|
1403
1459
|
]
|
|
1404
1460
|
},
|
|
1405
|
-
"ObjectPageFooter<
|
|
1461
|
+
"ObjectPageFooter<ObjectPageFooterActions>": {
|
|
1406
1462
|
"description": "Footer",
|
|
1407
1463
|
"isViewNode": true,
|
|
1408
1464
|
"type": "object",
|
|
1409
1465
|
"properties": {
|
|
1410
1466
|
"actions": {
|
|
1411
|
-
"$ref": "#/definitions/
|
|
1467
|
+
"$ref": "#/definitions/ObjectPageFooterActions"
|
|
1412
1468
|
}
|
|
1413
1469
|
},
|
|
1414
1470
|
"additionalProperties": false
|
|
1415
1471
|
},
|
|
1416
|
-
"
|
|
1472
|
+
"ObjectPageFooterActions": {
|
|
1417
1473
|
"type": "object",
|
|
1418
1474
|
"additionalProperties": {
|
|
1419
|
-
"$ref": "#/definitions/
|
|
1475
|
+
"$ref": "#/definitions/ObjectPageFooterAction"
|
|
1420
1476
|
}
|
|
1421
1477
|
},
|
|
1422
|
-
"
|
|
1478
|
+
"ObjectPageFooterAction": {
|
|
1423
1479
|
"description": "Footer Action",
|
|
1424
1480
|
"isViewNode": true,
|
|
1425
1481
|
"type": "object",
|
|
1426
1482
|
"properties": {
|
|
1483
|
+
"visible": {
|
|
1484
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1485
|
+
"anyOf": [
|
|
1486
|
+
{
|
|
1487
|
+
"enum": [
|
|
1488
|
+
false,
|
|
1489
|
+
true,
|
|
1490
|
+
"{ui>/editable}",
|
|
1491
|
+
"{= !${ui>/editable}}"
|
|
1492
|
+
]
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"type": "string"
|
|
1496
|
+
}
|
|
1497
|
+
],
|
|
1498
|
+
"description": "Whether the button should be visible on the screen.",
|
|
1499
|
+
"artifactType": "FlexChange",
|
|
1500
|
+
"controlType": "sap.m.Button"
|
|
1501
|
+
},
|
|
1427
1502
|
"tooltip": {
|
|
1428
1503
|
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
1429
1504
|
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
@@ -1432,13 +1507,13 @@
|
|
|
1432
1507
|
"controlType": "sap.m.Button"
|
|
1433
1508
|
},
|
|
1434
1509
|
"icon": {
|
|
1435
|
-
"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.",
|
|
1510
|
+
"description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
1436
1511
|
"type": "string",
|
|
1437
1512
|
"artifactType": "FlexChange",
|
|
1438
1513
|
"controlType": "sap.m.Button"
|
|
1439
1514
|
},
|
|
1440
1515
|
"activeIcon": {
|
|
1441
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
1516
|
+
"description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
1442
1517
|
"type": "string",
|
|
1443
1518
|
"artifactType": "FlexChange",
|
|
1444
1519
|
"controlType": "sap.m.Button"
|
|
@@ -1448,25 +1523,6 @@
|
|
|
1448
1523
|
"description": "Defines the Button type.",
|
|
1449
1524
|
"artifactType": "FlexChange",
|
|
1450
1525
|
"controlType": "sap.m.Button"
|
|
1451
|
-
},
|
|
1452
|
-
"visible": {
|
|
1453
|
-
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1454
|
-
"anyOf": [
|
|
1455
|
-
{
|
|
1456
|
-
"enum": [
|
|
1457
|
-
false,
|
|
1458
|
-
true,
|
|
1459
|
-
"{ui>/editable}",
|
|
1460
|
-
"{= !${ui>/editable}}"
|
|
1461
|
-
]
|
|
1462
|
-
},
|
|
1463
|
-
{
|
|
1464
|
-
"type": "string"
|
|
1465
|
-
}
|
|
1466
|
-
],
|
|
1467
|
-
"description": "Whether the button should be visible on the screen.",
|
|
1468
|
-
"artifactType": "FlexChange",
|
|
1469
|
-
"controlType": "sap.m.Button"
|
|
1470
1526
|
}
|
|
1471
1527
|
},
|
|
1472
1528
|
"additionalProperties": false
|
|
@@ -255,90 +255,32 @@
|
|
|
255
255
|
"additionalProperties": {
|
|
256
256
|
"anyOf": [
|
|
257
257
|
{
|
|
258
|
-
"
|
|
259
|
-
"isViewNode": true,
|
|
260
|
-
"type": "object",
|
|
261
|
-
"properties": {
|
|
262
|
-
"width": {
|
|
263
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
264
|
-
"type": "string"
|
|
265
|
-
},
|
|
266
|
-
"availability": {
|
|
267
|
-
"$ref": "#/definitions/Availability",
|
|
268
|
-
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
|
|
269
|
-
}
|
|
270
|
-
},
|
|
271
|
-
"additionalProperties": false
|
|
258
|
+
"$ref": "#/definitions/TableColumn"
|
|
272
259
|
},
|
|
273
260
|
{
|
|
274
|
-
"
|
|
275
|
-
"isViewNode": true,
|
|
276
|
-
"additionalProperties": false,
|
|
277
|
-
"type": "object",
|
|
278
|
-
"properties": {
|
|
279
|
-
"width": {
|
|
280
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
281
|
-
"type": "string"
|
|
282
|
-
},
|
|
283
|
-
"availability": {
|
|
284
|
-
"$ref": "#/definitions/Availability",
|
|
285
|
-
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
|
|
286
|
-
},
|
|
287
|
-
"afterExecution": {
|
|
288
|
-
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
289
|
-
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"description": "Custom Columns",
|
|
295
|
-
"isViewNode": true,
|
|
296
|
-
"type": "array",
|
|
297
|
-
"items": {
|
|
298
|
-
"description": "Custom Column",
|
|
299
|
-
"isViewNode": true,
|
|
300
|
-
"additionalProperties": false,
|
|
301
|
-
"type": "object",
|
|
302
|
-
"properties": {
|
|
303
|
-
"position": {
|
|
304
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
305
|
-
"type": "object",
|
|
306
|
-
"properties": {
|
|
307
|
-
"anchor": {
|
|
308
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
309
|
-
"type": "string"
|
|
310
|
-
},
|
|
311
|
-
"placement": {
|
|
312
|
-
"$ref": "#/definitions/Placement",
|
|
313
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
314
|
-
}
|
|
315
|
-
},
|
|
316
|
-
"additionalProperties": false,
|
|
317
|
-
"required": [
|
|
318
|
-
"placement"
|
|
319
|
-
]
|
|
320
|
-
},
|
|
321
|
-
"header": {
|
|
322
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
323
|
-
"type": "string"
|
|
324
|
-
},
|
|
325
|
-
"width": {
|
|
326
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
327
|
-
"type": "string"
|
|
328
|
-
},
|
|
329
|
-
"template": {
|
|
330
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
331
|
-
"type": "string"
|
|
332
|
-
}
|
|
333
|
-
},
|
|
334
|
-
"required": [
|
|
335
|
-
"header"
|
|
336
|
-
]
|
|
337
|
-
}
|
|
261
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
338
262
|
}
|
|
339
263
|
]
|
|
340
264
|
}
|
|
341
265
|
},
|
|
266
|
+
"TableColumn": {
|
|
267
|
+
"description": "Table Column",
|
|
268
|
+
"isViewNode": true,
|
|
269
|
+
"type": "object",
|
|
270
|
+
"properties": {
|
|
271
|
+
"width": {
|
|
272
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
273
|
+
"type": "string",
|
|
274
|
+
"artifactType": "Manifest"
|
|
275
|
+
},
|
|
276
|
+
"availability": {
|
|
277
|
+
"$ref": "#/definitions/Availability",
|
|
278
|
+
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
|
|
279
|
+
"artifactType": "Manifest"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"additionalProperties": false
|
|
283
|
+
},
|
|
342
284
|
"Availability": {
|
|
343
285
|
"enum": [
|
|
344
286
|
"Adaptation",
|
|
@@ -347,6 +289,29 @@
|
|
|
347
289
|
],
|
|
348
290
|
"type": "string"
|
|
349
291
|
},
|
|
292
|
+
"TableColumnAction": {
|
|
293
|
+
"description": "Inline Action",
|
|
294
|
+
"isViewNode": true,
|
|
295
|
+
"type": "object",
|
|
296
|
+
"properties": {
|
|
297
|
+
"afterExecution": {
|
|
298
|
+
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
299
|
+
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
|
|
300
|
+
"artifactType": "Manifest"
|
|
301
|
+
},
|
|
302
|
+
"width": {
|
|
303
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
304
|
+
"type": "string",
|
|
305
|
+
"artifactType": "Manifest"
|
|
306
|
+
},
|
|
307
|
+
"availability": {
|
|
308
|
+
"$ref": "#/definitions/Availability",
|
|
309
|
+
"description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
|
|
310
|
+
"artifactType": "Manifest"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"additionalProperties": false
|
|
314
|
+
},
|
|
350
315
|
"ActionAfterExecutionConfiguration": {
|
|
351
316
|
"type": "object",
|
|
352
317
|
"properties": {
|
|
@@ -363,14 +328,6 @@
|
|
|
363
328
|
},
|
|
364
329
|
"additionalProperties": false
|
|
365
330
|
},
|
|
366
|
-
"Placement": {
|
|
367
|
-
"enum": [
|
|
368
|
-
"After",
|
|
369
|
-
"Before",
|
|
370
|
-
"End"
|
|
371
|
-
],
|
|
372
|
-
"type": "string"
|
|
373
|
-
},
|
|
374
331
|
"VariantManagementTypeListReport": {
|
|
375
332
|
"enum": [
|
|
376
333
|
"Control",
|