@sap/ux-specification 1.144.1 → 1.144.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 +41 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ListReportNew.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +317 -312
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +208 -7
- package/dist/schemas/v4/ApplicationV4.json +14 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +286 -41
- package/dist/schemas/v4/ObjectPageConfig.json +112 -728
- package/dist/specification/package.json +8 -8
- package/dist/specification/scripts/generate-validity-report.js +1 -1
- package/dist/specification/scripts/generate-validity-report.js.map +1 -1
- package/dist/specification/scripts/macros/corrections.d.ts.map +1 -1
- package/dist/specification/scripts/macros/corrections.js +15 -0
- package/dist/specification/scripts/macros/corrections.js.map +1 -1
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +23 -10
- package/dist/specification/scripts/macros/schema.js.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +39 -3
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/ftfs/ftfs.d.ts +8 -0
- package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
- package/dist/specification/src/ftfs/ftfs.js +1 -0
- package/dist/specification/src/ftfs/ftfs.js.map +1 -1
- package/dist/specification/src/ftfs/index.d.ts +1 -1
- package/dist/specification/src/ftfs/index.d.ts.map +1 -1
- package/dist/specification/src/ftfs/index.js +2 -1
- package/dist/specification/src/ftfs/index.js.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js +3 -1
- package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts +91 -0
- package/dist/specification/src/sync/common/decoration/Decorator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js +139 -0
- package/dist/specification/src/sync/common/decoration/Decorator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts +95 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js +210 -0
- package/dist/specification/src/sync/common/decoration/condition-evaluator.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts +58 -22
- package/dist/specification/src/sync/common/decoration/decorator-paths.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js +23 -1
- package/dist/specification/src/sync/common/decoration/decorator-paths.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.d.ts +0 -8
- package/dist/specification/src/sync/common/decoration/decorators.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/decorators.js +0 -15
- package/dist/specification/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.d.ts +4 -0
- package/dist/specification/src/sync/common/decoration/index.d.ts.map +1 -1
- package/dist/specification/src/sync/common/decoration/index.js +4 -0
- package/dist/specification/src/sync/common/decoration/index.js.map +1 -1
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts +38 -0
- package/dist/specification/src/sync/common/decoration/interfaces.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js +3 -0
- package/dist/specification/src/sync/common/decoration/interfaces.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js +50 -0
- package/dist/specification/src/sync/common/decoration/steps/Enums.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js +46 -0
- package/dist/specification/src/sync/common/decoration/steps/Hide.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts +26 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js +77 -0
- package/dist/specification/src/sync/common/decoration/steps/Message.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js +43 -0
- package/dist/specification/src/sync/common/decoration/steps/Readonly.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts +18 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js +68 -0
- package/dist/specification/src/sync/common/decoration/steps/Validity.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts +19 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js +48 -0
- package/dist/specification/src/sync/common/decoration/steps/enum-utils.js.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts +6 -0
- package/dist/specification/src/sync/common/decoration/steps/index.d.ts.map +1 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js +14 -0
- package/dist/specification/src/sync/common/decoration/steps/index.js.map +1 -0
- package/dist/specification/src/sync/common/i18n.json +25 -1
- package/dist/specification/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/specification/src/sync/common/importProject.js +2 -0
- package/dist/specification/src/sync/common/importProject.js.map +1 -1
- package/dist/specification/src/sync/common/rules.d.ts +1 -1
- package/dist/specification/src/sync/common/rules.js +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts +4 -5
- package/dist/specification/src/sync/v2/export/controls/Fragment.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/controls/Fragment.js +29 -20
- package/dist/specification/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/specification/src/sync/v2/export/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/export.js +3 -2
- package/dist/specification/src/sync/v2/export/export.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPage.js +48 -19
- package/dist/specification/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts +2 -0
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js +17 -6
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts +54 -6
- package/dist/specification/src/sync/v2/export/view-controller-generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/view-controller-generator.js +106 -12
- package/dist/specification/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts +2 -0
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +3 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/utils.d.ts +16 -1
- package/dist/specification/src/sync/v2/generate/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/utils.js +30 -18
- package/dist/specification/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js +4 -4
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts +12 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js +167 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiEdit.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +3 -3
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +60 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +626 -11
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js +30 -6
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js.map +1 -1
- package/dist/specification/src/sync/v2/types.d.ts +2 -0
- package/dist/specification/src/sync/v2/types.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/types.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +25 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +28 -4
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/application.d.ts +1 -0
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +10 -0
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts +3 -5
- package/dist/specification/src/sync/v4/export/controls/Header.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Header.js +2 -7
- package/dist/specification/src/sync/v4/export/controls/Header.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts +9 -3
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js +10 -6
- package/dist/specification/src/sync/v4/export/controls/HeaderAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +11 -51
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +95 -246
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +6 -27
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +11 -38
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts +1 -2
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js +1 -2
- package/dist/specification/src/sync/v4/export/controls/ToolBarAction.js.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/factory.js +2 -4
- package/dist/specification/src/sync/v4/export/factory.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +1 -0
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +212 -46
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/app.d.ts +11 -0
- package/dist/specification/src/sync/v4/generate/app.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/app.js +31 -0
- package/dist/specification/src/sync/v4/generate/app.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts +13 -0
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js +74 -2
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js +4 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/extensions.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js +29 -27
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/generator.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js +12 -3
- package/dist/specification/src/sync/v4/generate/fpm-custom-page/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts +32 -13
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js +103 -78
- package/dist/specification/src/sync/v4/generate/list-report/ListReportUtils.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts +7 -4
- package/dist/specification/src/sync/v4/generate/list-report/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js +34 -19
- package/dist/specification/src/sync/v4/generate/list-report/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts +1 -2
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +136 -95
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js +20 -0
- package/dist/specification/src/sync/v4/import/pages/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/objectPage.js +11 -50
- package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/App.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js +2 -1
- package/dist/specification/src/sync/v4/sync-rules/App.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts +2 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js +3 -1
- package/dist/specification/src/sync/v4/sync-rules/AppSchema.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts +1 -294
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js +0 -753
- package/dist/specification/src/sync/v4/sync-rules/DecoratorClass.js.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts +2 -4
- package/dist/specification/src/sync/v4/sync-rules/Page.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/sync-rules/Page.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js +10 -4
- package/dist/specification/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.d.ts +19 -0
- package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.js +34 -0
- package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts +22 -2
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +238 -41
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/specification/test/test-utils/utils.d.ts +1 -0
- package/dist/specification/test/test-utils/utils.d.ts.map +1 -1
- package/dist/specification/test/test-utils/utils.js +11 -0
- package/dist/specification/test/test-utils/utils.js.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts +2 -2
- package/dist/specification/test/unit/decorators/validity-test-utils.d.ts.map +1 -1
- package/dist/specification/test/unit/decorators/validity-test-utils.js +6 -6
- package/dist/specification/test/unit/decorators/validity-test-utils.js.map +1 -1
- package/dist/templates/AnalyticalTableColumnsExtension.xml +3 -3
- package/dist/templates/GridTableColumnsExtension.xml +3 -3
- package/dist/templates/ResponsiveTableColumnsExtension.xml +2 -2
- package/dist/templates/TreeTableColumnsExtension.xml +4 -4
- package/dist/templates/fragment.xml +3 -3
- package/dist/templates/view.xml +3 -3
- package/dist/types/src/apiTypes.d.ts +15 -5
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js +1 -0
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/types.d.ts +11 -6
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +12 -7
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/v4/application.d.ts +15 -0
- package/dist/types/src/v4/application.d.ts.map +1 -1
- package/dist/types/src/v4/application.js +10 -0
- package/dist/types/src/v4/application.js.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts +86 -252
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.js.map +1 -1
- package/package.json +8 -8
|
@@ -784,34 +784,42 @@
|
|
|
784
784
|
"type": "object",
|
|
785
785
|
"properties": {
|
|
786
786
|
"table": {
|
|
787
|
-
"
|
|
788
|
-
{
|
|
789
|
-
"$ref": "#/definitions/ObjectPageAnalyticalTableV4"
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
"$ref": "#/definitions/ObjectPageGridTableV4"
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"$ref": "#/definitions/ObjectPageResponsiveTableV4"
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
"$ref": "#/definitions/ObjectPageTreeTableV4"
|
|
799
|
-
}
|
|
800
|
-
]
|
|
787
|
+
"$ref": "#/definitions/ObjectPageTable"
|
|
801
788
|
}
|
|
802
789
|
},
|
|
803
790
|
"additionalProperties": false
|
|
804
791
|
},
|
|
805
|
-
"
|
|
792
|
+
"ObjectPageTable": {
|
|
806
793
|
"description": "Table",
|
|
807
794
|
"isViewNode": true,
|
|
808
|
-
"controlProperty": "type",
|
|
809
795
|
"type": "object",
|
|
810
796
|
"properties": {
|
|
811
797
|
"type": {
|
|
798
|
+
"$ref": "#/definitions/TableTypeV4",
|
|
812
799
|
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
800
|
+
"artifactType": "Manifest"
|
|
801
|
+
},
|
|
802
|
+
"rowCountMode": {
|
|
803
|
+
"$ref": "#/definitions/RowCountMode",
|
|
804
|
+
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.\n - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
805
|
+
"artifactType": "Manifest",
|
|
806
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode"
|
|
807
|
+
},
|
|
808
|
+
"rowCount": {
|
|
809
|
+
"description": "Number of rows to be displayed in the table.",
|
|
810
|
+
"minimum": 0,
|
|
811
|
+
"type": "number",
|
|
812
|
+
"artifactType": "Manifest"
|
|
813
|
+
},
|
|
814
|
+
"popinLayout": {
|
|
815
|
+
"description": "Defines the layout options of the table popins. A popin layout defined at the table level takes precedence over a popin layout defined at the application level.",
|
|
816
|
+
"descriptionSrcURL": "https://help.sap.com/docs/SAPUI5/b1cda5dc7a7644eb886bc6ac04c0b438/7f844f1021cd4791b8f7408eac7c1cec.html",
|
|
817
|
+
"enum": [
|
|
818
|
+
"Block",
|
|
819
|
+
"GridLarge",
|
|
820
|
+
"GridSmall"
|
|
821
|
+
],
|
|
813
822
|
"type": "string",
|
|
814
|
-
"const": "AnalyticalTable",
|
|
815
823
|
"artifactType": "Manifest"
|
|
816
824
|
},
|
|
817
825
|
"analyticalConfiguration": {
|
|
@@ -832,6 +840,12 @@
|
|
|
832
840
|
"$ref": "#/definitions/ObjectPageToolBar",
|
|
833
841
|
"description": "Tool Bar"
|
|
834
842
|
},
|
|
843
|
+
"creationMode": {
|
|
844
|
+
"$ref": "#/definitions/TableCreationModeOP",
|
|
845
|
+
"description": "Defines the page behavior when a new record is created.\nNote: Not available for AnalyticalTable.",
|
|
846
|
+
"artifactType": "Manifest",
|
|
847
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.fe.macros.Table%23controlProperties"
|
|
848
|
+
},
|
|
835
849
|
"personalization": {
|
|
836
850
|
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
837
851
|
"anyOf": [
|
|
@@ -933,21 +947,29 @@
|
|
|
933
947
|
"type": "boolean",
|
|
934
948
|
"artifactType": "Manifest",
|
|
935
949
|
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
936
|
-
},
|
|
937
|
-
"rowCountMode": {
|
|
938
|
-
"$ref": "#/definitions/RowCountMode",
|
|
939
|
-
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.\n - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
940
|
-
"artifactType": "Manifest"
|
|
941
|
-
},
|
|
942
|
-
"rowCount": {
|
|
943
|
-
"description": "Number of rows to be displayed in the table.",
|
|
944
|
-
"minimum": 0,
|
|
945
|
-
"type": "number",
|
|
946
|
-
"artifactType": "Manifest"
|
|
947
950
|
}
|
|
948
951
|
},
|
|
949
952
|
"additionalProperties": false
|
|
950
953
|
},
|
|
954
|
+
"TableTypeV4": {
|
|
955
|
+
"enum": [
|
|
956
|
+
"AnalyticalTable",
|
|
957
|
+
"GridTable",
|
|
958
|
+
"ResponsiveTable",
|
|
959
|
+
"TreeTable"
|
|
960
|
+
],
|
|
961
|
+
"type": "string"
|
|
962
|
+
},
|
|
963
|
+
"RowCountMode": {
|
|
964
|
+
"artifactType": "Manifest",
|
|
965
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode",
|
|
966
|
+
"enum": [
|
|
967
|
+
"Auto",
|
|
968
|
+
"Fixed",
|
|
969
|
+
"Interactive"
|
|
970
|
+
],
|
|
971
|
+
"type": "string"
|
|
972
|
+
},
|
|
951
973
|
"ObjectPageAnalyticalConfiguration": {
|
|
952
974
|
"type": "object",
|
|
953
975
|
"properties": {
|
|
@@ -1453,6 +1475,68 @@
|
|
|
1453
1475
|
},
|
|
1454
1476
|
"additionalProperties": false
|
|
1455
1477
|
},
|
|
1478
|
+
"TableCreationModeOP": {
|
|
1479
|
+
"description": "Creation mode configuration for Object Page tables.\nVisibility of specific properties is controlled by decorators in the specification package based on table type and creation mode.",
|
|
1480
|
+
"type": "object",
|
|
1481
|
+
"properties": {
|
|
1482
|
+
"name": {
|
|
1483
|
+
"$ref": "#/definitions/TableCreationModeType",
|
|
1484
|
+
"description": "Defines the creation mode to be used by the table.\n\nFor tree tables, allowed values are 'NewPage', 'Inline', or 'CreationDialog'.\nFor responsive and grid tables, allowed values are 'NewPage', 'Inline', 'InlineCreationRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationRows: The creation is performed inline with an empty row (not available for tree tables)\n- External: The creation is performed in a different application which is specified using the `outbound` parameter (not available for tree tables)\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1485
|
+
"artifactType": "Manifest",
|
|
1486
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1487
|
+
},
|
|
1488
|
+
"createAtEnd": {
|
|
1489
|
+
"description": "Specifies if the new entry should be created at the top or bottom of a table when `creationMode` is set to `Inline`.\nThe default value is `false`.",
|
|
1490
|
+
"type": "boolean",
|
|
1491
|
+
"artifactType": "Manifest",
|
|
1492
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1493
|
+
},
|
|
1494
|
+
"inlineCreationRowsHiddenInEditMode": {
|
|
1495
|
+
"description": "Specifies if the new entry should be hidden when `creationMode` is set to `InlineCreationRows`. This only applies to responsive tables.\nThe default value is `false`.",
|
|
1496
|
+
"type": "boolean",
|
|
1497
|
+
"artifactType": "Manifest",
|
|
1498
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1499
|
+
},
|
|
1500
|
+
"createInPlace": {
|
|
1501
|
+
"description": "Specifies if the new entry should be placed at the position computed by the backend (e.g. taking sorting into account).\nThe default value is `false`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
1502
|
+
"type": "boolean",
|
|
1503
|
+
"artifactType": "Manifest",
|
|
1504
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
1505
|
+
},
|
|
1506
|
+
"isCreateEnabled": {
|
|
1507
|
+
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
1508
|
+
"type": "string",
|
|
1509
|
+
"artifactType": "Manifest",
|
|
1510
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
1511
|
+
},
|
|
1512
|
+
"creationFields": {
|
|
1513
|
+
"description": "Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.\nThe value is a comma-separated list of property names.",
|
|
1514
|
+
"type": "array",
|
|
1515
|
+
"items": {
|
|
1516
|
+
"type": "string"
|
|
1517
|
+
},
|
|
1518
|
+
"artifactType": "Manifest",
|
|
1519
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0"
|
|
1520
|
+
},
|
|
1521
|
+
"outbound": {
|
|
1522
|
+
"description": "The navigation target where the document is created when `creationMode` is set to `External`.",
|
|
1523
|
+
"type": "string",
|
|
1524
|
+
"artifactType": "Manifest",
|
|
1525
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/5c2bc2ea8a7e482e968124959354d736"
|
|
1526
|
+
}
|
|
1527
|
+
},
|
|
1528
|
+
"additionalProperties": false
|
|
1529
|
+
},
|
|
1530
|
+
"TableCreationModeType": {
|
|
1531
|
+
"enum": [
|
|
1532
|
+
"CreationDialog",
|
|
1533
|
+
"External",
|
|
1534
|
+
"Inline",
|
|
1535
|
+
"InlineCreationRows",
|
|
1536
|
+
"NewPage"
|
|
1537
|
+
],
|
|
1538
|
+
"type": "string"
|
|
1539
|
+
},
|
|
1456
1540
|
"PersonalizationTypeOP": {
|
|
1457
1541
|
"type": "object",
|
|
1458
1542
|
"properties": {
|
|
@@ -1715,706 +1799,6 @@
|
|
|
1715
1799
|
],
|
|
1716
1800
|
"type": "string"
|
|
1717
1801
|
},
|
|
1718
|
-
"RowCountMode": {
|
|
1719
|
-
"artifactType": "Manifest",
|
|
1720
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/api/sap.ui.mdc.enums.TableRowCountMode",
|
|
1721
|
-
"enum": [
|
|
1722
|
-
"Auto",
|
|
1723
|
-
"Fixed",
|
|
1724
|
-
"Interactive"
|
|
1725
|
-
],
|
|
1726
|
-
"type": "string"
|
|
1727
|
-
},
|
|
1728
|
-
"ObjectPageGridTableV4": {
|
|
1729
|
-
"description": "Table",
|
|
1730
|
-
"isViewNode": true,
|
|
1731
|
-
"controlProperty": "type",
|
|
1732
|
-
"type": "object",
|
|
1733
|
-
"properties": {
|
|
1734
|
-
"type": {
|
|
1735
|
-
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
1736
|
-
"type": "string",
|
|
1737
|
-
"const": "GridTable",
|
|
1738
|
-
"artifactType": "Manifest"
|
|
1739
|
-
},
|
|
1740
|
-
"creationMode": {
|
|
1741
|
-
"description": "Defines the page behavior when a new record is created.",
|
|
1742
|
-
"anyOf": [
|
|
1743
|
-
{
|
|
1744
|
-
"$ref": "#/definitions/TableCreationModeInlineOPTable"
|
|
1745
|
-
},
|
|
1746
|
-
{
|
|
1747
|
-
"$ref": "#/definitions/TableCreationModeInlineCreationsRowsOPGridTable"
|
|
1748
|
-
},
|
|
1749
|
-
{
|
|
1750
|
-
"$ref": "#/definitions/TableCreationModeNewPageOPTable"
|
|
1751
|
-
},
|
|
1752
|
-
{
|
|
1753
|
-
"$ref": "#/definitions/TableCreationModeCreationDialogOPTable"
|
|
1754
|
-
},
|
|
1755
|
-
{
|
|
1756
|
-
"$ref": "#/definitions/TableCreationModeExternalOPTable"
|
|
1757
|
-
}
|
|
1758
|
-
]
|
|
1759
|
-
},
|
|
1760
|
-
"enableFullScreen": {
|
|
1761
|
-
"description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
|
|
1762
|
-
"type": "boolean",
|
|
1763
|
-
"artifactType": "Manifest"
|
|
1764
|
-
},
|
|
1765
|
-
"enablePaste": {
|
|
1766
|
-
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
1767
|
-
"type": "boolean",
|
|
1768
|
-
"artifactType": "Manifest"
|
|
1769
|
-
},
|
|
1770
|
-
"toolBar": {
|
|
1771
|
-
"$ref": "#/definitions/ObjectPageToolBar",
|
|
1772
|
-
"description": "Tool Bar"
|
|
1773
|
-
},
|
|
1774
|
-
"personalization": {
|
|
1775
|
-
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
1776
|
-
"anyOf": [
|
|
1777
|
-
{
|
|
1778
|
-
"$ref": "#/definitions/PersonalizationTypeOP"
|
|
1779
|
-
},
|
|
1780
|
-
{
|
|
1781
|
-
"type": "boolean"
|
|
1782
|
-
}
|
|
1783
|
-
]
|
|
1784
|
-
},
|
|
1785
|
-
"quickVariantSelection": {
|
|
1786
|
-
"$ref": "#/definitions/QuickVariantSelectionV4OP",
|
|
1787
|
-
"description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
|
|
1788
|
-
"artifactType": "Manifest"
|
|
1789
|
-
},
|
|
1790
|
-
"columns": {
|
|
1791
|
-
"$ref": "#/definitions/GenericColumnsOP"
|
|
1792
|
-
},
|
|
1793
|
-
"enableMassEdit": {
|
|
1794
|
-
"artifactType": "Manifest",
|
|
1795
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1796
|
-
"description": "Mass editing allows end users to simultaneously change multiple objects that share the same editable properties.",
|
|
1797
|
-
"anyOf": [
|
|
1798
|
-
{
|
|
1799
|
-
"type": "object",
|
|
1800
|
-
"properties": {
|
|
1801
|
-
"visibleFields": {
|
|
1802
|
-
"description": "The 'visibleFields' property lets you specify which fields are available in the mass edit dialog.",
|
|
1803
|
-
"artifactType": "Manifest",
|
|
1804
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1805
|
-
"type": "array",
|
|
1806
|
-
"items": {
|
|
1807
|
-
"type": "string"
|
|
1808
|
-
}
|
|
1809
|
-
},
|
|
1810
|
-
"ignoredFields": {
|
|
1811
|
-
"description": "The 'ignoredFields' property lets you hide specific fields from the mass edit dialog, even if these fields are displayed in the table.",
|
|
1812
|
-
"artifactType": "Manifest",
|
|
1813
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
1814
|
-
"type": "array",
|
|
1815
|
-
"items": {
|
|
1816
|
-
"type": "string"
|
|
1817
|
-
}
|
|
1818
|
-
},
|
|
1819
|
-
"operationGroupingMode": {
|
|
1820
|
-
"$ref": "#/definitions/OperationGroupingMode",
|
|
1821
|
-
"description": "Define how the changes using mass edit should be applied. The default mode for mass editing is 'ChangeSet' on the Object Page and 'Isolated' in the List Report.\n\n- ChangeSet: Grouped for all objects within the same request.\n- Isolated: Separately for each object (as an individual OData change set in the same request)."
|
|
1822
|
-
}
|
|
1823
|
-
},
|
|
1824
|
-
"additionalProperties": false
|
|
1825
|
-
},
|
|
1826
|
-
{
|
|
1827
|
-
"type": "boolean"
|
|
1828
|
-
}
|
|
1829
|
-
]
|
|
1830
|
-
},
|
|
1831
|
-
"selectionMode": {
|
|
1832
|
-
"$ref": "#/definitions/SelectionMode",
|
|
1833
|
-
"description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
|
|
1834
|
-
"artifactType": "Manifest"
|
|
1835
|
-
},
|
|
1836
|
-
"selectAll": {
|
|
1837
|
-
"description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
|
|
1838
|
-
"type": "boolean",
|
|
1839
|
-
"artifactType": "Manifest"
|
|
1840
|
-
},
|
|
1841
|
-
"selectionLimit": {
|
|
1842
|
-
"description": "You can define how many items can be selected at a time using the selectionLimit.",
|
|
1843
|
-
"type": "number",
|
|
1844
|
-
"artifactType": "Manifest"
|
|
1845
|
-
},
|
|
1846
|
-
"enableExport": {
|
|
1847
|
-
"description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
|
|
1848
|
-
"type": "boolean",
|
|
1849
|
-
"artifactType": "Manifest",
|
|
1850
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
|
|
1851
|
-
},
|
|
1852
|
-
"condensedTableLayout": {
|
|
1853
|
-
"description": "Determines whether the content density for ui.table is condensed.",
|
|
1854
|
-
"type": "boolean",
|
|
1855
|
-
"artifactType": "Manifest",
|
|
1856
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
|
|
1857
|
-
},
|
|
1858
|
-
"hierarchyQualifier": {
|
|
1859
|
-
"description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
|
|
1860
|
-
"type": "string",
|
|
1861
|
-
"artifactType": "Manifest",
|
|
1862
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
|
|
1863
|
-
},
|
|
1864
|
-
"widthIncludingColumnHeader": {
|
|
1865
|
-
"description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
|
|
1866
|
-
"type": "boolean",
|
|
1867
|
-
"artifactType": "Manifest",
|
|
1868
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
1869
|
-
},
|
|
1870
|
-
"disableCopyToClipboard": {
|
|
1871
|
-
"description": "Determines the visibility of the Copy to Clipboard button. By default, the Copy to Clipboard button is displayed in the table toolbar if the selection mode is configured.",
|
|
1872
|
-
"type": "boolean",
|
|
1873
|
-
"artifactType": "Manifest",
|
|
1874
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
1875
|
-
},
|
|
1876
|
-
"rowCountMode": {
|
|
1877
|
-
"$ref": "#/definitions/RowCountMode",
|
|
1878
|
-
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.\n - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
1879
|
-
"artifactType": "Manifest"
|
|
1880
|
-
},
|
|
1881
|
-
"rowCount": {
|
|
1882
|
-
"description": "Number of rows to be displayed in the table.",
|
|
1883
|
-
"minimum": 0,
|
|
1884
|
-
"type": "number",
|
|
1885
|
-
"artifactType": "Manifest"
|
|
1886
|
-
}
|
|
1887
|
-
},
|
|
1888
|
-
"additionalProperties": false
|
|
1889
|
-
},
|
|
1890
|
-
"TableCreationModeInlineOPTable": {
|
|
1891
|
-
"description": "Inline creation mode",
|
|
1892
|
-
"controlProperty": "name",
|
|
1893
|
-
"type": "object",
|
|
1894
|
-
"properties": {
|
|
1895
|
-
"name": {
|
|
1896
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1897
|
-
"type": "string",
|
|
1898
|
-
"const": "Inline",
|
|
1899
|
-
"artifactType": "Manifest",
|
|
1900
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1901
|
-
},
|
|
1902
|
-
"createAtEnd": {
|
|
1903
|
-
"description": "Specifies if the new entry should be created at the top or bottom of a table when `creationMode` is set to `Inline`.\nThe default value is `false`.",
|
|
1904
|
-
"type": "boolean",
|
|
1905
|
-
"artifactType": "Manifest",
|
|
1906
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1907
|
-
}
|
|
1908
|
-
},
|
|
1909
|
-
"additionalProperties": false
|
|
1910
|
-
},
|
|
1911
|
-
"TableCreationModeInlineCreationsRowsOPGridTable": {
|
|
1912
|
-
"description": "InlineCreationsRows creation mode for the grid table",
|
|
1913
|
-
"controlProperty": "name",
|
|
1914
|
-
"type": "object",
|
|
1915
|
-
"properties": {
|
|
1916
|
-
"name": {
|
|
1917
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1918
|
-
"type": "string",
|
|
1919
|
-
"const": "InlineCreationRows",
|
|
1920
|
-
"artifactType": "Manifest",
|
|
1921
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1922
|
-
}
|
|
1923
|
-
},
|
|
1924
|
-
"additionalProperties": false
|
|
1925
|
-
},
|
|
1926
|
-
"TableCreationModeNewPageOPTable": {
|
|
1927
|
-
"description": "NewPage creation mode",
|
|
1928
|
-
"defaultControlProperty": true,
|
|
1929
|
-
"controlProperty": "name",
|
|
1930
|
-
"type": "object",
|
|
1931
|
-
"properties": {
|
|
1932
|
-
"name": {
|
|
1933
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1934
|
-
"type": "string",
|
|
1935
|
-
"const": "NewPage",
|
|
1936
|
-
"artifactType": "Manifest",
|
|
1937
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1938
|
-
}
|
|
1939
|
-
},
|
|
1940
|
-
"additionalProperties": false
|
|
1941
|
-
},
|
|
1942
|
-
"TableCreationModeCreationDialogOPTable": {
|
|
1943
|
-
"description": "CreationDialog creation mode",
|
|
1944
|
-
"controlProperty": "name",
|
|
1945
|
-
"type": "object",
|
|
1946
|
-
"properties": {
|
|
1947
|
-
"name": {
|
|
1948
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1949
|
-
"type": "string",
|
|
1950
|
-
"const": "CreationDialog",
|
|
1951
|
-
"artifactType": "Manifest",
|
|
1952
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1953
|
-
},
|
|
1954
|
-
"creationFields": {
|
|
1955
|
-
"description": "Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.\nThe value is a comma-separated list of property names.",
|
|
1956
|
-
"type": "array",
|
|
1957
|
-
"items": {
|
|
1958
|
-
"type": "string"
|
|
1959
|
-
},
|
|
1960
|
-
"artifactType": "Manifest",
|
|
1961
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0"
|
|
1962
|
-
}
|
|
1963
|
-
},
|
|
1964
|
-
"additionalProperties": false
|
|
1965
|
-
},
|
|
1966
|
-
"TableCreationModeExternalOPTable": {
|
|
1967
|
-
"description": "External creation mode",
|
|
1968
|
-
"controlProperty": "name",
|
|
1969
|
-
"type": "object",
|
|
1970
|
-
"properties": {
|
|
1971
|
-
"name": {
|
|
1972
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
1973
|
-
"type": "string",
|
|
1974
|
-
"const": "External",
|
|
1975
|
-
"artifactType": "Manifest",
|
|
1976
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
1977
|
-
},
|
|
1978
|
-
"outbound": {
|
|
1979
|
-
"description": "The navigation target where the document is created when `creationMode` is set to `External`.",
|
|
1980
|
-
"type": "string",
|
|
1981
|
-
"artifactType": "Manifest",
|
|
1982
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/5c2bc2ea8a7e482e968124959354d736"
|
|
1983
|
-
}
|
|
1984
|
-
},
|
|
1985
|
-
"additionalProperties": false
|
|
1986
|
-
},
|
|
1987
|
-
"ObjectPageResponsiveTableV4": {
|
|
1988
|
-
"description": "Table",
|
|
1989
|
-
"isViewNode": true,
|
|
1990
|
-
"controlProperty": "type",
|
|
1991
|
-
"defaultControlProperty": true,
|
|
1992
|
-
"type": "object",
|
|
1993
|
-
"properties": {
|
|
1994
|
-
"type": {
|
|
1995
|
-
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
1996
|
-
"type": "string",
|
|
1997
|
-
"const": "ResponsiveTable",
|
|
1998
|
-
"artifactType": "Manifest"
|
|
1999
|
-
},
|
|
2000
|
-
"creationMode": {
|
|
2001
|
-
"description": "Defines the page behavior when a new record is created.",
|
|
2002
|
-
"anyOf": [
|
|
2003
|
-
{
|
|
2004
|
-
"$ref": "#/definitions/TableCreationModeInlineOPTable"
|
|
2005
|
-
},
|
|
2006
|
-
{
|
|
2007
|
-
"$ref": "#/definitions/TableCreationModeNewPageOPTable"
|
|
2008
|
-
},
|
|
2009
|
-
{
|
|
2010
|
-
"$ref": "#/definitions/TableCreationModeCreationDialogOPTable"
|
|
2011
|
-
},
|
|
2012
|
-
{
|
|
2013
|
-
"$ref": "#/definitions/TableCreationModeExternalOPTable"
|
|
2014
|
-
},
|
|
2015
|
-
{
|
|
2016
|
-
"$ref": "#/definitions/TableCreationModeInlineCreationsRowsOPResponsiveTable"
|
|
2017
|
-
}
|
|
2018
|
-
]
|
|
2019
|
-
},
|
|
2020
|
-
"popinLayout": {
|
|
2021
|
-
"description": "Defines the layout options of the table popins. A popin layout defined at the table level takes precedence over a popin layout defined at the application level.",
|
|
2022
|
-
"descriptionSrcURL": "https://help.sap.com/docs/SAPUI5/b1cda5dc7a7644eb886bc6ac04c0b438/7f844f1021cd4791b8f7408eac7c1cec.html",
|
|
2023
|
-
"enum": [
|
|
2024
|
-
"Block",
|
|
2025
|
-
"GridLarge",
|
|
2026
|
-
"GridSmall"
|
|
2027
|
-
],
|
|
2028
|
-
"type": "string",
|
|
2029
|
-
"artifactType": "Manifest"
|
|
2030
|
-
},
|
|
2031
|
-
"enableFullScreen": {
|
|
2032
|
-
"description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
|
|
2033
|
-
"type": "boolean",
|
|
2034
|
-
"artifactType": "Manifest"
|
|
2035
|
-
},
|
|
2036
|
-
"enablePaste": {
|
|
2037
|
-
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
2038
|
-
"type": "boolean",
|
|
2039
|
-
"artifactType": "Manifest"
|
|
2040
|
-
},
|
|
2041
|
-
"toolBar": {
|
|
2042
|
-
"$ref": "#/definitions/ObjectPageToolBar",
|
|
2043
|
-
"description": "Tool Bar"
|
|
2044
|
-
},
|
|
2045
|
-
"personalization": {
|
|
2046
|
-
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
2047
|
-
"anyOf": [
|
|
2048
|
-
{
|
|
2049
|
-
"$ref": "#/definitions/PersonalizationTypeOP"
|
|
2050
|
-
},
|
|
2051
|
-
{
|
|
2052
|
-
"type": "boolean"
|
|
2053
|
-
}
|
|
2054
|
-
]
|
|
2055
|
-
},
|
|
2056
|
-
"quickVariantSelection": {
|
|
2057
|
-
"$ref": "#/definitions/QuickVariantSelectionV4OP",
|
|
2058
|
-
"description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
|
|
2059
|
-
"artifactType": "Manifest"
|
|
2060
|
-
},
|
|
2061
|
-
"columns": {
|
|
2062
|
-
"$ref": "#/definitions/GenericColumnsOP"
|
|
2063
|
-
},
|
|
2064
|
-
"enableMassEdit": {
|
|
2065
|
-
"artifactType": "Manifest",
|
|
2066
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
2067
|
-
"description": "Mass editing allows end users to simultaneously change multiple objects that share the same editable properties.",
|
|
2068
|
-
"anyOf": [
|
|
2069
|
-
{
|
|
2070
|
-
"type": "object",
|
|
2071
|
-
"properties": {
|
|
2072
|
-
"visibleFields": {
|
|
2073
|
-
"description": "The 'visibleFields' property lets you specify which fields are available in the mass edit dialog.",
|
|
2074
|
-
"artifactType": "Manifest",
|
|
2075
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
2076
|
-
"type": "array",
|
|
2077
|
-
"items": {
|
|
2078
|
-
"type": "string"
|
|
2079
|
-
}
|
|
2080
|
-
},
|
|
2081
|
-
"ignoredFields": {
|
|
2082
|
-
"description": "The 'ignoredFields' property lets you hide specific fields from the mass edit dialog, even if these fields are displayed in the table.",
|
|
2083
|
-
"artifactType": "Manifest",
|
|
2084
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
2085
|
-
"type": "array",
|
|
2086
|
-
"items": {
|
|
2087
|
-
"type": "string"
|
|
2088
|
-
}
|
|
2089
|
-
},
|
|
2090
|
-
"operationGroupingMode": {
|
|
2091
|
-
"$ref": "#/definitions/OperationGroupingMode",
|
|
2092
|
-
"description": "Define how the changes using mass edit should be applied. The default mode for mass editing is 'ChangeSet' on the Object Page and 'Isolated' in the List Report.\n\n- ChangeSet: Grouped for all objects within the same request.\n- Isolated: Separately for each object (as an individual OData change set in the same request)."
|
|
2093
|
-
}
|
|
2094
|
-
},
|
|
2095
|
-
"additionalProperties": false
|
|
2096
|
-
},
|
|
2097
|
-
{
|
|
2098
|
-
"type": "boolean"
|
|
2099
|
-
}
|
|
2100
|
-
]
|
|
2101
|
-
},
|
|
2102
|
-
"selectionMode": {
|
|
2103
|
-
"$ref": "#/definitions/SelectionMode",
|
|
2104
|
-
"description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
|
|
2105
|
-
"artifactType": "Manifest"
|
|
2106
|
-
},
|
|
2107
|
-
"selectAll": {
|
|
2108
|
-
"description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
|
|
2109
|
-
"type": "boolean",
|
|
2110
|
-
"artifactType": "Manifest"
|
|
2111
|
-
},
|
|
2112
|
-
"selectionLimit": {
|
|
2113
|
-
"description": "You can define how many items can be selected at a time using the selectionLimit.",
|
|
2114
|
-
"type": "number",
|
|
2115
|
-
"artifactType": "Manifest"
|
|
2116
|
-
},
|
|
2117
|
-
"enableExport": {
|
|
2118
|
-
"description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
|
|
2119
|
-
"type": "boolean",
|
|
2120
|
-
"artifactType": "Manifest",
|
|
2121
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
|
|
2122
|
-
},
|
|
2123
|
-
"condensedTableLayout": {
|
|
2124
|
-
"description": "Determines whether the content density for ui.table is condensed.",
|
|
2125
|
-
"type": "boolean",
|
|
2126
|
-
"artifactType": "Manifest",
|
|
2127
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
|
|
2128
|
-
},
|
|
2129
|
-
"hierarchyQualifier": {
|
|
2130
|
-
"description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
|
|
2131
|
-
"type": "string",
|
|
2132
|
-
"artifactType": "Manifest",
|
|
2133
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
|
|
2134
|
-
},
|
|
2135
|
-
"widthIncludingColumnHeader": {
|
|
2136
|
-
"description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
|
|
2137
|
-
"type": "boolean",
|
|
2138
|
-
"artifactType": "Manifest",
|
|
2139
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
2140
|
-
},
|
|
2141
|
-
"disableCopyToClipboard": {
|
|
2142
|
-
"description": "Determines the visibility of the Copy to Clipboard button. By default, the Copy to Clipboard button is displayed in the table toolbar if the selection mode is configured.",
|
|
2143
|
-
"type": "boolean",
|
|
2144
|
-
"artifactType": "Manifest",
|
|
2145
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
2146
|
-
}
|
|
2147
|
-
},
|
|
2148
|
-
"additionalProperties": false
|
|
2149
|
-
},
|
|
2150
|
-
"TableCreationModeInlineCreationsRowsOPResponsiveTable": {
|
|
2151
|
-
"description": "InlineCreationsRows creation mode for the responsive table",
|
|
2152
|
-
"controlProperty": "name",
|
|
2153
|
-
"type": "object",
|
|
2154
|
-
"properties": {
|
|
2155
|
-
"name": {
|
|
2156
|
-
"description": "Defines the creation mode to be used by the table.\nAllowed values are 'NewPage', 'Inline', 'InlineCreationsRows', 'External', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline\n- InlineCreationsRows: The creation is performed inline with an empty row\n- External: The creation is performed in a different application which is specified using the `outbound` parameter.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
2157
|
-
"type": "string",
|
|
2158
|
-
"const": "InlineCreationRows",
|
|
2159
|
-
"artifactType": "Manifest",
|
|
2160
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2161
|
-
},
|
|
2162
|
-
"inlineCreationRowsHiddenInEditMode": {
|
|
2163
|
-
"description": "Specifies if the new entry should be hidden when `creationMode` is set to `InlineCreationRows`. This only applies to responsive tables.\nThe default value is `false`.",
|
|
2164
|
-
"type": "boolean",
|
|
2165
|
-
"artifactType": "Manifest",
|
|
2166
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2167
|
-
}
|
|
2168
|
-
},
|
|
2169
|
-
"additionalProperties": false
|
|
2170
|
-
},
|
|
2171
|
-
"ObjectPageTreeTableV4": {
|
|
2172
|
-
"description": "Table",
|
|
2173
|
-
"isViewNode": true,
|
|
2174
|
-
"controlProperty": "type",
|
|
2175
|
-
"type": "object",
|
|
2176
|
-
"properties": {
|
|
2177
|
-
"type": {
|
|
2178
|
-
"description": "Defines the table type. Note: Grid tables, analytical tables, and tree tables aren't rendered on small-screen devices. Responsive tables are shown instead.",
|
|
2179
|
-
"type": "string",
|
|
2180
|
-
"const": "TreeTable",
|
|
2181
|
-
"artifactType": "Manifest"
|
|
2182
|
-
},
|
|
2183
|
-
"creationMode": {
|
|
2184
|
-
"description": "Defines the page behavior when a new record is created.",
|
|
2185
|
-
"anyOf": [
|
|
2186
|
-
{
|
|
2187
|
-
"$ref": "#/definitions/TableCreationModeNewPageOPTreeTable"
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"$ref": "#/definitions/TableCreationModeInlineOPTreeTable"
|
|
2191
|
-
},
|
|
2192
|
-
{
|
|
2193
|
-
"$ref": "#/definitions/TableCreationModeCreationDialogOPTreeTable"
|
|
2194
|
-
}
|
|
2195
|
-
]
|
|
2196
|
-
},
|
|
2197
|
-
"enableFullScreen": {
|
|
2198
|
-
"description": "Enables full screen mode for this table. This adds a button to the table toolbar which opens the table in a full screen dialog.",
|
|
2199
|
-
"type": "boolean",
|
|
2200
|
-
"artifactType": "Manifest"
|
|
2201
|
-
},
|
|
2202
|
-
"enablePaste": {
|
|
2203
|
-
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
2204
|
-
"type": "boolean",
|
|
2205
|
-
"artifactType": "Manifest"
|
|
2206
|
-
},
|
|
2207
|
-
"toolBar": {
|
|
2208
|
-
"$ref": "#/definitions/ObjectPageToolBar",
|
|
2209
|
-
"description": "Tool Bar"
|
|
2210
|
-
},
|
|
2211
|
-
"personalization": {
|
|
2212
|
-
"description": "Defines the personalization mode which is only effective if the variant management on the page is set to `Page` or `Control`.\nBy default all table settings are enabled. You can change this for the different parts of the table by setting the properties 'Column', 'Sort' and 'Filter' accordingly.\nOmitting a property is treated as false, this allows apps to avoid getting new features like grouping in upcoming releases.",
|
|
2213
|
-
"anyOf": [
|
|
2214
|
-
{
|
|
2215
|
-
"$ref": "#/definitions/PersonalizationTypeOP"
|
|
2216
|
-
},
|
|
2217
|
-
{
|
|
2218
|
-
"type": "boolean"
|
|
2219
|
-
}
|
|
2220
|
-
]
|
|
2221
|
-
},
|
|
2222
|
-
"quickVariantSelection": {
|
|
2223
|
-
"$ref": "#/definitions/QuickVariantSelectionV4OP",
|
|
2224
|
-
"description": "With quickVariantSelection, you can switch to multiple views (single table mode). It links to a SelectionVariant (filters) or SelectionPresentationVariant (filters and sorters) that you have added to your annotations.",
|
|
2225
|
-
"artifactType": "Manifest"
|
|
2226
|
-
},
|
|
2227
|
-
"columns": {
|
|
2228
|
-
"$ref": "#/definitions/GenericColumnsOP"
|
|
2229
|
-
},
|
|
2230
|
-
"enableMassEdit": {
|
|
2231
|
-
"artifactType": "Manifest",
|
|
2232
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
2233
|
-
"description": "Mass editing allows end users to simultaneously change multiple objects that share the same editable properties.",
|
|
2234
|
-
"anyOf": [
|
|
2235
|
-
{
|
|
2236
|
-
"type": "object",
|
|
2237
|
-
"properties": {
|
|
2238
|
-
"visibleFields": {
|
|
2239
|
-
"description": "The 'visibleFields' property lets you specify which fields are available in the mass edit dialog.",
|
|
2240
|
-
"artifactType": "Manifest",
|
|
2241
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
2242
|
-
"type": "array",
|
|
2243
|
-
"items": {
|
|
2244
|
-
"type": "string"
|
|
2245
|
-
}
|
|
2246
|
-
},
|
|
2247
|
-
"ignoredFields": {
|
|
2248
|
-
"description": "The 'ignoredFields' property lets you hide specific fields from the mass edit dialog, even if these fields are displayed in the table.",
|
|
2249
|
-
"artifactType": "Manifest",
|
|
2250
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/965ef5b2895641bc9b6cd44f1bd0eb4d",
|
|
2251
|
-
"type": "array",
|
|
2252
|
-
"items": {
|
|
2253
|
-
"type": "string"
|
|
2254
|
-
}
|
|
2255
|
-
},
|
|
2256
|
-
"operationGroupingMode": {
|
|
2257
|
-
"$ref": "#/definitions/OperationGroupingMode",
|
|
2258
|
-
"description": "Define how the changes using mass edit should be applied. The default mode for mass editing is 'ChangeSet' on the Object Page and 'Isolated' in the List Report.\n\n- ChangeSet: Grouped for all objects within the same request.\n- Isolated: Separately for each object (as an individual OData change set in the same request)."
|
|
2259
|
-
}
|
|
2260
|
-
},
|
|
2261
|
-
"additionalProperties": false
|
|
2262
|
-
},
|
|
2263
|
-
{
|
|
2264
|
-
"type": "boolean"
|
|
2265
|
-
}
|
|
2266
|
-
]
|
|
2267
|
-
},
|
|
2268
|
-
"selectionMode": {
|
|
2269
|
-
"$ref": "#/definitions/SelectionMode",
|
|
2270
|
-
"description": "Allows you to enable or disable row selection and choose between single or multiple row selection.\n- Auto: This type is deprecated. Choose any of the following modes:\n- Multi (default): This type allows multiple table selections if relevant actions are available in the toolbar.\n- Single: This type allows single table selection if relevant actions are available in the toolbar.\n- None: No table selection is possible in display mode.",
|
|
2271
|
-
"artifactType": "Manifest"
|
|
2272
|
-
},
|
|
2273
|
-
"selectAll": {
|
|
2274
|
-
"description": "The selectAll configuration overrides the selectionLimit and allows the user to select all the items. When set to true, the select all feature is enabled: a checkbox in the table header is displayed which selects all items when clicked.",
|
|
2275
|
-
"type": "boolean",
|
|
2276
|
-
"artifactType": "Manifest"
|
|
2277
|
-
},
|
|
2278
|
-
"selectionLimit": {
|
|
2279
|
-
"description": "You can define how many items can be selected at a time using the selectionLimit.",
|
|
2280
|
-
"type": "number",
|
|
2281
|
-
"artifactType": "Manifest"
|
|
2282
|
-
},
|
|
2283
|
-
"enableExport": {
|
|
2284
|
-
"description": "Defines whether the Export button is displayed in the table toolbar. The default value is true.",
|
|
2285
|
-
"type": "boolean",
|
|
2286
|
-
"artifactType": "Manifest",
|
|
2287
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/4bab6f2043814257974b52d4dafe1dcd"
|
|
2288
|
-
},
|
|
2289
|
-
"condensedTableLayout": {
|
|
2290
|
-
"description": "Determines whether the content density for ui.table is condensed.",
|
|
2291
|
-
"type": "boolean",
|
|
2292
|
-
"artifactType": "Manifest",
|
|
2293
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/f3cc057e405c4fd58ee2ed42c557797c"
|
|
2294
|
-
},
|
|
2295
|
-
"hierarchyQualifier": {
|
|
2296
|
-
"description": "Leading property that decides between either a recursive hierarchy or data aggregation.",
|
|
2297
|
-
"type": "string",
|
|
2298
|
-
"artifactType": "Manifest",
|
|
2299
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7f844f1021cd4791b8f7408eac7c1cec"
|
|
2300
|
-
},
|
|
2301
|
-
"widthIncludingColumnHeader": {
|
|
2302
|
-
"description": "Determines whether the column header is included in the column width calculation. By default, the column width is calculated based on the type of the content.",
|
|
2303
|
-
"type": "boolean",
|
|
2304
|
-
"artifactType": "Manifest",
|
|
2305
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
2306
|
-
},
|
|
2307
|
-
"disableCopyToClipboard": {
|
|
2308
|
-
"description": "Determines the visibility of the Copy to Clipboard button. By default, the Copy to Clipboard button is displayed in the table toolbar if the selection mode is configured.",
|
|
2309
|
-
"type": "boolean",
|
|
2310
|
-
"artifactType": "Manifest",
|
|
2311
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
2312
|
-
},
|
|
2313
|
-
"rowCountMode": {
|
|
2314
|
-
"$ref": "#/definitions/RowCountMode",
|
|
2315
|
-
"description": "Defines how the table handles the visible rows. Does not apply to responsive tables. Allowed values are Auto and Fixed.\n - Fixed: The table always has as many rows as defined in the rowCount property.\n - Auto (default): The number of rows is changed by the table automatically. It will then adjust its row count to the space it is allowed to cover (limited by the surrounding container) but it cannot have less than defined in the rowCount property.\n - Interactive: The user can change the number of displayed rows by dragging a resize handle.",
|
|
2316
|
-
"artifactType": "Manifest"
|
|
2317
|
-
},
|
|
2318
|
-
"rowCount": {
|
|
2319
|
-
"description": "Number of rows to be displayed in the table.",
|
|
2320
|
-
"minimum": 0,
|
|
2321
|
-
"type": "number",
|
|
2322
|
-
"artifactType": "Manifest"
|
|
2323
|
-
}
|
|
2324
|
-
},
|
|
2325
|
-
"additionalProperties": false
|
|
2326
|
-
},
|
|
2327
|
-
"TableCreationModeNewPageOPTreeTable": {
|
|
2328
|
-
"description": "NewPage creation mode for TreeTable",
|
|
2329
|
-
"defaultControlProperty": true,
|
|
2330
|
-
"controlProperty": "name",
|
|
2331
|
-
"type": "object",
|
|
2332
|
-
"properties": {
|
|
2333
|
-
"name": {
|
|
2334
|
-
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are 'NewPage', 'Inline', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline.\n- CreationDialog: The creation is performed in a table. There is a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise, it is 'Inline'.",
|
|
2335
|
-
"type": "string",
|
|
2336
|
-
"const": "NewPage",
|
|
2337
|
-
"artifactType": "Manifest",
|
|
2338
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2339
|
-
},
|
|
2340
|
-
"createInPlace": {
|
|
2341
|
-
"description": "Specifies if the new entry should be placed at the position computed by the backend (e.g. taking sorting into account).\nThe default value is `false`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
2342
|
-
"type": "boolean",
|
|
2343
|
-
"artifactType": "Manifest",
|
|
2344
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2345
|
-
},
|
|
2346
|
-
"isCreateEnabled": {
|
|
2347
|
-
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
2348
|
-
"type": "string",
|
|
2349
|
-
"artifactType": "Manifest",
|
|
2350
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2351
|
-
}
|
|
2352
|
-
},
|
|
2353
|
-
"additionalProperties": false
|
|
2354
|
-
},
|
|
2355
|
-
"TableCreationModeInlineOPTreeTable": {
|
|
2356
|
-
"description": "Inline creation mode for TreeTable",
|
|
2357
|
-
"controlProperty": "name",
|
|
2358
|
-
"type": "object",
|
|
2359
|
-
"properties": {
|
|
2360
|
-
"name": {
|
|
2361
|
-
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are 'NewPage', 'Inline', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
2362
|
-
"type": "string",
|
|
2363
|
-
"const": "Inline",
|
|
2364
|
-
"artifactType": "Manifest",
|
|
2365
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2366
|
-
},
|
|
2367
|
-
"createInPlace": {
|
|
2368
|
-
"description": "Specifies if the new entry should be placed at the position computed by the backend (e.g. taking sorting into account).\nThe default value is `false`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
2369
|
-
"type": "boolean",
|
|
2370
|
-
"artifactType": "Manifest",
|
|
2371
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2372
|
-
},
|
|
2373
|
-
"isCreateEnabled": {
|
|
2374
|
-
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
2375
|
-
"type": "string",
|
|
2376
|
-
"artifactType": "Manifest",
|
|
2377
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2378
|
-
}
|
|
2379
|
-
},
|
|
2380
|
-
"additionalProperties": false
|
|
2381
|
-
},
|
|
2382
|
-
"TableCreationModeCreationDialogOPTreeTable": {
|
|
2383
|
-
"description": "CreationDialog creation mode for TreeTable",
|
|
2384
|
-
"controlProperty": "name",
|
|
2385
|
-
"type": "object",
|
|
2386
|
-
"properties": {
|
|
2387
|
-
"name": {
|
|
2388
|
-
"description": "Defines the creation mode to be used by the tree table.\nAllowed values are 'NewPage', 'Inline', or 'CreationDialog'.\n\n- NewPage: The created document is shown in a new page, depending on whether 'Sync', 'Async', or 'Deferred' is specified in the metadata.\n- Inline: The creation is performed inline.\n- CreationDialog: The creation is performed in the table using a dialog which allows you to specify some initial property values which are listed in 'creationFields'.\n\nIf the 'name' property is not set:\nIf 'navigation' is defined, the default value is 'NewPage'. Otherwise it is 'Inline'.",
|
|
2389
|
-
"type": "string",
|
|
2390
|
-
"const": "CreationDialog",
|
|
2391
|
-
"artifactType": "Manifest",
|
|
2392
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/cfb04f0c58e7409992feb4c91aa9410b"
|
|
2393
|
-
},
|
|
2394
|
-
"creationFields": {
|
|
2395
|
-
"description": "Defines the list of properties that will be displayed in the creation dialog, when the creation mode is set to 'CreationDialog'.\nThe value is a comma-separated list of property names.",
|
|
2396
|
-
"type": "array",
|
|
2397
|
-
"items": {
|
|
2398
|
-
"type": "string"
|
|
2399
|
-
},
|
|
2400
|
-
"artifactType": "Manifest",
|
|
2401
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7fee938d7cba4bfd86810cfe6d011eb0"
|
|
2402
|
-
},
|
|
2403
|
-
"createInPlace": {
|
|
2404
|
-
"description": "Specifies if the new entry should be placed at the position computed by the backend (e.g. taking sorting into account).\nThe default value is `false`. When set to `false`, the new entry is placed as the first child below its parent.",
|
|
2405
|
-
"type": "boolean",
|
|
2406
|
-
"artifactType": "Manifest",
|
|
2407
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2408
|
-
},
|
|
2409
|
-
"isCreateEnabled": {
|
|
2410
|
-
"description": "Defines the extension point to control the enablement of the \"Create\" button or \"Create Menu\" buttons.",
|
|
2411
|
-
"type": "string",
|
|
2412
|
-
"artifactType": "Manifest",
|
|
2413
|
-
"descriptionSrcURL": "https://ui5.sap.com/#/topic/7cf7a31fd1ee490ab816ecd941bd2f1f"
|
|
2414
|
-
}
|
|
2415
|
-
},
|
|
2416
|
-
"additionalProperties": false
|
|
2417
|
-
},
|
|
2418
1802
|
"ObjectPageSectionForm": {
|
|
2419
1803
|
"type": "object",
|
|
2420
1804
|
"properties": {
|