@sap/ux-specification 1.144.1 → 1.144.3
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 +65 -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 +316 -311
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +208 -7
- package/dist/schemas/v2/OverviewPageConfig.json +18 -9
- package/dist/schemas/v4/ApplicationV4.json +20 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +597 -166
- package/dist/schemas/v4/ListReportConfig.json +74 -15
- package/dist/schemas/v4/ObjectPageConfig.json +117 -732
- 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 +71 -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 +29 -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 +47 -26
- 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 +33 -22
- 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 +2 -0
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +20 -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/InlineEdit.d.ts +38 -0
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.js +86 -0
- package/dist/specification/src/sync/v4/export/controls/InlineEdit.js.map +1 -0
- 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 +14 -49
- 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/controls/index.d.ts +1 -0
- package/dist/specification/src/sync/v4/export/controls/index.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/index.js +1 -0
- package/dist/specification/src/sync/v4/export/controls/index.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 +216 -46
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts +15 -2
- package/dist/specification/src/sync/v4/export/pages/ListReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js +33 -1
- package/dist/specification/src/sync/v4/export/pages/ListReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/actions.js +4 -4
- package/dist/specification/src/sync/v4/generate/actions.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 +106 -79
- 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 +16 -10
- 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 +64 -32
- 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/generate/utils/inlineEdit.d.ts +18 -0
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.js +91 -0
- package/dist/specification/src/sync/v4/generate/utils/inlineEdit.js.map +1 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.d.ts +156 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.js +192 -0
- package/dist/specification/src/sync/v4/generate/utils/propertiesForEdit.js.map +1 -0
- 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/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/pages/listReport.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 +5 -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 +31 -3
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +310 -58
- 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 +44 -6
- 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 +13 -6
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +14 -7
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/v4/application.d.ts +21 -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/InlineEdit.d.ts +30 -0
- package/dist/types/src/v4/controls/InlineEdit.d.ts.map +1 -0
- package/dist/types/src/v4/controls/InlineEdit.js +3 -0
- package/dist/types/src/v4/controls/InlineEdit.js.map +1 -0
- 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/dist/types/src/v4/controls/Table.d.ts +4 -4
- package/dist/types/src/v4/controls/index.d.ts +1 -0
- package/dist/types/src/v4/controls/index.d.ts.map +1 -1
- package/dist/types/src/v4/controls/index.js +1 -0
- package/dist/types/src/v4/controls/index.js.map +1 -1
- package/dist/types/src/v4/pages/ListReportConfigV4.d.ts +5 -1
- package/dist/types/src/v4/pages/ListReportConfigV4.d.ts.map +1 -1
- package/package.json +8 -8
|
@@ -7,11 +7,13 @@
|
|
|
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",
|
|
13
14
|
"sap.fe.macros.table",
|
|
14
|
-
"sap.fe.macros.controls.section"
|
|
15
|
+
"sap.fe.macros.controls.section",
|
|
16
|
+
"sap.fe.macros.field.mixin"
|
|
15
17
|
]
|
|
16
18
|
},
|
|
17
19
|
"properties": {
|
|
@@ -59,6 +61,95 @@
|
|
|
59
61
|
"defaultAggregation": "popoverContent"
|
|
60
62
|
}
|
|
61
63
|
},
|
|
64
|
+
"sap.fe.macros.AlwaysEditableField": {
|
|
65
|
+
"description": "Building block for creating an always-editable field based on metadata provided by OData V4.\n\nThis building block is designed for use with JSON model bindings in custom dialogs and popups,\nwhere the field must always be editable regardless of OData metadata or draft status.\n\nWhen creating an AlwaysEditableField building block, you must provide an ID.\nUsage example:\n\n<macros:AlwaysEditableField\nid=\"MyAlwaysEditableField\"\nmetaPath=\"MyProperty\"\nvalue=\"{myJSONModel>/myValue}\"\ndescription=\"{myJSONModel>/myDescription}\" />\n\n",
|
|
66
|
+
"isViewNode": true,
|
|
67
|
+
"type": "object",
|
|
68
|
+
"properties": {
|
|
69
|
+
"contextPath": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
72
|
+
"artifactType": "XMLProperty",
|
|
73
|
+
"metadata": {
|
|
74
|
+
"type": "Property"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"description": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"description": "This is used to optionally provide an external description that comes from a different model than the oData model.\nThis must be used in conjunction with the value property.",
|
|
80
|
+
"artifactType": "XMLProperty",
|
|
81
|
+
"metadata": {
|
|
82
|
+
"type": "Property"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"metaPath": {
|
|
86
|
+
"type": "string",
|
|
87
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.\nAlwaysEditableField only supports metadata paths with the Property type.",
|
|
88
|
+
"artifactType": "XMLProperty",
|
|
89
|
+
"metadata": {
|
|
90
|
+
"type": "Property"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"value": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"description": "This is used to optionally provide an external value that comes from a different model than the OData model.\nTypically used with JSON models for custom popup scenarios.",
|
|
96
|
+
"artifactType": "XMLProperty",
|
|
97
|
+
"metadata": {
|
|
98
|
+
"type": "Property"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"vhIdPrefix": {
|
|
102
|
+
"type": "string",
|
|
103
|
+
"description": "Prefix added to the generated ID of the value help used for the field.",
|
|
104
|
+
"artifactType": "XMLProperty",
|
|
105
|
+
"metadata": {
|
|
106
|
+
"type": "Property"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"id": {
|
|
110
|
+
"type": "string",
|
|
111
|
+
"description": "Unique id of control",
|
|
112
|
+
"artifactType": "XMLProperty",
|
|
113
|
+
"metadata": {
|
|
114
|
+
"type": "Property"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"formatOptions": {
|
|
118
|
+
"type": "object",
|
|
119
|
+
"additionalProperties": {
|
|
120
|
+
"$ref": "#/definitions/sap.fe.macros.field.FieldFormatOptions"
|
|
121
|
+
},
|
|
122
|
+
"isViewNode": false,
|
|
123
|
+
"metadata": {
|
|
124
|
+
"path": [],
|
|
125
|
+
"type": "Aggregation",
|
|
126
|
+
"aggregationCardinality": "Single"
|
|
127
|
+
},
|
|
128
|
+
"description": "A set of options that can be configured."
|
|
129
|
+
},
|
|
130
|
+
"change": {
|
|
131
|
+
"type": "string",
|
|
132
|
+
"description": "An event containing details is triggered when the value of the field is changed.",
|
|
133
|
+
"artifactType": "XMLProperty",
|
|
134
|
+
"metadata": {
|
|
135
|
+
"type": "Event"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"liveChange": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"description": "An event containing details is triggered when the value of the field is live changed.\n\nNote: Browsing autocomplete suggestions does not fire the event.",
|
|
141
|
+
"artifactType": "XMLProperty",
|
|
142
|
+
"metadata": {
|
|
143
|
+
"type": "Event"
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"additionalProperties": false,
|
|
148
|
+
"metadata": {
|
|
149
|
+
"path": [],
|
|
150
|
+
"type": "Control"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
62
153
|
"sap.fe.macros.Chart": {
|
|
63
154
|
"description": "Building block used to create a chart based on the metadata provided by OData V4.\nOverview of Building Blocks\n\t\t\t\n\nUsually, a contextPath and metaPath is expected.\nUsage example:\n\n<macros:Chart id=\"MyChart\" contextPath=\"/RootEntity\" metaPath=\"@com.sap.vocabularies.UI.v1.Chart\" />\n\n",
|
|
64
155
|
"isViewNode": true,
|
|
@@ -400,7 +491,8 @@
|
|
|
400
491
|
"path": [],
|
|
401
492
|
"type": "Aggregation",
|
|
402
493
|
"aggregationCardinality": "Single"
|
|
403
|
-
}
|
|
494
|
+
},
|
|
495
|
+
"description": "A set of options that can be configured."
|
|
404
496
|
},
|
|
405
497
|
"change": {
|
|
406
498
|
"type": "string",
|
|
@@ -425,6 +517,110 @@
|
|
|
425
517
|
"type": "Control"
|
|
426
518
|
}
|
|
427
519
|
},
|
|
520
|
+
"sap.fe.macros.FilterBar": {
|
|
521
|
+
"description": "Building block for creating a FilterBar based on the metadata provided by OData V4.\nOverview of Building Blocks\n\t\t\t\n\nUsually, a SelectionFields annotation is expected.\nUsage example:\n\n<macros:FilterBar id=\"MyFilterBar\" metaPath=\"@com.sap.vocabularies.UI.v1.SelectionFields\" />\n\n",
|
|
522
|
+
"isViewNode": true,
|
|
523
|
+
"type": "object",
|
|
524
|
+
"properties": {
|
|
525
|
+
"contextPath": {
|
|
526
|
+
"type": "string",
|
|
527
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
528
|
+
"artifactType": "XMLProperty",
|
|
529
|
+
"metadata": {
|
|
530
|
+
"type": "Property"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"liveMode": {
|
|
534
|
+
"type": "boolean",
|
|
535
|
+
"description": "If true, the search is triggered automatically when a filter value is changed.",
|
|
536
|
+
"artifactType": "XMLProperty",
|
|
537
|
+
"metadata": {
|
|
538
|
+
"type": "Property"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"metaPath": {
|
|
542
|
+
"type": "string",
|
|
543
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
544
|
+
"artifactType": "XMLProperty",
|
|
545
|
+
"metadata": {
|
|
546
|
+
"type": "Property"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"navigationPropertiesForPersonalization": {
|
|
550
|
+
"$ref": "#/definitions/string[]",
|
|
551
|
+
"description": "Comma separated list of navigation properties which are considered for filtering.",
|
|
552
|
+
"artifactType": "XMLProperty",
|
|
553
|
+
"metadata": {
|
|
554
|
+
"type": "Property"
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"showClearButton": {
|
|
558
|
+
"type": "boolean",
|
|
559
|
+
"description": "Handles the visibility of the 'Clear' button on the FilterBar.",
|
|
560
|
+
"artifactType": "XMLProperty",
|
|
561
|
+
"metadata": {
|
|
562
|
+
"type": "Property"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"showMessages": {
|
|
566
|
+
"type": "boolean",
|
|
567
|
+
"description": "Displays possible errors during the search in a message box",
|
|
568
|
+
"artifactType": "XMLProperty",
|
|
569
|
+
"metadata": {
|
|
570
|
+
"type": "Property"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"id": {
|
|
574
|
+
"type": "string",
|
|
575
|
+
"description": "Unique id of control",
|
|
576
|
+
"artifactType": "XMLProperty",
|
|
577
|
+
"metadata": {
|
|
578
|
+
"type": "Property"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"filterFields": {
|
|
582
|
+
"type": "object",
|
|
583
|
+
"additionalProperties": {
|
|
584
|
+
"$ref": "#/definitions/sap.fe.macros.filterBar.FilterField"
|
|
585
|
+
},
|
|
586
|
+
"isViewNode": true,
|
|
587
|
+
"metadata": {
|
|
588
|
+
"path": [],
|
|
589
|
+
"type": "Aggregation",
|
|
590
|
+
"aggregationCardinality": "Multiple"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"afterClear": {
|
|
594
|
+
"type": "string",
|
|
595
|
+
"description": "This event is fired when the 'Clear' button is pressed. This is only possible when the 'Clear' button is enabled.",
|
|
596
|
+
"artifactType": "XMLProperty",
|
|
597
|
+
"metadata": {
|
|
598
|
+
"type": "Event"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"filterChanged": {
|
|
602
|
+
"type": "string",
|
|
603
|
+
"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.",
|
|
604
|
+
"artifactType": "XMLProperty",
|
|
605
|
+
"metadata": {
|
|
606
|
+
"type": "Event"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"search": {
|
|
610
|
+
"type": "string",
|
|
611
|
+
"description": "This event is fired when the 'Go' button is pressed or after a condition change.",
|
|
612
|
+
"artifactType": "XMLProperty",
|
|
613
|
+
"metadata": {
|
|
614
|
+
"type": "Event"
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"additionalProperties": false,
|
|
619
|
+
"metadata": {
|
|
620
|
+
"path": [],
|
|
621
|
+
"type": "Control"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
428
624
|
"sap.fe.macros.FormElement": {
|
|
429
625
|
"description": "Building block used to create a form element based on the metadata provided by OData V4.",
|
|
430
626
|
"isViewNode": true,
|
|
@@ -892,7 +1088,8 @@
|
|
|
892
1088
|
"path": [],
|
|
893
1089
|
"type": "Aggregation",
|
|
894
1090
|
"aggregationCardinality": "Single"
|
|
895
|
-
}
|
|
1091
|
+
},
|
|
1092
|
+
"description": "Footer content (for example, toolbar with buttons)."
|
|
896
1093
|
},
|
|
897
1094
|
"headerContent": {
|
|
898
1095
|
"type": "object",
|
|
@@ -1180,12 +1377,13 @@
|
|
|
1180
1377
|
"additionalProperties": {
|
|
1181
1378
|
"$ref": "#/definitions/sap.fe.macros.share.ShareOptions"
|
|
1182
1379
|
},
|
|
1183
|
-
"isViewNode":
|
|
1380
|
+
"isViewNode": false,
|
|
1184
1381
|
"metadata": {
|
|
1185
1382
|
"path": [],
|
|
1186
1383
|
"type": "Aggregation",
|
|
1187
1384
|
"aggregationCardinality": "Single"
|
|
1188
|
-
}
|
|
1385
|
+
},
|
|
1386
|
+
"description": "Supported Share options sap.fe.macros.share.ShareOptions."
|
|
1189
1387
|
}
|
|
1190
1388
|
},
|
|
1191
1389
|
"additionalProperties": false,
|
|
@@ -1437,6 +1635,14 @@
|
|
|
1437
1635
|
"type": "Property"
|
|
1438
1636
|
}
|
|
1439
1637
|
},
|
|
1638
|
+
"initialLoad": {
|
|
1639
|
+
"type": "boolean",
|
|
1640
|
+
"description": "Indicates if the table should load data when initialized.\nThis property is used only if a filter bar is associated with the table and doesn't use the liveMode.\nIf set to `true`, the table loads data on initialization if the filter bar has no mandatory filters or the mandatory filters are filled in.\nIf set to `false`, the table waits for the filter bar to be filled in before loading data.\nThe default value is `false`.",
|
|
1641
|
+
"artifactType": "XMLProperty",
|
|
1642
|
+
"metadata": {
|
|
1643
|
+
"type": "Property"
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1440
1646
|
"isSearchable": {
|
|
1441
1647
|
"type": "boolean",
|
|
1442
1648
|
"description": "Defines whether to display the search action.",
|
|
@@ -1647,7 +1853,8 @@
|
|
|
1647
1853
|
"path": [],
|
|
1648
1854
|
"type": "Aggregation",
|
|
1649
1855
|
"aggregationCardinality": "Single"
|
|
1650
|
-
}
|
|
1856
|
+
},
|
|
1857
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
1651
1858
|
},
|
|
1652
1859
|
"columns": {
|
|
1653
1860
|
"type": "object",
|
|
@@ -1671,7 +1878,8 @@
|
|
|
1671
1878
|
"path": [],
|
|
1672
1879
|
"type": "Aggregation",
|
|
1673
1880
|
"aggregationCardinality": "Single"
|
|
1674
|
-
}
|
|
1881
|
+
},
|
|
1882
|
+
"description": "Aggregate mass edit of the table."
|
|
1675
1883
|
},
|
|
1676
1884
|
"quickVariantSelection": {
|
|
1677
1885
|
"type": "object",
|
|
@@ -1683,7 +1891,8 @@
|
|
|
1683
1891
|
"path": [],
|
|
1684
1892
|
"type": "Aggregation",
|
|
1685
1893
|
"aggregationCardinality": "Single"
|
|
1686
|
-
}
|
|
1894
|
+
},
|
|
1895
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
1687
1896
|
},
|
|
1688
1897
|
"beforeRebindTable": {
|
|
1689
1898
|
"type": "string",
|
|
@@ -1882,6 +2091,14 @@
|
|
|
1882
2091
|
"type": "Property"
|
|
1883
2092
|
}
|
|
1884
2093
|
},
|
|
2094
|
+
"initialLoad": {
|
|
2095
|
+
"type": "boolean",
|
|
2096
|
+
"description": "Indicates if the table should load data when initialized.\nThis property is used only if a filter bar is associated with the table and doesn't use the liveMode.\nIf set to `true`, the table loads data on initialization if the filter bar has no mandatory filters or the mandatory filters are filled in.\nIf set to `false`, the table waits for the filter bar to be filled in before loading data.\nThe default value is `false`.",
|
|
2097
|
+
"artifactType": "XMLProperty",
|
|
2098
|
+
"metadata": {
|
|
2099
|
+
"type": "Property"
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
1885
2102
|
"isCopyToPositionAllowed": {
|
|
1886
2103
|
"type": "string",
|
|
1887
2104
|
"description": "Defines the extension point to control whether a source node can be copied to a specific parent node.\n",
|
|
@@ -2119,7 +2336,8 @@
|
|
|
2119
2336
|
"path": [],
|
|
2120
2337
|
"type": "Aggregation",
|
|
2121
2338
|
"aggregationCardinality": "Single"
|
|
2122
|
-
}
|
|
2339
|
+
},
|
|
2340
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
2123
2341
|
},
|
|
2124
2342
|
"columns": {
|
|
2125
2343
|
"type": "object",
|
|
@@ -2143,7 +2361,8 @@
|
|
|
2143
2361
|
"path": [],
|
|
2144
2362
|
"type": "Aggregation",
|
|
2145
2363
|
"aggregationCardinality": "Single"
|
|
2146
|
-
}
|
|
2364
|
+
},
|
|
2365
|
+
"description": "Aggregate mass edit of the table."
|
|
2147
2366
|
},
|
|
2148
2367
|
"quickVariantSelection": {
|
|
2149
2368
|
"type": "object",
|
|
@@ -2155,7 +2374,8 @@
|
|
|
2155
2374
|
"path": [],
|
|
2156
2375
|
"type": "Aggregation",
|
|
2157
2376
|
"aggregationCardinality": "Single"
|
|
2158
|
-
}
|
|
2377
|
+
},
|
|
2378
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
2159
2379
|
},
|
|
2160
2380
|
"beforeRebindTable": {
|
|
2161
2381
|
"type": "string",
|
|
@@ -2875,7 +3095,8 @@
|
|
|
2875
3095
|
"path": [],
|
|
2876
3096
|
"type": "Aggregation",
|
|
2877
3097
|
"aggregationCardinality": "Single"
|
|
2878
|
-
}
|
|
3098
|
+
},
|
|
3099
|
+
"description": "A set of options that can be configured."
|
|
2879
3100
|
},
|
|
2880
3101
|
"change": {
|
|
2881
3102
|
"type": "string",
|
|
@@ -2941,6 +3162,14 @@
|
|
|
2941
3162
|
"ValueDescription"
|
|
2942
3163
|
]
|
|
2943
3164
|
},
|
|
3165
|
+
"enableEnlargeImage": {
|
|
3166
|
+
"type": "boolean",
|
|
3167
|
+
"description": "Property for defining if the avatar image can be enlarged.",
|
|
3168
|
+
"artifactType": "XMLProperty",
|
|
3169
|
+
"metadata": {
|
|
3170
|
+
"type": "Property"
|
|
3171
|
+
}
|
|
3172
|
+
},
|
|
2944
3173
|
"fieldEditStyle": {
|
|
2945
3174
|
"type": "string",
|
|
2946
3175
|
"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",
|
|
@@ -3007,7 +3236,7 @@
|
|
|
3007
3236
|
},
|
|
3008
3237
|
"showDate": {
|
|
3009
3238
|
"type": "boolean",
|
|
3010
|
-
"description": "Defines if the date part of a date time with timezone field
|
|
3239
|
+
"description": "Defines if the date part of a date time with timezone field is shown. \n\nThe dateTimeOffset field must have a timezone annotation.\nThe default value is true.\n",
|
|
3011
3240
|
"artifactType": "XMLProperty",
|
|
3012
3241
|
"metadata": {
|
|
3013
3242
|
"type": "Property"
|
|
@@ -3031,7 +3260,7 @@
|
|
|
3031
3260
|
},
|
|
3032
3261
|
"textExpandBehaviorDisplay": {
|
|
3033
3262
|
"type": "string",
|
|
3034
|
-
"description": "Defines how the full text
|
|
3263
|
+
"description": "Defines how the full text is displayed.\n\nAllowed values are \"InPlace\" and \"Popover\"\n",
|
|
3035
3264
|
"artifactType": "XMLProperty",
|
|
3036
3265
|
"metadata": {
|
|
3037
3266
|
"type": "Property"
|
|
@@ -3043,7 +3272,7 @@
|
|
|
3043
3272
|
},
|
|
3044
3273
|
"textLinesEdit": {
|
|
3045
3274
|
"type": "any",
|
|
3046
|
-
"description": "Maximum number of lines for multiline texts in edit mode.\n",
|
|
3275
|
+
"description": "Maximum number of lines for multiline texts in edit mode.\nSupports int and string type.\n",
|
|
3047
3276
|
"artifactType": "XMLProperty",
|
|
3048
3277
|
"metadata": {
|
|
3049
3278
|
"type": "Property"
|
|
@@ -3051,7 +3280,7 @@
|
|
|
3051
3280
|
},
|
|
3052
3281
|
"textMaxCharactersDisplay": {
|
|
3053
3282
|
"type": "any",
|
|
3054
|
-
"description": "Maximum number of characters from the beginning of the text field that are shown initially.\n",
|
|
3283
|
+
"description": "Maximum number of characters from the beginning of the text field that are shown initially.\nSupports int and string type.\n",
|
|
3055
3284
|
"artifactType": "XMLProperty",
|
|
3056
3285
|
"metadata": {
|
|
3057
3286
|
"type": "Property"
|
|
@@ -3059,7 +3288,7 @@
|
|
|
3059
3288
|
},
|
|
3060
3289
|
"textMaxLength": {
|
|
3061
3290
|
"type": "any",
|
|
3062
|
-
"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",
|
|
3291
|
+
"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.\nSupports int and string type.\n",
|
|
3063
3292
|
"artifactType": "XMLProperty",
|
|
3064
3293
|
"metadata": {
|
|
3065
3294
|
"type": "Property"
|
|
@@ -3067,7 +3296,7 @@
|
|
|
3067
3296
|
},
|
|
3068
3297
|
"textMaxLines": {
|
|
3069
3298
|
"type": "any",
|
|
3070
|
-
"description": "Maximum number of lines that multiline texts in edit mode can grow to.\n",
|
|
3299
|
+
"description": "Maximum number of lines that multiline texts in edit mode can grow to.\nSupports int and string type.\n",
|
|
3071
3300
|
"artifactType": "XMLProperty",
|
|
3072
3301
|
"metadata": {
|
|
3073
3302
|
"type": "Property"
|
|
@@ -3089,7 +3318,7 @@
|
|
|
3089
3318
|
}
|
|
3090
3319
|
},
|
|
3091
3320
|
"sap.fe.macros.filterBar.FilterBar": {
|
|
3092
|
-
"description": "Usage example:\n\nsap.ui.require([\"sap/fe/macros/filterBar/FilterBar\"], function(FilterBar) {\n\t ...\n\t new FilterBar(\"MyFilterBar\", {metaPath:\"@com.sap.vocabularies.UI.v1.SelectionFields\"})\n})\n\nThis is
|
|
3321
|
+
"description": "Usage example:\n\nsap.ui.require([\"sap/fe/macros/filterBar/FilterBar\"], function(FilterBar) {\n\t ...\n\t new FilterBar(\"MyFilterBar\", {metaPath:\"@com.sap.vocabularies.UI.v1.SelectionFields\"})\n})\n\nThis is an experimental API because the structure of the generated content has changed to be closer to the FilterBar that you get from the templates.\nThe public method and property has not changed but the internal structure has changed so be careful on your usage.\n",
|
|
3093
3322
|
"isViewNode": true,
|
|
3094
3323
|
"type": "object",
|
|
3095
3324
|
"properties": {
|
|
@@ -3118,7 +3347,7 @@
|
|
|
3118
3347
|
}
|
|
3119
3348
|
},
|
|
3120
3349
|
"navigationPropertiesForPersonalization": {
|
|
3121
|
-
"
|
|
3350
|
+
"$ref": "#/definitions/string[]",
|
|
3122
3351
|
"description": "Comma separated list of navigation properties which are considered for filtering.",
|
|
3123
3352
|
"artifactType": "XMLProperty",
|
|
3124
3353
|
"metadata": {
|
|
@@ -3141,14 +3370,6 @@
|
|
|
3141
3370
|
"type": "Property"
|
|
3142
3371
|
}
|
|
3143
3372
|
},
|
|
3144
|
-
"visible": {
|
|
3145
|
-
"type": "boolean",
|
|
3146
|
-
"description": "Parameter which sets the visibility of the FilterBar building block",
|
|
3147
|
-
"artifactType": "XMLProperty",
|
|
3148
|
-
"metadata": {
|
|
3149
|
-
"type": "Property"
|
|
3150
|
-
}
|
|
3151
|
-
},
|
|
3152
3373
|
"id": {
|
|
3153
3374
|
"type": "string",
|
|
3154
3375
|
"description": "Unique id of control",
|
|
@@ -3179,7 +3400,7 @@
|
|
|
3179
3400
|
},
|
|
3180
3401
|
"filterChanged": {
|
|
3181
3402
|
"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
|
|
3403
|
+
"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
3404
|
"artifactType": "XMLProperty",
|
|
3184
3405
|
"metadata": {
|
|
3185
3406
|
"type": "Event"
|
|
@@ -3200,109 +3421,85 @@
|
|
|
3200
3421
|
"type": "Control"
|
|
3201
3422
|
}
|
|
3202
3423
|
},
|
|
3203
|
-
"sap.fe.macros.
|
|
3204
|
-
"description": "
|
|
3424
|
+
"sap.fe.macros.filterBar.FilterField": {
|
|
3425
|
+
"description": "Definition of a custom filter to be used inside the FilterBar.\nThe template for the FilterField has to be provided as the default aggregation\nOverview of Building Blocks\n\t\t\t\n",
|
|
3205
3426
|
"isViewNode": true,
|
|
3206
3427
|
"type": "object",
|
|
3207
3428
|
"properties": {
|
|
3208
|
-
"
|
|
3429
|
+
"anchor": {
|
|
3209
3430
|
"type": "string",
|
|
3210
|
-
"description": "
|
|
3431
|
+
"description": "Reference to the key of another filter already displayed in the table to properly place this one",
|
|
3211
3432
|
"artifactType": "XMLProperty",
|
|
3212
3433
|
"metadata": {
|
|
3213
3434
|
"type": "Property"
|
|
3214
3435
|
}
|
|
3215
3436
|
},
|
|
3216
|
-
"
|
|
3217
|
-
"type": "
|
|
3218
|
-
"description": "
|
|
3437
|
+
"availability": {
|
|
3438
|
+
"type": "string",
|
|
3439
|
+
"description": "The filter field availability.\nAllowed values are `Default`, `Adaptation`, and `Hidden`\n",
|
|
3219
3440
|
"artifactType": "XMLProperty",
|
|
3220
3441
|
"metadata": {
|
|
3221
3442
|
"type": "Property"
|
|
3222
3443
|
}
|
|
3223
3444
|
},
|
|
3224
|
-
"
|
|
3445
|
+
"key": {
|
|
3225
3446
|
"type": "string",
|
|
3226
|
-
"description": "
|
|
3447
|
+
"description": "The property name of the FilterField",
|
|
3227
3448
|
"artifactType": "XMLProperty",
|
|
3228
3449
|
"metadata": {
|
|
3229
3450
|
"type": "Property"
|
|
3230
3451
|
}
|
|
3231
3452
|
},
|
|
3232
|
-
"
|
|
3453
|
+
"label": {
|
|
3233
3454
|
"type": "string",
|
|
3234
|
-
"description": "
|
|
3455
|
+
"description": "The text that will be displayed for this FilterField",
|
|
3235
3456
|
"artifactType": "XMLProperty",
|
|
3236
3457
|
"metadata": {
|
|
3237
3458
|
"type": "Property"
|
|
3238
3459
|
}
|
|
3239
3460
|
},
|
|
3240
|
-
"
|
|
3241
|
-
"type": "
|
|
3242
|
-
"description": "
|
|
3461
|
+
"placement": {
|
|
3462
|
+
"type": "string",
|
|
3463
|
+
"description": "Defines where this filter should be placed relative to the defined anchor\nAllowed values are `Before` and `After`\n",
|
|
3243
3464
|
"artifactType": "XMLProperty",
|
|
3244
3465
|
"metadata": {
|
|
3245
3466
|
"type": "Property"
|
|
3246
|
-
}
|
|
3467
|
+
},
|
|
3468
|
+
"enum": [
|
|
3469
|
+
"After",
|
|
3470
|
+
"Before"
|
|
3471
|
+
]
|
|
3247
3472
|
},
|
|
3248
|
-
"
|
|
3249
|
-
"type": "
|
|
3250
|
-
"description": "
|
|
3473
|
+
"property": {
|
|
3474
|
+
"type": "string",
|
|
3475
|
+
"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",
|
|
3251
3476
|
"artifactType": "XMLProperty",
|
|
3252
3477
|
"metadata": {
|
|
3253
3478
|
"type": "Property"
|
|
3254
3479
|
}
|
|
3255
3480
|
},
|
|
3256
|
-
"
|
|
3481
|
+
"required": {
|
|
3257
3482
|
"type": "boolean",
|
|
3258
|
-
"description": "
|
|
3483
|
+
"description": "If set, the FilterField will be marked as a mandatory field.",
|
|
3259
3484
|
"artifactType": "XMLProperty",
|
|
3260
3485
|
"metadata": {
|
|
3261
3486
|
"type": "Property"
|
|
3262
3487
|
}
|
|
3263
3488
|
},
|
|
3264
|
-
"
|
|
3265
|
-
"type": "
|
|
3266
|
-
"description": "
|
|
3489
|
+
"showMessages": {
|
|
3490
|
+
"type": "boolean",
|
|
3491
|
+
"description": "This property is not required at filter field level. To achieve the desired behavior, specify the showMessages property in the FilterBar building block.",
|
|
3267
3492
|
"artifactType": "XMLProperty",
|
|
3268
3493
|
"metadata": {
|
|
3269
3494
|
"type": "Property"
|
|
3270
3495
|
}
|
|
3271
3496
|
},
|
|
3272
|
-
"
|
|
3273
|
-
"type": "object",
|
|
3274
|
-
"additionalProperties": {
|
|
3275
|
-
"$ref": "#/definitions/sap.fe.macros.filterBar.FilterField"
|
|
3276
|
-
},
|
|
3277
|
-
"isViewNode": true,
|
|
3278
|
-
"metadata": {
|
|
3279
|
-
"path": [],
|
|
3280
|
-
"type": "Aggregation",
|
|
3281
|
-
"aggregationCardinality": "Multiple"
|
|
3282
|
-
}
|
|
3283
|
-
},
|
|
3284
|
-
"afterClear": {
|
|
3285
|
-
"type": "string",
|
|
3286
|
-
"description": "This event is fired when the 'Clear' button is pressed. This is only possible when the 'Clear' button is enabled.",
|
|
3287
|
-
"artifactType": "XMLProperty",
|
|
3288
|
-
"metadata": {
|
|
3289
|
-
"type": "Event"
|
|
3290
|
-
}
|
|
3291
|
-
},
|
|
3292
|
-
"filterChanged": {
|
|
3293
|
-
"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 will be used as filters.",
|
|
3295
|
-
"artifactType": "XMLProperty",
|
|
3296
|
-
"metadata": {
|
|
3297
|
-
"type": "Event"
|
|
3298
|
-
}
|
|
3299
|
-
},
|
|
3300
|
-
"search": {
|
|
3497
|
+
"id": {
|
|
3301
3498
|
"type": "string",
|
|
3302
|
-
"description": "
|
|
3499
|
+
"description": "Unique id of control",
|
|
3303
3500
|
"artifactType": "XMLProperty",
|
|
3304
3501
|
"metadata": {
|
|
3305
|
-
"type": "
|
|
3502
|
+
"type": "Property"
|
|
3306
3503
|
}
|
|
3307
3504
|
}
|
|
3308
3505
|
},
|
|
@@ -3312,30 +3509,30 @@
|
|
|
3312
3509
|
"type": "Control"
|
|
3313
3510
|
}
|
|
3314
3511
|
},
|
|
3315
|
-
"sap.fe.macros.filterBar.
|
|
3316
|
-
"description": "Definition of
|
|
3512
|
+
"sap.fe.macros.filterBar.FilterFieldOverride": {
|
|
3513
|
+
"description": "Definition of an override for the filter field to be used inside the FilterBar building block.",
|
|
3317
3514
|
"isViewNode": true,
|
|
3318
3515
|
"type": "object",
|
|
3319
3516
|
"properties": {
|
|
3320
3517
|
"anchor": {
|
|
3321
3518
|
"type": "string",
|
|
3322
|
-
"description": "Reference to the key of another filter already displayed in the table to properly place this one",
|
|
3519
|
+
"description": "Reference to the key of another filter already displayed in the table to properly place this one.",
|
|
3323
3520
|
"artifactType": "XMLProperty",
|
|
3324
3521
|
"metadata": {
|
|
3325
3522
|
"type": "Property"
|
|
3326
3523
|
}
|
|
3327
3524
|
},
|
|
3328
|
-
"
|
|
3525
|
+
"availability": {
|
|
3329
3526
|
"type": "string",
|
|
3330
|
-
"description": "The
|
|
3527
|
+
"description": "The filter field availability.\nAllowed values are `Default`, `Adaptation`, and `Hidden`\n",
|
|
3331
3528
|
"artifactType": "XMLProperty",
|
|
3332
3529
|
"metadata": {
|
|
3333
3530
|
"type": "Property"
|
|
3334
3531
|
}
|
|
3335
3532
|
},
|
|
3336
|
-
"
|
|
3533
|
+
"key": {
|
|
3337
3534
|
"type": "string",
|
|
3338
|
-
"description": "
|
|
3535
|
+
"description": "Unique identifier of the filter field to be overridden.",
|
|
3339
3536
|
"artifactType": "XMLProperty",
|
|
3340
3537
|
"metadata": {
|
|
3341
3538
|
"type": "Property"
|
|
@@ -3343,7 +3540,7 @@
|
|
|
3343
3540
|
},
|
|
3344
3541
|
"placement": {
|
|
3345
3542
|
"type": "string",
|
|
3346
|
-
"description": "Defines where this filter
|
|
3543
|
+
"description": "Defines where this filter is placed relative to the defined anchor.\nAllowed values are `Before` and `After`\n",
|
|
3347
3544
|
"artifactType": "XMLProperty",
|
|
3348
3545
|
"metadata": {
|
|
3349
3546
|
"type": "Property"
|
|
@@ -3353,25 +3550,9 @@
|
|
|
3353
3550
|
"Before"
|
|
3354
3551
|
]
|
|
3355
3552
|
},
|
|
3356
|
-
"property": {
|
|
3357
|
-
"type": "string",
|
|
3358
|
-
"description": "Defines which property will be influenced by the FilterField.\nThis must be a valid property of the entity as this can be used for SAP Companion integration\n",
|
|
3359
|
-
"artifactType": "XMLProperty",
|
|
3360
|
-
"metadata": {
|
|
3361
|
-
"type": "Property"
|
|
3362
|
-
}
|
|
3363
|
-
},
|
|
3364
3553
|
"required": {
|
|
3365
3554
|
"type": "boolean",
|
|
3366
|
-
"description": "If set, the FilterField
|
|
3367
|
-
"artifactType": "XMLProperty",
|
|
3368
|
-
"metadata": {
|
|
3369
|
-
"type": "Property"
|
|
3370
|
-
}
|
|
3371
|
-
},
|
|
3372
|
-
"showMessages": {
|
|
3373
|
-
"type": "boolean",
|
|
3374
|
-
"description": "This property is not required at filter field level. To achieve the desired behavior, specify the showMessages property in the FilterBar building block.",
|
|
3555
|
+
"description": "If set, the FilterField is marked as a mandatory field.",
|
|
3375
3556
|
"artifactType": "XMLProperty",
|
|
3376
3557
|
"metadata": {
|
|
3377
3558
|
"type": "Property"
|
|
@@ -3392,50 +3573,60 @@
|
|
|
3392
3573
|
"type": "Control"
|
|
3393
3574
|
}
|
|
3394
3575
|
},
|
|
3395
|
-
"sap.fe.macros.
|
|
3396
|
-
"description": "
|
|
3576
|
+
"sap.fe.macros.Form": {
|
|
3577
|
+
"description": "Building block for creating a Form based on the metadata provided by OData V4.\n\nIt is designed to work based on a FieldGroup annotation but can also work if you provide a ReferenceFacet or a CollectionFacet\nUsage example:\n\n<macros:Form id=\"MyForm\" metaPath=\"@com.sap.vocabularies.UI.v1.FieldGroup#GeneralInformation\" />\n\n",
|
|
3397
3578
|
"isViewNode": true,
|
|
3398
3579
|
"type": "object",
|
|
3399
3580
|
"properties": {
|
|
3400
|
-
"
|
|
3581
|
+
"contextPath": {
|
|
3401
3582
|
"type": "string",
|
|
3402
|
-
"description": "
|
|
3583
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
3403
3584
|
"artifactType": "XMLProperty",
|
|
3404
3585
|
"metadata": {
|
|
3405
3586
|
"type": "Property"
|
|
3406
3587
|
}
|
|
3407
3588
|
},
|
|
3408
|
-
"
|
|
3589
|
+
"layout": {
|
|
3590
|
+
"type": "object",
|
|
3591
|
+
"additionalProperties": {
|
|
3592
|
+
"$ref": "#/definitions/sap.fe.macros.form.FormLayoutOptions"
|
|
3593
|
+
},
|
|
3594
|
+
"isViewNode": false,
|
|
3595
|
+
"metadata": {
|
|
3596
|
+
"path": [],
|
|
3597
|
+
"type": "Aggregation",
|
|
3598
|
+
"aggregationCardinality": "Single"
|
|
3599
|
+
},
|
|
3600
|
+
"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."
|
|
3601
|
+
},
|
|
3602
|
+
"metaPath": {
|
|
3409
3603
|
"type": "string",
|
|
3410
|
-
"description": "
|
|
3604
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
3411
3605
|
"artifactType": "XMLProperty",
|
|
3412
3606
|
"metadata": {
|
|
3413
3607
|
"type": "Property"
|
|
3414
3608
|
}
|
|
3415
3609
|
},
|
|
3416
|
-
"
|
|
3417
|
-
"
|
|
3418
|
-
"description": "
|
|
3610
|
+
"navigationPropertiesForAdaptationDialog": {
|
|
3611
|
+
"$ref": "#/definitions/string[]",
|
|
3612
|
+
"description": "Filters the navigation properties that can be used by flexibility features.\nThis property allows you to specify which navigation properties are available\nfor flexibility operations such as adding custom fields.\nYou can use the asterisk (*) wildcard to include all navigation properties,\nor specify individual navigation property names to restrict the available options.\nExample:\nAllow all navigation properties: navigationPropertiesForAdaptationDialog: [\"*\"]\nExample:\nAllow only a specific navigation property: navigationPropertiesForAdaptationDialog: [\"Customer/Name\"]\nExample:\nAllow multiple specific navigation properties based on a wildcard: navigationPropertiesForAdaptationDialog: [\"Cust*\\/Name\"]",
|
|
3419
3613
|
"artifactType": "XMLProperty",
|
|
3420
3614
|
"metadata": {
|
|
3421
3615
|
"type": "Property"
|
|
3422
3616
|
}
|
|
3423
3617
|
},
|
|
3424
|
-
"
|
|
3618
|
+
"title": {
|
|
3425
3619
|
"type": "string",
|
|
3426
|
-
"description": "
|
|
3620
|
+
"description": "The title of the form control.",
|
|
3427
3621
|
"artifactType": "XMLProperty",
|
|
3428
3622
|
"metadata": {
|
|
3429
3623
|
"type": "Property"
|
|
3430
3624
|
},
|
|
3431
|
-
"
|
|
3432
|
-
"After",
|
|
3433
|
-
"Before"
|
|
3434
|
-
]
|
|
3625
|
+
"i18nClassification": "HED: Title of the form"
|
|
3435
3626
|
},
|
|
3436
|
-
"
|
|
3627
|
+
"visible": {
|
|
3437
3628
|
"type": "boolean",
|
|
3438
|
-
"description": "
|
|
3629
|
+
"description": "Parameter which sets the visibility of the Form building block",
|
|
3439
3630
|
"artifactType": "XMLProperty",
|
|
3440
3631
|
"metadata": {
|
|
3441
3632
|
"type": "Property"
|
|
@@ -3448,68 +3639,196 @@
|
|
|
3448
3639
|
"metadata": {
|
|
3449
3640
|
"type": "Property"
|
|
3450
3641
|
}
|
|
3642
|
+
},
|
|
3643
|
+
"fields": {
|
|
3644
|
+
"type": "object",
|
|
3645
|
+
"additionalProperties": {
|
|
3646
|
+
"$ref": "#/definitions/sap.fe.macros.FormElement"
|
|
3647
|
+
},
|
|
3648
|
+
"isViewNode": true,
|
|
3649
|
+
"metadata": {
|
|
3650
|
+
"path": [],
|
|
3651
|
+
"type": "Aggregation",
|
|
3652
|
+
"aggregationCardinality": "Multiple"
|
|
3653
|
+
}
|
|
3451
3654
|
}
|
|
3452
3655
|
},
|
|
3453
3656
|
"additionalProperties": false,
|
|
3454
3657
|
"metadata": {
|
|
3455
3658
|
"path": [],
|
|
3456
|
-
"type": "Control"
|
|
3659
|
+
"type": "Control",
|
|
3660
|
+
"defaultAggregation": "fields"
|
|
3457
3661
|
}
|
|
3458
3662
|
},
|
|
3459
|
-
"sap.fe.macros.
|
|
3460
|
-
"description": "
|
|
3461
|
-
"isViewNode":
|
|
3663
|
+
"sap.fe.macros.form.FormLayoutOptions": {
|
|
3664
|
+
"description": "Configuration options for the Form layout",
|
|
3665
|
+
"isViewNode": false,
|
|
3462
3666
|
"type": "object",
|
|
3463
3667
|
"properties": {
|
|
3464
|
-
"
|
|
3668
|
+
"adjustLabelSpan": {
|
|
3669
|
+
"type": "boolean",
|
|
3670
|
+
"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",
|
|
3671
|
+
"artifactType": "XMLProperty",
|
|
3672
|
+
"metadata": {
|
|
3673
|
+
"type": "Property"
|
|
3674
|
+
}
|
|
3675
|
+
},
|
|
3676
|
+
"backgroundDesign": {
|
|
3465
3677
|
"type": "string",
|
|
3466
|
-
"description": "Defines the
|
|
3678
|
+
"description": "Defines the background color of the form",
|
|
3467
3679
|
"artifactType": "XMLProperty",
|
|
3468
3680
|
"metadata": {
|
|
3469
3681
|
"type": "Property"
|
|
3470
3682
|
}
|
|
3471
3683
|
},
|
|
3472
|
-
"
|
|
3473
|
-
"type": "
|
|
3474
|
-
"description": "
|
|
3684
|
+
"breakpointL": {
|
|
3685
|
+
"type": "number",
|
|
3686
|
+
"description": "The breakpoint (in pixels) between L size and XL size for the ResponsiveGridLayout\nApplicable for ResponsiveGridLayout type\n",
|
|
3475
3687
|
"artifactType": "XMLProperty",
|
|
3476
3688
|
"metadata": {
|
|
3477
3689
|
"type": "Property"
|
|
3478
3690
|
}
|
|
3479
3691
|
},
|
|
3480
|
-
"
|
|
3481
|
-
"type": "
|
|
3482
|
-
"description": "
|
|
3692
|
+
"breakpointM": {
|
|
3693
|
+
"type": "number",
|
|
3694
|
+
"description": "The breakpoint (in pixels) between M size and L size for the ResponsiveGridLayout\nApplicable for ResponsiveGridLayout type\n",
|
|
3483
3695
|
"artifactType": "XMLProperty",
|
|
3484
3696
|
"metadata": {
|
|
3485
3697
|
"type": "Property"
|
|
3486
3698
|
}
|
|
3487
3699
|
},
|
|
3488
|
-
"
|
|
3489
|
-
"
|
|
3490
|
-
"description": "
|
|
3700
|
+
"breakpointXL": {
|
|
3701
|
+
"type": "number",
|
|
3702
|
+
"description": "The breakpoint (in pixels) between XL size and XXL size for the ResponsiveGridLayout\nApplicable for ResponsiveGridLayout type\n",
|
|
3491
3703
|
"artifactType": "XMLProperty",
|
|
3492
3704
|
"metadata": {
|
|
3493
3705
|
"type": "Property"
|
|
3494
3706
|
}
|
|
3495
3707
|
},
|
|
3496
|
-
"
|
|
3497
|
-
"type": "
|
|
3498
|
-
"description": "
|
|
3708
|
+
"columnsL": {
|
|
3709
|
+
"type": "number",
|
|
3710
|
+
"description": "Number of columns for L size\nApplicable for ColumnLayout type\n",
|
|
3499
3711
|
"artifactType": "XMLProperty",
|
|
3500
3712
|
"metadata": {
|
|
3501
3713
|
"type": "Property"
|
|
3502
|
-
}
|
|
3503
|
-
"i18nClassification": "HED: Title of the form"
|
|
3714
|
+
}
|
|
3504
3715
|
},
|
|
3505
|
-
"
|
|
3716
|
+
"columnsM": {
|
|
3717
|
+
"type": "number",
|
|
3718
|
+
"description": "Number of columns for M size\nApplicable for ColumnLayout type\n",
|
|
3719
|
+
"artifactType": "XMLProperty",
|
|
3720
|
+
"metadata": {
|
|
3721
|
+
"type": "Property"
|
|
3722
|
+
}
|
|
3723
|
+
},
|
|
3724
|
+
"columnsXL": {
|
|
3725
|
+
"type": "number",
|
|
3726
|
+
"description": "Number of columns for XL size\nApplicable for ColumnLayout type\n",
|
|
3727
|
+
"artifactType": "XMLProperty",
|
|
3728
|
+
"metadata": {
|
|
3729
|
+
"type": "Property"
|
|
3730
|
+
}
|
|
3731
|
+
},
|
|
3732
|
+
"emptyCellsLarge": {
|
|
3733
|
+
"type": "number",
|
|
3734
|
+
"description": "Number of grid cells that are empty at the end of a row in large screen size\nApplicable for ColumnLayout type\n",
|
|
3735
|
+
"artifactType": "XMLProperty",
|
|
3736
|
+
"metadata": {
|
|
3737
|
+
"type": "Property"
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
"emptySpanL": {
|
|
3741
|
+
"type": "number",
|
|
3742
|
+
"description": "Number of empty grid cells that are added on the end of each line in L size\nApplicable for ResponsiveGridLayout type\n",
|
|
3743
|
+
"artifactType": "XMLProperty",
|
|
3744
|
+
"metadata": {
|
|
3745
|
+
"type": "Property"
|
|
3746
|
+
}
|
|
3747
|
+
},
|
|
3748
|
+
"emptySpanM": {
|
|
3749
|
+
"type": "number",
|
|
3750
|
+
"description": "Number of empty grid cells that are added on the end of each line in M size\nApplicable for ResponsiveGridLayout type\n",
|
|
3751
|
+
"artifactType": "XMLProperty",
|
|
3752
|
+
"metadata": {
|
|
3753
|
+
"type": "Property"
|
|
3754
|
+
}
|
|
3755
|
+
},
|
|
3756
|
+
"emptySpanS": {
|
|
3757
|
+
"type": "number",
|
|
3758
|
+
"description": "Number of empty grid cells that are added on the end of each line in S size\nApplicable for ResponsiveGridLayout type\n",
|
|
3759
|
+
"artifactType": "XMLProperty",
|
|
3760
|
+
"metadata": {
|
|
3761
|
+
"type": "Property"
|
|
3762
|
+
}
|
|
3763
|
+
},
|
|
3764
|
+
"emptySpanXL": {
|
|
3765
|
+
"type": "number",
|
|
3766
|
+
"description": "Number of empty grid cells that are added on the end of each line in XL size\nApplicable for ResponsiveGridLayout type\n",
|
|
3767
|
+
"artifactType": "XMLProperty",
|
|
3768
|
+
"metadata": {
|
|
3769
|
+
"type": "Property"
|
|
3770
|
+
}
|
|
3771
|
+
},
|
|
3772
|
+
"labelCellsLarge": {
|
|
3773
|
+
"type": "number",
|
|
3774
|
+
"description": "Number of grid cells that are reserved for the labels in large screen size\nApplicable for ColumnLayout type\n",
|
|
3775
|
+
"artifactType": "XMLProperty",
|
|
3776
|
+
"metadata": {
|
|
3777
|
+
"type": "Property"
|
|
3778
|
+
}
|
|
3779
|
+
},
|
|
3780
|
+
"labelSpanL": {
|
|
3781
|
+
"type": "number",
|
|
3782
|
+
"description": "Number of grid cells that are used for the labels in L size\nApplicable for ResponsiveGridLayout type\n",
|
|
3783
|
+
"artifactType": "XMLProperty",
|
|
3784
|
+
"metadata": {
|
|
3785
|
+
"type": "Property"
|
|
3786
|
+
}
|
|
3787
|
+
},
|
|
3788
|
+
"labelSpanM": {
|
|
3789
|
+
"type": "number",
|
|
3790
|
+
"description": "Number of grid cells that are used for the labels in M size\nApplicable for ResponsiveGridLayout type\n",
|
|
3791
|
+
"artifactType": "XMLProperty",
|
|
3792
|
+
"metadata": {
|
|
3793
|
+
"type": "Property"
|
|
3794
|
+
}
|
|
3795
|
+
},
|
|
3796
|
+
"labelSpanS": {
|
|
3797
|
+
"type": "number",
|
|
3798
|
+
"description": "Number of grid cells that are used for the labels in S size\nApplicable for ResponsiveGridLayout type\n",
|
|
3799
|
+
"artifactType": "XMLProperty",
|
|
3800
|
+
"metadata": {
|
|
3801
|
+
"type": "Property"
|
|
3802
|
+
}
|
|
3803
|
+
},
|
|
3804
|
+
"labelSpanXL": {
|
|
3805
|
+
"type": "number",
|
|
3806
|
+
"description": "Number of grid cells that are used for the labels in XL size\nApplicable for ResponsiveGridLayout type\n",
|
|
3807
|
+
"artifactType": "XMLProperty",
|
|
3808
|
+
"metadata": {
|
|
3809
|
+
"type": "Property"
|
|
3810
|
+
}
|
|
3811
|
+
},
|
|
3812
|
+
"singleContainerFullSize": {
|
|
3506
3813
|
"type": "boolean",
|
|
3507
|
-
"description": "
|
|
3814
|
+
"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",
|
|
3508
3815
|
"artifactType": "XMLProperty",
|
|
3509
3816
|
"metadata": {
|
|
3510
3817
|
"type": "Property"
|
|
3511
3818
|
}
|
|
3512
3819
|
},
|
|
3820
|
+
"type": {
|
|
3821
|
+
"type": "string",
|
|
3822
|
+
"description": "The layout type to be used for the form",
|
|
3823
|
+
"artifactType": "XMLProperty",
|
|
3824
|
+
"metadata": {
|
|
3825
|
+
"type": "Property"
|
|
3826
|
+
},
|
|
3827
|
+
"enum": [
|
|
3828
|
+
"ColumnLayout",
|
|
3829
|
+
"ResponsiveGridLayout"
|
|
3830
|
+
]
|
|
3831
|
+
},
|
|
3513
3832
|
"id": {
|
|
3514
3833
|
"type": "string",
|
|
3515
3834
|
"description": "Unique id of control",
|
|
@@ -3760,6 +4079,14 @@
|
|
|
3760
4079
|
"isViewNode": false,
|
|
3761
4080
|
"type": "object",
|
|
3762
4081
|
"properties": {
|
|
4082
|
+
"showShareInWorkzone": {
|
|
4083
|
+
"type": "boolean",
|
|
4084
|
+
"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.",
|
|
4085
|
+
"artifactType": "XMLProperty",
|
|
4086
|
+
"metadata": {
|
|
4087
|
+
"type": "Property"
|
|
4088
|
+
}
|
|
4089
|
+
},
|
|
3763
4090
|
"id": {
|
|
3764
4091
|
"type": "string",
|
|
3765
4092
|
"description": "Unique id of control",
|
|
@@ -3816,6 +4143,14 @@
|
|
|
3816
4143
|
"type": "Property"
|
|
3817
4144
|
}
|
|
3818
4145
|
},
|
|
4146
|
+
"visible": {
|
|
4147
|
+
"type": "boolean",
|
|
4148
|
+
"description": "Determines whether the action is visible.",
|
|
4149
|
+
"artifactType": "XMLProperty",
|
|
4150
|
+
"metadata": {
|
|
4151
|
+
"type": "Property"
|
|
4152
|
+
}
|
|
4153
|
+
},
|
|
3819
4154
|
"id": {
|
|
3820
4155
|
"type": "string",
|
|
3821
4156
|
"description": "Unique id of control",
|
|
@@ -3893,14 +4228,6 @@
|
|
|
3893
4228
|
},
|
|
3894
4229
|
"i18nClassification": "BUT: Text of the action button"
|
|
3895
4230
|
},
|
|
3896
|
-
"visible": {
|
|
3897
|
-
"type": "boolean",
|
|
3898
|
-
"description": "Determines whether the action is visible.",
|
|
3899
|
-
"artifactType": "XMLProperty",
|
|
3900
|
-
"metadata": {
|
|
3901
|
-
"type": "Property"
|
|
3902
|
-
}
|
|
3903
|
-
},
|
|
3904
4231
|
"press": {
|
|
3905
4232
|
"type": "string",
|
|
3906
4233
|
"description": "Event handler to be called when the user chooses the action",
|
|
@@ -4224,7 +4551,7 @@
|
|
|
4224
4551
|
}
|
|
4225
4552
|
},
|
|
4226
4553
|
"sap.fe.macros.table.Column": {
|
|
4227
|
-
"description": "Definition of a custom column to be used inside the table.\nThe template for the column
|
|
4554
|
+
"description": "Definition of a custom column to be used inside the table.\nThe template for the column must be provided as the default aggregation\n",
|
|
4228
4555
|
"isViewNode": true,
|
|
4229
4556
|
"type": "object",
|
|
4230
4557
|
"properties": {
|
|
@@ -4344,6 +4671,19 @@
|
|
|
4344
4671
|
"metadata": {
|
|
4345
4672
|
"type": "Property"
|
|
4346
4673
|
}
|
|
4674
|
+
},
|
|
4675
|
+
"aiNotice": {
|
|
4676
|
+
"type": "object",
|
|
4677
|
+
"additionalProperties": {
|
|
4678
|
+
"$ref": "#/definitions/sap.fe.macros.table.ColumnAINotice"
|
|
4679
|
+
},
|
|
4680
|
+
"isViewNode": false,
|
|
4681
|
+
"metadata": {
|
|
4682
|
+
"path": [],
|
|
4683
|
+
"type": "Aggregation",
|
|
4684
|
+
"aggregationCardinality": "Single"
|
|
4685
|
+
},
|
|
4686
|
+
"description": "Determines the AI notice for the column.\nThe AI notice is used to display information related to AI features. This information is rendered as an icon in the column header."
|
|
4347
4687
|
}
|
|
4348
4688
|
},
|
|
4349
4689
|
"additionalProperties": false,
|
|
@@ -4352,6 +4692,40 @@
|
|
|
4352
4692
|
"type": "Control"
|
|
4353
4693
|
}
|
|
4354
4694
|
},
|
|
4695
|
+
"sap.fe.macros.table.ColumnAINotice": {
|
|
4696
|
+
"description": "Definition of the AINotice applied to a column within the table.",
|
|
4697
|
+
"isViewNode": true,
|
|
4698
|
+
"type": "object",
|
|
4699
|
+
"properties": {
|
|
4700
|
+
"id": {
|
|
4701
|
+
"type": "string",
|
|
4702
|
+
"description": "Unique id of control",
|
|
4703
|
+
"artifactType": "XMLProperty",
|
|
4704
|
+
"metadata": {
|
|
4705
|
+
"type": "Property"
|
|
4706
|
+
}
|
|
4707
|
+
},
|
|
4708
|
+
"content": {
|
|
4709
|
+
"type": "object",
|
|
4710
|
+
"additionalProperties": {
|
|
4711
|
+
"$ref": "#/definitions/sap.ui.core.Control"
|
|
4712
|
+
},
|
|
4713
|
+
"isViewNode": false,
|
|
4714
|
+
"metadata": {
|
|
4715
|
+
"path": [],
|
|
4716
|
+
"type": "Aggregation",
|
|
4717
|
+
"aggregationCardinality": "Single"
|
|
4718
|
+
},
|
|
4719
|
+
"description": "Determines the pop-up content of the AINotice to be displayed"
|
|
4720
|
+
}
|
|
4721
|
+
},
|
|
4722
|
+
"additionalProperties": false,
|
|
4723
|
+
"metadata": {
|
|
4724
|
+
"path": [],
|
|
4725
|
+
"type": "Control",
|
|
4726
|
+
"defaultAggregation": "content"
|
|
4727
|
+
}
|
|
4728
|
+
},
|
|
4355
4729
|
"sap.fe.macros.table.ColumnExportSettings": {
|
|
4356
4730
|
"description": "Definition of the export settings applied to a column within the table.",
|
|
4357
4731
|
"isViewNode": true,
|
|
@@ -4467,7 +4841,7 @@
|
|
|
4467
4841
|
},
|
|
4468
4842
|
"disableExport": {
|
|
4469
4843
|
"type": "boolean",
|
|
4470
|
-
"description": "Determines if the column
|
|
4844
|
+
"description": "Determines if the column is excluded from the export.",
|
|
4471
4845
|
"artifactType": "XMLProperty",
|
|
4472
4846
|
"metadata": {
|
|
4473
4847
|
"type": "Property"
|
|
@@ -4521,6 +4895,19 @@
|
|
|
4521
4895
|
"type": "Property"
|
|
4522
4896
|
}
|
|
4523
4897
|
},
|
|
4898
|
+
"aiNotice": {
|
|
4899
|
+
"type": "object",
|
|
4900
|
+
"additionalProperties": {
|
|
4901
|
+
"$ref": "#/definitions/sap.fe.macros.table.ColumnAINotice"
|
|
4902
|
+
},
|
|
4903
|
+
"isViewNode": false,
|
|
4904
|
+
"metadata": {
|
|
4905
|
+
"path": [],
|
|
4906
|
+
"type": "Aggregation",
|
|
4907
|
+
"aggregationCardinality": "Single"
|
|
4908
|
+
},
|
|
4909
|
+
"description": "Determines the AI notice for the column.\nThe AI notice is used to display information related to AI features. This information is rendered as an icon in the column header."
|
|
4910
|
+
},
|
|
4524
4911
|
"exportSettings": {
|
|
4525
4912
|
"type": "object",
|
|
4526
4913
|
"additionalProperties": {
|
|
@@ -4531,7 +4918,8 @@
|
|
|
4531
4918
|
"path": [],
|
|
4532
4919
|
"type": "Aggregation",
|
|
4533
4920
|
"aggregationCardinality": "Single"
|
|
4534
|
-
}
|
|
4921
|
+
},
|
|
4922
|
+
"description": "Determines the export settings for the column."
|
|
4535
4923
|
}
|
|
4536
4924
|
},
|
|
4537
4925
|
"additionalProperties": false,
|
|
@@ -4586,12 +4974,13 @@
|
|
|
4586
4974
|
"additionalProperties": {
|
|
4587
4975
|
"$ref": "#/definitions/sap.ui.layout.form.FormContainer"
|
|
4588
4976
|
},
|
|
4589
|
-
"isViewNode":
|
|
4977
|
+
"isViewNode": false,
|
|
4590
4978
|
"metadata": {
|
|
4591
4979
|
"path": [],
|
|
4592
4980
|
"type": "Aggregation",
|
|
4593
4981
|
"aggregationCardinality": "Single"
|
|
4594
|
-
}
|
|
4982
|
+
},
|
|
4983
|
+
"description": "The custom form container that can be displayed at the top of the mass edit dialog"
|
|
4595
4984
|
}
|
|
4596
4985
|
},
|
|
4597
4986
|
"additionalProperties": false,
|
|
@@ -4830,6 +5219,14 @@
|
|
|
4830
5219
|
"type": "Property"
|
|
4831
5220
|
}
|
|
4832
5221
|
},
|
|
5222
|
+
"initialLoad": {
|
|
5223
|
+
"type": "boolean",
|
|
5224
|
+
"description": "Indicates if the table should load data when initialized.\nThis property is used only if a filter bar is associated with the table and doesn't use the liveMode.\nIf set to `true`, the table loads data on initialization if the filter bar has no mandatory filters or the mandatory filters are filled in.\nIf set to `false`, the table waits for the filter bar to be filled in before loading data.\nThe default value is `false`.",
|
|
5225
|
+
"artifactType": "XMLProperty",
|
|
5226
|
+
"metadata": {
|
|
5227
|
+
"type": "Property"
|
|
5228
|
+
}
|
|
5229
|
+
},
|
|
4833
5230
|
"isSearchable": {
|
|
4834
5231
|
"type": "boolean",
|
|
4835
5232
|
"description": "Defines whether to display the search action.",
|
|
@@ -5039,7 +5436,8 @@
|
|
|
5039
5436
|
"path": [],
|
|
5040
5437
|
"type": "Aggregation",
|
|
5041
5438
|
"aggregationCardinality": "Single"
|
|
5042
|
-
}
|
|
5439
|
+
},
|
|
5440
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
5043
5441
|
},
|
|
5044
5442
|
"columns": {
|
|
5045
5443
|
"type": "object",
|
|
@@ -5063,7 +5461,8 @@
|
|
|
5063
5461
|
"path": [],
|
|
5064
5462
|
"type": "Aggregation",
|
|
5065
5463
|
"aggregationCardinality": "Single"
|
|
5066
|
-
}
|
|
5464
|
+
},
|
|
5465
|
+
"description": "Aggregate mass edit of the table."
|
|
5067
5466
|
},
|
|
5068
5467
|
"quickVariantSelection": {
|
|
5069
5468
|
"type": "object",
|
|
@@ -5075,7 +5474,8 @@
|
|
|
5075
5474
|
"path": [],
|
|
5076
5475
|
"type": "Aggregation",
|
|
5077
5476
|
"aggregationCardinality": "Single"
|
|
5078
|
-
}
|
|
5477
|
+
},
|
|
5478
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
5079
5479
|
},
|
|
5080
5480
|
"beforeRebindTable": {
|
|
5081
5481
|
"type": "string",
|
|
@@ -5340,6 +5740,14 @@
|
|
|
5340
5740
|
"type": "Property"
|
|
5341
5741
|
}
|
|
5342
5742
|
},
|
|
5743
|
+
"initialLoad": {
|
|
5744
|
+
"type": "boolean",
|
|
5745
|
+
"description": "Indicates if the table should load data when initialized.\nThis property is used only if a filter bar is associated with the table and doesn't use the liveMode.\nIf set to `true`, the table loads data on initialization if the filter bar has no mandatory filters or the mandatory filters are filled in.\nIf set to `false`, the table waits for the filter bar to be filled in before loading data.\nThe default value is `false`.",
|
|
5746
|
+
"artifactType": "XMLProperty",
|
|
5747
|
+
"metadata": {
|
|
5748
|
+
"type": "Property"
|
|
5749
|
+
}
|
|
5750
|
+
},
|
|
5343
5751
|
"isCopyToPositionAllowed": {
|
|
5344
5752
|
"type": "string",
|
|
5345
5753
|
"description": "Defines the extension point to control whether a source node can be copied to a specific parent node.\n",
|
|
@@ -5577,7 +5985,8 @@
|
|
|
5577
5985
|
"path": [],
|
|
5578
5986
|
"type": "Aggregation",
|
|
5579
5987
|
"aggregationCardinality": "Single"
|
|
5580
|
-
}
|
|
5988
|
+
},
|
|
5989
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
5581
5990
|
},
|
|
5582
5991
|
"columns": {
|
|
5583
5992
|
"type": "object",
|
|
@@ -5601,7 +6010,8 @@
|
|
|
5601
6010
|
"path": [],
|
|
5602
6011
|
"type": "Aggregation",
|
|
5603
6012
|
"aggregationCardinality": "Single"
|
|
5604
|
-
}
|
|
6013
|
+
},
|
|
6014
|
+
"description": "Aggregate mass edit of the table."
|
|
5605
6015
|
},
|
|
5606
6016
|
"quickVariantSelection": {
|
|
5607
6017
|
"type": "object",
|
|
@@ -5613,7 +6023,8 @@
|
|
|
5613
6023
|
"path": [],
|
|
5614
6024
|
"type": "Aggregation",
|
|
5615
6025
|
"aggregationCardinality": "Single"
|
|
5616
|
-
}
|
|
6026
|
+
},
|
|
6027
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
5617
6028
|
},
|
|
5618
6029
|
"beforeRebindTable": {
|
|
5619
6030
|
"type": "string",
|
|
@@ -5711,6 +6122,26 @@
|
|
|
5711
6122
|
"type": "Control"
|
|
5712
6123
|
}
|
|
5713
6124
|
},
|
|
6125
|
+
"sap.fe.macros.field.mixin.FieldMixin": {
|
|
6126
|
+
"description": "Mixin providing control access, value getter and setter, enabled state management, and message handling for field controls.\nThis mixin combines the following functionalities:\n1. FieldControlAccessor: access to the inner control of field-based building blocks\n2. FieldValueAccessor: value getter and setter and enablement getter and setter\n3. FieldMessageHandler: adding and managing validation messages\nThis mixin enables building blocks to programmatically read and write values, enabled state,\nand validation messages across different control types (CheckBox, Input, and MDC Field).\n",
|
|
6127
|
+
"isViewNode": true,
|
|
6128
|
+
"type": "object",
|
|
6129
|
+
"properties": {
|
|
6130
|
+
"id": {
|
|
6131
|
+
"type": "string",
|
|
6132
|
+
"description": "Unique id of control",
|
|
6133
|
+
"artifactType": "XMLProperty",
|
|
6134
|
+
"metadata": {
|
|
6135
|
+
"type": "Property"
|
|
6136
|
+
}
|
|
6137
|
+
}
|
|
6138
|
+
},
|
|
6139
|
+
"additionalProperties": false,
|
|
6140
|
+
"metadata": {
|
|
6141
|
+
"path": [],
|
|
6142
|
+
"type": "Control"
|
|
6143
|
+
}
|
|
6144
|
+
},
|
|
5714
6145
|
"sap.fe.macros.ActionGroup": {
|
|
5715
6146
|
"description": "Definition of a actions group to be used inside the table toolbar",
|
|
5716
6147
|
"isViewNode": true,
|