@sap/ux-specification 1.90.17 → 1.90.20
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 +55 -2
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +7 -14
- 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 +175 -15
- package/dist/schemas/v2/ListReportConfig.json +187 -15
- package/dist/schemas/v2/ObjectPageConfig.json +127 -33
- package/dist/schemas/v2/OverviewPageConfig.json +57 -16
- 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/runDocu.js +30 -7
- package/dist/scripts/runDocu.js.map +1 -1
- 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 +70 -22
- package/dist/src/specification/v2/controls/FilterBar.js +24 -0
- package/dist/src/specification/v2/controls/FilterBar.js.map +1 -1
- 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/ObjectPageTable.d.ts +4 -0
- package/dist/src/specification/v2/controls/Table.d.ts +12 -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 +2 -1
- package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +36 -2
- package/dist/src/specification/v2/pages/OverviewPageConfig.js.map +1 -1
- 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 +9 -0
- package/dist/src/sync/common/generate/objectPage.js +89 -43
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +27 -0
- package/dist/src/sync/common/generate/utils.js +118 -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 +15 -4
- 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 +30 -16
- 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 +19 -24
- 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 +18 -6
- package/dist/src/sync/v2/export/controls/FilterBar.js +102 -65
- 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/ObjectPageTable.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +12 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.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/Table.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/Table.js +12 -0
- package/dist/src/sync/v2/export/controls/Table.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 +137 -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 +2 -1
- 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/pages/OverviewPage.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.js +32 -2
- package/dist/src/sync/v2/export/pages/OverviewPage.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 +14 -6
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.js +13 -4
- 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 +22 -11
- package/dist/src/sync/v2/generate/utils.js +282 -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 +237 -27
- 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 +36 -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 +21 -122
- 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 +43 -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/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 +50 -34
- 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 +14 -1
- package/dist/src/sync/v4/utils/utils.js +62 -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 +8 -9
- 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
|
@@ -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"
|
|
@@ -362,13 +362,13 @@
|
|
|
362
362
|
"controlType": "sap.m.Button"
|
|
363
363
|
},
|
|
364
364
|
"icon": {
|
|
365
|
-
"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.",
|
|
365
|
+
"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.",
|
|
366
366
|
"type": "string",
|
|
367
367
|
"artifactType": "FlexChange",
|
|
368
368
|
"controlType": "sap.m.Button"
|
|
369
369
|
},
|
|
370
370
|
"activeIcon": {
|
|
371
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
371
|
+
"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.",
|
|
372
372
|
"type": "string",
|
|
373
373
|
"artifactType": "FlexChange",
|
|
374
374
|
"controlType": "sap.m.Button"
|
|
@@ -505,6 +505,12 @@
|
|
|
505
505
|
"artifactType": "FlexChange",
|
|
506
506
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
507
507
|
},
|
|
508
|
+
"exportType": {
|
|
509
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
510
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
511
|
+
"artifactType": "FlexChange",
|
|
512
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
513
|
+
},
|
|
508
514
|
"createMode": {
|
|
509
515
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
510
516
|
"type": "string",
|
|
@@ -617,6 +623,14 @@
|
|
|
617
623
|
"key"
|
|
618
624
|
]
|
|
619
625
|
},
|
|
626
|
+
"sap.ui.comp.smarttable.ExportType": {
|
|
627
|
+
"description": "Provides the type of services available for export in the `SmartTable` control.",
|
|
628
|
+
"enum": [
|
|
629
|
+
"GW",
|
|
630
|
+
"UI5Client"
|
|
631
|
+
],
|
|
632
|
+
"type": "string"
|
|
633
|
+
},
|
|
620
634
|
"ObjectPageToolBar": {
|
|
621
635
|
"description": "Toolbar",
|
|
622
636
|
"isViewNode": true,
|
|
@@ -671,13 +685,13 @@
|
|
|
671
685
|
"controlType": "sap.m.Button"
|
|
672
686
|
},
|
|
673
687
|
"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.",
|
|
688
|
+
"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.",
|
|
675
689
|
"type": "string",
|
|
676
690
|
"artifactType": "FlexChange",
|
|
677
691
|
"controlType": "sap.m.Button"
|
|
678
692
|
},
|
|
679
693
|
"activeIcon": {
|
|
680
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
694
|
+
"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.",
|
|
681
695
|
"type": "string",
|
|
682
696
|
"artifactType": "FlexChange",
|
|
683
697
|
"controlType": "sap.m.Button"
|
|
@@ -698,6 +712,9 @@
|
|
|
698
712
|
{
|
|
699
713
|
"$ref": "#/definitions/TableColumn"
|
|
700
714
|
},
|
|
715
|
+
{
|
|
716
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
717
|
+
},
|
|
701
718
|
{
|
|
702
719
|
"description": "Custom Columns",
|
|
703
720
|
"isViewNode": true,
|
|
@@ -749,6 +766,59 @@
|
|
|
749
766
|
],
|
|
750
767
|
"type": "string"
|
|
751
768
|
},
|
|
769
|
+
"TableColumnAction": {
|
|
770
|
+
"description": "Column Action",
|
|
771
|
+
"isViewNode": true,
|
|
772
|
+
"type": "object",
|
|
773
|
+
"properties": {
|
|
774
|
+
"tooltip": {
|
|
775
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
776
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
777
|
+
"type": "string",
|
|
778
|
+
"artifactType": "FlexChange",
|
|
779
|
+
"controlType": "sap.m.Button"
|
|
780
|
+
},
|
|
781
|
+
"icon": {
|
|
782
|
+
"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.",
|
|
783
|
+
"type": "string",
|
|
784
|
+
"artifactType": "FlexChange",
|
|
785
|
+
"controlType": "sap.m.Button"
|
|
786
|
+
},
|
|
787
|
+
"activeIcon": {
|
|
788
|
+
"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.",
|
|
789
|
+
"type": "string",
|
|
790
|
+
"artifactType": "FlexChange",
|
|
791
|
+
"controlType": "sap.m.Button"
|
|
792
|
+
},
|
|
793
|
+
"type": {
|
|
794
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
795
|
+
"description": "Defines the Button type.",
|
|
796
|
+
"artifactType": "FlexChange",
|
|
797
|
+
"controlType": "sap.m.Button"
|
|
798
|
+
},
|
|
799
|
+
"width": {
|
|
800
|
+
"description": "The width property defines the width of the column.",
|
|
801
|
+
"type": "string",
|
|
802
|
+
"artifactType": "FlexChange",
|
|
803
|
+
"controlType": "sap.m.Column"
|
|
804
|
+
},
|
|
805
|
+
"hAlign": {
|
|
806
|
+
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
807
|
+
"anyOf": [
|
|
808
|
+
{
|
|
809
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"type": "string"
|
|
813
|
+
}
|
|
814
|
+
],
|
|
815
|
+
"description": "The hAlign property defines the horizontal alignment of the column content.",
|
|
816
|
+
"artifactType": "FlexChange",
|
|
817
|
+
"controlType": "sap.m.Column"
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
"additionalProperties": false
|
|
821
|
+
},
|
|
752
822
|
"TableCustomColumn": {
|
|
753
823
|
"description": "Custom Column",
|
|
754
824
|
"isViewNode": true,
|
|
@@ -893,6 +963,12 @@
|
|
|
893
963
|
"artifactType": "FlexChange",
|
|
894
964
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
895
965
|
},
|
|
966
|
+
"exportType": {
|
|
967
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
968
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
969
|
+
"artifactType": "FlexChange",
|
|
970
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
971
|
+
},
|
|
896
972
|
"createMode": {
|
|
897
973
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
898
974
|
"type": "string",
|
|
@@ -978,6 +1054,12 @@
|
|
|
978
1054
|
"artifactType": "FlexChange",
|
|
979
1055
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
980
1056
|
},
|
|
1057
|
+
"exportType": {
|
|
1058
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1059
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1060
|
+
"artifactType": "FlexChange",
|
|
1061
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1062
|
+
},
|
|
981
1063
|
"createMode": {
|
|
982
1064
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
983
1065
|
"type": "string",
|
|
@@ -1063,6 +1145,12 @@
|
|
|
1063
1145
|
"artifactType": "FlexChange",
|
|
1064
1146
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1065
1147
|
},
|
|
1148
|
+
"exportType": {
|
|
1149
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1150
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1151
|
+
"artifactType": "FlexChange",
|
|
1152
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1153
|
+
},
|
|
1066
1154
|
"createMode": {
|
|
1067
1155
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
1068
1156
|
"type": "string",
|
|
@@ -1148,6 +1236,12 @@
|
|
|
1148
1236
|
"artifactType": "FlexChange",
|
|
1149
1237
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1150
1238
|
},
|
|
1239
|
+
"exportType": {
|
|
1240
|
+
"$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
|
|
1241
|
+
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1242
|
+
"artifactType": "FlexChange",
|
|
1243
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1244
|
+
},
|
|
1151
1245
|
"createMode": {
|
|
1152
1246
|
"description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
|
|
1153
1247
|
"type": "string",
|
|
@@ -1371,28 +1465,47 @@
|
|
|
1371
1465
|
"type"
|
|
1372
1466
|
]
|
|
1373
1467
|
},
|
|
1374
|
-
"ObjectPageFooter<
|
|
1468
|
+
"ObjectPageFooter<ObjectPageFooterActions>": {
|
|
1375
1469
|
"description": "Footer",
|
|
1376
1470
|
"isViewNode": true,
|
|
1377
1471
|
"type": "object",
|
|
1378
1472
|
"properties": {
|
|
1379
1473
|
"actions": {
|
|
1380
|
-
"$ref": "#/definitions/
|
|
1474
|
+
"$ref": "#/definitions/ObjectPageFooterActions"
|
|
1381
1475
|
}
|
|
1382
1476
|
},
|
|
1383
1477
|
"additionalProperties": false
|
|
1384
1478
|
},
|
|
1385
|
-
"
|
|
1479
|
+
"ObjectPageFooterActions": {
|
|
1386
1480
|
"type": "object",
|
|
1387
1481
|
"additionalProperties": {
|
|
1388
|
-
"$ref": "#/definitions/
|
|
1482
|
+
"$ref": "#/definitions/ObjectPageFooterAction"
|
|
1389
1483
|
}
|
|
1390
1484
|
},
|
|
1391
|
-
"
|
|
1485
|
+
"ObjectPageFooterAction": {
|
|
1392
1486
|
"description": "Footer Action",
|
|
1393
1487
|
"isViewNode": true,
|
|
1394
1488
|
"type": "object",
|
|
1395
1489
|
"properties": {
|
|
1490
|
+
"visible": {
|
|
1491
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1492
|
+
"anyOf": [
|
|
1493
|
+
{
|
|
1494
|
+
"enum": [
|
|
1495
|
+
false,
|
|
1496
|
+
true,
|
|
1497
|
+
"{ui>/editable}",
|
|
1498
|
+
"{= !${ui>/editable}}"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"type": "string"
|
|
1503
|
+
}
|
|
1504
|
+
],
|
|
1505
|
+
"description": "Whether the button should be visible on the screen.",
|
|
1506
|
+
"artifactType": "FlexChange",
|
|
1507
|
+
"controlType": "sap.m.Button"
|
|
1508
|
+
},
|
|
1396
1509
|
"tooltip": {
|
|
1397
1510
|
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
1398
1511
|
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
@@ -1401,13 +1514,13 @@
|
|
|
1401
1514
|
"controlType": "sap.m.Button"
|
|
1402
1515
|
},
|
|
1403
1516
|
"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.",
|
|
1517
|
+
"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.",
|
|
1405
1518
|
"type": "string",
|
|
1406
1519
|
"artifactType": "FlexChange",
|
|
1407
1520
|
"controlType": "sap.m.Button"
|
|
1408
1521
|
},
|
|
1409
1522
|
"activeIcon": {
|
|
1410
|
-
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
1523
|
+
"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.",
|
|
1411
1524
|
"type": "string",
|
|
1412
1525
|
"artifactType": "FlexChange",
|
|
1413
1526
|
"controlType": "sap.m.Button"
|
|
@@ -1417,25 +1530,6 @@
|
|
|
1417
1530
|
"description": "Defines the Button type.",
|
|
1418
1531
|
"artifactType": "FlexChange",
|
|
1419
1532
|
"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
1533
|
}
|
|
1440
1534
|
},
|
|
1441
1535
|
"additionalProperties": false
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"type": "object",
|
|
74
74
|
"properties": {
|
|
75
75
|
"dateSettings": {
|
|
76
|
-
"$ref": "#/definitions/
|
|
76
|
+
"$ref": "#/definitions/DateRangeOVP",
|
|
77
77
|
"description": "You can define date ranges, such as lastYear or nextQuarter on the Smart Filter Bar"
|
|
78
78
|
}
|
|
79
79
|
},
|
|
@@ -135,13 +135,19 @@
|
|
|
135
135
|
],
|
|
136
136
|
"type": "string"
|
|
137
137
|
},
|
|
138
|
-
"
|
|
138
|
+
"DateRangeOVP": {
|
|
139
139
|
"type": "object",
|
|
140
140
|
"properties": {
|
|
141
|
+
"fields": {
|
|
142
|
+
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
143
|
+
"type": "object",
|
|
144
|
+
"additionalProperties": {
|
|
145
|
+
"$ref": "#/definitions/SelectedValues"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
141
148
|
"useDateRange": {
|
|
142
149
|
"description": "If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters.",
|
|
143
|
-
"type": "boolean"
|
|
144
|
-
"artifactType": "Manifest"
|
|
150
|
+
"type": "boolean"
|
|
145
151
|
},
|
|
146
152
|
"selectedValues": {
|
|
147
153
|
"description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
|
|
@@ -198,26 +204,17 @@
|
|
|
198
204
|
"YESTERDAY"
|
|
199
205
|
],
|
|
200
206
|
"type": "string"
|
|
201
|
-
}
|
|
202
|
-
"artifactType": "Manifest"
|
|
207
|
+
}
|
|
203
208
|
},
|
|
204
209
|
"exclude": {
|
|
205
210
|
"description": "The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters.",
|
|
206
|
-
"type": "boolean"
|
|
207
|
-
"artifactType": "Manifest"
|
|
208
|
-
},
|
|
209
|
-
"fields": {
|
|
210
|
-
"description": "For a fields' list you can define the set of standard date range values separately.",
|
|
211
|
-
"type": "object",
|
|
212
|
-
"additionalProperties": {
|
|
213
|
-
"$ref": "#/definitions/SelectedValues"
|
|
214
|
-
},
|
|
215
|
-
"artifactType": "Manifest"
|
|
211
|
+
"type": "boolean"
|
|
216
212
|
}
|
|
217
213
|
},
|
|
218
214
|
"additionalProperties": false
|
|
219
215
|
},
|
|
220
216
|
"SelectedValues": {
|
|
217
|
+
"isViewNode": false,
|
|
221
218
|
"type": "object",
|
|
222
219
|
"properties": {
|
|
223
220
|
"selectedValues": {
|
|
@@ -454,10 +451,54 @@
|
|
|
454
451
|
}
|
|
455
452
|
]
|
|
456
453
|
}
|
|
454
|
+
},
|
|
455
|
+
"defaultValue": {
|
|
456
|
+
"$ref": "#/definitions/DefaultDateRange",
|
|
457
|
+
"description": "You can set a default value for semantic date range."
|
|
457
458
|
}
|
|
458
459
|
},
|
|
459
460
|
"additionalProperties": false
|
|
460
461
|
},
|
|
462
|
+
"DefaultDateRange": {
|
|
463
|
+
"type": "object",
|
|
464
|
+
"properties": {
|
|
465
|
+
"operation": {
|
|
466
|
+
"$ref": "#/definitions/DefaultDateRangeValueType",
|
|
467
|
+
"description": "The operation property is the value that will be set for semantic date range.",
|
|
468
|
+
"artifactType": "Manifest"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
"additionalProperties": false,
|
|
472
|
+
"required": [
|
|
473
|
+
"operation"
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
"DefaultDateRangeValueType": {
|
|
477
|
+
"enum": [
|
|
478
|
+
"DATETOYEAR",
|
|
479
|
+
"LAST2WEEKS",
|
|
480
|
+
"LAST3WEEKS",
|
|
481
|
+
"LAST4WEEKS",
|
|
482
|
+
"LAST5WEEKS",
|
|
483
|
+
"LASTMONTH",
|
|
484
|
+
"LASTQUARTER",
|
|
485
|
+
"LASTWEEK",
|
|
486
|
+
"LASTYEAR",
|
|
487
|
+
"QUARTER1",
|
|
488
|
+
"QUARTER2",
|
|
489
|
+
"QUARTER3",
|
|
490
|
+
"QUARTER4",
|
|
491
|
+
"THISMONTH",
|
|
492
|
+
"THISQUARTER",
|
|
493
|
+
"THISWEEK",
|
|
494
|
+
"THISYEAR",
|
|
495
|
+
"TODAY",
|
|
496
|
+
"TOMORROW",
|
|
497
|
+
"YEARTODATE",
|
|
498
|
+
"YESTERDAY"
|
|
499
|
+
],
|
|
500
|
+
"type": "string"
|
|
501
|
+
},
|
|
461
502
|
"CustomCard": {
|
|
462
503
|
"description": "Custom Card",
|
|
463
504
|
"isViewNode": true,
|
|
@@ -285,90 +285,32 @@
|
|
|
285
285
|
"additionalProperties": {
|
|
286
286
|
"anyOf": [
|
|
287
287
|
{
|
|
288
|
-
"
|
|
289
|
-
"isViewNode": true,
|
|
290
|
-
"type": "object",
|
|
291
|
-
"properties": {
|
|
292
|
-
"width": {
|
|
293
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
294
|
-
"type": "string"
|
|
295
|
-
},
|
|
296
|
-
"availability": {
|
|
297
|
-
"$ref": "#/definitions/Availability",
|
|
298
|
-
"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."
|
|
299
|
-
}
|
|
300
|
-
},
|
|
301
|
-
"additionalProperties": false
|
|
288
|
+
"$ref": "#/definitions/TableColumn"
|
|
302
289
|
},
|
|
303
290
|
{
|
|
304
|
-
"
|
|
305
|
-
"isViewNode": true,
|
|
306
|
-
"additionalProperties": false,
|
|
307
|
-
"type": "object",
|
|
308
|
-
"properties": {
|
|
309
|
-
"width": {
|
|
310
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
311
|
-
"type": "string"
|
|
312
|
-
},
|
|
313
|
-
"availability": {
|
|
314
|
-
"$ref": "#/definitions/Availability",
|
|
315
|
-
"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."
|
|
316
|
-
},
|
|
317
|
-
"afterExecution": {
|
|
318
|
-
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
319
|
-
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"description": "Custom Columns",
|
|
325
|
-
"isViewNode": true,
|
|
326
|
-
"type": "array",
|
|
327
|
-
"items": {
|
|
328
|
-
"description": "Custom Column",
|
|
329
|
-
"isViewNode": true,
|
|
330
|
-
"additionalProperties": false,
|
|
331
|
-
"type": "object",
|
|
332
|
-
"properties": {
|
|
333
|
-
"position": {
|
|
334
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
335
|
-
"type": "object",
|
|
336
|
-
"properties": {
|
|
337
|
-
"anchor": {
|
|
338
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
339
|
-
"type": "string"
|
|
340
|
-
},
|
|
341
|
-
"placement": {
|
|
342
|
-
"$ref": "#/definitions/Placement",
|
|
343
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
344
|
-
}
|
|
345
|
-
},
|
|
346
|
-
"additionalProperties": false,
|
|
347
|
-
"required": [
|
|
348
|
-
"placement"
|
|
349
|
-
]
|
|
350
|
-
},
|
|
351
|
-
"header": {
|
|
352
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
353
|
-
"type": "string"
|
|
354
|
-
},
|
|
355
|
-
"width": {
|
|
356
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
357
|
-
"type": "string"
|
|
358
|
-
},
|
|
359
|
-
"template": {
|
|
360
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
361
|
-
"type": "string"
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
|
-
"required": [
|
|
365
|
-
"header"
|
|
366
|
-
]
|
|
367
|
-
}
|
|
291
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
368
292
|
}
|
|
369
293
|
]
|
|
370
294
|
}
|
|
371
295
|
},
|
|
296
|
+
"TableColumn": {
|
|
297
|
+
"description": "Table Column",
|
|
298
|
+
"isViewNode": true,
|
|
299
|
+
"type": "object",
|
|
300
|
+
"properties": {
|
|
301
|
+
"width": {
|
|
302
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
303
|
+
"type": "string",
|
|
304
|
+
"artifactType": "Manifest"
|
|
305
|
+
},
|
|
306
|
+
"availability": {
|
|
307
|
+
"$ref": "#/definitions/Availability",
|
|
308
|
+
"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.",
|
|
309
|
+
"artifactType": "Manifest"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"additionalProperties": false
|
|
313
|
+
},
|
|
372
314
|
"Availability": {
|
|
373
315
|
"enum": [
|
|
374
316
|
"Adaptation",
|
|
@@ -377,6 +319,29 @@
|
|
|
377
319
|
],
|
|
378
320
|
"type": "string"
|
|
379
321
|
},
|
|
322
|
+
"TableColumnAction": {
|
|
323
|
+
"description": "Inline Action",
|
|
324
|
+
"isViewNode": true,
|
|
325
|
+
"type": "object",
|
|
326
|
+
"properties": {
|
|
327
|
+
"afterExecution": {
|
|
328
|
+
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
329
|
+
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
|
|
330
|
+
"artifactType": "Manifest"
|
|
331
|
+
},
|
|
332
|
+
"width": {
|
|
333
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
334
|
+
"type": "string",
|
|
335
|
+
"artifactType": "Manifest"
|
|
336
|
+
},
|
|
337
|
+
"availability": {
|
|
338
|
+
"$ref": "#/definitions/Availability",
|
|
339
|
+
"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.",
|
|
340
|
+
"artifactType": "Manifest"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
"additionalProperties": false
|
|
344
|
+
},
|
|
380
345
|
"ActionAfterExecutionConfiguration": {
|
|
381
346
|
"type": "object",
|
|
382
347
|
"properties": {
|
|
@@ -393,14 +358,6 @@
|
|
|
393
358
|
},
|
|
394
359
|
"additionalProperties": false
|
|
395
360
|
},
|
|
396
|
-
"Placement": {
|
|
397
|
-
"enum": [
|
|
398
|
-
"After",
|
|
399
|
-
"Before",
|
|
400
|
-
"End"
|
|
401
|
-
],
|
|
402
|
-
"type": "string"
|
|
403
|
-
},
|
|
404
361
|
"VariantManagementTypeListReport": {
|
|
405
362
|
"enum": [
|
|
406
363
|
"Control",
|