@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
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"description": "Specify a SelectionVariant (in order to set default values for the filter bar), a PresentationVariant (in order to define the layout of the table), or a SelectionPresentationVariant (combining both)",
|
|
75
75
|
"type": "string",
|
|
76
76
|
"artifactType": "Manifest",
|
|
77
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/
|
|
77
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/22e32b7241e843c1a84fee142e9d8ef0"
|
|
78
78
|
},
|
|
79
79
|
"liveMode": {
|
|
80
80
|
"description": "If liveMode is set, the search will be automatically triggered when a filter value is set.",
|
|
@@ -86,20 +86,20 @@
|
|
|
86
86
|
"description": "Controls whether smart variant management is active. Default is true.",
|
|
87
87
|
"type": "boolean",
|
|
88
88
|
"artifactType": "Manifest",
|
|
89
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/
|
|
89
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/e3b12f41d70c442f9d4cc2e7722bbb17"
|
|
90
90
|
},
|
|
91
91
|
"variantManagementHidden": {
|
|
92
92
|
"description": "If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf the flag is false or undefined, the standard variant management is available and can be enabled or disabled.",
|
|
93
93
|
"type": "boolean",
|
|
94
94
|
"artifactType": "Manifest",
|
|
95
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/
|
|
95
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/e3b12f41d70c442f9d4cc2e7722bbb17"
|
|
96
96
|
},
|
|
97
97
|
"subTitleIfVariantMgmtHidden": {
|
|
98
98
|
"description": "You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property.",
|
|
99
99
|
"i18nClassification": "TIT: Subtitle if variant management is hidden",
|
|
100
100
|
"type": "string",
|
|
101
101
|
"artifactType": "Manifest",
|
|
102
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/
|
|
102
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/e3b12f41d70c442f9d4cc2e7722bbb17"
|
|
103
103
|
},
|
|
104
104
|
"showClearOnFB": {
|
|
105
105
|
"description": "Handles the visibility of the Clear button on the filter bar.",
|
|
@@ -431,13 +431,13 @@
|
|
|
431
431
|
"description": "This property can be used to indicate that a table or chart should be based on a different entity set than the main entity set",
|
|
432
432
|
"type": "string",
|
|
433
433
|
"artifactType": "Manifest",
|
|
434
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/
|
|
434
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/6698b80fc1a543ebb5c07e0781e9b93e"
|
|
435
435
|
},
|
|
436
436
|
"annotationPath": {
|
|
437
437
|
"description": "Specify a SelectionVariant or SelectionPresentationVariant annotation for the entity set to configure the table or chart",
|
|
438
438
|
"type": "string",
|
|
439
439
|
"artifactType": "Manifest",
|
|
440
|
-
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/
|
|
440
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/97dfeea4a8c346368cea6bf7a3e85478"
|
|
441
441
|
},
|
|
442
442
|
"showItemNavigationOnChart": {
|
|
443
443
|
"description": "To enable navigation for charts, you have to set the property to \"true\" and maintain an internal navigation target in the manifest.",
|
|
@@ -464,10 +464,114 @@
|
|
|
464
464
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
465
465
|
},
|
|
466
466
|
"useExportToExcel": {
|
|
467
|
-
"description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
|
|
467
|
+
"description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example, Microsoft Excel.",
|
|
468
468
|
"type": "boolean",
|
|
469
469
|
"artifactType": "FlexChange",
|
|
470
470
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
471
|
+
},
|
|
472
|
+
"enableExport": {
|
|
473
|
+
"description": "Enables the export of data from the SmartTable control to another file, for example, a spreadsheet. If exportType is GW, any $expand parameters are removed when sending the request to generate the file.",
|
|
474
|
+
"type": "boolean",
|
|
475
|
+
"artifactType": "FlexChange",
|
|
476
|
+
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
477
|
+
},
|
|
478
|
+
"growingThreshold": {
|
|
479
|
+
"description": "Defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true.",
|
|
480
|
+
"type": "number",
|
|
481
|
+
"artifactType": "FlexChange",
|
|
482
|
+
"controlType": "sap.m.Table"
|
|
483
|
+
},
|
|
484
|
+
"popinLayout": {
|
|
485
|
+
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
486
|
+
"anyOf": [
|
|
487
|
+
{
|
|
488
|
+
"$ref": "#/definitions/PopinLayout"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"type": "string"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"description": "Defines the layout in which the table pop-in rows are rendered.",
|
|
495
|
+
"artifactType": "FlexChange",
|
|
496
|
+
"controlType": "sap.m.Table"
|
|
497
|
+
},
|
|
498
|
+
"includeItemInSelection": {
|
|
499
|
+
"description": "Set this property to true if you want items to be selectable when they are clicked rather than after the selection control has been set.",
|
|
500
|
+
"type": "boolean",
|
|
501
|
+
"artifactType": "FlexChange",
|
|
502
|
+
"controlType": "sap.m.Table"
|
|
503
|
+
},
|
|
504
|
+
"tableType": {
|
|
505
|
+
"$ref": "#/definitions/TableTypeV2Enum",
|
|
506
|
+
"description": "Obsolete property for specifying the type of the table. Use the 'type' property instead.",
|
|
507
|
+
"artifactType": "Manifest"
|
|
508
|
+
},
|
|
509
|
+
"type": {
|
|
510
|
+
"$ref": "#/definitions/TableTypeV2Enum",
|
|
511
|
+
"description": "Specifies the type of the table.",
|
|
512
|
+
"artifactType": "Manifest",
|
|
513
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/5d270547f113468e83e06dd7ee408a45"
|
|
514
|
+
},
|
|
515
|
+
"condensedTableLayout": {
|
|
516
|
+
"description": "Sets a condensed table layout for analytical tables, grid tables, and tree tables.",
|
|
517
|
+
"type": "boolean",
|
|
518
|
+
"artifactType": "Manifest"
|
|
519
|
+
},
|
|
520
|
+
"enableTableFilterInPageVariant": {
|
|
521
|
+
"description": "If you have enabled harmonized variant management, by default, business users cannot set a filter in the table personalization settings.\nTo enable filtering for business users, you must set the enableTableFilterInPageVariant property to true.",
|
|
522
|
+
"type": "boolean",
|
|
523
|
+
"artifactType": "Manifest"
|
|
524
|
+
},
|
|
525
|
+
"inlineDelete": {
|
|
526
|
+
"description": "Used to enable inline deletion in a responsive table.",
|
|
527
|
+
"type": "boolean",
|
|
528
|
+
"artifactType": "Manifest"
|
|
529
|
+
},
|
|
530
|
+
"multiSelect": {
|
|
531
|
+
"description": "When this setting is enabled, the table switches from single to multi selection.",
|
|
532
|
+
"type": "boolean",
|
|
533
|
+
"artifactType": "Manifest",
|
|
534
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/402fac73b4794a31983609ebdde580d2"
|
|
535
|
+
},
|
|
536
|
+
"selectAll": {
|
|
537
|
+
"description": "This property can be used to decide whether the 'Select All' checkbox or the 'Clear All' button is shown in the top-left corner of the table.",
|
|
538
|
+
"type": "boolean",
|
|
539
|
+
"artifactType": "Manifest"
|
|
540
|
+
},
|
|
541
|
+
"selectionLimit": {
|
|
542
|
+
"description": "When new data is loaded from the back-end system, the number of lines is restricted to the specified limit. The default value is 200.",
|
|
543
|
+
"type": "number",
|
|
544
|
+
"artifactType": "Manifest",
|
|
545
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/116b5d82e8c545e2a56e1b51b8b0a9bd?q=selectionLimit"
|
|
546
|
+
},
|
|
547
|
+
"copy": {
|
|
548
|
+
"description": "If copy is set to true, the 'Copy to Clipboard' button is shown in the table toolbar.\nBy default, the 'Copy to Clipboard' button is displayed in the table toolbar if the selection mode is configured for the corresponding table.",
|
|
549
|
+
"type": "boolean",
|
|
550
|
+
"artifactType": "Manifest",
|
|
551
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
552
|
+
},
|
|
553
|
+
"dataLoadSettings": {
|
|
554
|
+
"$ref": "#/definitions/DataLoadSettings",
|
|
555
|
+
"description": "Change the default behavior for autoloading of data."
|
|
556
|
+
},
|
|
557
|
+
"createWithFilters": {
|
|
558
|
+
"$ref": "#/definitions/CreateWithFilters",
|
|
559
|
+
"description": "Adds a new create action that uses the filter settings as input."
|
|
560
|
+
},
|
|
561
|
+
"createWithParameterDialog": {
|
|
562
|
+
"$ref": "#/definitions/Fields4CreateWithParametersDialog",
|
|
563
|
+
"description": "Enables the creation of objects that have a maximum of eight data fields through a dialog in the list report page.",
|
|
564
|
+
"artifactType": "Manifest",
|
|
565
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/2d04f60da84a49f6bb8617fbf1d3d2aa"
|
|
566
|
+
},
|
|
567
|
+
"multiEdit": {
|
|
568
|
+
"$ref": "#/definitions/MultiEdit",
|
|
569
|
+
"description": "Allows you to edit multiple objects using a dialog.",
|
|
570
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/7cc4f04364c540c397130ff92f84c3ca"
|
|
571
|
+
},
|
|
572
|
+
"toolbar": {
|
|
573
|
+
"$ref": "#/definitions/Toolbar",
|
|
574
|
+
"description": "Tool Bar"
|
|
471
575
|
}
|
|
472
576
|
},
|
|
473
577
|
"additionalProperties": false
|
|
@@ -554,6 +658,103 @@
|
|
|
554
658
|
],
|
|
555
659
|
"type": "string"
|
|
556
660
|
},
|
|
661
|
+
"PopinLayout": {
|
|
662
|
+
"description": "Defines the layout options of the table popins.\n\nThis enum is part of the 'sap/m/library' module export and must be accessed by the property 'PopinLayout'.",
|
|
663
|
+
"enum": [
|
|
664
|
+
"Block",
|
|
665
|
+
"GridLarge",
|
|
666
|
+
"GridSmall"
|
|
667
|
+
],
|
|
668
|
+
"type": "string"
|
|
669
|
+
},
|
|
670
|
+
"TableTypeV2Enum": {
|
|
671
|
+
"enum": [
|
|
672
|
+
"AnalyticalTable",
|
|
673
|
+
"GridTable",
|
|
674
|
+
"ResponsiveTable",
|
|
675
|
+
"TreeTable"
|
|
676
|
+
],
|
|
677
|
+
"type": "string"
|
|
678
|
+
},
|
|
679
|
+
"DataLoadSettings": {
|
|
680
|
+
"type": "object",
|
|
681
|
+
"properties": {
|
|
682
|
+
"loadDataOnAppLaunch": {
|
|
683
|
+
"$ref": "#/definitions/LoadDataOnAppLaunchSettingsEnum",
|
|
684
|
+
"description": "Changes the default behavior for autoloading data.",
|
|
685
|
+
"artifactType": "Manifest",
|
|
686
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b736ab6ae3654789ba1f9630e5720af3?q=loadDataOnAppLaunch"
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
"additionalProperties": false,
|
|
690
|
+
"required": [
|
|
691
|
+
"loadDataOnAppLaunch"
|
|
692
|
+
]
|
|
693
|
+
},
|
|
694
|
+
"LoadDataOnAppLaunchSettingsEnum": {
|
|
695
|
+
"enum": [
|
|
696
|
+
"always",
|
|
697
|
+
"ifAnyFilterExist",
|
|
698
|
+
"never"
|
|
699
|
+
],
|
|
700
|
+
"type": "string"
|
|
701
|
+
},
|
|
702
|
+
"CreateWithFilters": {
|
|
703
|
+
"type": "object",
|
|
704
|
+
"properties": {
|
|
705
|
+
"strategy": {
|
|
706
|
+
"description": "For the create action to use the filter settings as input, set this property to extension and implement the extension function as mentioned in help.sap.com for SAP S/4HANA, section \"Prefilling Fields When Creating a New Entity Using an Extension Point\".",
|
|
707
|
+
"type": "string",
|
|
708
|
+
"const": "extension",
|
|
709
|
+
"artifactType": "Manifest",
|
|
710
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/189e2d8a59f04a2693a4fde7f4a91a65?q=createWithFilters"
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
"additionalProperties": false,
|
|
714
|
+
"required": [
|
|
715
|
+
"strategy"
|
|
716
|
+
]
|
|
717
|
+
},
|
|
718
|
+
"Fields4CreateWithParametersDialog": {
|
|
719
|
+
"type": "object",
|
|
720
|
+
"properties": {
|
|
721
|
+
"fields": {
|
|
722
|
+
"type": "array",
|
|
723
|
+
"items": {
|
|
724
|
+
"type": "string"
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
},
|
|
728
|
+
"additionalProperties": false,
|
|
729
|
+
"required": [
|
|
730
|
+
"fields"
|
|
731
|
+
]
|
|
732
|
+
},
|
|
733
|
+
"MultiEdit": {
|
|
734
|
+
"type": "object",
|
|
735
|
+
"properties": {
|
|
736
|
+
"enabled": {
|
|
737
|
+
"description": "When multiEdit is enabled, by default the dialog displays editable fields corresponding to the columns that are displayed in the table.",
|
|
738
|
+
"type": "boolean",
|
|
739
|
+
"artifactType": "Manifest"
|
|
740
|
+
},
|
|
741
|
+
"annotationPath": {
|
|
742
|
+
"description": "Use annotationPath to define a mass edit dialog that points to a FieldGroup annotation with a qualifier.",
|
|
743
|
+
"type": "string",
|
|
744
|
+
"artifactType": "Manifest"
|
|
745
|
+
},
|
|
746
|
+
"ignoredFields": {
|
|
747
|
+
"description": "Determines which fields are hidden in key user adaptation and restricts them from being added to the mass edit dialog.",
|
|
748
|
+
"type": "array",
|
|
749
|
+
"items": {
|
|
750
|
+
"type": "string",
|
|
751
|
+
"const": "GENERICPROPERTY"
|
|
752
|
+
},
|
|
753
|
+
"artifactType": "Manifest"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"additionalProperties": false
|
|
757
|
+
},
|
|
557
758
|
"Toolbar": {
|
|
558
759
|
"description": "Toolbar",
|
|
559
760
|
"isViewNode": true,
|
|
@@ -129,6 +129,11 @@
|
|
|
129
129
|
"type": "boolean",
|
|
130
130
|
"manifestPath": "$[\"sap.fe\"].app.enableLazyLoading"
|
|
131
131
|
},
|
|
132
|
+
"sideEffectsEventsInteractionType": {
|
|
133
|
+
"$ref": "#/definitions/SideEffectsEventsInteractionType",
|
|
134
|
+
"description": "Sets interaction type of side effect events.\n- Notification (default) - A message toast is displayed.\n- Confirmation - A confirmation popup is displayed and data is only be refreshed if the user actively confirms it.\n- None - Data is refreshed without informing the user.",
|
|
135
|
+
"manifestPath": "$[\"sap.fe\"].app.sideEffectsEventsInteractionType"
|
|
136
|
+
},
|
|
132
137
|
"title": {
|
|
133
138
|
"description": "Defines the title for the application.",
|
|
134
139
|
"i18nClassification": "TIT: Title of the application",
|
|
@@ -288,6 +293,15 @@
|
|
|
288
293
|
}
|
|
289
294
|
}
|
|
290
295
|
},
|
|
296
|
+
"SideEffectsEventsInteractionType": {
|
|
297
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/27c9c3bad6eb4d99bc18a661fdb5e246",
|
|
298
|
+
"enum": [
|
|
299
|
+
"Confirmation",
|
|
300
|
+
"None",
|
|
301
|
+
"Notification"
|
|
302
|
+
],
|
|
303
|
+
"type": "string"
|
|
304
|
+
},
|
|
291
305
|
"CloudDevAdaptationStatus": {
|
|
292
306
|
"internal": true,
|
|
293
307
|
"enum": [
|