@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
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"sap.fe.macros.controls",
|
|
8
8
|
"sap.fe.macros.field",
|
|
9
9
|
"sap.fe.macros.filterBar",
|
|
10
|
+
"sap.fe.macros.form",
|
|
10
11
|
"sap.fe.macros.microchart",
|
|
11
12
|
"sap.fe.macros.richtexteditor",
|
|
12
13
|
"sap.fe.macros.share",
|
|
@@ -400,7 +401,8 @@
|
|
|
400
401
|
"path": [],
|
|
401
402
|
"type": "Aggregation",
|
|
402
403
|
"aggregationCardinality": "Single"
|
|
403
|
-
}
|
|
404
|
+
},
|
|
405
|
+
"description": "A set of options that can be configured."
|
|
404
406
|
},
|
|
405
407
|
"change": {
|
|
406
408
|
"type": "string",
|
|
@@ -892,7 +894,8 @@
|
|
|
892
894
|
"path": [],
|
|
893
895
|
"type": "Aggregation",
|
|
894
896
|
"aggregationCardinality": "Single"
|
|
895
|
-
}
|
|
897
|
+
},
|
|
898
|
+
"description": "Footer content (for example, toolbar with buttons)."
|
|
896
899
|
},
|
|
897
900
|
"headerContent": {
|
|
898
901
|
"type": "object",
|
|
@@ -1180,12 +1183,13 @@
|
|
|
1180
1183
|
"additionalProperties": {
|
|
1181
1184
|
"$ref": "#/definitions/sap.fe.macros.share.ShareOptions"
|
|
1182
1185
|
},
|
|
1183
|
-
"isViewNode":
|
|
1186
|
+
"isViewNode": false,
|
|
1184
1187
|
"metadata": {
|
|
1185
1188
|
"path": [],
|
|
1186
1189
|
"type": "Aggregation",
|
|
1187
1190
|
"aggregationCardinality": "Single"
|
|
1188
|
-
}
|
|
1191
|
+
},
|
|
1192
|
+
"description": "Supported Share options sap.fe.macros.share.ShareOptions."
|
|
1189
1193
|
}
|
|
1190
1194
|
},
|
|
1191
1195
|
"additionalProperties": false,
|
|
@@ -1647,7 +1651,8 @@
|
|
|
1647
1651
|
"path": [],
|
|
1648
1652
|
"type": "Aggregation",
|
|
1649
1653
|
"aggregationCardinality": "Single"
|
|
1650
|
-
}
|
|
1654
|
+
},
|
|
1655
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
1651
1656
|
},
|
|
1652
1657
|
"columns": {
|
|
1653
1658
|
"type": "object",
|
|
@@ -1671,7 +1676,8 @@
|
|
|
1671
1676
|
"path": [],
|
|
1672
1677
|
"type": "Aggregation",
|
|
1673
1678
|
"aggregationCardinality": "Single"
|
|
1674
|
-
}
|
|
1679
|
+
},
|
|
1680
|
+
"description": "Aggregate mass edit of the table."
|
|
1675
1681
|
},
|
|
1676
1682
|
"quickVariantSelection": {
|
|
1677
1683
|
"type": "object",
|
|
@@ -1683,7 +1689,8 @@
|
|
|
1683
1689
|
"path": [],
|
|
1684
1690
|
"type": "Aggregation",
|
|
1685
1691
|
"aggregationCardinality": "Single"
|
|
1686
|
-
}
|
|
1692
|
+
},
|
|
1693
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
1687
1694
|
},
|
|
1688
1695
|
"beforeRebindTable": {
|
|
1689
1696
|
"type": "string",
|
|
@@ -2119,7 +2126,8 @@
|
|
|
2119
2126
|
"path": [],
|
|
2120
2127
|
"type": "Aggregation",
|
|
2121
2128
|
"aggregationCardinality": "Single"
|
|
2122
|
-
}
|
|
2129
|
+
},
|
|
2130
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
2123
2131
|
},
|
|
2124
2132
|
"columns": {
|
|
2125
2133
|
"type": "object",
|
|
@@ -2143,7 +2151,8 @@
|
|
|
2143
2151
|
"path": [],
|
|
2144
2152
|
"type": "Aggregation",
|
|
2145
2153
|
"aggregationCardinality": "Single"
|
|
2146
|
-
}
|
|
2154
|
+
},
|
|
2155
|
+
"description": "Aggregate mass edit of the table."
|
|
2147
2156
|
},
|
|
2148
2157
|
"quickVariantSelection": {
|
|
2149
2158
|
"type": "object",
|
|
@@ -2155,7 +2164,8 @@
|
|
|
2155
2164
|
"path": [],
|
|
2156
2165
|
"type": "Aggregation",
|
|
2157
2166
|
"aggregationCardinality": "Single"
|
|
2158
|
-
}
|
|
2167
|
+
},
|
|
2168
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
2159
2169
|
},
|
|
2160
2170
|
"beforeRebindTable": {
|
|
2161
2171
|
"type": "string",
|
|
@@ -2875,7 +2885,8 @@
|
|
|
2875
2885
|
"path": [],
|
|
2876
2886
|
"type": "Aggregation",
|
|
2877
2887
|
"aggregationCardinality": "Single"
|
|
2878
|
-
}
|
|
2888
|
+
},
|
|
2889
|
+
"description": "A set of options that can be configured."
|
|
2879
2890
|
},
|
|
2880
2891
|
"change": {
|
|
2881
2892
|
"type": "string",
|
|
@@ -2941,6 +2952,14 @@
|
|
|
2941
2952
|
"ValueDescription"
|
|
2942
2953
|
]
|
|
2943
2954
|
},
|
|
2955
|
+
"enableEnlargeImage": {
|
|
2956
|
+
"type": "boolean",
|
|
2957
|
+
"description": "Property for defining if the avatar image can be enlarged.",
|
|
2958
|
+
"artifactType": "XMLProperty",
|
|
2959
|
+
"metadata": {
|
|
2960
|
+
"type": "Property"
|
|
2961
|
+
}
|
|
2962
|
+
},
|
|
2944
2963
|
"fieldEditStyle": {
|
|
2945
2964
|
"type": "string",
|
|
2946
2965
|
"description": "Determines how the field should be rendered, e.g. as radio buttons. \nIf not all prerequisites are met, the field will default back to the standard rendering.\n",
|
|
@@ -3042,7 +3061,7 @@
|
|
|
3042
3061
|
]
|
|
3043
3062
|
},
|
|
3044
3063
|
"textLinesEdit": {
|
|
3045
|
-
"type": "
|
|
3064
|
+
"type": "number",
|
|
3046
3065
|
"description": "Maximum number of lines for multiline texts in edit mode.\n",
|
|
3047
3066
|
"artifactType": "XMLProperty",
|
|
3048
3067
|
"metadata": {
|
|
@@ -3050,7 +3069,7 @@
|
|
|
3050
3069
|
}
|
|
3051
3070
|
},
|
|
3052
3071
|
"textMaxCharactersDisplay": {
|
|
3053
|
-
"type": "
|
|
3072
|
+
"type": "number",
|
|
3054
3073
|
"description": "Maximum number of characters from the beginning of the text field that are shown initially.\n",
|
|
3055
3074
|
"artifactType": "XMLProperty",
|
|
3056
3075
|
"metadata": {
|
|
@@ -3058,7 +3077,7 @@
|
|
|
3058
3077
|
}
|
|
3059
3078
|
},
|
|
3060
3079
|
"textMaxLength": {
|
|
3061
|
-
"type": "
|
|
3080
|
+
"type": "number",
|
|
3062
3081
|
"description": "Defines the maximum number of characters for the multiline text value.\n\nIf a multiline text exceeds the maximum number of allowed characters, the counter below the input field displays the exact number.\n",
|
|
3063
3082
|
"artifactType": "XMLProperty",
|
|
3064
3083
|
"metadata": {
|
|
@@ -3066,7 +3085,7 @@
|
|
|
3066
3085
|
}
|
|
3067
3086
|
},
|
|
3068
3087
|
"textMaxLines": {
|
|
3069
|
-
"type": "
|
|
3088
|
+
"type": "number",
|
|
3070
3089
|
"description": "Maximum number of lines that multiline texts in edit mode can grow to.\n",
|
|
3071
3090
|
"artifactType": "XMLProperty",
|
|
3072
3091
|
"metadata": {
|
|
@@ -3118,7 +3137,7 @@
|
|
|
3118
3137
|
}
|
|
3119
3138
|
},
|
|
3120
3139
|
"navigationPropertiesForPersonalization": {
|
|
3121
|
-
"
|
|
3140
|
+
"$ref": "#/definitions/string[]",
|
|
3122
3141
|
"description": "Comma separated list of navigation properties which are considered for filtering.",
|
|
3123
3142
|
"artifactType": "XMLProperty",
|
|
3124
3143
|
"metadata": {
|
|
@@ -3179,7 +3198,7 @@
|
|
|
3179
3198
|
},
|
|
3180
3199
|
"filterChanged": {
|
|
3181
3200
|
"type": "string",
|
|
3182
|
-
"description": "This event is fired after either a filter value or the visibility of a filter item has been changed. The event contains conditions that
|
|
3201
|
+
"description": "This event is fired after either a filter value or the visibility of a filter item has been changed. The event contains conditions that are used as filters.",
|
|
3183
3202
|
"artifactType": "XMLProperty",
|
|
3184
3203
|
"metadata": {
|
|
3185
3204
|
"type": "Event"
|
|
@@ -3230,7 +3249,7 @@
|
|
|
3230
3249
|
}
|
|
3231
3250
|
},
|
|
3232
3251
|
"navigationPropertiesForPersonalization": {
|
|
3233
|
-
"
|
|
3252
|
+
"$ref": "#/definitions/string[]",
|
|
3234
3253
|
"description": "Comma separated list of navigation properties which are considered for filtering.",
|
|
3235
3254
|
"artifactType": "XMLProperty",
|
|
3236
3255
|
"metadata": {
|
|
@@ -3291,7 +3310,7 @@
|
|
|
3291
3310
|
},
|
|
3292
3311
|
"filterChanged": {
|
|
3293
3312
|
"type": "string",
|
|
3294
|
-
"description": "This event is fired after either a filter value or the visibility of a filter item has been changed. The event contains conditions that
|
|
3313
|
+
"description": "This event is fired after either a filter value or the visibility of a filter item has been changed. The event contains conditions that are used as filters.",
|
|
3295
3314
|
"artifactType": "XMLProperty",
|
|
3296
3315
|
"metadata": {
|
|
3297
3316
|
"type": "Event"
|
|
@@ -3325,6 +3344,14 @@
|
|
|
3325
3344
|
"type": "Property"
|
|
3326
3345
|
}
|
|
3327
3346
|
},
|
|
3347
|
+
"availability": {
|
|
3348
|
+
"type": "string",
|
|
3349
|
+
"description": "The filter field availability.\nAllowed values are `Default`, `Adaptation`, and `Hidden`\n",
|
|
3350
|
+
"artifactType": "XMLProperty",
|
|
3351
|
+
"metadata": {
|
|
3352
|
+
"type": "Property"
|
|
3353
|
+
}
|
|
3354
|
+
},
|
|
3328
3355
|
"key": {
|
|
3329
3356
|
"type": "string",
|
|
3330
3357
|
"description": "The property name of the FilterField",
|
|
@@ -3355,7 +3382,7 @@
|
|
|
3355
3382
|
},
|
|
3356
3383
|
"property": {
|
|
3357
3384
|
"type": "string",
|
|
3358
|
-
"description": "Defines which property
|
|
3385
|
+
"description": "Defines which property are influenced by the FilterField.\nThis must be a valid property of the entity as this can be used for SAP Companion integration\n",
|
|
3359
3386
|
"artifactType": "XMLProperty",
|
|
3360
3387
|
"metadata": {
|
|
3361
3388
|
"type": "Property"
|
|
@@ -3471,11 +3498,16 @@
|
|
|
3471
3498
|
},
|
|
3472
3499
|
"layout": {
|
|
3473
3500
|
"type": "object",
|
|
3474
|
-
"
|
|
3475
|
-
|
|
3501
|
+
"additionalProperties": {
|
|
3502
|
+
"$ref": "#/definitions/sap.fe.macros.form.FormLayoutOptions"
|
|
3503
|
+
},
|
|
3504
|
+
"isViewNode": false,
|
|
3476
3505
|
"metadata": {
|
|
3477
|
-
"
|
|
3478
|
-
|
|
3506
|
+
"path": [],
|
|
3507
|
+
"type": "Aggregation",
|
|
3508
|
+
"aggregationCardinality": "Single"
|
|
3509
|
+
},
|
|
3510
|
+
"description": "Defines the layout to be used within the form.\nIt defaults to the ColumnLayout, but you can also use a ResponsiveGridLayout.\nAll the properties of the ResponsiveGridLayout can be added to the configuration."
|
|
3479
3511
|
},
|
|
3480
3512
|
"metaPath": {
|
|
3481
3513
|
"type": "string",
|
|
@@ -3510,6 +3542,203 @@
|
|
|
3510
3542
|
"type": "Property"
|
|
3511
3543
|
}
|
|
3512
3544
|
},
|
|
3545
|
+
"id": {
|
|
3546
|
+
"type": "string",
|
|
3547
|
+
"description": "Unique id of control",
|
|
3548
|
+
"artifactType": "XMLProperty",
|
|
3549
|
+
"metadata": {
|
|
3550
|
+
"type": "Property"
|
|
3551
|
+
}
|
|
3552
|
+
},
|
|
3553
|
+
"fields": {
|
|
3554
|
+
"type": "object",
|
|
3555
|
+
"additionalProperties": {
|
|
3556
|
+
"$ref": "#/definitions/sap.fe.macros.FormElement"
|
|
3557
|
+
},
|
|
3558
|
+
"isViewNode": true,
|
|
3559
|
+
"metadata": {
|
|
3560
|
+
"path": [],
|
|
3561
|
+
"type": "Aggregation",
|
|
3562
|
+
"aggregationCardinality": "Multiple"
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3565
|
+
},
|
|
3566
|
+
"additionalProperties": false,
|
|
3567
|
+
"metadata": {
|
|
3568
|
+
"path": [],
|
|
3569
|
+
"type": "Control",
|
|
3570
|
+
"defaultAggregation": "fields"
|
|
3571
|
+
}
|
|
3572
|
+
},
|
|
3573
|
+
"sap.fe.macros.form.FormLayoutOptions": {
|
|
3574
|
+
"description": "Configuration options for the Form layout",
|
|
3575
|
+
"isViewNode": false,
|
|
3576
|
+
"type": "object",
|
|
3577
|
+
"properties": {
|
|
3578
|
+
"adjustLabelSpan": {
|
|
3579
|
+
"type": "boolean",
|
|
3580
|
+
"description": "If set, the usage of `labelSpanL` and `labelSpanXL` is dependent on the size of the used column.\nIf the space is less than 600px (e.g., 2 columns are used), `labelSpanM` is used instead.\nApplicable for ResponsiveGridLayout type\n",
|
|
3581
|
+
"artifactType": "XMLProperty",
|
|
3582
|
+
"metadata": {
|
|
3583
|
+
"type": "Property"
|
|
3584
|
+
}
|
|
3585
|
+
},
|
|
3586
|
+
"backgroundDesign": {
|
|
3587
|
+
"type": "string",
|
|
3588
|
+
"description": "Defines the background color of the form",
|
|
3589
|
+
"artifactType": "XMLProperty",
|
|
3590
|
+
"metadata": {
|
|
3591
|
+
"type": "Property"
|
|
3592
|
+
}
|
|
3593
|
+
},
|
|
3594
|
+
"breakpointL": {
|
|
3595
|
+
"type": "number",
|
|
3596
|
+
"description": "The breakpoint (in pixels) between L size and XL size for the ResponsiveGridLayout\nApplicable for ResponsiveGridLayout type\n",
|
|
3597
|
+
"artifactType": "XMLProperty",
|
|
3598
|
+
"metadata": {
|
|
3599
|
+
"type": "Property"
|
|
3600
|
+
}
|
|
3601
|
+
},
|
|
3602
|
+
"breakpointM": {
|
|
3603
|
+
"type": "number",
|
|
3604
|
+
"description": "The breakpoint (in pixels) between M size and L size for the ResponsiveGridLayout\nApplicable for ResponsiveGridLayout type\n",
|
|
3605
|
+
"artifactType": "XMLProperty",
|
|
3606
|
+
"metadata": {
|
|
3607
|
+
"type": "Property"
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
"breakpointXL": {
|
|
3611
|
+
"type": "number",
|
|
3612
|
+
"description": "The breakpoint (in pixels) between XL size and XXL size for the ResponsiveGridLayout\nApplicable for ResponsiveGridLayout type\n",
|
|
3613
|
+
"artifactType": "XMLProperty",
|
|
3614
|
+
"metadata": {
|
|
3615
|
+
"type": "Property"
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
"columnsL": {
|
|
3619
|
+
"type": "number",
|
|
3620
|
+
"description": "Number of columns for L size\nApplicable for ColumnLayout type\n",
|
|
3621
|
+
"artifactType": "XMLProperty",
|
|
3622
|
+
"metadata": {
|
|
3623
|
+
"type": "Property"
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
"columnsM": {
|
|
3627
|
+
"type": "number",
|
|
3628
|
+
"description": "Number of columns for M size\nApplicable for ColumnLayout type\n",
|
|
3629
|
+
"artifactType": "XMLProperty",
|
|
3630
|
+
"metadata": {
|
|
3631
|
+
"type": "Property"
|
|
3632
|
+
}
|
|
3633
|
+
},
|
|
3634
|
+
"columnsXL": {
|
|
3635
|
+
"type": "number",
|
|
3636
|
+
"description": "Number of columns for XL size\nApplicable for ColumnLayout type\n",
|
|
3637
|
+
"artifactType": "XMLProperty",
|
|
3638
|
+
"metadata": {
|
|
3639
|
+
"type": "Property"
|
|
3640
|
+
}
|
|
3641
|
+
},
|
|
3642
|
+
"emptyCellsLarge": {
|
|
3643
|
+
"type": "number",
|
|
3644
|
+
"description": "Number of grid cells that are empty at the end of a row in large screen size\nApplicable for ColumnLayout type\n",
|
|
3645
|
+
"artifactType": "XMLProperty",
|
|
3646
|
+
"metadata": {
|
|
3647
|
+
"type": "Property"
|
|
3648
|
+
}
|
|
3649
|
+
},
|
|
3650
|
+
"emptySpanL": {
|
|
3651
|
+
"type": "number",
|
|
3652
|
+
"description": "Number of empty grid cells that are added on the end of each line in L size\nApplicable for ResponsiveGridLayout type\n",
|
|
3653
|
+
"artifactType": "XMLProperty",
|
|
3654
|
+
"metadata": {
|
|
3655
|
+
"type": "Property"
|
|
3656
|
+
}
|
|
3657
|
+
},
|
|
3658
|
+
"emptySpanM": {
|
|
3659
|
+
"type": "number",
|
|
3660
|
+
"description": "Number of empty grid cells that are added on the end of each line in M size\nApplicable for ResponsiveGridLayout type\n",
|
|
3661
|
+
"artifactType": "XMLProperty",
|
|
3662
|
+
"metadata": {
|
|
3663
|
+
"type": "Property"
|
|
3664
|
+
}
|
|
3665
|
+
},
|
|
3666
|
+
"emptySpanS": {
|
|
3667
|
+
"type": "number",
|
|
3668
|
+
"description": "Number of empty grid cells that are added on the end of each line in S size\nApplicable for ResponsiveGridLayout type\n",
|
|
3669
|
+
"artifactType": "XMLProperty",
|
|
3670
|
+
"metadata": {
|
|
3671
|
+
"type": "Property"
|
|
3672
|
+
}
|
|
3673
|
+
},
|
|
3674
|
+
"emptySpanXL": {
|
|
3675
|
+
"type": "number",
|
|
3676
|
+
"description": "Number of empty grid cells that are added on the end of each line in XL size\nApplicable for ResponsiveGridLayout type\n",
|
|
3677
|
+
"artifactType": "XMLProperty",
|
|
3678
|
+
"metadata": {
|
|
3679
|
+
"type": "Property"
|
|
3680
|
+
}
|
|
3681
|
+
},
|
|
3682
|
+
"labelCellsLarge": {
|
|
3683
|
+
"type": "number",
|
|
3684
|
+
"description": "Number of grid cells that are reserved for the labels in large screen size\nApplicable for ColumnLayout type\n",
|
|
3685
|
+
"artifactType": "XMLProperty",
|
|
3686
|
+
"metadata": {
|
|
3687
|
+
"type": "Property"
|
|
3688
|
+
}
|
|
3689
|
+
},
|
|
3690
|
+
"labelSpanL": {
|
|
3691
|
+
"type": "number",
|
|
3692
|
+
"description": "Number of grid cells that are used for the labels in L size\nApplicable for ResponsiveGridLayout type\n",
|
|
3693
|
+
"artifactType": "XMLProperty",
|
|
3694
|
+
"metadata": {
|
|
3695
|
+
"type": "Property"
|
|
3696
|
+
}
|
|
3697
|
+
},
|
|
3698
|
+
"labelSpanM": {
|
|
3699
|
+
"type": "number",
|
|
3700
|
+
"description": "Number of grid cells that are used for the labels in M size\nApplicable for ResponsiveGridLayout type\n",
|
|
3701
|
+
"artifactType": "XMLProperty",
|
|
3702
|
+
"metadata": {
|
|
3703
|
+
"type": "Property"
|
|
3704
|
+
}
|
|
3705
|
+
},
|
|
3706
|
+
"labelSpanS": {
|
|
3707
|
+
"type": "number",
|
|
3708
|
+
"description": "Number of grid cells that are used for the labels in S size\nApplicable for ResponsiveGridLayout type\n",
|
|
3709
|
+
"artifactType": "XMLProperty",
|
|
3710
|
+
"metadata": {
|
|
3711
|
+
"type": "Property"
|
|
3712
|
+
}
|
|
3713
|
+
},
|
|
3714
|
+
"labelSpanXL": {
|
|
3715
|
+
"type": "number",
|
|
3716
|
+
"description": "Number of grid cells that are used for the labels in XL size\nApplicable for ResponsiveGridLayout type\n",
|
|
3717
|
+
"artifactType": "XMLProperty",
|
|
3718
|
+
"metadata": {
|
|
3719
|
+
"type": "Property"
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3722
|
+
"singleContainerFullSize": {
|
|
3723
|
+
"type": "boolean",
|
|
3724
|
+
"description": "If set, a single container has the full size of the parent container.\nOtherwise, the container size is determined by the number of columns and the spacing between the columns.\nApplicable for ResponsiveGridLayout type\n",
|
|
3725
|
+
"artifactType": "XMLProperty",
|
|
3726
|
+
"metadata": {
|
|
3727
|
+
"type": "Property"
|
|
3728
|
+
}
|
|
3729
|
+
},
|
|
3730
|
+
"type": {
|
|
3731
|
+
"type": "string",
|
|
3732
|
+
"description": "The layout type to be used for the form",
|
|
3733
|
+
"artifactType": "XMLProperty",
|
|
3734
|
+
"metadata": {
|
|
3735
|
+
"type": "Property"
|
|
3736
|
+
},
|
|
3737
|
+
"enum": [
|
|
3738
|
+
"ColumnLayout",
|
|
3739
|
+
"ResponsiveGridLayout"
|
|
3740
|
+
]
|
|
3741
|
+
},
|
|
3513
3742
|
"id": {
|
|
3514
3743
|
"type": "string",
|
|
3515
3744
|
"description": "Unique id of control",
|
|
@@ -3760,6 +3989,14 @@
|
|
|
3760
3989
|
"isViewNode": false,
|
|
3761
3990
|
"type": "object",
|
|
3762
3991
|
"properties": {
|
|
3992
|
+
"showShareInWorkzone": {
|
|
3993
|
+
"type": "boolean",
|
|
3994
|
+
"description": "Controls visibility of the \"Share in SAP Build Work Zone\" option.\nThis option appears as either \"Share in SAP Jam\" or \"Share in SAP Build Work Zone\"\ndepending on the customer's deployment. Both labels refer to the same functionality.",
|
|
3995
|
+
"artifactType": "XMLProperty",
|
|
3996
|
+
"metadata": {
|
|
3997
|
+
"type": "Property"
|
|
3998
|
+
}
|
|
3999
|
+
},
|
|
3763
4000
|
"id": {
|
|
3764
4001
|
"type": "string",
|
|
3765
4002
|
"description": "Unique id of control",
|
|
@@ -3816,6 +4053,14 @@
|
|
|
3816
4053
|
"type": "Property"
|
|
3817
4054
|
}
|
|
3818
4055
|
},
|
|
4056
|
+
"visible": {
|
|
4057
|
+
"type": "boolean",
|
|
4058
|
+
"description": "Determines whether the action is visible.",
|
|
4059
|
+
"artifactType": "XMLProperty",
|
|
4060
|
+
"metadata": {
|
|
4061
|
+
"type": "Property"
|
|
4062
|
+
}
|
|
4063
|
+
},
|
|
3819
4064
|
"id": {
|
|
3820
4065
|
"type": "string",
|
|
3821
4066
|
"description": "Unique id of control",
|
|
@@ -3893,14 +4138,6 @@
|
|
|
3893
4138
|
},
|
|
3894
4139
|
"i18nClassification": "BUT: Text of the action button"
|
|
3895
4140
|
},
|
|
3896
|
-
"visible": {
|
|
3897
|
-
"type": "boolean",
|
|
3898
|
-
"description": "Determines whether the action is visible.",
|
|
3899
|
-
"artifactType": "XMLProperty",
|
|
3900
|
-
"metadata": {
|
|
3901
|
-
"type": "Property"
|
|
3902
|
-
}
|
|
3903
|
-
},
|
|
3904
4141
|
"press": {
|
|
3905
4142
|
"type": "string",
|
|
3906
4143
|
"description": "Event handler to be called when the user chooses the action",
|
|
@@ -4531,7 +4768,8 @@
|
|
|
4531
4768
|
"path": [],
|
|
4532
4769
|
"type": "Aggregation",
|
|
4533
4770
|
"aggregationCardinality": "Single"
|
|
4534
|
-
}
|
|
4771
|
+
},
|
|
4772
|
+
"description": "Determines the export settings for the column."
|
|
4535
4773
|
}
|
|
4536
4774
|
},
|
|
4537
4775
|
"additionalProperties": false,
|
|
@@ -4586,12 +4824,13 @@
|
|
|
4586
4824
|
"additionalProperties": {
|
|
4587
4825
|
"$ref": "#/definitions/sap.ui.layout.form.FormContainer"
|
|
4588
4826
|
},
|
|
4589
|
-
"isViewNode":
|
|
4827
|
+
"isViewNode": false,
|
|
4590
4828
|
"metadata": {
|
|
4591
4829
|
"path": [],
|
|
4592
4830
|
"type": "Aggregation",
|
|
4593
4831
|
"aggregationCardinality": "Single"
|
|
4594
|
-
}
|
|
4832
|
+
},
|
|
4833
|
+
"description": "The custom form container that can be displayed at the top of the mass edit dialog"
|
|
4595
4834
|
}
|
|
4596
4835
|
},
|
|
4597
4836
|
"additionalProperties": false,
|
|
@@ -5039,7 +5278,8 @@
|
|
|
5039
5278
|
"path": [],
|
|
5040
5279
|
"type": "Aggregation",
|
|
5041
5280
|
"aggregationCardinality": "Single"
|
|
5042
|
-
}
|
|
5281
|
+
},
|
|
5282
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
5043
5283
|
},
|
|
5044
5284
|
"columns": {
|
|
5045
5285
|
"type": "object",
|
|
@@ -5063,7 +5303,8 @@
|
|
|
5063
5303
|
"path": [],
|
|
5064
5304
|
"type": "Aggregation",
|
|
5065
5305
|
"aggregationCardinality": "Single"
|
|
5066
|
-
}
|
|
5306
|
+
},
|
|
5307
|
+
"description": "Aggregate mass edit of the table."
|
|
5067
5308
|
},
|
|
5068
5309
|
"quickVariantSelection": {
|
|
5069
5310
|
"type": "object",
|
|
@@ -5075,7 +5316,8 @@
|
|
|
5075
5316
|
"path": [],
|
|
5076
5317
|
"type": "Aggregation",
|
|
5077
5318
|
"aggregationCardinality": "Single"
|
|
5078
|
-
}
|
|
5319
|
+
},
|
|
5320
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
5079
5321
|
},
|
|
5080
5322
|
"beforeRebindTable": {
|
|
5081
5323
|
"type": "string",
|
|
@@ -5577,7 +5819,8 @@
|
|
|
5577
5819
|
"path": [],
|
|
5578
5820
|
"type": "Aggregation",
|
|
5579
5821
|
"aggregationCardinality": "Single"
|
|
5580
|
-
}
|
|
5822
|
+
},
|
|
5823
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
5581
5824
|
},
|
|
5582
5825
|
"columns": {
|
|
5583
5826
|
"type": "object",
|
|
@@ -5601,7 +5844,8 @@
|
|
|
5601
5844
|
"path": [],
|
|
5602
5845
|
"type": "Aggregation",
|
|
5603
5846
|
"aggregationCardinality": "Single"
|
|
5604
|
-
}
|
|
5847
|
+
},
|
|
5848
|
+
"description": "Aggregate mass edit of the table."
|
|
5605
5849
|
},
|
|
5606
5850
|
"quickVariantSelection": {
|
|
5607
5851
|
"type": "object",
|
|
@@ -5613,7 +5857,8 @@
|
|
|
5613
5857
|
"path": [],
|
|
5614
5858
|
"type": "Aggregation",
|
|
5615
5859
|
"aggregationCardinality": "Single"
|
|
5616
|
-
}
|
|
5860
|
+
},
|
|
5861
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
5617
5862
|
},
|
|
5618
5863
|
"beforeRebindTable": {
|
|
5619
5864
|
"type": "string",
|