@sap/ux-specification 1.139.0 → 1.139.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 +69 -1
- 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 +440 -135
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +79 -0
- package/dist/schemas/v4/BuildingBlocksConfig.json +334 -12
- package/dist/schemas/v4/ListReportConfig.json +33 -38
- package/dist/schemas/v4/ObjectPageConfig.json +70 -3
- package/dist/specification/package.json +12 -8
- package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +2 -1
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.d.ts +1 -0
- package/dist/specification/src/api.d.ts.map +1 -1
- package/dist/specification/src/api.js +7 -4
- package/dist/specification/src/api.js.map +1 -1
- package/dist/specification/src/ftfs/ftfs.d.ts +9 -0
- package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -0
- package/dist/specification/src/ftfs/ftfs.js +82 -0
- package/dist/specification/src/ftfs/ftfs.js.map +1 -0
- package/dist/specification/src/ftfs/index.d.ts +2 -0
- package/dist/specification/src/ftfs/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/index.js +6 -0
- package/dist/specification/src/ftfs/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/annotations.d.ts +9 -0
- package/dist/specification/src/ftfs/parser/annotations.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/annotations.js +13 -0
- package/dist/specification/src/ftfs/parser/annotations.js.map +1 -0
- package/dist/specification/src/ftfs/parser/index.d.ts +15 -0
- package/dist/specification/src/ftfs/parser/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/index.js +35 -0
- package/dist/specification/src/ftfs/parser/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/AggregationValidator.d.ts +65 -0
- package/dist/specification/src/ftfs/parser/model/AggregationValidator.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/AggregationValidator.js +209 -0
- package/dist/specification/src/ftfs/parser/model/AggregationValidator.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/ArrayAggregation.d.ts +49 -0
- package/dist/specification/src/ftfs/parser/model/ArrayAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/ArrayAggregation.js +122 -0
- package/dist/specification/src/ftfs/parser/model/ArrayAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/NodeProperty.d.ts +38 -0
- package/dist/specification/src/ftfs/parser/model/NodeProperty.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/NodeProperty.js +25 -0
- package/dist/specification/src/ftfs/parser/model/NodeProperty.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/ObjectAggregation.d.ts +339 -0
- package/dist/specification/src/ftfs/parser/model/ObjectAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/ObjectAggregation.js +682 -0
- package/dist/specification/src/ftfs/parser/model/ObjectAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/RootAggregation.d.ts +24 -0
- package/dist/specification/src/ftfs/parser/model/RootAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/RootAggregation.js +57 -0
- package/dist/specification/src/ftfs/parser/model/RootAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts +224 -0
- package/dist/specification/src/ftfs/parser/model/TreeModel.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/TreeModel.js +947 -0
- package/dist/specification/src/ftfs/parser/model/TreeModel.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.d.ts +34 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.js +94 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.d.ts +67 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.js +113 -0
- package/dist/specification/src/ftfs/parser/model/actions/ActionsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/actions/index.d.ts +3 -0
- package/dist/specification/src/ftfs/parser/model/actions/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/actions/index.js +19 -0
- package/dist/specification/src/ftfs/parser/model/actions/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.d.ts +17 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.js +29 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.d.ts +46 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.js +66 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/AdditionalObjectsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/index.d.ts +3 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/index.js +19 -0
- package/dist/specification/src/ftfs/parser/model/additionalObjects/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.d.ts +21 -0
- package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.js +30 -0
- package/dist/specification/src/ftfs/parser/model/chart/ChartAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/chart/index.d.ts +2 -0
- package/dist/specification/src/ftfs/parser/model/chart/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/chart/index.js +18 -0
- package/dist/specification/src/ftfs/parser/model/chart/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.d.ts +9 -0
- package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.js +16 -0
- package/dist/specification/src/ftfs/parser/model/fields/ConnectedFieldsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.d.ts +25 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.js +45 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.d.ts +22 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.js +37 -0
- package/dist/specification/src/ftfs/parser/model/fields/FieldsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/index.d.ts +4 -0
- package/dist/specification/src/ftfs/parser/model/fields/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/fields/index.js +20 -0
- package/dist/specification/src/ftfs/parser/model/fields/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.d.ts +39 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.js +97 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.d.ts +36 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.js +59 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/FilterFieldsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/index.d.ts +3 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/index.js +19 -0
- package/dist/specification/src/ftfs/parser/model/filter-fields/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/index.d.ts +19 -0
- package/dist/specification/src/ftfs/parser/model/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/index.js +35 -0
- package/dist/specification/src/ftfs/parser/model/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.d.ts +29 -0
- package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.js +50 -0
- package/dist/specification/src/ftfs/parser/model/macros/MacrosRoot.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/macros/index.d.ts +2 -0
- package/dist/specification/src/ftfs/parser/model/macros/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/macros/index.js +18 -0
- package/dist/specification/src/ftfs/parser/model/macros/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.d.ts +31 -0
- package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.js +82 -0
- package/dist/specification/src/ftfs/parser/model/sections/HeaderSectionsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.d.ts +78 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.js +126 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.d.ts +135 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.js +402 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.d.ts +50 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.js +120 -0
- package/dist/specification/src/ftfs/parser/model/sections/SectionsObjectAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.d.ts +39 -0
- package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.js +70 -0
- package/dist/specification/src/ftfs/parser/model/sections/SubSectionsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/index.d.ts +6 -0
- package/dist/specification/src/ftfs/parser/model/sections/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/sections/index.js +22 -0
- package/dist/specification/src/ftfs/parser/model/sections/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.d.ts +89 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.js +175 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.d.ts +113 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.js +290 -0
- package/dist/specification/src/ftfs/parser/model/table/ColumnsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/TableAggregation.d.ts +13 -0
- package/dist/specification/src/ftfs/parser/model/table/TableAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/TableAggregation.js +21 -0
- package/dist/specification/src/ftfs/parser/model/table/TableAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.d.ts +15 -0
- package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.js +22 -0
- package/dist/specification/src/ftfs/parser/model/table/ToolbarAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/index.d.ts +5 -0
- package/dist/specification/src/ftfs/parser/model/table/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/index.js +21 -0
- package/dist/specification/src/ftfs/parser/model/table/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/utils.d.ts +12 -0
- package/dist/specification/src/ftfs/parser/model/table/utils.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/table/utils.js +44 -0
- package/dist/specification/src/ftfs/parser/model/table/utils.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/types/annotations.d.ts +63 -0
- package/dist/specification/src/ftfs/parser/model/types/annotations.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/types/annotations.js +29 -0
- package/dist/specification/src/ftfs/parser/model/types/annotations.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/types/common.d.ts +13 -0
- package/dist/specification/src/ftfs/parser/model/types/common.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/types/common.js +3 -0
- package/dist/specification/src/ftfs/parser/model/types/common.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/types/index.d.ts +219 -0
- package/dist/specification/src/ftfs/parser/model/types/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/types/index.js +156 -0
- package/dist/specification/src/ftfs/parser/model/types/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/annotations.d.ts +38 -0
- package/dist/specification/src/ftfs/parser/model/utils/annotations.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/annotations.js +120 -0
- package/dist/specification/src/ftfs/parser/model/utils/annotations.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/i18n.d.ts +33 -0
- package/dist/specification/src/ftfs/parser/model/utils/i18n.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/i18n.js +69 -0
- package/dist/specification/src/ftfs/parser/model/utils/i18n.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/index.d.ts +6 -0
- package/dist/specification/src/ftfs/parser/model/utils/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/index.js +22 -0
- package/dist/specification/src/ftfs/parser/model/utils/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/object.d.ts +25 -0
- package/dist/specification/src/ftfs/parser/model/utils/object.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/object.js +68 -0
- package/dist/specification/src/ftfs/parser/model/utils/object.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/sort.d.ts +31 -0
- package/dist/specification/src/ftfs/parser/model/utils/sort.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/sort.js +18 -0
- package/dist/specification/src/ftfs/parser/model/utils/sort.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/utils.d.ts +95 -0
- package/dist/specification/src/ftfs/parser/model/utils/utils.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/utils/utils.js +267 -0
- package/dist/specification/src/ftfs/parser/model/utils/utils.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.d.ts +62 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.js +111 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.d.ts +54 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.js +144 -0
- package/dist/specification/src/ftfs/parser/model/views/ViewsAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/views/index.d.ts +3 -0
- package/dist/specification/src/ftfs/parser/model/views/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/views/index.js +19 -0
- package/dist/specification/src/ftfs/parser/model/views/index.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.d.ts +11 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.js +18 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFilterAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.d.ts +11 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.js +18 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/VisualFiltersAggregation.js.map +1 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/index.d.ts +3 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/index.d.ts.map +1 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/index.js +19 -0
- package/dist/specification/src/ftfs/parser/model/visual-filters/index.js.map +1 -0
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.d.ts.map +1 -1
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js +1 -0
- package/dist/specification/src/sync/common/ManifestDrivenSchemaProcessor.js.map +1 -1
- package/dist/specification/src/sync/common/i18n.json +7 -5
- package/dist/specification/src/sync/common/rules.d.ts +1 -0
- package/dist/specification/src/sync/common/rules.d.ts.map +1 -1
- package/dist/specification/src/sync/common/rules.js +35 -7
- package/dist/specification/src/sync/common/rules.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/listReport.js +1 -92
- package/dist/specification/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +2 -17
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +40 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.js +179 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.js.map +1 -0
- package/dist/specification/src/sync/v2/generate/utils.d.ts +63 -3
- package/dist/specification/src/sync/v2/generate/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/utils.js +191 -7
- package/dist/specification/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts +59 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js +193 -4
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +8 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +52 -7
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
- package/dist/specification/src/sync/v4/application.d.ts +23 -0
- package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/application.js +37 -1
- package/dist/specification/src/sync/v4/application.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Field.d.ts +17 -0
- package/dist/specification/src/sync/v4/export/controls/Field.d.ts.map +1 -0
- package/dist/specification/src/sync/v4/export/controls/Field.js +74 -0
- package/dist/specification/src/sync/v4/export/controls/Field.js.map +1 -0
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts +4 -0
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js +24 -1
- package/dist/specification/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts +9 -0
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +57 -1
- package/dist/specification/src/sync/v4/export/controls/Table.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/export.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/export.js +15 -1
- package/dist/specification/src/sync/v4/export/export.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts +10 -0
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +55 -6
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js.map +1 -1
- package/dist/specification/src/sync/v4/export/manifest.js +1 -1
- package/dist/specification/src/sync/v4/export/manifest.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/listReport.d.ts +2 -0
- package/dist/specification/src/sync/v4/generate/listReport.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/listReport.js +48 -8
- package/dist/specification/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/generate/objectPage.js +54 -10
- package/dist/specification/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/import/app/appProvider.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/import/app/appProvider.js +3 -0
- package/dist/specification/src/sync/v4/import/app/appProvider.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 +3 -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 +59 -9
- package/dist/specification/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.d.ts +12 -4
- package/dist/specification/src/sync/v4/utils/macros.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/macros.js +23 -8
- package/dist/specification/src/sync/v4/utils/macros.js.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.d.ts +17 -4
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +76 -17
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/types/src/apiTypes.d.ts +56 -3
- 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 +12 -3
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js +9 -0
- package/dist/types/src/common/types.js.map +1 -1
- package/dist/types/src/index.d.ts +1 -0
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/index.js +2 -1
- package/dist/types/src/index.js.map +1 -1
- package/dist/types/src/parser/application.d.ts +22 -0
- package/dist/types/src/parser/application.d.ts.map +1 -0
- package/dist/types/src/parser/application.js +3 -0
- package/dist/types/src/parser/application.js.map +1 -0
- package/dist/types/src/parser/index.d.ts +3 -0
- package/dist/types/src/parser/index.d.ts.map +1 -0
- package/dist/types/src/parser/index.js +18 -0
- package/dist/types/src/parser/index.js.map +1 -0
- package/dist/types/src/parser/model.d.ts +17 -0
- package/dist/types/src/parser/model.d.ts.map +1 -0
- package/dist/types/src/parser/model.js +3 -0
- package/dist/types/src/parser/model.js.map +1 -0
- package/dist/types/src/v4/controls/CustomField.d.ts +45 -0
- package/dist/types/src/v4/controls/CustomField.d.ts.map +1 -0
- package/dist/types/src/v4/controls/CustomField.js +9 -0
- package/dist/types/src/v4/controls/CustomField.js.map +1 -0
- package/dist/types/src/v4/controls/ObjectPageForm.d.ts +2 -1
- package/dist/types/src/v4/controls/ObjectPageForm.d.ts.map +1 -1
- package/dist/types/src/v4/controls/ObjectPageTable.d.ts +4 -1
- 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 +16 -4
- package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
- 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/package.json +12 -8
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"$ref": "#/definitions/ListReportFilterBar",
|
|
16
16
|
"description": "Filter Bar"
|
|
17
17
|
},
|
|
18
|
+
"footer": {
|
|
19
|
+
"$ref": "#/definitions/Toolbar",
|
|
20
|
+
"description": "Footer"
|
|
21
|
+
},
|
|
18
22
|
"$schema": {
|
|
19
23
|
"type": "string"
|
|
20
24
|
}
|
|
@@ -413,6 +417,81 @@
|
|
|
413
417
|
"YESTERDAY"
|
|
414
418
|
],
|
|
415
419
|
"type": "string"
|
|
420
|
+
},
|
|
421
|
+
"Toolbar": {
|
|
422
|
+
"description": "Toolbar",
|
|
423
|
+
"isViewNode": true,
|
|
424
|
+
"type": "object",
|
|
425
|
+
"properties": {
|
|
426
|
+
"actions": {
|
|
427
|
+
"$ref": "#/definitions/Actions"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"additionalProperties": false,
|
|
431
|
+
"required": [
|
|
432
|
+
"actions"
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
"Actions": {
|
|
436
|
+
"description": "Actions",
|
|
437
|
+
"isViewNode": true,
|
|
438
|
+
"type": "object",
|
|
439
|
+
"additionalProperties": {
|
|
440
|
+
"$ref": "#/definitions/Action"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"Action": {
|
|
444
|
+
"description": "Action",
|
|
445
|
+
"isViewNode": true,
|
|
446
|
+
"type": "object",
|
|
447
|
+
"properties": {
|
|
448
|
+
"tooltip": {
|
|
449
|
+
"description": "The text of the button tooltip, preferably as an i18n key.",
|
|
450
|
+
"i18nClassification": "ACT: Text for tooltip of button.",
|
|
451
|
+
"type": "string",
|
|
452
|
+
"artifactType": "FlexChange",
|
|
453
|
+
"controlType": "sap.m.Button"
|
|
454
|
+
},
|
|
455
|
+
"icon": {
|
|
456
|
+
"description": "An icon to be displayed as a graphical element within the button.\nThis can be an image or an icon from the Icon Explorer (https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
457
|
+
"type": "string",
|
|
458
|
+
"artifactType": "FlexChange",
|
|
459
|
+
"controlType": "sap.m.Button"
|
|
460
|
+
},
|
|
461
|
+
"activeIcon": {
|
|
462
|
+
"description": "An alternative icon for the active (depressed) state of the button.\nThis can be an image or an icon from the Icon Explorer (https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
|
|
463
|
+
"type": "string",
|
|
464
|
+
"artifactType": "FlexChange",
|
|
465
|
+
"controlType": "sap.m.Button"
|
|
466
|
+
},
|
|
467
|
+
"type": {
|
|
468
|
+
"$ref": "#/definitions/ButtonType",
|
|
469
|
+
"description": "Defines the Button type.",
|
|
470
|
+
"artifactType": "FlexChange",
|
|
471
|
+
"controlType": "sap.m.Button"
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"additionalProperties": false
|
|
475
|
+
},
|
|
476
|
+
"ButtonType": {
|
|
477
|
+
"description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.\n\nThis enum is part of the 'sap/m/library' module export and must be accessed by the property 'ButtonType'.",
|
|
478
|
+
"enum": [
|
|
479
|
+
"Accept",
|
|
480
|
+
"Attention",
|
|
481
|
+
"Back",
|
|
482
|
+
"Critical",
|
|
483
|
+
"Default",
|
|
484
|
+
"Emphasized",
|
|
485
|
+
"Ghost",
|
|
486
|
+
"Negative",
|
|
487
|
+
"Neutral",
|
|
488
|
+
"Reject",
|
|
489
|
+
"Success",
|
|
490
|
+
"Transparent",
|
|
491
|
+
"Unstyled",
|
|
492
|
+
"Up"
|
|
493
|
+
],
|
|
494
|
+
"type": "string"
|
|
416
495
|
}
|
|
417
496
|
},
|
|
418
497
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
@@ -137,6 +137,58 @@
|
|
|
137
137
|
"type": "Control"
|
|
138
138
|
}
|
|
139
139
|
},
|
|
140
|
+
"sap.fe.macros.CollaborativeDraftHandler": {
|
|
141
|
+
"description": "A BuildingBlock to watch the lock status of a property and to react on changes.",
|
|
142
|
+
"isViewNode": true,
|
|
143
|
+
"type": "object",
|
|
144
|
+
"properties": {
|
|
145
|
+
"contextPath": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework, and can be overwritten.",
|
|
148
|
+
"artifactType": "XMLProperty",
|
|
149
|
+
"metadata": {
|
|
150
|
+
"type": "Property"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"metaPath": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
156
|
+
"artifactType": "XMLProperty",
|
|
157
|
+
"metadata": {
|
|
158
|
+
"type": "Property"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"showAvatar": {
|
|
162
|
+
"type": "boolean",
|
|
163
|
+
"description": "If set to true, the standard Avatar control is displayed to indicate the lock status.\nIf set to false, nothing is displayed.",
|
|
164
|
+
"artifactType": "XMLProperty",
|
|
165
|
+
"metadata": {
|
|
166
|
+
"type": "Property"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"id": {
|
|
170
|
+
"type": "string",
|
|
171
|
+
"description": "Unique id of control",
|
|
172
|
+
"artifactType": "XMLProperty",
|
|
173
|
+
"metadata": {
|
|
174
|
+
"type": "Property"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"lockChange": {
|
|
178
|
+
"type": "string",
|
|
179
|
+
"description": "Event fired when the lock status changes.\nParameters:\n- isLocked : true if the property is locked, false otherwise\n- lockingUserID: the ID of the user locking the property (undefined if not locked)\n- lockingUserName: the name of the user locking the property (undefined if not locked)\n- lockingUserInitials: the initials of the user locking the property (undefined if not locked)\n- lockingUserColor: the color associated to the user locking the property (undefined if not locked)\n",
|
|
180
|
+
"artifactType": "XMLProperty",
|
|
181
|
+
"metadata": {
|
|
182
|
+
"type": "Event"
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"additionalProperties": false,
|
|
187
|
+
"metadata": {
|
|
188
|
+
"path": [],
|
|
189
|
+
"type": "Control"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
140
192
|
"sap.fe.macros.CollectionBindingInfo": {
|
|
141
193
|
"description": "API to add parameters to the collection binding info.",
|
|
142
194
|
"isViewNode": true,
|
|
@@ -157,6 +209,79 @@
|
|
|
157
209
|
"type": "Control"
|
|
158
210
|
}
|
|
159
211
|
},
|
|
212
|
+
"sap.fe.macros.ConditionalSwitch": {
|
|
213
|
+
"description": "Defines a conditional template that renders content based on the evaluation of a set of switchProperties.\nThe switchProperties are defined using the sap.fe.macros.ConditionalSwitchProperty building block.",
|
|
214
|
+
"isViewNode": true,
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"factory": {
|
|
218
|
+
"$ref": "#/definitions/function",
|
|
219
|
+
"description": "factory",
|
|
220
|
+
"artifactType": "XMLProperty",
|
|
221
|
+
"isViewNode": true,
|
|
222
|
+
"metadata": {
|
|
223
|
+
"type": "Property"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"id": {
|
|
227
|
+
"type": "string",
|
|
228
|
+
"description": "Unique id of control",
|
|
229
|
+
"artifactType": "XMLProperty",
|
|
230
|
+
"metadata": {
|
|
231
|
+
"type": "Property"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"additionalProperties": false,
|
|
236
|
+
"metadata": {
|
|
237
|
+
"path": [],
|
|
238
|
+
"type": "Control"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"sap.fe.macros.ConditionalSwitchProperty": {
|
|
242
|
+
"description": "Defines a property with a key and a value that can be used in conditional templates.\nWhen the value is changed, a `valueChanged` event is fired.",
|
|
243
|
+
"isViewNode": true,
|
|
244
|
+
"type": "object",
|
|
245
|
+
"properties": {
|
|
246
|
+
"key": {
|
|
247
|
+
"type": "string",
|
|
248
|
+
"description": "The key of the property.",
|
|
249
|
+
"artifactType": "XMLProperty",
|
|
250
|
+
"metadata": {
|
|
251
|
+
"type": "Property"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"value": {
|
|
255
|
+
"type": "any",
|
|
256
|
+
"description": "The value of the property.",
|
|
257
|
+
"artifactType": "XMLProperty",
|
|
258
|
+
"metadata": {
|
|
259
|
+
"type": "Property"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"id": {
|
|
263
|
+
"type": "string",
|
|
264
|
+
"description": "Unique id of control",
|
|
265
|
+
"artifactType": "XMLProperty",
|
|
266
|
+
"metadata": {
|
|
267
|
+
"type": "Property"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"valueChanged": {
|
|
271
|
+
"type": "string",
|
|
272
|
+
"description": "Event fired when the value of the property is changed.\nThis is used internally by the `ConditionalTemplate` control to react to changes in the property value.",
|
|
273
|
+
"artifactType": "XMLProperty",
|
|
274
|
+
"metadata": {
|
|
275
|
+
"type": "Event"
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"additionalProperties": false,
|
|
280
|
+
"metadata": {
|
|
281
|
+
"path": [],
|
|
282
|
+
"type": "Control"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
160
285
|
"sap.fe.macros.Field": {
|
|
161
286
|
"description": "Building block for creating a field based on the metadata provided by OData V4.\n\nUsually, a DataField or DataPoint annotation is expected, but the field can also be used to display a property from the entity type.\nWhen creating a Field building block, you must provide an ID to ensure everything works correctly.\nUsage example:\n\n<macros:Field id=\"MyField\" metaPath=\"MyProperty\" />\n\nOverview of Building Blocks\n",
|
|
162
287
|
"isViewNode": true,
|
|
@@ -570,13 +695,13 @@
|
|
|
570
695
|
}
|
|
571
696
|
},
|
|
572
697
|
"sap.fe.macros.Page": {
|
|
573
|
-
"description": "
|
|
698
|
+
"description": "Building block used to create a custom page with a title and the content. By default, the page includes a title.",
|
|
574
699
|
"isViewNode": true,
|
|
575
700
|
"type": "object",
|
|
576
701
|
"properties": {
|
|
577
702
|
"avatarSrc": {
|
|
578
703
|
"type": "string",
|
|
579
|
-
"description": "
|
|
704
|
+
"description": "Source of the avatar image. This property is considered only if the title property is defined.",
|
|
580
705
|
"artifactType": "XMLProperty",
|
|
581
706
|
"metadata": {
|
|
582
707
|
"type": "Property"
|
|
@@ -584,7 +709,7 @@
|
|
|
584
709
|
},
|
|
585
710
|
"description": {
|
|
586
711
|
"type": "string",
|
|
587
|
-
"description": "
|
|
712
|
+
"description": "Provides additional details of the page. This property is considered only if the title property is defined.",
|
|
588
713
|
"artifactType": "XMLProperty",
|
|
589
714
|
"metadata": {
|
|
590
715
|
"type": "Property"
|
|
@@ -592,7 +717,7 @@
|
|
|
592
717
|
},
|
|
593
718
|
"title": {
|
|
594
719
|
"type": "string",
|
|
595
|
-
"description": "Title of the page
|
|
720
|
+
"description": "Title of the page. If no title is provided, the title, avatar, and description are derived from the unqualified HeaderInfo annotation associated with the entity.",
|
|
596
721
|
"artifactType": "XMLProperty",
|
|
597
722
|
"metadata": {
|
|
598
723
|
"type": "Property"
|
|
@@ -789,6 +914,79 @@
|
|
|
789
914
|
}
|
|
790
915
|
},
|
|
791
916
|
"additionalProperties": false,
|
|
917
|
+
"metadata": {
|
|
918
|
+
"path": [],
|
|
919
|
+
"type": "Control",
|
|
920
|
+
"defaultAggregation": "shareOptions"
|
|
921
|
+
}
|
|
922
|
+
},
|
|
923
|
+
"sap.fe.macros.Status": {
|
|
924
|
+
"description": "Building block to display a status and criticality.",
|
|
925
|
+
"isViewNode": true,
|
|
926
|
+
"type": "object",
|
|
927
|
+
"properties": {
|
|
928
|
+
"contextPath": {
|
|
929
|
+
"type": "string",
|
|
930
|
+
"description": "Context path for the binding context.",
|
|
931
|
+
"artifactType": "XMLProperty",
|
|
932
|
+
"metadata": {
|
|
933
|
+
"type": "Property"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"inverted": {
|
|
937
|
+
"type": "boolean",
|
|
938
|
+
"description": "Determines whether the background color reflects the set state of the ObjectStatus instead of the control's text.",
|
|
939
|
+
"artifactType": "XMLProperty",
|
|
940
|
+
"metadata": {
|
|
941
|
+
"type": "Property"
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
"largeDesign": {
|
|
945
|
+
"type": "boolean",
|
|
946
|
+
"description": "Indicates whether the ObjectStatus should be displayed in large design mode.",
|
|
947
|
+
"artifactType": "XMLProperty",
|
|
948
|
+
"metadata": {
|
|
949
|
+
"type": "Property"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"metaPath": {
|
|
953
|
+
"type": "string",
|
|
954
|
+
"description": "Metadata path to the DataField annotation or property.",
|
|
955
|
+
"artifactType": "XMLProperty",
|
|
956
|
+
"metadata": {
|
|
957
|
+
"type": "Property"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"reactiveAreaMode": {
|
|
961
|
+
"type": "string",
|
|
962
|
+
"description": "When the Status is clickable, it defines the size of the reactive area of the clickable element:\n- ReactiveAreaMode.Inline - The Status is displayed as part of a sentence.\n- ReactiveAreaMode.Overlay - The Status is displayed as an overlay on top of other interactive parts of the page.\nNote: It is designed to make the clickable element easier to activate and helps meet the WCAG 2.2 Target Size requirement. It is applicable only for the SAP Horizon themes. Note: The size of the reactive area is sufficiently large to help users avoid accidentally selecting (clicking or tapping) unintended UI elements. UI elements positioned over other parts of the page may need an invisible active touch area. This ensures that no elements beneath are activated accidentally when the user tries to interact with the overlay element.\n",
|
|
963
|
+
"artifactType": "XMLProperty",
|
|
964
|
+
"metadata": {
|
|
965
|
+
"type": "Property"
|
|
966
|
+
},
|
|
967
|
+
"enum": [
|
|
968
|
+
"Inline",
|
|
969
|
+
"Overlay"
|
|
970
|
+
]
|
|
971
|
+
},
|
|
972
|
+
"id": {
|
|
973
|
+
"type": "string",
|
|
974
|
+
"description": "Unique id of control",
|
|
975
|
+
"artifactType": "XMLProperty",
|
|
976
|
+
"metadata": {
|
|
977
|
+
"type": "Property"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
"press": {
|
|
981
|
+
"type": "string",
|
|
982
|
+
"description": "Press event fired when the ObjectStatus is clicked.",
|
|
983
|
+
"artifactType": "XMLProperty",
|
|
984
|
+
"metadata": {
|
|
985
|
+
"type": "Event"
|
|
986
|
+
}
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"additionalProperties": false,
|
|
792
990
|
"metadata": {
|
|
793
991
|
"path": [],
|
|
794
992
|
"type": "Control"
|
|
@@ -985,7 +1183,8 @@
|
|
|
985
1183
|
"additionalProperties": false,
|
|
986
1184
|
"metadata": {
|
|
987
1185
|
"path": [],
|
|
988
|
-
"type": "Control"
|
|
1186
|
+
"type": "Control",
|
|
1187
|
+
"defaultAggregation": "actions"
|
|
989
1188
|
}
|
|
990
1189
|
},
|
|
991
1190
|
"sap.fe.macros.chart.Chart": {
|
|
@@ -2116,7 +2315,8 @@
|
|
|
2116
2315
|
"additionalProperties": false,
|
|
2117
2316
|
"metadata": {
|
|
2118
2317
|
"path": [],
|
|
2119
|
-
"type": "Control"
|
|
2318
|
+
"type": "Control",
|
|
2319
|
+
"defaultAggregation": "actions"
|
|
2120
2320
|
}
|
|
2121
2321
|
},
|
|
2122
2322
|
"sap.fe.macros.table.ActionGroupOverride": {
|
|
@@ -2175,7 +2375,8 @@
|
|
|
2175
2375
|
"additionalProperties": false,
|
|
2176
2376
|
"metadata": {
|
|
2177
2377
|
"path": [],
|
|
2178
|
-
"type": "Control"
|
|
2378
|
+
"type": "Control",
|
|
2379
|
+
"defaultAggregation": "actions"
|
|
2179
2380
|
}
|
|
2180
2381
|
},
|
|
2181
2382
|
"sap.fe.macros.table.ActionOverride": {
|
|
@@ -2343,6 +2544,14 @@
|
|
|
2343
2544
|
"type": "Property"
|
|
2344
2545
|
}
|
|
2345
2546
|
},
|
|
2547
|
+
"disableExport": {
|
|
2548
|
+
"type": "boolean",
|
|
2549
|
+
"description": "Determines if the column should be excluded from the export.",
|
|
2550
|
+
"artifactType": "XMLProperty",
|
|
2551
|
+
"metadata": {
|
|
2552
|
+
"type": "Property"
|
|
2553
|
+
}
|
|
2554
|
+
},
|
|
2346
2555
|
"header": {
|
|
2347
2556
|
"type": "string",
|
|
2348
2557
|
"description": "The text that will be displayed for this column header",
|
|
@@ -2449,6 +2658,22 @@
|
|
|
2449
2658
|
"isViewNode": true,
|
|
2450
2659
|
"type": "object",
|
|
2451
2660
|
"properties": {
|
|
2661
|
+
"falseValue": {
|
|
2662
|
+
"type": "string",
|
|
2663
|
+
"description": "Determines the text associated to a Boolean type with 'false' as value.",
|
|
2664
|
+
"artifactType": "XMLProperty",
|
|
2665
|
+
"metadata": {
|
|
2666
|
+
"type": "Property"
|
|
2667
|
+
}
|
|
2668
|
+
},
|
|
2669
|
+
"label": {
|
|
2670
|
+
"type": "string",
|
|
2671
|
+
"description": "Determines the column header text.",
|
|
2672
|
+
"artifactType": "XMLProperty",
|
|
2673
|
+
"metadata": {
|
|
2674
|
+
"type": "Property"
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2452
2677
|
"property": {
|
|
2453
2678
|
"$ref": "#/definitions/string[]",
|
|
2454
2679
|
"description": "property",
|
|
@@ -2466,6 +2691,22 @@
|
|
|
2466
2691
|
"type": "Property"
|
|
2467
2692
|
}
|
|
2468
2693
|
},
|
|
2694
|
+
"textAlign": {
|
|
2695
|
+
"type": "string",
|
|
2696
|
+
"description": "Determines the alignment of the column of the cell contents.\nAvailable options are:\n- Left\n- Right\n- Center\n- Begin\n- End\n\n",
|
|
2697
|
+
"artifactType": "XMLProperty",
|
|
2698
|
+
"metadata": {
|
|
2699
|
+
"type": "Property"
|
|
2700
|
+
}
|
|
2701
|
+
},
|
|
2702
|
+
"trueValue": {
|
|
2703
|
+
"type": "string",
|
|
2704
|
+
"description": "Determines the text associated to a Boolean type with 'true' as value.",
|
|
2705
|
+
"artifactType": "XMLProperty",
|
|
2706
|
+
"metadata": {
|
|
2707
|
+
"type": "Property"
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2469
2710
|
"type": {
|
|
2470
2711
|
"type": "string",
|
|
2471
2712
|
"description": "Determines the data type of the field",
|
|
@@ -2474,6 +2715,14 @@
|
|
|
2474
2715
|
"type": "Property"
|
|
2475
2716
|
}
|
|
2476
2717
|
},
|
|
2718
|
+
"valueMap": {
|
|
2719
|
+
"type": "object",
|
|
2720
|
+
"description": "Determines the mapping object holding the values associated with a specific key.\nEnumeration type must be used when valueMap is provided.",
|
|
2721
|
+
"artifactType": "XMLProperty",
|
|
2722
|
+
"metadata": {
|
|
2723
|
+
"type": "Property"
|
|
2724
|
+
}
|
|
2725
|
+
},
|
|
2477
2726
|
"width": {
|
|
2478
2727
|
"type": "number",
|
|
2479
2728
|
"description": "Determines the width of the column in characters",
|
|
@@ -2518,6 +2767,14 @@
|
|
|
2518
2767
|
"type": "Property"
|
|
2519
2768
|
}
|
|
2520
2769
|
},
|
|
2770
|
+
"disableExport": {
|
|
2771
|
+
"type": "boolean",
|
|
2772
|
+
"description": "Determines if the column should be excluded from the export.",
|
|
2773
|
+
"artifactType": "XMLProperty",
|
|
2774
|
+
"metadata": {
|
|
2775
|
+
"type": "Property"
|
|
2776
|
+
}
|
|
2777
|
+
},
|
|
2521
2778
|
"horizontalAlign": {
|
|
2522
2779
|
"type": "string",
|
|
2523
2780
|
"description": "Aligns the header as well as the content horizontally",
|
|
@@ -2642,7 +2899,8 @@
|
|
|
2642
2899
|
"additionalProperties": false,
|
|
2643
2900
|
"metadata": {
|
|
2644
2901
|
"path": [],
|
|
2645
|
-
"type": "Control"
|
|
2902
|
+
"type": "Control",
|
|
2903
|
+
"defaultAggregation": "customContent"
|
|
2646
2904
|
}
|
|
2647
2905
|
},
|
|
2648
2906
|
"sap.fe.macros.table.QuickVariantSelection": {
|
|
@@ -2784,6 +3042,14 @@
|
|
|
2784
3042
|
"type": "Property"
|
|
2785
3043
|
}
|
|
2786
3044
|
},
|
|
3045
|
+
"exportFileName": {
|
|
3046
|
+
"type": "string",
|
|
3047
|
+
"description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
3048
|
+
"artifactType": "XMLProperty",
|
|
3049
|
+
"metadata": {
|
|
3050
|
+
"type": "Property"
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
2787
3053
|
"exportRequestSize": {
|
|
2788
3054
|
"type": "number",
|
|
2789
3055
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -2792,6 +3058,14 @@
|
|
|
2792
3058
|
"type": "Property"
|
|
2793
3059
|
}
|
|
2794
3060
|
},
|
|
3061
|
+
"exportSheetName": {
|
|
3062
|
+
"type": "string",
|
|
3063
|
+
"description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
3064
|
+
"artifactType": "XMLProperty",
|
|
3065
|
+
"metadata": {
|
|
3066
|
+
"type": "Property"
|
|
3067
|
+
}
|
|
3068
|
+
},
|
|
2795
3069
|
"filterBar": {
|
|
2796
3070
|
"type": "string",
|
|
2797
3071
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -3047,7 +3321,7 @@
|
|
|
3047
3321
|
},
|
|
3048
3322
|
"beforeRebindTable": {
|
|
3049
3323
|
"type": "string",
|
|
3050
|
-
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
3324
|
+
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
3051
3325
|
"artifactType": "XMLProperty",
|
|
3052
3326
|
"metadata": {
|
|
3053
3327
|
"type": "Event"
|
|
@@ -3179,6 +3453,14 @@
|
|
|
3179
3453
|
"type": "Property"
|
|
3180
3454
|
}
|
|
3181
3455
|
},
|
|
3456
|
+
"exportFileName": {
|
|
3457
|
+
"type": "string",
|
|
3458
|
+
"description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
3459
|
+
"artifactType": "XMLProperty",
|
|
3460
|
+
"metadata": {
|
|
3461
|
+
"type": "Property"
|
|
3462
|
+
}
|
|
3463
|
+
},
|
|
3182
3464
|
"exportRequestSize": {
|
|
3183
3465
|
"type": "number",
|
|
3184
3466
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -3187,6 +3469,14 @@
|
|
|
3187
3469
|
"type": "Property"
|
|
3188
3470
|
}
|
|
3189
3471
|
},
|
|
3472
|
+
"exportSheetName": {
|
|
3473
|
+
"type": "string",
|
|
3474
|
+
"description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
3475
|
+
"artifactType": "XMLProperty",
|
|
3476
|
+
"metadata": {
|
|
3477
|
+
"type": "Property"
|
|
3478
|
+
}
|
|
3479
|
+
},
|
|
3190
3480
|
"filterBar": {
|
|
3191
3481
|
"type": "string",
|
|
3192
3482
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -3437,7 +3727,7 @@
|
|
|
3437
3727
|
},
|
|
3438
3728
|
"beforeRebindTable": {
|
|
3439
3729
|
"type": "string",
|
|
3440
|
-
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
3730
|
+
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
3441
3731
|
"artifactType": "XMLProperty",
|
|
3442
3732
|
"metadata": {
|
|
3443
3733
|
"type": "Event"
|
|
@@ -3635,6 +3925,14 @@
|
|
|
3635
3925
|
"type": "Property"
|
|
3636
3926
|
}
|
|
3637
3927
|
},
|
|
3928
|
+
"exportFileName": {
|
|
3929
|
+
"type": "string",
|
|
3930
|
+
"description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
3931
|
+
"artifactType": "XMLProperty",
|
|
3932
|
+
"metadata": {
|
|
3933
|
+
"type": "Property"
|
|
3934
|
+
}
|
|
3935
|
+
},
|
|
3638
3936
|
"exportRequestSize": {
|
|
3639
3937
|
"type": "number",
|
|
3640
3938
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -3643,6 +3941,14 @@
|
|
|
3643
3941
|
"type": "Property"
|
|
3644
3942
|
}
|
|
3645
3943
|
},
|
|
3944
|
+
"exportSheetName": {
|
|
3945
|
+
"type": "string",
|
|
3946
|
+
"description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
3947
|
+
"artifactType": "XMLProperty",
|
|
3948
|
+
"metadata": {
|
|
3949
|
+
"type": "Property"
|
|
3950
|
+
}
|
|
3951
|
+
},
|
|
3646
3952
|
"filterBar": {
|
|
3647
3953
|
"type": "string",
|
|
3648
3954
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -3929,7 +4235,7 @@
|
|
|
3929
4235
|
},
|
|
3930
4236
|
"beforeRebindTable": {
|
|
3931
4237
|
"type": "string",
|
|
3932
|
-
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
4238
|
+
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
3933
4239
|
"artifactType": "XMLProperty",
|
|
3934
4240
|
"metadata": {
|
|
3935
4241
|
"type": "Event"
|
|
@@ -4060,6 +4366,14 @@
|
|
|
4060
4366
|
"type": "Property"
|
|
4061
4367
|
}
|
|
4062
4368
|
},
|
|
4369
|
+
"exportFileName": {
|
|
4370
|
+
"type": "string",
|
|
4371
|
+
"description": "Configures the file name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
4372
|
+
"artifactType": "XMLProperty",
|
|
4373
|
+
"metadata": {
|
|
4374
|
+
"type": "Property"
|
|
4375
|
+
}
|
|
4376
|
+
},
|
|
4063
4377
|
"exportRequestSize": {
|
|
4064
4378
|
"type": "number",
|
|
4065
4379
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -4068,6 +4382,14 @@
|
|
|
4068
4382
|
"type": "Property"
|
|
4069
4383
|
}
|
|
4070
4384
|
},
|
|
4385
|
+
"exportSheetName": {
|
|
4386
|
+
"type": "string",
|
|
4387
|
+
"description": "Configures the sheet name of exported table.\nIt's limited to 31 characters. If the name is longer, it will be truncated.",
|
|
4388
|
+
"artifactType": "XMLProperty",
|
|
4389
|
+
"metadata": {
|
|
4390
|
+
"type": "Property"
|
|
4391
|
+
}
|
|
4392
|
+
},
|
|
4071
4393
|
"filterBar": {
|
|
4072
4394
|
"type": "string",
|
|
4073
4395
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -4354,7 +4676,7 @@
|
|
|
4354
4676
|
},
|
|
4355
4677
|
"beforeRebindTable": {
|
|
4356
4678
|
"type": "string",
|
|
4357
|
-
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
4679
|
+
"description": "Before a table rebind, an event is triggered that contains information about the binding.\nThe event contains a parameter, `collectionBindingInfo`, which is an instance of `CollectionBindingInfoAPI`.\nIt can also contain an optional parameter, `quickFilterKey`, which indicates what is the quick filter key (if any) being processed for the table.\nThis allows you to manipulate the table's list binding.\nYou can use this event to attach event handlers to the table's list binding.\nYou can use this event to add selects, and add or read the sorters and filters.\n",
|
|
4358
4680
|
"artifactType": "XMLProperty",
|
|
4359
4681
|
"metadata": {
|
|
4360
4682
|
"type": "Event"
|