@sap/ux-specification 1.142.4 → 1.142.5
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 +40 -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 +202 -7
- package/dist/schemas/v4/ApplicationV4.json +14 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +50 -20
- 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 +28 -0
- 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.js +2 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.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 +59 -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 +582 -7
- 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 +29 -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 +23 -3
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +239 -42
- 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,108 @@
|
|
|
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
|
+
"growingThreshold": {
|
|
473
|
+
"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.",
|
|
474
|
+
"type": "number",
|
|
475
|
+
"artifactType": "FlexChange",
|
|
476
|
+
"controlType": "sap.m.Table"
|
|
477
|
+
},
|
|
478
|
+
"popinLayout": {
|
|
479
|
+
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
|
|
480
|
+
"anyOf": [
|
|
481
|
+
{
|
|
482
|
+
"$ref": "#/definitions/PopinLayout"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"type": "string"
|
|
486
|
+
}
|
|
487
|
+
],
|
|
488
|
+
"description": "Defines the layout in which the table pop-in rows are rendered.",
|
|
489
|
+
"artifactType": "FlexChange",
|
|
490
|
+
"controlType": "sap.m.Table"
|
|
491
|
+
},
|
|
492
|
+
"includeItemInSelection": {
|
|
493
|
+
"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.",
|
|
494
|
+
"type": "boolean",
|
|
495
|
+
"artifactType": "FlexChange",
|
|
496
|
+
"controlType": "sap.m.Table"
|
|
497
|
+
},
|
|
498
|
+
"tableType": {
|
|
499
|
+
"$ref": "#/definitions/TableTypeV2Enum",
|
|
500
|
+
"description": "Obsolete property for specifying the type of the table. Use the 'type' property instead.",
|
|
501
|
+
"artifactType": "Manifest"
|
|
502
|
+
},
|
|
503
|
+
"type": {
|
|
504
|
+
"$ref": "#/definitions/TableTypeV2Enum",
|
|
505
|
+
"description": "Specifies the type of the table.",
|
|
506
|
+
"artifactType": "Manifest",
|
|
507
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/5d270547f113468e83e06dd7ee408a45"
|
|
508
|
+
},
|
|
509
|
+
"condensedTableLayout": {
|
|
510
|
+
"description": "Sets a condensed table layout for analytical tables, grid tables, and tree tables.",
|
|
511
|
+
"type": "boolean",
|
|
512
|
+
"artifactType": "Manifest"
|
|
513
|
+
},
|
|
514
|
+
"enableTableFilterInPageVariant": {
|
|
515
|
+
"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.",
|
|
516
|
+
"type": "boolean",
|
|
517
|
+
"artifactType": "Manifest"
|
|
518
|
+
},
|
|
519
|
+
"inlineDelete": {
|
|
520
|
+
"description": "Used to enable inline deletion in a responsive table.",
|
|
521
|
+
"type": "boolean",
|
|
522
|
+
"artifactType": "Manifest"
|
|
523
|
+
},
|
|
524
|
+
"multiSelect": {
|
|
525
|
+
"description": "When this setting is enabled, the table switches from single to multi selection.",
|
|
526
|
+
"type": "boolean",
|
|
527
|
+
"artifactType": "Manifest",
|
|
528
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/402fac73b4794a31983609ebdde580d2"
|
|
529
|
+
},
|
|
530
|
+
"selectAll": {
|
|
531
|
+
"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.",
|
|
532
|
+
"type": "boolean",
|
|
533
|
+
"artifactType": "Manifest"
|
|
534
|
+
},
|
|
535
|
+
"selectionLimit": {
|
|
536
|
+
"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.",
|
|
537
|
+
"type": "number",
|
|
538
|
+
"artifactType": "Manifest",
|
|
539
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/116b5d82e8c545e2a56e1b51b8b0a9bd?q=selectionLimit"
|
|
540
|
+
},
|
|
541
|
+
"copy": {
|
|
542
|
+
"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.",
|
|
543
|
+
"type": "boolean",
|
|
544
|
+
"artifactType": "Manifest",
|
|
545
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/c0f6592a592e47f9bb6d09900de47412"
|
|
546
|
+
},
|
|
547
|
+
"dataLoadSettings": {
|
|
548
|
+
"$ref": "#/definitions/DataLoadSettings",
|
|
549
|
+
"description": "Change the default behavior for autoloading of data."
|
|
550
|
+
},
|
|
551
|
+
"createWithFilters": {
|
|
552
|
+
"$ref": "#/definitions/CreateWithFilters",
|
|
553
|
+
"description": "Adds a new create action that uses the filter settings as input."
|
|
554
|
+
},
|
|
555
|
+
"createWithParameterDialog": {
|
|
556
|
+
"$ref": "#/definitions/Fields4CreateWithParametersDialog",
|
|
557
|
+
"description": "Enables the creation of objects that have a maximum of eight data fields through a dialog in the list report page.",
|
|
558
|
+
"artifactType": "Manifest",
|
|
559
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/2d04f60da84a49f6bb8617fbf1d3d2aa"
|
|
560
|
+
},
|
|
561
|
+
"multiEdit": {
|
|
562
|
+
"$ref": "#/definitions/MultiEdit",
|
|
563
|
+
"description": "Allows you to edit multiple objects using a dialog.",
|
|
564
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/7cc4f04364c540c397130ff92f84c3ca"
|
|
565
|
+
},
|
|
566
|
+
"toolbar": {
|
|
567
|
+
"$ref": "#/definitions/Toolbar",
|
|
568
|
+
"description": "Tool Bar"
|
|
471
569
|
}
|
|
472
570
|
},
|
|
473
571
|
"additionalProperties": false
|
|
@@ -554,6 +652,103 @@
|
|
|
554
652
|
],
|
|
555
653
|
"type": "string"
|
|
556
654
|
},
|
|
655
|
+
"PopinLayout": {
|
|
656
|
+
"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'.",
|
|
657
|
+
"enum": [
|
|
658
|
+
"Block",
|
|
659
|
+
"GridLarge",
|
|
660
|
+
"GridSmall"
|
|
661
|
+
],
|
|
662
|
+
"type": "string"
|
|
663
|
+
},
|
|
664
|
+
"TableTypeV2Enum": {
|
|
665
|
+
"enum": [
|
|
666
|
+
"AnalyticalTable",
|
|
667
|
+
"GridTable",
|
|
668
|
+
"ResponsiveTable",
|
|
669
|
+
"TreeTable"
|
|
670
|
+
],
|
|
671
|
+
"type": "string"
|
|
672
|
+
},
|
|
673
|
+
"DataLoadSettings": {
|
|
674
|
+
"type": "object",
|
|
675
|
+
"properties": {
|
|
676
|
+
"loadDataOnAppLaunch": {
|
|
677
|
+
"$ref": "#/definitions/LoadDataOnAppLaunchSettingsEnum",
|
|
678
|
+
"description": "Changes the default behavior for autoloading data.",
|
|
679
|
+
"artifactType": "Manifest",
|
|
680
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/b736ab6ae3654789ba1f9630e5720af3?q=loadDataOnAppLaunch"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"additionalProperties": false,
|
|
684
|
+
"required": [
|
|
685
|
+
"loadDataOnAppLaunch"
|
|
686
|
+
]
|
|
687
|
+
},
|
|
688
|
+
"LoadDataOnAppLaunchSettingsEnum": {
|
|
689
|
+
"enum": [
|
|
690
|
+
"always",
|
|
691
|
+
"ifAnyFilterExist",
|
|
692
|
+
"never"
|
|
693
|
+
],
|
|
694
|
+
"type": "string"
|
|
695
|
+
},
|
|
696
|
+
"CreateWithFilters": {
|
|
697
|
+
"type": "object",
|
|
698
|
+
"properties": {
|
|
699
|
+
"strategy": {
|
|
700
|
+
"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\".",
|
|
701
|
+
"type": "string",
|
|
702
|
+
"const": "extension",
|
|
703
|
+
"artifactType": "Manifest",
|
|
704
|
+
"descriptionSrcURL": "https://ui5.sap.com/sdk/#/topic/189e2d8a59f04a2693a4fde7f4a91a65?q=createWithFilters"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
"additionalProperties": false,
|
|
708
|
+
"required": [
|
|
709
|
+
"strategy"
|
|
710
|
+
]
|
|
711
|
+
},
|
|
712
|
+
"Fields4CreateWithParametersDialog": {
|
|
713
|
+
"type": "object",
|
|
714
|
+
"properties": {
|
|
715
|
+
"fields": {
|
|
716
|
+
"type": "array",
|
|
717
|
+
"items": {
|
|
718
|
+
"type": "string"
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"additionalProperties": false,
|
|
723
|
+
"required": [
|
|
724
|
+
"fields"
|
|
725
|
+
]
|
|
726
|
+
},
|
|
727
|
+
"MultiEdit": {
|
|
728
|
+
"type": "object",
|
|
729
|
+
"properties": {
|
|
730
|
+
"enabled": {
|
|
731
|
+
"description": "When multiEdit is enabled, by default the dialog displays editable fields corresponding to the columns that are displayed in the table.",
|
|
732
|
+
"type": "boolean",
|
|
733
|
+
"artifactType": "Manifest"
|
|
734
|
+
},
|
|
735
|
+
"annotationPath": {
|
|
736
|
+
"description": "Use annotationPath to define a mass edit dialog that points to a FieldGroup annotation with a qualifier.",
|
|
737
|
+
"type": "string",
|
|
738
|
+
"artifactType": "Manifest"
|
|
739
|
+
},
|
|
740
|
+
"ignoredFields": {
|
|
741
|
+
"description": "Determines which fields are hidden in key user adaptation and restricts them from being added to the mass edit dialog.",
|
|
742
|
+
"type": "array",
|
|
743
|
+
"items": {
|
|
744
|
+
"type": "string",
|
|
745
|
+
"const": "GENERICPROPERTY"
|
|
746
|
+
},
|
|
747
|
+
"artifactType": "Manifest"
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"additionalProperties": false
|
|
751
|
+
},
|
|
557
752
|
"Toolbar": {
|
|
558
753
|
"description": "Toolbar",
|
|
559
754
|
"isViewNode": true,
|
|
@@ -123,6 +123,11 @@
|
|
|
123
123
|
"type": "string",
|
|
124
124
|
"manifestPath": "$[\"sap.fe\"].macros.table.defaultPopinLayout"
|
|
125
125
|
},
|
|
126
|
+
"sideEffectsEventsInteractionType": {
|
|
127
|
+
"$ref": "#/definitions/SideEffectsEventsInteractionType",
|
|
128
|
+
"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.",
|
|
129
|
+
"manifestPath": "$[\"sap.fe\"].app.sideEffectsEventsInteractionType"
|
|
130
|
+
},
|
|
126
131
|
"title": {
|
|
127
132
|
"description": "Defines the title for the application.",
|
|
128
133
|
"i18nClassification": "TIT: Title of the application",
|
|
@@ -282,6 +287,15 @@
|
|
|
282
287
|
}
|
|
283
288
|
}
|
|
284
289
|
},
|
|
290
|
+
"SideEffectsEventsInteractionType": {
|
|
291
|
+
"descriptionSrcURL": "https://ui5.sap.com/#/topic/27c9c3bad6eb4d99bc18a661fdb5e246",
|
|
292
|
+
"enum": [
|
|
293
|
+
"Confirmation",
|
|
294
|
+
"None",
|
|
295
|
+
"Notification"
|
|
296
|
+
],
|
|
297
|
+
"type": "string"
|
|
298
|
+
},
|
|
285
299
|
"CloudDevAdaptationStatus": {
|
|
286
300
|
"internal": true,
|
|
287
301
|
"enum": [
|
|
@@ -373,7 +373,8 @@
|
|
|
373
373
|
"path": [],
|
|
374
374
|
"type": "Aggregation",
|
|
375
375
|
"aggregationCardinality": "Single"
|
|
376
|
-
}
|
|
376
|
+
},
|
|
377
|
+
"description": "A set of options that can be configured."
|
|
377
378
|
},
|
|
378
379
|
"change": {
|
|
379
380
|
"type": "string",
|
|
@@ -987,12 +988,13 @@
|
|
|
987
988
|
"additionalProperties": {
|
|
988
989
|
"$ref": "#/definitions/sap.fe.macros.share.ShareOptions"
|
|
989
990
|
},
|
|
990
|
-
"isViewNode":
|
|
991
|
+
"isViewNode": false,
|
|
991
992
|
"metadata": {
|
|
992
993
|
"path": [],
|
|
993
994
|
"type": "Aggregation",
|
|
994
995
|
"aggregationCardinality": "Single"
|
|
995
|
-
}
|
|
996
|
+
},
|
|
997
|
+
"description": "Supported Share options sap.fe.macros.share.ShareOptions."
|
|
996
998
|
}
|
|
997
999
|
},
|
|
998
1000
|
"additionalProperties": false,
|
|
@@ -1626,7 +1628,8 @@
|
|
|
1626
1628
|
"path": [],
|
|
1627
1629
|
"type": "Aggregation",
|
|
1628
1630
|
"aggregationCardinality": "Single"
|
|
1629
|
-
}
|
|
1631
|
+
},
|
|
1632
|
+
"description": "A set of options that can be configured."
|
|
1630
1633
|
},
|
|
1631
1634
|
"change": {
|
|
1632
1635
|
"type": "string",
|
|
@@ -2149,12 +2152,25 @@
|
|
|
2149
2152
|
"metadata": {
|
|
2150
2153
|
"type": "Property"
|
|
2151
2154
|
}
|
|
2155
|
+
},
|
|
2156
|
+
"fields": {
|
|
2157
|
+
"type": "object",
|
|
2158
|
+
"additionalProperties": {
|
|
2159
|
+
"$ref": "#/definitions/sap.fe.macros.FormElement"
|
|
2160
|
+
},
|
|
2161
|
+
"isViewNode": true,
|
|
2162
|
+
"metadata": {
|
|
2163
|
+
"path": [],
|
|
2164
|
+
"type": "Aggregation",
|
|
2165
|
+
"aggregationCardinality": "Multiple"
|
|
2166
|
+
}
|
|
2152
2167
|
}
|
|
2153
2168
|
},
|
|
2154
2169
|
"additionalProperties": false,
|
|
2155
2170
|
"metadata": {
|
|
2156
2171
|
"path": [],
|
|
2157
|
-
"type": "Control"
|
|
2172
|
+
"type": "Control",
|
|
2173
|
+
"defaultAggregation": "fields"
|
|
2158
2174
|
}
|
|
2159
2175
|
},
|
|
2160
2176
|
"sap.fe.macros.microchart.MicroChart": {
|
|
@@ -3125,7 +3141,8 @@
|
|
|
3125
3141
|
"path": [],
|
|
3126
3142
|
"type": "Aggregation",
|
|
3127
3143
|
"aggregationCardinality": "Single"
|
|
3128
|
-
}
|
|
3144
|
+
},
|
|
3145
|
+
"description": "Determines the export settings for the column."
|
|
3129
3146
|
}
|
|
3130
3147
|
},
|
|
3131
3148
|
"additionalProperties": false,
|
|
@@ -3180,12 +3197,13 @@
|
|
|
3180
3197
|
"additionalProperties": {
|
|
3181
3198
|
"$ref": "#/definitions/sap.ui.layout.form.FormContainer"
|
|
3182
3199
|
},
|
|
3183
|
-
"isViewNode":
|
|
3200
|
+
"isViewNode": false,
|
|
3184
3201
|
"metadata": {
|
|
3185
3202
|
"path": [],
|
|
3186
3203
|
"type": "Aggregation",
|
|
3187
3204
|
"aggregationCardinality": "Single"
|
|
3188
|
-
}
|
|
3205
|
+
},
|
|
3206
|
+
"description": "The custom form container that can be displayed at the top of the mass edit dialog"
|
|
3189
3207
|
}
|
|
3190
3208
|
},
|
|
3191
3209
|
"additionalProperties": false,
|
|
@@ -3635,7 +3653,8 @@
|
|
|
3635
3653
|
"path": [],
|
|
3636
3654
|
"type": "Aggregation",
|
|
3637
3655
|
"aggregationCardinality": "Single"
|
|
3638
|
-
}
|
|
3656
|
+
},
|
|
3657
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
3639
3658
|
},
|
|
3640
3659
|
"columns": {
|
|
3641
3660
|
"type": "object",
|
|
@@ -3659,7 +3678,8 @@
|
|
|
3659
3678
|
"path": [],
|
|
3660
3679
|
"type": "Aggregation",
|
|
3661
3680
|
"aggregationCardinality": "Single"
|
|
3662
|
-
}
|
|
3681
|
+
},
|
|
3682
|
+
"description": "Aggregate mass edit of the table."
|
|
3663
3683
|
},
|
|
3664
3684
|
"quickVariantSelection": {
|
|
3665
3685
|
"type": "object",
|
|
@@ -3671,7 +3691,8 @@
|
|
|
3671
3691
|
"path": [],
|
|
3672
3692
|
"type": "Aggregation",
|
|
3673
3693
|
"aggregationCardinality": "Single"
|
|
3674
|
-
}
|
|
3694
|
+
},
|
|
3695
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
3675
3696
|
},
|
|
3676
3697
|
"beforeRebindTable": {
|
|
3677
3698
|
"type": "string",
|
|
@@ -4068,7 +4089,8 @@
|
|
|
4068
4089
|
"path": [],
|
|
4069
4090
|
"type": "Aggregation",
|
|
4070
4091
|
"aggregationCardinality": "Single"
|
|
4071
|
-
}
|
|
4092
|
+
},
|
|
4093
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
4072
4094
|
},
|
|
4073
4095
|
"columns": {
|
|
4074
4096
|
"type": "object",
|
|
@@ -4092,7 +4114,8 @@
|
|
|
4092
4114
|
"path": [],
|
|
4093
4115
|
"type": "Aggregation",
|
|
4094
4116
|
"aggregationCardinality": "Single"
|
|
4095
|
-
}
|
|
4117
|
+
},
|
|
4118
|
+
"description": "Aggregate mass edit of the table."
|
|
4096
4119
|
},
|
|
4097
4120
|
"quickVariantSelection": {
|
|
4098
4121
|
"type": "object",
|
|
@@ -4104,7 +4127,8 @@
|
|
|
4104
4127
|
"path": [],
|
|
4105
4128
|
"type": "Aggregation",
|
|
4106
4129
|
"aggregationCardinality": "Single"
|
|
4107
|
-
}
|
|
4130
|
+
},
|
|
4131
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
4108
4132
|
},
|
|
4109
4133
|
"beforeRebindTable": {
|
|
4110
4134
|
"type": "string",
|
|
@@ -4603,7 +4627,8 @@
|
|
|
4603
4627
|
"path": [],
|
|
4604
4628
|
"type": "Aggregation",
|
|
4605
4629
|
"aggregationCardinality": "Single"
|
|
4606
|
-
}
|
|
4630
|
+
},
|
|
4631
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
4607
4632
|
},
|
|
4608
4633
|
"columns": {
|
|
4609
4634
|
"type": "object",
|
|
@@ -4627,7 +4652,8 @@
|
|
|
4627
4652
|
"path": [],
|
|
4628
4653
|
"type": "Aggregation",
|
|
4629
4654
|
"aggregationCardinality": "Single"
|
|
4630
|
-
}
|
|
4655
|
+
},
|
|
4656
|
+
"description": "Aggregate mass edit of the table."
|
|
4631
4657
|
},
|
|
4632
4658
|
"quickVariantSelection": {
|
|
4633
4659
|
"type": "object",
|
|
@@ -4639,7 +4665,8 @@
|
|
|
4639
4665
|
"path": [],
|
|
4640
4666
|
"type": "Aggregation",
|
|
4641
4667
|
"aggregationCardinality": "Single"
|
|
4642
|
-
}
|
|
4668
|
+
},
|
|
4669
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
4643
4670
|
},
|
|
4644
4671
|
"beforeRebindTable": {
|
|
4645
4672
|
"type": "string",
|
|
@@ -5071,7 +5098,8 @@
|
|
|
5071
5098
|
"path": [],
|
|
5072
5099
|
"type": "Aggregation",
|
|
5073
5100
|
"aggregationCardinality": "Single"
|
|
5074
|
-
}
|
|
5101
|
+
},
|
|
5102
|
+
"description": "A set of options that can be configured to control the aggregation behavior"
|
|
5075
5103
|
},
|
|
5076
5104
|
"columns": {
|
|
5077
5105
|
"type": "object",
|
|
@@ -5095,7 +5123,8 @@
|
|
|
5095
5123
|
"path": [],
|
|
5096
5124
|
"type": "Aggregation",
|
|
5097
5125
|
"aggregationCardinality": "Single"
|
|
5098
|
-
}
|
|
5126
|
+
},
|
|
5127
|
+
"description": "Aggregate mass edit of the table."
|
|
5099
5128
|
},
|
|
5100
5129
|
"quickVariantSelection": {
|
|
5101
5130
|
"type": "object",
|
|
@@ -5107,7 +5136,8 @@
|
|
|
5107
5136
|
"path": [],
|
|
5108
5137
|
"type": "Aggregation",
|
|
5109
5138
|
"aggregationCardinality": "Single"
|
|
5110
|
-
}
|
|
5139
|
+
},
|
|
5140
|
+
"description": "Aggregate quickVariantSelection of the table."
|
|
5111
5141
|
},
|
|
5112
5142
|
"beforeRebindTable": {
|
|
5113
5143
|
"type": "string",
|