@sap/ux-specification 1.136.11 → 1.136.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +65 -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 +247 -247
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ApplicationV2.json +18 -9
- package/dist/schemas/v2/ListReportNewConfig.json +170 -0
- package/dist/schemas/v4/ApplicationV4.json +32 -16
- package/dist/schemas/v4/BuildingBlocksConfig.json +196 -588
- package/dist/schemas/v4/ListReportConfig.json +0 -41
- package/dist/specification/package.json +10 -9
- package/dist/specification/scripts/macros/schema.d.ts +7 -0
- package/dist/specification/scripts/macros/schema.d.ts.map +1 -1
- package/dist/specification/scripts/macros/schema.js +61 -14
- package/dist/specification/scripts/macros/schema.js.map +1 -1
- package/dist/specification/scripts/macros/types.d.ts +1 -0
- package/dist/specification/scripts/macros/types.d.ts.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +54 -8
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.js +2 -2
- package/dist/specification/src/ftfs/ftfs.d.ts +1 -1
- package/dist/specification/src/ftfs/ftfs.d.ts.map +1 -1
- package/dist/specification/src/ftfs/ftfs.js +38 -5
- package/dist/specification/src/ftfs/ftfs.js.map +1 -1
- 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/dist_tag.json +9 -5
- package/dist/specification/src/sync/common/i18n.json +11 -5
- package/dist/specification/src/sync/common/utils.d.ts +25 -0
- package/dist/specification/src/sync/common/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/common/utils.js +55 -0
- package/dist/specification/src/sync/common/utils.js.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/export/exportPageGeneric.js +1 -10
- package/dist/specification/src/sync/v2/export/exportPageGeneric.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/manifestPropertyUtils.d.ts +1 -2
- package/dist/specification/src/sync/v2/generate/manifestPropertyUtils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +6 -18
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts +48 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/generate/stableIdUtils.js +180 -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/controls/FilterBar.js +3 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/FilterBar.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts +78 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js +454 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/MultiTable.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts +54 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js +148 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Table.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +2 -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 +2 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +10 -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 +90 -7
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js +28 -13
- package/dist/specification/src/sync/v2/import/pages/overviewPage.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +7 -0
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +10 -0
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/controls/Table.js +20 -23
- package/dist/specification/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/export/fpmCustomPage.js +13 -3
- 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.map +1 -1
- package/dist/specification/src/sync/v4/generate/listReport.js +64 -0
- 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 +51 -4
- 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/utils/utils.d.ts +33 -0
- package/dist/specification/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v4/utils/utils.js +95 -0
- package/dist/specification/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/types/src/apiTypes.d.ts +22 -0
- package/dist/types/src/apiTypes.d.ts.map +1 -1
- package/dist/types/src/apiTypes.js.map +1 -1
- package/dist/types/src/common/types.d.ts +1 -0
- package/dist/types/src/common/types.d.ts.map +1 -1
- 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/Table.d.ts +0 -5
- package/dist/types/src/v4/controls/Table.d.ts.map +1 -1
- package/package.json +10 -9
- package/dist/specification/src/ftfs/annotations.d.ts +0 -12
- package/dist/specification/src/ftfs/annotations.d.ts.map +0 -1
- package/dist/specification/src/ftfs/annotations.js +0 -50
- package/dist/specification/src/ftfs/annotations.js.map +0 -1
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
"metadata": {
|
|
4
4
|
"namespaces": [
|
|
5
5
|
"sap.fe.macros",
|
|
6
|
-
"sap.fe.macros.form",
|
|
7
6
|
"sap.fe.macros.chart",
|
|
8
7
|
"sap.fe.macros.controls",
|
|
9
8
|
"sap.fe.macros.field",
|
|
@@ -137,58 +136,6 @@
|
|
|
137
136
|
"type": "Control"
|
|
138
137
|
}
|
|
139
138
|
},
|
|
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
|
-
},
|
|
192
139
|
"sap.fe.macros.CollectionBindingInfo": {
|
|
193
140
|
"description": "API to add parameters to the collection binding info.",
|
|
194
141
|
"isViewNode": true,
|
|
@@ -209,79 +156,6 @@
|
|
|
209
156
|
"type": "Control"
|
|
210
157
|
}
|
|
211
158
|
},
|
|
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
|
-
},
|
|
285
159
|
"sap.fe.macros.Field": {
|
|
286
160
|
"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",
|
|
287
161
|
"isViewNode": true,
|
|
@@ -348,7 +222,7 @@
|
|
|
348
222
|
"additionalProperties": {
|
|
349
223
|
"$ref": "#/definitions/sap.fe.macros.field.FieldFormatOptions"
|
|
350
224
|
},
|
|
351
|
-
"isViewNode":
|
|
225
|
+
"isViewNode": false,
|
|
352
226
|
"metadata": {
|
|
353
227
|
"path": [],
|
|
354
228
|
"type": "Aggregation"
|
|
@@ -377,69 +251,6 @@
|
|
|
377
251
|
"type": "Control"
|
|
378
252
|
}
|
|
379
253
|
},
|
|
380
|
-
"sap.fe.macros.form.FormElement": {
|
|
381
|
-
"description": "Building block used to create a form element based on the metadata provided by OData V4.",
|
|
382
|
-
"isViewNode": true,
|
|
383
|
-
"type": "object",
|
|
384
|
-
"properties": {
|
|
385
|
-
"contextPath": {
|
|
386
|
-
"type": "string",
|
|
387
|
-
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
388
|
-
"artifactType": "XMLProperty",
|
|
389
|
-
"metadata": {
|
|
390
|
-
"type": "Property"
|
|
391
|
-
}
|
|
392
|
-
},
|
|
393
|
-
"label": {
|
|
394
|
-
"type": "string",
|
|
395
|
-
"description": "Label shown for the field. If not set, the label from the annotations will be shown.",
|
|
396
|
-
"artifactType": "XMLProperty",
|
|
397
|
-
"metadata": {
|
|
398
|
-
"type": "Property"
|
|
399
|
-
}
|
|
400
|
-
},
|
|
401
|
-
"metaPath": {
|
|
402
|
-
"type": "string",
|
|
403
|
-
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
404
|
-
"artifactType": "XMLProperty",
|
|
405
|
-
"metadata": {
|
|
406
|
-
"type": "Property"
|
|
407
|
-
}
|
|
408
|
-
},
|
|
409
|
-
"visible": {
|
|
410
|
-
"type": "boolean",
|
|
411
|
-
"description": "If set to false, the FormElement is not rendered.",
|
|
412
|
-
"artifactType": "XMLProperty",
|
|
413
|
-
"metadata": {
|
|
414
|
-
"type": "Property"
|
|
415
|
-
}
|
|
416
|
-
},
|
|
417
|
-
"id": {
|
|
418
|
-
"type": "string",
|
|
419
|
-
"description": "Unique id of control",
|
|
420
|
-
"artifactType": "XMLProperty",
|
|
421
|
-
"metadata": {
|
|
422
|
-
"type": "Property"
|
|
423
|
-
}
|
|
424
|
-
},
|
|
425
|
-
"fields": {
|
|
426
|
-
"type": "object",
|
|
427
|
-
"additionalProperties": {
|
|
428
|
-
"$ref": "#/definitions/sap.ui.core.Control"
|
|
429
|
-
},
|
|
430
|
-
"isViewNode": true,
|
|
431
|
-
"metadata": {
|
|
432
|
-
"path": [],
|
|
433
|
-
"type": "Aggregation"
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
"additionalProperties": false,
|
|
438
|
-
"metadata": {
|
|
439
|
-
"path": [],
|
|
440
|
-
"type": "Control"
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
254
|
"sap.fe.macros.KPITag": {
|
|
444
255
|
"description": "Building block used to create a KPI tag.",
|
|
445
256
|
"isViewNode": true,
|
|
@@ -657,7 +468,7 @@
|
|
|
657
468
|
},
|
|
658
469
|
"items": {
|
|
659
470
|
"type": "any",
|
|
660
|
-
"description": "Property added to be able to add data / items to the multi
|
|
471
|
+
"description": "Property added to be able to add data / items to the multi value field via a different model",
|
|
661
472
|
"artifactType": "XMLProperty",
|
|
662
473
|
"metadata": {
|
|
663
474
|
"type": "Property"
|
|
@@ -695,13 +506,13 @@
|
|
|
695
506
|
}
|
|
696
507
|
},
|
|
697
508
|
"sap.fe.macros.Page": {
|
|
698
|
-
"description": "
|
|
509
|
+
"description": "Provides a Page building block that can be used to create a page with a title and content\nBy default, the page comes with an ObjectTitle",
|
|
699
510
|
"isViewNode": true,
|
|
700
511
|
"type": "object",
|
|
701
512
|
"properties": {
|
|
702
513
|
"avatarSrc": {
|
|
703
514
|
"type": "string",
|
|
704
|
-
"description": "
|
|
515
|
+
"description": "Avatar source of the page. It is considered only if the title property is specified.",
|
|
705
516
|
"artifactType": "XMLProperty",
|
|
706
517
|
"metadata": {
|
|
707
518
|
"type": "Property"
|
|
@@ -709,7 +520,7 @@
|
|
|
709
520
|
},
|
|
710
521
|
"description": {
|
|
711
522
|
"type": "string",
|
|
712
|
-
"description": "
|
|
523
|
+
"description": "Description of the page. It is considered only if the title property is specified.",
|
|
713
524
|
"artifactType": "XMLProperty",
|
|
714
525
|
"metadata": {
|
|
715
526
|
"type": "Property"
|
|
@@ -717,7 +528,7 @@
|
|
|
717
528
|
},
|
|
718
529
|
"title": {
|
|
719
530
|
"type": "string",
|
|
720
|
-
"description": "Title of the page
|
|
531
|
+
"description": "Title of the page\nIf title is not given, then we will add a title, avatar and description based on the unqualified HeaderInfo associated to the entity",
|
|
721
532
|
"artifactType": "XMLProperty",
|
|
722
533
|
"metadata": {
|
|
723
534
|
"type": "Property"
|
|
@@ -839,7 +650,7 @@
|
|
|
839
650
|
"additionalProperties": {
|
|
840
651
|
"$ref": "#/definitions/sap.fe.macros.richtexteditor.Plugin"
|
|
841
652
|
},
|
|
842
|
-
"isViewNode":
|
|
653
|
+
"isViewNode": false,
|
|
843
654
|
"metadata": {
|
|
844
655
|
"path": [],
|
|
845
656
|
"type": "Aggregation"
|
|
@@ -873,26 +684,6 @@
|
|
|
873
684
|
"type": "Property"
|
|
874
685
|
}
|
|
875
686
|
},
|
|
876
|
-
"id": {
|
|
877
|
-
"type": "string",
|
|
878
|
-
"description": "Unique id of control",
|
|
879
|
-
"artifactType": "XMLProperty",
|
|
880
|
-
"metadata": {
|
|
881
|
-
"type": "Property"
|
|
882
|
-
}
|
|
883
|
-
}
|
|
884
|
-
},
|
|
885
|
-
"additionalProperties": false,
|
|
886
|
-
"metadata": {
|
|
887
|
-
"path": [],
|
|
888
|
-
"type": "Control"
|
|
889
|
-
}
|
|
890
|
-
},
|
|
891
|
-
"sap.fe.macros.Share": {
|
|
892
|
-
"description": "Building block used to create the ‘Share’ functionality.\n\nPlease note that the 'Share in SAP Jam' option is only available on platforms that are integrated with SAP Jam.\n\nIf you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then the 'Save as Tile' option is not visible.\nUsage example:\n\n<macros:Share\nid=\"someID\"\nvisible=\"true\"\n/>\n\nOverview of Building Blocks\n\t\t\t\n",
|
|
893
|
-
"isViewNode": true,
|
|
894
|
-
"type": "object",
|
|
895
|
-
"properties": {
|
|
896
687
|
"id": {
|
|
897
688
|
"type": "string",
|
|
898
689
|
"description": "Unique id of control",
|
|
@@ -901,74 +692,72 @@
|
|
|
901
692
|
"type": "Property"
|
|
902
693
|
}
|
|
903
694
|
},
|
|
904
|
-
"
|
|
905
|
-
"type": "
|
|
906
|
-
"
|
|
907
|
-
"$ref": "#/definitions/sap.fe.macros.share.ShareOptions"
|
|
908
|
-
},
|
|
909
|
-
"isViewNode": true,
|
|
910
|
-
"metadata": {
|
|
911
|
-
"path": [],
|
|
912
|
-
"type": "Aggregation"
|
|
913
|
-
}
|
|
914
|
-
}
|
|
915
|
-
},
|
|
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.",
|
|
695
|
+
"excludeDefaultPlugins": {
|
|
696
|
+
"type": "boolean",
|
|
697
|
+
"description": "With the 'excludeDefaultPlugins' you can ask to remove the plugins that will be added by default\nThe default plugins are \"emoticons\" \"directionality\" \"image\" \"table\" \"link\" \"powerpaste\".",
|
|
931
698
|
"artifactType": "XMLProperty",
|
|
932
699
|
"metadata": {
|
|
933
700
|
"type": "Property"
|
|
934
701
|
}
|
|
935
702
|
},
|
|
936
|
-
"
|
|
703
|
+
"readOnly": {
|
|
937
704
|
"type": "boolean",
|
|
938
|
-
"description": "
|
|
705
|
+
"description": "Use the readOnly attribute to override the edit flow of the page.\nBy setting 'readOnly' to true, a FormattedText will be displayed instead of the editor.",
|
|
939
706
|
"artifactType": "XMLProperty",
|
|
940
707
|
"metadata": {
|
|
941
708
|
"type": "Property"
|
|
942
709
|
}
|
|
943
710
|
},
|
|
944
|
-
"
|
|
945
|
-
"type": "
|
|
946
|
-
"description": "
|
|
711
|
+
"required": {
|
|
712
|
+
"type": "any",
|
|
713
|
+
"description": "Use the 'required' attribute to make sure that the editor is filled with some text.",
|
|
947
714
|
"artifactType": "XMLProperty",
|
|
948
715
|
"metadata": {
|
|
949
716
|
"type": "Property"
|
|
950
717
|
}
|
|
951
718
|
},
|
|
952
|
-
"
|
|
953
|
-
"type": "
|
|
954
|
-
"description": "
|
|
719
|
+
"value": {
|
|
720
|
+
"type": "any",
|
|
721
|
+
"description": "The value contained in the editor. You can use this attribute to set a default value.",
|
|
955
722
|
"artifactType": "XMLProperty",
|
|
956
723
|
"metadata": {
|
|
957
724
|
"type": "Property"
|
|
958
725
|
}
|
|
959
726
|
},
|
|
960
|
-
"
|
|
961
|
-
"type": "
|
|
962
|
-
"
|
|
963
|
-
|
|
964
|
-
"metadata": {
|
|
965
|
-
"type": "Property"
|
|
727
|
+
"buttonGroups": {
|
|
728
|
+
"type": "object",
|
|
729
|
+
"additionalProperties": {
|
|
730
|
+
"$ref": "#/definitions/sap.fe.macros.richtexteditor.ButtonGroup"
|
|
966
731
|
},
|
|
967
|
-
"
|
|
968
|
-
|
|
969
|
-
"
|
|
970
|
-
|
|
732
|
+
"isViewNode": true,
|
|
733
|
+
"metadata": {
|
|
734
|
+
"path": [],
|
|
735
|
+
"type": "Aggregation"
|
|
736
|
+
}
|
|
971
737
|
},
|
|
738
|
+
"plugins": {
|
|
739
|
+
"type": "object",
|
|
740
|
+
"additionalProperties": {
|
|
741
|
+
"$ref": "#/definitions/sap.fe.macros.richtexteditor.Plugin"
|
|
742
|
+
},
|
|
743
|
+
"isViewNode": false,
|
|
744
|
+
"metadata": {
|
|
745
|
+
"path": [],
|
|
746
|
+
"type": "Aggregation"
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"additionalProperties": false,
|
|
751
|
+
"metadata": {
|
|
752
|
+
"path": [],
|
|
753
|
+
"type": "Control"
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"sap.fe.macros.Share": {
|
|
757
|
+
"description": "Building block used to create the ‘Share’ functionality.\n\nPlease note that the 'Share in SAP Jam' option is only available on platforms that are integrated with SAP Jam.\n\nIf you are consuming this macro in an environment where the SAP Fiori launchpad is not available, then the 'Save as Tile' option is not visible.\nUsage example:\n\n<macros:Share\nid=\"someID\"\nvisible=\"true\"\n/>\n\nOverview of Building Blocks\n\t\t\t\n",
|
|
758
|
+
"isViewNode": true,
|
|
759
|
+
"type": "object",
|
|
760
|
+
"properties": {
|
|
972
761
|
"id": {
|
|
973
762
|
"type": "string",
|
|
974
763
|
"description": "Unique id of control",
|
|
@@ -977,12 +766,15 @@
|
|
|
977
766
|
"type": "Property"
|
|
978
767
|
}
|
|
979
768
|
},
|
|
980
|
-
"
|
|
981
|
-
"type": "
|
|
982
|
-
"
|
|
983
|
-
|
|
769
|
+
"shareOptions": {
|
|
770
|
+
"type": "object",
|
|
771
|
+
"additionalProperties": {
|
|
772
|
+
"$ref": "#/definitions/sap.fe.macros.share.ShareOptions"
|
|
773
|
+
},
|
|
774
|
+
"isViewNode": false,
|
|
984
775
|
"metadata": {
|
|
985
|
-
"
|
|
776
|
+
"path": [],
|
|
777
|
+
"type": "Aggregation"
|
|
986
778
|
}
|
|
987
779
|
}
|
|
988
780
|
},
|
|
@@ -999,9 +791,8 @@
|
|
|
999
791
|
"properties": {
|
|
1000
792
|
"for": {
|
|
1001
793
|
"$ref": "#/definitions/string[]",
|
|
1002
|
-
"description": "
|
|
794
|
+
"description": "A list of control IDs to which the variant management is applied.",
|
|
1003
795
|
"artifactType": "XMLProperty",
|
|
1004
|
-
"isViewNode": true,
|
|
1005
796
|
"metadata": {
|
|
1006
797
|
"type": "Property"
|
|
1007
798
|
}
|
|
@@ -1168,6 +959,30 @@
|
|
|
1168
959
|
"type": "Property"
|
|
1169
960
|
}
|
|
1170
961
|
},
|
|
962
|
+
"enabled": {
|
|
963
|
+
"type": "boolean",
|
|
964
|
+
"description": "Enables or disables the action",
|
|
965
|
+
"artifactType": "XMLProperty",
|
|
966
|
+
"metadata": {
|
|
967
|
+
"type": "Property"
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
"press": {
|
|
971
|
+
"type": "string",
|
|
972
|
+
"description": "Event handler to be called when the user chooses the action",
|
|
973
|
+
"artifactType": "XMLProperty",
|
|
974
|
+
"metadata": {
|
|
975
|
+
"type": "Property"
|
|
976
|
+
}
|
|
977
|
+
},
|
|
978
|
+
"requiresSelection": {
|
|
979
|
+
"type": "boolean",
|
|
980
|
+
"description": "Defines if the action requires a selection.",
|
|
981
|
+
"artifactType": "XMLProperty",
|
|
982
|
+
"metadata": {
|
|
983
|
+
"type": "Property"
|
|
984
|
+
}
|
|
985
|
+
},
|
|
1171
986
|
"actions": {
|
|
1172
987
|
"type": "object",
|
|
1173
988
|
"additionalProperties": {
|
|
@@ -1183,8 +998,7 @@
|
|
|
1183
998
|
"additionalProperties": false,
|
|
1184
999
|
"metadata": {
|
|
1185
1000
|
"path": [],
|
|
1186
|
-
"type": "Control"
|
|
1187
|
-
"defaultAggregation": "actions"
|
|
1001
|
+
"type": "Control"
|
|
1188
1002
|
}
|
|
1189
1003
|
},
|
|
1190
1004
|
"sap.fe.macros.chart.Chart": {
|
|
@@ -1422,7 +1236,7 @@
|
|
|
1422
1236
|
"additionalProperties": {
|
|
1423
1237
|
"$ref": "#/definitions/sap.fe.macros.field.FieldFormatOptions"
|
|
1424
1238
|
},
|
|
1425
|
-
"isViewNode":
|
|
1239
|
+
"isViewNode": false,
|
|
1426
1240
|
"metadata": {
|
|
1427
1241
|
"path": [],
|
|
1428
1242
|
"type": "Aggregation"
|
|
@@ -1453,12 +1267,12 @@
|
|
|
1453
1267
|
},
|
|
1454
1268
|
"sap.fe.macros.field.FieldFormatOptions": {
|
|
1455
1269
|
"description": "Additional format options for the field.",
|
|
1456
|
-
"isViewNode":
|
|
1270
|
+
"isViewNode": false,
|
|
1457
1271
|
"type": "object",
|
|
1458
1272
|
"properties": {
|
|
1459
1273
|
"dateTimePattern": {
|
|
1460
1274
|
"type": "string",
|
|
1461
|
-
"description": "Property for defining a custom pattern for the date, time, or dateTime format. \nIf a dateTimePattern
|
|
1275
|
+
"description": "Property for defining a custom pattern for the date, time, or dateTime format. \nIf there is a dateTimePattern defined dateTimeStyle is ignored.\n",
|
|
1462
1276
|
"artifactType": "XMLProperty",
|
|
1463
1277
|
"metadata": {
|
|
1464
1278
|
"type": "Property"
|
|
@@ -1466,7 +1280,7 @@
|
|
|
1466
1280
|
},
|
|
1467
1281
|
"dateTimeStyle": {
|
|
1468
1282
|
"type": "string",
|
|
1469
|
-
"description": "Property for defining the display style for the date, time, or dateTime format. \nIf there is a dateTimePattern defined
|
|
1283
|
+
"description": "Property for defining the display style for the date, time, or dateTime format. \nIf there is a dateTimePattern defined dateTimeStyle is ignored.\n",
|
|
1470
1284
|
"artifactType": "XMLProperty",
|
|
1471
1285
|
"metadata": {
|
|
1472
1286
|
"type": "Property"
|
|
@@ -1521,18 +1335,6 @@
|
|
|
1521
1335
|
"type": "Property"
|
|
1522
1336
|
}
|
|
1523
1337
|
},
|
|
1524
|
-
"reactiveAreaMode": {
|
|
1525
|
-
"type": "string",
|
|
1526
|
-
"description": "When the Field is displayed as a clickable element, it defines the size of the reactive area of the clickable element:\n- ReactiveAreaMode.Inline - The link is displayed as part of a sentence.\n- ReactiveAreaMode.Overlay - The link 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",
|
|
1527
|
-
"artifactType": "XMLProperty",
|
|
1528
|
-
"metadata": {
|
|
1529
|
-
"type": "Property"
|
|
1530
|
-
},
|
|
1531
|
-
"enum": [
|
|
1532
|
-
"Inline",
|
|
1533
|
-
"Overlay"
|
|
1534
|
-
]
|
|
1535
|
-
},
|
|
1536
1338
|
"showDate": {
|
|
1537
1339
|
"type": "boolean",
|
|
1538
1340
|
"description": "Defines if the date part of a date time with timezone field should be shown. \n\nThe dateTimeOffset field must have a timezone annotation.\nThe default value is true.\n",
|
|
@@ -1909,30 +1711,81 @@
|
|
|
1909
1711
|
"properties": {
|
|
1910
1712
|
"contextPath": {
|
|
1911
1713
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1912
|
-
"description": "
|
|
1714
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1715
|
+
"artifactType": "XMLProperty",
|
|
1716
|
+
"metadata": {
|
|
1717
|
+
"type": "Property"
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
"metaPath": {
|
|
1721
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1722
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
1723
|
+
"artifactType": "XMLProperty",
|
|
1724
|
+
"metadata": {
|
|
1725
|
+
"type": "Property"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
"title": {
|
|
1729
|
+
"type": "string",
|
|
1730
|
+
"description": "The title of the form control.",
|
|
1731
|
+
"artifactType": "XMLProperty",
|
|
1732
|
+
"metadata": {
|
|
1733
|
+
"type": "Property"
|
|
1734
|
+
},
|
|
1735
|
+
"i18nClassification": "HED: Title of the form"
|
|
1736
|
+
},
|
|
1737
|
+
"id": {
|
|
1738
|
+
"type": "string",
|
|
1739
|
+
"description": "Unique id of control",
|
|
1740
|
+
"artifactType": "XMLProperty",
|
|
1741
|
+
"metadata": {
|
|
1742
|
+
"type": "Property"
|
|
1743
|
+
}
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
"additionalProperties": false,
|
|
1747
|
+
"metadata": {
|
|
1748
|
+
"path": [],
|
|
1749
|
+
"type": "Control"
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1752
|
+
"sap.fe.macros.FormElement": {
|
|
1753
|
+
"description": "Building block used to create a form element based on the metadata provided by OData V4.",
|
|
1754
|
+
"isViewNode": true,
|
|
1755
|
+
"type": "object",
|
|
1756
|
+
"properties": {
|
|
1757
|
+
"contextPath": {
|
|
1758
|
+
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1759
|
+
"description": "Defines the path of the context used in the current page or block.\nThis setting is defined by the framework.",
|
|
1913
1760
|
"artifactType": "XMLProperty",
|
|
1914
|
-
"isViewNode": true,
|
|
1915
1761
|
"metadata": {
|
|
1916
1762
|
"type": "Property"
|
|
1917
1763
|
}
|
|
1918
1764
|
},
|
|
1765
|
+
"label": {
|
|
1766
|
+
"type": "string",
|
|
1767
|
+
"description": "Label shown for the field. If not set, the label from the annotations will be shown.",
|
|
1768
|
+
"artifactType": "XMLProperty",
|
|
1769
|
+
"metadata": {
|
|
1770
|
+
"type": "Property"
|
|
1771
|
+
},
|
|
1772
|
+
"i18nClassification": "FLD: Label of the form element"
|
|
1773
|
+
},
|
|
1919
1774
|
"metaPath": {
|
|
1920
1775
|
"$ref": "#/definitions/sap.ui.model.Context",
|
|
1921
|
-
"description": "
|
|
1776
|
+
"description": "Defines the relative path of the property in the metamodel, based on the current contextPath.",
|
|
1922
1777
|
"artifactType": "XMLProperty",
|
|
1923
|
-
"isViewNode": true,
|
|
1924
1778
|
"metadata": {
|
|
1925
1779
|
"type": "Property"
|
|
1926
1780
|
}
|
|
1927
1781
|
},
|
|
1928
|
-
"
|
|
1929
|
-
"type": "
|
|
1930
|
-
"description": "
|
|
1782
|
+
"visible": {
|
|
1783
|
+
"type": "boolean",
|
|
1784
|
+
"description": "If set to false, the FormElement is not rendered.",
|
|
1931
1785
|
"artifactType": "XMLProperty",
|
|
1932
1786
|
"metadata": {
|
|
1933
1787
|
"type": "Property"
|
|
1934
|
-
}
|
|
1935
|
-
"i18nClassification": "HED: Title of the form"
|
|
1788
|
+
}
|
|
1936
1789
|
},
|
|
1937
1790
|
"id": {
|
|
1938
1791
|
"type": "string",
|
|
@@ -1941,6 +1794,25 @@
|
|
|
1941
1794
|
"metadata": {
|
|
1942
1795
|
"type": "Property"
|
|
1943
1796
|
}
|
|
1797
|
+
},
|
|
1798
|
+
"fields": {
|
|
1799
|
+
"type": "object",
|
|
1800
|
+
"additionalProperties": {
|
|
1801
|
+
"$ref": "#/definitions/sap.ui.core.Control"
|
|
1802
|
+
},
|
|
1803
|
+
"isViewNode": false,
|
|
1804
|
+
"metadata": {
|
|
1805
|
+
"path": [],
|
|
1806
|
+
"type": "Aggregation"
|
|
1807
|
+
}
|
|
1808
|
+
},
|
|
1809
|
+
"change": {
|
|
1810
|
+
"type": "string",
|
|
1811
|
+
"description": "The event is triggered when the field is changed.",
|
|
1812
|
+
"artifactType": "XMLProperty",
|
|
1813
|
+
"metadata": {
|
|
1814
|
+
"type": "Event"
|
|
1815
|
+
}
|
|
1944
1816
|
}
|
|
1945
1817
|
},
|
|
1946
1818
|
"additionalProperties": false,
|
|
@@ -2107,7 +1979,7 @@
|
|
|
2107
1979
|
},
|
|
2108
1980
|
"sap.fe.macros.share.ShareOptions": {
|
|
2109
1981
|
"description": "Share Options.",
|
|
2110
|
-
"isViewNode":
|
|
1982
|
+
"isViewNode": false,
|
|
2111
1983
|
"type": "object",
|
|
2112
1984
|
"properties": {
|
|
2113
1985
|
"id": {
|
|
@@ -2166,14 +2038,6 @@
|
|
|
2166
2038
|
"type": "Property"
|
|
2167
2039
|
}
|
|
2168
2040
|
},
|
|
2169
|
-
"isAIOperation": {
|
|
2170
|
-
"type": "boolean",
|
|
2171
|
-
"description": "Displays the AI Icon on the action button.",
|
|
2172
|
-
"artifactType": "XMLProperty",
|
|
2173
|
-
"metadata": {
|
|
2174
|
-
"type": "Property"
|
|
2175
|
-
}
|
|
2176
|
-
},
|
|
2177
2041
|
"key": {
|
|
2178
2042
|
"type": "string",
|
|
2179
2043
|
"description": "Unique identifier of the action",
|
|
@@ -2315,8 +2179,7 @@
|
|
|
2315
2179
|
"additionalProperties": false,
|
|
2316
2180
|
"metadata": {
|
|
2317
2181
|
"path": [],
|
|
2318
|
-
"type": "Control"
|
|
2319
|
-
"defaultAggregation": "actions"
|
|
2182
|
+
"type": "Control"
|
|
2320
2183
|
}
|
|
2321
2184
|
},
|
|
2322
2185
|
"sap.fe.macros.table.ActionGroupOverride": {
|
|
@@ -2375,8 +2238,7 @@
|
|
|
2375
2238
|
"additionalProperties": false,
|
|
2376
2239
|
"metadata": {
|
|
2377
2240
|
"path": [],
|
|
2378
|
-
"type": "Control"
|
|
2379
|
-
"defaultAggregation": "actions"
|
|
2241
|
+
"type": "Control"
|
|
2380
2242
|
}
|
|
2381
2243
|
},
|
|
2382
2244
|
"sap.fe.macros.table.ActionOverride": {
|
|
@@ -2436,14 +2298,6 @@
|
|
|
2436
2298
|
"type": "Property"
|
|
2437
2299
|
}
|
|
2438
2300
|
},
|
|
2439
|
-
"isAIOperation": {
|
|
2440
|
-
"type": "boolean",
|
|
2441
|
-
"description": "Displays the AI Icon on the action button.",
|
|
2442
|
-
"artifactType": "XMLProperty",
|
|
2443
|
-
"metadata": {
|
|
2444
|
-
"type": "Property"
|
|
2445
|
-
}
|
|
2446
|
-
},
|
|
2447
2301
|
"key": {
|
|
2448
2302
|
"type": "string",
|
|
2449
2303
|
"description": "Unique identifier of the action to overridden.",
|
|
@@ -2544,14 +2398,6 @@
|
|
|
2544
2398
|
"type": "Property"
|
|
2545
2399
|
}
|
|
2546
2400
|
},
|
|
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
|
-
},
|
|
2555
2401
|
"header": {
|
|
2556
2402
|
"type": "string",
|
|
2557
2403
|
"description": "The text that will be displayed for this column header",
|
|
@@ -2599,9 +2445,8 @@
|
|
|
2599
2445
|
},
|
|
2600
2446
|
"properties": {
|
|
2601
2447
|
"$ref": "#/definitions/string[]",
|
|
2602
|
-
"description": "properties",
|
|
2448
|
+
"description": "Determines the properties displayed in the column\nThe properties allow to export, sort, group, copy, and paste in the column\n",
|
|
2603
2449
|
"artifactType": "XMLProperty",
|
|
2604
|
-
"isViewNode": true,
|
|
2605
2450
|
"metadata": {
|
|
2606
2451
|
"type": "Property"
|
|
2607
2452
|
}
|
|
@@ -2658,27 +2503,10 @@
|
|
|
2658
2503
|
"isViewNode": true,
|
|
2659
2504
|
"type": "object",
|
|
2660
2505
|
"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
|
-
},
|
|
2677
2506
|
"property": {
|
|
2678
2507
|
"$ref": "#/definitions/string[]",
|
|
2679
|
-
"description": "
|
|
2508
|
+
"description": "Determines the properties of the column.",
|
|
2680
2509
|
"artifactType": "XMLProperty",
|
|
2681
|
-
"isViewNode": true,
|
|
2682
2510
|
"metadata": {
|
|
2683
2511
|
"type": "Property"
|
|
2684
2512
|
}
|
|
@@ -2691,22 +2519,6 @@
|
|
|
2691
2519
|
"type": "Property"
|
|
2692
2520
|
}
|
|
2693
2521
|
},
|
|
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
|
-
},
|
|
2710
2522
|
"type": {
|
|
2711
2523
|
"type": "string",
|
|
2712
2524
|
"description": "Determines the data type of the field",
|
|
@@ -2715,14 +2527,6 @@
|
|
|
2715
2527
|
"type": "Property"
|
|
2716
2528
|
}
|
|
2717
2529
|
},
|
|
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
|
-
},
|
|
2726
2530
|
"width": {
|
|
2727
2531
|
"type": "number",
|
|
2728
2532
|
"description": "Determines the width of the column in characters",
|
|
@@ -2767,14 +2571,6 @@
|
|
|
2767
2571
|
"type": "Property"
|
|
2768
2572
|
}
|
|
2769
2573
|
},
|
|
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
|
-
},
|
|
2778
2574
|
"horizontalAlign": {
|
|
2779
2575
|
"type": "string",
|
|
2780
2576
|
"description": "Aligns the header as well as the content horizontally",
|
|
@@ -2828,7 +2624,7 @@
|
|
|
2828
2624
|
"additionalProperties": {
|
|
2829
2625
|
"$ref": "#/definitions/sap.fe.macros.table.ColumnExportSettings"
|
|
2830
2626
|
},
|
|
2831
|
-
"isViewNode":
|
|
2627
|
+
"isViewNode": false,
|
|
2832
2628
|
"metadata": {
|
|
2833
2629
|
"path": [],
|
|
2834
2630
|
"type": "Aggregation"
|
|
@@ -2848,9 +2644,8 @@
|
|
|
2848
2644
|
"properties": {
|
|
2849
2645
|
"ignoredFields": {
|
|
2850
2646
|
"$ref": "#/definitions/string[]",
|
|
2851
|
-
"description": "
|
|
2647
|
+
"description": "Defines the list of fields that should be ignored in the mass edit dialog",
|
|
2852
2648
|
"artifactType": "XMLProperty",
|
|
2853
|
-
"isViewNode": true,
|
|
2854
2649
|
"metadata": {
|
|
2855
2650
|
"type": "Property"
|
|
2856
2651
|
}
|
|
@@ -2869,9 +2664,8 @@
|
|
|
2869
2664
|
},
|
|
2870
2665
|
"visibleFields": {
|
|
2871
2666
|
"$ref": "#/definitions/string[]",
|
|
2872
|
-
"description": "
|
|
2667
|
+
"description": "Defines the list of fields that should be visible in the mass edit dialog",
|
|
2873
2668
|
"artifactType": "XMLProperty",
|
|
2874
|
-
"isViewNode": true,
|
|
2875
2669
|
"metadata": {
|
|
2876
2670
|
"type": "Property"
|
|
2877
2671
|
}
|
|
@@ -2889,7 +2683,7 @@
|
|
|
2889
2683
|
"additionalProperties": {
|
|
2890
2684
|
"$ref": "#/definitions/sap.ui.layout.form.FormContainer"
|
|
2891
2685
|
},
|
|
2892
|
-
"isViewNode":
|
|
2686
|
+
"isViewNode": false,
|
|
2893
2687
|
"metadata": {
|
|
2894
2688
|
"path": [],
|
|
2895
2689
|
"type": "Aggregation"
|
|
@@ -2899,8 +2693,7 @@
|
|
|
2899
2693
|
"additionalProperties": false,
|
|
2900
2694
|
"metadata": {
|
|
2901
2695
|
"path": [],
|
|
2902
|
-
"type": "Control"
|
|
2903
|
-
"defaultAggregation": "customContent"
|
|
2696
|
+
"type": "Control"
|
|
2904
2697
|
}
|
|
2905
2698
|
},
|
|
2906
2699
|
"sap.fe.macros.table.QuickVariantSelection": {
|
|
@@ -2910,9 +2703,8 @@
|
|
|
2910
2703
|
"properties": {
|
|
2911
2704
|
"paths": {
|
|
2912
2705
|
"$ref": "#/definitions/string[]",
|
|
2913
|
-
"description": "paths",
|
|
2706
|
+
"description": "Defines the list of paths pointing to the selection variants that should be used as quick filters",
|
|
2914
2707
|
"artifactType": "XMLProperty",
|
|
2915
|
-
"isViewNode": true,
|
|
2916
2708
|
"metadata": {
|
|
2917
2709
|
"type": "Property"
|
|
2918
2710
|
}
|
|
@@ -2971,16 +2763,7 @@
|
|
|
2971
2763
|
},
|
|
2972
2764
|
"creationMode": {
|
|
2973
2765
|
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
2974
|
-
"description": "
|
|
2975
|
-
"artifactType": "XMLProperty",
|
|
2976
|
-
"isViewNode": true,
|
|
2977
|
-
"metadata": {
|
|
2978
|
-
"type": "Property"
|
|
2979
|
-
}
|
|
2980
|
-
},
|
|
2981
|
-
"disableColumnFreeze": {
|
|
2982
|
-
"type": "boolean",
|
|
2983
|
-
"description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
|
|
2766
|
+
"description": "A set of options that can be configured.",
|
|
2984
2767
|
"artifactType": "XMLProperty",
|
|
2985
2768
|
"metadata": {
|
|
2986
2769
|
"type": "Property"
|
|
@@ -3042,14 +2825,6 @@
|
|
|
3042
2825
|
"type": "Property"
|
|
3043
2826
|
}
|
|
3044
2827
|
},
|
|
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
|
-
},
|
|
3053
2828
|
"exportRequestSize": {
|
|
3054
2829
|
"type": "number",
|
|
3055
2830
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -3058,14 +2833,6 @@
|
|
|
3058
2833
|
"type": "Property"
|
|
3059
2834
|
}
|
|
3060
2835
|
},
|
|
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
|
-
},
|
|
3069
2836
|
"filterBar": {
|
|
3070
2837
|
"type": "string",
|
|
3071
2838
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -3151,19 +2918,6 @@
|
|
|
3151
2918
|
"type": "Property"
|
|
3152
2919
|
}
|
|
3153
2920
|
},
|
|
3154
|
-
"popinLayout": {
|
|
3155
|
-
"type": "string",
|
|
3156
|
-
"description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
|
|
3157
|
-
"artifactType": "XMLProperty",
|
|
3158
|
-
"metadata": {
|
|
3159
|
-
"type": "Property"
|
|
3160
|
-
},
|
|
3161
|
-
"enum": [
|
|
3162
|
-
"Block",
|
|
3163
|
-
"GridLarge",
|
|
3164
|
-
"GridSmall"
|
|
3165
|
-
]
|
|
3166
|
-
},
|
|
3167
2921
|
"readOnly": {
|
|
3168
2922
|
"type": "boolean",
|
|
3169
2923
|
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
@@ -3225,14 +2979,6 @@
|
|
|
3225
2979
|
"ForceSingle"
|
|
3226
2980
|
]
|
|
3227
2981
|
},
|
|
3228
|
-
"threshold": {
|
|
3229
|
-
"type": "number",
|
|
3230
|
-
"description": "Defines the number of records to be initially requested from the back end.",
|
|
3231
|
-
"artifactType": "XMLProperty",
|
|
3232
|
-
"metadata": {
|
|
3233
|
-
"type": "Property"
|
|
3234
|
-
}
|
|
3235
|
-
},
|
|
3236
2982
|
"type": {
|
|
3237
2983
|
"type": "string",
|
|
3238
2984
|
"description": "Defines the type of table that will be used by the building block to render the data.\nAllowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.\n",
|
|
@@ -3291,7 +3037,7 @@
|
|
|
3291
3037
|
"additionalProperties": {
|
|
3292
3038
|
"$ref": "#/definitions/sap.fe.macros.table.AnalyticalConfiguration"
|
|
3293
3039
|
},
|
|
3294
|
-
"isViewNode":
|
|
3040
|
+
"isViewNode": false,
|
|
3295
3041
|
"metadata": {
|
|
3296
3042
|
"path": [],
|
|
3297
3043
|
"type": "Aggregation"
|
|
@@ -3313,7 +3059,7 @@
|
|
|
3313
3059
|
"additionalProperties": {
|
|
3314
3060
|
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
3315
3061
|
},
|
|
3316
|
-
"isViewNode":
|
|
3062
|
+
"isViewNode": false,
|
|
3317
3063
|
"metadata": {
|
|
3318
3064
|
"path": [],
|
|
3319
3065
|
"type": "Aggregation"
|
|
@@ -3321,7 +3067,7 @@
|
|
|
3321
3067
|
},
|
|
3322
3068
|
"beforeRebindTable": {
|
|
3323
3069
|
"type": "string",
|
|
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`.\
|
|
3070
|
+
"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",
|
|
3325
3071
|
"artifactType": "XMLProperty",
|
|
3326
3072
|
"metadata": {
|
|
3327
3073
|
"type": "Event"
|
|
@@ -3382,16 +3128,7 @@
|
|
|
3382
3128
|
},
|
|
3383
3129
|
"creationMode": {
|
|
3384
3130
|
"$ref": "#/definitions/sap.fe.macros.table.TableCreationOptions",
|
|
3385
|
-
"description": "
|
|
3386
|
-
"artifactType": "XMLProperty",
|
|
3387
|
-
"isViewNode": true,
|
|
3388
|
-
"metadata": {
|
|
3389
|
-
"type": "Property"
|
|
3390
|
-
}
|
|
3391
|
-
},
|
|
3392
|
-
"disableColumnFreeze": {
|
|
3393
|
-
"type": "boolean",
|
|
3394
|
-
"description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
|
|
3131
|
+
"description": "A set of options that can be configured.",
|
|
3395
3132
|
"artifactType": "XMLProperty",
|
|
3396
3133
|
"metadata": {
|
|
3397
3134
|
"type": "Property"
|
|
@@ -3453,14 +3190,6 @@
|
|
|
3453
3190
|
"type": "Property"
|
|
3454
3191
|
}
|
|
3455
3192
|
},
|
|
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
|
-
},
|
|
3464
3193
|
"exportRequestSize": {
|
|
3465
3194
|
"type": "number",
|
|
3466
3195
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -3469,14 +3198,6 @@
|
|
|
3469
3198
|
"type": "Property"
|
|
3470
3199
|
}
|
|
3471
3200
|
},
|
|
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
|
-
},
|
|
3480
3201
|
"filterBar": {
|
|
3481
3202
|
"type": "string",
|
|
3482
3203
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -3561,19 +3282,6 @@
|
|
|
3561
3282
|
"type": "Property"
|
|
3562
3283
|
}
|
|
3563
3284
|
},
|
|
3564
|
-
"popinLayout": {
|
|
3565
|
-
"type": "string",
|
|
3566
|
-
"description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
|
|
3567
|
-
"artifactType": "XMLProperty",
|
|
3568
|
-
"metadata": {
|
|
3569
|
-
"type": "Property"
|
|
3570
|
-
},
|
|
3571
|
-
"enum": [
|
|
3572
|
-
"Block",
|
|
3573
|
-
"GridLarge",
|
|
3574
|
-
"GridSmall"
|
|
3575
|
-
]
|
|
3576
|
-
},
|
|
3577
3285
|
"readOnly": {
|
|
3578
3286
|
"type": "boolean",
|
|
3579
3287
|
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
@@ -3635,14 +3343,6 @@
|
|
|
3635
3343
|
"ForceSingle"
|
|
3636
3344
|
]
|
|
3637
3345
|
},
|
|
3638
|
-
"threshold": {
|
|
3639
|
-
"type": "number",
|
|
3640
|
-
"description": "Defines the number of records to be initially requested from the back end.",
|
|
3641
|
-
"artifactType": "XMLProperty",
|
|
3642
|
-
"metadata": {
|
|
3643
|
-
"type": "Property"
|
|
3644
|
-
}
|
|
3645
|
-
},
|
|
3646
3346
|
"type": {
|
|
3647
3347
|
"type": "string",
|
|
3648
3348
|
"description": "Defines the type of table that will be used by the building block to render the data.\nAllowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.\n",
|
|
@@ -3697,7 +3397,7 @@
|
|
|
3697
3397
|
"additionalProperties": {
|
|
3698
3398
|
"$ref": "#/definitions/sap.fe.macros.table.AnalyticalConfiguration"
|
|
3699
3399
|
},
|
|
3700
|
-
"isViewNode":
|
|
3400
|
+
"isViewNode": false,
|
|
3701
3401
|
"metadata": {
|
|
3702
3402
|
"path": [],
|
|
3703
3403
|
"type": "Aggregation"
|
|
@@ -3719,7 +3419,7 @@
|
|
|
3719
3419
|
"additionalProperties": {
|
|
3720
3420
|
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
3721
3421
|
},
|
|
3722
|
-
"isViewNode":
|
|
3422
|
+
"isViewNode": false,
|
|
3723
3423
|
"metadata": {
|
|
3724
3424
|
"path": [],
|
|
3725
3425
|
"type": "Aggregation"
|
|
@@ -3727,7 +3427,7 @@
|
|
|
3727
3427
|
},
|
|
3728
3428
|
"beforeRebindTable": {
|
|
3729
3429
|
"type": "string",
|
|
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`.\
|
|
3430
|
+
"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",
|
|
3731
3431
|
"artifactType": "XMLProperty",
|
|
3732
3432
|
"metadata": {
|
|
3733
3433
|
"type": "Event"
|
|
@@ -3758,7 +3458,7 @@
|
|
|
3758
3458
|
},
|
|
3759
3459
|
"sap.fe.macros.table.TableCreationOptions": {
|
|
3760
3460
|
"description": "Create options for the table.",
|
|
3761
|
-
"isViewNode":
|
|
3461
|
+
"isViewNode": false,
|
|
3762
3462
|
"type": "object",
|
|
3763
3463
|
"properties": {
|
|
3764
3464
|
"createAtEnd": {
|
|
@@ -3854,16 +3554,7 @@
|
|
|
3854
3554
|
},
|
|
3855
3555
|
"creationMode": {
|
|
3856
3556
|
"$ref": "#/definitions/sap.fe.macros.table.TreeTableCreationOptions",
|
|
3857
|
-
"description": "
|
|
3858
|
-
"artifactType": "XMLProperty",
|
|
3859
|
-
"isViewNode": true,
|
|
3860
|
-
"metadata": {
|
|
3861
|
-
"type": "Property"
|
|
3862
|
-
}
|
|
3863
|
-
},
|
|
3864
|
-
"disableColumnFreeze": {
|
|
3865
|
-
"type": "boolean",
|
|
3866
|
-
"description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
|
|
3557
|
+
"description": "A set of options that can be configured.",
|
|
3867
3558
|
"artifactType": "XMLProperty",
|
|
3868
3559
|
"metadata": {
|
|
3869
3560
|
"type": "Property"
|
|
@@ -3925,14 +3616,6 @@
|
|
|
3925
3616
|
"type": "Property"
|
|
3926
3617
|
}
|
|
3927
3618
|
},
|
|
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
|
-
},
|
|
3936
3619
|
"exportRequestSize": {
|
|
3937
3620
|
"type": "number",
|
|
3938
3621
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -3941,14 +3624,6 @@
|
|
|
3941
3624
|
"type": "Property"
|
|
3942
3625
|
}
|
|
3943
3626
|
},
|
|
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
|
-
},
|
|
3952
3627
|
"filterBar": {
|
|
3953
3628
|
"type": "string",
|
|
3954
3629
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -4073,19 +3748,6 @@
|
|
|
4073
3748
|
"type": "Property"
|
|
4074
3749
|
}
|
|
4075
3750
|
},
|
|
4076
|
-
"popinLayout": {
|
|
4077
|
-
"type": "string",
|
|
4078
|
-
"description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
|
|
4079
|
-
"artifactType": "XMLProperty",
|
|
4080
|
-
"metadata": {
|
|
4081
|
-
"type": "Property"
|
|
4082
|
-
},
|
|
4083
|
-
"enum": [
|
|
4084
|
-
"Block",
|
|
4085
|
-
"GridLarge",
|
|
4086
|
-
"GridSmall"
|
|
4087
|
-
]
|
|
4088
|
-
},
|
|
4089
3751
|
"readOnly": {
|
|
4090
3752
|
"type": "boolean",
|
|
4091
3753
|
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
@@ -4147,14 +3809,6 @@
|
|
|
4147
3809
|
"ForceSingle"
|
|
4148
3810
|
]
|
|
4149
3811
|
},
|
|
4150
|
-
"threshold": {
|
|
4151
|
-
"type": "number",
|
|
4152
|
-
"description": "Defines the number of records to be initially requested from the back end.",
|
|
4153
|
-
"artifactType": "XMLProperty",
|
|
4154
|
-
"metadata": {
|
|
4155
|
-
"type": "Property"
|
|
4156
|
-
}
|
|
4157
|
-
},
|
|
4158
3812
|
"type": {
|
|
4159
3813
|
"type": "string",
|
|
4160
3814
|
"description": "Defines the type of table that will be used by the building block to render the data. This setting is defined by the framework.\nAllowed value is `TreeTable`.\n",
|
|
@@ -4205,7 +3859,7 @@
|
|
|
4205
3859
|
"additionalProperties": {
|
|
4206
3860
|
"$ref": "#/definitions/sap.fe.macros.table.AnalyticalConfiguration"
|
|
4207
3861
|
},
|
|
4208
|
-
"isViewNode":
|
|
3862
|
+
"isViewNode": false,
|
|
4209
3863
|
"metadata": {
|
|
4210
3864
|
"path": [],
|
|
4211
3865
|
"type": "Aggregation"
|
|
@@ -4227,7 +3881,7 @@
|
|
|
4227
3881
|
"additionalProperties": {
|
|
4228
3882
|
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
4229
3883
|
},
|
|
4230
|
-
"isViewNode":
|
|
3884
|
+
"isViewNode": false,
|
|
4231
3885
|
"metadata": {
|
|
4232
3886
|
"path": [],
|
|
4233
3887
|
"type": "Aggregation"
|
|
@@ -4235,7 +3889,7 @@
|
|
|
4235
3889
|
},
|
|
4236
3890
|
"beforeRebindTable": {
|
|
4237
3891
|
"type": "string",
|
|
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`.\
|
|
3892
|
+
"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",
|
|
4239
3893
|
"artifactType": "XMLProperty",
|
|
4240
3894
|
"metadata": {
|
|
4241
3895
|
"type": "Event"
|
|
@@ -4295,16 +3949,7 @@
|
|
|
4295
3949
|
},
|
|
4296
3950
|
"creationMode": {
|
|
4297
3951
|
"$ref": "#/definitions/sap.fe.macros.table.TreeTableCreationOptions",
|
|
4298
|
-
"description": "
|
|
4299
|
-
"artifactType": "XMLProperty",
|
|
4300
|
-
"isViewNode": true,
|
|
4301
|
-
"metadata": {
|
|
4302
|
-
"type": "Property"
|
|
4303
|
-
}
|
|
4304
|
-
},
|
|
4305
|
-
"disableColumnFreeze": {
|
|
4306
|
-
"type": "boolean",
|
|
4307
|
-
"description": "Determines whether the number of fixed columns can be configured in the Column Settings dialog.\nThis property doesn't apply for responsive tables\n",
|
|
3952
|
+
"description": "A set of options that can be configured.",
|
|
4308
3953
|
"artifactType": "XMLProperty",
|
|
4309
3954
|
"metadata": {
|
|
4310
3955
|
"type": "Property"
|
|
@@ -4366,14 +4011,6 @@
|
|
|
4366
4011
|
"type": "Property"
|
|
4367
4012
|
}
|
|
4368
4013
|
},
|
|
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
|
-
},
|
|
4377
4014
|
"exportRequestSize": {
|
|
4378
4015
|
"type": "number",
|
|
4379
4016
|
"description": "Maximum allowed number of records to be exported in one request.",
|
|
@@ -4382,14 +4019,6 @@
|
|
|
4382
4019
|
"type": "Property"
|
|
4383
4020
|
}
|
|
4384
4021
|
},
|
|
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
|
-
},
|
|
4393
4022
|
"filterBar": {
|
|
4394
4023
|
"type": "string",
|
|
4395
4024
|
"description": "ID of the FilterBar building block associated with the table.",
|
|
@@ -4514,19 +4143,6 @@
|
|
|
4514
4143
|
"type": "Property"
|
|
4515
4144
|
}
|
|
4516
4145
|
},
|
|
4517
|
-
"popinLayout": {
|
|
4518
|
-
"type": "string",
|
|
4519
|
-
"description": "Defines the layout options of the table popins. Only applies to responsive tables.\nAllowed values are `Block`, `GridLarge`, and `GridSmall`.\n- `Block`: Sets a block layout for rendering the table popins. The elements inside the popin container are rendered one below the other.\n- `GridLarge`: Sets a grid layout for rendering the table popins. The grid width for each table popin is comparatively larger than GridSmall, so this layout allows less content to be rendered in a single popin row.\n- `GridSmall`: Sets a grid layout for rendering the table popins. The grid width for each table popin is small, so this layout allows more content to be rendered in a single popin row.\n",
|
|
4520
|
-
"artifactType": "XMLProperty",
|
|
4521
|
-
"metadata": {
|
|
4522
|
-
"type": "Property"
|
|
4523
|
-
},
|
|
4524
|
-
"enum": [
|
|
4525
|
-
"Block",
|
|
4526
|
-
"GridLarge",
|
|
4527
|
-
"GridSmall"
|
|
4528
|
-
]
|
|
4529
|
-
},
|
|
4530
4146
|
"readOnly": {
|
|
4531
4147
|
"type": "boolean",
|
|
4532
4148
|
"description": "An expression that allows you to control the 'read-only' state of the table.\nIf you do not set any expression, SAP Fiori elements hooks into the standard lifecycle to determine the current state.\n",
|
|
@@ -4588,14 +4204,6 @@
|
|
|
4588
4204
|
"ForceSingle"
|
|
4589
4205
|
]
|
|
4590
4206
|
},
|
|
4591
|
-
"threshold": {
|
|
4592
|
-
"type": "number",
|
|
4593
|
-
"description": "Defines the number of records to be initially requested from the back end.",
|
|
4594
|
-
"artifactType": "XMLProperty",
|
|
4595
|
-
"metadata": {
|
|
4596
|
-
"type": "Property"
|
|
4597
|
-
}
|
|
4598
|
-
},
|
|
4599
4207
|
"type": {
|
|
4600
4208
|
"type": "string",
|
|
4601
4209
|
"description": "Defines the type of table that will be used by the building block to render the data. This setting is defined by the framework.\nAllowed value is `TreeTable`.\n",
|
|
@@ -4646,7 +4254,7 @@
|
|
|
4646
4254
|
"additionalProperties": {
|
|
4647
4255
|
"$ref": "#/definitions/sap.fe.macros.table.AnalyticalConfiguration"
|
|
4648
4256
|
},
|
|
4649
|
-
"isViewNode":
|
|
4257
|
+
"isViewNode": false,
|
|
4650
4258
|
"metadata": {
|
|
4651
4259
|
"path": [],
|
|
4652
4260
|
"type": "Aggregation"
|
|
@@ -4668,7 +4276,7 @@
|
|
|
4668
4276
|
"additionalProperties": {
|
|
4669
4277
|
"$ref": "#/definitions/sap.fe.macros.table.MassEdit"
|
|
4670
4278
|
},
|
|
4671
|
-
"isViewNode":
|
|
4279
|
+
"isViewNode": false,
|
|
4672
4280
|
"metadata": {
|
|
4673
4281
|
"path": [],
|
|
4674
4282
|
"type": "Aggregation"
|
|
@@ -4676,7 +4284,7 @@
|
|
|
4676
4284
|
},
|
|
4677
4285
|
"beforeRebindTable": {
|
|
4678
4286
|
"type": "string",
|
|
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`.\
|
|
4287
|
+
"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",
|
|
4680
4288
|
"artifactType": "XMLProperty",
|
|
4681
4289
|
"metadata": {
|
|
4682
4290
|
"type": "Event"
|
|
@@ -4707,7 +4315,7 @@
|
|
|
4707
4315
|
},
|
|
4708
4316
|
"sap.fe.macros.table.TreeTableCreationOptions": {
|
|
4709
4317
|
"description": "Create options for the tree table.",
|
|
4710
|
-
"isViewNode":
|
|
4318
|
+
"isViewNode": false,
|
|
4711
4319
|
"type": "object",
|
|
4712
4320
|
"properties": {
|
|
4713
4321
|
"createInPlace": {
|